/* * All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or * its licensors. * * For complete copyright and license terms please see the LICENSE at the root of this * distribution (the "License"). All use of this software is governed by the License, * or, if provided, by the license below or the license accompanying this file. Do not * remove or modify any license notices. This file is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * */ // Original file Copyright Crytek GMBH or its affiliates, used under license. #ifndef CRYINCLUDE_CRYMOVIE_ANIMPOSTFXNODE_H #define CRYINCLUDE_CRYMOVIE_ANIMPOSTFXNODE_H #pragma once #include "AnimNode.h" class CFXNodeDescription; namespace TimeOfDayNodeTest { class TimeOfDayNode_Test; } ////////////////////////////////////////////////////////////////////////// class CAnimPostFXNode : public CAnimNode { friend class TimeOfDayNodeTest::TimeOfDayNode_Test; public: AZ_CLASS_ALLOCATOR(CAnimPostFXNode, AZ::SystemAllocator, 0); AZ_RTTI(CAnimPostFXNode, "{41FCA8BB-46A8-4F37-87C2-C1D10994854B}", CAnimNode); //----------------------------------------------------------------------------- //! static void Initialize(); static CFXNodeDescription* GetFXNodeDescription(AnimNodeType nodeType); static CAnimNode* CreateNode(const int id, AnimNodeType nodeType); //----------------------------------------------------------------------------- //! CAnimPostFXNode(); CAnimPostFXNode(const int id, AnimNodeType nodeType, CFXNodeDescription* pDesc); //----------------------------------------------------------------------------- //! virtual void SerializeAnims(XmlNodeRef& xmlNode, bool bLoading, bool bLoadEmptyTracks); //----------------------------------------------------------------------------- //! virtual unsigned int GetParamCount() const; virtual CAnimParamType GetParamType(unsigned int nIndex) const; //----------------------------------------------------------------------------- //! //----------------------------------------------------------------------------- //! virtual void CreateDefaultTracks(); virtual void OnReset(); //----------------------------------------------------------------------------- //! virtual void Animate(SAnimContext& ac); void InitPostLoad(IAnimSequence* sequence) override; static void Reflect(AZ::SerializeContext* serializeContext); protected: virtual bool GetParamInfoFromType(const CAnimParamType& paramId, SParamInfo& info) const; typedef std::map< AnimNodeType, _smart_ptr > FxNodeDescriptionMap; static StaticInstance s_fxNodeDescriptions; static bool s_initialized; CFXNodeDescription* m_pDescription; private: //! Allows CryStrings to be destroyed before their allocators static void ClearControlParams(); }; #endif // CRYINCLUDE_CRYMOVIE_ANIMPOSTFXNODE_H