metaforce/DataSpec/DNAMP1/ScriptObjects/NewIntroBoss.hpp

63 lines
2.2 KiB
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2015-09-10 13:30:35 -07:00
#include "../../DNACommon/DNACommon.hpp"
#include "IScriptObject.hpp"
#include "Parameters.hpp"
2018-12-07 21:30:43 -08:00
namespace DataSpec::DNAMP1 {
struct NewIntroBoss : IScriptObject {
AT_DECL_DNA_YAML
AT_DECL_DNAV
String<-1> name;
Value<atVec3f> location;
Value<atVec3f> orientation;
Value<atVec3f> scale;
PatternedInfo patternedInfo;
ActorParameters actorParameters;
2019-01-05 00:34:09 -08:00
Value<float> minTurnAngle;
2018-12-07 21:30:43 -08:00
UniqueID32 weaponDesc;
DamageInfo damageInfo;
2019-01-02 19:47:28 -08:00
UniqueID32 beamContactFxId;
UniqueID32 beamPulseFxId;
UniqueID32 beamTextureId;
UniqueID32 beamGlowTextureId;
2018-12-07 21:30:43 -08:00
void addCMDLRigPairs(PAKRouter<PAKBridge>& pakRouter, CharacterAssociations<UniqueID32>& charAssoc) const {
actorParameters.addCMDLRigPairs(pakRouter, charAssoc, patternedInfo.animationParameters);
}
2018-12-07 21:30:43 -08:00
void nameIDs(PAKRouter<PAKBridge>& pakRouter) const {
2019-01-02 19:47:28 -08:00
if (beamContactFxId) {
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(beamContactFxId);
ent->name = name + "_beamContactFxId";
}
2019-01-02 19:47:28 -08:00
if (beamPulseFxId) {
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(beamPulseFxId);
ent->name = name + "_beamPulseFxId";
2016-10-02 15:41:36 -07:00
}
2019-01-02 19:47:28 -08:00
if (beamTextureId) {
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(beamTextureId);
ent->name = name + "_beamTextureId";
2016-10-02 15:41:36 -07:00
}
2019-01-02 19:47:28 -08:00
if (beamGlowTextureId) {
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(beamGlowTextureId);
ent->name = name + "_beamGlowTextureId";
2018-12-07 21:30:43 -08:00
}
patternedInfo.nameIDs(pakRouter, name + "_patterned");
actorParameters.nameIDs(pakRouter, name + "_actp");
}
void gatherDependencies(std::vector<hecl::ProjectPath>& pathsOut, std::vector<hecl::ProjectPath>& lazyOut) const {
g_curSpec->flattenDependencies(weaponDesc, pathsOut);
2019-01-02 19:47:28 -08:00
g_curSpec->flattenDependencies(beamContactFxId, pathsOut);
g_curSpec->flattenDependencies(beamPulseFxId, pathsOut);
g_curSpec->flattenDependencies(beamTextureId, pathsOut);
g_curSpec->flattenDependencies(beamGlowTextureId, pathsOut);
2018-12-07 21:30:43 -08:00
patternedInfo.depIDs(pathsOut);
actorParameters.depIDs(pathsOut, lazyOut);
}
2015-09-10 13:30:35 -07:00
2018-12-07 21:30:43 -08:00
void gatherScans(std::vector<Scan>& scansOut) const { actorParameters.scanIDs(scansOut); }
};
} // namespace DataSpec::DNAMP1