| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- //
- // Copyright (c) 2008-2015 the Urho3D project.
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- #pragma once
- #include "../Atomic2D/Animation2D.h"
- #include "../Atomic2D/StaticSprite2D.h"
- /// Loop mode.
- enum LoopMode2D
- {
- /// Default, use animation's value.
- LM_DEFAULT = 0,
- /// Force looped.
- LM_FORCE_LOOPED,
- /// Force clamped.
- LM_FORCE_CLAMPED
- };
- namespace Atomic
- {
- class AnimationSet2D;
- /// Animated sprite component, it uses to play animation created by Spriter (http://www.brashmonkey.com/).
- class ATOMIC_API AnimatedSprite2D : public StaticSprite2D
- {
- OBJECT(AnimatedSprite2D);
- public:
- /// Construct.
- AnimatedSprite2D(Context* context);
- /// Destruct.
- virtual ~AnimatedSprite2D();
- /// Register object factory.
- static void RegisterObject(Context* context);
- /// Handle enabled/disabled state change.
- virtual void OnSetEnabled();
- /// Set speed.
- void SetSpeed(float speed);
- /// Set animation by animation set, name and loop mode.
- void SetAnimation(AnimationSet2D* animationSet, const String& name, LoopMode2D loopMode = LM_DEFAULT);
- /// Set animation by name and loop mode.
- void SetAnimation(const String& name, LoopMode2D loopMode = LM_DEFAULT);
- /// Set animation set.
- void SetAnimationSet(AnimationSet2D* animationSet);
- /// Set loop mode.
- void SetLoopMode(LoopMode2D loopMode);
- /// Return speed.
- float GetSpeed() const { return speed_; }
- /// Return animation name.
- const String& GetAnimation() const { return animationName_; }
- /// Return animation.
- AnimationSet2D* GetAnimationSet() const;
- /// Return loop mode.
- LoopMode2D GetLoopMode() const { return loopMode_; }
- /// Return root node.
- Node* GetRootNode() const;
- /// Set animation set attribute.
- void SetAnimationSetAttr(const ResourceRef& value);
- /// Return animation set attribute.
- ResourceRef GetAnimationSetAttr() const;
- /// Set animation by name.
- void SetAnimationAttr(const String& name);
- protected:
- /// Handle scene being assigned.
- virtual void OnSceneSet(Scene* scene);
- /// Recalculate the world-space bounding box.
- virtual void OnWorldBoundingBoxUpdate();
- /// Handle draw order changed.
- virtual void OnDrawOrderChanged();
- /// Handle update vertices.
- virtual void UpdateSourceBatches();
- /// Handle flip changed.
- virtual void OnFlipChanged();
- /// Set animation.
- void SetAnimation(Animation2D* animation, LoopMode2D loopMode);
- /// Update animation.
- void UpdateAnimation(float timeStep);
- /// Calculate time line world world transform.
- void CalculateTimelineWorldTransform(int index);
- /// Handle scene post update.
- void HandleScenePostUpdate(StringHash eventType, VariantMap& eventData);
- /// Speed.
- float speed_;
- /// Animation set.
- SharedPtr<AnimationSet2D> animationSet_;
- /// Animation name.
- String animationName_;
- /// Animation.
- SharedPtr<Animation2D> animation_;
- /// Loop mode.
- LoopMode2D loopMode_;
- /// Looped.
- bool looped_;
- /// Current time.
- float currentTime_;
- /// Root node.
- SharedPtr<Node> rootNode_;
- /// Number of tracks.
- unsigned numTracks_;
- /// Track nodes.
- Vector<SharedPtr<Node> > trackNodes_;
- /// Track node info.
- struct TrackNodeInfo
- {
- /// Has sprite.
- bool hasSprite;
- /// World space.
- bool worldSpace;
- /// Current value.
- AnimationKeyFrame2D value;
- };
- /// Track node infos.
- Vector<TrackNodeInfo> trackNodeInfos_;
- };
- }
|