[MIRROR] Refactors Suiciding Variable Into Trait [MDB IGNORE] (#20017)

* Refactors Suiciding Variable Into Trait

* suicide

* https://github.com/tgstation/tgstation/pull/72919

MISSED IRROR

* better suicide handling

---------

Co-authored-by: san7890 <the@san7890.com>
Co-authored-by: lessthnthree <three@lessthanthree.dk>
Co-authored-by: Gandalf <9026500+Gandalf2k15@users.noreply.github.com>
This commit is contained in:
SkyratBot
2023-03-27 02:03:05 +01:00
committed by GitHub
co-authored by san7890 lessthnthree Gandalf
parent b4714a1a31
commit 96be018eb1
38 changed files with 200 additions and 299 deletions
+1 -1
View File
@@ -345,7 +345,7 @@ structure_check() searches for nearby cultist structures required for the invoca
qdel(sacrificial)
return TRUE
var/obj/item/soulstone/stone = new /obj/item/soulstone(get_turf(src))
if(sacrificial.mind && !sacrificial.suiciding)
if(sacrificial.mind && !HAS_TRAIT(sacrificial, TRAIT_SUICIDED))
stone.capture_soul(sacrificial, first_invoker, TRUE)
if(sacrificial)
+119 -239
View File
@@ -1,246 +1,68 @@
/mob/proc/set_suicide(suicide_state)
suiciding = suicide_state
/// Verb to simply kill yourself (in a very visual way to all players) in game! How family-friendly. Can be governed by a series of multiple checks (i.e. confirmation, is it allowed in this area, etc.) which are
/// handled and called by the proc this verb invokes. It's okay to block this, because we typically always give mobs in-game the ability to Ghost out of their current mob irregardless of context. This, in contrast,
/// can have as many different checks as you desire to prevent people from doing the deed to themselves.
/mob/living/verb/suicide()
set hidden = TRUE
handle_suicide()
/// Actually handles the bare basics of the suicide process. Message type is the message we want to dispatch in the world regarding the suicide, using the defines in this file.
/// Override this ENTIRELY if you want to add any special behavior to your suicide handling, if you fuck up the order of operations then shit will break.
/mob/living/proc/handle_suicide()
SHOULD_CALL_PARENT(FALSE)
if(!suicide_alert())
return
// SKYRAT EDIT ADDITION
if(CONFIG_GET(flag/disable_suicide))
to_chat(usr, span_warning("Suicide is disabled on this server."))
return
// SKYRAT EDIT END
set_suicide(TRUE)
send_applicable_messages()
final_checkout()
/// Proc that handles adding the TRAIT_SUICIDED on the mob in question, as well as additional operations to ensure that everything goes smoothly when we're certain that this person is going to kill themself.
/// suicide_state is a boolean, and we handle adding/removing the trait in question. Have the trait function reference this mob as the source if we want to do in-depth tracking of where a suicided trait comes from.
/// For example, the /mob/dead/observer that will inevitably come from the suicidee will inherit the suicided trait upon creation, and keep this reference. Handy for doing checking should we need it.
/mob/living/proc/set_suicide(suicide_state)
if(suicide_state)
ADD_TRAIT(src, TRAIT_SUICIDED, REF(src))
add_to_mob_suicide_list()
else
REMOVE_TRAIT(src, TRAIT_SUICIDED, REF(src))
remove_from_mob_suicide_list()
/mob/living/carbon/set_suicide(suicide_state) //you thought that box trick was pretty clever, didn't you? well now hardmode is on, boyo.
. = ..()
var/obj/item/organ/internal/brain/B = getorganslot(ORGAN_SLOT_BRAIN)
if(B)
B.suicided = suicide_state
/mob/living/silicon/robot/set_suicide(suicide_state)
. = ..()
if(mmi)
if(mmi.brain)
mmi.brain.suicided = suicide_state
if(mmi.brainmob)
mmi.brainmob.suiciding = suicide_state
//SKYRAT EDIT REMOVAL BEGIN - SUICIDE_VERB
/*
/mob/living/carbon/human/verb/suicide()
set hidden = TRUE
if(!canSuicide())
return
/// Sends a TGUI Alert to the person attempting to commit suicide. Returns TRUE if they confirm they want to die, FALSE otherwise. Check can_suicide here as well.
/mob/living/proc/suicide_alert()
// Save this for later to ensure that if we change ckeys somehow, we exit out of the suicide.
var/oldkey = ckey
var/confirm = tgui_alert(usr,"Are you sure you want to commit suicide?", "Confirm Suicide", list("Yes", "No"))
if(ckey != oldkey)
return
if(!canSuicide())
return
if(!can_suicide())
return FALSE
var/confirm = tgui_alert(src, "Are you sure you want to commit suicide?", "Confirm Suicide", list("Yes", "No"))
// ensure our situation didn't change while we were sleeping waiting for the tgui_alert.
if(!can_suicide() || (ckey != oldkey))
return FALSE
if(confirm == "Yes")
if(suiciding)
to_chat(src, span_warning("You're already trying to commit suicide!"))
return
set_suicide(TRUE) //need to be called before calling suicide_act as fuck knows what suicide_act will do with your suicider
var/obj/item/held_item = get_active_held_item()
return TRUE
var/damagetype = SEND_SIGNAL(src, COMSIG_HUMAN_SUICIDE_ACT) || held_item?.suicide_act(src)
if(damagetype)
if(damagetype & SHAME)
adjustStaminaLoss(200)
set_suicide(FALSE)
add_mood_event("shameful_suicide", /datum/mood_event/shameful_suicide)
return
balloon_alert(src, "suicide attempt aborted!")
return FALSE
if(damagetype & MANUAL_SUICIDE_NONLETHAL) //Make sure to call the necessary procs if it does kill later
set_suicide(FALSE)
return
/// Checks if we are in a valid state to suicide (not already suiciding, capable of actually killing ourselves, area checks, etc.) Returns TRUE if we can suicide, FALSE if we can not.
/mob/living/proc/can_suicide()
if(HAS_TRAIT_FROM_ONLY(src, TRAIT_SUICIDED, REF(src)))
to_chat(src, span_warning("You are already commiting suicide!"))
return FALSE
suicide_log()
var/damage_mod = 0
for(var/T in list(BRUTELOSS, FIRELOSS, TOXLOSS, OXYLOSS))
damage_mod += (T & damagetype) ? 1 : 0
damage_mod = max(1, damage_mod)
//Do 200 damage divided by the number of damage types applied.
if(damagetype & BRUTELOSS)
adjustBruteLoss(200/damage_mod)
if(damagetype & FIRELOSS)
adjustFireLoss(200/damage_mod)
if(damagetype & TOXLOSS)
adjustToxLoss(200/damage_mod)
if(damagetype & OXYLOSS)
adjustOxyLoss(200/damage_mod)
if(damagetype & MANUAL_SUICIDE) //Assume the object will handle the death.
investigate_log("has died from committing suicide[held_item ? " with [held_item]" : ""].", INVESTIGATE_DEATHS)
return
//If something went wrong, just do normal oxyloss
if(!(damagetype & (BRUTELOSS | FIRELOSS | TOXLOSS | OXYLOSS) ))
adjustOxyLoss(max(200 - getToxLoss() - getFireLoss() - getBruteLoss() - getOxyLoss(), 0))
investigate_log("has died from committing suicide[held_item ? " with [held_item]" : ""].", INVESTIGATE_DEATHS)
death(FALSE)
ghostize(FALSE) // Disallows reentering body and disassociates mind
return
var/suicide_message
if(!combat_mode)
var/obj/item/organ/internal/brain/userbrain = getorgan(/obj/item/organ/internal/brain)
if(userbrain?.damage >= 75)
suicide_message = "[src] pulls both arms outwards in front of [p_their()] chest and pumps them behind [p_their()] back, repeats this motion in a smaller range of motion \
down to [p_their()] hips two times once more all while sliding [p_their()] legs in a faux walking motion, claps [p_their()] hands together \
in front of [p_them()] while both [p_their()] knees knock together, pumps [p_their()] arms downward, pronating [p_their()] wrists and abducting \
[p_their()] fingers outward while crossing [p_their()] legs back and forth, repeats this motion again two times while keeping [p_their()] shoulders low\
and hunching over, does finger guns with right hand and left hand bent on [p_their()] hip while looking directly forward and putting [p_their()] left leg forward then\
crossing [p_their()] arms and leaning back a little while bending [p_their()] knees at an angle! It looks like [p_theyre()] trying to commit suicide."
else
suicide_message = pick("[src] is hugging [p_them()]self to death! It looks like [p_theyre()] trying to commit suicide.", \
"[src] is high-fiving [p_them()]self to death! It looks like [p_theyre()] trying to commit suicide.", \
"[src] is getting too high on life! It looks like [p_theyre()] trying to commit suicide.")
else
suicide_message = pick("[src] is attempting to bite [p_their()] tongue off! It looks like [p_theyre()] trying to commit suicide.", \
"[src] is jamming [p_their()] thumbs into [p_their()] eye sockets! It looks like [p_theyre()] trying to commit suicide.", \
"[src] is twisting [p_their()] own neck! It looks like [p_theyre()] trying to commit suicide.", \
"[src] is holding [p_their()] breath! It looks like [p_theyre()] trying to commit suicide.")
visible_message(span_danger("[suicide_message]"), span_userdanger("[suicide_message]"))
suicide_log()
adjustOxyLoss(max(200 - getToxLoss() - getFireLoss() - getBruteLoss() - getOxyLoss(), 0))
investigate_log("has died from committing suicide[held_item ? " with [held_item]" : ""].", INVESTIGATE_DEATHS)
death(FALSE)
ghostize(FALSE) // Disallows reentering body and disassociates mind
/mob/living/brain/verb/suicide()
set hidden = TRUE
if(!canSuicide())
return
var/confirm = tgui_alert(usr,"Are you sure you want to commit suicide?", "Confirm Suicide", list("Yes", "No"))
if(!canSuicide())
return
if(confirm == "Yes")
set_suicide(TRUE)
visible_message(span_danger("[src]'s brain is growing dull and lifeless. [p_they(TRUE)] look[p_s()] like [p_theyve()] lost the will to live."), \
span_userdanger("[src]'s brain is growing dull and lifeless. [p_they(TRUE)] look[p_s()] like [p_theyve()] lost the will to live."))
suicide_log()
death(FALSE)
ghostize(FALSE) // Disallows reentering body and disassociates mind
/mob/living/silicon/ai/verb/suicide()
set hidden = TRUE
if(!canSuicide())
return
var/confirm = tgui_alert(usr,"Are you sure you want to commit suicide?", "Confirm Suicide", list("Yes", "No"))
if(!canSuicide())
return
if(confirm == "Yes")
set_suicide(TRUE)
visible_message(span_danger("[src] is powering down. It looks like [p_theyre()] trying to commit suicide."), \
span_userdanger("[src] is powering down. It looks like [p_theyre()] trying to commit suicide."))
suicide_log()
//put em at -175
adjustOxyLoss(max(maxHealth * 2 - getToxLoss() - getFireLoss() - getBruteLoss() - getOxyLoss(), 0))
death(FALSE)
ghostize(FALSE) // Disallows reentering body and disassociates mind
/mob/living/silicon/robot/verb/suicide()
set hidden = TRUE
if(!canSuicide())
return
var/confirm = tgui_alert(usr,"Are you sure you want to commit suicide?", "Confirm Suicide", list("Yes", "No"))
if(!canSuicide())
return
if(confirm == "Yes")
set_suicide(TRUE)
visible_message(span_danger("[src] is powering down. It looks like [p_theyre()] trying to commit suicide."), \
span_userdanger("[src] is powering down. It looks like [p_theyre()] trying to commit suicide."))
suicide_log()
//put em at -175
adjustOxyLoss(max(maxHealth * 2 - getToxLoss() - getFireLoss() - getBruteLoss() - getOxyLoss(), 0))
death(FALSE)
ghostize(FALSE) // Disallows reentering body and disassociates mind
*/
//SKYRAT EDIT REMOVAL END
//SKYRAT EDIT PAI START - Returns ability to leave your PAI
/mob/living/silicon/pai/verb/suicide()
set hidden = TRUE
var/confirm = tgui_alert(usr,"Are you sure you want to commit suicide?", "Confirm Suicide", list("Yes", "No"))
if(confirm == "Yes")
var/turf/T = get_turf(src.loc)
T.visible_message(span_notice("[src] flashes a message across its screen, \"Wiping core files. Please acquire a new personality to continue using pAI device functions.\""), null, \
span_notice("[src] bleeps electronically."))
suicide_log()
death(FALSE)
ghostize(FALSE) // Disallows reentering body and disassociates mind
else
to_chat(src, "Aborting suicide attempt.")
//SKYRAT EDIT PAI END
//SKYRAT EDIT REMOVAL START
/*
/mob/living/carbon/alien/adult/verb/suicide()
set hidden = TRUE
if(!canSuicide())
return
var/confirm = tgui_alert(usr,"Are you sure you want to commit suicide?", "Confirm Suicide", list("Yes", "No"))
if(!canSuicide())
return
if(confirm == "Yes")
set_suicide(TRUE)
visible_message(span_danger("[src] is thrashing wildly! It looks like [p_theyre()] trying to commit suicide."), \
span_userdanger("[src] is thrashing wildly! It looks like [p_theyre()] trying to commit suicide."), \
span_hear("You hear thrashing."))
suicide_log()
//put em at -175
adjustOxyLoss(max(200 - getFireLoss() - getBruteLoss() - getOxyLoss(), 0))
death(FALSE)
ghostize(FALSE) // Disallows reentering body and disassociates mind
/mob/living/simple_animal/verb/suicide()
set hidden = TRUE
if(!canSuicide())
return
var/confirm = tgui_alert(usr,"Are you sure you want to commit suicide?", "Confirm Suicide", list("Yes", "No"))
if(!canSuicide())
return
if(confirm == "Yes")
set_suicide(TRUE)
visible_message(span_danger("[src] begins to fall down. It looks like [p_theyve()] lost the will to live."), \
span_userdanger("[src] begins to fall down. It looks like [p_theyve()] lost the will to live."))
suicide_log()
death(FALSE)
ghostize(FALSE) // Disallows reentering body and disassociates mind
*/
//SKYRAT EDIT REMOVAL END
/mob/living/proc/suicide_log()
investigate_log("has died from committing suicide.", INVESTIGATE_DEATHS)
log_message("committed suicide as [src.type]", LOG_ATTACK)
/mob/living/carbon/human/suicide_log()
log_message("(job: [src.job ? "[src.job]" : "None"]) committed suicide", LOG_ATTACK)
/mob/living/proc/canSuicide()
var/area/A = get_area(src)
if(A.area_flags & BLOCK_SUICIDE)
var/area/checkable = get_area(src)
if(checkable.area_flags & BLOCK_SUICIDE)
to_chat(src, span_warning("You can't commit suicide here! You can ghost if you'd like."))
return
return FALSE
switch(stat)
if(CONSCIOUS)
return TRUE
@@ -250,12 +72,70 @@
to_chat(src, span_warning("You need to be conscious to commit suicide!"))
if(DEAD)
to_chat(src, span_warning("You're already dead!"))
return
return FALSE
/mob/living/carbon/canSuicide()
if(!..())
return
if(!(mobility_flags & MOBILITY_USE)) //just while I finish up the new 'fun' suiciding verb. This is to prevent metagaming via suicide
to_chat(src, span_warning("You can't commit suicide whilst immobile! ((You can type Ghost instead however.))"))
return
/// Inserts in logging and death + mind dissociation when we're fully done with ending the life of our mob, as well as adjust the health. We will disallow re-entering the body when this is called.
/// The suicide_tool variable is currently only used for humans in order to allow suicide log to properly put stuff in investigate log.
/// Set apply_damage to FALSE in order to not do damage (in case it's handled elsewhere in the verb or another proc that the suicide tree calls). Will dissociate client from mind and ghost the player regardless.
/mob/living/proc/final_checkout(obj/item/suicide_tool, apply_damage = TRUE)
if(apply_damage) // enough to really drive home the point that they are DEAD.
apply_suicide_damage()
suicide_log(suicide_tool)
death(FALSE)
ghostize(FALSE)
/// Send all suicide-related messages out to the world. message_type can be used to change out the dispatched suicide message depending on the suicide context.
/mob/living/proc/send_applicable_messages(message_type)
visible_message(span_danger(get_visible_suicide_message()), span_userdanger(get_visible_suicide_message()), span_hear(get_blind_suicide_message()))
/// Returns a subtype-specific flavorful string pertaining to this exact living mob's ending their own life to those who can see it (visible message).
/// If you don't want a message, prefer to override send_applicable_messages() on your subtype instead.
/mob/living/proc/get_visible_suicide_message()
return "[src] begins to fall down. It looks like [p_theyve()] lost the will to live."
/// Returns an appropriate string for what people who lack visibility hear when this mob kills itself.
/// If you don't want a message, prefer to override send_applicable_messages() on your subtype instead.
/mob/living/proc/get_blind_suicide_message()
return "You hear something hitting the floor."
/// Inserts logging in both the mob's logs and the investigate log pertaining to their death. Suicide tool is the object we used to commit suicide, if one was held and used (presently only humans use this arg).
/mob/living/proc/suicide_log(obj/item/suicide_tool)
investigate_log("has died from committing suicide.", INVESTIGATE_DEATHS)
log_message("committed suicide as [src.type]", LOG_ATTACK)
/// The actual proc that will apply the damage to the suiciding mob. damage_type is the actual type of damage we want to deal, if that matters.
/// Return TRUE if we actually apply any real damage, FALSE otherwise.
/mob/living/proc/apply_suicide_damage(obj/item/suicide_tool, damage_type = NONE)
adjustOxyLoss(max(maxHealth * 2 - getToxLoss() - getFireLoss() - getBruteLoss() - getOxyLoss(), 0))
return TRUE
/// If we want to apply multiple types of damage to a carbon mob based on the way they suicide, this is the proc that handles that.
/// Currently only compatible with Brute, Burn, Toxin, and Suffocation Damage. damage_type is the bitflag that carries the information.
/mob/living/proc/handle_suicide_damage_spread(damage_type)
// We split up double the total health the mob has, then spread it out.
var/damage_to_apply = (maxHealth * 2) // For humans, this value comes out to 200.
// The multiplier that we divide damage_to_apply by.
var/damage_mod = 0
// We don't want to damage_type again and again, this will hold the results.
var/list/filtered_damage_types = list()
for(var/type in list(BRUTELOSS, FIRELOSS, OXYLOSS, TOXLOSS))
if(!(type & damage_type))
continue
damage_mod++
filtered_damage_types += type
damage_mod = max(1, damage_mod) // division by zero is silly
damage_to_apply = (damage_to_apply / damage_mod)
for(var/filtered_type in filtered_damage_types)
switch(filtered_type)
if(BRUTELOSS)
adjustBruteLoss(damage_to_apply)
if(FIRELOSS)
adjustFireLoss(damage_to_apply)
if(OXYLOSS)
adjustOxyLoss(damage_to_apply)
if(TOXLOSS)
adjustToxLoss(damage_to_apply)
+2 -2
View File
@@ -136,12 +136,12 @@
make_podman = TRUE
break
else
if(M.ckey == ckey && M.stat == DEAD && !M.suiciding)
if(M.ckey == ckey && M.stat == DEAD && !HAS_TRAIT(M, TRAIT_SUICIDED))
make_podman = TRUE
break
else //If the player has ghosted from his corpse before blood was drawn, his ckey is no longer attached to the mob, so we need to match up the cloned player through the mind key
for(var/mob/M in GLOB.player_list)
if(mind && M.mind && ckey(M.mind.key) == ckey(mind.key) && M.ckey && M.client && M.stat == DEAD && !M.suiciding)
if(mind && M.mind && ckey(M.mind.key) == ckey(mind.key) && M.ckey && M.client && M.stat == DEAD && !HAS_TRAIT(M, TRAIT_SUICIDED))
if(isobserver(M))
var/mob/dead/observer/O = M
if(!O.can_reenter_corpse)
+2 -1
View File
@@ -101,7 +101,8 @@ GLOBAL_VAR_INIT(observer_default_invisibility, INVISIBILITY_OBSERVER)
mind = body.mind //we don't transfer the mind but we keep a reference to it.
set_suicide(body.suiciding) // Transfer whether they committed suicide.
if(HAS_TRAIT_FROM_ONLY(body, TRAIT_SUICIDED, REF(body))) // transfer if the body was killed due to suicide
ADD_TRAIT(src, TRAIT_SUICIDED, REF(body))
if(ishuman(body))
var/mob/living/carbon/human/body_human = body
+1 -1
View File
@@ -255,7 +255,7 @@
else if(last_mind)
blood_data["ckey"] = ckey(last_mind.key)
if(!suiciding)
if(!HAS_TRAIT_FROM(src, TRAIT_SUICIDED, REF(src)))
blood_data["cloneable"] = 1
blood_data["blood_type"] = dna.blood_type
blood_data["gender"] = gender
+2 -2
View File
@@ -84,7 +84,7 @@
newbrain.brainmob = null
brainmob.forceMove(src)
brainmob.container = src
var/fubar_brain = newbrain.suicided || brainmob.suiciding //brain is from a suicider
var/fubar_brain = newbrain.suicided || HAS_TRAIT(brainmob, TRAIT_SUICIDED) //brain is from a suicider
if(!fubar_brain && !(newbrain.organ_flags & ORGAN_FAILING)) // the brain organ hasn't been beaten to death, nor was from a suicider.
brainmob.set_stat(CONSCIOUS) //we manually revive the brain mob
else if(!fubar_brain && newbrain.organ_flags & ORGAN_FAILING) // the brain is damaged, but not from a suicider
@@ -275,7 +275,7 @@
if(user)
to_chat(user, span_warning("\The [src] indicates that their mind is currently inactive."))
return FALSE
if(B.suiciding || brain?.suicided)
if(HAS_TRAIT(B, TRAIT_SUICIDED) || brain?.suicided)
if(user)
to_chat(user, span_warning("\The [src] indicates that their mind has no will to live!"))
return FALSE
+5 -2
View File
@@ -60,7 +60,7 @@
else
C.key = brainmob.key
C.set_suicide(brainmob.suiciding)
C.set_suicide(HAS_TRAIT(brainmob, TRAIT_SUICIDED))
QDEL_NULL(brainmob)
@@ -117,7 +117,10 @@
brainmob.name = L.real_name
brainmob.real_name = L.real_name
brainmob.timeofhostdeath = L.timeofdeath
brainmob.suiciding = suicided
if(suicided)
ADD_TRAIT(brainmob, TRAIT_SUICIDED, REF(src))
if(L.has_dna())
var/mob/living/carbon/C = L
if(!brainmob.stored_dna)
+2 -2
View File
@@ -117,13 +117,13 @@ GLOBAL_VAR(posibrain_notify_cooldown)
return
if(is_occupied() || is_banned_from(user.ckey, ROLE_POSIBRAIN) || QDELETED(brainmob) || QDELETED(src) || QDELETED(user))
return
if(user.suiciding) //if they suicided, they're out forever.
if(HAS_TRAIT(src, TRAIT_SUICIDED)) //if they suicided, they're out forever.
to_chat(user, span_warning("[src] fizzles slightly. Sadly it doesn't take those who suicided!"))
return
var/posi_ask = tgui_alert(user, "Become a [name]? (Warning, You can no longer be revived, and all past lives will be forgotten!)", "Confirm", list("Yes","No"))
if(posi_ask != "Yes" || QDELETED(src))
return
if(brainmob.suiciding) //clear suicide status if the old occupant suicided.
if(HAS_TRAIT(brainmob, TRAIT_SUICIDED)) //clear suicide status if the old occupant suicided.
brainmob.set_suicide(FALSE)
transfer_personality(user)
+2 -3
View File
@@ -937,8 +937,7 @@
if(HAS_TRAIT(src, TRAIT_DNR)) //This is also added when a ghost DNR's!
return DEFIB_FAIL_DNR
//SKYRAT EDIT ADDITION END - DNR TRAIT
if (suiciding)
if (HAS_TRAIT(src, TRAIT_SUICIDED))
return DEFIB_FAIL_SUICIDE
if (HAS_TRAIT(src, TRAIT_HUSK))
@@ -968,7 +967,7 @@
if (current_brain.organ_flags & ORGAN_FAILING)
return DEFIB_FAIL_FAILING_BRAIN
if (current_brain.suicided || current_brain.brainmob?.suiciding)
if (current_brain.suicided || (current_brain.brainmob && HAS_TRAIT(current_brain.brainmob, TRAIT_SUICIDED)))
return DEFIB_FAIL_NO_INTELLIGENCE
if(key && key[1] == "@") // Adminghosts
@@ -27,7 +27,7 @@ GLOBAL_LIST_EMPTY(dead_players_during_shift)
. = ..()
if(client && !suiciding && !(client in GLOB.dead_players_during_shift))
if(client && !HAS_TRAIT(src, TRAIT_SUICIDED) && !(client in GLOB.dead_players_during_shift))
GLOB.dead_players_during_shift += client
if(!QDELETED(dna)) //The gibbed param is bit redundant here since dna won't exist at this point if they got deleted.
@@ -160,7 +160,7 @@
just_sleeping = TRUE
if(!just_sleeping)
if(suiciding)
if(HAS_TRAIT(src, TRAIT_SUICIDED))
. += span_warning("[t_He] appear[p_s()] to have committed suicide... there is no hope of recovery.")
. += generate_death_examine_text()
@@ -910,7 +910,7 @@
/obj/structure/cloth_pile/proc/revive()
if(QDELETED(src) || QDELETED(cloth_golem)) //QDELETED also checks for null, so if no cloth golem is set this won't runtime
return
if(cloth_golem.suiciding)
if(HAS_TRAIT_FROM_ONLY(cloth_golem, TRAIT_SUICIDED, REF(cloth_golem)))
QDEL_NULL(cloth_golem)
return
+1 -1
View File
@@ -908,7 +908,7 @@
reagents.clear_reagents()
if(heal_flags & HEAL_ADMIN)
suiciding = FALSE
REMOVE_TRAIT(src, TRAIT_SUICIDED, REF(src))
updatehealth()
stop_sound_channel(CHANNEL_HEARTBEAT)
@@ -70,7 +70,6 @@
///A sound sent when the mob dies, with the *deathgasp emote
var/death_sound
/// Helper vars for quick access to firestacks, these should be updated every time firestacks are adjusted
var/on_fire = FALSE
var/fire_stacks = 0
+5 -3
View File
@@ -414,15 +414,17 @@
the_mmi.brainmob.name = src.real_name
the_mmi.brainmob.real_name = src.real_name
the_mmi.brainmob.container = the_mmi
the_mmi.brainmob.set_suicide(suiciding)
the_mmi.brain.suicided = suiciding
var/has_suicided_trait = HAS_TRAIT(src, TRAIT_SUICIDED)
the_mmi.brainmob.set_suicide(has_suicided_trait)
the_mmi.brain.suicided = has_suicided_trait
if(the_core)
var/obj/structure/ai_core/core = the_core
core.core_mmi = the_mmi
the_mmi.forceMove(the_core)
else
the_mmi.forceMove(get_turf(src))
if(the_mmi.brainmob.stat == DEAD && !suiciding)
if(the_mmi.brainmob.stat == DEAD && !has_suicided_trait)
the_mmi.brainmob.set_stat(CONSCIOUS)
if(mind)
mind.transfer_to(the_mmi.brainmob)
@@ -101,6 +101,13 @@
modularInterface.saved_job = "Cyborg"
return ..()
/mob/living/silicon/robot/set_suicide(suicide_state)
. = ..()
if(mmi)
if(mmi.brain)
mmi.brain.suicided = suicide_state
if(suicide_state && mmi.brainmob)
ADD_TRAIT(mmi.brainmob, TRAIT_SUICIDED, REF(src))
/**
* Sets the tablet theme and icon
@@ -443,7 +443,7 @@
if(!(loc == C.loc) && !(isturf(C.loc) && isturf(loc)))
return FALSE
if(C.suiciding)
if(HAS_TRAIT_FROM_ONLY(C, TRAIT_SUICIDED, REF(C)))
return FALSE //Kevorkian school of robotic medical assistants.
if(bot_cover_flags & BOT_COVER_EMAGGED) //Everyone needs our medicine. (Our medicine is toxins)
@@ -353,7 +353,7 @@ GLOBAL_LIST_EMPTY(parasites) //all currently existing/living guardians
forceMove(summoner.loc)
new /obj/effect/temp_visual/guardian/phase(loc)
/mob/living/simple_animal/hostile/guardian/canSuicide()
/mob/living/simple_animal/hostile/guardian/can_suicide()
return FALSE
/mob/living/simple_animal/hostile/guardian/proc/is_deployed()
@@ -46,7 +46,7 @@
death_message = "lets out a contented sigh as [p_their()] form unwinds."
..()
/mob/living/simple_animal/shade/canSuicide()
/mob/living/simple_animal/shade/can_suicide()
if(istype(loc, /obj/item/soulstone)) //do not suicide inside the soulstone
return FALSE
return ..()
-3
View File
@@ -65,9 +65,6 @@
///Cursor icon used when holding shift over things
var/examine_cursor_icon = 'icons/effects/mouse_pointers/examine_pointer.dmi'
///Whether this mob has or is in the middle of committing suicide.
var/suiciding = FALSE
/// Whether a mob is alive or dead. TODO: Move this to living - Nodrak (2019, still here)
var/stat = CONSCIOUS
+1 -1
View File
@@ -250,7 +250,7 @@
if(ignore_mapload && SSatoms.initialized != INITIALIZATION_INNEW_REGULAR) //don't notify for objects created during a map load
return
for(var/mob/dead/observer/ghost in GLOB.player_list)
if(!notify_suiciders && (ghost in GLOB.suicided_mob_list))
if(!notify_suiciders && HAS_TRAIT(ghost, TRAIT_SUICIDED))
continue
if(ignore_key && (ghost.ckey in GLOB.poll_ignore[ignore_key]))
continue
@@ -928,7 +928,7 @@
if(exposed_mob.stat != DEAD || !(exposed_mob.mob_biotypes & MOB_ORGANIC))
return ..()
if(exposed_mob.suiciding) //they are never coming back
if(HAS_TRAIT(exposed_mob, TRAIT_SUICIDED)) //they are never coming back
exposed_mob.visible_message(span_warning("[exposed_mob]'s body does not react..."))
return
@@ -41,7 +41,7 @@
return FALSE
if(!isliving(owner))
return FALSE
if(owner.suiciding)
if(HAS_TRAIT(owner, TRAIT_SUICIDED))
if(feedback)
to_chat(owner, span_warning("You're killing yourself! You can't concentrate enough to do this!"))
return FALSE
+1 -1
View File
@@ -109,7 +109,7 @@
if(IS_ORGANIC_LIMB(src) && show_organs_on_examine)
if(!brain)
. += span_info("The brain has been removed from [src].")
else if(brain.suicided || brainmob?.suiciding)
else if(brain.suicided || (brainmob && HAS_TRAIT(brainmob, TRAIT_SUICIDED)))
. += span_info("There's a miserable expression on [real_name]'s face; they must have really hated life. There's no hope of recovery.")
else if(brainmob?.health <= HEALTH_THRESHOLD_DEAD)
. += span_info("It's leaking some kind of... clear fluid? The brain inside must be in pretty bad shape.")
@@ -66,7 +66,7 @@
to_chat(owner, span_notice("Your reviver implant shuts down and starts recharging. It will be ready again in [DisplayTimeText(revive_cost)]."))
return
if(!COOLDOWN_FINISHED(src, reviver_cooldown) || owner.suiciding)
if(!COOLDOWN_FINISHED(src, reviver_cooldown) || HAS_TRAIT(owner, TRAIT_SUICIDED))
return
switch(owner.stat)
+1 -1
View File
@@ -348,7 +348,7 @@
return
if(QDELETED(victim) || victim.suiciding)
if(QDELETED(victim) || HAS_TRAIT(victim, TRAIT_SUICIDED))
return //lol rip
if(!COOLDOWN_FINISHED(src, crystalize_cooldown))
+1 -3
View File
@@ -19,9 +19,7 @@
return FALSE
if(target.stat != DEAD)
return FALSE
if(target.suiciding || HAS_TRAIT(target, TRAIT_HUSK))
return FALSE
if(HAS_TRAIT(target, TRAIT_DEFIB_BLACKLISTED))
if(HAS_TRAIT(target, TRAIT_SUICIDED) || HAS_TRAIT(target, TRAIT_HUSK) || HAS_TRAIT(target, TRAIT_DEFIB_BLACKLISTED))
return FALSE
var/obj/item/organ/internal/brain/target_brain = target.getorganslot(ORGAN_SLOT_BRAIN)
if(!target_brain)
+1 -5
View File
@@ -51,14 +51,10 @@
owner.adjustToxLoss(0.5 * delta_time)
if (DT_PROB(5, delta_time))
to_chat(owner, span_danger("You feel sick..."))
if(timer_id)
return
if(owner.suiciding)
if(timer_id || HAS_TRAIT(owner, TRAIT_SUICIDED) || !owner.getorgan(/obj/item/organ/internal/brain))
return
if(owner.stat != DEAD && !converts_living)
return
if(!owner.getorgan(/obj/item/organ/internal/brain))
return
if(!iszombie(owner))
to_chat(owner, "<span class='cultlarge'>You can feel your heart stopping, but something isn't right... \
life has not abandoned your broken form. You can only feel a deep and immutable hunger that \