re3/src/control/TrafficLights.h

28 lines
557 B
C
Raw Permalink Normal View History

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