metaforce/DataSpec/DNAMP1/ScriptObjects/Midi.hpp

40 lines
882 B
C++
Raw Normal View History

2015-09-10 20:30:35 +00:00
#ifndef _DNAMP1_MIDI_HPP_
#define _DNAMP1_MIDI_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 Midi : 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<bool> active;
2015-09-10 20:30:35 +00:00
UniqueID32 song;
Value<float> fadeInTime;
Value<float> fadeOutTime;
Value<atUint32> volume;
void nameIDs(PAKRouter<PAKBridge>& pakRouter) const
{
if (song)
{
PAK::Entry* ent = (PAK::Entry*)pakRouter.lookupEntry(song);
ent->name = name + "_song";
}
}
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
{
2017-11-27 05:06:53 +00:00
// Dedicated PAK for this
//g_curSpec->flattenDependencies(song, pathsOut);
2016-10-02 22:41:36 +00:00
}
2015-09-10 20:30:35 +00:00
};
}
#endif