mirror of
https://github.com/GTAmodding/re3.git
synced 2021-02-19 17:49:54 +01:00
fix garages
This commit is contained in:
parent
4b566c26a3
commit
ca6ed7f00f
@ -1461,7 +1461,7 @@ static bool DoINeedToRefreshPointer(CEntity * pDoor, bool bIsDummy, int8 nIndex)
|
|||||||
if (bIsDummy) {
|
if (bIsDummy) {
|
||||||
if (CPools::GetDummyPool()->IsFreeSlot(CPools::GetDummyPool()->GetJustIndex((CDummy*)pDoor)))
|
if (CPools::GetDummyPool()->IsFreeSlot(CPools::GetDummyPool()->GetJustIndex((CDummy*)pDoor)))
|
||||||
return true;
|
return true;
|
||||||
if (nIndex != CPools::GetDummyPool()->GetIndex((CDummy*)pDoor))
|
if (nIndex != (CPools::GetDummyPool()->GetIndex((CDummy*)pDoor) & 0x7F))
|
||||||
bNeedToFindDoorEntities = true;
|
bNeedToFindDoorEntities = true;
|
||||||
if (!CGarages::IsModelIndexADoor(pDoor->GetModelIndex()))
|
if (!CGarages::IsModelIndexADoor(pDoor->GetModelIndex()))
|
||||||
return true;
|
return true;
|
||||||
@ -1469,7 +1469,7 @@ static bool DoINeedToRefreshPointer(CEntity * pDoor, bool bIsDummy, int8 nIndex)
|
|||||||
else {
|
else {
|
||||||
if (CPools::GetObjectPool()->IsFreeSlot(CPools::GetObjectPool()->GetJustIndex((CObject*)pDoor)))
|
if (CPools::GetObjectPool()->IsFreeSlot(CPools::GetObjectPool()->GetJustIndex((CObject*)pDoor)))
|
||||||
return true;
|
return true;
|
||||||
if (nIndex != CPools::GetObjectPool()->GetIndex((CObject*)pDoor))
|
if (nIndex != (CPools::GetObjectPool()->GetIndex((CObject*)pDoor) & 0x7F))
|
||||||
bNeedToFindDoorEntities = true;
|
bNeedToFindDoorEntities = true;
|
||||||
if (!CGarages::IsModelIndexADoor(pDoor->GetModelIndex()))
|
if (!CGarages::IsModelIndexADoor(pDoor->GetModelIndex()))
|
||||||
return true;
|
return true;
|
||||||
@ -1672,10 +1672,7 @@ void CGarage::FindDoorsEntities()
|
|||||||
FindDoorsEntitiesSectorList(s->m_lists[ENTITYLIST_DUMMIES_OVERLAP], true);
|
FindDoorsEntitiesSectorList(s->m_lists[ENTITYLIST_DUMMIES_OVERLAP], true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!m_pDoor1 || !m_pDoor2)
|
if (m_pDoor1 && m_pDoor2) {
|
||||||
return;
|
|
||||||
if (m_pDoor1->GetModelIndex() == MI_CRUSHERBODY || m_pDoor1->GetModelIndex() == MI_CRUSHERLID)
|
|
||||||
return;
|
|
||||||
CVector2D vecDoor1ToGarage(m_pDoor1->GetPosition().x - GetGarageCenterX(), m_pDoor1->GetPosition().y - GetGarageCenterY());
|
CVector2D vecDoor1ToGarage(m_pDoor1->GetPosition().x - GetGarageCenterX(), m_pDoor1->GetPosition().y - GetGarageCenterY());
|
||||||
CVector2D vecDoor2ToGarage(m_pDoor2->GetPosition().x - GetGarageCenterX(), m_pDoor2->GetPosition().y - GetGarageCenterY());
|
CVector2D vecDoor2ToGarage(m_pDoor2->GetPosition().x - GetGarageCenterX(), m_pDoor2->GetPosition().y - GetGarageCenterY());
|
||||||
if (DotProduct2D(vecDoor1ToGarage, vecDoor2ToGarage) > 0.0f) {
|
if (DotProduct2D(vecDoor1ToGarage, vecDoor2ToGarage) > 0.0f) {
|
||||||
@ -1686,6 +1683,11 @@ void CGarage::FindDoorsEntities()
|
|||||||
m_pDoor2 = nil;
|
m_pDoor2 = nil;
|
||||||
m_bDoor2IsDummy = false;
|
m_bDoor2IsDummy = false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
if (m_pDoor1)
|
||||||
|
m_pDoor1->bUsesCollision = true;
|
||||||
|
if (m_pDoor2)
|
||||||
|
m_pDoor2->bUsesCollision = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void CGarage::FindDoorsEntitiesSectorList(CPtrList& list, bool dummy)
|
void CGarage::FindDoorsEntitiesSectorList(CPtrList& list, bool dummy)
|
||||||
@ -1734,7 +1736,7 @@ void CGarages::SetGarageDoorToRotate(int16 garage)
|
|||||||
aGarages[garage].m_bRotatedDoor = true;
|
aGarages[garage].m_bRotatedDoor = true;
|
||||||
aGarages[garage].m_fDoorHeight /= 2.0f;
|
aGarages[garage].m_fDoorHeight /= 2.0f;
|
||||||
aGarages[garage].m_fDoorHeight -= 0.1f;
|
aGarages[garage].m_fDoorHeight -= 0.1f;
|
||||||
aGarages[garage].m_fDoorPos = Max(aGarages[garage].m_fDoorHeight, aGarages[garage].m_fDoorPos);
|
aGarages[garage].m_fDoorPos = Min(aGarages[garage].m_fDoorHeight, aGarages[garage].m_fDoorPos);
|
||||||
aGarages[garage].UpdateDoorsHeight();
|
aGarages[garage].UpdateDoorsHeight();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user