#ifndef _DNAMP1_PLATFORM_HPP_ #define _DNAMP1_PLATFORM_HPP_ #include "../../DNACommon/DNACommon.hpp" #include "IScriptObject.hpp" #include "Parameters.hpp" namespace DataSpec { namespace DNAMP1 { struct Platform : IScriptObject { DECL_YAML String<-1> name; Value location; Value orientation; Value scale; Value unknown1; Value scanOffset; UniqueID32 model; AnimationParameters animationParameters; ActorParameters actorParameters; Value unknown2; Value active; UniqueID32 dcln; HealthInfo healthInfo; DamageVulnerability damageVulnerabilty; Value unknown3; Value unknown4; Value unknown5; Value unknown6; Value unknown7; void addCMDLRigPairs(PAKRouter& pakRouter, std::unordered_map>& addTo) const { actorParameters.addCMDLRigPairs(addTo, animationParameters.getCINF(pakRouter)); } void nameIDs(PAKRouter& pakRouter) const { if (dcln) { PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(dcln); ent->name = name + "_dcln"; } 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(dcln, pathsOut); 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