SpriteManager 2
 All Classes Functions Variables Enumerations Enumerator Properties
SuperSprite.cs
1 //-----------------------------------------------------------------
2 // Copyright 2010 Brady Wright and Above and Beyond Software
3 // All rights reserved
4 //-----------------------------------------------------------------
5 
6 
7 
8 using UnityEngine;
9 using System.Collections;
10 using System.Collections.Generic;
11 
12 
17 [System.Serializable]
19 {
25 
29  public string animName;
30 
31  // The actual reference to the desired
32  // animation.
33  [HideInInspector]
34  public UVAnimation anim;
35 
36  public void Init()
37  {
38  bool wasDeactivated = false;
39 
40  if (sprite != null)
41  {
42  // See if we need to activate our sprite
43  // to work with it:
44 #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
45  if (!sprite.gameObject.activeInHierarchy)
46  {
47  wasDeactivated = true;
48  sprite.gameObject.SetActive(true);
49  }
50 #else
51  if (!sprite.gameObject.active)
52  {
53  wasDeactivated = true;
54  sprite.gameObject.active = true;
55  }
56 #endif
57 
58  anim = sprite.GetAnim(animName);
59 
60  if (anim == null)
61  Debug.LogError("SuperSprite error: No animation by the name of \"" + animName + "\" was found on sprite \"" + sprite.name + "\". Please verify the spelling and capitalization of the name, including any extra spaces, etc.");
62 
63  if (wasDeactivated)
64 #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
65  sprite.gameObject.SetActive(false);
66 #else
67  sprite.gameObject.active = false;
68 #endif
69  }
70  }
71 
76  public void Play()
77  {
78  sprite.PlayAnim(anim);
79  }
80 
86  public void PlayInReverse()
87  {
88  sprite.PlayAnimInReverse(anim);
89  }
90 }
91 
92 
101 [System.Serializable]
102 public class SuperSpriteAnim
103 {
107  public enum ANIM_END_ACTION
108  {
112  Do_Nothing,
113 
118 
123  Deactivate,
124 
128  Destroy
129  };
130 
131  public delegate void AnimCompletedDelegate(SuperSpriteAnim anim);
132 
137  [HideInInspector]
138  public int index;
139 
143  public string name;
144 
149 
157  public int loopCycles = 0;
158 
169  public bool pingPong = false;
170 
174  public ANIM_END_ACTION onAnimEnd = ANIM_END_ACTION.Do_Nothing;
175 
180  public bool deactivateNonPlaying = false;
181 
187  public bool deactivateRecursively = false;
188 
189  protected int curAnim = 0; // The index of the current anim being played.
190  protected int stepDir = 1; // The direction we're moving through our list.
191  protected int numLoops = 0; // The number of loop iterations that have passed
192  protected bool isRunning; // Tells whether we're running or not.
193  AnimCompletedDelegate endDelegate;
194 
195 
196  public void Init(int idx, AnimCompletedDelegate del, SpriteBase.AnimFrameDelegate frameDel)
197  {
198  endDelegate = del;
199  index = idx;
200 
201  List<SuperSpriteAnimElement> anims = new List<SuperSpriteAnimElement>();
202 
203  for (int i = 0; i < spriteAnims.Length; ++i)
204  if (spriteAnims[i] != null)
205  if (spriteAnims[i].sprite != null)
206  {
207  spriteAnims[i].Init();
208 
209  // Only save the ones that are valid
210  // so we don't have to check them
211  // constantly later on:
212  anims.Add(spriteAnims[i]);
213 
214  if (frameDel != null)
215  spriteAnims[i].sprite.SetAnimFrameDelegate(frameDel);
216 
217  // Hide each sprite by default:
218  HideSprite(spriteAnims[i].sprite, true);
219  }
220 
221  spriteAnims = anims.ToArray();
222  }
223 
224  public void SetAnimFrameDelegate(SpriteBase.AnimFrameDelegate frameDel)
225  {
226  for (int i = 0; i < spriteAnims.Length; ++i)
227  if (spriteAnims[i] != null)
228  if (spriteAnims[i].sprite != null)
229  spriteAnims[i].sprite.SetAnimFrameDelegate(frameDel);
230  }
231 
232  // Delegate that is called when an animation finishes:
233  void AnimFinished(SpriteBase sp)
234  {
235  // See if we can't advance to the next animation:
236  if ((curAnim + stepDir) >= spriteAnims.Length || (curAnim + stepDir) < 0)
237  {
238  // See if we need to loop (if we're reversing, we don't loop until we get back to the beginning):
239  if (stepDir > 0 && pingPong)
240  {
241  stepDir = -1; // Reverse direction of playback
242 
243  // Bounce back from the end:
244  ((AutoSpriteBase)sp).PlayAnimInReverse(spriteAnims[curAnim].anim, spriteAnims[curAnim].anim.GetFrameCount() - 2);
245  return;
246 
247  // See if we need to tell our first animation
248  // to loop us back again in anticipation of
249  // another loop iteration:
250  // if(loopCycles == -1 || numLoops < loopCycles)
251  // {
252  // spriteAnims[0].anim.loopReverse = true;
253  // }
254 
255  // Proceed
256  }
257  else
258  {
259  // See if we can't loop:
260  if (numLoops + 1 > loopCycles && loopCycles != -1)
261  {
262  isRunning = false;
263 
264  // Unset our delegate:
265  sp.SetAnimCompleteDelegate(null);
266 
267  // Notify that we're ending:
268  if (endDelegate != null)
269  endDelegate(this);
270  return;
271  }
272  else
273  {
274  // Loop the animation:
275  ++numLoops;
276 
277  if (pingPong)
278  {
279  // Bounce back from the first frame:
280  spriteAnims[curAnim].sprite.PlayAnim(spriteAnims[curAnim].anim, 1);
281  stepDir *= -1;
282  return;
283  }
284  else
285  {
286  // Hide the current sprite
287  HideSprite(sp, true);
288 
289  // Unset our delegate:
290  sp.SetAnimCompleteDelegate(null);
291 
292  // Start back at the first animation:
293  curAnim = 0;
294  }
295  }
296  }
297  }
298  else
299  {
300  // Unset our delegate:
301  sp.SetAnimCompleteDelegate(null);
302  HideSprite(sp, true);
303  curAnim += stepDir;
304  }
305 
306  // Proceed to play the next animation:
307  HideSprite(spriteAnims[curAnim].sprite, false);
308  spriteAnims[curAnim].sprite.SetAnimCompleteDelegate(AnimFinished);
309  if (stepDir > 0)
310  spriteAnims[curAnim].Play();
311  else
312  spriteAnims[curAnim].PlayInReverse();
313  }
314 
315 
319  public void Reset()
320  {
321  Stop();
322 
323  curAnim = 0;
324  stepDir = 1;
325  numLoops = 0;
326 
327  // Hide all but the first:
328  for (int i = 1; i < spriteAnims.Length; ++i)
329  HideSprite(spriteAnims[i].sprite, true);
330  }
331 
335  public void Play()
336  {
337  // if(pingPong)
338  // { // Setup our last anim to loop back properly:
339  // spriteAnims[spriteAnims.Length - 1].anim.loopReverse = true;
340  // }
341 
342  isRunning = true;
343 
344  // Register our ending delegate:
345  spriteAnims[curAnim].sprite.SetAnimCompleteDelegate(AnimFinished);
346 
347  HideSprite(spriteAnims[curAnim].sprite, false);
348  spriteAnims[curAnim].Play();
349  }
350 
354  public void Stop()
355  {
356  isRunning = false;
357  spriteAnims[curAnim].sprite.StopAnim();
358 
359  // Unset our delegate:
360  spriteAnims[curAnim].sprite.SetAnimCompleteDelegate(null);
361  }
362 
366  public void Pause()
367  {
368  isRunning = false;
369  spriteAnims[curAnim].sprite.PauseAnim();
370  }
371 
375  public void Unpause()
376  {
377  isRunning = true;
378  spriteAnims[curAnim].sprite.UnpauseAnim();
379  }
380 
384  public bool IsRunning
385  {
386  get { return isRunning; }
387  }
388 
395  {
396  get
397  {
398  if (curAnim < 0 || curAnim >= spriteAnims.Length)
399  return null;
400 
401  return spriteAnims[curAnim].sprite;
402  }
403  }
404 
409  public void Hide(bool tf)
410  {
411  if (curAnim < 0 || curAnim >= spriteAnims.Length)
412  return;
413 
414  HideSprite(spriteAnims[curAnim].sprite, tf);
415  }
416 
422  public bool IsHidden()
423  {
424  if (curAnim < 0 || curAnim >= spriteAnims.Length)
425  return false; // Assume no
426 
427  return spriteAnims[curAnim].sprite.IsHidden();
428  }
429 
430  // Helper method that hides a sprite using the method
431  // set for this animation (hiding vs deactivation).
432  protected void HideSprite(SpriteBase sp, bool tf)
433  {
435  {
436 #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
437  sp.gameObject.SetActive(!tf);
438 #else
440  sp.gameObject.SetActiveRecursively(!tf);
441  else
442  sp.gameObject.active = !tf;
443 #endif
444  }
445  else
446  sp.Hide(tf);
447  }
448 
452  public void Delete()
453  {
454  for (int i = 0; i < spriteAnims.Length; ++i)
455  if (spriteAnims[i].sprite != null)
456  {
457  spriteAnims[i].sprite.Delete();
458  UnityEngine.Object.Destroy(spriteAnims[i].sprite);
459  }
460  }
461 }
462 
463 
472 [System.Serializable]
473 public class SuperSprite : MonoBehaviour
474 {
481  public delegate void AnimCompleteDelegate(SuperSprite sprite);
482 
483 
488  public bool playDefaultAnimOnStart = false;
489 
493  public int defaultAnim = 0;
494 
499 
500  // The current animation.
501  protected SuperSpriteAnim curAnim;
502 
503  protected bool animating;
504 
505  protected AnimCompleteDelegate animCompleteDelegate;
506 
507  protected SpriteBase.AnimFrameDelegate animFrameDelegate;
508 
509  protected bool m_started = false;
510 
511 
512  // Use this for initialization
513  public void Start()
514  {
515  if (m_started)
516  return;
517  m_started = true;
518 
519  // Initialize animations:
520  for (int i = 0; i < animations.Length; ++i)
521  if (animations[i] != null)
522  {
523  animations[i].Init(i, AnimFinished, animFrameDelegate);
524  }
525 
528  }
529 
534  public void PlayAnim(SuperSpriteAnim anim)
535  {
536  if (!m_started)
537  Start();
538 
539  if (curAnim != null)
540  {
541  curAnim.Stop();
542  curAnim.Hide(true);
543  }
544 
545  curAnim = anim;
546  curAnim.Reset();
547 
548  animating = true;
549  anim.Play();
550  }
551 
556  public void PlayAnim(int index)
557  {
558  if (index < 0 || index >= animations.Length)
559  return;
560 
561  PlayAnim(animations[index]);
562  }
563 
568  public void PlayAnim(string anim)
569  {
570  for (int i = 0; i < animations.Length; ++i)
571  if (animations[i].name == anim)
572  {
573  PlayAnim(animations[i]);
574  return;
575  }
576  }
577 
583  public void DoAnim(SuperSpriteAnim anim)
584  {
585  if (curAnim != anim | !animating)
586  PlayAnim(anim);
587  }
588 
594  public void DoAnim(int index)
595  {
596  if (curAnim == null)
597  PlayAnim(index);
598  else if (curAnim.index != index || !animating)
599  PlayAnim(index);
600  }
601 
607  public void DoAnim(string name)
608  {
609  if (curAnim == null)
610  PlayAnim(name);
611  else if (curAnim.name != name || !animating)
612  PlayAnim(name);
613  }
614 
620  public void StopAnim()
621  {
622  if (curAnim != null)
623  curAnim.Stop();
624 
625  animating = false;
626  }
627 
631  public void PauseAnim()
632  {
633  if (curAnim != null)
634  curAnim.Pause();
635 
636  animating = false;
637  }
638 
642  public void UnpauseAnim()
643  {
644  if (curAnim != null)
645  {
646  curAnim.Unpause();
647  animating = true;
648  }
649  }
650 
655  public void Hide(bool tf)
656  {
657  if (curAnim != null)
658  {
659  curAnim.Hide(tf);
660 
661  if (!tf)
662  {
663  if (animating)
664  curAnim.Pause();
665  }
666  else
667  {
668  if (animating)
669  curAnim.Unpause();
670  }
671  }
672  }
673 
678  public bool IsHidden()
679  {
680  if (curAnim == null)
681  {
682  // Assume unhidden:
683  return false;
684  }
685 
686  return curAnim.IsHidden();
687  }
688 
695  {
696  return curAnim;
697  }
698 
699 
705  {
706  get
707  {
708  if (curAnim == null)
709  return null;
710 
711  return curAnim.CurrentSprite;
712  }
713  }
714 
720  public SuperSpriteAnim GetAnim(int index)
721  {
722  if (index < 0 || index >= animations.Length)
723  return null;
724 
725  return animations[index];
726  }
727 
733  public SuperSpriteAnim GetAnim(string name)
734  {
735  for (int i = 0; i < animations.Length; ++i)
736  if (animations[i].name == name)
737  return animations[i];
738 
739  return null;
740  }
741 
746  public bool IsAnimating()
747  {
748  return animating;
749  }
750 
751  // Is called when the animation finishes:
752  protected void AnimFinished(SuperSpriteAnim anim)
753  {
754  animating = false;
755 
756  if (animCompleteDelegate != null)
757  animCompleteDelegate(this);
758 
759  // Handle the OnAnimEnd action:
760  if (curAnim != null)
761  {
762  switch (curAnim.onAnimEnd)
763  {
764  case SuperSpriteAnim.ANIM_END_ACTION.Play_Default_Anim:
766  break;
767  case SuperSpriteAnim.ANIM_END_ACTION.Deactivate:
768 #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
769  gameObject.SetActive(false);
770 #else
771  gameObject.SetActiveRecursively(false);
772 #endif
773  break;
774  case SuperSpriteAnim.ANIM_END_ACTION.Destroy:
775  for (int i = 0; i < animations.Length; ++i)
776  animations[i].Delete();
777 
778  Destroy(gameObject);
779  break;
780  default:
781  // Do nothing
782  break;
783  }
784  }
785  }
786 
787 
792  public void SetAnimCompleteDelegate(AnimCompleteDelegate del)
793  {
794  animCompleteDelegate = del;
795  }
796 
802  {
803  animFrameDelegate = del;
804 
805  for (int i = 0; i < animations.Length; ++i)
806  {
807  animations[i].SetAnimFrameDelegate(animFrameDelegate);
808  }
809  }
810 }
bool IsAnimating()
Returns whether an animation is playing.
Definition: SuperSprite.cs:746
void SetAnimCompleteDelegate(AnimCompleteDelegate del)
Sets the delegate to be called upon animation completion.
Definition: SuperSprite.cs:792
SpriteRoot CurrentSprite
Returns a reference to the sprite that is currently showing for the current animation, if any.
Definition: SuperSprite.cs:705
void Play()
Starts the animation to playing.
Definition: SuperSprite.cs:335
void Pause()
Pauses the animation.
Definition: SuperSprite.cs:366
void PlayAnim(string anim)
Plays the specified SuperSprite animation.
Definition: SuperSprite.cs:568
AutoSpriteBase sprite
The reference to the sprite containing the animation to be played.
Definition: SuperSprite.cs:24
void Hide(bool tf)
Hides the sprite of the current animation.
Definition: SuperSprite.cs:409
SuperSpriteAnim GetAnim(string name)
Returns the SuperSpriteAnim with the specified name.
Definition: SuperSprite.cs:733
int index
Index of this animation in the SuperSprite's list
Definition: SuperSprite.cs:138
int loopCycles
How many times to loop the animation, IN ADDITION to the initial play-through. 0 indicates to place t...
Definition: SuperSprite.cs:157
void StopAnim()
Stops the current animation from playing and resets it to the beginning for playing again...
Definition: SuperSprite.cs:620
Destroys the SuperSprite when the animation ends.
void DoAnim(int index)
Plays the specified SuperSprite animation, but only if it isn't playing already.
Definition: SuperSprite.cs:594
Do nothing when the animation ends.
void DoAnim(SuperSpriteAnim anim)
Plays the specified SuperSprite animation, but only if it isn't playing already.
Definition: SuperSprite.cs:583
bool playDefaultAnimOnStart
Whether or not to play the default animation when the object is started.
Definition: SuperSprite.cs:488
SuperSpriteAnimElement[] spriteAnims
The actual sprite animations to use.
Definition: SuperSprite.cs:148
SuperSpriteAnim GetCurAnim()
Definition: SuperSprite.cs:694
void UnpauseAnim()
Resumes an animation from where it left off previously.
Definition: SuperSprite.cs:642
bool IsHidden()
Returns whether the current sprite in this animation is hidden:
Definition: SuperSprite.cs:422
void PlayInReverse()
Convenience method that plays the associated sprite's animation in reverse:
Definition: SuperSprite.cs:86
int defaultAnim
The default animation.
Definition: SuperSprite.cs:493
Deactivate the SuperSprite when the animation ends (sets the GameObject's .active property to false)...
void Stop()
Stops the animation playing.
Definition: SuperSprite.cs:354
void Delete()
Calls Delete() on each constituent sprite.
Definition: SuperSprite.cs:452
void PlayAnim(int index)
Plays the specified SuperSprite animation.
Definition: SuperSprite.cs:556
SpriteBase CurrentSprite
Returns a reference to the sprite currently showing for this animation. Returns null if no sprite is ...
Definition: SuperSprite.cs:395
ANIM_END_ACTION onAnimEnd
What the SuperSprite should do when the animation is done playing.
Definition: SuperSprite.cs:174
SuperSpriteAnim GetAnim(int index)
Returns the SuperSpriteAnim at the specified index.
Definition: SuperSprite.cs:720
bool pingPong
Reverse the play direction when the end of the animation is reached? (Ping-pong) If true...
Definition: SuperSprite.cs:169
string name
Name of the animation.
Definition: SuperSprite.cs:143
SuperSpriteAnim[] animations
The animations that comprise this SuperSprite.
Definition: SuperSprite.cs:498
bool deactivateNonPlaying
When set to true, non-playing sprites' GameObjects will be deactivated and not merely hidden...
Definition: SuperSprite.cs:180
void PauseAnim()
Pauses the currently playing animation.
Definition: SuperSprite.cs:631
The root class of all sprites. Does not assume any animation capabilities or atlas packing...
Definition: SpriteRoot.cs:628
Play the default animation when the animation ends.
bool deactivateRecursively
When set to true, non-playing sprites' GameObjecs will be deactivated recursively. NOTE: Only has effect if deactivateNonPlaying is set to true.
Definition: SuperSprite.cs:187
void SetAnimFrameDelegate(SpriteBase.AnimFrameDelegate del)
Sets the delegate to be called each frame of animation.
Definition: SuperSprite.cs:801
void Unpause()
Unpauses the animation.
Definition: SuperSprite.cs:375
delegate void AnimFrameDelegate(SpriteBase sprite, int frame)
bool IsRunning
Tells whether the animation is running.
Definition: SuperSprite.cs:385
void PlayAnim(SuperSpriteAnim anim)
Plays the specified SuperSprite animation.
Definition: SuperSprite.cs:534
string animName
The name of the animation to play.
Definition: SuperSprite.cs:29
void Reset()
Resets the animation to the beginning.
Definition: SuperSprite.cs:319
void Play()
Convenience method that plays the associated sprite's animation.
Definition: SuperSprite.cs:76
bool IsHidden()
Returns whether the SuperSprite is hidden.
Definition: SuperSprite.cs:678
void Hide(bool tf)
Hides the SuperSprite.
Definition: SuperSprite.cs:655
void DoAnim(string name)
Plays the specified SuperSprite animation, but only if it isn't playing already.
Definition: SuperSprite.cs:607
delegate void AnimCompleteDelegate(SuperSprite sprite)