metaforce/DataSpec/DNAMP1/ScriptObjects/VisorGoo.hpp

51 lines
1.1 KiB
C++
Raw Normal View History

2015-09-10 20:30:35 +00:00
#ifndef _DNAMP1_VISORGOO_HPP_
#define _DNAMP1_VISORGOO_HPP_
#include "../../DNACommon/DNACommon.hpp"
#include "IScriptObject.hpp"
#include "Parameters.hpp"
2016-02-13 09:02:47 +00:00
namespace DataSpec
2015-09-10 20:30:35 +00:00
{
namespace DNAMP1
{
struct VisorGoo : IScriptObject
{
DECL_YAML
String<-1> name;
Value<atVec3f> position;
UniqueID32 particle;
2017-11-12 05:14:57 +00:00
UniqueID32 electric;
Value<float> minDist;
Value<float> maxDist;
Value<float> nearProb;
Value<float> farProb;
DNAColor color;
Value<atUint32> sfx;
Value<bool> skipAngleTest;
void nameIDs(PAKRouter<PAKBridge>& pakRouter) const
{
if (particle)
{
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(particle);
ent->name = name + "_part";
}
2017-11-12 05:14:57 +00:00
if (electric)
{
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(electric);
ent->name = name + "_elsc";
}
}
2016-10-02 22:41:36 +00:00
void gatherDependencies(std::vector<hecl::ProjectPath>& pathsOut) const
{
g_curSpec->flattenDependencies(particle, pathsOut);
2017-11-12 05:14:57 +00:00
g_curSpec->flattenDependencies(electric, pathsOut);
2016-10-02 22:41:36 +00:00
}
2015-09-10 20:30:35 +00:00
};
}
}
#endif