mirror of https://github.com/AxioDL/metaforce.git
51 lines
937 B
C++
51 lines
937 B
C++
#ifndef __URDE_COBJECTLIST_HPP__
|
|
#define __URDE_COBJECTLIST_HPP__
|
|
|
|
#include "World/CEntity.hpp"
|
|
#include "RetroTypes.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
enum class EGameObjectList
|
|
{
|
|
Invalid = -1,
|
|
All,
|
|
Actor,
|
|
PhysicsActor,
|
|
GameCamera,
|
|
GameLight,
|
|
ListeningAi,
|
|
AiWaypoint,
|
|
PlatformAndDoor,
|
|
};
|
|
|
|
class CObjectList
|
|
{
|
|
friend class CGameArea;
|
|
|
|
struct SObjectListEntry
|
|
{
|
|
CEntity* entity = nullptr;
|
|
TUniqueId prev = -1;
|
|
TUniqueId next = -1;
|
|
};
|
|
SObjectListEntry m_list[1024];
|
|
EGameObjectList m_listEnum;
|
|
TUniqueId m_lastId = -1;
|
|
u16 m_count = 0;
|
|
int m_areaIdx = 0;
|
|
public:
|
|
CObjectList(EGameObjectList listEnum);
|
|
|
|
void AddObject(CEntity& entity);
|
|
void RemoveObject(TUniqueId uid);
|
|
const CEntity* GetObjectById(TUniqueId uid) const;
|
|
CEntity* GetObjectById(TUniqueId uid);
|
|
virtual bool IsQualified();
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __URDE_COBJECTLIST_HPP__
|