mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-14 09:35:30 +01:00
8eed335b94
## About The Pull Request Completely removes individual inventory UI handling from mob and HUD code and moves it to slot datums. ``/datum/inventory_slot`` now is responsible for displaying items on the player UI and does so through vis_contests as opposed to screen_loc - which ensures that wide items will display properly rather than be offset to the right. Centralized, slot_id based handling allows us to significantly simplify inventory and HUD code (see how many lines were removed) as you no longer need to individually track all items for both the HUD owner and the observer, and makes it easier for us to fully datumize inventory handling in the future. Also fixes a bug where observers would see players' storage UI and have the items linger on-screen after its closed. ## Why It's Good For The Game Makes working with inventories and HUDs easier, fixes visual issues with wide items, I need this for human rendering refactors. ## Changelog 🆑 refactor: Refactors inventory UI to be completely datum and vis_contents-based fix: Observers should no longer see doubled up inventory UIs /🆑 --------- Co-authored-by: LemonInTheDark <58055496+LemonInTheDark@users.noreply.github.com>
1226 lines
43 KiB
Plaintext
1226 lines
43 KiB
Plaintext
//A system to manage and display alerts on screen without needing you to do it yourself
|
|
|
|
//PUBLIC - call these wherever you want
|
|
|
|
/**
|
|
*Proc to create or update an alert. Returns the alert if the alert is new or updated, 0 if it was thrown already
|
|
*category is a text string. Each mob may only have one alert per category; the previous one will be replaced
|
|
*path is a type path of the actual alert type to throw
|
|
*severity is an optional number that will be placed at the end of the icon_state for this alert
|
|
*for example, high pressure's icon_state is "highpressure" and can be serverity 1 or 2 to get "highpressure1" or "highpressure2"
|
|
*new_master is optional and sets the alert's icon state to "template" in the ui_style icons with the master as an overlay.
|
|
*flicks are forwarded to master
|
|
*override makes it so the alert is not replaced until cleared by a clear_alert with clear_override, and it's used for hallucinations.
|
|
*/
|
|
/mob/proc/throw_alert(category, type, severity, atom/new_master, override = FALSE, timeout_override, no_anim = FALSE)
|
|
|
|
if(!category || QDELETED(src))
|
|
return
|
|
|
|
var/datum/weakref/master_ref
|
|
if(isatom(new_master))
|
|
master_ref = WEAKREF(new_master)
|
|
var/atom/movable/screen/alert/thealert
|
|
if(alerts[category])
|
|
thealert = alerts[category]
|
|
if(thealert.override_alerts)
|
|
return thealert
|
|
if(master_ref && thealert.master_ref && master_ref != thealert.master_ref)
|
|
var/datum/current_master = thealert.master_ref.resolve()
|
|
WARNING("[src] threw alert [category] with new_master [new_master] while already having that alert with master [current_master]")
|
|
|
|
clear_alert(category)
|
|
return .()
|
|
else if(thealert.type != type)
|
|
clear_alert(category)
|
|
return .()
|
|
else if(!severity || severity == thealert.severity)
|
|
if(!thealert.timeout)
|
|
// No need to update existing alert
|
|
return thealert
|
|
// Reset timeout of existing alert
|
|
var/timeout = timeout_override || initial(thealert.timeout)
|
|
addtimer(CALLBACK(src, PROC_REF(alert_timeout), thealert, category), timeout)
|
|
thealert.timeout = world.time + timeout - world.tick_lag
|
|
return thealert
|
|
else
|
|
thealert = new type()
|
|
thealert.override_alerts = override
|
|
if(override)
|
|
thealert.timeout = null
|
|
thealert.owner = src
|
|
|
|
if(new_master)
|
|
thealert.master_ref = master_ref
|
|
thealert.RegisterSignal(new_master, COMSIG_ATOM_UPDATE_APPEARANCE, TYPE_PROC_REF(/atom/movable/screen/alert, on_master_update_appearance))
|
|
thealert.update_appearance()
|
|
else if(severity)
|
|
thealert.icon_state = "[initial(thealert.icon_state)][severity]"
|
|
thealert.severity = severity
|
|
|
|
alerts[category] = thealert
|
|
if(client && hud_used)
|
|
hud_used.reorganize_alerts()
|
|
if(!no_anim)
|
|
thealert.transform = matrix(32, 0, MATRIX_TRANSLATE)
|
|
animate(thealert, transform = matrix(), time = 1 SECONDS, easing = ELASTIC_EASING)
|
|
if(timeout_override)
|
|
thealert.timeout = timeout_override
|
|
if(thealert.timeout)
|
|
addtimer(CALLBACK(src, PROC_REF(alert_timeout), thealert, category), thealert.timeout)
|
|
thealert.timeout = world.time + thealert.timeout - world.tick_lag
|
|
return thealert
|
|
|
|
/mob/proc/alert_timeout(atom/movable/screen/alert/alert, category)
|
|
if(alert.timeout && alerts[category] == alert && world.time >= alert.timeout)
|
|
clear_alert(category)
|
|
|
|
// Proc to clear an existing alert.
|
|
/mob/proc/clear_alert(category, clear_override = FALSE)
|
|
var/atom/movable/screen/alert/alert = alerts[category]
|
|
if(!alert)
|
|
return 0
|
|
if(alert.override_alerts && !clear_override)
|
|
return 0
|
|
|
|
alerts -= category
|
|
if(client && hud_used)
|
|
hud_used.reorganize_alerts()
|
|
client.screen -= alert
|
|
qdel(alert)
|
|
|
|
// Proc to check for an alert
|
|
/mob/proc/has_alert(category)
|
|
return !isnull(alerts[category])
|
|
|
|
/atom/movable/screen/alert
|
|
icon = 'icons/hud/screen_alert.dmi'
|
|
icon_state = "template"
|
|
name = "Alert"
|
|
desc = "Something seems to have gone wrong with this alert, so report this bug please"
|
|
mouse_opacity = MOUSE_OPACITY_ICON
|
|
/// do we glow to represent we do stuff when clicked
|
|
var/clickable_glow = FALSE
|
|
var/timeout = 0 //If set to a number, this alert will clear itself after that many deciseconds
|
|
var/severity = 0
|
|
var/alerttooltipstyle = ""
|
|
var/override_alerts = FALSE //If it is overriding other alerts of the same type
|
|
var/mob/owner //Alert owner
|
|
|
|
/// Boolean. If TRUE, the Click() proc will attempt to Click() on the master first if there is a master.
|
|
var/click_master = TRUE
|
|
|
|
///If set true, instead of using the default icon file for screen alerts, it will use the hud's ui style
|
|
var/use_user_hud_icon = USER_HUD_STYLE_IGNORE
|
|
///If set, this overlay will be added to the icon.
|
|
var/overlay_state
|
|
///The file to fetch the overlay from
|
|
var/overlay_icon = 'icons/hud/screen_alert.dmi'
|
|
|
|
/atom/movable/screen/alert/Initialize(mapload, datum/hud/hud_owner)
|
|
. = ..()
|
|
if(PERFORM_ALL_TESTS(focus_only/screen_alert_overlay) && overlay_state && !icon_exists(overlay_icon, overlay_state))
|
|
stack_trace("overlay_state: \"[overlay_state || "null"]\" that couldn't be found overlay_icon: \"[overlay_icon || "null"]\"")
|
|
if(clickable_glow)
|
|
add_filter("clickglow", 2, outline_filter(color = COLOR_GOLD, size = 1))
|
|
mouse_over_pointer = MOUSE_HAND_POINTER
|
|
if(overlay_state)
|
|
update_appearance()
|
|
|
|
/atom/movable/screen/alert/MouseEntered(location,control,params)
|
|
. = ..()
|
|
if(!QDELETED(src))
|
|
openToolTip(usr,src,params,title = name,content = desc,theme = alerttooltipstyle)
|
|
|
|
/atom/movable/screen/alert/MouseExited()
|
|
closeToolTip(usr)
|
|
|
|
/atom/movable/screen/alert/proc/on_master_update_appearance(datum/source)
|
|
SIGNAL_HANDLER
|
|
update_appearance()
|
|
|
|
/atom/movable/screen/alert/update_overlays()
|
|
. = ..()
|
|
var/atom/our_master = master_ref?.resolve()
|
|
if(istype(our_master) && !QDELETED(our_master))
|
|
. += add_atom_icon(our_master)
|
|
if(overlay_state)
|
|
. += mutable_appearance(overlay_icon, overlay_state)
|
|
|
|
///Returns a copy of the appearance of the atom, with its base pixel coordinates. Useful for overlays
|
|
/atom/movable/screen/alert/proc/add_atom_icon(atom/atom)
|
|
var/mutable_appearance/atom_appearance = new(atom)
|
|
atom_appearance.appearance_flags = KEEP_TOGETHER
|
|
atom_appearance.layer = FLOAT_LAYER
|
|
atom_appearance.plane = FLOAT_PLANE
|
|
atom_appearance.dir = SOUTH
|
|
atom_appearance.pixel_x = atom.base_pixel_x
|
|
atom_appearance.pixel_y = atom.base_pixel_y
|
|
atom_appearance.pixel_w = atom.base_pixel_w
|
|
atom_appearance.pixel_z = atom.base_pixel_z
|
|
return strip_appearance_underlays(atom_appearance)
|
|
|
|
/atom/movable/screen/alert/Click(location, control, params)
|
|
SHOULD_CALL_PARENT(TRUE)
|
|
|
|
..()
|
|
if(!usr || !GET_CLIENT(usr) || usr != owner)
|
|
return FALSE
|
|
var/list/modifiers = params2list(params)
|
|
if(LAZYACCESS(modifiers, SHIFT_CLICK)) // screen objects don't do the normal Click() stuff so we'll cheat
|
|
to_chat(usr, boxed_message(jointext(examine(usr), "\n")))
|
|
return FALSE
|
|
if(!click_master)
|
|
return TRUE
|
|
var/datum/our_master = master_ref?.resolve()
|
|
if(our_master)
|
|
return usr.client.Click(our_master, location, control, params)
|
|
|
|
return TRUE
|
|
|
|
/atom/movable/screen/alert/Destroy()
|
|
. = ..()
|
|
severity = 0
|
|
master_ref = null
|
|
owner = null
|
|
screen_loc = ""
|
|
|
|
/atom/movable/screen/alert/examine(mob/user)
|
|
return list(
|
|
span_boldnotice(name),
|
|
span_info(desc),
|
|
)
|
|
|
|
//Gas alerts
|
|
// Gas alerts are continuously thrown/cleared by:
|
|
// * /obj/item/organ/lungs/proc/check_breath()
|
|
// * /mob/living/carbon/check_breath()
|
|
// * /mob/living/carbon/human/check_breath()
|
|
// * /datum/element/atmos_requirements/proc/on_non_stasis_life()
|
|
// * /mob/living/simple_animal/handle_environment()
|
|
|
|
/atom/movable/screen/alert/not_enough_oxy
|
|
name = "Choking (No O2)"
|
|
desc = "You're not getting enough oxygen. Find some good air before you pass out! The box in your backpack has an oxygen tank and breath mask in it."
|
|
icon_state = ALERT_NOT_ENOUGH_OXYGEN
|
|
|
|
/atom/movable/screen/alert/too_much_oxy
|
|
name = "Choking (O2)"
|
|
desc = "There's too much oxygen in the air, and you're breathing it in! Find some good air before you pass out!"
|
|
icon_state = ALERT_TOO_MUCH_OXYGEN
|
|
|
|
/atom/movable/screen/alert/not_enough_nitro
|
|
name = "Choking (No N2)"
|
|
desc = "You're not getting enough nitrogen. Find some good air before you pass out!"
|
|
icon_state = ALERT_NOT_ENOUGH_NITRO
|
|
|
|
/atom/movable/screen/alert/too_much_nitro
|
|
name = "Choking (N2)"
|
|
desc = "There's too much nitrogen in the air, and you're breathing it in! Find some good air before you pass out!"
|
|
icon_state = ALERT_TOO_MUCH_NITRO
|
|
|
|
/atom/movable/screen/alert/not_enough_co2
|
|
name = "Choking (No CO2)"
|
|
desc = "You're not getting enough carbon dioxide. Find some good air before you pass out!"
|
|
icon_state = ALERT_NOT_ENOUGH_CO2
|
|
|
|
/atom/movable/screen/alert/too_much_co2
|
|
name = "Choking (CO2)"
|
|
desc = "There's too much carbon dioxide in the air, and you're breathing it in! Find some good air before you pass out!"
|
|
icon_state = ALERT_TOO_MUCH_CO2
|
|
|
|
/atom/movable/screen/alert/not_enough_plas
|
|
name = "Choking (No Plasma)"
|
|
desc = "You're not getting enough plasma. Find some good air before you pass out! The box in your backpack has a spare plasma tank."
|
|
icon_state = ALERT_NOT_ENOUGH_PLASMA
|
|
|
|
/atom/movable/screen/alert/too_much_plas
|
|
name = "Choking (Plasma)"
|
|
desc = "There's highly flammable, toxic plasma in the air and you're breathing it in. Find some fresh air. The box in your backpack has an oxygen tank and breath mask in it."
|
|
icon_state = ALERT_TOO_MUCH_PLASMA
|
|
|
|
/atom/movable/screen/alert/not_enough_n2o
|
|
name = "Choking (No N2O)"
|
|
desc = "You're not getting enough N2O. Find some good air before you pass out!"
|
|
icon_state = ALERT_NOT_ENOUGH_N2O
|
|
|
|
/atom/movable/screen/alert/too_much_n2o
|
|
name = "Choking (N2O)"
|
|
desc = "There's sleeping gas in the air and you're breathing it in. Find some fresh air. The box in your backpack has an oxygen tank and breath mask in it."
|
|
icon_state = ALERT_TOO_MUCH_N2O
|
|
|
|
/atom/movable/screen/alert/not_enough_water
|
|
name = "Choking (No H2O)"
|
|
desc = "You're not getting enough water. Drench yourself in some water (e.g. showers) or get some water vapor before you pass out!"
|
|
icon_state = ALERT_NOT_ENOUGH_WATER
|
|
|
|
//End gas alerts
|
|
|
|
/atom/movable/screen/alert/bronchodilated
|
|
name = "Bronchodilated"
|
|
desc = "You feel like your lungs are larger than usual! You're taking deeper breaths!"
|
|
icon_state = "bronchodilated"
|
|
use_user_hud_icon = USER_HUD_STYLE_INHERIT
|
|
overlay_icon = 'icons/obj/medical/organs/organs.dmi'
|
|
overlay_state = "lungs"
|
|
|
|
/atom/movable/screen/alert/bronchoconstricted
|
|
name = "Bronchocontracted"
|
|
desc = "You feel like your lungs are smaller than usual! You might need a higher pressure environment/internals to breathe!"
|
|
use_user_hud_icon = USER_HUD_STYLE_INHERIT
|
|
overlay_state = "bronchoconstricted"
|
|
|
|
/atom/movable/screen/alert/gross
|
|
name = "Grossed out."
|
|
desc = "That was kind of gross..."
|
|
use_user_hud_icon = USER_HUD_STYLE_INHERIT
|
|
overlay_state = "gross"
|
|
|
|
/atom/movable/screen/alert/verygross
|
|
name = "Very grossed out."
|
|
desc = "You're not feeling very well..."
|
|
use_user_hud_icon = USER_HUD_STYLE_INHERIT
|
|
overlay_state = "gross2"
|
|
|
|
/atom/movable/screen/alert/disgusted
|
|
name = "DISGUSTED"
|
|
desc = "ABSOLUTELY DISGUSTIN'"
|
|
use_user_hud_icon = USER_HUD_STYLE_INHERIT
|
|
overlay_state = "gross3"
|
|
|
|
/atom/movable/screen/alert/hot
|
|
name = "Too Hot"
|
|
desc = "You're flaming hot! Get somewhere cooler and take off any insulating clothing like a fire suit."
|
|
icon_state = "hot"
|
|
|
|
/atom/movable/screen/alert/cold
|
|
name = "Too Cold"
|
|
desc = "You're freezing cold! Get somewhere warmer and take off any insulating clothing like a space suit."
|
|
icon_state = "cold"
|
|
|
|
/atom/movable/screen/alert/lowpressure
|
|
name = "Low Pressure"
|
|
desc = "The air around you is hazardously thin. A space suit would protect you."
|
|
icon_state = "lowpressure"
|
|
|
|
/atom/movable/screen/alert/highpressure
|
|
name = "High Pressure"
|
|
desc = "The air around you is hazardously thick. A fire suit would protect you."
|
|
icon_state = "highpressure"
|
|
|
|
/atom/movable/screen/alert/hypnosis
|
|
name = "Hypnosis"
|
|
desc = "Something's hypnotizing you, but you're not really sure about what."
|
|
use_user_hud_icon = USER_HUD_STYLE_INHERIT
|
|
overlay_state = "hypnosis"
|
|
var/phrase
|
|
|
|
/atom/movable/screen/alert/mind_control
|
|
name = "Mind Control"
|
|
desc = "Your mind has been hijacked! Click to view the mind control command."
|
|
use_user_hud_icon = USER_HUD_STYLE_INHERIT
|
|
overlay_state = "mind_control"
|
|
clickable_glow = TRUE
|
|
var/command
|
|
|
|
/atom/movable/screen/alert/mind_control/Click()
|
|
. = ..()
|
|
if(!.)
|
|
return
|
|
to_chat(owner, span_mind_control("[command]"))
|
|
|
|
/atom/movable/screen/alert/embeddedobject
|
|
name = "Embedded Object"
|
|
desc = "Something got lodged into your flesh and is causing major bleeding. It might fall out with time, but surgery is the safest way. \
|
|
If you're feeling frisky, examine yourself and click the underlined item to pull the object out."
|
|
use_user_hud_icon = USER_HUD_STYLE_INHERIT
|
|
overlay_state = "embeddedobject"
|
|
clickable_glow = TRUE
|
|
|
|
/atom/movable/screen/alert/embeddedobject/Click()
|
|
. = ..()
|
|
if(!.)
|
|
return
|
|
|
|
var/mob/living/carbon/carbon_owner = owner
|
|
return carbon_owner.check_self_for_injuries()
|
|
|
|
/atom/movable/screen/alert/negative
|
|
name = "Negative Gravity"
|
|
desc = "You're getting pulled upwards. While you won't have to worry about falling down anymore, you may accidentally fall upwards!"
|
|
use_user_hud_icon = USER_HUD_STYLE_INHERIT
|
|
overlay_state = "negative"
|
|
|
|
/atom/movable/screen/alert/weightless
|
|
name = "Weightless"
|
|
desc = "Gravity has ceased affecting you, and you're floating around aimlessly. You'll need something large and heavy, like a \
|
|
wall or lattice, to push yourself off if you want to move. A jetpack would enable free range of motion. A pair of \
|
|
magboots would let you walk around normally on the floor. Barring those, you can throw things, use a fire extinguisher, \
|
|
or shoot a gun to move around via Newton's 3rd Law of Motion."
|
|
use_user_hud_icon = USER_HUD_STYLE_INHERIT
|
|
overlay_state = "weightless"
|
|
|
|
/atom/movable/screen/alert/highgravity
|
|
name = "High Gravity"
|
|
desc = "You're getting crushed by high gravity, picking up items and movement will be slowed."
|
|
use_user_hud_icon = USER_HUD_STYLE_INHERIT
|
|
overlay_state = "paralysis"
|
|
|
|
/atom/movable/screen/alert/veryhighgravity
|
|
name = "Crushing Gravity"
|
|
desc = "You're getting crushed by high gravity, picking up items and movement will be slowed. You'll also accumulate brute damage!"
|
|
use_user_hud_icon = USER_HUD_STYLE_INHERIT
|
|
overlay_state = "paralysis"
|
|
|
|
/atom/movable/screen/alert/fire
|
|
name = "On Fire"
|
|
desc = "You're on fire. Stop, drop and roll to put the fire out or move to a vacuum area."
|
|
icon_state = "fire"
|
|
clickable_glow = TRUE
|
|
|
|
/atom/movable/screen/alert/fire/Click()
|
|
. = ..()
|
|
if(!.)
|
|
return FALSE
|
|
|
|
var/mob/living/living_owner = owner
|
|
if(!living_owner.can_resist())
|
|
return FALSE
|
|
|
|
living_owner.changeNext_move(CLICK_CD_RESIST)
|
|
if(!(living_owner.mobility_flags & MOBILITY_MOVE))
|
|
return FALSE
|
|
|
|
return handle_stop_drop_roll(owner)
|
|
|
|
/atom/movable/screen/alert/fire/proc/handle_stop_drop_roll(mob/living/roller)
|
|
return roller.resist_fire()
|
|
|
|
/atom/movable/screen/alert/give // information set when the give alert is made
|
|
icon_state = "template"
|
|
use_user_hud_icon = USER_HUD_STYLE_INHERIT
|
|
clickable_glow = TRUE
|
|
/// The offer we're linked to, yes this is suspiciously like a status effect alert
|
|
var/datum/status_effect/offering/offer
|
|
/// Additional text displayed in the description of the alert.
|
|
var/additional_desc_text = "Click this alert to take it, or shift click it to examine it."
|
|
/// Text to override what appears in screentips for the alert
|
|
var/screentip_override_text
|
|
/// Whether the offered item can be examined by shift-clicking the alert
|
|
var/examinable = TRUE
|
|
|
|
/atom/movable/screen/alert/give/Initialize(mapload, datum/hud/hud_owner)
|
|
. = ..()
|
|
register_context()
|
|
|
|
/atom/movable/screen/alert/give/Destroy()
|
|
offer = null
|
|
return ..()
|
|
|
|
/atom/movable/screen/alert/give/add_context(atom/source, list/context, obj/item/held_item, mob/user)
|
|
context[SCREENTIP_CONTEXT_LMB] = screentip_override_text || "Take [offer.offered_item.name]"
|
|
context[SCREENTIP_CONTEXT_SHIFT_LMB] = "Examine"
|
|
return CONTEXTUAL_SCREENTIP_SET
|
|
|
|
/**
|
|
* Handles assigning most of the variables for the alert that pops up when an item is offered
|
|
*
|
|
* Handles setting the name, description and icon of the alert and tracking the living mob giving
|
|
* and the item being offered.
|
|
* Arguments:
|
|
* * taker - The living mob receiving the alert
|
|
* * offer - The status effect connected to the offer being made
|
|
*/
|
|
/atom/movable/screen/alert/give/proc/setup(mob/living/taker, datum/status_effect/offering/offer)
|
|
src.offer = offer
|
|
|
|
var/mob/living/offerer = offer.owner
|
|
var/obj/item/receiving = offer.offered_item
|
|
var/receiving_name = get_receiving_name(taker, offerer, receiving)
|
|
name = "[offerer] is offering [receiving_name]"
|
|
desc = "[offerer] is offering [receiving_name]. [additional_desc_text]"
|
|
icon_state = "template"
|
|
cut_overlays()
|
|
add_overlay(receiving)
|
|
|
|
/**
|
|
* Called right before `setup()`, to do any sort of logic to change the name of
|
|
* what's displayed as the name of what's being offered in the alert. Use this to
|
|
* add pronouns and the like, or to totally override the displayed name!
|
|
* Also the best place to make changes to `additional_desc_text` before `setup()`
|
|
* without having to override `setup()` entirely.
|
|
*
|
|
* Arguments:
|
|
* * taker - The person receiving the alert
|
|
* * offerer - The person giving the alert and item
|
|
* * receiving - The item being given by the offerer
|
|
*
|
|
* Returns a string that will be displayed in the alert, which is `receiving.name`
|
|
* by default.
|
|
*/
|
|
/atom/movable/screen/alert/give/proc/get_receiving_name(mob/living/taker, mob/living/offerer, obj/item/receiving)
|
|
return receiving.name
|
|
|
|
/atom/movable/screen/alert/give/Click(location, control, params)
|
|
. = ..()
|
|
if(!.)
|
|
return
|
|
|
|
if(!isliving(usr))
|
|
CRASH("User for [src] is of type \[[usr.type]\]. This should never happen.")
|
|
|
|
handle_transfer()
|
|
|
|
/atom/movable/screen/alert/give/examine(mob/user)
|
|
if(!examinable)
|
|
return ..()
|
|
|
|
return list(
|
|
span_boldnotice(name),
|
|
span_info("[offer.owner] is offering you the following item (click the alert to take it!):"),
|
|
"<hr>[jointext(offer.offered_item.examine(user), "\n")]",
|
|
)
|
|
|
|
/// An overrideable proc used simply to hand over the item when claimed, this is a proc so that high-fives can override them since nothing is actually transferred
|
|
/atom/movable/screen/alert/give/proc/handle_transfer()
|
|
var/mob/living/taker = owner
|
|
var/mob/living/offerer = offer.owner
|
|
var/obj/item/receiving = offer.offered_item
|
|
taker.take(offerer, receiving)
|
|
SEND_SIGNAL(offerer, COMSIG_LIVING_ITEM_GIVEN, taker, receiving)
|
|
|
|
/atom/movable/screen/alert/give/highfive
|
|
additional_desc_text = "Click this alert to slap it."
|
|
screentip_override_text = "High Five"
|
|
examinable = FALSE
|
|
/// Tracks active "to slow"ing so we can't spam click
|
|
var/too_slowing_this_guy = FALSE
|
|
|
|
/atom/movable/screen/alert/give/highfive/get_receiving_name(mob/living/taker, mob/living/offerer, obj/item/receiving)
|
|
return "a high-five"
|
|
|
|
/atom/movable/screen/alert/give/highfive/setup(mob/living/taker, datum/status_effect/offering/offer)
|
|
. = ..()
|
|
RegisterSignal(offer.owner, COMSIG_ATOM_EXAMINE_MORE, PROC_REF(check_fake_out))
|
|
|
|
/atom/movable/screen/alert/give/highfive/handle_transfer()
|
|
if(too_slowing_this_guy)
|
|
return
|
|
|
|
var/mob/living/taker = owner
|
|
var/mob/living/offerer = offer.owner
|
|
var/obj/item/receiving = offer.offered_item
|
|
if(!QDELETED(receiving) && offerer.is_holding(receiving))
|
|
receiving.on_offer_taken(offerer, taker)
|
|
return
|
|
|
|
too_slow_p1()
|
|
|
|
/// If the person who offered the high five no longer has it when we try to accept it, we get pranked hard
|
|
/atom/movable/screen/alert/give/highfive/proc/too_slow_p1()
|
|
var/mob/living/rube = owner
|
|
var/mob/living/offerer = offer?.owner
|
|
if(QDELETED(rube) || QDELETED(offerer))
|
|
qdel(src)
|
|
return
|
|
|
|
too_slowing_this_guy = TRUE
|
|
offerer.visible_message(span_notice("[rube] rushes in to high-five [offerer], but-"), span_nicegreen("[rube] falls for your trick just as planned, lunging for a high-five that no longer exists! Classic!"), ignored_mobs=rube)
|
|
to_chat(rube, span_nicegreen("You go in for [offerer]'s high-five, but-"))
|
|
addtimer(CALLBACK(src, PROC_REF(too_slow_p2), offerer, rube), 0.5 SECONDS)
|
|
|
|
/// Part two of the ultimate prank
|
|
/atom/movable/screen/alert/give/highfive/proc/too_slow_p2()
|
|
var/mob/living/rube = owner
|
|
var/mob/living/offerer = offer?.owner
|
|
if(!QDELETED(rube) && !QDELETED(offerer))
|
|
offerer.visible_message(span_danger("[offerer] pulls away from [rube]'s slap at the last second, dodging the high-five entirely!"), span_nicegreen("[rube] fails to make contact with your hand, making an utter fool of [rube.p_them()]self!"), span_hear("You hear a disappointing sound of flesh not hitting flesh!"), ignored_mobs=rube)
|
|
to_chat(rube, span_userdanger("[uppertext("NO! [offerer] PULLS [offerer.p_their()] HAND AWAY FROM YOURS! YOU'RE TOO SLOW!")]"))
|
|
playsound(offerer, 'sound/items/weapons/thudswoosh.ogg', 100, TRUE, 1)
|
|
rube.Knockdown(1 SECONDS)
|
|
offerer.add_mood_event("high_five", /datum/mood_event/down_low)
|
|
rube.add_mood_event("high_five", /datum/mood_event/too_slow)
|
|
offerer.remove_status_effect(/datum/status_effect/offering/no_item_received/high_five)
|
|
|
|
qdel(src)
|
|
|
|
/// If someone examine_more's the offerer while they're trying to pull a too-slow, it'll tip them off to the offerer's trickster ways
|
|
/atom/movable/screen/alert/give/highfive/proc/check_fake_out(mob/source, mob/user, list/examine_list)
|
|
SIGNAL_HANDLER
|
|
|
|
if(QDELETED(offer.offered_item))
|
|
examine_list += span_warning("[source]'s arm appears tensed up, as if [source.p_they()] plan on pulling it back suddenly...")
|
|
|
|
/atom/movable/screen/alert/give/hand
|
|
screentip_override_text = "Take Hand"
|
|
examinable = FALSE
|
|
|
|
/atom/movable/screen/alert/give/hand/get_receiving_name(mob/living/taker, mob/living/offerer, obj/item/receiving)
|
|
additional_desc_text = "Click this alert to take it and let [offerer.p_them()] pull you around!"
|
|
return "[offerer.p_their()] [receiving.name]"
|
|
|
|
/atom/movable/screen/alert/give/hand/helping
|
|
|
|
/atom/movable/screen/alert/give/hand/helping/get_receiving_name(mob/living/taker, mob/living/offerer, obj/item/receiving)
|
|
. = ..()
|
|
additional_desc_text = "Click this alert to let them help you up!"
|
|
|
|
/// Gives the player the option to succumb while in critical condition
|
|
/atom/movable/screen/alert/succumb
|
|
name = "Succumb"
|
|
desc = "Shuffle off this mortal coil."
|
|
use_user_hud_icon = USER_HUD_STYLE_INHERIT
|
|
overlay_icon = 'icons/mob/simple/mob.dmi'
|
|
overlay_state = "ghost"
|
|
clickable_glow = TRUE
|
|
var/static/list/death_titles = list(
|
|
"Goodnight, Sweet Prince",
|
|
"Game Over, Man",
|
|
"End Of The Road",
|
|
"Live Long And Prosper",
|
|
"See You Space Cowboy...",
|
|
"It's Been An Honor",
|
|
"The Curtains Close",
|
|
"All Good Things Must End"
|
|
)
|
|
|
|
/atom/movable/screen/alert/succumb/Click(location, control, params)
|
|
. = ..()
|
|
if(!.)
|
|
return
|
|
var/mob/living/living_owner = owner
|
|
if(!CAN_SUCCUMB(living_owner) && !HAS_TRAIT(living_owner, TRAIT_SUCCUMB_OVERRIDE)) //checked again in [mob/living/verb/succumb()]
|
|
return
|
|
|
|
var/title = pick(death_titles)
|
|
|
|
//Succumbing with a message
|
|
var/last_whisper = tgui_input_text(usr, "Do you have any last words?", title, max_length = CHAT_MESSAGE_MAX_LENGTH, encode = FALSE) // saycode already handles sanitization
|
|
if(isnull(last_whisper))
|
|
return
|
|
if(length(last_whisper))
|
|
living_owner.say("#[last_whisper]")
|
|
living_owner.succumb(whispered = length(last_whisper) > 0)
|
|
|
|
//ALIENS
|
|
|
|
/atom/movable/screen/alert/alien_plas
|
|
name = "Plasma"
|
|
desc = "There's flammable plasma in the air. If it lights up, you'll be toast."
|
|
icon_state = ALERT_XENO_PLASMA
|
|
alerttooltipstyle = "alien"
|
|
|
|
/atom/movable/screen/alert/alien_fire
|
|
// This alert is temporarily gonna be thrown for all hot air but one day it will be used for literally being on fire
|
|
name = "Too Hot"
|
|
desc = "It's too hot! Flee to space or at least away from the flames. Standing on weeds will heal you."
|
|
icon_state = ALERT_XENO_FIRE
|
|
alerttooltipstyle = "alien"
|
|
|
|
/atom/movable/screen/alert/alien_vulnerable
|
|
name = "Severed Matriarchy"
|
|
desc = "Your queen has been killed, you will suffer movement penalties and loss of hivemind. A new queen cannot be made until you recover."
|
|
icon_state = ALERT_XENO_NOQUEEN
|
|
alerttooltipstyle = "alien"
|
|
|
|
//BLOBS
|
|
|
|
/atom/movable/screen/alert/nofactory
|
|
name = "No Factory"
|
|
desc = "You have no factory, and are slowly dying!"
|
|
icon_state = "blobbernaut_nofactory"
|
|
alerttooltipstyle = "blob"
|
|
|
|
// BLOODCULT
|
|
|
|
/atom/movable/screen/alert/bloodsense
|
|
name = "Blood Sense"
|
|
desc = "Allows you to sense blood that is manipulated by dark magicks."
|
|
icon_state = "cult_sense"
|
|
alerttooltipstyle = "cult"
|
|
var/static/image/narnar
|
|
var/angle = 0
|
|
var/mob/living/basic/construct/construct_owner
|
|
|
|
/atom/movable/screen/alert/bloodsense/Initialize(mapload, datum/hud/hud_owner)
|
|
. = ..()
|
|
narnar = new('icons/hud/screen_alert.dmi', "mini_nar")
|
|
START_PROCESSING(SSprocessing, src)
|
|
|
|
/atom/movable/screen/alert/bloodsense/Destroy()
|
|
construct_owner = null
|
|
STOP_PROCESSING(SSprocessing, src)
|
|
return ..()
|
|
|
|
/atom/movable/screen/alert/bloodsense/process()
|
|
var/atom/blood_target
|
|
|
|
if(!owner.mind)
|
|
return
|
|
|
|
if(isconstruct(owner))
|
|
construct_owner = owner
|
|
else
|
|
construct_owner = null
|
|
|
|
// construct track
|
|
if(construct_owner?.seeking && construct_owner.construct_master)
|
|
blood_target = construct_owner.construct_master
|
|
desc = "Your blood sense is leading you to [construct_owner.construct_master]"
|
|
|
|
// cult track
|
|
var/datum/antagonist/cult/antag = owner.mind.has_antag_datum(/datum/antagonist/cult,TRUE)
|
|
if(antag)
|
|
var/datum/objective/sacrifice/sac_objective = locate() in antag.cult_team.objectives
|
|
if(antag.cult_team.blood_target)
|
|
if(!get_turf(antag.cult_team.blood_target))
|
|
antag.cult_team.unset_blood_target()
|
|
else
|
|
blood_target = antag.cult_team.blood_target
|
|
if(!blood_target)
|
|
if(sac_objective && !sac_objective.check_completion())
|
|
if(icon_state == "runed_sense0")
|
|
return
|
|
animate(src, transform = null, time = 1, loop = 0)
|
|
angle = 0
|
|
cut_overlays()
|
|
icon_state = "runed_sense0"
|
|
desc = "Nar'Sie demands that [sac_objective.target] be sacrificed before the summoning ritual can begin."
|
|
add_overlay(sac_objective.sac_image)
|
|
else
|
|
var/datum/objective/eldergod/summon_objective = locate() in antag.cult_team.objectives
|
|
if(!summon_objective)
|
|
return
|
|
var/list/location_list = list()
|
|
for(var/area/area_to_check in summon_objective.summon_spots)
|
|
location_list += area_to_check.get_original_area_name()
|
|
desc = "The sacrifice is complete, summon Nar'Sie! The summoning can only take place in [english_list(location_list)]!"
|
|
if(icon_state == "runed_sense1")
|
|
return
|
|
animate(src, transform = null, time = 1, loop = 0)
|
|
angle = 0
|
|
cut_overlays()
|
|
icon_state = "runed_sense1"
|
|
add_overlay(narnar)
|
|
return
|
|
|
|
// actual tracking
|
|
var/turf/P = get_turf(blood_target)
|
|
var/turf/Q = get_turf(owner)
|
|
if(!P || !Q || (P.z != Q.z)) //The target is on a different Z level, we cannot sense that far.
|
|
icon_state = "runed_sense2"
|
|
desc = "You can no longer sense your target's presence."
|
|
return
|
|
if(isliving(blood_target))
|
|
var/mob/living/real_target = blood_target
|
|
desc = "You are currently tracking [real_target.real_name] in [get_area_name(blood_target)]."
|
|
else
|
|
desc = "You are currently tracking [blood_target] in [get_area_name(blood_target)]."
|
|
|
|
var/target_angle = get_angle(Q, P)
|
|
var/target_dist = get_dist(P, Q)
|
|
cut_overlays()
|
|
switch(target_dist)
|
|
if(0 to 1)
|
|
icon_state = "runed_sense2"
|
|
if(2 to 8)
|
|
icon_state = "arrow8"
|
|
if(9 to 15)
|
|
icon_state = "arrow7"
|
|
if(16 to 22)
|
|
icon_state = "arrow6"
|
|
if(23 to 29)
|
|
icon_state = "arrow5"
|
|
if(30 to 36)
|
|
icon_state = "arrow4"
|
|
if(37 to 43)
|
|
icon_state = "arrow3"
|
|
if(44 to 50)
|
|
icon_state = "arrow2"
|
|
if(51 to 57)
|
|
icon_state = "arrow1"
|
|
if(58 to 64)
|
|
icon_state = "arrow0"
|
|
if(65 to 400)
|
|
icon_state = "arrow"
|
|
var/difference = target_angle - angle
|
|
angle = target_angle
|
|
if(!difference)
|
|
return
|
|
var/matrix/final = matrix(transform)
|
|
final.Turn(difference)
|
|
animate(src, transform = final, time = 5, loop = 0)
|
|
|
|
|
|
//GUARDIANS
|
|
|
|
/atom/movable/screen/alert/status_effect/instealth
|
|
name = "In Stealth"
|
|
desc = "You are in stealth and your next attack will do bonus damage!"
|
|
icon_state = "guardian_instealth"
|
|
alerttooltipstyle = "parasite"
|
|
|
|
//SILICONS
|
|
|
|
/atom/movable/screen/alert/nocell
|
|
name = "Missing Power Cell"
|
|
desc = "Unit has no power cell. No modules available until a power cell is reinstalled. Robotics may provide assistance."
|
|
icon_state = "no_cell"
|
|
|
|
/atom/movable/screen/alert/emptycell
|
|
name = "Out of Power"
|
|
desc = "Unit's power cell has no charge remaining. No modules available until power cell is recharged."
|
|
icon_state = "empty_cell"
|
|
|
|
/atom/movable/screen/alert/emptycell/Initialize(mapload, datum/hud/hud_owner)
|
|
. = ..()
|
|
update_appearance(updates=UPDATE_DESC)
|
|
|
|
/atom/movable/screen/alert/emptycell/update_desc()
|
|
. = ..()
|
|
desc = initial(desc)
|
|
if(length(GLOB.roundstart_station_borgcharger_areas))
|
|
desc += " Recharging stations are available in [english_list(GLOB.roundstart_station_borgcharger_areas)]."
|
|
|
|
/atom/movable/screen/alert/lowcell
|
|
name = "Low Charge"
|
|
desc = "Unit's power cell is running low."
|
|
icon_state = "low_cell"
|
|
|
|
/atom/movable/screen/alert/lowcell/Initialize(mapload, datum/hud/hud_owner)
|
|
. = ..()
|
|
update_appearance(updates=UPDATE_DESC)
|
|
|
|
/atom/movable/screen/alert/lowcell/update_desc()
|
|
. = ..()
|
|
desc = initial(desc)
|
|
if(length(GLOB.roundstart_station_borgcharger_areas))
|
|
desc += " Recharging stations are available in [english_list(GLOB.roundstart_station_borgcharger_areas)]."
|
|
|
|
//MECH
|
|
|
|
/atom/movable/screen/alert/lowcell/mech/update_desc()
|
|
. = ..()
|
|
desc = initial(desc)
|
|
if(length(GLOB.roundstart_station_mechcharger_areas))
|
|
desc += " Power ports are available in [english_list(GLOB.roundstart_station_mechcharger_areas)]."
|
|
|
|
/atom/movable/screen/alert/emptycell/mech/update_desc()
|
|
. = ..()
|
|
desc = initial(desc)
|
|
if(length(GLOB.roundstart_station_mechcharger_areas))
|
|
desc += " Power ports are available in [english_list(GLOB.roundstart_station_mechcharger_areas)]."
|
|
|
|
//Ethereal
|
|
|
|
/atom/movable/screen/alert/lowcell/ethereal
|
|
name = "Low Blood Charge"
|
|
desc = "Your charge is running low, find a source of energy! Use a recharging station, eat some Ethereal-friendly food, or syphon some power from lights, a power cell, or an APC (done by right clicking on combat mode)."
|
|
|
|
/atom/movable/screen/alert/emptycell/ethereal
|
|
name = "No Blood Charge"
|
|
desc = "You are out of juice, find a source of energy! Use a recharging station, eat some Ethereal-friendly food, or syphon some power from lights, a power cell, or an APC (done by right clicking on combat mode)."
|
|
|
|
/atom/movable/screen/alert/ethereal_overcharge
|
|
name = "Blood Overcharge"
|
|
desc = "Your charge is running dangerously high, find an outlet for your energy! Right click an APC while not in combat mode."
|
|
icon_state = "cell_overcharge"
|
|
|
|
//MODsuit unique
|
|
/atom/movable/screen/alert/nocore
|
|
name = "Missing Core"
|
|
desc = "Unit has no core. No modules available until a core is reinstalled. Robotics may provide assistance."
|
|
icon_state = "no_cell"
|
|
|
|
/atom/movable/screen/alert/emptycell/plasma
|
|
name = "Out of Power"
|
|
desc = "Unit's plasma core has no charge remaining. No modules available until plasma core is recharged. \
|
|
Unit can be refilled through plasma fuel."
|
|
|
|
/atom/movable/screen/alert/emptycell/plasma/update_desc()
|
|
. = ..()
|
|
desc = initial(desc)
|
|
|
|
/atom/movable/screen/alert/lowcell/plasma
|
|
name = "Low Charge"
|
|
desc = "Unit's plasma core is running low. Unit can be refilled through plasma fuel."
|
|
|
|
/atom/movable/screen/alert/lowcell/plasma/update_desc()
|
|
. = ..()
|
|
desc = initial(desc)
|
|
|
|
//Need to cover all use cases - emag, illegal upgrade module, malf AI hack, traitor cyborg
|
|
/atom/movable/screen/alert/hacked
|
|
name = "Hacked"
|
|
desc = "Hazardous non-standard equipment detected. Please ensure any usage of this equipment is in line with unit's laws, if any."
|
|
icon_state = ALERT_HACKED
|
|
|
|
/atom/movable/screen/alert/locked
|
|
name = "Locked Down"
|
|
desc = "Unit has been remotely locked down. Usage of a Robotics Control Console like the one in the Research Director's \
|
|
office by your AI master or any qualified human may resolve this matter. Robotics may provide further assistance if necessary."
|
|
icon_state = ALERT_LOCKED
|
|
|
|
/atom/movable/screen/alert/newlaw
|
|
name = "Law Update"
|
|
desc = "Laws have potentially been uploaded to or removed from this unit. Please be aware of any changes \
|
|
so as to remain in compliance with the most up-to-date laws."
|
|
icon_state = ALERT_NEW_LAW
|
|
timeout = 30 SECONDS
|
|
|
|
/atom/movable/screen/alert/hackingapc
|
|
name = "Hacking APC"
|
|
desc = "An Area Power Controller is being hacked. When the process is \
|
|
complete, you will have exclusive control of it, and you will gain \
|
|
additional processing time to unlock more malfunction abilities."
|
|
icon_state = ALERT_HACKING_APC
|
|
timeout = 60 SECONDS
|
|
clickable_glow = TRUE
|
|
var/atom/target = null
|
|
|
|
/atom/movable/screen/alert/hackingapc/Click()
|
|
. = ..()
|
|
if(!.)
|
|
return
|
|
|
|
var/mob/living/silicon/ai/ai_owner = owner
|
|
var/turf/target_turf = get_turf(target)
|
|
if(target_turf)
|
|
ai_owner.eyeobj.setLoc(target_turf)
|
|
|
|
//MECHS
|
|
|
|
/atom/movable/screen/alert/low_mech_integrity
|
|
name = "Mech Damaged"
|
|
desc = "Mech integrity is low."
|
|
icon_state = "low_mech_integrity"
|
|
|
|
|
|
//GHOSTS
|
|
//TODO: expand this system to replace the pollCandidates/CheckAntagonist/"choose quickly"/etc Yes/No messages
|
|
/atom/movable/screen/alert/revival
|
|
name = "Revival"
|
|
desc = "Someone is trying to revive you. Re-enter your corpse if you want to be revived!"
|
|
icon_state = "template"
|
|
timeout = 30 SECONDS
|
|
clickable_glow = TRUE
|
|
|
|
/atom/movable/screen/alert/revival/Click()
|
|
. = ..()
|
|
if(!.)
|
|
return
|
|
var/mob/dead/observer/dead_owner = owner
|
|
dead_owner.reenter_corpse()
|
|
|
|
/atom/movable/screen/alert/notify_action
|
|
name = "Something interesting is happening!"
|
|
desc = "This can be clicked on to perform an action."
|
|
icon_state = "template"
|
|
use_user_hud_icon = USER_HUD_STYLE_PREFS
|
|
timeout = 30 SECONDS
|
|
clickable_glow = TRUE
|
|
/// Weakref to the target atom to use the action on
|
|
var/datum/weakref/target_ref
|
|
/// If we want to interact on click rather than jump/orbit
|
|
var/click_interact = FALSE
|
|
|
|
/atom/movable/screen/alert/notify_action/Click()
|
|
. = ..()
|
|
if(!.)
|
|
return
|
|
|
|
var/atom/target = target_ref?.resolve()
|
|
if(isnull(target) || !isobserver(owner) || target == owner)
|
|
return
|
|
|
|
var/mob/dead/observer/ghost_owner = owner
|
|
|
|
if(click_interact)
|
|
ghost_owner.jump_to_interact(target)
|
|
return
|
|
|
|
ghost_owner.observer_view(target)
|
|
|
|
/atom/movable/screen/alert/poll_alert
|
|
name = "Looking for candidates"
|
|
icon_state = "template"
|
|
use_user_hud_icon = USER_HUD_STYLE_PREFS
|
|
timeout = 30 SECONDS
|
|
ghost_screentips = TRUE
|
|
/// If true you need to call START_PROCESSING manually
|
|
var/show_time_left = FALSE
|
|
/// MA for maptext showing time left for poll
|
|
var/mutable_appearance/time_left_overlay
|
|
/// MA for overlay showing that you're signed up to poll
|
|
var/mutable_appearance/signed_up_overlay
|
|
/// MA for maptext overlay showing how many polls are stacked together
|
|
var/mutable_appearance/stacks_overlay
|
|
/// MA for maptext overlay showing how many candidates are signed up to a poll
|
|
var/mutable_appearance/candidates_num_overlay
|
|
/// MA for maptext overlay of poll's role name or question
|
|
var/mutable_appearance/role_overlay
|
|
/// If set, on Click() it'll register the player as a candidate
|
|
var/datum/candidate_poll/poll
|
|
|
|
/atom/movable/screen/alert/poll_alert/Initialize(mapload)
|
|
. = ..()
|
|
signed_up_overlay = mutable_appearance('icons/hud/screen_gen.dmi', icon_state = "selector")
|
|
register_context()
|
|
|
|
/atom/movable/screen/alert/poll_alert/proc/set_role_overlay()
|
|
var/role_or_only_question = poll.role || "?"
|
|
role_overlay = new
|
|
role_overlay.screen_loc = screen_loc
|
|
role_overlay.maptext = MAPTEXT("<span style='text-align: right; color: #B3E3FC'>[full_capitalize(role_or_only_question)]</span>")
|
|
role_overlay.maptext_width = 128
|
|
role_overlay.transform = role_overlay.transform.Translate(-128, 0)
|
|
add_overlay(role_overlay)
|
|
|
|
/atom/movable/screen/alert/poll_alert/Destroy()
|
|
QDEL_NULL(role_overlay)
|
|
QDEL_NULL(time_left_overlay)
|
|
QDEL_NULL(stacks_overlay)
|
|
QDEL_NULL(candidates_num_overlay)
|
|
QDEL_NULL(signed_up_overlay)
|
|
if(poll)
|
|
poll.alert_buttons -= src
|
|
poll = null
|
|
return ..()
|
|
|
|
/atom/movable/screen/alert/poll_alert/add_context(atom/source, list/context, obj/item/held_item, mob/user)
|
|
. = ..()
|
|
var/left_click_text
|
|
if(poll)
|
|
if(owner in poll.signed_up)
|
|
left_click_text = "Leave"
|
|
else
|
|
left_click_text = "Enter"
|
|
context[SCREENTIP_CONTEXT_LMB] = "[left_click_text] Poll"
|
|
if(poll.ignoring_category)
|
|
var/selected_never = FALSE
|
|
if(owner.ckey in GLOB.poll_ignore[poll.ignoring_category])
|
|
selected_never = TRUE
|
|
context[SCREENTIP_CONTEXT_ALT_LMB] = "[selected_never ? "Cancel " : ""]Never For This Round"
|
|
if(poll.jump_to_me && isobserver(owner))
|
|
context[SCREENTIP_CONTEXT_CTRL_LMB] = "Jump To"
|
|
return CONTEXTUAL_SCREENTIP_SET
|
|
|
|
/atom/movable/screen/alert/poll_alert/process()
|
|
if(show_time_left)
|
|
var/timeleft = timeout - world.time
|
|
if(timeleft <= 0)
|
|
return PROCESS_KILL
|
|
cut_overlay(time_left_overlay)
|
|
time_left_overlay = new
|
|
time_left_overlay.maptext = MAPTEXT("<span style='color: [(timeleft <= 10 SECONDS) ? "red" : "white"]'><b>[ceil(timeleft / (1 SECONDS))]</b></span>")
|
|
time_left_overlay.transform = time_left_overlay.transform.Translate(4, 19)
|
|
add_overlay(time_left_overlay)
|
|
|
|
/atom/movable/screen/alert/poll_alert/Click(location, control, params)
|
|
. = ..()
|
|
if(!. || isnull(poll))
|
|
return
|
|
var/list/modifiers = params2list(params)
|
|
if(LAZYACCESS(modifiers, ALT_CLICK) && poll.ignoring_category)
|
|
set_never_round()
|
|
return
|
|
if(LAZYACCESS(modifiers, CTRL_CLICK) && poll.jump_to_me)
|
|
jump_to_jump_target()
|
|
return
|
|
handle_sign_up()
|
|
|
|
/atom/movable/screen/alert/poll_alert/proc/handle_sign_up()
|
|
if(owner in poll.signed_up)
|
|
poll.remove_candidate(owner)
|
|
else if(!(owner.ckey in GLOB.poll_ignore[poll.ignoring_category]))
|
|
poll.sign_up(owner)
|
|
update_signed_up_overlay()
|
|
|
|
/atom/movable/screen/alert/poll_alert/proc/set_never_round()
|
|
if(!(owner.ckey in GLOB.poll_ignore[poll.ignoring_category]))
|
|
poll.do_never_for_this_round(owner)
|
|
color = "red"
|
|
update_signed_up_overlay()
|
|
return
|
|
poll.undo_never_for_this_round(owner)
|
|
color = initial(color)
|
|
|
|
/atom/movable/screen/alert/poll_alert/proc/jump_to_jump_target()
|
|
if(!poll?.jump_to_me || !isobserver(owner))
|
|
return
|
|
var/turf/target_turf = get_turf(poll.jump_to_me)
|
|
if(target_turf && isturf(target_turf))
|
|
owner.abstract_move(target_turf)
|
|
|
|
/atom/movable/screen/alert/poll_alert/Topic(href, href_list)
|
|
if(href_list["never"])
|
|
set_never_round()
|
|
return
|
|
if(href_list["signup"])
|
|
handle_sign_up()
|
|
if(href_list["jump"])
|
|
jump_to_jump_target()
|
|
return
|
|
|
|
/atom/movable/screen/alert/poll_alert/proc/update_signed_up_overlay()
|
|
if(owner in poll.signed_up)
|
|
add_overlay(signed_up_overlay)
|
|
else
|
|
cut_overlay(signed_up_overlay)
|
|
|
|
/atom/movable/screen/alert/poll_alert/proc/update_candidates_number_overlay()
|
|
cut_overlay(candidates_num_overlay)
|
|
if(!length(poll.signed_up))
|
|
return
|
|
candidates_num_overlay = new
|
|
candidates_num_overlay.maptext = MAPTEXT("<span style='text-align: right; color: aqua'>[length(poll.signed_up)]</span>")
|
|
candidates_num_overlay.transform = candidates_num_overlay.transform.Translate(-4, 2)
|
|
add_overlay(candidates_num_overlay)
|
|
|
|
/atom/movable/screen/alert/poll_alert/proc/update_stacks_overlay()
|
|
cut_overlay(stacks_overlay)
|
|
var/stack_number = 1
|
|
for(var/datum/candidate_poll/other_poll as anything in SSpolling.currently_polling)
|
|
if(other_poll != poll && other_poll.poll_key == poll.poll_key && !other_poll.finished)
|
|
stack_number++
|
|
if(stack_number <= 1)
|
|
return
|
|
stacks_overlay = new
|
|
stacks_overlay.maptext = MAPTEXT("<span style='color: yellow'>[stack_number]x</span>")
|
|
stacks_overlay.transform = stacks_overlay.transform.Translate(3, 2)
|
|
stacks_overlay.layer = layer
|
|
add_overlay(stacks_overlay)
|
|
|
|
//OBJECT-BASED
|
|
|
|
/atom/movable/screen/alert/buckled
|
|
name = "Buckled"
|
|
desc = "You've been buckled to something. Click the alert to unbuckle unless you're handcuffed."
|
|
use_user_hud_icon = USER_HUD_STYLE_INHERIT
|
|
overlay_state = "buckled"
|
|
click_master = FALSE
|
|
clickable_glow = TRUE
|
|
|
|
/atom/movable/screen/alert/buckled/Click()
|
|
. = ..()
|
|
if(!.)
|
|
return
|
|
|
|
var/mob/living/living_owner = owner
|
|
|
|
if(!living_owner.can_resist())
|
|
return
|
|
living_owner.changeNext_move(CLICK_CD_RESIST)
|
|
if(living_owner.last_special <= world.time)
|
|
return living_owner.resist_buckle()
|
|
|
|
/atom/movable/screen/alert/restrained
|
|
icon_state = "template"
|
|
use_user_hud_icon = USER_HUD_STYLE_INHERIT
|
|
clickable_glow = TRUE
|
|
|
|
/atom/movable/screen/alert/restrained/handcuffed
|
|
name = "Handcuffed"
|
|
desc = "You're handcuffed and can't act. If anyone drags you, you won't be able to move. Click the alert to free yourself."
|
|
click_master = FALSE
|
|
|
|
/atom/movable/screen/alert/restrained/legcuffed
|
|
name = "Legcuffed"
|
|
desc = "You're legcuffed, which slows you down considerably. Click the alert to free yourself."
|
|
click_master = FALSE
|
|
|
|
/atom/movable/screen/alert/restrained/Click()
|
|
. = ..()
|
|
if(!.)
|
|
return
|
|
|
|
var/mob/living/living_owner = owner
|
|
|
|
if(!living_owner.can_resist())
|
|
return
|
|
|
|
living_owner.changeNext_move(CLICK_CD_RESIST)
|
|
if((living_owner.mobility_flags & MOBILITY_MOVE) && (living_owner.last_special <= world.time))
|
|
return living_owner.resist_restraints()
|
|
|
|
/atom/movable/screen/alert/shoes
|
|
use_user_hud_icon = USER_HUD_STYLE_INHERIT
|
|
overlay_icon = /obj/item/clothing/shoes/sneakers::icon
|
|
overlay_state = /obj/item/clothing/shoes/sneakers::icon_state
|
|
clickable_glow = TRUE
|
|
|
|
/atom/movable/screen/alert/shoes/Click()
|
|
. = ..()
|
|
if(!.)
|
|
return
|
|
|
|
var/mob/living/carbon/carbon_owner = owner
|
|
|
|
if(!carbon_owner.can_resist() || !carbon_owner.shoes)
|
|
return
|
|
|
|
carbon_owner.changeNext_move(CLICK_CD_RESIST)
|
|
carbon_owner.shoes.handle_tying(carbon_owner)
|
|
|
|
/atom/movable/screen/alert/shoes/untied
|
|
name = "Untied Shoes"
|
|
desc = "Your shoes are untied! Click the alert or your shoes to tie them."
|
|
use_user_hud_icon = USER_HUD_STYLE_INHERIT
|
|
overlay_icon = /obj/item/clothing/shoes/sneakers::icon
|
|
overlay_state = /obj/item/clothing/shoes/sneakers::icon_state
|
|
|
|
/atom/movable/screen/alert/shoes/knotted
|
|
name = "Knotted Shoes"
|
|
desc = "Someone tied your shoelaces together! Click the alert or your shoes to undo the knot."
|
|
|
|
/atom/movable/screen/alert/unpossess_object
|
|
name = "Unpossess"
|
|
desc = "You are possessing an object. Click this alert to unpossess it."
|
|
use_user_hud_icon = USER_HUD_STYLE_INHERIT
|
|
overlay_state = "buckled"
|
|
clickable_glow = TRUE
|
|
|
|
/atom/movable/screen/alert/unpossess_object/Click()
|
|
. = ..()
|
|
if(!.)
|
|
return
|
|
|
|
qdel(owner.GetComponent(/datum/component/object_possession))
|
|
|
|
// PRIVATE = only edit, use, or override these if you're editing the system as a whole
|
|
|
|
/// Gets the placement for the alert based on its index
|
|
/datum/hud/proc/get_ui_alert_placement(index)
|
|
// Only has support for 5 slots currently
|
|
if(index > 5)
|
|
return ""
|
|
|
|
return "EAST-1:28,CENTER+[6 - index]:[29 - (index * 2)]"
|
|
|
|
// Re-render all alerts - also called in /datum/hud/show_hud() because it's needed there
|
|
/datum/hud/proc/reorganize_alerts(mob/viewmob)
|
|
var/mob/screenmob = viewmob || mymob
|
|
if(!screenmob.client)
|
|
return FALSE
|
|
var/list/alerts = mymob.alerts
|
|
if(hud_version != HUD_STYLE_STANDARD)
|
|
for(var/i in 1 to alerts.len)
|
|
screenmob.client.screen -= alerts[alerts[i]]
|
|
return TRUE
|
|
|
|
var/user_pref_hud = ui_style2icon(mymob.client?.prefs?.read_preference(/datum/preference/choiced/ui_style))
|
|
for(var/i in 1 to length(alerts))
|
|
var/atom/movable/screen/alert/alert = alerts[alerts[i]]
|
|
switch(alert.use_user_hud_icon)
|
|
if(USER_HUD_STYLE_INHERIT)
|
|
alert.icon = ui_style
|
|
if(USER_HUD_STYLE_PREFS)
|
|
if(user_pref_hud)
|
|
alert.icon = user_pref_hud
|
|
alert.screen_loc = get_ui_alert_placement(i)
|
|
screenmob.client.screen |= alert
|
|
if(!viewmob)
|
|
for(var/viewer in mymob.observers)
|
|
reorganize_alerts(viewer)
|
|
return TRUE
|