summaryrefslogtreecommitdiffstats
path: root/src/control/Bridge.cpp
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-05-05 17:32:46 +0200
committerSergeanur <s.anureev@yandex.ua>2020-05-05 17:32:46 +0200
commit1eb817de7713ea95bbbcbd7543ffce61ced8ffec (patch)
treeb0032de7a7452f49df7d03254e1e1c9f25b98f0d /src/control/Bridge.cpp
parentRemove ColStore (diff)
downloadre3-1eb817de7713ea95bbbcbd7543ffce61ced8ffec.tar
re3-1eb817de7713ea95bbbcbd7543ffce61ced8ffec.tar.gz
re3-1eb817de7713ea95bbbcbd7543ffce61ced8ffec.tar.bz2
re3-1eb817de7713ea95bbbcbd7543ffce61ced8ffec.tar.lz
re3-1eb817de7713ea95bbbcbd7543ffce61ced8ffec.tar.xz
re3-1eb817de7713ea95bbbcbd7543ffce61ced8ffec.tar.zst
re3-1eb817de7713ea95bbbcbd7543ffce61ced8ffec.zip
Diffstat (limited to '')
-rw-r--r--src/control/Bridge.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/control/Bridge.cpp b/src/control/Bridge.cpp
index 1e63cf30..e873062b 100644
--- a/src/control/Bridge.cpp
+++ b/src/control/Bridge.cpp
@@ -23,7 +23,6 @@ uint32 CBridge::TimeOfBridgeBecomingOperational;
void CBridge::Init()
{
-#ifdef GTA_BRIDGE
FindBridgeEntities();
OldLift = -1.0f;
if (pLiftPart && pWeight)
@@ -36,12 +35,10 @@ 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;
@@ -116,21 +113,15 @@ 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()
{
-#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;
@@ -147,17 +138,12 @@ 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
}