mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-10 07:41:16 +01:00
21b4095dfd
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>
115 lines
4.2 KiB
Plaintext
115 lines
4.2 KiB
Plaintext
/**
|
|
* # Destructive scanner
|
|
*
|
|
* Placed machine that handles destructive experiments (but can also do the normal ones)
|
|
*/
|
|
/obj/machinery/destructive_scanner
|
|
name = "experimental destructive scanner"
|
|
desc = "A much larger version of the hand-held scanner. A charred label warns about its destructive capabilities."
|
|
icon = 'icons/obj/machines/destructive_scanner.dmi'
|
|
icon_state = "tube_open"
|
|
circuit = /obj/item/circuitboard/machine/destructive_scanner
|
|
layer = MOB_LAYER
|
|
var/scanning = FALSE
|
|
|
|
// Late load to ensure the component initialization occurs after the machines are initialized
|
|
/obj/machinery/destructive_scanner/post_machine_initialize()
|
|
. = ..()
|
|
|
|
var/static/list/destructive_signals = list(
|
|
COMSIG_MACHINERY_DESTRUCTIVE_SCAN = TYPE_PROC_REF(/datum/component/experiment_handler, try_run_destructive_experiment),
|
|
)
|
|
|
|
AddComponent(/datum/component/experiment_handler, \
|
|
allowed_experiments = list(/datum/experiment/scanning),\
|
|
config_mode = EXPERIMENT_CONFIG_CLICK, \
|
|
start_experiment_callback = CALLBACK(src, PROC_REF(activate)), \
|
|
experiment_signals = destructive_signals, \
|
|
)
|
|
|
|
///Activates the machine; checks if it can actually scan, then starts.
|
|
/obj/machinery/destructive_scanner/proc/activate()
|
|
var/atom/pickup_zone = drop_location()
|
|
var/aggressive = FALSE
|
|
for(var/mob/living/living_mob in pickup_zone)
|
|
if(!(obj_flags & EMAGGED) && ishuman(living_mob)) //Can only kill humans when emagged.
|
|
playsound(src, 'sound/machines/buzz/buzz-sigh.ogg', 25)
|
|
say("Cannot scan with humans inside.")
|
|
return
|
|
aggressive = TRUE
|
|
start_closing(aggressive)
|
|
use_energy(idle_power_usage)
|
|
|
|
///Closes the machine to kidnap everything in the turf into it.
|
|
/obj/machinery/destructive_scanner/proc/start_closing(aggressive)
|
|
if(scanning)
|
|
return
|
|
var/atom/pickup_zone = drop_location()
|
|
for(var/atom/movable/to_pickup in pickup_zone)
|
|
if(to_pickup == src)
|
|
continue
|
|
to_pickup.forceMove(src)
|
|
flick("tube_down", src)
|
|
scanning = TRUE
|
|
update_icon()
|
|
playsound(src, 'sound/machines/destructive_scanner/TubeDown.ogg', 100)
|
|
use_energy(idle_power_usage)
|
|
addtimer(CALLBACK(src, PROC_REF(start_scanning), aggressive), 1.2 SECONDS)
|
|
|
|
///Starts scanning the fancy scanning effects
|
|
/obj/machinery/destructive_scanner/proc/start_scanning(aggressive)
|
|
if(aggressive)
|
|
playsound(src, 'sound/machines/destructive_scanner/ScanDangerous.ogg', 100, extrarange = 5)
|
|
else
|
|
playsound(src, 'sound/machines/destructive_scanner/ScanSafe.ogg', 100)
|
|
use_energy(active_power_usage)
|
|
addtimer(CALLBACK(src, PROC_REF(finish_scanning), aggressive), 6 SECONDS)
|
|
|
|
|
|
///Performs the actual scan, happens once the tube effects are done
|
|
/obj/machinery/destructive_scanner/proc/finish_scanning(aggressive)
|
|
flick("tube_up", src)
|
|
scanning = FALSE
|
|
update_icon()
|
|
playsound(src, 'sound/machines/destructive_scanner/TubeUp.ogg', 100)
|
|
addtimer(CALLBACK(src, PROC_REF(open), aggressive), 1.2 SECONDS)
|
|
|
|
///Opens the machine to let out any contents. If the scan had mobs it'll gib them.
|
|
/obj/machinery/destructive_scanner/proc/open(aggressive)
|
|
var/turf/this_turf = get_turf(src)
|
|
var/list/scanned_atoms = list()
|
|
|
|
for(var/atom/movable/movable_atom in contents)
|
|
if(movable_atom in component_parts)
|
|
continue
|
|
scanned_atoms += movable_atom
|
|
movable_atom.forceMove(this_turf)
|
|
if(isliving(movable_atom))
|
|
var/mob/living/fucked_up_thing = movable_atom
|
|
fucked_up_thing.investigate_log("has been gibbed by [src].", INVESTIGATE_DEATHS)
|
|
fucked_up_thing.gib(DROP_ALL_REMAINS)
|
|
|
|
SEND_SIGNAL(src, COMSIG_MACHINERY_DESTRUCTIVE_SCAN, scanned_atoms)
|
|
|
|
|
|
/obj/machinery/destructive_scanner/emag_act(mob/user, obj/item/card/emag/emag_card)
|
|
if(obj_flags & EMAGGED)
|
|
return FALSE
|
|
obj_flags |= EMAGGED
|
|
playsound(src, SFX_SPARKS, 75, TRUE, SILENCED_SOUND_EXTRARANGE)
|
|
balloon_alert(user, "safety sensor BIOS disabled")
|
|
return TRUE
|
|
|
|
/obj/machinery/destructive_scanner/update_icon_state()
|
|
. = ..()
|
|
icon_state = scanning ? "tube_on" : "tube_open"
|
|
|
|
/obj/machinery/destructive_scanner/screwdriver_act(mob/living/user, obj/item/tool)
|
|
return scanning ? NONE : default_deconstruction_screwdriver(user, tool)
|
|
|
|
/obj/machinery/destructive_scanner/crowbar_act(mob/living/user, obj/item/tool)
|
|
return default_deconstruction_crowbar(user, tool)
|
|
|
|
/obj/machinery/destructive_scanner/can_crowbar_deconstruct()
|
|
return ..() && !scanning
|