mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-09 16:09:15 +00:00
Several of the greps were missing the `-P` switch which caused them to fail to match things. The EOL grep also wasn't working right so I replaced it with the one I added to TGMC.
56 lines
1.6 KiB
Plaintext
56 lines
1.6 KiB
Plaintext
/datum/wires/apc
|
|
holder_type = /obj/machinery/power/apc
|
|
proper_name = "APC"
|
|
|
|
/datum/wires/apc/New(atom/holder)
|
|
wires = list(
|
|
WIRE_POWER1, WIRE_POWER2,
|
|
WIRE_IDSCAN, WIRE_AI
|
|
)
|
|
add_duds(6)
|
|
..()
|
|
|
|
/datum/wires/apc/interactable(mob/user)
|
|
var/obj/machinery/power/apc/A = holder
|
|
if(A.panel_open && !A.opened)
|
|
return TRUE
|
|
|
|
/datum/wires/apc/get_status()
|
|
var/obj/machinery/power/apc/A = holder
|
|
var/list/status = list()
|
|
status += "The interface light is [A.locked ? "red" : "green"]."
|
|
status += "The short indicator is [A.shorted ? "lit" : "off"]."
|
|
status += "The AI connection light is [!A.aidisabled ? "on" : "off"]."
|
|
return status
|
|
|
|
/datum/wires/apc/on_pulse(wire)
|
|
var/obj/machinery/power/apc/A = holder
|
|
switch(wire)
|
|
if(WIRE_POWER1, WIRE_POWER2) // Short for a long while.
|
|
if(!A.shorted)
|
|
A.shorted = TRUE
|
|
addtimer(CALLBACK(A, /obj/machinery/power/apc.proc/reset, wire), 1200)
|
|
if(WIRE_IDSCAN) // Unlock for a little while.
|
|
A.locked = FALSE
|
|
addtimer(CALLBACK(A, /obj/machinery/power/apc.proc/reset, wire), 300)
|
|
if(WIRE_AI) // Disable AI control for a very short time.
|
|
if(!A.aidisabled)
|
|
A.aidisabled = TRUE
|
|
addtimer(CALLBACK(A, /obj/machinery/power/apc.proc/reset, wire), 10)
|
|
|
|
/datum/wires/apc/on_cut(index, mend)
|
|
var/obj/machinery/power/apc/A = holder
|
|
switch(index)
|
|
if(WIRE_POWER1, WIRE_POWER2) // Short out.
|
|
if(mend && !is_cut(WIRE_POWER1) && !is_cut(WIRE_POWER2))
|
|
A.shorted = FALSE
|
|
A.shock(usr, 50)
|
|
else
|
|
A.shorted = TRUE
|
|
A.shock(usr, 50)
|
|
if(WIRE_AI) // Disable AI control.
|
|
if(mend)
|
|
A.aidisabled = FALSE
|
|
else
|
|
A.aidisabled = TRUE
|