metaforce/Runtime/World/CEntityInfo.hpp

32 lines
1.0 KiB
C++
Raw Permalink Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2017-01-29 18:15:21 -08:00
#include <vector>
#include "Runtime/RetroTypes.hpp"
#include "Runtime/World/ScriptObjectSupport.hpp"
2017-01-29 18:15:21 -08:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2018-12-07 21:30:43 -08:00
struct SConnection {
2021-05-26 23:31:38 -07:00
EScriptObjectState x0_state = EScriptObjectState::Any;
EScriptObjectMessage x4_msg = EScriptObjectMessage::None;
TEditorId x8_objId = kInvalidEditorId;
bool operator==(const SConnection& other) const {
return x0_state == other.x0_state && x4_msg == other.x4_msg && x8_objId == other.x8_objId;
}
2021-06-07 12:29:18 -07:00
bool operator<(const SConnection& other) const { return x8_objId < other.x8_objId; }
2017-01-29 18:15:21 -08:00
};
2018-12-07 21:30:43 -08:00
class CEntityInfo {
TAreaId x0_areaId;
std::vector<SConnection> x4_conns;
TEditorId x14_editorId;
2017-01-29 18:15:21 -08:00
public:
CEntityInfo(TAreaId aid, std::vector<SConnection> conns, TEditorId eid = kInvalidEditorId)
: x0_areaId(aid), x4_conns(std::move(conns)), x14_editorId(eid) {}
2018-12-07 21:30:43 -08:00
TAreaId GetAreaId() const { return x0_areaId; }
std::vector<SConnection> GetConnectionList() const { return x4_conns; }
TEditorId GetEditorId() const { return x14_editorId; }
2017-01-29 18:15:21 -08:00
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce