mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-23 09:39:16 +01:00
CWorld fixes
This commit is contained in:
parent
e777f24064
commit
ce7d6848ba
@ -731,11 +731,10 @@ CWorld::FindObjectsInRange(CVector ¢re, float radius, bool ignoreZ, short *n
|
|||||||
void
|
void
|
||||||
CWorld::FindObjectsOfTypeInRangeSectorList(uint32 modelId, CPtrList& list, const CVector& position, float radius, bool bCheck2DOnly, int16* nEntitiesFound, int16 maxEntitiesToFind, CEntity** aEntities)
|
CWorld::FindObjectsOfTypeInRangeSectorList(uint32 modelId, CPtrList& list, const CVector& position, float radius, bool bCheck2DOnly, int16* nEntitiesFound, int16 maxEntitiesToFind, CEntity** aEntities)
|
||||||
{
|
{
|
||||||
CPtrNode* pNode = list.first;
|
for (CPtrNode* pNode = list.first; pNode; pNode = pNode->next) {
|
||||||
while (pNode) {
|
|
||||||
CEntity* pEntity = (CEntity*)pNode->item;
|
CEntity* pEntity = (CEntity*)pNode->item;
|
||||||
if (pEntity->m_scanCode != ms_nCurrentScanCode) {
|
if (pEntity->m_scanCode != GetCurrentScanCode()) {
|
||||||
pEntity->m_scanCode = ms_nCurrentScanCode;
|
pEntity->m_scanCode = GetCurrentScanCode();
|
||||||
float fMagnitude = 0.0f;
|
float fMagnitude = 0.0f;
|
||||||
if (bCheck2DOnly)
|
if (bCheck2DOnly)
|
||||||
fMagnitude = (position - pEntity->GetPosition()).MagnitudeSqr2D();
|
fMagnitude = (position - pEntity->GetPosition()).MagnitudeSqr2D();
|
||||||
@ -747,7 +746,6 @@ CWorld::FindObjectsOfTypeInRangeSectorList(uint32 modelId, CPtrList& list, const
|
|||||||
++*nEntitiesFound;
|
++*nEntitiesFound;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pNode = pNode->next;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1037,11 +1035,10 @@ CWorld::FindObjectsKindaColliding(const CVector& position, float radius, bool bC
|
|||||||
void
|
void
|
||||||
CWorld::FindObjectsKindaCollidingSectorList(CPtrList& list, const CVector& position, float radius, bool bCheck2DOnly, int16* nCollidingEntities, int16 maxEntitiesToFind, CEntity** aEntities)
|
CWorld::FindObjectsKindaCollidingSectorList(CPtrList& list, const CVector& position, float radius, bool bCheck2DOnly, int16* nCollidingEntities, int16 maxEntitiesToFind, CEntity** aEntities)
|
||||||
{
|
{
|
||||||
CPtrNode* pNode = list.first;
|
for (CPtrNode* pNode = list.first; pNode; pNode = pNode->next) {
|
||||||
while (pNode) {
|
|
||||||
CEntity* pEntity = (CEntity*)pNode->item;
|
CEntity* pEntity = (CEntity*)pNode->item;
|
||||||
if (pEntity->m_scanCode != ms_nCurrentScanCode) {
|
if (pEntity->m_scanCode != GetCurrentScanCode()) {
|
||||||
pEntity->m_scanCode = ms_nCurrentScanCode;
|
pEntity->m_scanCode = GetCurrentScanCode();
|
||||||
float fMagnitude = 0.0f;
|
float fMagnitude = 0.0f;
|
||||||
if (bCheck2DOnly)
|
if (bCheck2DOnly)
|
||||||
fMagnitude = (position - pEntity->GetPosition()).Magnitude2D();
|
fMagnitude = (position - pEntity->GetPosition()).Magnitude2D();
|
||||||
@ -1053,7 +1050,6 @@ CWorld::FindObjectsKindaCollidingSectorList(CPtrList& list, const CVector& posit
|
|||||||
++*nCollidingEntities;
|
++*nCollidingEntities;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pNode = pNode->next;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1097,11 +1093,10 @@ CWorld::FindObjectsIntersectingCube(const CVector& vecStartPos, const CVector& v
|
|||||||
void
|
void
|
||||||
CWorld::FindObjectsIntersectingCubeSectorList(CPtrList& list, const CVector& vecStartPos, const CVector& vecEndPos, int16* nIntersecting, int16 maxEntitiesToFind, CEntity** aEntities)
|
CWorld::FindObjectsIntersectingCubeSectorList(CPtrList& list, const CVector& vecStartPos, const CVector& vecEndPos, int16* nIntersecting, int16 maxEntitiesToFind, CEntity** aEntities)
|
||||||
{
|
{
|
||||||
CPtrNode* pNode = list.first;
|
for (CPtrNode* pNode = list.first; pNode; pNode = pNode->next) {
|
||||||
while (pNode) {
|
|
||||||
CEntity* pEntity = (CEntity*)pNode->item;
|
CEntity* pEntity = (CEntity*)pNode->item;
|
||||||
if (pEntity->m_scanCode != CWorld::ms_nCurrentScanCode) {
|
if (pEntity->m_scanCode != GetCurrentScanCode()) {
|
||||||
pEntity->m_scanCode = CWorld::ms_nCurrentScanCode;
|
pEntity->m_scanCode = GetCurrentScanCode();
|
||||||
float fRadius = pEntity->GetBoundRadius();
|
float fRadius = pEntity->GetBoundRadius();
|
||||||
const CVector& entityPos = pEntity->GetPosition();
|
const CVector& entityPos = pEntity->GetPosition();
|
||||||
if (fRadius + entityPos.x >= vecStartPos.x && entityPos.x - fRadius <= vecEndPos.x &&
|
if (fRadius + entityPos.x >= vecStartPos.x && entityPos.x - fRadius <= vecEndPos.x &&
|
||||||
@ -1113,7 +1108,6 @@ CWorld::FindObjectsIntersectingCubeSectorList(CPtrList& list, const CVector& vec
|
|||||||
++*nIntersecting;
|
++*nIntersecting;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pNode = pNode->next;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1156,11 +1150,10 @@ CWorld::FindObjectsIntersectingAngledCollisionBox(const CColBox& boundingBox, co
|
|||||||
void
|
void
|
||||||
CWorld::FindObjectsIntersectingAngledCollisionBoxSectorList(CPtrList& list, const CColBox& boundingBox, const CMatrix& matrix, const CVector& position, int16* nEntitiesFound, int16 maxEntitiesToFind, CEntity** aEntities)
|
CWorld::FindObjectsIntersectingAngledCollisionBoxSectorList(CPtrList& list, const CColBox& boundingBox, const CMatrix& matrix, const CVector& position, int16* nEntitiesFound, int16 maxEntitiesToFind, CEntity** aEntities)
|
||||||
{
|
{
|
||||||
CPtrNode* pNode = list.first;
|
for (CPtrNode* pNode = list.first; pNode; pNode = pNode->next) {
|
||||||
while (pNode) {
|
|
||||||
CEntity* pEntity = (CEntity*)pNode->item;
|
CEntity* pEntity = (CEntity*)pNode->item;
|
||||||
if (pEntity->m_scanCode != CWorld::ms_nCurrentScanCode) {
|
if (pEntity->m_scanCode != GetCurrentScanCode()) {
|
||||||
pEntity->m_scanCode = CWorld::ms_nCurrentScanCode;
|
pEntity->m_scanCode = GetCurrentScanCode();
|
||||||
CColSphere sphere;
|
CColSphere sphere;
|
||||||
CVector vecDistance = pEntity->GetPosition() - position;
|
CVector vecDistance = pEntity->GetPosition() - position;
|
||||||
sphere.radius = pEntity->GetBoundRadius();
|
sphere.radius = pEntity->GetBoundRadius();
|
||||||
@ -1171,7 +1164,6 @@ CWorld::FindObjectsIntersectingAngledCollisionBoxSectorList(CPtrList& list, cons
|
|||||||
++*nEntitiesFound;
|
++*nEntitiesFound;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pNode = pNode->next;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1206,11 +1198,10 @@ CWorld::FindMissionEntitiesIntersectingCube(const CVector& vecStartPos, const CV
|
|||||||
void
|
void
|
||||||
CWorld::FindMissionEntitiesIntersectingCubeSectorList(CPtrList& list, const CVector& vecStartPos, const CVector& vecEndPos, int16* nIntersecting, int16 maxEntitiesToFind, CEntity** aEntities, bool bIsVehicleList, bool bIsPedList)
|
CWorld::FindMissionEntitiesIntersectingCubeSectorList(CPtrList& list, const CVector& vecStartPos, const CVector& vecEndPos, int16* nIntersecting, int16 maxEntitiesToFind, CEntity** aEntities, bool bIsVehicleList, bool bIsPedList)
|
||||||
{
|
{
|
||||||
CPtrNode* pNode = list.first;
|
for (CPtrNode* pNode = list.first; pNode; pNode = pNode->next) {
|
||||||
while (pNode) {
|
|
||||||
CEntity* pEntity = (CEntity*)pNode->item;
|
CEntity* pEntity = (CEntity*)pNode->item;
|
||||||
if (pEntity->m_scanCode != CWorld::ms_nCurrentScanCode) {
|
if (pEntity->m_scanCode != GetCurrentScanCode()) {
|
||||||
pEntity->m_scanCode = CWorld::ms_nCurrentScanCode;
|
pEntity->m_scanCode = GetCurrentScanCode();
|
||||||
bool bIsMissionEntity = false;
|
bool bIsMissionEntity = false;
|
||||||
if (bIsVehicleList)
|
if (bIsVehicleList)
|
||||||
bIsMissionEntity = ((CVehicle*)pEntity)->VehicleCreatedBy == MISSION_VEHICLE;
|
bIsMissionEntity = ((CVehicle*)pEntity)->VehicleCreatedBy == MISSION_VEHICLE;
|
||||||
@ -1230,7 +1221,6 @@ CWorld::FindMissionEntitiesIntersectingCubeSectorList(CPtrList& list, const CVec
|
|||||||
++*nIntersecting;
|
++*nIntersecting;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pNode = pNode->next;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1397,11 +1387,10 @@ CWorld::CallOffChaseForArea(float x1, float y1, float x2, float y2)
|
|||||||
void
|
void
|
||||||
CWorld::CallOffChaseForAreaSectorListVehicles(CPtrList& list, float x1, float y1, float x2, float y2, float fStartX, float fStartY, float fEndX, float fEndY)
|
CWorld::CallOffChaseForAreaSectorListVehicles(CPtrList& list, float x1, float y1, float x2, float y2, float fStartX, float fStartY, float fEndX, float fEndY)
|
||||||
{
|
{
|
||||||
CPtrNode* pNode = list.first;
|
for (CPtrNode* pNode = list.first; pNode; pNode = pNode->next) {
|
||||||
while (pNode) {
|
|
||||||
CVehicle *pVehicle = (CVehicle*)pNode->item;
|
CVehicle *pVehicle = (CVehicle*)pNode->item;
|
||||||
if (pVehicle->m_scanCode != CWorld::ms_nCurrentScanCode) {
|
if (pVehicle->m_scanCode != GetCurrentScanCode()) {
|
||||||
pVehicle->m_scanCode = CWorld::ms_nCurrentScanCode;
|
pVehicle->m_scanCode = GetCurrentScanCode();
|
||||||
const CVector& vehiclePos = pVehicle->GetPosition();
|
const CVector& vehiclePos = pVehicle->GetPosition();
|
||||||
eCarMission carMission = pVehicle->AutoPilot.m_nCarMission;
|
eCarMission carMission = pVehicle->AutoPilot.m_nCarMission;
|
||||||
if (pVehicle != FindPlayerVehicle() &&
|
if (pVehicle != FindPlayerVehicle() &&
|
||||||
@ -1433,20 +1422,18 @@ CWorld::CallOffChaseForAreaSectorListVehicles(CPtrList& list, float x1, float y1
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pNode = pNode->next;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
CWorld::CallOffChaseForAreaSectorListPeds(CPtrList& list, float x1, float y1, float x2, float y2)
|
CWorld::CallOffChaseForAreaSectorListPeds(CPtrList& list, float x1, float y1, float x2, float y2)
|
||||||
{
|
{
|
||||||
CPtrNode* pNode = list.first;
|
for (CPtrNode* pNode = list.first; pNode; pNode = pNode->next) {
|
||||||
while (pNode) {
|
|
||||||
CPed* pPed = (CPed*)pNode->item;
|
CPed* pPed = (CPed*)pNode->item;
|
||||||
const CVector& pedPos = pPed->GetPosition();
|
const CVector& pedPos = pPed->GetPosition();
|
||||||
if (pPed->m_scanCode != CWorld::ms_nCurrentScanCode)
|
if (pPed->m_scanCode != GetCurrentScanCode())
|
||||||
{
|
{
|
||||||
pPed->m_scanCode = CWorld::ms_nCurrentScanCode;
|
pPed->m_scanCode = GetCurrentScanCode();
|
||||||
if (pPed != FindPlayerPed() && pPed->m_leader != FindPlayerPed() &&
|
if (pPed != FindPlayerPed() && pPed->m_leader != FindPlayerPed() &&
|
||||||
pedPos.x > x1 && pedPos.x < x2 &&
|
pedPos.x > x1 && pedPos.x < x2 &&
|
||||||
pedPos.y > y1 && pedPos.y < y2 &&
|
pedPos.y > y1 && pedPos.y < y2 &&
|
||||||
@ -1582,105 +1569,77 @@ CWorld::AddParticles(void)
|
|||||||
void
|
void
|
||||||
CWorld::ShutDown(void)
|
CWorld::ShutDown(void)
|
||||||
{
|
{
|
||||||
for (int32 y = 0; y < NUMSECTORS_Y; y++) {
|
for (int i = 0; i < NUMSECTORS_X * NUMSECTORS_Y; i++) {
|
||||||
for (int32 x = 0; x < NUMSECTORS_X; x++) {
|
CSector *pSector = GetSector(i % NUMSECTORS_X, i / NUMSECTORS_Y);
|
||||||
CSector *pSector = GetSector(x, y);
|
for (CPtrNode *pNode = pSector->m_lists[ENTITYLIST_BUILDINGS].first; pNode; pNode = pNode->next) {
|
||||||
CPtrNode *pNode = pSector->m_lists[ENTITYLIST_BUILDINGS].first;
|
|
||||||
while (pNode) {
|
|
||||||
CEntity* pEntity = (CEntity*)pNode->item;
|
CEntity* pEntity = (CEntity*)pNode->item;
|
||||||
if (pEntity) {
|
|
||||||
CWorld::Remove(pEntity);
|
CWorld::Remove(pEntity);
|
||||||
delete pEntity;
|
delete pEntity;
|
||||||
}
|
}
|
||||||
pNode = pNode->next;
|
for (CPtrNode* pNode = pSector->m_lists[ENTITYLIST_VEHICLES].first; pNode; pNode = pNode->next) {
|
||||||
}
|
|
||||||
pNode = pSector->m_lists[ENTITYLIST_VEHICLES].first;
|
|
||||||
while (pNode) {
|
|
||||||
CEntity* pEntity = (CEntity*)pNode->item;
|
CEntity* pEntity = (CEntity*)pNode->item;
|
||||||
if (pEntity) {
|
|
||||||
CWorld::Remove(pEntity);
|
CWorld::Remove(pEntity);
|
||||||
delete pEntity;
|
delete pEntity;
|
||||||
}
|
}
|
||||||
pNode = pNode->next;
|
for (CPtrNode* pNode = pSector->m_lists[ENTITYLIST_PEDS].first; pNode; pNode = pNode->next) {
|
||||||
}
|
|
||||||
pNode = pSector->m_lists[ENTITYLIST_PEDS].first;
|
|
||||||
while (pNode) {
|
|
||||||
CEntity *pEntity = (CEntity*)pNode->item;
|
CEntity *pEntity = (CEntity*)pNode->item;
|
||||||
if (pEntity) {
|
|
||||||
CWorld::Remove(pEntity);
|
CWorld::Remove(pEntity);
|
||||||
delete pEntity;
|
delete pEntity;
|
||||||
}
|
}
|
||||||
pNode = pNode->next;
|
for (CPtrNode* pNode = pSector->m_lists[ENTITYLIST_OBJECTS].first; pNode; pNode = pNode->next) {
|
||||||
}
|
|
||||||
pNode = pSector->m_lists[ENTITYLIST_OBJECTS].first;
|
|
||||||
while (pNode) {
|
|
||||||
CEntity *pEntity = (CEntity*)pNode->item;
|
CEntity *pEntity = (CEntity*)pNode->item;
|
||||||
if (pEntity) {
|
|
||||||
CWorld::Remove(pEntity);
|
CWorld::Remove(pEntity);
|
||||||
delete pEntity;
|
delete pEntity;
|
||||||
}
|
}
|
||||||
pNode = pNode->next;
|
for (CPtrNode* pNode = pSector->m_lists[ENTITYLIST_DUMMIES].first; pNode; pNode = pNode->next) {
|
||||||
}
|
|
||||||
pNode = pSector->m_lists[ENTITYLIST_DUMMIES].first;
|
|
||||||
while (pNode) {
|
|
||||||
CEntity *pEntity = (CEntity*)pNode->item;
|
CEntity *pEntity = (CEntity*)pNode->item;
|
||||||
if (pEntity) {
|
|
||||||
CWorld::Remove(pEntity);
|
CWorld::Remove(pEntity);
|
||||||
delete pEntity;
|
delete pEntity;
|
||||||
}
|
}
|
||||||
pNode = pNode->next;
|
|
||||||
}
|
|
||||||
pSector->m_lists[ENTITYLIST_BUILDINGS].Flush();
|
pSector->m_lists[ENTITYLIST_BUILDINGS].Flush();
|
||||||
pSector->m_lists[ENTITYLIST_BUILDINGS_OVERLAP].Flush();
|
pSector->m_lists[ENTITYLIST_BUILDINGS_OVERLAP].Flush();
|
||||||
pSector->m_lists[ENTITYLIST_DUMMIES].Flush();
|
pSector->m_lists[ENTITYLIST_DUMMIES].Flush();
|
||||||
pSector->m_lists[ENTITYLIST_DUMMIES_OVERLAP].Flush();
|
pSector->m_lists[ENTITYLIST_DUMMIES_OVERLAP].Flush();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
for (int32 i = 0; i < 4; i ++) {
|
for (int32 i = 0; i < 4; i ++) {
|
||||||
CPtrNode *pNode = GetBigBuildingList((eLevelName)i).first;
|
for (CPtrNode* pNode = GetBigBuildingList((eLevelName)i).first; pNode; pNode = pNode->next) {
|
||||||
while (pNode) {
|
|
||||||
CEntity *pEntity = (CEntity*)pNode->item;
|
CEntity *pEntity = (CEntity*)pNode->item;
|
||||||
if (pEntity) {
|
|
||||||
// Maybe remove from world here?
|
// Maybe remove from world here?
|
||||||
delete pEntity;
|
delete pEntity;
|
||||||
}
|
}
|
||||||
pNode = pNode->next;
|
|
||||||
}
|
|
||||||
GetBigBuildingList((eLevelName)i).Flush();
|
GetBigBuildingList((eLevelName)i).Flush();
|
||||||
}
|
}
|
||||||
for (int32 y = 0; y < NUMSECTORS_Y; y++) {
|
for (int i = 0; i < NUMSECTORS_X * NUMSECTORS_Y; i++) {
|
||||||
for (int32 x = 0; x < NUMSECTORS_X; x++) {
|
CSector *pSector = GetSector(i % NUMSECTORS_X, i / NUMSECTORS_Y);
|
||||||
CSector *pSector = GetSector(x, y);
|
|
||||||
if (pSector->m_lists[ENTITYLIST_BUILDINGS].first) {
|
if (pSector->m_lists[ENTITYLIST_BUILDINGS].first) {
|
||||||
sprintf(gString, "Building list %d,%d not empty\n", x, y);
|
sprintf(gString, "Building list %d,%d not empty\n", i % NUMSECTORS_X, i / NUMSECTORS_Y);
|
||||||
pSector->m_lists[ENTITYLIST_BUILDINGS].Flush();
|
pSector->m_lists[ENTITYLIST_BUILDINGS].Flush();
|
||||||
}
|
}
|
||||||
if (pSector->m_lists[ENTITYLIST_DUMMIES].first) {
|
if (pSector->m_lists[ENTITYLIST_DUMMIES].first) {
|
||||||
sprintf(gString, "Dummy list %d,%d not empty\n", x, y);
|
sprintf(gString, "Dummy list %d,%d not empty\n", i % NUMSECTORS_X, i / NUMSECTORS_Y);
|
||||||
pSector->m_lists[ENTITYLIST_DUMMIES].Flush();
|
pSector->m_lists[ENTITYLIST_DUMMIES].Flush();
|
||||||
}
|
}
|
||||||
if (pSector->m_lists[ENTITYLIST_BUILDINGS_OVERLAP].first) {
|
if (pSector->m_lists[ENTITYLIST_BUILDINGS_OVERLAP].first) {
|
||||||
sprintf(gString, "Building overlap list %d,%d not empty\n", x, y);
|
sprintf(gString, "Building overlap list %d,%d not empty\n", i % NUMSECTORS_X, i / NUMSECTORS_Y);
|
||||||
pSector->m_lists[ENTITYLIST_BUILDINGS_OVERLAP].Flush();
|
pSector->m_lists[ENTITYLIST_BUILDINGS_OVERLAP].Flush();
|
||||||
}
|
}
|
||||||
if (pSector->m_lists[ENTITYLIST_VEHICLES_OVERLAP].first) {
|
if (pSector->m_lists[ENTITYLIST_VEHICLES_OVERLAP].first) {
|
||||||
sprintf(gString, "Vehicle overlap list %d,%d not empty\n", x, y);
|
sprintf(gString, "Vehicle overlap list %d,%d not empty\n", i % NUMSECTORS_X, i / NUMSECTORS_Y);
|
||||||
pSector->m_lists[ENTITYLIST_VEHICLES_OVERLAP].Flush();
|
pSector->m_lists[ENTITYLIST_VEHICLES_OVERLAP].Flush();
|
||||||
}
|
}
|
||||||
if (pSector->m_lists[ENTITYLIST_PEDS_OVERLAP].first) {
|
if (pSector->m_lists[ENTITYLIST_PEDS_OVERLAP].first) {
|
||||||
sprintf(gString, "Ped overlap list %d,%d not empty\n", x, y);
|
sprintf(gString, "Ped overlap list %d,%d not empty\n", i % NUMSECTORS_X, i / NUMSECTORS_Y);
|
||||||
pSector->m_lists[ENTITYLIST_PEDS_OVERLAP].Flush();
|
pSector->m_lists[ENTITYLIST_PEDS_OVERLAP].Flush();
|
||||||
}
|
}
|
||||||
if (pSector->m_lists[ENTITYLIST_OBJECTS_OVERLAP].first) {
|
if (pSector->m_lists[ENTITYLIST_OBJECTS_OVERLAP].first) {
|
||||||
sprintf(gString, "Object overlap list %d,%d not empty\n", x, y);
|
sprintf(gString, "Object overlap list %d,%d not empty\n", i % NUMSECTORS_X, i / NUMSECTORS_Y);
|
||||||
pSector->m_lists[ENTITYLIST_OBJECTS_OVERLAP].Flush();
|
pSector->m_lists[ENTITYLIST_OBJECTS_OVERLAP].Flush();
|
||||||
}
|
}
|
||||||
if (pSector->m_lists[ENTITYLIST_DUMMIES_OVERLAP].first) {
|
if (pSector->m_lists[ENTITYLIST_DUMMIES_OVERLAP].first) {
|
||||||
sprintf(gString, "Dummy overlap list %d,%d not empty\n", x, y);
|
sprintf(gString, "Dummy overlap list %d,%d not empty\n", i % NUMSECTORS_X, i / NUMSECTORS_Y);
|
||||||
pSector->m_lists[ENTITYLIST_DUMMIES_OVERLAP].Flush();
|
pSector->m_lists[ENTITYLIST_DUMMIES_OVERLAP].Flush();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
ms_listMovingEntityPtrs.Flush();
|
ms_listMovingEntityPtrs.Flush();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1693,37 +1652,25 @@ CWorld::ClearForRestart(void)
|
|||||||
CObject::DeleteAllTempObjects();
|
CObject::DeleteAllTempObjects();
|
||||||
CObject::DeleteAllMissionObjects();
|
CObject::DeleteAllMissionObjects();
|
||||||
CPopulation::ConvertAllObjectsToDummyObjects();
|
CPopulation::ConvertAllObjectsToDummyObjects();
|
||||||
for (int32 y = 0; y < NUMSECTORS_Y; y++) {
|
for (int i = 0; i < NUMSECTORS_X * NUMSECTORS_Y; i++) {
|
||||||
for (int32 x = 0; x < NUMSECTORS_X; x++) {
|
CSector* pSector = GetSector(i % NUMSECTORS_X, i / NUMSECTORS_Y);
|
||||||
CSector *pSector = GetSector(x, y);
|
for (CPtrNode* pNode = pSector->m_lists[ENTITYLIST_PEDS].first; pNode; pNode = pNode->next) {
|
||||||
CPtrNode *pNode = pSector->m_lists[ENTITYLIST_PEDS].first;
|
|
||||||
while (pNode) {
|
|
||||||
CEntity *pEntity = (CEntity*)pNode->item;
|
CEntity *pEntity = (CEntity*)pNode->item;
|
||||||
if (pEntity) {
|
|
||||||
CWorld::Remove(pEntity);
|
CWorld::Remove(pEntity);
|
||||||
delete pEntity;
|
delete pEntity;
|
||||||
}
|
}
|
||||||
pNode = pNode->next;
|
for (CPtrNode* pNode = GetBigBuildingList(LEVEL_NONE).first; pNode; pNode = pNode->next) {
|
||||||
}
|
|
||||||
pNode = GetBigBuildingList(LEVEL_NONE).first;
|
|
||||||
while (pNode) {
|
|
||||||
CVehicle *pVehicle = (CVehicle*)pNode->item;
|
CVehicle *pVehicle = (CVehicle*)pNode->item;
|
||||||
if (pVehicle && pVehicle->IsVehicle() && pVehicle->IsPlane()) {
|
if (pVehicle && pVehicle->IsVehicle() && pVehicle->IsPlane()) {
|
||||||
CWorld::Remove(pVehicle);
|
CWorld::Remove(pVehicle);
|
||||||
delete pVehicle;
|
delete pVehicle;
|
||||||
}
|
}
|
||||||
pNode = pNode->next;
|
|
||||||
}
|
}
|
||||||
pNode = pSector->m_lists[ENTITYLIST_VEHICLES].first;
|
for (CPtrNode* pNode = pSector->m_lists[ENTITYLIST_VEHICLES].first; pNode; pNode = pNode->next) {
|
||||||
while (pNode) {
|
|
||||||
CEntity* pEntity = (CEntity*)pNode->item;
|
CEntity* pEntity = (CEntity*)pNode->item;
|
||||||
if (pEntity) {
|
|
||||||
CWorld::Remove(pEntity);
|
CWorld::Remove(pEntity);
|
||||||
delete pEntity;
|
delete pEntity;
|
||||||
}
|
}
|
||||||
pNode = pNode->next;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
CPools::CheckPoolsEmpty();
|
CPools::CheckPoolsEmpty();
|
||||||
}
|
}
|
||||||
@ -1833,42 +1780,28 @@ CWorld::SetPedsOnFire(float x, float y, float z, float radius, CEntity* reason)
|
|||||||
void
|
void
|
||||||
CWorld::RemoveStaticObjects()
|
CWorld::RemoveStaticObjects()
|
||||||
{
|
{
|
||||||
for (int32 y = 0; y < NUMSECTORS_Y; y++) {
|
for(int i = 0; i < NUMSECTORS_X * NUMSECTORS_Y; i++) {
|
||||||
for (int32 x = 0; x < NUMSECTORS_X; x++) {
|
CSector *pSector = GetSector(i % NUMSECTORS_X, i / NUMSECTORS_Y);
|
||||||
CSector* pSector = GetSector(x, y);
|
for (CPtrNode* pNode = pSector->m_lists[ENTITYLIST_BUILDINGS].first; pNode; pNode = pNode->next) {
|
||||||
CPtrNode* pNode = pSector->m_lists[ENTITYLIST_BUILDINGS].first;
|
|
||||||
while (pNode) {
|
|
||||||
CEntity* pEntity = (CEntity*)pNode->item;
|
CEntity* pEntity = (CEntity*)pNode->item;
|
||||||
if (pEntity) {
|
|
||||||
CWorld::Remove(pEntity);
|
CWorld::Remove(pEntity);
|
||||||
delete pEntity;
|
delete pEntity;
|
||||||
}
|
}
|
||||||
pNode = pNode->next;
|
for (CPtrNode* pNode = pSector->m_lists[ENTITYLIST_OBJECTS].first; pNode; pNode = pNode->next) {
|
||||||
}
|
|
||||||
pNode = pSector->m_lists[ENTITYLIST_OBJECTS].first;
|
|
||||||
while (pNode) {
|
|
||||||
CEntity* pEntity = (CEntity*)pNode->item;
|
CEntity* pEntity = (CEntity*)pNode->item;
|
||||||
if (pEntity) {
|
|
||||||
CWorld::Remove(pEntity);
|
CWorld::Remove(pEntity);
|
||||||
delete pEntity;
|
delete pEntity;
|
||||||
}
|
}
|
||||||
pNode = pNode->next;
|
for (CPtrNode* pNode = pSector->m_lists[ENTITYLIST_DUMMIES].first; pNode; pNode = pNode->next) {
|
||||||
}
|
|
||||||
pNode = pSector->m_lists[ENTITYLIST_DUMMIES].first;
|
|
||||||
while (pNode) {
|
|
||||||
CEntity* pEntity = (CEntity*)pNode->item;
|
CEntity* pEntity = (CEntity*)pNode->item;
|
||||||
if (pEntity) {
|
|
||||||
CWorld::Remove(pEntity);
|
CWorld::Remove(pEntity);
|
||||||
delete pEntity;
|
delete pEntity;
|
||||||
}
|
}
|
||||||
pNode = pNode->next;
|
|
||||||
}
|
|
||||||
pSector->m_lists[ENTITYLIST_BUILDINGS].Flush();
|
pSector->m_lists[ENTITYLIST_BUILDINGS].Flush();
|
||||||
pSector->m_lists[ENTITYLIST_BUILDINGS_OVERLAP].Flush();
|
pSector->m_lists[ENTITYLIST_BUILDINGS_OVERLAP].Flush();
|
||||||
pSector->m_lists[ENTITYLIST_DUMMIES].Flush();
|
pSector->m_lists[ENTITYLIST_DUMMIES].Flush();
|
||||||
pSector->m_lists[ENTITYLIST_DUMMIES_OVERLAP].Flush();
|
pSector->m_lists[ENTITYLIST_DUMMIES_OVERLAP].Flush();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -2072,18 +2005,17 @@ CWorld::TriggerExplosion(const CVector& position, float fRadius, float fPower, C
|
|||||||
void
|
void
|
||||||
CWorld::TriggerExplosionSectorList(CPtrList& list, const CVector& position, float fRadius, float fPower, CEntity* pCreator, bool bProcessVehicleBombTimer)
|
CWorld::TriggerExplosionSectorList(CPtrList& list, const CVector& position, float fRadius, float fPower, CEntity* pCreator, bool bProcessVehicleBombTimer)
|
||||||
{
|
{
|
||||||
CPtrNode* pNode = list.first;
|
for (CPtrNode* pNode = list.first; pNode; pNode = pNode->next) {
|
||||||
while (pNode) {
|
|
||||||
CPhysical* pEntity = (CPhysical*)pNode->item;
|
CPhysical* pEntity = (CPhysical*)pNode->item;
|
||||||
CVector vecDistance = pEntity->GetPosition() - position;
|
CVector vecDistance = pEntity->GetPosition() - position;
|
||||||
float fMagnitude = vecDistance.Magnitude();
|
float fMagnitude = vecDistance.Magnitude();
|
||||||
if (fRadius > fMagnitude) {
|
if(fRadius > fMagnitude) {
|
||||||
CWeapon::BlowUpExplosiveThings(pEntity);
|
CWeapon::BlowUpExplosiveThings(pEntity);
|
||||||
CPed* pPed = (CPed*)pEntity;
|
CPed *pPed = (CPed *)pEntity;
|
||||||
CObject* pObject = (CObject*)pEntity;
|
CObject *pObject = (CObject *)pEntity;
|
||||||
CVehicle* pVehicle = (CVehicle*)pEntity;
|
CVehicle *pVehicle = (CVehicle *)pEntity;
|
||||||
if (!pEntity->bExplosionProof && (!pEntity->IsPed() || !pPed->bInVehicle)) {
|
if(!pEntity->bExplosionProof && (!pEntity->IsPed() || !pPed->bInVehicle)) {
|
||||||
if (pEntity->bIsStatic) {
|
if(pEntity->bIsStatic) {
|
||||||
if (pEntity->IsObject()) {
|
if (pEntity->IsObject()) {
|
||||||
if (fPower > pObject->m_fUprootLimit || IsFence(pObject->m_modelIndex)) {
|
if (fPower > pObject->m_fUprootLimit || IsFence(pObject->m_modelIndex)) {
|
||||||
if (IsGlass(pObject->m_modelIndex)) {
|
if (IsGlass(pObject->m_modelIndex)) {
|
||||||
@ -2170,7 +2102,6 @@ CWorld::TriggerExplosionSectorList(CPtrList& list, const CVector& position, floa
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pNode = pNode->next;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user