mirror of
https://github.com/halpz/re3.git
synced 2025-06-28 18:36:24 +00:00
GTA_BRIDGE and GTA_TRAIN defines
This commit is contained in:
@ -23,6 +23,7 @@ uint32 CBridge::TimeOfBridgeBecomingOperational;
|
||||
|
||||
void CBridge::Init()
|
||||
{
|
||||
#ifdef GTA_BRIDGE
|
||||
FindBridgeEntities();
|
||||
OldLift = -1.0f;
|
||||
if (pLiftPart && pWeight)
|
||||
@ -35,10 +36,12 @@ void CBridge::Init()
|
||||
|
||||
ThePaths.SetLinksBridgeLights(-330.0, -230.0, -700.0, -588.0, true);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
void CBridge::Update()
|
||||
{
|
||||
#ifdef GTA_BRIDGE
|
||||
if (!pLiftPart || !pWeight)
|
||||
return;
|
||||
|
||||
@ -113,12 +116,21 @@ void CBridge::Update()
|
||||
ThePaths.SetLinksBridgeLights(-330.0, -230.0, -700.0, -588.0, true);
|
||||
else if (State == STATE_LIFT_PART_IS_DOWN && OldState == STATE_LIFT_PART_MOVING_DOWN)
|
||||
ThePaths.SetLinksBridgeLights(-330.0, -230.0, -700.0, -588.0, false);
|
||||
#endif
|
||||
}
|
||||
|
||||
bool CBridge::ShouldLightsBeFlashing() { return State != STATE_LIFT_PART_IS_DOWN; }
|
||||
bool CBridge::ShouldLightsBeFlashing()
|
||||
{
|
||||
#ifdef GTA_BRIDGE
|
||||
return State != STATE_LIFT_PART_IS_DOWN;
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
||||
void CBridge::FindBridgeEntities()
|
||||
{
|
||||
#ifdef GTA_BRIDGE
|
||||
pWeight = nil;
|
||||
pLiftRoad = nil;
|
||||
pLiftPart = nil;
|
||||
@ -135,12 +147,17 @@ void CBridge::FindBridgeEntities()
|
||||
pWeight = entry;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
bool CBridge::ThisIsABridgeObjectMovingUp(int index)
|
||||
{
|
||||
#ifdef GTA_BRIDGE
|
||||
if (index != MI_BRIDGEROADSEGMENT && index != MI_BRIDGELIFT)
|
||||
return false;
|
||||
|
||||
return State == STATE_LIFT_PART_ABOUT_TO_MOVE_UP || State == STATE_LIFT_PART_MOVING_UP;
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
@ -2740,7 +2740,11 @@ bool CCarCtrl::ThisRoadObjectCouldMove(int16 mi)
|
||||
|
||||
bool CCarCtrl::MapCouldMoveInThisArea(float x, float y)
|
||||
{
|
||||
#ifdef GTA_BRIDGE // actually they forgot that in VC...
|
||||
// bridge moves up and down
|
||||
return x > -342.0f && x < -219.0f &&
|
||||
y > -677.0f && y < -580.0f;
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
@ -1425,7 +1425,7 @@ CPathFind::RemoveBadStartNode(CVector pos, CPathNode **nodes, int16 *n)
|
||||
}
|
||||
}
|
||||
|
||||
//--MIAMI: removed, put behind BRIDGE define
|
||||
#ifdef GTA_BRIDGE
|
||||
void
|
||||
CPathFind::SetLinksBridgeLights(float x1, float x2, float y1, float y2, bool enable)
|
||||
{
|
||||
@ -1437,6 +1437,7 @@ CPathFind::SetLinksBridgeLights(float x1, float x2, float y1, float y2, bool ena
|
||||
m_carPathLinks[i].bBridgeLights = enable;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
//--MIAMI: done
|
||||
void
|
||||
|
@ -273,8 +273,12 @@ CTrafficLights::ShouldCarStopForLight(CVehicle *vehicle, bool alwaysStop)
|
||||
bool
|
||||
CTrafficLights::ShouldCarStopForBridge(CVehicle *vehicle)
|
||||
{
|
||||
#ifdef GTA_BRIDGE
|
||||
return ThePaths.m_carPathLinks[vehicle->AutoPilot.m_nNextPathNodeInfo].bBridgeLights &&
|
||||
!ThePaths.m_carPathLinks[vehicle->AutoPilot.m_nCurrentPathNodeInfo].bBridgeLights;
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
||||
int
|
||||
|
Reference in New Issue
Block a user