mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
102 lines
3.7 KiB
Plaintext
102 lines
3.7 KiB
Plaintext
GLOBAL_LIST_EMPTY(monkey_recyclers)
|
|
|
|
/obj/machinery/monkey_recycler
|
|
name = "monkey recycler"
|
|
desc = "A machine used for recycling dead monkeys into monkey cubes."
|
|
icon = 'icons/obj/kitchen.dmi'
|
|
icon_state = "grinder"
|
|
layer = BELOW_OBJ_LAYER
|
|
density = TRUE
|
|
use_power = IDLE_POWER_USE
|
|
idle_power_usage = 5
|
|
active_power_usage = 50
|
|
circuit = /obj/item/circuitboard/machine/monkey_recycler
|
|
var/stored_matter = 0
|
|
var/cube_production = 0.2
|
|
var/list/connected = list() //Keeps track of connected xenobio consoles, for deletion in /Destroy()
|
|
|
|
/obj/machinery/monkey_recycler/Initialize(mapload)
|
|
. = ..()
|
|
if (mapload)
|
|
GLOB.monkey_recyclers += src
|
|
|
|
/obj/machinery/monkey_recycler/Destroy()
|
|
if(src in GLOB.monkey_recyclers)
|
|
GLOB.monkey_recyclers -= src
|
|
for(var/obj/machinery/computer/camera_advanced/xenobio/console in connected)
|
|
console.connected_recycler = null
|
|
return ..()
|
|
|
|
/obj/machinery/monkey_recycler/RefreshParts() //Ranges from 0.2 to 0.8 per monkey recycled
|
|
cube_production = 0
|
|
for(var/obj/item/stock_parts/manipulator/B in component_parts)
|
|
cube_production += B.rating * 0.1
|
|
for(var/obj/item/stock_parts/matter_bin/M in component_parts)
|
|
cube_production += M.rating * 0.1
|
|
|
|
/obj/machinery/monkey_recycler/examine(mob/user)
|
|
. = ..()
|
|
if(in_range(user, src) || isobserver(user))
|
|
. += "<span class='notice'>The status display reads: Producing <b>[cube_production]</b> cubes for every monkey inserted.<span>"
|
|
|
|
/obj/machinery/monkey_recycler/attackby(obj/item/O, mob/user, params)
|
|
if(default_deconstruction_screwdriver(user, "grinder_open", "grinder", O))
|
|
return
|
|
|
|
if(default_pry_open(O))
|
|
return
|
|
|
|
if(default_unfasten_wrench(user, O))
|
|
power_change()
|
|
return
|
|
|
|
if(default_deconstruction_crowbar(O))
|
|
return
|
|
|
|
if(stat) //NOPOWER etc
|
|
return
|
|
else
|
|
return ..()
|
|
|
|
/obj/machinery/monkey_recycler/MouseDrop_T(mob/living/target, mob/living/user)
|
|
if(!istype(target))
|
|
return
|
|
if(ismonkey(target))
|
|
stuff_monkey_in(target, user)
|
|
|
|
/obj/machinery/monkey_recycler/proc/stuff_monkey_in(mob/living/carbon/monkey/target, mob/living/user)
|
|
if(!istype(target))
|
|
return
|
|
if(target.stat == CONSCIOUS)
|
|
to_chat(user, span_warning("The monkey is struggling far too much to put it in the recycler."))
|
|
return
|
|
if(target.buckled || target.has_buckled_mobs())
|
|
to_chat(user, span_warning("The monkey is attached to something."))
|
|
return
|
|
qdel(target)
|
|
to_chat(user, span_notice("You stuff the monkey into the machine."))
|
|
playsound(src.loc, 'sound/machines/juicer.ogg', 50, 1)
|
|
var/offset = prob(50) ? -2 : 2
|
|
animate(src, pixel_x = pixel_x + offset, time = 0.02 SECONDS, loop = 200) //start shaking
|
|
use_power(500)
|
|
stored_matter += cube_production
|
|
addtimer(VARSET_CALLBACK(src, pixel_x, initial(pixel_x)))
|
|
addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(to_chat), user, span_notice("The machine now has [stored_matter] monkey\s worth of material stored.")))
|
|
|
|
/obj/machinery/monkey_recycler/interact(mob/user)
|
|
if(stored_matter >= 1)
|
|
to_chat(user, span_notice("The machine hisses loudly as it condenses the ground monkey meat. After a moment, it dispenses a brand new monkey cube."))
|
|
playsound(src.loc, 'sound/machines/hiss.ogg', 50, 1)
|
|
for(var/i in 1 to FLOOR(stored_matter, 1))
|
|
new /obj/item/reagent_containers/food/snacks/monkeycube(src.loc)
|
|
stored_matter--
|
|
to_chat(user, span_notice("The machine's display flashes that it has [stored_matter] monkeys worth of material left."))
|
|
else
|
|
to_chat(user, span_danger("The machine needs at least 1 monkey worth of material to produce a monkey cube. It currently has [stored_matter]."))
|
|
|
|
/obj/machinery/monkey_recycler/multitool_act(mob/living/user, obj/item/multitool/I)
|
|
if(istype(I))
|
|
to_chat(user, span_notice("You log [src] in the multitool's buffer."))
|
|
I.buffer = src
|
|
return TRUE
|