SpriteManager 2
 All Classes Functions Variables Enumerations Enumerator Properties
AutoSpriteBase.cs
1 //-----------------------------------------------------------------
2 // AutoSpriteBase
3 // Copyright 2010 Brady Wright and Above and Beyond Software
4 // All rights reserved
5 //-----------------------------------------------------------------
6 
7 // #define SPRITE_FRAME_DELEGATE // Adds code to call a delegate for each frame of animation (comment out this line to improve performance)
8 
9 
10 using UnityEngine;
11 using System.Collections;
12 using System.Collections.Generic;
13 
14 
15 
16 
23 [System.Serializable]
24 public class TextureAnim
25 {
29  public string name;
30 
35  public int loopCycles = 0;
36 
40  public bool loopReverse = false;
41 
45  public float framerate = 15f;// The rate in frames per second at which to play the animation
46 
52  public UVAnimation.ANIM_END_ACTION onAnimEnd = UVAnimation.ANIM_END_ACTION.Do_Nothing;
53 
54  // Array of paths to textures each of which serve as a frame of animation.
55  [HideInInspector]
56  public string[] framePaths;
57  // Array of GUIDs for textures each of which serve as a frame of animation.
58  [HideInInspector]
59  public string[] frameGUIDs;
60 
61  // Arrays that parallel the Texture2D frames but are populated
62  // with UV coordinates and other info upon atlas compilation which
63  // point to the UV locations of where the textures were placed on
64  // the atlas.
65  [HideInInspector]
66  public CSpriteFrame[] spriteFrames; // Array that parallels the Texture2D frameGUIDs array and holds the post-packing atlas UV coords for the given frame
67 
68  // Allocates enough elements in each of the "frame info" fields
69  // to hold info for each animation frame specified in "frames":
70  public void Allocate()
71  {
72  bool allocate = false;
73 
74  if (framePaths == null)
75  framePaths = new string[0];
76  if (frameGUIDs == null)
77  frameGUIDs = new string[0];
78 
79  if (spriteFrames == null)
80  allocate = true;
81  else if (spriteFrames.Length != frameGUIDs.Length)
82  allocate = true;
83 
84  if (allocate)
85  {
86  spriteFrames = new CSpriteFrame[Mathf.Max(frameGUIDs.Length, framePaths.Length)];
87  for (int i = 0; i < spriteFrames.Length; ++i)
88  spriteFrames[i] = new CSpriteFrame();
89  }
90  }
91 
92  public TextureAnim()
93  {
94  Allocate();
95  }
96 
97  public TextureAnim(string n)
98  {
99  name = n;
100  Allocate();
101  }
102 
103  // Member-wise copy:
104  public void Copy(TextureAnim a)
105  {
106  name = a.name;
107  loopCycles = a.loopCycles;
108  loopReverse = a.loopReverse;
109  framerate = a.framerate;
110  onAnimEnd = a.onAnimEnd;
111 
112  framePaths = new string[a.framePaths.Length];
113  a.framePaths.CopyTo(framePaths, 0);
114 
115  frameGUIDs = new string[a.frameGUIDs.Length];
116  a.frameGUIDs.CopyTo(frameGUIDs, 0);
117 
118  spriteFrames = new CSpriteFrame[a.spriteFrames.Length];
119  for (int i = 0; i < spriteFrames.Length; ++i)
120  spriteFrames[i] = new CSpriteFrame(a.spriteFrames[i]);
121  }
122 }
123 
124 
125 
132 public abstract class AutoSpriteBase : SpriteBase, ISpriteAggregator, ISpritePackable
133 {
134  //---------------------------------------------
135  // Members related to building atlases:
136  // (Used for ISpriteAggregator implementation, such
137  // as Aggregate(), etc)
138  //---------------------------------------------
139  protected Texture2D[] sourceTextures;
140  protected CSpriteFrame[] spriteFrames;
141 
142 
143 
149  public bool doNotTrimImages = false;
150 
151 
152 
156  [HideInInspector]
158  protected UVAnimation curAnim = null; // The current animation
159 
160 
161 
162  // Used to allow us to write code that accesses
163  // the sprite's states/animation lists while
164  // allowing children to declare the actual
165  // array that will hold them.
169  public abstract TextureAnim[] States
170  {
171  get;
172  set;
173  }
174 
175 
181  public virtual CSpriteFrame DefaultFrame
182  {
183  get
184  {
185  if (States[0].spriteFrames.Length != 0)
186  return States[0].spriteFrames[0];
187  else
188  return null;
189  }
190  }
191 
192  // Gets the default state (or animation)
193  // of the sprite object.
194  public virtual TextureAnim DefaultState
195  {
196  get
197  {
198  if (States != null)
199  if (States.Length != 0)
200  return States[0];
201 
202  return null;
203  }
204  }
205 
206  public override Vector2 GetDefaultPixelSize(PathFromGUIDDelegate guid2Path, AssetLoaderDelegate loader)
207  {
208  TextureAnim a = DefaultState;
210 
211  if (a == null)
212  return Vector2.zero;
213  if (a.frameGUIDs == null)
214  return Vector2.zero;
215  if (a.frameGUIDs.Length == 0)
216  return Vector2.zero;
217  if (f == null)
218  {
219  Debug.LogWarning("Sprite \"" + name + "\" does not seem to have been built to an atlas yet.");
220  return Vector2.zero;
221  }
222 
223  Vector2 size = Vector2.zero;
224 
225  Texture2D tex = (Texture2D)loader(guid2Path(a.frameGUIDs[0]), typeof(Texture2D));
226 
227  if (tex == null)
228  {
229  if (spriteMesh != null)
230  {
231  tex = (Texture2D)spriteMesh.material.GetTexture("_MainTex");
232  size = new Vector2(f.uvs.width * tex.width, f.uvs.height * tex.height);
233  }
234  }
235  else
236  size = new Vector2(tex.width * (1f / (f.scaleFactor.x * 2f)), tex.height * (1f / (f.scaleFactor.y * 2f)));
237 
238  return size;
239  }
240 
241  protected override void Awake()
242  {
243  base.Awake();
244 
245  animations = new UVAnimation[States.Length];
246 
247  for (int i = 0; i < States.Length; ++i)
248  {
249  animations[i] = new UVAnimation();
250  animations[i].SetAnim(States[i], i);
251  }
252  }
253 
254 
255  // Resets all sprite values to defaults for reuse:
256  public override void Clear()
257  {
258  base.Clear();
259 
260  if (curAnim != null)
261  {
262  PauseAnim();
263  curAnim = null;
264  }
265  }
266 
267 
273  public void Setup(float w, float h)
274  {
275  this.Setup(w, h, m_spriteMesh.material);
276  }
277 
284  public void Setup(float w, float h, Material material)
285  {
286  width = w;
287  height = h;
288 
289  if (!managed)
290  ((SpriteMesh)m_spriteMesh).material = material;
291 
292  Init();
293  }
294 
295 
300  public override void Copy(SpriteRoot s)
301  {
302  AutoSpriteBase sp;
303 
304  base.Copy(s);
305 
306  // Check the type:
307  if (!(s is AutoSpriteBase))
308  return;
309 
310  sp = (AutoSpriteBase)s;
311 
312  // See if it is an actual sprite instance:
313  if (sp.spriteMesh != null)
314  {
315  if (sp.animations.Length > 0)
316  {
317  animations = new UVAnimation[sp.animations.Length];
318  for (int i = 0; i < animations.Length; ++i)
319  animations[i] = sp.animations[i].Clone();
320  }
321  }
322  else if (States != null)
323  {
324  // Assume this is a prefab, so copy the UV info
325  //from its TextureAnimations instead:
326  animations = new UVAnimation[sp.States.Length];
327 
328  for (int i = 0; i < sp.States.Length; ++i)
329  {
330  animations[i] = new UVAnimation();
331  animations[i].SetAnim(sp.States[i], i);
332  }
333  }
334  }
335 
341  public virtual void CopyAll(SpriteRoot s)
342  {
343  AutoSpriteBase sp;
344 
345  base.Copy(s);
346 
347  // Check the type:
348  if (!(s is AutoSpriteBase))
349  return;
350 
351  sp = (AutoSpriteBase)s;
352 
353  States = new TextureAnim[sp.States.Length];
354 
355  for (int i = 0; i < States.Length; ++i)
356  {
357  States[i] = new TextureAnim();
358  States[i].Copy(sp.States[i]);
359  }
360 
361  animations = new UVAnimation[States.Length];
362 
363  for (int i = 0; i < States.Length; ++i)
364  {
365  animations[i] = new UVAnimation();
366  animations[i].SetAnim(States[i], i);
367  }
368 
369  doNotTrimImages = sp.doNotTrimImages;
370  }
371 
372 
373  // Steps to the next frame of sprite animation
374  public override bool StepAnim(float time)
375  {
376  if (curAnim == null)
377  return false;
378 
379  timeSinceLastFrame += Mathf.Max(0, time);
380  //timeSinceLastFrame += time;
381 
382  framesToAdvance = (timeSinceLastFrame / timeBetweenAnimFrames);
383 
384  // If there's nothing to do, return:
385  if (framesToAdvance < 1)
386  {
387  if (crossfadeFrames)
388  SetColor(new Color(1f, 1f, 1f, (1f - framesToAdvance)));
389  return true;
390  }
391 
392  //timeSinceLastFrame -= timeBetweenAnimFrames * (float)framesToAdvance;
393 
394  while (framesToAdvance >= 1f)
395  {
396  if (curAnim.GetNextFrame(ref frameInfo))
397  {
398 #if SPRITE_FRAME_DELEGATE
399  // Notify the delegate:
400  if(framesToAdvance >= 1f)
401  if (animFrameDelegate != null)
402  animFrameDelegate(this, curAnim.GetCurPosition());
403 #endif
404  framesToAdvance -= 1f;
405  timeSinceLastFrame -= timeBetweenAnimFrames;
406  }
407  else
408  {
409  // We reached the end of our animation
410  if (crossfadeFrames)
411  SetColor(Color.white);
412 
413  // See if we should revert to a static appearance,
414  // default anim, or do nothing, etc:
415  switch (curAnim.onAnimEnd)
416  {
417  case UVAnimation.ANIM_END_ACTION.Do_Nothing:
418  PauseAnim();
419 
420  // Update mesh UVs:
421  uvRect = frameInfo.uvs;
422  SetBleedCompensation();
423 
424  // Resize if selected:
425  if (autoResize || pixelPerfect)
426  CalcSize();
427  break;
428 
429  case UVAnimation.ANIM_END_ACTION.Revert_To_Static:
430  RevertToStatic();
431  break;
432 
433  case UVAnimation.ANIM_END_ACTION.Play_Default_Anim:
434  // Notify the delegates:
435  /*
436  #if SPRITE_FRAME_DELEGATE
437  if (animFrameDelegate != null)
438  animFrameDelegate(this, curAnim.GetCurPosition());
439  #endif
440  */
441 
442  if (animCompleteDelegate != null)
443  animCompleteDelegate(this);
444 
445  // Play the default animation:
447  return false;
448 
449  case UVAnimation.ANIM_END_ACTION.Hide:
450  Hide(true);
451  break;
452  case UVAnimation.ANIM_END_ACTION.Deactivate:
453 #if UNITY_4_0 || 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
454  gameObject.SetActive(false);
455 #else
456  gameObject.active = false;
457 #endif
458  break;
459  case UVAnimation.ANIM_END_ACTION.Destroy:
460  // Notify the delegates:
461  /*
462  #if SPRITE_FRAME_DELEGATE
463  if (animFrameDelegate != null)
464  animFrameDelegate(this, curAnim.GetCurPosition());
465  #endif
466  */
467  if (animCompleteDelegate != null)
468  animCompleteDelegate(this);
469 
470  Delete();
471  Destroy(gameObject);
472  break;
473  }
474 
475  // Notify the delegates:
476  /*
477  #if SPRITE_FRAME_DELEGATE
478  if (animFrameDelegate != null)
479  animFrameDelegate(this, curAnim.GetCurPosition());
480  #endif
481  */
482  if (animCompleteDelegate != null && curAnim.onAnimEnd != UVAnimation.ANIM_END_ACTION.Destroy)
483  animCompleteDelegate(this);
484 
485  // Check to see if we are still animating
486  // before setting the curAnim to null.
487  // Animating should be turned off if
488  // PauseAnim() was called above, or if we
489  // reverted to static. But it could have
490  // been turned on again by the
491  // animCompleteDelegate.
492  if (!animating)
493  curAnim = null;
494 
495  return false;
496  }
497  }
498 
499  // Cross-fade to the next frame:
500  if (crossfadeFrames)
501  {
502  int curFrame = curAnim.GetCurPosition();
503  int stepDir = curAnim.StepDirection;
504 
505  curAnim.GetNextFrame(ref nextFrameInfo);
506 
507  Vector2[] uvs2 = m_spriteMesh.uvs2;
508  Rect nextUV = nextFrameInfo.uvs;
509  uvs2[0].x = nextUV.xMin; uvs2[0].y = nextUV.yMax;
510  uvs2[1].x = nextUV.xMin; uvs2[1].y = nextUV.yMin;
511  uvs2[2].x = nextUV.xMax; uvs2[2].y = nextUV.yMin;
512  uvs2[3].x = nextUV.xMax; uvs2[3].y = nextUV.yMax;
513 
514  // Undo our advance:
515  curAnim.SetCurrentFrame(curFrame);
516  curAnim.StepDirection = stepDir;
517 
518  SetColor(new Color(1f, 1f, 1f, (1f - framesToAdvance)));
519  }
520  /*
521  #if SPRITE_FRAME_DELEGATE
522  if (animFrameDelegate != null)
523  animFrameDelegate(this, curAnim.GetCurPosition());
524  #endif
525  */
526  // Update mesh UVs:
527  uvRect = frameInfo.uvs;
528  SetBleedCompensation();
529 
530  // Resize if selected:
531  if (autoResize || pixelPerfect)
532  CalcSize();
533  else if (anchor == SpriteRoot.ANCHOR_METHOD.TEXTURE_OFFSET)
534  SetSize(width, height);
535 
536  //timeSinceLastFrame = 0;
537 
538  return true;
539  }
540 
541 
542  // Calls our animation complete delegate:
543  protected void CallAnimCompleteDelegate()
544  {
545  if (animCompleteDelegate != null)
546  animCompleteDelegate(this);
547  }
548 
549 
558  public void PlayAnim(UVAnimation anim, int frame)
559  {
560 #if UNITY_4_0 || 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
561  if (deleted || !gameObject.activeInHierarchy)
562 #else
563  if (deleted || !gameObject.active)
564 #endif
565  return;
566 
567  if (!m_started)
568  Start();
569 
570  curAnim = anim;
571  curAnimIndex = curAnim.index;
572  curAnim.Reset();
573  curAnim.SetCurrentFrame(frame - 1); // curFrame inside UVAnimation will be incremented before it is used, so anticipate this by decrementing by 1
574 
575  // Ensure the framerate is not 0 so we don't
576  // divide by zero:
577  if (anim.framerate != 0.0f)
578  {
579  timeBetweenAnimFrames = 1f / anim.framerate;
580  }
581  else
582  {
583  timeBetweenAnimFrames = 1f; // Just some dummy value since it won't be used
584  }
585 
586  timeSinceLastFrame = timeBetweenAnimFrames;
587 
588  // Only add to the animated list if
589  // the animation has more than 1 frame
590  // or the framerate is non-zero:
591  if ((anim.GetFrameCount() > 1 || anim.onAnimEnd != UVAnimation.ANIM_END_ACTION.Do_Nothing) && anim.framerate != 0.0f)
592  {
593  StepAnim(0);
594  // Start coroutine
595  if (!animating)
596  {
597  //animating = true;
598  AddToAnimatedList();
599  //StartCoroutine(AnimationPump());
600  }
601  }
602  else
603  {
604  // Make sure we are no longer in the animation pump:
605  PauseAnim();
606 
607  // Since this is a single-frame anim,
608  // call our delegate before setting
609  // the frame so that our behavior is
610  // consistent with multi-frame anims:
611  if (animCompleteDelegate != null)
612  {
613  // See if we need to delay calling
614  // our delegate to be consistent
615  // with our framerate:
616  if (anim.framerate != 0)
617  {
618  Invoke("CallAnimCompleteDelegate", 1f / anim.framerate);
619  }
620  else
621  animCompleteDelegate(this);
622  }
623 
624  StepAnim(0);
625  }
626  }
627 
635  public void PlayAnim(UVAnimation anim)
636  {
637  PlayAnim(anim, 0);
638  }
639 
640 
649  public void PlayAnim(int index, int frame)
650  {
651  if (index >= animations.Length)
652  {
653  Debug.LogError("ERROR: Animation index " + index + " is out of bounds!");
654  return;
655  }
656 
657  PlayAnim(animations[index], frame);
658  }
659 
667  public override void PlayAnim(int index)
668  {
669  if (index >= animations.Length)
670  {
671  Debug.LogError("ERROR: Animation index " + index + " is out of bounds!");
672  return;
673  }
674 
675  PlayAnim(animations[index], 0);
676  }
677 
686  public void PlayAnim(string name, int frame)
687  {
688  for (int i = 0; i < animations.Length; ++i)
689  {
690  if (animations[i].name == name)
691  {
692  PlayAnim(animations[i], frame);
693  return;
694  }
695  }
696 
697  Debug.LogError("ERROR: Animation \"" + name + "\" not found!");
698  }
699 
707  public override void PlayAnim(string name)
708  {
709  PlayAnim(name, 0);
710  }
711 
717  public void PlayAnimInReverse(UVAnimation anim)
718  {
719 #if UNITY_4_0 || 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
720  if (deleted || !gameObject.activeInHierarchy)
721 #else
722  if (deleted || !gameObject.active)
723 #endif
724  return;
725 
726  curAnim = anim;
727  curAnim.Reset();
728  curAnim.PlayInReverse();
729 
730  // Ensure the framerate is not 0 so we don't
731  // divide by zero:
732  if (anim.framerate != 0.0f)
733  {
734  timeBetweenAnimFrames = 1f / anim.framerate;
735  }
736  else
737  {
738  timeBetweenAnimFrames = 1f; // Just some dummy value since it won't be used
739  }
740 
741  timeSinceLastFrame = timeBetweenAnimFrames;
742 
743  // Only add to the animated list if
744  // the animation has more than 1 frame:
745  if ((anim.GetFrameCount() > 1 || anim.onAnimEnd != UVAnimation.ANIM_END_ACTION.Do_Nothing) && anim.framerate != 0.0f)
746  {
747  StepAnim(0);
748  // Start coroutine
749  if (!animating)
750  {
751  //animating = true;
752  AddToAnimatedList();
753  //StartCoroutine(AnimationPump());
754  }
755  }
756  else
757  {
758  // Make sure we are no longer in the animation pump:
759  PauseAnim();
760 
761  // Since this is a single-frame anim,
762  // call our delegate before setting
763  // the frame so that our behavior is
764  // consistent with multi-frame anims:
765  if (animCompleteDelegate != null)
766  animCompleteDelegate(this);
767 
768  StepAnim(0);
769  }
770  }
771 
778  public void PlayAnimInReverse(UVAnimation anim, int frame)
779  {
780 #if UNITY_4_0 || 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
781  if (deleted || !gameObject.activeInHierarchy)
782 #else
783  if (deleted || !gameObject.active)
784 #endif
785  return;
786  if (!m_started)
787  Start();
788 
789  curAnim = anim;
790  curAnim.Reset();
791  curAnim.PlayInReverse();
792  curAnim.SetCurrentFrame(frame + 1); // curFrame inside UVAnimation will be decremented before it is used, so anticipate this by decrementing by 1
793 
794  // Ensure the framerate is not 0 so we don't
795  // divide by zero:
796  anim.framerate = Mathf.Max(0.0001f, anim.framerate);
797 
798  timeBetweenAnimFrames = 1f / anim.framerate;
799  timeSinceLastFrame = timeBetweenAnimFrames;
800 
801  // Only add to the animated list if
802  // the animation has more than 1 frame:
803  if (anim.GetFrameCount() > 1)
804  {
805  StepAnim(0);
806  // Start coroutine
807  if (!animating)
808  {
809  //animating = true;
810  AddToAnimatedList();
811  //StartCoroutine(AnimationPump());
812  }
813  }
814  else
815  {
816  // Since this is a single-frame anim,
817  // call our delegate before setting
818  // the frame so that our behavior is
819  // consistent with multi-frame anims:
820  if (animCompleteDelegate != null)
821  animCompleteDelegate(this);
822 
823  StepAnim(0);
824  }
825  }
826 
832  public override void PlayAnimInReverse(int index)
833  {
834  if (index >= animations.Length)
835  {
836  Debug.LogError("ERROR: Animation index " + index + " is out of bounds!");
837  return;
838  }
839 
840  PlayAnimInReverse(animations[index]);
841  }
842 
849  public void PlayAnimInReverse(int index, int frame)
850  {
851  if (index >= animations.Length)
852  {
853  Debug.LogError("ERROR: Animation index " + index + " is out of bounds!");
854  return;
855  }
856 
857  PlayAnimInReverse(animations[index], frame);
858  }
859 
865  public override void PlayAnimInReverse(string name)
866  {
867  for (int i = 0; i < animations.Length; ++i)
868  {
869  if (animations[i].name == name)
870  {
871  animations[i].PlayInReverse();
872  PlayAnimInReverse(animations[i]);
873  return;
874  }
875  }
876 
877  Debug.LogError("ERROR: Animation \"" + name + "\" not found!");
878  }
879 
886  public void PlayAnimInReverse(string name, int frame)
887  {
888  for (int i = 0; i < animations.Length; ++i)
889  {
890  if (animations[i].name == name)
891  {
892  animations[i].PlayInReverse();
893  PlayAnimInReverse(animations[i], frame);
894  return;
895  }
896  }
897 
898  Debug.LogError("ERROR: Animation \"" + name + "\" not found!");
899  }
900 
901 
907  public void DoAnim(int index)
908  {
909  if (curAnim == null)
910  PlayAnim(index);
911  else if (curAnim.index != index || !animating)
912  PlayAnim(index);
913  }
914 
920  public void DoAnim(string name)
921  {
922  if (curAnim == null)
923  PlayAnim(name);
924  else if (curAnim.name != name || !animating)
925  PlayAnim(name);
926  }
927 
933  public void DoAnim(UVAnimation anim)
934  {
935  if (curAnim != anim || !animating)
936  PlayAnim(anim);
937  }
938 
943  public void SetCurFrame(int index)
944  {
945  if (curAnim == null)
946  return;
947  if (!m_started)
948  Start();
949 
950  curAnim.SetCurrentFrame(index - curAnim.StepDirection);
951  timeSinceLastFrame = timeBetweenAnimFrames;
952  StepAnim(0);
953  }
954 
961  public void SetFrame(UVAnimation anim, int frameNum)
962  {
963  PlayAnim(anim);
964  if (IsAnimating())
965  PauseAnim();
966  SetCurFrame(frameNum);
967  }
968 
975  public void SetFrame(string anim, int frameNum)
976  {
977  PlayAnim(anim);
978  if (IsAnimating())
979  PauseAnim();
980  SetCurFrame(frameNum);
981  }
982 
989  public void SetFrame(int anim, int frameNum)
990  {
991  PlayAnim(anim);
992  if (IsAnimating())
993  PauseAnim();
994  SetCurFrame(frameNum);
995  }
996 
1003  public override void StopAnim()
1004  {
1005  // Stop coroutine
1006  //animating = false;
1007  RemoveFromAnimatedList();
1008 
1009  //StopAllCoroutines();
1010 
1011  // Reset the animation:
1012  if (curAnim != null)
1013  curAnim.Reset();
1014 
1015  // Revert to our static appearance:
1016  RevertToStatic();
1017  }
1018 
1022  public void UnpauseAnim()
1023  {
1024  if (curAnim == null) return;
1025 
1026  // Resume coroutine
1027  //animating = true;
1028  AddToAnimatedList();
1029  //StartCoroutine(AnimationPump());
1030  }
1031 
1032  // Adds the sprite to the list of currently
1033  // animating sprites:
1034  protected override void AddToAnimatedList()
1035  {
1036  // Check to see if the coroutine is running,
1037  // and if not, start it:
1038  // if (!SpriteAnimationPump.pumpIsRunning)
1039  // SpriteAnimationPump.Instance.StartAnimationPump();
1040 
1041  // If we're already animating, then we're
1042  // already in the list, no need to add again.
1043  // Also, if we're inactive, also don't add:
1044 #if UNITY_4_0 || 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
1045  if (animating || !Application.isPlaying || !gameObject.activeInHierarchy)
1046 #else
1047  if (animating || !Application.isPlaying || !gameObject.active)
1048 #endif
1049  return;
1050 
1051  animating = true;
1052  currentlyAnimating = true;
1053  SpriteAnimationPump.Add(this);
1054  }
1055 
1056  // Removes the sprite from the list of currently
1057  // animating sprites:
1058  protected override void RemoveFromAnimatedList()
1059  {
1060  SpriteAnimationPump.Remove(this);
1061  animating = false;
1062  currentlyAnimating = false;
1063  }
1064 
1065 
1066 
1067  //--------------------------------------------------------------
1068  // Accessors:
1069  //--------------------------------------------------------------
1076  public UVAnimation GetCurAnim() { return curAnim; }
1077 
1084  public UVAnimation GetAnim(string name)
1085  {
1086  for (int i = 0; i < animations.Length; ++i)
1087  {
1088  if (animations[i].name == name)
1089  {
1090  return animations[i];
1091  }
1092  }
1093 
1094  return null;
1095  }
1096 
1097  public override int GetStateIndex(string stateName)
1098  {
1099  for (int i = 0; i < animations.Length; ++i)
1100  {
1101  if (string.Equals(animations[i].name, stateName, System.StringComparison.CurrentCultureIgnoreCase))
1102  {
1103  return i;
1104  }
1105  }
1106 
1107  return -1;
1108  }
1109 
1110  public override void SetState(int index)
1111  {
1112  PlayAnim(index);
1113  }
1114 
1115  public virtual bool SupportsArbitraryAnimations
1116  {
1117  get { return false; }
1118  }
1119 
1120  public virtual Material GetPackedMaterial(out string errString)
1121  {
1122  errString = "Sprite \"" + name + "\" has not been assigned a material, and can therefore not be included in the atlas build.";
1123 
1124  if (spriteMesh == null)
1125  {
1126  // See if it is because the sprite isn't associated
1127  // with a manager:
1128  if (managed)
1129  {
1130  // See if we can get the material
1131  // from an associated manager:
1132  if (manager != null)
1133  {
1134  return manager.renderer.sharedMaterial;
1135  }
1136  else // Else, no manager associated!:
1137  {
1138  errString = "Sprite \"" + name + "\" is not associated with a SpriteManager, and can therefore not be included in the atlas build.";
1139  return null;
1140  }
1141  }
1142  else // Else get the material from the sprite's renderer
1143  { // as this is probably a prefab and that's why it
1144  // doesn't have a mesh:
1145  return renderer.sharedMaterial;
1146  }
1147  }
1148  else if (managed)
1149  {
1150  if (manager != null)
1151  {
1152  return manager.renderer.sharedMaterial;
1153  }
1154  else // Else, no manager associated!:
1155  {
1156  errString = "Sprite \"" + name + "\" is not associated with a SpriteManager, and can therefore not be included in the atlas build.";
1157  return null;
1158  }
1159  }
1160  else
1161  return spriteMesh.material;
1162  }
1163 
1169  public virtual bool DoNotTrimImages
1170  {
1171  get { return doNotTrimImages; }
1172  set { doNotTrimImages = value; }
1173  }
1174 
1175 
1176  // Collects all textures intended for packing,
1177  // as well as sprite frames, together into a
1178  // standard form for processing.
1179  public virtual void Aggregate(PathFromGUIDDelegate guid2Path, LoadAssetDelegate load, GUIDFromPathDelegate path2Guid)
1180  {
1181  List<Texture2D> texList = new List<Texture2D>();
1182  List<CSpriteFrame> frameList = new List<CSpriteFrame>();
1183 
1184  for (int i = 0; i < States.Length; ++i)
1185  {
1186  States[i].Allocate();
1187 
1188  // First try GUIDs:
1189  if (States[i].frameGUIDs.Length >= States[i].framePaths.Length)
1190  {
1191  for (int j = 0; j < States[i].frameGUIDs.Length; ++j)
1192  {
1193  string path = guid2Path(States[i].frameGUIDs[j]);
1194  texList.Add((Texture2D)load(path, typeof(Texture2D)));
1195  frameList.Add((CSpriteFrame)States[i].spriteFrames[j]);
1196  }
1197 
1198  // Make sure we always use GUIDs in the future:
1199  States[i].framePaths = new string[0];
1200  }
1201  else
1202  {
1203  States[i].frameGUIDs = new string[States[i].framePaths.Length];
1204 
1205  States[i].spriteFrames = new CSpriteFrame[States[i].framePaths.Length];
1206  for (int j = 0; j < States[i].spriteFrames.Length; ++j)
1207  States[i].spriteFrames[j] = new CSpriteFrame();
1208 
1209  for (int j = 0; j < States[i].framePaths.Length; ++j)
1210  {
1211  // First get a GUID and save it:
1212  States[i].frameGUIDs[j] = path2Guid(States[i].framePaths[j]);
1213 
1214  texList.Add((Texture2D)load(States[i].framePaths[j], typeof(Texture2D)));
1215  frameList.Add((CSpriteFrame)States[i].spriteFrames[j]);
1216  }
1217  }
1218  }
1219 
1220  sourceTextures = texList.ToArray();
1221  spriteFrames = frameList.ToArray();
1222  }
1223 
1224  // Provides access to the array of source textures.
1225  // NOTE: Should be ordered to parallel the
1226  // SpriteFrames array.
1227  public Texture2D[] SourceTextures
1228  {
1229  get { return sourceTextures; }
1230  }
1231 
1232  // Provides access to the array of Sprite Frames.
1233  // NOTE: Should be ordered to parallel the
1234  // SourceTextures array.
1235  public CSpriteFrame[] SpriteFrames
1236  {
1237  get { return spriteFrames; }
1238  }
1239 }
override void PlayAnimInReverse(string name)
Like PlayAnim, but plays the animation in reverse. See PlayAnim.
int GetCurPosition()
Returns the (zero-based) index of the current frame.
Definition: SpriteBase.cs:613
void RevertToStatic()
Reverts the sprite to its static (non-animating) default appearance.
Definition: SpriteBase.cs:1538
Color Color
Accessor for the object's current overall color tint.
Definition: SpriteRoot.cs:1736
UVAnimation GetAnim(string name)
Returns a reference to the animation that matches the name specified.
virtual void SetSize(float w, float h)
Sets the physical dimensions of the sprite in the plane selected
Definition: SpriteRoot.cs:1384
bool pixelPerfect
Automatically sizes the sprite so that it will display pixel-perfect on-screen. NOTE: If you change t...
Definition: SpriteRoot.cs:762
void PlayAnimInReverse(string name, int frame)
Like PlayAnim, but plays the animation in reverse. See PlayAnim.
float framerate
The rate in frames per second at which to play the animation
Definition: SpriteBase.cs:93
bool doNotTrimImages
When set to true, even if the "Trim Images" option is enabled in the atlas builder, the images for this object will not be trimmed.
int index
The index of this animation in the sprite's animation list. This value is only populated by and used ...
Definition: SpriteBase.cs:103
bool autoResize
Automatically resizes the sprite based on its new UV dimensions compared to its previous dimensions...
Definition: SpriteRoot.cs:771
virtual CSpriteFrame DefaultFrame
Gets the default frame of the sprite object. This is the appearance the sprite is to have in the edit...
float width
Width of the sprite in world space.
Definition: SpriteRoot.cs:732
UVAnimation.ANIM_END_ACTION onAnimEnd
What the sprite should do when the animation is done playing. The options are to: 1) Do nothing...
void PlayAnimInReverse(UVAnimation anim)
Like PlayAnim, but plays the animation in reverse. See PlayAnim.
float framerate
The framerate at which the animation should play in frames per second.
virtual void SetColor(Color c)
Sets the sprite's color to the specified color.
Definition: SpriteRoot.cs:1723
bool loopReverse
See loopReverse member of UVAnimation.
void CalcSize()
Recalculates the width and height of the sprite based upon the change in its UV dimensions (autoResiz...
Definition: SpriteRoot.cs:1350
void DoAnim(UVAnimation anim)
Plays the specified animation only if it is not already playing.
int defaultAnim
Index of the animation to play by default.
Definition: SpriteBase.cs:1297
void Setup(float w, float h, Material material)
Sets up the essential elements of a sprite.
override int GetStateIndex(string stateName)
Returns the index of the state with the specified name. -1 if no state matching the specified name is...
ANIM_END_ACTION onAnimEnd
What the sprite should do when the animation is done playing. The options are to: 1) Do nothing...
Definition: SpriteBase.cs:111
void PlayAnim(int index, int frame)
Starts playing the specified animation Note: this doesn't resume from a pause, it completely restarts...
void PlayAnim(UVAnimation anim, int frame)
Starts playing the specified animation Note: this doesn't resume from a pause, it completely restarts...
void PauseAnim()
Pauses the currently-playing animation.
Definition: SpriteBase.cs:1515
void PlayAnim(UVAnimation anim)
Starts playing the specified animation Note: this doesn't resume from a pause, it completely restarts...
abstract TextureAnim[] States
Accessor for the sprite's various states as defined in the editor (not used at runtime).
bool managed
When true, the sprite will be managed by the selected sprite manager script. When false...
Definition: SpriteRoot.cs:696
bool IsAnimating()
Returns whether the sprite is currently animating.
Definition: SpriteBase.cs:1566
void UnpauseAnim()
Resumes an animation from where it left off previously.
void SetFrame(string anim, int frameNum)
Sets the sprite to display the given frame of the specified animation.
void PlayAnim(string name, int frame)
Starts playing the specified animation Note: this doesn't resume from a pause, it completely restarts...
override void Clear()
Resets important sprite values to defaults for reuse.
void SetFrame(int anim, int frameNum)
Sets the sprite to display the given frame of the specified animation.
virtual bool DoNotTrimImages
When set to true, even if the "Trim Images" option is enabled in the atlas builder, the images for this object will not be trimmed.
string name
The name of the animation.
Definition: SpriteBase.cs:69
void DoAnim(string name)
Plays the specified animation only if it is not already playing.
void SetCurFrame(int index)
Sets the current frame of the current animation immediately.
override void Hide(bool tf)
Hides or displays the sprite by disabling/enabling the sprite's mesh renderer component, or if managed, sets the mesh size to 0.
Definition: SpriteBase.cs:1403
override void Delete()
If non-managed, call Delete() before destroying this component or the GameObject to which it is attac...
Definition: SpriteBase.cs:1342
void PlayAnimInReverse(int index, int frame)
Like PlayAnim, but plays the animation in reverse. See PlayAnim.
void DoAnim(int index)
Plays the specified animation only if it is not already playing.
override void Copy(SpriteRoot s)
Copies all the attributes of another sprite.
override void PlayAnimInReverse(int index)
Like PlayAnim, but plays the animation in reverse. See PlayAnim.
void SetFrame(UVAnimation anim, int frameNum)
Sets the sprite to display the given frame of the specified animation.
UVAnimation GetCurAnim()
Returns a reference to the currently selected animation. NOTE: This does not mean the animation is cu...
The root class of all sprites. Does not assume any animation capabilities or atlas packing...
Definition: SpriteRoot.cs:628
int GetFrameCount()
Returns the number of frames in the animation.
Definition: SpriteBase.cs:585
float height
Height of the sprite in world space.
Definition: SpriteRoot.cs:737
ANCHOR_METHOD anchor
Anchor method to use. ANCHOR_METHOD
Definition: SpriteRoot.cs:749
SpriteManager manager
Reference to the manager which will manage this sprite, provided managed is set to true...
Definition: SpriteRoot.cs:702
void Setup(float w, float h)
Sets up the essential elements of a sprite.
string name
Name of the animation.
virtual void CopyAll(SpriteRoot s)
Copies all the attributes of another sprite, including its edit-time TextureAnimations.
void PlayAnimInReverse(UVAnimation anim, int frame)
Like PlayAnim, but plays the animation in reverse. See PlayAnim.
override void StopAnim()
Stops the current animation from playing and resets it to the beginning for playing again...
override void PlayAnim(string name)
Starts playing the specified animation Note: this doesn't resume from a pause, it completely restarts...
int loopCycles
Loop cycles. See loopCycles member of UVAnimation.
override void SetState(int index)
Sets the sprite to the specified state/animation.
override void PlayAnim(int index)
Starts playing the specified animation Note: this doesn't resume from a pause, it completely restarts...
UVAnimation[] animations
Holds the actual UV sequences that will be used at run-time.