2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-04-16 21:49:47 +00:00
|
|
|
|
2019-09-23 19:00:23 +00:00
|
|
|
#include "Runtime/CObjectList.hpp"
|
2016-04-16 21:49:47 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
2016-04-16 21:49:47 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CActorList : public CObjectList {
|
2016-04-16 21:49:47 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CActorList();
|
2016-10-01 19:00:16 +00:00
|
|
|
|
2019-08-09 12:45:18 +00:00
|
|
|
bool IsQualified(const CEntity&) override;
|
2016-04-16 21:49:47 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CPhysicsActorList : public CObjectList {
|
2016-04-16 21:49:47 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CPhysicsActorList();
|
2019-08-09 12:45:18 +00:00
|
|
|
bool IsQualified(const CEntity&) override;
|
2016-04-16 21:49:47 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CGameCameraList : public CObjectList {
|
2016-04-16 21:49:47 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CGameCameraList();
|
2019-08-09 12:45:18 +00:00
|
|
|
bool IsQualified(const CEntity&) override;
|
2016-04-16 21:49:47 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CListeningAiList : public CObjectList {
|
2016-04-16 21:49:47 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CListeningAiList();
|
2019-08-09 12:45:18 +00:00
|
|
|
bool IsQualified(const CEntity&) override;
|
2016-04-16 21:49:47 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CAiWaypointList : public CObjectList {
|
2016-04-16 21:49:47 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CAiWaypointList();
|
2019-08-09 12:45:18 +00:00
|
|
|
bool IsQualified(const CEntity&) override;
|
2016-04-16 21:49:47 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CPlatformAndDoorList : public CObjectList {
|
2016-04-16 21:49:47 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CPlatformAndDoorList();
|
2016-10-01 19:00:16 +00:00
|
|
|
|
2019-08-09 12:45:18 +00:00
|
|
|
bool IsQualified(const CEntity&) override;
|
2018-12-08 05:30:43 +00:00
|
|
|
bool IsDoor(const CEntity&);
|
|
|
|
bool IsPlatform(const CEntity&);
|
2016-04-16 21:49:47 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CGameLightList : public CObjectList {
|
2016-04-16 21:49:47 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CGameLightList();
|
2016-10-01 19:00:16 +00:00
|
|
|
|
2019-08-09 12:45:18 +00:00
|
|
|
bool IsQualified(const CEntity&) override;
|
2016-04-16 21:49:47 +00:00
|
|
|
};
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|