metaforce/DataSpec/DNAMP1/ScriptObjects/WorldTeleporter.hpp

64 lines
1.8 KiB
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2015-09-10 20:30:35 +00:00
#include "../../DNACommon/DNACommon.hpp"
#include "IScriptObject.hpp"
#include "Parameters.hpp"
2018-12-08 05:30:43 +00:00
namespace DataSpec::DNAMP1 {
2018-02-22 07:24:51 +00:00
2018-12-08 05:30:43 +00:00
struct WorldTeleporter : IScriptObject {
2019-08-11 00:49:41 +00:00
AT_DECL_EXPLICIT_DNA_YAMLV
2018-12-08 05:30:43 +00:00
String<-1> name;
Value<bool> active;
2018-12-08 05:30:43 +00: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-08 05:30:43 +00:00
UniqueID32 font;
UniqueID32 strg;
Value<bool> fadeWhite;
Value<float> charFadeInTime;
Value<float> charsPerSecond;
Value<float> showDelay;
2018-12-08 05:30:43 +00:00
/* Trilogy additions (property count 26) */
String<-1> audioStream;
Value<bool> unknown13;
Value<float> unknown14;
Value<float> unknown15;
Value<float> unknown16;
2016-10-02 22:41:36 +00:00
void nameIDs(PAKRouter<PAKBridge>& pakRouter) const override {
if (platformModel.isValid()) {
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(platformModel);
2018-12-08 05:30:43 +00:00
ent->name = name + "_model1";
2016-10-02 22:41:36 +00:00
}
if (backgroundModel.isValid()) {
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(backgroundModel);
2018-12-08 05:30:43 +00:00
ent->name = name + "_model2";
}
2019-07-20 04:27:21 +00:00
if (strg.isValid()) {
2018-12-08 05:30:43 +00: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-08 05:30:43 +00:00
g_curSpec->flattenDependencies(strg, pathsOut);
}
};
2015-09-10 20:30:35 +00:00
2018-12-08 05:30:43 +00:00
} // namespace DataSpec::DNAMP1