SpriteManager 2
 All Classes Functions Variables Enumerations Enumerator Properties
SpriteMesh.cs
1 //-----------------------------------------------------------------
2 // Copyright 2010 Brady Wright and Above and Beyond Software
3 // All rights reserved
4 //-----------------------------------------------------------------
5 
6 
7 // #define WARN_ON_NO_MATERIAL
8 // #define SPRITE_WANT_NORMALS // Automatically generates normals for the sprite mesh
9 
10 
11 using UnityEngine;
12 using System.Collections;
13 
14 
15 // Wraps the actual sprite mesh
16 // so that the sprite itself doesn't
17 // have to worry about the underlying
18 // management of the mesh directly
19 // so that it can easily switch between
20 // managed or unmanaged without worry.
21 public class SpriteMesh : ISpriteMesh
22 {
23  protected SpriteRoot m_sprite;
24 
25  protected MeshFilter meshFilter;
26  protected MeshRenderer meshRenderer;
27  protected Mesh m_mesh; // Reference to our mesh
28  protected Texture m_texture;
29  protected Vector3[] m_vertices = new Vector3[4];
30  protected Color[] m_colors = new Color[4];
31  protected Vector2[] m_uvs = new Vector2[4];
32  protected Vector2[] m_uvs2 = new Vector2[4];
33  protected int[] m_faces = new int[6];
34  protected bool m_useUV2 = false;
35 
36 
37  public virtual SpriteRoot sprite
38  {
39  get { return m_sprite; }
40  set
41  {
42  m_sprite = value;
43 
44  if (m_sprite != null)
45  {
46  if (m_sprite.spriteMesh != this)
47  m_sprite.spriteMesh = this;
48  }
49  else
50  return;
51 
52  meshFilter = (MeshFilter)m_sprite.gameObject.GetComponent(typeof(MeshFilter));
53  if (meshFilter == null)
54  meshFilter = (MeshFilter) m_sprite.gameObject.AddComponent(typeof(MeshFilter));
55 
56  meshRenderer = (MeshRenderer)m_sprite.gameObject.GetComponent(typeof(MeshRenderer));
57  if (meshRenderer == null)
58  meshRenderer = (MeshRenderer)m_sprite.gameObject.AddComponent(typeof(MeshRenderer));
59 
60  m_mesh = meshFilter.sharedMesh;
61 
62  if (meshRenderer.sharedMaterial != null)
63  m_texture = meshRenderer.sharedMaterial.GetTexture("_MainTex");
64 #if WARN_ON_NO_MATERIAL
65  else
66  Debug.LogWarning("Sprite on GameObject \"" + m_sprite.name + "\" has not been assigned a material.");
67 #endif
68  }
69  }
70 
71  public virtual Texture texture
72  {
73  get { return m_texture; }
74  }
75 
76  public virtual Material material
77  {
78  get { return meshRenderer.sharedMaterial; }
79  set
80  {
81  meshRenderer.sharedMaterial = value;
82  m_texture = meshRenderer.sharedMaterial.mainTexture;
83  if (m_sprite != null && m_texture != null)
84  m_sprite.SetPixelToUV(m_texture);
85  }
86  }
87 
88  public virtual Vector3[] vertices
89  {
90  get { return m_vertices; }
91  }
92 
93  public virtual Vector2[] uvs
94  {
95  get { return m_uvs; }
96  }
97 
98  public virtual Vector2[] uvs2
99  {
100  get { return m_uvs2; }
101  }
102 
103  public virtual bool UseUV2
104  {
105  get { return m_useUV2; }
106  set { m_useUV2 = value; }
107  }
108 
109  public virtual Mesh mesh
110  {
111  get
112  {
113  if (m_mesh == null)
114  {
115  CreateMesh();
116  }
117 
118  return m_mesh;
119  }
120  set { m_mesh = value; }
121  }
122 
123  public virtual void Init()
124  {
125  if (m_mesh == null)
126  {
127  CreateMesh();
128  }
129 
130  // Assign to mesh object:
131  m_mesh.Clear();
132  m_mesh.vertices = m_vertices;
133  m_mesh.uv = m_uvs;
134  m_mesh.colors = m_colors;
135  m_mesh.triangles = m_faces;
136 
137  SetWindingOrder(m_sprite.winding);
138 
139  // Calculate UV dimensions:
140  if (!m_sprite.uvsInitialized)
141  {
142  m_sprite.InitUVs();
143  m_sprite.uvsInitialized = true;
144  }
145 
146  m_sprite.SetBleedCompensation(m_sprite.bleedCompensation);
147 
148  // Build vertices:
149  if (m_sprite.pixelPerfect)
150  {
151  if (m_texture == null)
152  {
153  if (meshRenderer.sharedMaterial != null)
154  m_texture = meshRenderer.sharedMaterial.GetTexture("_MainTex");
155  }
156 
157  if (m_texture != null)
158  {
159  m_sprite.SetPixelToUV(m_texture);
160  }
161 
162  if (m_sprite.renderCamera == null)
163  m_sprite.SetCamera(Camera.main);
164  else
165  m_sprite.SetCamera(m_sprite.renderCamera);
166  }
167  else if (!m_sprite.hideAtStart)
168  m_sprite.SetSize(m_sprite.width, m_sprite.height);
169 
170  m_mesh.RecalculateNormals();
171 
172  // Set colors:
173  m_sprite.SetColor(m_sprite.color);
174  }
175 
176  protected void CreateMesh()
177  {
178  meshFilter.sharedMesh = new Mesh();
179  m_mesh = meshFilter.sharedMesh;
180 #if UNITY_4 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_4_7 || UNITY_4_8 || UNITY_4_9
181  m_mesh.MarkDynamic();
182 #endif
183  if (m_sprite.persistent)
184  GameObject.DontDestroyOnLoad(m_mesh);
185  }
186 
187  public virtual void UpdateVerts()
188  {
189  if (m_mesh == null)
190  CreateMesh();
191 
192  m_mesh.vertices = m_vertices;
193  m_mesh.RecalculateBounds();
194 #if SPRITE_WANT_NORMALS
195  m_mesh.RecalculateNormals();
196 #endif
197  }
198 
199  public virtual void UpdateUVs()
200  {
201  if (m_mesh != null)
202  {
203  m_mesh.uv = m_uvs;
204  if (m_useUV2)
205  m_mesh.uv2 = m_uvs2;
206  }
207  }
208 
209  public virtual void UpdateColors(Color color)
210  {
211  m_colors[0] = color;
212  m_colors[1] = color;
213  m_colors[2] = color;
214  m_colors[3] = color;
215 
216  if (m_mesh != null)
217  {
218  m_mesh.colors = m_colors;
219  }
220  }
221 
222  public virtual void Hide(bool tf)
223  {
224  if (meshRenderer == null)
225  return;
226 
227  meshRenderer.enabled = !tf;
228  }
229 
230  public virtual bool IsHidden()
231  {
232  if (meshRenderer == null)
233  return true;
234 
235  return !meshRenderer.enabled;
236  }
237 
238  public void SetPersistent()
239  {
240  if(m_mesh != null)
241  GameObject.DontDestroyOnLoad(m_mesh);
242  }
243 
244  public virtual void SetWindingOrder(SpriteRoot.WINDING_ORDER winding)
245  {
246 /* Commented out because this should now be taken care of
247  * by the fact we now reverse the x position of the vertices.
248  *
249  if (winding == SpriteRoot.WINDING_ORDER.CCW)
250  {
251  // Counter-clockwise:
252  m_faces[0] = 0; // 0_ 2 0 ___ 3
253  m_faces[1] = 1; // | / Verts: | /|
254  m_faces[2] = 3; // 1|/ 1|/__|2
255 
256  m_faces[3] = 3; // 3
257  m_faces[4] = 1; // /|
258  m_faces[5] = 2; // 4/_|5
259  }
260  else
261 */
262  {
263  // Clock-wise:
264  m_faces[0] = 0; // 0_ 1 0 ___ 3
265  m_faces[1] = 3; // | / Verts: | /|
266  m_faces[2] = 1; // 2|/ 1|/__|2
267 
268  m_faces[3] = 3; // 3
269  m_faces[4] = 2; // /|
270  m_faces[5] = 1; // 5/_|4
271  }
272 
273  if (m_mesh != null)
274  m_mesh.triangles = m_faces;
275  }
276 }
The root class of all sprites. Does not assume any animation capabilities or atlas packing...
Definition: SpriteRoot.cs:628