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"
|
|
|
|
|
2017-12-29 08:08:12 +00:00
|
|
|
namespace DataSpec::DNAMP1
|
2015-09-10 20:30:35 +00:00
|
|
|
{
|
|
|
|
struct VisorGoo : 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> 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;
|
2015-10-27 00:19:03 +00:00
|
|
|
|
|
|
|
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";
|
|
|
|
}
|
2015-10-27 00:19:03 +00:00
|
|
|
}
|
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(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
|
|
|
};
|
|
|
|
}
|
|
|
|
|