metaforce/Runtime/CRelayTracker.hpp

39 lines
964 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"
2018-12-07 21:30:43 -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
2018-12-07 21:30:43 -08:00
class CRelayTracker {
std::vector<TEditorId> x0_relayStates;
2016-07-24 16:14:58 -07:00
2016-04-12 01:01:24 -07:00
public:
2018-12-07 21:30:43 -08:00
CRelayTracker() = default;
CRelayTracker(CBitStreamReader&, const CSaveWorld&);
bool HasRelay(TEditorId);
void AddRelay(TEditorId);
void RemoveRelay(TEditorId);
2019-02-09 20:41:35 -08:00
void SendMsgs(TAreaId, CStateManager&);
2018-12-07 21:30:43 -08:00
void PutTo(CBitStreamWriter&, const CSaveWorld&);
2015-08-16 22:26:58 -07:00
};
2018-12-07 21:30:43 -08:00
} // namespace urde