metaforce/Runtime/CRelayTracker.hpp

42 lines
970 B
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2015-08-16 22:26:58 -07:00
2016-04-12 01:01:24 -07:00
#include "IOStreams.hpp"
2016-04-17 18:58:13 -07:00
#include "World/ScriptObjectSupport.hpp"
2016-04-12 01:01:24 -07:00
#include "RetroTypes.hpp"
2016-03-04 15:04:53 -08:00
namespace urde
{
2016-04-12 01:01:24 -07:00
class CStateManager;
2016-07-24 16:14:58 -07:00
class CSaveWorld;
#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
2016-07-24 16:14:58 -07:00
class CRelayTracker
2015-08-16 22:26:58 -07:00
{
2016-07-24 16:14:58 -07:00
std::vector<TEditorId> x0_relayStates;
2016-04-12 01:01:24 -07:00
public:
2016-07-24 16:14:58 -07:00
CRelayTracker() = default;
CRelayTracker(CBitStreamReader&, const CSaveWorld&);
2016-04-12 01:01:24 -07:00
2016-07-24 16:14:58 -07:00
bool HasRelay(TEditorId);
void AddRelay(TEditorId);
void RemoveRelay(TEditorId);
2016-04-12 03:52:40 -07:00
void SendMsgs(const TAreaId&, CStateManager&);
2016-07-24 16:14:58 -07:00
void PutTo(CBitStreamWriter&, const CSaveWorld&);
2015-08-16 22:26:58 -07:00
};
}