2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2017-02-27 05:25:14 +00:00
|
|
|
|
|
|
|
#include "CEntity.hpp"
|
|
|
|
#include "CToken.hpp"
|
|
|
|
#include "Audio/CMidiManager.hpp"
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
2017-02-27 05:25:14 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CScriptMidi : public CEntity {
|
|
|
|
TToken<CMidiManager::CMidiData> x34_song;
|
|
|
|
CMidiHandle x3c_handle;
|
|
|
|
float x40_fadeInTime;
|
|
|
|
float x44_fadeOutTime;
|
|
|
|
u16 x48_volume;
|
2017-02-27 05:25:14 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void StopInternal(float fadeTime);
|
2017-02-27 05:25:14 +00:00
|
|
|
|
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CScriptMidi(TUniqueId id, const CEntityInfo& info, std::string_view name, bool active, CAssetId csng, float, float,
|
|
|
|
s32);
|
2017-02-27 05:25:14 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void Stop(CStateManager& mgr, float fadeTime);
|
|
|
|
void Play(CStateManager& mgr, float fadeTime);
|
|
|
|
void Accept(IVisitor& visitor);
|
|
|
|
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId objId, CStateManager& stateMgr);
|
2017-02-27 05:25:14 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|