#ifndef _DNAMP1_ELITEPIRATE_HPP_ #define _DNAMP1_ELITEPIRATE_HPP_ #include "../../DNACommon/DNACommon.hpp" #include "IScriptObject.hpp" #include "Parameters.hpp" namespace DataSpec { namespace DNAMP1 { struct ElitePirate : IScriptObject { DECL_YAML String<-1> name; Value location; Value orientation; Value scale; PatternedInfo patternedInfo; ActorParameters actorParameters1; Value unknown1; Value unknown2; Value unknown3; Value unknown4; Value unknown5; Value unknown6; Value unknown7; Value unknown8; UniqueID32 particle1; Value soundID1; ActorParameters actorParameters2; AnimationParameters animationParameters; UniqueID32 particle2; Value soundID2; UniqueID32 model; DamageInfo damageInfo1; Value unknown9; UniqueID32 particle3; UniqueID32 particle4; UniqueID32 particle5; UniqueID32 particle6; Value unknown10; Value unknown11; Value unknown12; Value unknown13; Value unknown14; Value unknown15; Value unknown16; Value soundID3; Value soundID4; UniqueID32 particle7; DamageInfo damageInfo2; UniqueID32 elsc; Value soundID5; Value unknown17; Value unknown18; void addCMDLRigPairs(PAKRouter& pakRouter, std::unordered_map>& addTo) const { actorParameters1.addCMDLRigPairs(addTo, patternedInfo.animationParameters.getCINF(pakRouter)); actorParameters2.addCMDLRigPairs(addTo, animationParameters.getCINF(pakRouter)); } void nameIDs(PAKRouter& pakRouter) const { if (particle1) { PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(particle1); ent->name = name + "_part1"; } if (particle2) { PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(particle2); ent->name = name + "_part2"; } if (model) { PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(model); ent->name = name + "_model"; } if (particle3) { PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(particle3); ent->name = name + "_part3"; } if (particle4) { PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(particle4); ent->name = name + "_part4"; } if (particle5) { PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(particle5); ent->name = name + "_part5"; } if (particle6) { PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(particle6); ent->name = name + "_part6"; } if (particle7) { PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(particle7); ent->name = name + "_part7"; } if (elsc) { PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(elsc); ent->name = name + "_elsc"; } patternedInfo.nameIDs(pakRouter, name + "_patterned"); actorParameters1.nameIDs(pakRouter, name + "_actp1"); actorParameters2.nameIDs(pakRouter, name + "_actp2"); animationParameters.nameANCS(pakRouter, name + "_animp"); } void gatherDependencies(std::vector& pathsOut) const { g_curSpec->flattenDependencies(particle1, pathsOut); g_curSpec->flattenDependencies(particle2, pathsOut); g_curSpec->flattenDependencies(model, pathsOut); g_curSpec->flattenDependencies(particle3, pathsOut); g_curSpec->flattenDependencies(particle4, pathsOut); g_curSpec->flattenDependencies(particle5, pathsOut); g_curSpec->flattenDependencies(particle6, pathsOut); g_curSpec->flattenDependencies(particle7, pathsOut); g_curSpec->flattenDependencies(elsc, pathsOut); patternedInfo.depIDs(pathsOut); actorParameters1.depIDs(pathsOut); actorParameters2.depIDs(pathsOut); animationParameters.depANCS(pathsOut); } void gatherScans(std::vector& scansOut) const { actorParameters1.scanIDs(scansOut); actorParameters2.scanIDs(scansOut); } }; } } #endif