#ifndef _DNAMP1_ACTOR_HPP_ #define _DNAMP1_ACTOR_HPP_ #include "IScriptObject.hpp" #include "Parameters.hpp" namespace DataSpec { namespace DNAMP1 { struct Actor : IScriptObject { DECL_YAML String<-1> name; Value location; Value orientation; Value scale; Value collisionExtent; Value collisionOffset; Value unknown2; Value unknown3; HealthInfo healthInfo; DamageVulnerability damageVulnerability; UniqueID32 model; AnimationParameters animationParameters; ActorParameters actorParameters; Value unkown4; Value unkown5; Value unkown6; Value unkown7; Value unkown8; Value unknown9; Value unknown10; Value unknown11; Value unknown12; Value unknown13; Value unknown14; void addCMDLRigPairs(PAKRouter& pakRouter, std::unordered_map>& addTo) const { actorParameters.addCMDLRigPairs(addTo, animationParameters.getCINF(pakRouter)); } void nameIDs(PAKRouter& pakRouter) const { if (model) { PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(model); ent->name = name + "_model"; } animationParameters.nameANCS(pakRouter, name + "_animp"); actorParameters.nameIDs(pakRouter, name + "_actp"); } void gatherDependencies(std::vector& pathsOut) const { g_curSpec->flattenDependencies(model, pathsOut); animationParameters.depANCS(pathsOut); actorParameters.depIDs(pathsOut); } void gatherScans(std::vector& scansOut) const { actorParameters.scanIDs(scansOut); } zeus::CAABox getVISIAABB(hecl::BlenderToken& btok) const { hecl::BlenderConnection& conn = btok.getBlenderConnection(); zeus::CAABox aabbOut; if (model) { hecl::ProjectPath path = UniqueIDBridge::TranslatePakIdToPath(model); conn.openBlend(path); hecl::BlenderConnection::DataStream ds = conn.beginData(); auto aabb = ds.getMeshAABB(); aabbOut = zeus::CAABox(aabb.first, aabb.second); } else if (animationParameters.animationCharacterSet) { hecl::ProjectPath path = UniqueIDBridge::TranslatePakIdToPath( animationParameters.animationCharacterSet); conn.openBlend(path.getWithExtension(_S(".blend"), true)); hecl::BlenderConnection::DataStream ds = conn.beginData(); auto aabb = ds.getMeshAABB(); aabbOut = zeus::CAABox(aabb.first, aabb.second); } if (aabbOut.min.x > aabbOut.max.x) return {}; zeus::CTransform xf = ConvertEditorEulerToTransform4f(scale, orientation, location); return aabbOut.getTransformedAABox(xf); } }; } } #endif