metaforce/DataSpec/DNAMP1/ScriptObjects/FishCloud.hpp

82 lines
2.7 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 FishCloud : IScriptObject {
2019-08-10 17:49:41 -07:00
AT_DECL_DNA_YAMLV
2018-12-07 21:30:43 -08:00
String<-1> name;
Value<atVec3f> location;
Value<atVec3f> orientation;
Value<atVec3f> volume;
2019-04-02 21:32:31 -07:00
Value<bool> active;
2018-12-07 21:30:43 -08:00
UniqueID32 model;
AnimationParameters animationParameters;
2019-04-02 21:32:31 -07:00
Value<atUint32> numBoids;
Value<float> speed;
Value<float> separationRadius;
Value<float> cohesionMagnitude;
Value<float> alignmentWeight;
Value<float> separationMagnitude;
Value<float> weaponRepelMagnitude;
Value<float> playerRepelMagnitude;
Value<float> containmentMagnitude;
Value<float> scatterVel;
Value<float> maxScatterAngle;
Value<float> weaponRepelDampingSpeed;
Value<float> playerRepelDampingSpeed;
Value<float> containmentRadius;
Value<atUint32> updateShift;
Value<atVec4f> color; // CColor
Value<bool> killable;
Value<float> weaponKillRadius;
2018-12-07 21:30:43 -08:00
UniqueID32 deathParticle1;
2019-04-02 21:32:31 -07:00
Value<atUint32> deathParticle1Count;
2018-12-07 21:30:43 -08:00
UniqueID32 deathParticle2;
2019-04-02 21:32:31 -07:00
Value<atUint32> deathParticle2Count;
2018-12-07 21:30:43 -08:00
UniqueID32 deathParticle3;
2019-04-02 21:32:31 -07:00
Value<atUint32> deathParticle3Count;
2018-12-07 21:30:43 -08:00
UniqueID32 deathParticle4;
2019-04-02 21:32:31 -07:00
Value<atUint32> deathParticle4Count;
2018-12-07 21:30:43 -08:00
Value<atUint32> deathSFX;
2019-04-02 21:32:31 -07:00
Value<bool> repelFromThreats;
Value<bool> hotInThermal;
void nameIDs(PAKRouter<PAKBridge>& pakRouter) const override {
2019-07-19 21:27:21 -07:00
if (model.isValid()) {
2018-12-07 21:30:43 -08:00
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(model);
ent->name = name + "_model";
}
2018-12-07 21:30:43 -08:00
animationParameters.nameANCS(pakRouter, name + "_animp");
2019-07-19 21:27:21 -07:00
if (deathParticle1.isValid()) {
2018-12-07 21:30:43 -08:00
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(deathParticle1);
ent->name = name + "_deathParticle1";
2016-10-02 15:41:36 -07:00
}
2019-07-19 21:27:21 -07:00
if (deathParticle2.isValid()) {
2018-12-07 21:30:43 -08:00
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(deathParticle2);
ent->name = name + "_deathParticle2";
}
2019-07-19 21:27:21 -07:00
if (deathParticle3.isValid()) {
2018-12-07 21:30:43 -08:00
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(deathParticle3);
ent->name = name + "_deathParticle3";
}
2019-07-19 21:27:21 -07:00
if (deathParticle4.isValid()) {
2018-12-07 21:30:43 -08:00
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(deathParticle4);
ent->name = name + "_deathParticle4";
}
}
2015-09-10 13:30:35 -07:00
void gatherDependencies(std::vector<hecl::ProjectPath>& pathsOut,
std::vector<hecl::ProjectPath>& lazyOut) const override {
2018-12-07 21:30:43 -08:00
g_curSpec->flattenDependencies(model, pathsOut);
animationParameters.depANCS(pathsOut);
g_curSpec->flattenDependencies(deathParticle1, pathsOut);
g_curSpec->flattenDependencies(deathParticle2, pathsOut);
g_curSpec->flattenDependencies(deathParticle3, pathsOut);
g_curSpec->flattenDependencies(deathParticle4, pathsOut);
}
};
} // namespace DataSpec::DNAMP1