2015-09-10 20:30:35 +00:00
|
|
|
#ifndef _DNAMP1_SEEDLING_HPP_
|
|
|
|
#define _DNAMP1_SEEDLING_HPP_
|
|
|
|
|
|
|
|
#include "../../DNACommon/DNACommon.hpp"
|
|
|
|
#include "IScriptObject.hpp"
|
|
|
|
#include "Parameters.hpp"
|
|
|
|
|
2017-12-29 08:08:12 +00:00
|
|
|
namespace DataSpec::DNAMP1
|
2015-09-10 20:30:35 +00:00
|
|
|
{
|
|
|
|
struct Seedling : IScriptObject
|
|
|
|
{
|
2018-02-22 07:24:51 +00:00
|
|
|
AT_DECL_DNA_YAML
|
|
|
|
AT_DECL_DNAV
|
2015-09-10 20:30:35 +00:00
|
|
|
String<-1> name;
|
|
|
|
Value<atVec3f> location;
|
|
|
|
Value<atVec3f> orientation;
|
|
|
|
Value<atVec3f> scale;
|
|
|
|
PatternedInfo patternedInfo;
|
|
|
|
ActorParameters actorParameters;
|
|
|
|
UniqueID32 unknown1;
|
|
|
|
UniqueID32 unknown2;
|
|
|
|
DamageInfo damageInfo1;
|
|
|
|
DamageInfo damageInfo2;
|
|
|
|
Value<float> unknown3;
|
|
|
|
Value<float> unknown4;
|
|
|
|
Value<float> unknown5;
|
|
|
|
Value<float> unknown6;
|
2015-10-27 00:19:03 +00:00
|
|
|
|
|
|
|
void addCMDLRigPairs(PAKRouter<PAKBridge>& pakRouter,
|
|
|
|
std::unordered_map<UniqueID32, std::pair<UniqueID32, UniqueID32>>& addTo) const
|
|
|
|
{
|
|
|
|
actorParameters.addCMDLRigPairs(addTo, patternedInfo.animationParameters.getCINF(pakRouter));
|
|
|
|
}
|
|
|
|
|
|
|
|
void nameIDs(PAKRouter<PAKBridge>& pakRouter) const
|
|
|
|
{
|
|
|
|
if (unknown1)
|
|
|
|
{
|
|
|
|
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(unknown1);
|
|
|
|
ent->name = name + "_unk1";
|
|
|
|
}
|
|
|
|
if (unknown2)
|
|
|
|
{
|
|
|
|
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(unknown2);
|
|
|
|
ent->name = name + "_unk2";
|
|
|
|
}
|
|
|
|
patternedInfo.nameIDs(pakRouter, name + "_patterned");
|
|
|
|
actorParameters.nameIDs(pakRouter, name + "_actp");
|
|
|
|
}
|
2016-10-02 22:41:36 +00:00
|
|
|
|
2018-05-08 02:11:07 +00:00
|
|
|
void gatherDependencies(std::vector<hecl::ProjectPath>& pathsOut,
|
|
|
|
std::vector<hecl::ProjectPath>& lazyOut) const
|
2016-10-02 22:41:36 +00:00
|
|
|
{
|
|
|
|
g_curSpec->flattenDependencies(unknown1, pathsOut);
|
|
|
|
g_curSpec->flattenDependencies(unknown2, pathsOut);
|
|
|
|
patternedInfo.depIDs(pathsOut);
|
2018-05-08 02:11:07 +00:00
|
|
|
actorParameters.depIDs(pathsOut, lazyOut);
|
2016-10-02 22:41:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void gatherScans(std::vector<Scan>& scansOut) const
|
|
|
|
{
|
|
|
|
actorParameters.scanIDs(scansOut);
|
|
|
|
}
|
2015-09-10 20:30:35 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|