re3-mirror/src/control/TrafficLights.h

28 lines
557 B
C
Raw Normal View History

2019-06-30 20:06:55 +01:00
#pragma once
class CEntity;
2019-08-11 18:11:54 +01:00
class CVehicle;
2019-06-30 20:06:55 +01:00
2019-08-08 01:21:38 +01:00
enum {
PED_LIGHTS_WALK,
PED_LIGHTS_WALK_BLINK,
PED_LIGHTS_DONT_WALK,
2020-04-10 17:36:39 +01:00
CAR_LIGHTS_GREEN = 0,
CAR_LIGHTS_YELLOW,
CAR_LIGHTS_RED
2019-08-08 01:21:38 +01:00
};
2019-06-30 20:06:55 +01:00
class CTrafficLights
{
public:
static void DisplayActualLight(CEntity *ent);
2019-10-18 23:23:40 +01:00
static void ScanForLightsOnMap(void);
2020-04-10 17:36:39 +01:00
static int FindTrafficLightType(CEntity *light);
2019-08-08 01:21:38 +01:00
static uint8 LightForPeds(void);
2020-04-10 17:36:39 +01:00
static uint8 LightForCars1(void);
static uint8 LightForCars2(void);
2019-08-11 18:11:54 +01:00
static bool ShouldCarStopForLight(CVehicle*, bool);
static bool ShouldCarStopForBridge(CVehicle*);
2019-06-30 20:06:55 +01:00
};