mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-13 18:33:22 +00:00
* Replace Maint. Drone machinery whitelist with last touched check & other tweaks * AAAAAAAA * Update wires.dm * AQ Co-authored-by: Jonathan Rubenstein <jrubcop@gmail.com> Co-authored-by: Gandalf <jzo123@hotmail.com>
60 lines
1.7 KiB
Plaintext
60 lines
1.7 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)
|
|
if(!..())
|
|
return FALSE
|
|
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), 2 MINUTES)
|
|
if(WIRE_IDSCAN) // Unlock for a little while.
|
|
A.locked = FALSE
|
|
addtimer(CALLBACK(A, /obj/machinery/power/apc.proc/reset, wire), 30 SECONDS)
|
|
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), 1 SECONDS)
|
|
|
|
/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
|
|
else
|
|
A.shorted = TRUE
|
|
A.shock(usr, 50)
|
|
if(WIRE_AI) // Disable AI control.
|
|
A.aidisabled = !mend
|
|
|
|
/datum/wires/apc/can_reveal_wires(mob/user)
|
|
if(HAS_TRAIT(user, TRAIT_KNOW_ENGI_WIRES))
|
|
return TRUE
|
|
|
|
return ..()
|