mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-31 04:31:41 +00:00
179 lines
4.6 KiB
Plaintext
179 lines
4.6 KiB
Plaintext
/obj/machinery/computer
|
|
name = "computer"
|
|
icon = 'icons/obj/computer.dmi'
|
|
icon_state = "computer"
|
|
density = 1
|
|
anchored = 1.0
|
|
use_power = IDLE_POWER_USE
|
|
idle_power_usage = 300
|
|
active_power_usage = 300
|
|
max_integrity = 200
|
|
integrity_failure = 100
|
|
armor = list(MELEE = 0, BULLET = 0, LASER = 0, ENERGY = 0, BOMB = 0, BIO = 0, RAD = 0, FIRE = 40, ACID = 20)
|
|
var/obj/item/circuitboard/circuit = null //if circuit==null, computer can't disassembly
|
|
var/processing = 0
|
|
var/icon_keyboard = "generic_key"
|
|
var/icon_screen = "generic"
|
|
var/light_range_on = 2
|
|
var/light_power_on = 1
|
|
var/overlay_layer
|
|
/// Are we in the middle of a flicker event?
|
|
var/flickering = FALSE
|
|
/// Are we forcing the icon to be represented in a no-power state?
|
|
var/force_no_power_icon_state = FALSE
|
|
|
|
/obj/machinery/computer/New()
|
|
overlay_layer = layer
|
|
..()
|
|
|
|
/obj/machinery/computer/Initialize()
|
|
..()
|
|
power_change()
|
|
update_icon()
|
|
|
|
/obj/machinery/computer/process()
|
|
if(stat & (NOPOWER|BROKEN))
|
|
return FALSE
|
|
return TRUE
|
|
|
|
/obj/machinery/computer/extinguish_light()
|
|
set_light(0)
|
|
visible_message("<span class='danger'>[src] grows dim, its screen barely readable.</span>")
|
|
|
|
/*
|
|
* Reimp, flash the screen on and off repeatedly.
|
|
*/
|
|
/obj/machinery/computer/flicker()
|
|
if(flickering)
|
|
return FALSE
|
|
|
|
if(stat & (BROKEN|NOPOWER))
|
|
return FALSE
|
|
|
|
flickering = TRUE
|
|
INVOKE_ASYNC(src, /obj/machinery/computer/.proc/flicker_event)
|
|
|
|
return TRUE
|
|
|
|
/*
|
|
* Proc to be called by invoke_async in the above flicker() proc.
|
|
*/
|
|
/obj/machinery/computer/proc/flicker_event()
|
|
var/amount = rand(5, 15)
|
|
|
|
for(var/i in 1 to amount)
|
|
force_no_power_icon_state = TRUE
|
|
update_icon()
|
|
sleep(rand(1, 3))
|
|
|
|
force_no_power_icon_state = FALSE
|
|
update_icon()
|
|
sleep(rand(1, 10))
|
|
update_icon()
|
|
flickering = FALSE
|
|
|
|
/obj/machinery/computer/update_icon()
|
|
overlays.Cut()
|
|
if((stat & NOPOWER) || force_no_power_icon_state)
|
|
if(icon_keyboard)
|
|
overlays += image(icon,"[icon_keyboard]_off",overlay_layer)
|
|
return
|
|
|
|
if(stat & BROKEN)
|
|
overlays += image(icon,"[icon_state]_broken",overlay_layer)
|
|
else
|
|
overlays += image(icon,icon_screen,overlay_layer)
|
|
|
|
if(icon_keyboard)
|
|
overlays += image(icon, icon_keyboard ,overlay_layer)
|
|
|
|
|
|
/obj/machinery/computer/power_change()
|
|
..()
|
|
update_icon()
|
|
if((stat & (BROKEN|NOPOWER)))
|
|
set_light(0)
|
|
else
|
|
set_light(light_range_on, light_power_on)
|
|
|
|
/obj/machinery/computer/play_attack_sound(damage_amount, damage_type = BRUTE, damage_flag = 0)
|
|
switch(damage_type)
|
|
if(BRUTE)
|
|
if(stat & BROKEN)
|
|
playsound(src.loc, 'sound/effects/hit_on_shattered_glass.ogg', 70, TRUE)
|
|
else
|
|
playsound(src.loc, 'sound/effects/glasshit.ogg', 75, TRUE)
|
|
if(BURN)
|
|
playsound(src.loc, 'sound/items/welder.ogg', 100, TRUE)
|
|
|
|
/obj/machinery/computer/obj_break(damage_flag)
|
|
if(circuit && !(flags & NODECONSTRUCT)) //no circuit, no breaking
|
|
if(!(stat & BROKEN))
|
|
playsound(loc, 'sound/effects/glassbr3.ogg', 100, TRUE)
|
|
stat |= BROKEN
|
|
update_icon()
|
|
set_light(0)
|
|
|
|
/obj/machinery/computer/emp_act(severity)
|
|
..()
|
|
switch(severity)
|
|
if(1)
|
|
if(prob(50))
|
|
obj_break(ENERGY)
|
|
if(2)
|
|
if(prob(10))
|
|
obj_break(ENERGY)
|
|
|
|
/obj/machinery/computer/deconstruct(disassembled = TRUE, mob/user)
|
|
on_deconstruction()
|
|
if(!(flags & NODECONSTRUCT))
|
|
if(circuit) //no circuit, no computer frame
|
|
var/obj/structure/computerframe/A = new /obj/structure/computerframe(loc)
|
|
var/obj/item/circuitboard/M = new circuit(A)
|
|
A.name += " ([M.board_name])"
|
|
A.setDir(dir)
|
|
A.circuit = M
|
|
A.anchored = TRUE
|
|
if(stat & BROKEN)
|
|
if(user)
|
|
to_chat(user, "<span class='notice'>The broken glass falls out.</span>")
|
|
else
|
|
playsound(src, 'sound/effects/hit_on_shattered_glass.ogg', 70, TRUE)
|
|
new /obj/item/shard(drop_location())
|
|
new /obj/item/shard(drop_location())
|
|
A.state = 4
|
|
else
|
|
if(user)
|
|
to_chat(user, "<span class='notice'>You disconnect the monitor.</span>")
|
|
A.state = 5
|
|
A.update_icon()
|
|
for(var/obj/C in src)
|
|
C.forceMove(loc)
|
|
qdel(src)
|
|
|
|
/obj/machinery/computer/proc/set_broken()
|
|
if(!(resistance_flags & INDESTRUCTIBLE))
|
|
stat |= BROKEN
|
|
update_icon()
|
|
|
|
/obj/machinery/computer/proc/decode(text)
|
|
// Adds line breaks
|
|
text = replacetext(text, "\n", "<BR>")
|
|
return text
|
|
|
|
/obj/machinery/computer/attack_ghost(mob/user)
|
|
return attack_hand(user)
|
|
|
|
/obj/machinery/computer/attack_hand(mob/user)
|
|
/* Observers can view computers, but not actually use them via Topic*/
|
|
if(istype(user, /mob/dead/observer)) return 0
|
|
return ..()
|
|
|
|
/obj/machinery/computer/screwdriver_act(mob/user, obj/item/I)
|
|
. = TRUE
|
|
if(!I.tool_start_check(src, user, 0))
|
|
return
|
|
if(circuit && !(flags & NODECONSTRUCT))
|
|
if(I.use_tool(src, user, 20, volume = I.tool_volume))
|
|
deconstruct(TRUE, user)
|