-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDiagramMaterialLink.cs
255 lines (223 loc) · 8.17 KB
/
DiagramMaterialLink.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
// Copyright 2014, Catlike Coding, http://catlikecoding.com
using UnityEngine;
using System;
using System.Threading.Tasks;
namespace CatlikeCoding.NumberFlow {
/// <summary>
/// Link between a NumberFlow diagram and materials.
/// </summary>
[Serializable]
public sealed class DiagramMaterialLink {
/// <summary>
/// NumberFlow diagram.
/// </summary>
public Diagram diagram;
/// <summary>
/// Materials whose textures should be generated by the diagram.
/// </summary>
public Material[] materials;
/// <summary>
/// Settings for the generated textures.
/// </summary>
public DiagramTextureSettings textureSettings;
/// <summary>
/// Generated textures.
/// </summary>
[NonSerialized]
public Texture2D[] textures;
[NonSerialized]
Color[][] buffers;
[NonSerialized]
private readonly Task task;
private static TextureFormat[] normalTextureFormats = {
#if UNITY_EDITOR || !(UNITY_IPHONE || UNITY_ANDROID || UNITY_BLACKBERRY || UNITY_WP8)
TextureFormat.ARGB32,
#else
TextureFormat.RGB24,
#endif
TextureFormat.ARGB32,
TextureFormat.RGB24,
TextureFormat.ARGB32
};
public DiagramMaterialLink(Diagram d, Material m)
{
buffers = new Color[0][];
diagram = d;
textureSettings = new DiagramTextureSettings(512,512);
materials = new Material[1];
materials[0] = m;
AllocateTextures();
InitBuffers();
task = Task.Run(run);
}
private void run()
{
Process();
FillRows();
}
public bool done()
{
bool b = task.IsCompleted;
if (!b) return b;
ApplyTextures();
AssignTexturesToMaterials();
return b;
}
/// <summary>
/// Create the texture objects but do not fill them yet.
/// </summary>
public void AllocateTextures() {
if (diagram == null) {
textures = new Texture2D[0];
return;
}
textures = new Texture2D[diagram.outputs.Length];
for (int i = 0; i < textures.Length; i++) {
TextureFormat format;
bool linear = textureSettings.linear;
switch (diagram.outputs[i].type) {
case DiagramTextureType.ARGB: format = TextureFormat.ARGB32; break;
case DiagramTextureType.RGB: format = TextureFormat.RGB24; break;
case DiagramTextureType.Alpha: format = TextureFormat.Alpha8; break;
default: // DiagramTextureType.NormalMap
format = normalTextureFormats[(int)textureSettings.normalFormat];
linear = true;
break;
}
Texture2D t = new Texture2D(textureSettings.width, textureSettings.height, format, textureSettings.mipmap, linear);
t.name = "Managed NumberFlow Diagram Texture";
t.hideFlags = HideFlags.HideAndDontSave;
t.filterMode = textureSettings.filterMode;
t.wrapMode = textureSettings.wrapMode;
t.anisoLevel = textureSettings.anisoLevel;
textures[i] = t;
}
}
/// <summary>
/// Clean up textures.
/// </summary>
public void OnDestroy() {
if (diagram == null || textures == null) {
return;
}
for (int m = 0; m < materials.Length; m++) {
Material material = materials[m];
if (material != null) {
for (int o = 0; o < diagram.outputs.Length; o++) {
material.SetTexture(diagram.outputs[o].name, null);
}
}
}
for (int i = 0; i < textures.Length; i++) {
#if UNITY_EDITOR
GameObject.DestroyImmediate(textures[i]);
#else
GameObject.Destroy(textures[i]);
#endif
}
textures = null;
}
/// <summary>
/// Initialize the buffers, fill and postprocess the textures.
/// </summary>
/// <param name="buffers">Pixel buffers.</param>
public void Process() {
InitBuffers();
diagram.Fill(buffers, textureSettings.width, textureSettings.height);
diagram.PostProcess(buffers, textureSettings.width, textureSettings.height, textureSettings.normalFormat);
}
/// <summary>
/// Initialize the buffers.
/// </summary>
/// <param name="buffers">Pixel buffers.</param>
public void InitBuffers() {
if (buffers.Length < textures.Length) {
Array.Resize(ref buffers, textures.Length);
}
int textureSize = textureSettings.width * textureSettings.height;
for (int i = 0; i < textures.Length; i++) {
if (buffers[i] == null) {
buffers[i] = new Color[textureSize];
}
else if (buffers[i].Length < textureSize) {
Array.Resize(ref buffers[i], textureSize);
}
}
}
/// <summary>
/// Fill the specified rows of all textures. Return whether the last row was filled.
/// </summary>
/// <returns>Whether filling is done.</returns>
/// <param name="buffers">Pixel buffers.</param>
/// <param name="rowIndex">Row index to start from.</param>
/// <param name="rowCount">How many rows to fill.</param>
public void FillRows() {
int rowIndex = 0;
int rowCount = 0;
float previousTime = 0f;
while (true)
{
float now = Time.realtimeSinceStartup;
float deltaTime = now - previousTime;
previousTime = now;
if (rowCount <= 0)
{
// We took a break or just started.
rowCount = 1;
}
else if (deltaTime < 0.05f)
{
// We can speed up.
rowCount *= 2;
}
else if (deltaTime > 0.1f)
{
// Emergency stop.
rowCount = 0;
}
else if (deltaTime > 0.05f)
{
// Slow down.
rowCount /= 2;
}
rowIndex = diagram.FillRows(buffers, textureSettings.width, textureSettings.height, rowIndex, rowCount);
Debug.Log(rowCount);
if ((rowIndex >= textureSettings.height)) break;
}
}
/// <summary>
/// Post process the buffers for all textures.
/// </summary>
/// <param name="buffers">Pixel buffers.</param>
public void PostProcess () {
diagram.PostProcess(buffers, textureSettings.width, textureSettings.height, textureSettings.normalFormat);
}
/// <summary>
/// Apply the pixel buffers to all textures.
/// </summary>
/// <param name="buffers">Pixel buffers.</param>
public void ApplyTextures () {
Debug.Log("textures-" + textures.Length);
for (int i = 0; i < textures.Length; i++) {
textures[i].SetPixels(buffers[i]);
textures[i].Apply(true, true);
}
}
/// <summary>
/// Assign all textures to all materials.
/// </summary>
public void AssignTexturesToMaterials () {
if (diagram == null || textures == null) {
return;
}
for (int m = 0; m < materials.Length; m++) {
Material material = materials[m];
if (material != null) {
for (int o = 0; o < diagram.outputs.Length; o++) {
material.SetTexture(diagram.outputs[o].name, textures[o]);
}
}
}
}
}
}