metaforce/DataSpec/DNAMP1/ScriptObjects/WorldTeleporter.hpp

64 lines
1.8 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 {
2018-02-21 23:24:51 -08:00
2018-12-07 21:30:43 -08:00
struct WorldTeleporter : IScriptObject {
2019-08-10 17:49:41 -07:00
AT_DECL_EXPLICIT_DNA_YAMLV
2018-12-07 21:30:43 -08:00
String<-1> name;
Value<bool> active;
2018-12-07 21:30:43 -08:00
UniqueID32 mlvl;
UniqueID32 mrea;
AnimationParameters animationParameters;
Value<atVec3f> playerScale;
UniqueID32 platformModel;
Value<atVec3f> platformScale;
UniqueID32 backgroundModel;
Value<atVec3f> backgroundScale;
Value<bool> upElevator;
Value<atUint32> elevatorSound; // needs verifcation
Value<atUint32> volume;
Value<atUint32> panning;
Value<bool> showText;
2018-12-07 21:30:43 -08:00
UniqueID32 font;
UniqueID32 strg;
Value<bool> fadeWhite;
Value<float> charFadeInTime;
Value<float> charsPerSecond;
Value<float> showDelay;
2018-12-07 21:30:43 -08:00
/* Trilogy additions (property count 26) */
String<-1> audioStream;
Value<bool> unknown13;
Value<float> unknown14;
Value<float> unknown15;
Value<float> unknown16;
2016-10-02 15:41:36 -07:00
void nameIDs(PAKRouter<PAKBridge>& pakRouter) const override {
if (platformModel.isValid()) {
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(platformModel);
2018-12-07 21:30:43 -08:00
ent->name = name + "_model1";
2016-10-02 15:41:36 -07:00
}
if (backgroundModel.isValid()) {
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(backgroundModel);
2018-12-07 21:30:43 -08:00
ent->name = name + "_model2";
}
2019-07-19 21:27:21 -07:00
if (strg.isValid()) {
2018-12-07 21:30:43 -08:00
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(strg);
ent->name = name + "_strg";
}
}
void gatherDependencies(std::vector<hecl::ProjectPath>& pathsOut,
std::vector<hecl::ProjectPath>& lazyOut) const override {
g_curSpec->flattenDependencies(platformModel, pathsOut);
g_curSpec->flattenDependencies(backgroundModel, pathsOut);
2018-12-07 21:30:43 -08:00
g_curSpec->flattenDependencies(strg, pathsOut);
}
};
2015-09-10 13:30:35 -07:00
2018-12-07 21:30:43 -08:00
} // namespace DataSpec::DNAMP1