mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-19 14:51:27 +00:00
* initial edits * more cleanup, yipee * moving shit around * dme fixes * fixes file ticking issue * more dme fixes + duplicate files??? * Apply suggestions from code review Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> * glass floor fixes * Apply suggestions from code review Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> * requested reviews * the most painful bugfix of my life * forgot to remove some debug stuff * fixed issues with excess power * fuck powernets (fix) * Update code/modules/power/powernets/README.md Co-authored-by: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com> --------- Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Co-authored-by: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com>
37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
GLOBAL_DATUM_INIT(apc_repository, /datum/repository/apc, new())
|
|
|
|
/datum/repository/apc/proc/apc_data(datum/regional_powernet/powernet)
|
|
var/apcData[0]
|
|
|
|
var/datum/cache_entry/cache_entry = cache_data
|
|
if(!cache_entry)
|
|
cache_entry = new/datum/cache_entry
|
|
cache_data = cache_entry
|
|
|
|
if(world.time < cache_entry.timestamp)
|
|
return cache_entry.data
|
|
|
|
if(powernet)
|
|
var/list/L = list()
|
|
for(var/obj/machinery/power/terminal/term in powernet.nodes)
|
|
if(istype(term.master, /obj/machinery/power/apc))
|
|
var/obj/machinery/power/apc/A = term.master
|
|
L += A
|
|
|
|
var/list/Status = list("Off","AOff","On","AOn") // Status: off, auto-off, on, auto-on
|
|
var/list/chg = list("N","C","F") // Charging: no, charging, full
|
|
for(var/obj/machinery/power/apc/A in L)
|
|
apcData[++apcData.len] = list(
|
|
"Name" = html_encode(A.apc_area.name),
|
|
"Equipment" = Status[A.equipment_channel + 1],
|
|
"Lights" = Status[A.lighting_channel + 1],
|
|
"Environment" = Status[A.environment_channel + 1],
|
|
"CellPct" = A.cell ? round(A.cell.percent(), 1) : 0,
|
|
"CellStatus" = A.cell ? chg[A.charging + 1] : "M",
|
|
"Load" = round(A.last_used_total, 1)
|
|
)
|
|
|
|
cache_entry.timestamp = world.time + 5 SECONDS
|
|
cache_entry.data = apcData
|
|
return apcData
|