metaforce/Runtime/CScriptMailbox.hpp

42 lines
1.1 KiB
C++
Raw Permalink Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2015-08-16 22:26:58 -07:00
#include <vector>
#include "Runtime/Streams/IOStreams.hpp"
#include "Runtime/RetroTypes.hpp"
#include "Runtime/World/ScriptObjectSupport.hpp"
2016-04-12 01:01:24 -07:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
class CWorldSaveGameInfo;
class CStateManager;
2016-07-24 16:14:58 -07:00
#if 0
2016-04-12 01:01:24 -07:00
struct CMailMessage
{
TEditorId x0_id;
EScriptObjectMessage x4_msg;
bool x8_;
CMailMessage(TEditorId id, EScriptObjectMessage msg, bool flag) : x0_id(id), x4_msg(msg), x8_(flag) {}
CMailMessage(const CMailMessage& other) : x0_id(other.x0_id), x4_msg(other.x4_msg), x8_(other.x8_) {}
bool operator==(const CMailMessage& other) const
{ return (x0_id == other.x0_id && x4_msg == other.x4_msg); }
};
2016-07-24 16:14:58 -07:00
#endif
class CScriptMailbox {
std::vector<TEditorId> x0_relays;
2016-07-24 16:14:58 -07:00
2016-04-12 01:01:24 -07:00
public:
CScriptMailbox() = default;
CScriptMailbox(CInputStream& in, const CWorldSaveGameInfo& saveWorld);
2018-12-07 21:30:43 -08:00
bool HasMsg(TEditorId id) const;
void AddMsg(TEditorId id);
void RemoveMsg(TEditorId id);
void SendMsgs(TAreaId areaId, CStateManager& stateMgr);
void PutTo(COutputStream& out, const CWorldSaveGameInfo& saveWorld);
2015-08-16 22:26:58 -07:00
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce