re3/src/control/Bridge.h

29 lines
659 B
C
Raw Normal View History

2019-06-30 19:06:55 +00:00
#pragma once
2020-03-28 14:47:52 +00:00
class CEntity;
2019-06-30 19:06:55 +00:00
2019-08-02 15:43:40 +00:00
enum bridgeStates {
STATE_BRIDGE_LOCKED,
STATE_LIFT_PART_IS_UP,
STATE_LIFT_PART_MOVING_DOWN,
STATE_LIFT_PART_IS_DOWN,
STATE_LIFT_PART_ABOUT_TO_MOVE_UP,
STATE_LIFT_PART_MOVING_UP
};
2019-06-30 19:06:55 +00:00
class CBridge
{
2019-08-02 15:43:40 +00:00
public:
2019-07-04 11:04:34 +00:00
static CEntity *&pLiftRoad, *&pLiftPart, *&pWeight;
static int &State, &OldState;
static float &DefaultZLiftPart, &DefaultZLiftRoad, &DefaultZLiftWeight;
2019-08-02 15:43:40 +00:00
static float &OldLift;
static uint32 &TimeOfBridgeBecomingOperational;
2019-07-04 11:04:34 +00:00
static void Init();
static void Update();
static bool ShouldLightsBeFlashing();
static void FindBridgeEntities();
static bool ThisIsABridgeObjectMovingUp(int);
2019-06-30 19:06:55 +00:00
};