metaforce/DataSpec/DNAMP1/ScriptObjects/Pickup.hpp

59 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 {
2019-02-18 05:47:46 +00:00
2018-12-08 05:30:43 +00:00
struct Pickup : IScriptObject {
AT_DECL_DNA_YAML
AT_DECL_DNAV
String<-1> name;
Value<atVec3f> location;
Value<atVec3f> orientation;
Value<atVec3f> scale;
Value<atVec3f> hitboxVolume;
Value<atVec3f> scanPosition;
Value<atUint32> pickupType;
Value<atUint32> capacity;
Value<atUint32> amount;
2019-02-18 05:47:46 +00:00
Value<float> possibility;
Value<float> lifeTime;
Value<float> fadeInTime;
2018-12-08 05:30:43 +00:00
UniqueID32 model;
AnimationParameters animationParameters;
ActorParameters actorParameters;
Value<bool> active;
2019-02-18 05:47:46 +00:00
Value<float> startDelay;
UniqueID32 pickupParticle;
2018-12-08 05:30:43 +00:00
void addCMDLRigPairs(PAKRouter<PAKBridge>& pakRouter, CharacterAssociations<UniqueID32>& charAssoc) const {
actorParameters.addCMDLRigPairs(pakRouter, charAssoc, animationParameters);
}
2018-12-08 05:30:43 +00:00
void nameIDs(PAKRouter<PAKBridge>& pakRouter) const {
2019-02-18 05:47:46 +00:00
if (pickupParticle) {
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(pickupParticle);
2018-12-08 05:30:43 +00:00
ent->name = name + "_part";
}
2018-12-08 05:30:43 +00:00
if (model) {
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(model);
ent->name = name + "_model";
2016-10-02 22:41:36 +00:00
}
2018-12-08 05:30:43 +00:00
animationParameters.nameANCS(pakRouter, name + "_animp");
actorParameters.nameIDs(pakRouter, name + "_actp");
}
2016-10-02 22:41:36 +00:00
2018-12-08 05:30:43 +00:00
void gatherDependencies(std::vector<hecl::ProjectPath>& pathsOut, std::vector<hecl::ProjectPath>& lazyOut) const {
2019-02-18 05:47:46 +00:00
g_curSpec->flattenDependencies(pickupParticle, pathsOut);
2018-12-08 05:30:43 +00:00
g_curSpec->flattenDependencies(model, pathsOut);
animationParameters.depANCS(pathsOut);
actorParameters.depIDs(pathsOut, lazyOut);
}
2015-09-10 20:30:35 +00:00
2018-12-08 05:30:43 +00:00
void gatherScans(std::vector<Scan>& scansOut) const { actorParameters.scanIDs(scansOut); }
};
2019-02-18 05:47:46 +00:00
2018-12-08 05:30:43 +00:00
} // namespace DataSpec::DNAMP1