diff options
Diffstat (limited to 'src/entities/Building.cpp')
-rw-r--r-- | src/entities/Building.cpp | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/src/entities/Building.cpp b/src/entities/Building.cpp deleted file mode 100644 index 921055ce..00000000 --- a/src/entities/Building.cpp +++ /dev/null @@ -1,44 +0,0 @@ -#include "common.h" - -#include "Building.h" -#include "Streaming.h" -#include "Pools.h" - -void *CBuilding::operator new(size_t sz) { return CPools::GetBuildingPool()->New(); } -void CBuilding::operator delete(void *p, size_t sz) { CPools::GetBuildingPool()->Delete((CBuilding*)p); } - -void -CBuilding::ReplaceWithNewModel(int32 id) -{ - DeleteRwObject(); - - if (CModelInfo::GetModelInfo(m_modelIndex)->GetNumRefs() == 0) - CStreaming::RemoveModel(m_modelIndex); - m_modelIndex = id; - - if(bIsBIGBuilding) - if(m_level == LEVEL_GENERIC || m_level == CGame::currLevel) - CStreaming::RequestModel(id, STREAMFLAGS_DONT_REMOVE); -} - -bool -IsBuildingPointerValid(CBuilding* pBuilding) -{ - if (!pBuilding) - return false; - if (pBuilding->GetIsATreadable()) { - int index = CPools::GetTreadablePool()->GetJustIndex((CTreadable*)pBuilding); -#ifdef FIX_BUGS - return index >= 0 && index < CPools::GetTreadablePool()->GetSize(); -#else - return index >= 0 && index <= CPools::GetTreadablePool()->GetSize(); -#endif - } else { - int index = CPools::GetBuildingPool()->GetJustIndex(pBuilding); -#ifdef FIX_BUGS - return index >= 0 && index < CPools::GetBuildingPool()->GetSize(); -#else - return index >= 0 && index <= CPools::GetBuildingPool()->GetSize(); -#endif - } -} |