SpriteManager 2
 All Classes Functions Variables Enumerations Enumerator Properties
SpriteMesh_Managed.cs
1 //-----------------------------------------------------------------
2 // Copyright 2010 Brady Wright and Above and Beyond Software
3 // All rights reserved
4 //-----------------------------------------------------------------
5 
6 
7 using UnityEngine;
8 using System.Collections;
9 
10 
11 // Wraps the management of a sprite's mesh.
12 // This way, the sprite can act as though it
13 // has its own mesh, while this class works
14 // with the SpriteManager to update the proper
15 // vertices, UVs, etc, in the managed mesh.
16 public class SpriteMesh_Managed : ISpriteMesh, IEZLinkedListItem<SpriteMesh_Managed>
17 {
18  protected SpriteRoot m_sprite;
19 
20  protected bool hidden;
21 
22  public int index;
23  public int drawLayer;
24  public SpriteManager m_manager;
25 
26  // Used for stepping through lists:
27  public SpriteMesh_Managed m_next;
28  public SpriteMesh_Managed m_prev;
29 
30  // The sprite's vertices and such (local copy)
31  protected Vector3[] m_vertices = new Vector3[4];
32  protected Vector2[] m_uvs = new Vector2[4];
33  protected Vector2[] m_uvs2 = new Vector2[4];
34  protected bool m_useUV2 = false;
35  protected Material m_material;
36  protected Texture m_texture;
37 
38  // The entire manager's vertices:
39  protected Vector3[] meshVerts;
40 
41  // The entire manager's UVs:
42  protected Vector2[] meshUVs;
43  protected Vector2[] meshUVs2;
44 
45  // The entire manager's colors:
46  protected Color[] meshColors;
47 
48  public int mv1; // Indices of the associated vertices in the actual mesh (this just provides a quicker way for the SpriteManager to get straight to the right vertices in the vertex array)
49  public int mv2;
50  public int mv3;
51  public int mv4;
52 
53  public int uv1; // Indices of the associated UVs in the mesh
54  public int uv2;
55  public int uv3;
56  public int uv4;
57 
58  public int cv1; // Indices of the associated color values in the mesh
59  public int cv2;
60  public int cv3;
61  public int cv4;
62 
63  public void SetBuffers(Vector3[] verts, Vector2[] uvs, Vector2[] uvs2, Color[] cols)
64  {
65  meshVerts = verts;
66  meshUVs = uvs;
67  meshUVs2 = uvs2;
68  meshColors = cols;
69  }
70 
71  public void Clear()
72  {
73  hidden = false;
74  //UpdateColors(Color.white);
75  }
76 
77  public SpriteManager manager
78  {
79  get { return m_manager; }
80  set
81  {
82  m_manager = value;
83 
84  m_material = m_manager.renderer.sharedMaterial;
85 
86  if(m_material != null)
87  m_texture = m_material.GetTexture("_MainTex");
88  }
89  }
90 
91  public virtual SpriteRoot sprite
92  {
93  get { return m_sprite; }
94  set
95  {
96  m_sprite = value;
97  if(m_sprite != null)
98  UpdateColors(m_sprite.color);
99  }
100  }
101 
102  public virtual Texture texture
103  {
104  get { return m_texture; }
105  }
106 
107  public virtual Material material
108  {
109  get { return m_material; }
110  }
111 
112  public virtual Vector3[] vertices
113  {
114  get { return m_vertices; }
115  }
116 
117  public virtual Vector2[] uvs
118  {
119  get { return m_uvs; }
120  }
121 
122  public virtual Vector2[] uvs2
123  {
124  get { return m_uvs2; }
125  }
126 
127  public virtual bool UseUV2
128  {
129  get { return m_useUV2; }
130  set { m_useUV2 = value; }
131  }
132 
133  public virtual void Init()
134  {
135  if (!m_sprite.Started)
136  m_sprite.Start();
137 
138  // Calculate UV dimensions:
139  if (!m_sprite.uvsInitialized)
140  {
141  m_sprite.InitUVs();
142  m_sprite.uvsInitialized = true;
143  }
144 
145  m_sprite.SetBleedCompensation(m_sprite.bleedCompensation);
146 
147  // Build vertices:
148  if (m_sprite.pixelPerfect)
149  {
150  if (m_texture != null)
151  {
152  m_sprite.SetPixelToUV(m_texture);
153  }
154 
155  if (m_sprite.renderCamera == null)
156  m_sprite.SetCamera(Camera.main);
157  else
158  m_sprite.SetCamera(m_sprite.renderCamera);
159  }
160  else if(!m_sprite.hideAtStart)
161  m_sprite.SetSize(m_sprite.width, m_sprite.height);
162 
163  // Set colors:
164  m_sprite.SetColor(m_sprite.color);
165  }
166 
167  public virtual void UpdateVerts()
168  {
169  // Only update our vertices if we
170  // aren't hidden since we hide
171  // managed sprites by keeping the
172  // vertices at 0,0,0:
173  if (hidden)
174  return;
175 #if !UNITY_FLASH
176  meshVerts[mv1] = m_vertices[0];
177  meshVerts[mv2] = m_vertices[1];
178  meshVerts[mv3] = m_vertices[2];
179  meshVerts[mv4] = m_vertices[3];
180 #else
181  meshVerts[mv1].x = m_vertices[0].x; meshVerts[mv1].y = m_vertices[0].y; meshVerts[mv1].z = m_vertices[0].z;
182  meshVerts[mv2].x = m_vertices[1].x; meshVerts[mv2].y = m_vertices[1].y; meshVerts[mv2].z = m_vertices[1].z;
183  meshVerts[mv3].x = m_vertices[2].x; meshVerts[mv3].y = m_vertices[2].y; meshVerts[mv3].z = m_vertices[2].z;
184  meshVerts[mv4].x = m_vertices[3].x; meshVerts[mv4].y = m_vertices[3].y; meshVerts[mv4].z = m_vertices[3].z;
185 #endif
186 
187  m_manager.UpdatePositions();
188  }
189 
190  public virtual void UpdateUVs()
191  {
192 #if !UNITY_FLASH
193  meshUVs[uv1] = uvs[0];
194  meshUVs[uv2] = uvs[1];
195  meshUVs[uv3] = uvs[2];
196  meshUVs[uv4] = uvs[3];
197 #else
198  meshUVs[uv1].x = uvs[0].x; meshUVs[uv1].y = uvs[0].y;
199  meshUVs[uv2].x = uvs[1].x; meshUVs[uv2].y = uvs[1].y;
200  meshUVs[uv3].x = uvs[2].x; meshUVs[uv3].y = uvs[2].y;
201  meshUVs[uv4].x = uvs[3].x; meshUVs[uv4].y = uvs[3].y;
202 #endif
203 
204  if (m_useUV2)
205  {
206 #if !UNITY_FLASH
207  meshUVs2[uv1] = uvs2[0];
208  meshUVs2[uv2] = uvs2[1];
209  meshUVs2[uv3] = uvs2[2];
210  meshUVs2[uv4] = uvs2[3];
211 #else
212  meshUVs2[uv1].x = uvs2[0].x; meshUVs2[uv1].y = uvs2[0].y;
213  meshUVs2[uv2].x = uvs2[1].x; meshUVs2[uv2].y = uvs2[1].y;
214  meshUVs2[uv3].x = uvs2[2].x; meshUVs2[uv3].y = uvs2[2].y;
215  meshUVs2[uv4].x = uvs2[3].x; meshUVs2[uv4].y = uvs2[3].y;
216 #endif
217  }
218 
219  m_manager.UpdateUVs();
220  }
221 
222  public virtual void UpdateColors(Color color)
223  {
224  meshColors[cv1] = color;
225  meshColors[cv2] = color;
226  meshColors[cv3] = color;
227  meshColors[cv4] = color;
228 
229  m_manager.UpdateColors();
230  }
231 
232  public virtual void Hide(bool tf)
233  {
234  if (tf)
235  {
236  m_vertices[0] = Vector3.zero;
237  m_vertices[1] = Vector3.zero;
238  m_vertices[2] = Vector3.zero;
239  m_vertices[3] = Vector3.zero;
240  UpdateVerts();
241  hidden = tf; // Assign after so that UpdateVerts() will run.
242  }
243  else
244  {
245  hidden = tf;
246  if (m_sprite.pixelPerfect)
247  m_sprite.CalcSize();
248  else
249  m_sprite.SetSize(m_sprite.width, m_sprite.height);
250  }
251  }
252 
253  public virtual bool IsHidden()
254  {
255  return hidden;
256  }
257 
258  public SpriteMesh_Managed prev
259  {
260  get { return m_prev; }
261  set { m_prev = value; }
262  }
263 
264  public SpriteMesh_Managed next
265  {
266  get { return m_next; }
267  set { m_next = value; }
268  }
269 }
The root class of all sprites. Does not assume any animation capabilities or atlas packing...
Definition: SpriteRoot.cs:628
Allows multiple sprites to be combined into a single mesh. Sprites are transformed using bones which ...