mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-30 02:52:30 +00:00
## About The Pull Request this is a revival of #82635 . i got permission from potato to reopen this, he did almost all the work. i only just solved the conflicts and fixed all the bugs that were preventing the original from being merged (but it should be TMed first) ## Why It's Good For The Game slightly improves the performance of basic mob AI ## Changelog 🆑 LemonInTheDark refactor: able_to_run and incapacitated have been refactored to be event based /🆑 --------- Co-authored-by: LemonInTheDark <58055496+LemonInTheDark@users.noreply.github.com> Co-authored-by: ZephyrTFA <matthew@tfaluc.com>
77 lines
1.5 KiB
Plaintext
77 lines
1.5 KiB
Plaintext
/**
|
|
* ## Loot panel
|
|
* A datum that stores info containing the contents of a turf.
|
|
* Handles opening the lootpanel UI and searching the turf for items.
|
|
*/
|
|
/datum/lootpanel
|
|
/// The owner of the panel
|
|
var/client/owner
|
|
/// The list of all search objects indexed.
|
|
var/list/datum/search_object/contents = list()
|
|
/// The list of search_objects needing processed
|
|
var/list/datum/search_object/to_image = list()
|
|
/// We've been notified about client version
|
|
var/notified = FALSE
|
|
/// The turf being searched
|
|
var/turf/source_turf
|
|
|
|
|
|
/datum/lootpanel/New(client/owner)
|
|
. = ..()
|
|
|
|
src.owner = owner
|
|
|
|
|
|
/datum/lootpanel/Destroy(force)
|
|
reset_contents()
|
|
owner = null
|
|
source_turf = null
|
|
|
|
return ..()
|
|
|
|
|
|
/datum/lootpanel/ui_interact(mob/user, datum/tgui/ui)
|
|
ui = SStgui.try_update_ui(user, src, ui)
|
|
if(!ui)
|
|
ui = new(user, src, "LootPanel")
|
|
ui.set_autoupdate(FALSE)
|
|
ui.open()
|
|
|
|
|
|
/datum/lootpanel/ui_close(mob/user)
|
|
. = ..()
|
|
|
|
source_turf = null
|
|
reset_contents()
|
|
|
|
|
|
/datum/lootpanel/ui_data(mob/user)
|
|
var/list/data = list()
|
|
|
|
data["contents"] = get_contents()
|
|
data["is_blind"] = !!user.is_blind()
|
|
data["searching"] = length(to_image)
|
|
|
|
return data
|
|
|
|
|
|
/datum/lootpanel/ui_status(mob/user, datum/ui_state/state)
|
|
if(user.incapacitated)
|
|
return UI_DISABLED
|
|
|
|
return UI_INTERACTIVE
|
|
|
|
|
|
/datum/lootpanel/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
|
|
. = ..()
|
|
if(.)
|
|
return
|
|
|
|
switch(action)
|
|
if("grab")
|
|
return grab(usr, params)
|
|
if("refresh")
|
|
return populate_contents()
|
|
|
|
return FALSE
|