11 using System.Collections;
12 using System.Collections.Generic;
56 public string[] framePaths;
59 public string[] frameGUIDs;
70 public void Allocate()
72 bool allocate =
false;
74 if (framePaths == null)
75 framePaths =
new string[0];
76 if (frameGUIDs == null)
77 frameGUIDs =
new string[0];
79 if (spriteFrames == null)
81 else if (spriteFrames.Length != frameGUIDs.Length)
86 spriteFrames =
new CSpriteFrame[Mathf.Max(frameGUIDs.Length, framePaths.Length)];
87 for (
int i = 0; i < spriteFrames.Length; ++i)
112 framePaths =
new string[a.framePaths.Length];
113 a.framePaths.CopyTo(framePaths, 0);
115 frameGUIDs =
new string[a.frameGUIDs.Length];
116 a.frameGUIDs.CopyTo(frameGUIDs, 0);
119 for (
int i = 0; i < spriteFrames.Length; ++i)
139 protected Texture2D[] sourceTextures;
185 if (
States[0].spriteFrames.Length != 0)
186 return States[0].spriteFrames[0];
206 public override Vector2 GetDefaultPixelSize(PathFromGUIDDelegate guid2Path, AssetLoaderDelegate loader)
213 if (a.frameGUIDs == null)
215 if (a.frameGUIDs.Length == 0)
219 Debug.LogWarning(
"Sprite \"" + name +
"\" does not seem to have been built to an atlas yet.");
223 Vector2 size = Vector2.zero;
225 Texture2D tex = (Texture2D)loader(guid2Path(a.frameGUIDs[0]), typeof(Texture2D));
229 if (spriteMesh != null)
231 tex = (Texture2D)spriteMesh.material.GetTexture(
"_MainTex");
232 size =
new Vector2(f.uvs.width * tex.width, f.uvs.height * tex.height);
236 size =
new Vector2(tex.width * (1f / (f.scaleFactor.x * 2f)), tex.height * (1f / (f.scaleFactor.y * 2f)));
241 protected override void Awake()
247 for (
int i = 0; i < States.Length; ++i)
250 animations[i].SetAnim(
States[i], i);
275 this.Setup(w, h, m_spriteMesh.material);
284 public void Setup(
float w,
float h, Material material)
290 ((SpriteMesh)m_spriteMesh).material = material;
310 sp = (AutoSpriteBase)s;
313 if (sp.spriteMesh != null)
317 animations =
new UVAnimation[sp.animations.Length];
318 for (
int i = 0; i < animations.Length; ++i)
328 for (
int i = 0; i < sp.States.Length; ++i)
331 animations[i].SetAnim(sp.States[i], i);
351 sp = (AutoSpriteBase)s;
355 for (
int i = 0; i < States.Length; ++i)
358 States[i].Copy(sp.States[i]);
363 for (
int i = 0; i < States.Length; ++i)
366 animations[i].SetAnim(
States[i], i);
374 public override bool StepAnim(
float time)
379 timeSinceLastFrame += Mathf.Max(0, time);
382 framesToAdvance = (timeSinceLastFrame / timeBetweenAnimFrames);
385 if (framesToAdvance < 1)
388 SetColor(
new Color(1f, 1f, 1f, (1f - framesToAdvance)));
394 while (framesToAdvance >= 1f)
396 if (curAnim.GetNextFrame(ref frameInfo))
398 #if SPRITE_FRAME_DELEGATE
400 if(framesToAdvance >= 1f)
401 if (animFrameDelegate != null)
404 framesToAdvance -= 1f;
405 timeSinceLastFrame -= timeBetweenAnimFrames;
417 case UVAnimation.ANIM_END_ACTION.Do_Nothing:
421 uvRect = frameInfo.uvs;
422 SetBleedCompensation();
429 case UVAnimation.ANIM_END_ACTION.Revert_To_Static:
433 case UVAnimation.ANIM_END_ACTION.Play_Default_Anim:
442 if (animCompleteDelegate != null)
443 animCompleteDelegate(
this);
449 case UVAnimation.ANIM_END_ACTION.Hide:
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);
456 gameObject.active =
false;
459 case UVAnimation.ANIM_END_ACTION.Destroy:
467 if (animCompleteDelegate != null)
468 animCompleteDelegate(
this);
483 animCompleteDelegate(
this);
502 int curFrame = curAnim.GetCurPosition();
503 int stepDir = curAnim.StepDirection;
505 curAnim.GetNextFrame(ref nextFrameInfo);
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;
515 curAnim.SetCurrentFrame(curFrame);
516 curAnim.StepDirection = stepDir;
527 uvRect = frameInfo.uvs;
528 SetBleedCompensation();
543 protected void CallAnimCompleteDelegate()
545 if (animCompleteDelegate != null)
546 animCompleteDelegate(
this);
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)
563 if (deleted || !gameObject.active)
571 curAnimIndex = curAnim.index;
573 curAnim.SetCurrentFrame(frame - 1);
579 timeBetweenAnimFrames = 1f / anim.framerate;
583 timeBetweenAnimFrames = 1f;
586 timeSinceLastFrame = timeBetweenAnimFrames;
591 if ((anim.
GetFrameCount() > 1 || anim.onAnimEnd != UVAnimation.ANIM_END_ACTION.Do_Nothing) && anim.
framerate != 0.0f)
611 if (animCompleteDelegate != null)
618 Invoke(
"CallAnimCompleteDelegate", 1f / anim.
framerate);
621 animCompleteDelegate(
this);
651 if (index >= animations.Length)
653 Debug.LogError(
"ERROR: Animation index " + index +
" is out of bounds!");
669 if (index >= animations.Length)
671 Debug.LogError(
"ERROR: Animation index " + index +
" is out of bounds!");
688 for (
int i = 0; i < animations.Length; ++i)
690 if (animations[i].name == name)
697 Debug.LogError(
"ERROR: Animation \"" + name +
"\" not found!");
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)
722 if (deleted || !gameObject.active)
728 curAnim.PlayInReverse();
734 timeBetweenAnimFrames = 1f / anim.framerate;
738 timeBetweenAnimFrames = 1f;
741 timeSinceLastFrame = timeBetweenAnimFrames;
745 if ((anim.
GetFrameCount() > 1 || anim.onAnimEnd != UVAnimation.ANIM_END_ACTION.Do_Nothing) && anim.
framerate != 0.0f)
765 if (animCompleteDelegate != null)
766 animCompleteDelegate(
this);
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)
783 if (deleted || !gameObject.active)
791 curAnim.PlayInReverse();
792 curAnim.SetCurrentFrame(frame + 1);
796 anim.framerate = Mathf.Max(0.0001f, anim.framerate);
798 timeBetweenAnimFrames = 1f / anim.framerate;
799 timeSinceLastFrame = timeBetweenAnimFrames;
820 if (animCompleteDelegate != null)
821 animCompleteDelegate(
this);
834 if (index >= animations.Length)
836 Debug.LogError(
"ERROR: Animation index " + index +
" is out of bounds!");
851 if (index >= animations.Length)
853 Debug.LogError(
"ERROR: Animation index " + index +
" is out of bounds!");
867 for (
int i = 0; i < animations.Length; ++i)
869 if (animations[i].name == name)
871 animations[i].PlayInReverse();
877 Debug.LogError(
"ERROR: Animation \"" + name +
"\" not found!");
888 for (
int i = 0; i < animations.Length; ++i)
890 if (animations[i].name == name)
892 animations[i].PlayInReverse();
898 Debug.LogError(
"ERROR: Animation \"" + name +
"\" not found!");
911 else if (curAnim.
index != index || !animating)
924 else if (curAnim.
name != name || !animating)
935 if (curAnim != anim || !animating)
950 curAnim.SetCurrentFrame(index - curAnim.StepDirection);
951 timeSinceLastFrame = timeBetweenAnimFrames;
1007 RemoveFromAnimatedList();
1012 if (curAnim != null)
1024 if (curAnim == null)
return;
1028 AddToAnimatedList();
1034 protected override void AddToAnimatedList()
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)
1047 if (animating || !Application.isPlaying || !gameObject.active)
1052 currentlyAnimating =
true;
1053 SpriteAnimationPump.Add(
this);
1058 protected override void RemoveFromAnimatedList()
1060 SpriteAnimationPump.Remove(
this);
1062 currentlyAnimating =
false;
1086 for (
int i = 0; i < animations.Length; ++i)
1088 if (animations[i].name == name)
1090 return animations[i];
1099 for (
int i = 0; i < animations.Length; ++i)
1101 if (
string.Equals(animations[i].name, stateName, System.StringComparison.CurrentCultureIgnoreCase))
1115 public virtual bool SupportsArbitraryAnimations
1117 get {
return false; }
1120 public virtual Material GetPackedMaterial(out
string errString)
1122 errString =
"Sprite \"" + name +
"\" has not been assigned a material, and can therefore not be included in the atlas build.";
1124 if (spriteMesh == null)
1134 return manager.renderer.sharedMaterial;
1138 errString =
"Sprite \"" + name +
"\" is not associated with a SpriteManager, and can therefore not be included in the atlas build.";
1145 return renderer.sharedMaterial;
1152 return manager.renderer.sharedMaterial;
1156 errString =
"Sprite \"" + name +
"\" is not associated with a SpriteManager, and can therefore not be included in the atlas build.";
1161 return spriteMesh.material;
1179 public virtual void Aggregate(PathFromGUIDDelegate guid2Path, LoadAssetDelegate load, GUIDFromPathDelegate path2Guid)
1181 List<Texture2D> texList =
new List<Texture2D>();
1182 List<CSpriteFrame> frameList =
new List<CSpriteFrame>();
1184 for (
int i = 0; i < States.Length; ++i)
1189 if (
States[i].frameGUIDs.Length >=
States[i].framePaths.Length)
1191 for (
int j = 0; j <
States[i].frameGUIDs.Length; ++j)
1193 string path = guid2Path(
States[i].frameGUIDs[j]);
1194 texList.Add((Texture2D)load(path, typeof(Texture2D)));
1199 States[i].framePaths =
new string[0];
1203 States[i].frameGUIDs =
new string[
States[i].framePaths.Length];
1205 States[i].spriteFrames =
new CSpriteFrame[States[i].framePaths.Length];
1206 for (
int j = 0; j < States[i].spriteFrames.Length; ++j)
1209 for (
int j = 0; j < States[i].framePaths.Length; ++j)
1212 States[i].frameGUIDs[j] = path2Guid(States[i].framePaths[j]);
1214 texList.Add((Texture2D)load(States[i].framePaths[j], typeof(Texture2D)));
1215 frameList.Add((
CSpriteFrame)States[i].spriteFrames[j]);
1220 sourceTextures = texList.ToArray();
1221 spriteFrames = frameList.ToArray();
1227 public Texture2D[] SourceTextures
1229 get {
return sourceTextures; }
1237 get {
return spriteFrames; }
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.
void RevertToStatic()
Reverts the sprite to its static (non-animating) default appearance.
Color Color
Accessor for the object's current overall color tint.
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
bool pixelPerfect
Automatically sizes the sprite so that it will display pixel-perfect on-screen. NOTE: If you change t...
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
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 ...
bool autoResize
Automatically resizes the sprite based on its new UV dimensions compared to its previous dimensions...
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.
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.
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...
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.
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...
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.
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...
bool IsAnimating()
Returns whether the sprite is currently animating.
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.
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.
override void Delete()
If non-managed, call Delete() before destroying this component or the GameObject to which it is attac...
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...
int GetFrameCount()
Returns the number of frames in the animation.
float height
Height of the sprite in world space.
ANCHOR_METHOD anchor
Anchor method to use. ANCHOR_METHOD
SpriteManager manager
Reference to the manager which will manage this sprite, provided managed is set to true...
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.