mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-14 17:45:02 +01:00
f58b8511f0
## About The Pull Request This PR refactors ``effect_system``s to be a bit easier to use by getting rid of ``set_up``, allowing ``attach()`` to be chained into ``start()`` and refactoring most direct system usages in our code to use helper procs. ``set_up`` was unnecessary and only existed to allow ``New``'s behavior to be fully overriden, which is not required if we split sparks/lightning/steam into a new ``/datum/effect_system/basic`` subtype which houses the effect spreading behavior. This allows us to roll all logic from ``set_up`` into ``New`` and cut down on code complexity. Chaining setup as ``system.attach(src).start()`` also helps a bit in case no helper method exists I've added ``do_chem_smoke`` and ``do_foam`` helpers, which respectively allow chemical smoke or foam to be spawned easily without having to manually create effect datums and reagent holders. Also turns out we've had some nonfunctional effect systems which either never set themselves up, or never started, so I fixed those while I was at it (mostly by moving them to aforementioned helper procs) ## Why It's Good For The Game Cleaner code, makes it significantly easier for users to work with. Also most of our effect system usage was copypasta which was passing booleans as numbers, while perfectly fine helper procs existed in our code. ## Changelog 🆑 refactor: Refactored sparks, foam, smoke, and other miscellaneous effect systems. refactor: Vapes now have consistent rigging with cigs using the new system. fix: Fixed some effects never working. /🆑
60 lines
2.9 KiB
Plaintext
60 lines
2.9 KiB
Plaintext
///Blocks the implantee from being teleported
|
|
/obj/item/implant/teleport_blocker
|
|
name = "bluespace grounding implant"
|
|
desc = "Grounds your bluespace signature in baseline reality, whatever the hell that means."
|
|
actions_types = null
|
|
implant_flags = IMPLANT_TYPE_SECURITY
|
|
hud_icon_state = "hud_imp_noteleport"
|
|
|
|
implant_info = "Automatically activates upon implantation. \
|
|
Grounds users' bluespace signatures, preventing jaunting and/or teleportation."
|
|
|
|
implant_lore = "The Robust Corp BG-001-EXP is a subcutaneous, experimental bluespace counter-resonance \
|
|
frequency generator, designed to firmly ground an implantee's bluespace signature in baseline reality. \
|
|
In layman's terms, it counteracts attempts to slip into bluespace or similar gaps in reality, \
|
|
generating a dissonant frequency that interferes with the attempt, resulting in temporary paralysis. \
|
|
Test subjects report that the interference feels like slamming into a wall, with none of the \
|
|
physical trauma of actually slamming into a wall. Preliminary reports indicate that this \
|
|
would likely be useful for keeping especially slippery prisoners in place."
|
|
|
|
/obj/item/implant/teleport_blocker/implant(mob/living/target, mob/user, silent = FALSE, force = FALSE)
|
|
. = ..()
|
|
if(!. || !isliving(target))
|
|
return FALSE
|
|
RegisterSignal(target, COMSIG_MOVABLE_TELEPORTING, PROC_REF(on_teleport))
|
|
RegisterSignal(target, COMSIG_MOB_PRE_JAUNT, PROC_REF(on_jaunt))
|
|
return TRUE
|
|
|
|
/obj/item/implant/teleport_blocker/removed(mob/target, silent = FALSE, special = FALSE)
|
|
. = ..()
|
|
if(!. || !isliving(target))
|
|
return FALSE
|
|
UnregisterSignal(target, COMSIG_MOVABLE_TELEPORTING)
|
|
UnregisterSignal(target, COMSIG_MOB_PRE_JAUNT)
|
|
return TRUE
|
|
|
|
/// Signal for COMSIG_MOVABLE_TELEPORTING that blocks teleports and stuns the would-be-teleportee.
|
|
/obj/item/implant/teleport_blocker/proc/on_teleport(mob/living/teleportee, atom/destination, channel)
|
|
SIGNAL_HANDLER
|
|
|
|
to_chat(teleportee, span_holoparasite("You feel yourself teleporting, but are suddenly flung back to where you just were!"))
|
|
|
|
teleportee.apply_status_effect(/datum/status_effect/incapacitating/paralyzed, 5 SECONDS)
|
|
do_sparks(5, TRUE, teleportee, spark_type = /datum/effect_system/basic/spark_spread/quantum)
|
|
return TRUE
|
|
|
|
/// Signal for COMSIG_MOB_PRE_JAUNT that prevents a user from entering a jaunt.
|
|
/obj/item/implant/teleport_blocker/proc/on_jaunt(mob/living/jaunter)
|
|
SIGNAL_HANDLER
|
|
|
|
to_chat(jaunter, span_holoparasite("As you attempt to jaunt, you slam directly into the barrier between realities and are sent crashing back into corporeality!"))
|
|
|
|
jaunter.apply_status_effect(/datum/status_effect/incapacitating/paralyzed, 5 SECONDS)
|
|
do_sparks(5, TRUE, jaunter, spark_type = /datum/effect_system/basic/spark_spread/quantum)
|
|
return COMPONENT_BLOCK_JAUNT
|
|
|
|
/obj/item/implantcase/teleport_blocker
|
|
name = "implant case - 'Bluespace Grounding'"
|
|
desc = "A glass case containing a bluespace grounding implant."
|
|
imp_type = /obj/item/implant/teleport_blocker
|