Files
Bubberstation/code/datums/elements/door_pryer.dm
T
SmArtKarandGitHub 425232136c Xenomorphs and door pryer basic mobs can now attack airlocks in combat mode (#85172)
## About The Pull Request

Closes #84799

## Changelog
🆑
fix: Xenomorphs and door pryer basic mobs can now attack airlocks in
combat mode
/🆑
2024-07-25 20:29:43 +01:00

72 lines
2.6 KiB
Plaintext

/**
* Attached to a basic mob.
* Causes attacks on doors to attempt to open them.
*/
/datum/element/door_pryer
element_flags = ELEMENT_BESPOKE
argument_hash_start_idx = 2
/// Time it takes to open a door with force
var/pry_time
/// Interaction key for if we force a door open
var/interaction_key
/datum/element/door_pryer/Attach(datum/target, pry_time = 10 SECONDS, interaction_key = null)
. = ..()
if (!isliving(target))
return ELEMENT_INCOMPATIBLE
src.pry_time = pry_time
src.interaction_key = interaction_key
RegisterSignal(target, COMSIG_LIVING_UNARMED_ATTACK, PROC_REF(on_attack))
/datum/element/door_pryer/Detach(datum/source)
. = ..()
UnregisterSignal(source, COMSIG_LIVING_UNARMED_ATTACK)
/// If we're targeting an airlock, open it
/datum/element/door_pryer/proc/on_attack(mob/living/basic/attacker, atom/target, proximity_flag)
SIGNAL_HANDLER
if(!proximity_flag || !istype(target, /obj/machinery/door/airlock))
return NONE
var/obj/machinery/door/airlock/airlock_target = target
if (!airlock_target.density)
return NONE // It's already open numbnuts
if(DOING_INTERACTION_WITH_TARGET(attacker, target) || (!isnull(interaction_key) && DOING_INTERACTION(attacker, interaction_key)))
attacker.balloon_alert(attacker, "busy!")
return COMPONENT_CANCEL_ATTACK_CHAIN
if (attacker.combat_mode)
return // Attack the door
if (airlock_target.locked || airlock_target.welded || airlock_target.seal)
airlock_target.balloon_alert(attacker, "it's sealed!")
return COMPONENT_CANCEL_ATTACK_CHAIN
INVOKE_ASYNC(src, PROC_REF(open_door), attacker, airlock_target)
return COMPONENT_CANCEL_ATTACK_CHAIN
/// Try opening the door, and if we can't then try forcing it
/datum/element/door_pryer/proc/open_door(mob/living/basic/attacker, obj/machinery/door/airlock/airlock_target)
if (!airlock_target.hasPower())
attacker.visible_message(span_warning("[attacker] forces the [airlock_target] to open."))
airlock_target.open(FORCING_DOOR_CHECKS)
return
if (airlock_target.allowed(attacker))
airlock_target.open(DEFAULT_DOOR_CHECKS)
return
attacker.visible_message(\
message = span_warning("[attacker] starts forcing the [airlock_target] open!"),
blind_message = span_hear("You hear a metal screeching sound."),
)
playsound(airlock_target, 'sound/machines/airlock_alien_prying.ogg', 100, TRUE)
airlock_target.balloon_alert(attacker, "prying...")
if(!do_after(attacker, pry_time, airlock_target))
airlock_target.balloon_alert(attacker, "interrupted!")
return
if(airlock_target.locked)
return
attacker.visible_message(span_warning("[attacker] forces the [airlock_target] to open."))
airlock_target.open(BYPASS_DOOR_CHECKS)