Files
+37 21b4095dfd [MDB IGNORE] [IDB IGNORE] Upstream Sync - 04/17/2026 (#5453)
Upstream 04/17/2026

fixes https://github.com/Bubberstation/Bubberstation/issues/5549

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: tgstation-ci[bot] <179393467+tgstation-ci[bot]@users.noreply.github.com>
Co-authored-by: ArcaneMusic <41715314+ArcaneMusic@users.noreply.github.com>
Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com>
Co-authored-by: Rhials <28870487+Rhials@users.noreply.github.com>
Co-authored-by: rageguy505 <54517726+rageguy505@users.noreply.github.com>
Co-authored-by: LemonInTheDark <58055496+LemonInTheDark@users.noreply.github.com>
Co-authored-by: John Willard <53777086+JohnFulpWillard@users.noreply.github.com>
Co-authored-by: Aliceee2ch <160794176+Aliceee2ch@users.noreply.github.com>
Co-authored-by: Time-Green <7501474+Time-Green@users.noreply.github.com>
Co-authored-by: Tsar-Salat <62388554+Tsar-Salat@users.noreply.github.com>
Co-authored-by: SmArtKar <44720187+SmArtKar@users.noreply.github.com>
Co-authored-by: Maxipat <108554989+Maxipat112@users.noreply.github.com>
Co-authored-by: SyncIt21 <110812394+SyncIt21@users.noreply.github.com>
Co-authored-by: deltanedas <39013340+deltanedas@users.noreply.github.com>
Co-authored-by: SimplyLogan <47579821+loganuk@users.noreply.github.com>
Co-authored-by: loganuk <fakeemail123@aol.com>
Co-authored-by: Leland Kemble <70413276+lelandkemble@users.noreply.github.com>
Co-authored-by: FalloutFalcon <86381784+FalloutFalcon@users.noreply.github.com>
Co-authored-by: Roxy <75404941+TealSeer@users.noreply.github.com>
Co-authored-by: Lucy <lucy@absolucy.moe>
Co-authored-by: siliconOpossum <138069572+siliconOpossum@users.noreply.github.com>
Co-authored-by: Isratosh <Isratosh@hotmail.com>
Co-authored-by: TheRyeGuyWhoWillNowDie <70169560+TheRyeGuyWhoWillNowDie@users.noreply.github.com>
Co-authored-by: Neocloudy <88008002+Neocloudy@users.noreply.github.com>
Co-authored-by: Alexander V. <volas@ya.ru>
Co-authored-by: ElGitificador <168473461+ElGitificador@users.noreply.github.com>
Co-authored-by: Twaticus <46540570+Twaticus@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com>
Co-authored-by: Cameron Lennox <killer65311@gmail.com>
Co-authored-by: Tim <timothymtorres@gmail.com>
Co-authored-by: Iamgoofball <iamgoofball@gmail.com>
Co-authored-by: Layzu666 <121319428+Layzu666@users.noreply.github.com>
Co-authored-by: Arturlang <24881678+Arturlang@users.noreply.github.com>
Co-authored-by: _0Steven <42909981+00-Steven@users.noreply.github.com>
Co-authored-by: mrmanlikesbt <99309552+mrmanlikesbt@users.noreply.github.com>
Co-authored-by: Ben10Omintrix <138636438+Ben10Omintrix@users.noreply.github.com>
Co-authored-by: John F. Kennedy <54908920+MacaroniCritter@users.noreply.github.com>
Co-authored-by: Cursor <102828457+theselfish@users.noreply.github.com>
Co-authored-by: Josh <josh.adam.powell@gmail.com>
Co-authored-by: Josh Powell <josh.powell@softwire.com>
Co-authored-by: Yobrocharlie <Charliemiller5617@gmail.com>
Co-authored-by: Hardly3D <66234359+Hardly3D@users.noreply.github.com>
Co-authored-by: shayoki <96078776+shayoki@users.noreply.github.com>
Co-authored-by: LT3 <83487515+lessthnthree@users.noreply.github.com>
2026-05-16 00:56:00 +02:00

324 lines
12 KiB
Plaintext

#define PROCESSOR_SELECT_RECIPE(movable_input) LAZYACCESS(processor_inputs[type], movable_input.type)
/obj/machinery/processor
name = "food processor"
desc = "An industrial grinder used to process meat and other foods. Keep hands clear of intake area while operating."
icon = 'icons/obj/machines/kitchen.dmi'
base_icon_state = "processor"
icon_state = "processor"
layer = BELOW_OBJ_LAYER
density = TRUE
pass_flags = PASSTABLE
circuit = /obj/item/circuitboard/machine/processor
anchored_tabletop_offset = 8
///Is the processor blending items at the moment
var/processing = FALSE
///The speed at which the processor processes items
var/rating_speed = 1
///The amount of items the processor produces, without any food specific multipliers
var/rating_amount = 1
///Lazylist of items to be blended
var/list/processor_contents
/*
* Static, nested list. The first layer contains all food processor types.
* The second layer contains input typepaths (key) and the associated food_processor_process datums (assoc) the processor can access.
* This allows for different types of processor to produce different outputs from same input as long as the recipes require different processors.
*/
var/static/list/processor_inputs
/obj/machinery/processor/Initialize(mapload)
. = ..()
if(processor_inputs)
return
processor_inputs = list()
for(var/datum/food_processor_process/recipe as anything in subtypesof(/datum/food_processor_process))
if(!initial(recipe.input))
continue
recipe = new recipe
var/list/typecache = list()
var/list/bad_types
for(var/bad_type in recipe.blacklist)
LAZYADD(bad_types, typesof(bad_type))
for(var/input_type in typesof(recipe.input) - bad_types)
typecache[input_type] = recipe
for(var/machine_type in typesof(recipe.required_machine))
LAZYADD(processor_inputs[machine_type], typecache)
/obj/machinery/processor/RefreshParts()
. = ..()
for(var/datum/stock_part/matter_bin/matter_bin in component_parts)
rating_amount = matter_bin.tier
for(var/datum/stock_part/servo/servo in component_parts)
rating_speed = servo.tier
/obj/machinery/processor/examine(mob/user)
. = ..()
if(in_range(user, src) || isobserver(user))
. += span_notice("The status display reads: Outputting <b>[rating_amount]</b> item(s) at <b>[rating_speed*100]%</b> speed.")
/obj/machinery/processor/Exited(atom/movable/gone, direction)
..()
LAZYREMOVE(processor_contents, gone)
/*
* Spawns the items based on the passed processor recipes, and transfers materials and reagents
* If the input was a mob, gibs them, otherwise, deletes the item
*/
/obj/machinery/processor/proc/process_food(datum/food_processor_process/recipe, atom/movable/what)
if(recipe.output && loc && !QDELETED(src))
var/list/cached_mats = recipe.preserve_materials && what.custom_materials
var/cached_multiplier = (recipe.food_multiplier * rating_amount)
for(var/i in 1 to cached_multiplier)
var/atom/processed_food = new recipe.output(drop_location())
if(processed_food.reagents && what.reagents)
processed_food.reagents.clear_reagents()
what.reagents.trans_to(processed_food, what.reagents.total_volume, multiplier = 1 / cached_multiplier, copy_only = TRUE)
if(cached_mats)
processed_food.set_custom_materials(cached_mats, 1 / cached_multiplier)
if(isliving(what))
var/mob/living/themob = what
themob.gib()
else
qdel(what)
LAZYREMOVE(processor_contents, what)
/obj/machinery/processor/wrench_act(mob/living/user, obj/item/tool)
if(processing)
to_chat(user, span_warning("[src] is in the process of processing!"))
return ITEM_INTERACT_BLOCKING
default_unfasten_wrench(user, tool)
return ITEM_INTERACT_SUCCESS
/obj/machinery/processor/screwdriver_act(mob/living/user, obj/item/tool)
if(processing)
to_chat(user, span_warning("[src] is in the process of processing!"))
return ITEM_INTERACT_BLOCKING
return default_deconstruction_screwdriver(user, tool)
/obj/machinery/processor/crowbar_act(mob/living/user, obj/item/tool)
if(processing)
to_chat(user, span_warning("[src] is in the process of processing!"))
return ITEM_INTERACT_BLOCKING
return default_pry_open(user, tool, close_after_pry = TRUE, deconstruct_on_fail = TRUE)
/obj/machinery/processor/item_interaction(mob/living/user, obj/item/tool, list/modifiers)
if(user.combat_mode)
return ITEM_INTERACT_SKIP_TO_ATTACK
if(processing)
to_chat(user, span_warning("[src] is in the process of processing!"))
return ITEM_INTERACT_BLOCKING
if(istype(tool, /obj/item/storage/bag/tray))
var/obj/item/storage/attacking_storage = tool
var/loaded = 0
for(var/obj/content_item in attacking_storage.contents)
if(!IS_EDIBLE(content_item))
continue
var/datum/food_processor_process/recipe = PROCESSOR_SELECT_RECIPE(content_item)
if(recipe && attacking_storage.atom_storage.attempt_remove(content_item, src))
LAZYADD(processor_contents, content_item)
loaded++
if(loaded)
to_chat(user, span_notice("You insert [loaded] items into [src]."))
return ITEM_INTERACT_SUCCESS
return ITEM_INTERACT_BLOCKING
var/datum/food_processor_process/recipe = PROCESSOR_SELECT_RECIPE(tool)
if(recipe && user.transferItemToLoc(tool, src))
user.visible_message(
span_notice("[user] put [tool] into [src]."),
span_notice("You put [tool] into [src]."),
)
LAZYADD(processor_contents, tool)
return ITEM_INTERACT_SUCCESS
to_chat(user, span_warning("That probably won't blend!"))
return ITEM_INTERACT_BLOCKING
/obj/machinery/processor/update_icon_state()
. = ..()
icon_state = panel_open ? "[base_icon_state]_open" : base_icon_state
/obj/machinery/processor/interact(mob/user)
if(processing)
to_chat(user, span_warning("[src] is in the process of processing!"))
return TRUE
if(ismob(user.pulling) && PROCESSOR_SELECT_RECIPE(user.pulling))
if(user.grab_state < GRAB_AGGRESSIVE)
to_chat(user, span_warning("You need a better grip to do that!"))
return
var/mob/living/pushed_mob = user.pulling
visible_message(span_warning("[user] stuffs [pushed_mob] into [src]!"))
pushed_mob.forceMove(src)
LAZYADD(processor_contents, pushed_mob)
user.stop_pulling()
return
if(!LAZYLEN(processor_contents))
to_chat(user, span_warning("[src] is empty!"))
return TRUE
user.visible_message(span_notice("[user] turns on [src]."), \
span_notice("You turn on [src]."), \
span_hear("You hear a food processor."))
processing()
/obj/machinery/processor/proc/processing()
processing = TRUE
playsound(src.loc, 'sound/machines/blender.ogg', 50, TRUE)
use_energy(active_power_usage)
var/total_time = 0
for(var/atom/movable/movable_input as anything in processor_contents)
var/datum/food_processor_process/recipe = PROCESSOR_SELECT_RECIPE(movable_input)
if (!recipe)
log_admin("DEBUG: [movable_input] in processor doesn't have a suitable recipe. How did it get in there? Please report it immediately!!!")
continue
total_time += recipe.time
var/duration = (total_time / rating_speed)
INVOKE_ASYNC(src, TYPE_PROC_REF(/atom, Shake), 1, 0, duration)
addtimer(CALLBACK(src, PROC_REF(complete_processing)), duration)
/obj/machinery/processor/proc/complete_processing()
for(var/atom/movable/content_item in processor_contents)
var/datum/food_processor_process/recipe = PROCESSOR_SELECT_RECIPE(content_item)
if (!recipe)
log_admin("DEBUG: [content_item] in processor doesn't have a suitable recipe. How do you put it in?")
continue
process_food(recipe, content_item)
processing = FALSE
visible_message(span_notice("\The [src] finishes processing."))
/obj/machinery/processor/verb/eject()
set name = "Eject Contents"
set src in oview(1)
if(usr.stat != CONSCIOUS || HAS_TRAIT(usr, TRAIT_HANDS_BLOCKED))
return
if(!usr.can_perform_action(src))
return
if(isliving(usr))
var/mob/living/L = usr
if(!(L.mobility_flags & MOBILITY_UI))
return
dump_inventory_contents()
add_fingerprint(usr)
/obj/machinery/processor/container_resist_act(mob/living/user)
user.forceMove(drop_location())
user.visible_message(span_notice("[user] crawls free of the processor!"))
/obj/machinery/processor/slime
name = "slime processor"
base_icon_state = "processor_slime"
icon_state = "processor_slime"
desc = "An industrial grinder with a sticker saying appropriated for science department. Keep hands clear of intake area while operating."
circuit = /obj/item/circuitboard/machine/processor/slime
/obj/machinery/processor/slime/fullupgrade //fully ugpraded stock parts
desc = "An industrial grinder with a sticker saying appropiated for bioterrorism department. keep hands clear of intake while operating."
circuit = /obj/item/circuitboard/machine/processor/slime/fullupgrade
/obj/machinery/processor/slime/Initialize(mapload)
. = ..()
AddComponent(/datum/component/usb_port, typecacheof(list(/obj/item/circuit_component/slime_processor), only_root_path = TRUE))
/obj/machinery/processor/slime/adjust_item_drop_location(atom/movable/atom_to_drop)
var/static/list/slimecores = subtypesof(/obj/item/slime_extract)
var/i = 0
if(!(i = slimecores.Find(atom_to_drop.type))) // If the item is not found
return
if (i <= 16) // If in the first 12 slots
atom_to_drop.pixel_x = atom_to_drop.base_pixel_x - 12 + ((i%4)*8)
atom_to_drop.pixel_y = atom_to_drop.base_pixel_y - 12 + (round(i/4)*8)
return i
var/ii = i - 16
atom_to_drop.pixel_x = atom_to_drop.base_pixel_x - 8 + ((ii%3)*8)
atom_to_drop.pixel_y = atom_to_drop.base_pixel_y - 8 + (round(ii/3)*8)
return i
/obj/machinery/processor/slime/process()
if(processing)
return
var/list/mob/living/basic/slime/picked_slimes
/// We pick up a number of slimes equal to the rating of the matter bin
var/slimes_picked = 0
for(var/mob/living/basic/slime/slime in range(1,src))
if(!slime.IsReachableBy(src)) //don't take slimes behind glass panes or somesuch; also makes it ignore slimes inside the processor
continue
if(slime.stat)
var/datum/food_processor_process/recipe = PROCESSOR_SELECT_RECIPE(slime)
if(!recipe)
continue
LAZYADD(picked_slimes, slime)
slimes_picked += 1
if(slimes_picked >= rating_amount)
break
if(!LAZYLEN(picked_slimes))
return
visible_message(span_notice("[jointext(picked_slimes, ", ")] [LAZYLEN(picked_slimes) > 1 ? "are" : "is"] sucked into [src]."))
for(var/mob/living/basic/slime/slime_to_add in picked_slimes)
LAZYADD(processor_contents, slime_to_add)
slime_to_add.forceMove(src)
/obj/machinery/processor/slime/process_food(datum/food_processor_process/recipe, atom/movable/what)
var/mob/living/basic/slime/processed_slime = what
if (!istype(processed_slime))
return
if(processed_slime.stat != DEAD)
processed_slime.forceMove(drop_location())
processed_slime.balloon_alert_to_viewers("crawls free")
return
var/core_count = processed_slime.cores
var/extra_cores = rating_amount - 1 // 0-3 bonus cores above what slime already has with upgraded parts
for(var/i in 1 to (core_count + extra_cores))
var/atom/movable/item = new processed_slime.slime_type.core_type(drop_location())
adjust_item_drop_location(item)
SSblackbox.record_feedback("tally", "slime_core_harvested", 1, processed_slime.slime_type.colour)
return ..()
/obj/item/circuit_component/slime_processor
display_name = "Slime Processor"
desc = "Allows to activate process and get the amount of processor contents."
circuit_flags = CIRCUIT_FLAG_INPUT_SIGNAL|CIRCUIT_FLAG_OUTPUT_SIGNAL
///Activate process
var/datum/port/input/active
///Amount of processor contents
var/datum/port/output/amount
var/obj/machinery/processor/slime/attached_processor
/obj/item/circuit_component/slime_processor/populate_ports()
active = add_input_port("Activate", PORT_TYPE_SIGNAL, trigger = PROC_REF(activate))
amount = add_output_port("Amount", PORT_TYPE_NUMBER)
/obj/item/circuit_component/slime_processor/register_usb_parent(atom/movable/parent)
. = ..()
if(istype(parent, /obj/machinery/processor/slime))
attached_processor = parent
/obj/item/circuit_component/slime_processor/unregister_usb_parent(atom/movable/parent)
attached_processor = null
return ..()
/obj/item/circuit_component/slime_processor/proc/activate()
SIGNAL_HANDLER
input_received()
if(attached_processor.processing)
return
if(!LAZYLEN(attached_processor.processor_contents))
return
attached_processor.processing()
/obj/item/circuit_component/slime_processor/input_received()
var/list/contents = attached_processor.processor_contents
amount.set_output(LAZYLEN(contents))
#undef PROCESSOR_SELECT_RECIPE