mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 02:09:41 +00:00
* Makes hacking window consider all hands instead of just the active one. * Makes bottom indicators in hacking window go bold if they changed since the last refresh. * Changelog
76 lines
1.9 KiB
Plaintext
76 lines
1.9 KiB
Plaintext
/datum/wires/autolathe
|
|
|
|
holder_type = /obj/machinery/autolathe
|
|
wire_count = 6
|
|
var/datum/wire_hint/disable_hint
|
|
var/datum/wire_hint/shock_hint
|
|
var/datum/wire_hint/hack_hint
|
|
|
|
var/const/AUTOLATHE_HACK_WIRE = 1
|
|
var/const/AUTOLATHE_SHOCK_WIRE = 2
|
|
var/const/AUTOLATHE_DISABLE_WIRE = 4
|
|
|
|
/datum/wires/autolathe/make_wire_hints()
|
|
disable_hint = new("The red light is off.", "The red light is on.")
|
|
shock_hint = new("The green light is off.", "The green light is on.")
|
|
hack_hint = new("The blue light is off.", "The blue light is on.")
|
|
|
|
/datum/wires/autolathe/Destroy()
|
|
disable_hint = null
|
|
shock_hint = null
|
|
hack_hint = null
|
|
return ..()
|
|
|
|
/datum/wires/autolathe/GetInteractWindow()
|
|
var/obj/machinery/autolathe/A = holder
|
|
. += ..()
|
|
. += disable_hint.show(A.disabled)
|
|
. += shock_hint.show(A.shocked)
|
|
. += hack_hint.show(A.hacked)
|
|
|
|
/datum/wires/autolathe/CanUse()
|
|
var/obj/machinery/autolathe/A = holder
|
|
if(A.panel_open)
|
|
return 1
|
|
return 0
|
|
|
|
/datum/wires/autolathe/proc/update_autolathe_ui(mob/living/user)
|
|
if(CanUse(user))
|
|
var/obj/machinery/autolathe/A = holder
|
|
A.interact(user)
|
|
|
|
/datum/wires/autolathe/UpdateCut(index, mended)
|
|
var/obj/machinery/autolathe/A = holder
|
|
switch(index)
|
|
if(AUTOLATHE_HACK_WIRE)
|
|
A.hacked = !mended
|
|
if(AUTOLATHE_SHOCK_WIRE)
|
|
A.shocked = !mended
|
|
if(AUTOLATHE_DISABLE_WIRE)
|
|
A.disabled = !mended
|
|
update_autolathe_ui(usr)
|
|
|
|
/datum/wires/autolathe/UpdatePulsed(index)
|
|
if(IsIndexCut(index))
|
|
return
|
|
var/obj/machinery/autolathe/A = holder
|
|
switch(index)
|
|
if(AUTOLATHE_HACK_WIRE)
|
|
A.hacked = !A.hacked
|
|
spawn(50)
|
|
if(A && !IsIndexCut(index))
|
|
A.hacked = 0
|
|
update_autolathe_ui(usr)
|
|
if(AUTOLATHE_SHOCK_WIRE)
|
|
A.shocked = !A.shocked
|
|
spawn(50)
|
|
if(A && !IsIndexCut(index))
|
|
A.shocked = 0
|
|
if(AUTOLATHE_DISABLE_WIRE)
|
|
A.disabled = !A.disabled
|
|
spawn(50)
|
|
if(A && !IsIndexCut(index))
|
|
A.disabled = 0
|
|
update_autolathe_ui(usr)
|
|
update_autolathe_ui(usr)
|