| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- //
- // Copyright (c) 2008-2017 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 "../Core/Variant.h"
- #include "../Resource/Resource.h"
- namespace Atomic
- {
- class XMLElement;
- class JSONValue;
- /// Interpolation method.
- enum InterpMethod
- {
- /// No interpolation.
- IM_NONE = 0,
- /// Linear interpolation (default).
- IM_LINEAR,
- /// Cardinal spline interpolation, default tension value is 0.5f. For more information please refer to http://cubic.org/docs/hermite.htm.
- IM_SPLINE,
- };
- /// Value animation key frame.
- struct VAnimKeyFrame
- {
- /// Time.
- float time_;
- /// Value.
- Variant value_;
- };
- /// Value animation event frame.
- struct VAnimEventFrame
- {
- /// Time.
- float time_;
- /// Event type.
- StringHash eventType_;
- /// Event data.
- VariantMap eventData_;
- };
- /// Value animation class.
- class ATOMIC_API ValueAnimation : public Resource
- {
- ATOMIC_OBJECT(ValueAnimation, Resource);
- public:
- /// Construct.
- ValueAnimation(Context* context);
- /// Destruct.
- virtual ~ValueAnimation();
- /// Register object factory.
- static void RegisterObject(Context* context);
- /// Load resource from stream. May be called from a worker thread. Return true if successful.
- virtual bool BeginLoad(Deserializer& source);
- /// Save resource. Return true if successful.
- virtual bool Save(Serializer& dest) const;
- /// Load from XML data. Return true if successful.
- bool LoadXML(const XMLElement& source);
- /// Save as XML data. Return true if successful.
- bool SaveXML(XMLElement& dest) const;
- /// Load from JSON data. Return true if successful.
- bool LoadJSON(const JSONValue& source);
- /// Save as XML data. Return true if successful.
- bool SaveJSON(JSONValue& dest) const;
- /// Set owner.
- void SetOwner(void* owner);
- /// Set interpolation method.
- void SetInterpolationMethod(InterpMethod method);
- /// Set spline tension, should be between 0.0f and 1.0f, but this is not a must.
- void SetSplineTension(float tension);
- /// Set value type.
- void SetValueType(VariantType valueType);
- /// Set key frame.
- bool SetKeyFrame(float time, const Variant& value);
- /// Set event frame.
- void SetEventFrame(float time, const StringHash& eventType, const VariantMap& eventData = VariantMap());
- /// Return animation is valid.
- bool IsValid() const;
- /// Return owner.
- void* GetOwner() const { return owner_; }
- /// Return interpolation method.
- InterpMethod GetInterpolationMethod() const { return interpolationMethod_; }
- /// Return spline tension.
- float GetSplineTension() const { return splineTension_; }
- /// Return value type.
- VariantType GetValueType() const { return valueType_; }
- /// Return begin time.
- float GetBeginTime() const { return beginTime_; }
- /// Return end time.
- float GetEndTime() const { return endTime_; }
- /// Return animation value.
- Variant GetAnimationValue(float scaledTime);
- /// Has event frames.
- bool HasEventFrames() const { return !eventFrames_.Empty(); }
- /// Return all event frames between time.
- void GetEventFrames(float beginTime, float endTime, PODVector<const VAnimEventFrame*>& eventFrames) const;
- protected:
- /// Linear interpolation.
- Variant LinearInterpolation(unsigned index1, unsigned index2, float scaledTime) const;
- /// Spline interpolation.
- Variant SplineInterpolation(unsigned index1, unsigned index2, float scaledTime);
- /// Update spline tangents.
- void UpdateSplineTangents();
- /// Return (value1 - value2) * t.
- Variant SubstractAndMultiply(const Variant& value1, const Variant& value2, float t) const;
- /// Owner.
- void* owner_;
- /// Interpolation method.
- InterpMethod interpolationMethod_;
- /// Spline tension.
- float splineTension_;
- /// Value type.
- VariantType valueType_;
- /// Interpolatable flag.
- bool interpolatable_;
- /// Begin time.
- float beginTime_;
- /// End time.
- float endTime_;
- /// Key frames.
- Vector<VAnimKeyFrame> keyFrames_;
- /// Spline tangents.
- VariantVector splineTangents_;
- /// Spline tangents dirty.
- bool splineTangentsDirty_;
- /// Event frames.
- Vector<VAnimEventFrame> eventFrames_;
- };
- }
|