re3/src/Pools.h

44 lines
1.5 KiB
C
Raw Normal View History

2019-05-15 14:52:37 +00:00
#pragma once
#include "templates.h"
#include "Lists.h"
#include "Treadable.h"
#include "Object.h"
#include "CutsceneHead.h"
2019-06-02 15:13:56 +00:00
#include "PlayerPed.h"
#include "Automobile.h"
#include "DummyPed.h"
2019-05-15 14:52:37 +00:00
typedef CPool<CPtrNode> CCPtrNodePool;
typedef CPool<CEntryInfoNode> CEntryInfoNodePool;
2019-06-02 15:13:56 +00:00
typedef CPool<CPed,CPlayerPed> CPedPool;
typedef CPool<CVehicle,CAutomobile> CVehiclePool;
2019-05-15 14:52:37 +00:00
typedef CPool<CBuilding> CBuildingPool;
typedef CPool<CTreadable> CTreadablePool;
typedef CPool<CObject, CCutsceneHead> CObjectPool;
2019-06-02 15:13:56 +00:00
typedef CPool<CDummy, CDummyPed> CDummyPool;
2019-05-15 14:52:37 +00:00
class CPools
{
static CCPtrNodePool *&ms_pPtrNodePool;
static CEntryInfoNodePool *&ms_pEntryInfoNodePool;
2019-06-02 15:13:56 +00:00
static CPedPool *&ms_pPedPool;
static CVehiclePool *&ms_pVehiclePool;
2019-05-15 14:52:37 +00:00
static CBuildingPool *&ms_pBuildingPool;
static CTreadablePool *&ms_pTreadablePool;
static CObjectPool *&ms_pObjectPool;
2019-06-02 15:13:56 +00:00
static CDummyPool *&ms_pDummyPool;
2019-05-15 14:52:37 +00:00
// ms_pAudioScriptObjectPool
public:
static CCPtrNodePool *GetPtrNodePool(void) { return ms_pPtrNodePool; }
static CEntryInfoNodePool *GetEntryInfoNodePool(void) { return ms_pEntryInfoNodePool; }
2019-06-02 15:13:56 +00:00
static CPedPool *GetPedPool(void) { return ms_pPedPool; }
static CVehiclePool *GetVehiclePool(void) { return ms_pVehiclePool; }
2019-05-15 14:52:37 +00:00
static CBuildingPool *GetBuildingPool(void) { return ms_pBuildingPool; }
static CTreadablePool *GetTreadablePool(void) { return ms_pTreadablePool; }
static CObjectPool *GetObjectPool(void) { return ms_pObjectPool; }
2019-06-02 15:13:56 +00:00
static CDummyPool *GetDummyPool(void) { return ms_pDummyPool; }
2019-05-15 14:52:37 +00:00
static void Initialise(void);
};