Update SSOverlays (ported from Baystation) (#19051)

Our SSOverlays system is outdated, and is likely the cause of many of
the issues seen in #18895. It has also been linked to a massive server
performance decrease.

This brings an updated system from Baystation, hopefully with speed
increases.

Should be testmerged, ideally with #18895.

---------

Co-authored-by: Cody Brittain <cbrittain10@live.com>
This commit is contained in:
Cody Brittain
2024-05-01 07:46:27 +00:00
committed by GitHub
co-authored by Cody Brittain
parent 405a05b819
commit 9983fca311
350 changed files with 1626 additions and 1498 deletions
@@ -78,18 +78,18 @@
/obj/machinery/atmospherics/binary/circulator/update_icon()
icon_state = anchored ? "circ-assembled" : "circ-unassembled"
cut_overlays()
ClearOverlays()
if (stat & (BROKEN|NOPOWER) || !anchored)
return TRUE
if (last_pressure_delta > 0 && recent_moles_transferred > 0)
if (temperature_overlay)
add_overlay(temperature_overlay)
AddOverlays(temperature_overlay)
if (last_pressure_delta > 5*ONE_ATMOSPHERE)
add_overlay("circ-run")
AddOverlays("circ-run")
else
add_overlay("circ-slow")
AddOverlays("circ-slow")
else
add_overlay("circ-off")
AddOverlays("circ-off")
return TRUE