8 using System.Collections;
59 protected int curFrame = -1;
60 protected int stepDir = 1;
61 protected int numLoops = 0;
62 protected bool playInReverse =
false;
64 protected float length;
119 get {
return stepDir; }
120 set { SetStepDir(value); }
127 anim.frames.CopyTo(frames, 0);
136 curFrame = anim.curFrame;
137 stepDir = anim.stepDir;
138 numLoops = anim.numLoops;
139 playInReverse = anim.playInReverse;
140 length = anim.length;
164 playInReverse =
false;
169 public void PlayInReverse()
172 curFrame = frames.Length;
174 playInReverse =
true;
177 public void SetStepDir(
int dir)
182 playInReverse =
true;
193 if (frames.Length < 1)
197 if ((curFrame + stepDir) >= frames.Length || (curFrame + stepDir) < 0)
205 curFrame = Mathf.Clamp(curFrame, 0, frames.Length - 1);
207 nextFrame = frames[curFrame];
222 curFrame = Mathf.Clamp(curFrame, 0, frames.Length - 1);
227 curFrame = frames.Length - 1;
232 nextFrame = frames[curFrame];
239 nextFrame = frames[curFrame];
253 return frames[Mathf.Clamp(curFrame, 0, curFrame)];
264 return frames[frame];
288 frames[0].uvs.x = start.x;
289 frames[0].uvs.y = start.y;
290 frames[0].uvs.xMax = start.x + cellSize.x;
291 frames[0].uvs.yMax = start.y + cellSize.y;
293 for (
int row = 0; row < rows; ++row)
295 for (
int col = 0; col < cols && cellCount < totalCells; ++col)
298 frames[cellCount].uvs.x = start.x + cellSize.x * ((float)col);
299 frames[cellCount].uvs.y = start.y - cellSize.y * ((float)row);
300 frames[cellCount].uvs.xMax = frames[cellCount].uvs.x + cellSize.x;
301 frames[cellCount].uvs.yMax = frames[cellCount].uvs.y + cellSize.y;
349 frames[0].uvs.x = start.x;
350 frames[0].uvs.y = start.y;
351 frames[0].uvs.xMax = start.x + cellSize.x;
352 frames[0].uvs.yMax = start.y + cellSize.y;
356 for (cellCount = 1; cellCount < totalCells; ++cellCount)
358 curPos.x += cellSize.x;
359 if (curPos.x + cellSize.x > 1.01f)
362 curPos.y -= cellSize.y;
366 frames[cellCount].uvs.x = curPos.x;
367 frames[cellCount].uvs.y = curPos.y;
368 frames[cellCount].uvs.xMax = curPos.x + cellSize.x;
369 frames[cellCount].uvs.yMax = curPos.y + cellSize.y;
399 if (anim.spriteFrames == null)
413 for (
int i = 0; i < frames.Length; ++i)
415 frames[i] = anim.spriteFrames[i].ToStruct();
418 catch (System.Exception err)
420 Debug.LogError(
"Exception caught in UVAnimation.SetAnim(). Make sure you have re-built your atlases!\nException: " + err.Message);
437 tempFrames.CopyTo(frames, 0);
438 anim.CopyTo(frames, tempFrames.Length);
452 f = Mathf.Clamp(f, -1, frames.Length + 1);
470 pos = Mathf.Clamp01(pos);
487 numLoops = Mathf.FloorToInt(pos / iterationPct);
491 float remainder = pos - (((float)numLoops) * iterationPct);
496 float clipPos = remainder / iterationPct;
502 curFrame = (int) ( ((
float)frames.Length-1) * (clipPos/0.5f) );
508 curFrame = (frames.Length-1) - (
int)(((float)frames.Length-1) * ((clipPos-0.5f) / 0.5f));
515 curFrame = (int) ( ((
float)frames.Length-1) * clipPos );
535 curFrame = (int)(((
float)frames.Length - 1) * pos);
539 protected void CalcLength()
541 length = (1f /
framerate) * frames.Length;
587 return frames.Length;
601 int count = frames.Length + (frames.Length *
loopCycles);
624 [System.Serializable]
696 [System.Serializable]
734 protected int curClip;
735 protected int stepDir = 1;
736 protected int numLoops = 0;
738 protected float duration;
744 protected int framePos = -1;
764 curClip = anim.curClip;
765 stepDir = anim.stepDir;
766 numLoops = anim.numLoops;
767 duration = anim.duration;
770 for (
int i = 0; i < clips.Length; ++i)
787 return clips[curClip];
796 get {
return stepDir; }
797 set { stepDir = value; }
808 for (i = 0; i < clips.Length; ++i)
810 clips[i].BuildUVAnim(s);
820 if (
clips.Length < 1)
823 ret =
clips[curClip].GetNextFrame(ref nextFrame);
828 if ((curClip + stepDir) >= clips.Length || (curClip + stepDir) < 0)
836 curClip = Mathf.Clamp(curClip, 0, clips.Length - 1);
839 clips[curClip].Reset();
840 clips[curClip].PlayInReverse();
843 clips[curClip].GetNextFrame(ref nextFrame);
859 curClip = Mathf.Clamp(curClip, 0, clips.Length - 1);
862 clips[curClip].Reset();
865 clips[curClip].PlayInReverse();
869 clips[curClip].GetNextFrame(ref nextFrame);
877 clips[curClip].Reset();
887 clips[curClip].Reset();
891 clips[curClip].PlayInReverse();
894 clips[curClip].GetNextFrame(ref nextFrame);
903 clips[curClip].GetNextFrame(ref nextFrame);
944 if (index >=
clips.Length)
947 clips[index].AppendAnim(anim);
962 temp.CopyTo(
clips, 0);
969 public void PlayInReverse()
971 for (i = 0; i < clips.Length; ++i)
973 clips[i].PlayInReverse();
978 curClip = clips.Length - 1;
988 if (index >=
clips.Length)
991 clips[index].SetAnim(frames);
1006 for (i = 0; i < clips.Length; ++i)
1021 pos = Mathf.Clamp01(pos);
1037 numLoops = Mathf.FloorToInt(pos / iterationPct);
1041 float remainder = pos - (((float)numLoops) * iterationPct);
1056 int totalFrames = 0;
1058 float remaining = pos;
1061 for (
int n = 0; n < clips.Length; ++n)
1063 totalFrames +=
clips[n].GetFramesDisplayed();
1079 for (
int n = 0; n < clips.Length; ++n)
1083 pct =
clips[n].GetFramesDisplayed() / totalFrames;
1089 if (remaining <= pct)
1092 clips[curClip].SetPosition(remaining / pct);
1094 framePos = ((int)pct * (totalFrames-1));
1110 remaining = (remaining-0.5f) / 0.5f;
1112 for (
int n =
clips.Length-1; n >= 0; --n)
1116 pct =
clips[n].GetFramesDisplayed() / totalFrames;
1122 if (remaining <= pct)
1125 clips[curClip].SetPosition(1f - (remaining / pct));
1126 clips[curClip].SetStepDir(-1);
1128 framePos = ((int)pct * (totalFrames - 1));
1139 for (
int n = 0; n < clips.Length; ++n)
1143 pct =
clips[n].GetFramesDisplayed() / totalFrames;
1149 if (remaining <= pct)
1152 clips[curClip].SetPosition(remaining / pct);
1154 framePos = ((int)pct * (totalFrames - 1));
1165 protected void CalcDuration()
1176 for (
int n = 0; n < clips.Length; ++n)
1178 duration +=
clips[n].GetDuration();
1206 int totalFrames = 0;
1209 for (
int n = 0; n < clips.Length; ++n)
1211 totalFrames +=
clips[n].GetFramesDisplayed();
1292 public bool crossfadeFrames =
false;
1300 protected int curAnimIndex = 0;
1302 protected AnimCompleteDelegate animCompleteDelegate = null;
1303 protected AnimFrameDelegate animFrameDelegate = null;
1304 protected float timeSinceLastFrame = 0;
1305 protected float timeBetweenAnimFrames;
1306 protected float framesToAdvance;
1307 protected bool animating =
false;
1308 protected bool currentlyAnimating =
false;
1313 protected override void Awake()
1322 public override void Start()
1326 if(m_spriteMesh != null)
1327 m_spriteMesh.UseUV2 = crossfadeFrames;
1339 animCompleteDelegate = null;
1344 if (currentlyAnimating)
1347 RemoveFromAnimatedList();
1354 protected override void OnDisable()
1361 RemoveFromAnimatedList();
1370 protected override void OnEnable()
1376 if (!Application.isPlaying)
1386 AddToAnimatedList();
1397 SpriteBase sb = (SpriteBase)s;
1450 animCompleteDelegate = del;
1459 animFrameDelegate = del;
1468 resizedDelegate = del;
1477 resizedDelegate += del;
1486 resizedDelegate -= del;
1489 public virtual bool StepAnim(
float time) {
return false; }
1491 public virtual void PlayAnim(
int index) { }
1492 public virtual void PlayAnim(
string name) { }
1493 public virtual void PlayAnimInReverse(
int index) { }
1494 public virtual void PlayAnimInReverse(
string name) { }
1508 timeBetweenAnimFrames = 1f / fps;
1518 RemoveFromAnimatedList();
1544 SetBleedCompensation();
1552 protected abstract void AddToAnimatedList();
1556 protected abstract void RemoveFromAnimatedList();
1576 get {
return animating; }
1581 PlayAnim(curAnimIndex);
1593 get {
return curAnimIndex; }
1594 set { curAnimIndex = value; }
SPRITE_FRAME GetCurrentFrame()
Returns the current frame info without advancing to the next frame.
int GetCurPosition()
Returns the (zero-based) index of the current frame.
void RevertToStatic()
Reverts the sprite to its static (non-animating) default appearance.
virtual void StopAnim()
Stops the current animation from playing and resets it to the beginning for playing again...
bool pixelPerfect
Automatically sizes the sprite so that it will display pixel-perfect on-screen. NOTE: If you change t...
SPRITE_FRAME[] BuildUVAnim(Vector2 start, Vector2 cellSize, int cols, int rows, int totalCells)
Constructs an array of frames based upon the info supplied. NOTE: When the edge of the texture is rea...
string name
The name of the animation sequence
float framerate
The rate in frames per second at which to play the animation
SPRITE_FRAME GetCurrentFrame()
Returns the SPRITE_FRAME of the current frame without advancing to the next frame.
void SetFramerate(float fps)
Changes the framerate at which the current animation plays. NOTE: This only has effect if called AFTE...
int index
The index of this animation in the sprite's animation list. This value is only populated by and used ...
void SetPosition(float pos)
Sets the current playing position of the animation. NOTE: This method takes loop cycles and loop reve...
delegate void SpriteResizedDelegate(float newWidth, float newHeight, SpriteRoot sprite)
bool autoResize
Automatically resizes the sprite based on its new UV dimensions compared to its previous dimensions...
void SetAnim(SPRITE_FRAME[] anim)
Assigns the specified array of frames to the animation, replacing its current contents.
void SetCurrentFrame(int f)
Sets the current frame of animation.
Hide the sprite when the animation ends.
int loopCycles
How many times to loop the animation IN ADDITION to the initial play-through. -1 indicates to loop in...
override void Copy(SpriteRoot s)
Copies all the vital attributes of another sprite.
int rows
The number of rows in the animation.
void SetAnim(TextureAnim anim, int idx)
Assigns all the various animation info to this animation from the specified TextureAnim, replacing any existing animation data.
int GetCurPosition()
Returns the (zero-based) frame number of the current position in the over all animation. Example: If the multi contains a total of 100 frames and 25 frames have played so far, then 24 will be returned (because it is zero-based). If the multi is playing backwards, this number will count down from 100 as well.
UVAnimation_Auto[] BuildUVAnim(SpriteRoot s)
Builds the UV animations for all animation clips that are a part of this animation sequence...
SPRITE_FRAME[] BuildWrappedUVAnim(Vector2 start, Vector2 cellSize, int totalCells)
Constructs an array of frames based upon the info supplied. NOTE: When the edge of the texture is rea...
int loopCycles
How many times to loop the animation IN ADDITION TO the initial play-through. (-1 to loop infinitely...
void SetClipPosition(float pos)
Sets the current frame based on a 0-1 value indicating the desired position in the animation...
void CalcSize()
Recalculates the width and height of the sprite based upon the change in its UV dimensions (autoResiz...
int defaultAnim
Index of the animation to play by default.
int CurAnimIndex
Property useful for use with EZ Game Saver. Include this as a saved property, along with Animating...
void SetSpriteResizedDelegate(SpriteResizedDelegate del)
Sets the delegate to be called when the sprite is resized.
int StepDirection
The direction in which the animation is currently set to advance. 1 for forwards, -1 for backwards...
ANIM_END_ACTION onAnimEnd
What the sprite should do when the animation is done playing. The options are to: 1) Do nothing...
bool playAnimOnStart
When set to true, the sprite will play the default animation (see defaultAnim) when the sprite is ins...
Play the default animation when the animation ends.
Vector2 PixelSpaceToUVSpace(Vector2 xy)
Converts pixel-space values to UV-space scalar values according to the currently assigned material...
int GetCurClipNum()
Returns the (zero-based) index of the current clip.
void PauseAnim()
Pauses the currently-playing animation.
void SetCurClipNum(int index)
Sets the current clip by index.
UVAnimation_Auto[] clips
The actual sprite animation clips that make up the animation sequence.
bool IsAnimating()
Returns whether the sprite is currently animating.
void SetPosition(float pos)
Sets the current frame based on a 0-1 value indicating the desired position in the animation...
Vector2 pixelsToNextColumnAndRow
The number of pixels from the left edge of one sprite frame to the left edge of the next one...
SPRITE_FRAME[] BuildUVAnim(SpriteRoot s)
Uses the information stored in this class to build a UV animation for the specified sprite...
SPRITE_FRAME GetFrame(int frame)
Returns the specified frame.
float GetLength()
Returns the length, in seconds, of the animation. NOTE: This does not take into account looping or re...
int totalCells
The total number of frames (cells) of animation.
void AppendAnim(int index, SPRITE_FRAME[] anim)
Appends UV animation to the clip specified by index.
void AppendAnim(SPRITE_FRAME[] anim)
Appends the specified array of frames to the existing animation.
bool loopReverse
Reverse the play direction when the end of the animation is reached? (Ping-pong) If true...
void AppendClip(UVAnimation clip)
Appends UV animation clip to the end of the animation sequence.
void SetAnimFrameDelegate(AnimFrameDelegate del)
Sets the delegate to be called each frame of animation.
string name
The name of the animation.
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.
override void Delete()
If non-managed, call Delete() before destroying this component or the GameObject to which it is attac...
int StepDirection
The direction in which the animation is currently set to advance. 1 for forwards, -1 for backwards...
float framerate
The rate in frames per second at which to play the animation.
bool Animating
Property useful for use with EZ Game Saver. When it gets set, the current animation is started...
The root class of all sprites. Does not assume any animation capabilities or atlas packing...
int GetFramesDisplayed()
Returns the number of frames displayed by the animation according to its current loop cycles and loop...
int GetFrameCount()
Returns the number of frames in the animation.
Deactivate the sprite when the animation ends (sets the GameObject's .active property to false)...
int cols
The number of columns in the animation.
SPRITE_FRAME[] BuildWrappedUVAnim(Vector2 start, Vector2 cellSize, int cols, int rows, int totalCells)
Constructs an array of frames based upon the info supplied. NOTE: When the edge of the texture is rea...
UVAnimation_Auto GetCurrentClip()
Gets a reference to the currently-playing clip.
float GetDuration()
Returns the duration, in seconds, of the animation. NOTE: This takes into account loop cycles and loo...
Revert to the static image when the animation ends.
delegate void AnimFrameDelegate(SpriteBase sprite, int frame)
void SetAnimPosition(float pos)
Sets the current playing position of the animation. NOTE: This method does NOT take loop cycles and l...
void RemoveSpriteresizedDelegate(SpriteResizedDelegate del)
Removes the specified delegate from the list of those to be called when the sprite is resized...
void Reset()
Resets the animation sequence for playing anew.
void Reset()
Resets all the animation state vars to ready the object for playing anew.
bool loopReverse
Reverse the play direction when the end of the animation is reached? If true, a loop iteration isn't ...
delegate void AnimCompleteDelegate(SpriteBase sprite)
float GetDuration()
Returns the duration, in seconds, of the animation. NOTE: This takes into account loop cycles and loo...
void SetAnimCompleteDelegate(AnimCompleteDelegate del)
Sets the delegate to be called upon animation completion.
void AddSpriteResizedDelegate(SpriteResizedDelegate del)
Adds the delegate to be called when the sprite is resized.
Vector2 start
The pixel coordinates of the lower-left corner of the first frame in the animation sequence...
override void Clear()
Resets important sprite values to defaults for reuse.
int GetFrameCount()
Returns the total number of frames displayed by this animation.
void SetAnim(int index, SPRITE_FRAME[] frames)
Replaces the contents of the specified clip.
Destroys the sprite when the animation ends.
UVAnimation.ANIM_END_ACTION onAnimEnd
What the sprite should do when the animation is done playing. The options are to: 1) Do nothing...
Do nothing when the animation ends.