mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-29 16:18:01 +01:00
Tramstation crossing lights actually indicate the danger of crossing (#70132)
Updating signal timing, adding amber on tram travel check
This commit is contained in:
@@ -30,9 +30,9 @@
|
||||
/// Weakref to the tram piece we control
|
||||
var/datum/weakref/tram_ref
|
||||
/// Proximity threshold for amber warning (slow people may be in danger)
|
||||
var/amber_distance_threshold = 40
|
||||
var/amber_distance_threshold = 60
|
||||
/// Proximity threshold for red warning (running people will likely not be able to cross)
|
||||
var/red_distance_threshold = 20
|
||||
var/red_distance_threshold = 35
|
||||
|
||||
/obj/machinery/crossing_signal/Initialize(mapload)
|
||||
. = ..()
|
||||
@@ -140,10 +140,13 @@
|
||||
// Check for stopped state.
|
||||
// Will kill the process since tram starting up will restart process.
|
||||
if(!tram.travelling)
|
||||
// if super close, show red anyway since tram could suddenly start moving
|
||||
// If super close, show red anyway since tram could suddenly start moving. If the tram could be approaching, show amber.
|
||||
if(abs(approach_distance) < red_distance_threshold)
|
||||
set_signal_state(XING_STATE_RED)
|
||||
return PROCESS_KILL
|
||||
if(abs(approach_distance) < amber_distance_threshold)
|
||||
set_signal_state(XING_STATE_AMBER)
|
||||
return PROCESS_KILL
|
||||
set_signal_state(XING_STATE_GREEN)
|
||||
return PROCESS_KILL
|
||||
|
||||
|
||||
Reference in New Issue
Block a user