diff options
author | eray orçunus <erayorcunus@gmail.com> | 2019-08-08 03:21:38 +0300 |
---|---|---|
committer | eray orçunus <erayorcunus@gmail.com> | 2019-08-08 14:46:49 +0300 |
commit | 2ba54983a2d6df7a644ca79a1441578c245e0cd8 (patch) | |
tree | 3e8f39f1344ec95e28fba993c3bad6fd4fe0c103 /src/control/TrafficLights.cpp | |
parent | 1fa2fe566c83412a93ea19531437c4868ec0c091 (diff) |
Peds
Diffstat (limited to 'src/control/TrafficLights.cpp')
-rw-r--r-- | src/control/TrafficLights.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/control/TrafficLights.cpp b/src/control/TrafficLights.cpp index 73ff6118..f1532ab5 100644 --- a/src/control/TrafficLights.cpp +++ b/src/control/TrafficLights.cpp @@ -1,5 +1,19 @@ #include "common.h" #include "patcher.h" #include "TrafficLights.h" +#include "Timer.h" WRAPPER void CTrafficLights::DisplayActualLight(CEntity *ent) { EAXJMP(0x455800); } + +uint8 +CTrafficLights::LightForPeds(void) +{ + uint32 period = CTimer::GetTimeInMilliseconds() & 0x3FFF; // Equals to % 16384 + + if (period >= 15384) + return PED_LIGHTS_WALK_BLINK; + else if (period >= 12000) + return PED_LIGHTS_WALK; + else + return PED_LIGHTS_DONT_WALK; +}
\ No newline at end of file |