2019-05-15 14:52:37 +00:00
|
|
|
#include "common.h"
|
2019-08-15 14:51:39 +00:00
|
|
|
#include "patcher.h"
|
2019-05-15 14:52:37 +00:00
|
|
|
#include "Pools.h"
|
|
|
|
|
|
|
|
CCPtrNodePool *&CPools::ms_pPtrNodePool = *(CCPtrNodePool**)0x943044;
|
|
|
|
CEntryInfoNodePool *&CPools::ms_pEntryInfoNodePool = *(CEntryInfoNodePool**)0x941448;
|
2019-06-02 15:13:56 +00:00
|
|
|
CPedPool *&CPools::ms_pPedPool = *(CPedPool**)0x8F2C60;
|
|
|
|
CVehiclePool *&CPools::ms_pVehiclePool = *(CVehiclePool**)0x9430DC;
|
2019-05-15 14:52:37 +00:00
|
|
|
CBuildingPool *&CPools::ms_pBuildingPool = *(CBuildingPool**)0x8F2C04;
|
|
|
|
CTreadablePool *&CPools::ms_pTreadablePool = *(CTreadablePool**)0x8F2568;
|
|
|
|
CObjectPool *&CPools::ms_pObjectPool = *(CObjectPool**)0x880E28;
|
2019-06-02 15:13:56 +00:00
|
|
|
CDummyPool *&CPools::ms_pDummyPool = *(CDummyPool**)0x8F2C18;
|
2019-07-20 15:00:57 +00:00
|
|
|
CAudioScriptObjectPool *&CPools::ms_pAudioScriptObjectPool = *(CAudioScriptObjectPool**)0x8F1B6C;
|
2019-05-15 14:52:37 +00:00
|
|
|
|
2019-08-15 14:51:39 +00:00
|
|
|
WRAPPER void CPools::Initialise(void) { EAXJMP(0x4A1770); }
|
2019-10-03 19:28:56 +00:00
|
|
|
WRAPPER void CPools::MakeSureSlotInObjectPoolIsEmpty(int32 handle) { EAXJMP(0x4A2DB0); }
|
2019-08-15 14:51:39 +00:00
|
|
|
|
|
|
|
#if 0
|
2019-05-15 14:52:37 +00:00
|
|
|
void
|
|
|
|
CPools::Initialise(void)
|
|
|
|
{
|
|
|
|
// TODO: unused right now
|
2019-07-12 16:01:22 +00:00
|
|
|
assert(0);
|
2019-05-15 14:52:37 +00:00
|
|
|
ms_pPtrNodePool = new CCPtrNodePool(NUMPTRNODES);
|
|
|
|
ms_pEntryInfoNodePool = new CEntryInfoNodePool(NUMENTRYINFOS);
|
2019-06-02 15:13:56 +00:00
|
|
|
ms_pPedPool = new CPedPool(NUMPEDS);
|
|
|
|
ms_pVehiclePool = new CVehiclePool(NUMVEHICLES);
|
2019-05-15 14:52:37 +00:00
|
|
|
ms_pBuildingPool = new CBuildingPool(NUMBUILDINGS);
|
|
|
|
ms_pTreadablePool = new CTreadablePool(NUMTREADABLES);
|
|
|
|
ms_pObjectPool = new CObjectPool(NUMOBJECTS);
|
2019-06-02 15:13:56 +00:00
|
|
|
ms_pDummyPool = new CDummyPool(NUMDUMMIES);
|
2019-07-20 15:00:57 +00:00
|
|
|
ms_pAudioScriptObjectPool = new CAudioScriptObjectPool(NUMAUDIOSCRIPTOBJECTS);
|
2019-05-15 14:52:37 +00:00
|
|
|
}
|
2019-08-15 14:51:39 +00:00
|
|
|
#endif
|
2019-07-12 16:01:22 +00:00
|
|
|
|
|
|
|
int32 CPools::GetPedRef(CPed *ped) { return ms_pPedPool->GetIndex(ped); }
|
|
|
|
CPed *CPools::GetPed(int32 handle) { return ms_pPedPool->GetAt(handle); }
|
|
|
|
int32 CPools::GetVehicleRef(CVehicle *vehicle) { return ms_pVehiclePool->GetIndex(vehicle); }
|
|
|
|
CVehicle *CPools::GetVehicle(int32 handle) { return ms_pVehiclePool->GetAt(handle); }
|
|
|
|
int32 CPools::GetObjectRef(CObject *object) { return ms_pObjectPool->GetIndex(object); }
|
|
|
|
CObject *CPools::GetObject(int32 handle) { return ms_pObjectPool->GetAt(handle); }
|