#ifndef __PSHAG_CPARTICLEDATAFACTORY_HPP__ #define __PSHAG_CPARTICLEDATAFACTORY_HPP__ #include "RetroTypes.hpp" #include "IObj.hpp" #include "CToken.hpp" #include "IOStreams.hpp" namespace urde { class CGenDescription; class CSwooshDescription; class CElectricDescription; class CSimplePool; class CVParamTransfer; class CModel; class CUVElement; class CColorElement; class CModVectorElement; class CEmitterElement; class CVectorElement; class CRealElement; class CIntElement; struct SParticleModel { TLockedToken m_token; bool m_found = false; CModel* m_model = nullptr; SParticleModel() = default; SParticleModel(CToken&& tok, bool found) : m_token(std::move(tok)), m_found(found) {} }; struct SChildGeneratorDesc { TLockedToken m_token; bool m_found = false; CGenDescription* m_gen = nullptr; SChildGeneratorDesc() = default; SChildGeneratorDesc(CToken&& tok, bool found) : m_token(std::move(tok)), m_found(found) {} }; struct SSwooshGeneratorDesc { TLockedToken m_token; bool m_found = false; CSwooshDescription* m_swoosh = nullptr; SSwooshGeneratorDesc() = default; SSwooshGeneratorDesc(CToken&& tok, bool found) : m_token(std::move(tok)), m_found(found) {} }; struct SElectricGeneratorDesc { TLockedToken m_token; bool m_found = false; CElectricDescription* m_electric = nullptr; SElectricGeneratorDesc() = default; SElectricGeneratorDesc(CToken&& tok, bool found) : m_token(std::move(tok)), m_found(found) {} }; class CParticleDataFactory { friend class CDecalDataFactory; friend class CCollisionResponseData; friend class CParticleElectricDataFactory; friend class CParticleSwooshDataFactory; friend class CProjectileWeaponDataFactory; static SParticleModel GetModel(CInputStream& in, CSimplePool* resPool); static SChildGeneratorDesc GetChildGeneratorDesc(TResId res, CSimplePool* resPool, const std::vector& tracker); static SChildGeneratorDesc GetChildGeneratorDesc(CInputStream& in, CSimplePool* resPool, const std::vector& tracker); static SSwooshGeneratorDesc GetSwooshGeneratorDesc(CInputStream& in, CSimplePool* resPool); static SElectricGeneratorDesc GetElectricGeneratorDesc(CInputStream& in, CSimplePool* resPool); static CUVElement* GetTextureElement(CInputStream& in, CSimplePool* resPool); static CColorElement* GetColorElement(CInputStream& in); static CModVectorElement* GetModVectorElement(CInputStream& in); static CEmitterElement* GetEmitterElement(CInputStream& in); static CVectorElement* GetVectorElement(CInputStream& in); static CRealElement* GetRealElement(CInputStream& in); static CIntElement* GetIntElement(CInputStream& in); static float GetReal(CInputStream& in); static int32_t GetInt(CInputStream& in); static bool GetBool(CInputStream& in); static FourCC GetClassID(CInputStream& in); static CGenDescription* CreateGeneratorDescription(CInputStream& in, std::vector& tracker, TResId resId, CSimplePool* resPool); static bool CreateGPSM(CGenDescription* fillDesc, CInputStream& in, std::vector& tracker, CSimplePool* resPool); static void LoadGPSMTokens(CGenDescription* desc); public: static CGenDescription* GetGeneratorDesc(CInputStream& in, CSimplePool* resPool); }; std::unique_ptr FParticleFactory(const SObjectTag& tag, CInputStream& in, const CVParamTransfer& vparms); } #endif // __PSHAG_CPARTICLEDATAFACTORY_HPP__