metaforce/DataSpec/DNAMP1/ScriptObjects/ScriptBeam.hpp

42 lines
982 B
C++
Raw Normal View History

2015-09-10 20:30:35 +00:00
#ifndef _DNAMP1_SCRIPTBEAM_HPP_
#define _DNAMP1_SCRIPTBEAM_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 ScriptBeam : 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<bool> unknown1;
UniqueID32 wpsc;
2017-08-20 05:23:22 +00:00
BeamInfo beamInfo;
2015-09-10 20:30:35 +00:00
DamageInfo damageInfo;
void nameIDs(PAKRouter<PAKBridge>& pakRouter) const
{
if (wpsc)
{
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(wpsc);
ent->name = name + "_wpsc";
}
2017-08-20 05:23:22 +00:00
beamInfo.nameIDs(pakRouter, name + "_beamInfo");
}
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(wpsc, pathsOut);
2017-08-20 05:23:22 +00:00
beamInfo.depIDs(pathsOut);
2016-10-02 22:41:36 +00:00
}
2015-09-10 20:30:35 +00:00
};
}
#endif