mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-11 10:11:09 +00:00
## About The Pull Request When it comes to deconstructing an object we have `proc/deconstruct()` & `NO_DECONSTRUCT` Lets talk about the flag first. **Problems with `NO_DECONSTRUCTION`** I know what the comment says on what it should dob5593bc693/code/__DEFINES/obj_flags.dm (L18)But everywhere people have decided to give their own meaning/definition to this flag. Here are some examples on how this flag is used **1. Make the object just disappear(not drop anything) when deconstructed** This is by far the largest use case everywhere. If an object is deconstructed(either via tools or smashed apart) then if it has this flag it should not drop any of its contents but just disappear. You have seen this code pattern used everywhereb5593bc693/code/game/machinery/constructable_frame.dm (L26-L31)This behaviour is then leveraged by 2 important components. When an object is frozen, if it is deconstructed it should just disappear without leaving any traces behindb5593bc693/code/datums/elements/frozen.dm (L66-L67)By hologram objects. Obviously if you destroy an hologram nothing real should drop outb5593bc693/code/modules/holodeck/computer.dm (L301-L304)And there are other use cases as well but we won't go into them as they aren't as significant as these. **2. To stop an object from being wrenched ??** Yeah this one is weird. Like why? I understand in some instances (chair, table, rack etc) a wrench can be used to deconstruct a object so using the flag there to stop it from happening makes sense but why can't we even anchor an object just because of this flag?b5593bc693/code/game/objects/objs.dm (L368-L369)This is one of those instances where somebody just decided this behaviour for their own convenience just like the above example with no explanation as to why **3. To stop using tools to deconstruct the object** This was the original intent of the flag but it is enforced in few places far & between. One example is when deconstructing the a machine via crowbar.b5593bc693/code/game/machinery/_machinery.dm (L811)But machines are a special dual use case for this flag. Because if you look at its deconstruct proc the flag also prevents the machine from spawning a frame.b5593bc693/code/game/machinery/_machinery.dm (L820-L822)How can 1 flag serve 2 purposes within the same type? **4. Simply forget to check for this flag altogether** Yup if you find this flag not doing its job for some objects don't be surprised. People & sometimes even maintainers just forget that it even existsb5593bc693/code/game/objects/items/piggy_bank.dm (L66-L67)**Solution** These are the main examples i found. As you can see the same flag can perform 2 different functions within the same type and do something else in a different object & in some instances don't even work cause people just forget, etc. In order to bring consistency to this flag we need to move it to the atom level where it means the same thing everywhere. Where in the atom you may ask? .Well, I'll just post what MrMelbert said in https://github.com/tgstation/tgstation/pull/81656#discussion_r1503086862 > ...Ideally the .deconstruct call would handle NO_DECONSTRUCTION handling as it wants, Yup that's the ideal case now. This flag is checked directly in `deconstruct()`. Now like i said we want to give a universal definition to this flag and as you have seen from my examples it is used in 3 cases 1) Make an object disappear(doesn't dropping anything) when deconstructed 2) Stop it from being wrenched 3) Stop it from being deconstructed via tools We can't enforce points 2 & 3 inside `deconstruct()` which leaves us with only case 1) i.e. make the object disappear. And that's what i have done. Therefore after more than a decade or since this flag got introduced `NO_DECONSTRUCT` now has a new definition as of 2024 _"Make an object disappear(don't dropping anything) when deconstructed either via tools or forcefully smashed apart"_ Now i very well understand this will open up bugs in places where cases 2 & 3 are required but its worth it. In fact they could even be qol changes for all we know so who knows it might even benefit us but for now we need to give a universal definition to this flag to bring some consistency & that's what this PR does. **Problem with deconstruct()** This proc actually sends out a signal which is currently used by the material container but could be used by other objects later on.3e84c3e6da/code/game/objects/obj_defense.dm (L160)So objects that override this proc should call its parent. Sadly that isn't the case in many instances like such3e84c3e6da/code/game/machinery/deployable.dm (L20-L23)Instead of `return ..()` which would delete the object & send the signal it deletes the object directly thus the signal never gets sent. **Solution** Make this proc non overridable. For objects to add their own custom deconstruction behaviour a new proc has been introduced `atom_deconstruct()` Subtypes should now override this proc to handle object deconstruction. If objects have certain important stuff inside them (like mobs in machines for example) they want to drop by handling `NO_DECONSTRUCT` flag in a more carefully customized way they can do this by overriding `handle_deconstruct()` which by default delegates to `atom_deconstruct()` if the `NO_DECONSTRUCT` flag is absent. This proc will allow you to handle the flag in a more customized way if you ever need to. ## Why It's Good For The Game 1) I'm goanna post the full comment from MrMelbert https://github.com/tgstation/tgstation/pull/81656#discussion_r1503086862 > ...Ideally the .deconstruct call would handle NO_DECONSTRUCTION handling as it wants, but there's a shocking lack of consistency around NO_DECONSTRUCTION, where some objects treat it as "allow deconstruction, but make it drop no parts" and others simply "disallow deconstruction at all" This PR now makes `NO_DECONSTRUCTION` handled by `deconstruct()` & gives this flag the consistency it deserves. Not to mention as shown in case 4 there are objects that simply forgot to check for this flag. Now it applies for those missing instances as well. 2) No more copying pasting the most overused code pattern in this code base history `if(obj_flags & NO_DECONSTRUCTION)`. Just makes code cleaner everywhere 3) All objects now send the `COMSIG_OBJ_DECONSTRUCT` signal on object deconstruction which is now available for use should you need it ## Changelog 🆑 refactor: refactors how objects are deconstructed in relation to the `NO_DECONSTRUCTION` flag. Certain objects & machinery may display different tool interactions & behaviours when destroyed/deconstructed. Report these changes if you feel like they are bugs /🆑 --------- Co-authored-by: san7890 <the@san7890.com>
210 lines
6.6 KiB
Plaintext
210 lines
6.6 KiB
Plaintext
/**
|
|
* # Dispenser
|
|
*
|
|
* Immobile (but not dense) shell that can receive and dispense items.
|
|
*/
|
|
/obj/structure/dispenser_bot
|
|
name = "dispenser"
|
|
icon = 'icons/obj/science/circuits.dmi'
|
|
icon_state = "setup_drone_arms"
|
|
|
|
density = FALSE
|
|
light_system = OVERLAY_LIGHT
|
|
light_on = FALSE
|
|
|
|
var/max_weight = WEIGHT_CLASS_NORMAL
|
|
var/capacity = 20
|
|
|
|
var/list/obj/item/stored_items = list()
|
|
var/locked = FALSE
|
|
|
|
/obj/structure/dispenser_bot/atom_deconstruct(disassembled = TRUE)
|
|
for(var/obj/item/stored_item as anything in stored_items)
|
|
remove_item(stored_item)
|
|
|
|
/obj/structure/dispenser_bot/Destroy()
|
|
QDEL_LIST(stored_items)
|
|
return ..()
|
|
|
|
|
|
/obj/structure/dispenser_bot/proc/add_item(mob/user, obj/item/to_add)
|
|
balloon_alert(user, "inserted item")
|
|
stored_items += to_add
|
|
to_add.forceMove(src)
|
|
RegisterSignal(to_add, COMSIG_MOVABLE_MOVED, PROC_REF(handle_stored_item_moved))
|
|
RegisterSignal(to_add, COMSIG_QDELETING, PROC_REF(handle_stored_item_deleted))
|
|
SEND_SIGNAL(src, COMSIG_DISPENSERBOT_ADD_ITEM, to_add)
|
|
|
|
/obj/structure/dispenser_bot/proc/handle_stored_item_moved(obj/item/moving_item, atom/location)
|
|
SIGNAL_HANDLER
|
|
if(location != src)
|
|
remove_item(moving_item)
|
|
|
|
/obj/structure/dispenser_bot/proc/handle_stored_item_deleted(obj/item/deleting_item)
|
|
SIGNAL_HANDLER
|
|
remove_item(deleting_item)
|
|
|
|
/obj/structure/dispenser_bot/proc/remove_item(obj/item/to_remove)
|
|
UnregisterSignal(to_remove, list(
|
|
COMSIG_MOVABLE_MOVED,
|
|
COMSIG_QDELETING,
|
|
))
|
|
to_remove.forceMove(drop_location())
|
|
stored_items -= to_remove
|
|
SEND_SIGNAL(src, COMSIG_DISPENSERBOT_REMOVE_ITEM, to_remove)
|
|
|
|
|
|
/obj/structure/dispenser_bot/Initialize(mapload)
|
|
. = ..()
|
|
AddComponent(/datum/component/shell, list(
|
|
new /obj/item/circuit_component/dispenser_bot()
|
|
), SHELL_CAPACITY_LARGE)
|
|
|
|
/obj/structure/dispenser_bot/attackby(obj/item/item, mob/living/user, params)
|
|
if(user.combat_mode)
|
|
return ..()
|
|
if(istype(item, /obj/item/wrench) || istype(item, /obj/item/multitool) || istype(item, /obj/item/integrated_circuit))
|
|
return ..()
|
|
if(item.w_class > max_weight && !istype(item, /obj/item/storage/bag))
|
|
balloon_alert(user, "item too big!")
|
|
return FALSE
|
|
if(length(stored_items) >= capacity)
|
|
balloon_alert(user, "at maximum capacity!")
|
|
return FALSE
|
|
if(istype(item, /obj/item/storage/bag))
|
|
for(var/obj/item/bag_item in item.contents)
|
|
if(length(stored_items) >= capacity)
|
|
break
|
|
if(bag_item.w_class > max_weight || istype(bag_item, /obj/item/storage/bag))
|
|
continue
|
|
add_item(user, bag_item)
|
|
return TRUE
|
|
add_item(user, item)
|
|
return TRUE
|
|
|
|
/obj/structure/dispenser_bot/wrench_act(mob/living/user, obj/item/tool)
|
|
if(locked)
|
|
return
|
|
set_anchored(!anchored)
|
|
tool.play_tool_sound(src)
|
|
balloon_alert(user, "[anchored? "secured" : "unsecured"]")
|
|
return TRUE
|
|
|
|
/obj/item/circuit_component/dispenser_bot
|
|
display_name = "Dispenser"
|
|
desc = "A dispenser bot that can dispense items "
|
|
|
|
/// The list of items
|
|
var/datum/port/output/item_list
|
|
/// The item that was added/removed.
|
|
var/datum/port/output/item
|
|
/// Called when an item is added.
|
|
var/datum/port/output/on_item_added
|
|
/// Called when an item is removed.
|
|
var/datum/port/output/on_item_removed
|
|
|
|
ui_buttons = list(
|
|
"plus" = "add_vend_component",
|
|
)
|
|
|
|
/// Vendor components attached to this dispenser bot
|
|
var/list/obj/item/circuit_component/vendor_component/vendor_components = list()
|
|
|
|
var/max_vendor_components = 20
|
|
|
|
|
|
/obj/item/circuit_component/dispenser_bot/populate_ports()
|
|
item_list = add_output_port("Items", PORT_TYPE_LIST(PORT_TYPE_ATOM))
|
|
|
|
item = add_output_port("Item", PORT_TYPE_ATOM)
|
|
on_item_added = add_output_port("On Item Added", PORT_TYPE_SIGNAL)
|
|
on_item_removed = add_output_port("On Item Removed", PORT_TYPE_SIGNAL)
|
|
|
|
/obj/item/circuit_component/dispenser_bot/register_shell(atom/movable/shell)
|
|
. = ..()
|
|
RegisterSignal(shell, COMSIG_DISPENSERBOT_ADD_ITEM, PROC_REF(on_shell_add_item))
|
|
RegisterSignal(shell, COMSIG_DISPENSERBOT_REMOVE_ITEM, PROC_REF(on_shell_remove_item))
|
|
|
|
/obj/item/circuit_component/dispenser_bot/unregister_shell(atom/movable/shell)
|
|
UnregisterSignal(shell, list(
|
|
COMSIG_DISPENSERBOT_ADD_ITEM,
|
|
COMSIG_DISPENSERBOT_REMOVE_ITEM,
|
|
))
|
|
return ..()
|
|
|
|
/obj/item/circuit_component/dispenser_bot/proc/on_shell_add_item(obj/structure/dispenser_bot/source, obj/item/added_item)
|
|
SIGNAL_HANDLER
|
|
item.set_output(added_item)
|
|
item_list.set_output(source.stored_items)
|
|
on_item_added.set_output(COMPONENT_SIGNAL)
|
|
|
|
/obj/item/circuit_component/dispenser_bot/proc/on_shell_remove_item(obj/structure/dispenser_bot/source, obj/item/added_item)
|
|
SIGNAL_HANDLER
|
|
item.set_output(added_item)
|
|
item_list.set_output(source.stored_items)
|
|
on_item_added.set_output(COMPONENT_SIGNAL)
|
|
|
|
/obj/item/circuit_component/dispenser_bot/proc/remove_vendor_component(obj/item/circuit_component/vendor_component/vendor_component)
|
|
SIGNAL_HANDLER
|
|
UnregisterSignal(vendor_component, list(
|
|
COMSIG_QDELETING,
|
|
COMSIG_CIRCUIT_COMPONENT_REMOVED,
|
|
))
|
|
if(!QDELING(vendor_component))
|
|
qdel(vendor_component)
|
|
vendor_components -= vendor_component
|
|
|
|
/obj/item/circuit_component/dispenser_bot/ui_perform_action(mob/user, action)
|
|
switch(action)
|
|
if("add_vend_component")
|
|
if(length(vendor_components) >= max_vendor_components)
|
|
balloon_alert(user, "you have hit vendor component limit!")
|
|
return
|
|
var/obj/item/circuit_component/vendor_component/vendor_component = new(parent)
|
|
parent.add_component(vendor_component, user)
|
|
vendor_components += vendor_component
|
|
RegisterSignals(vendor_component, list(
|
|
COMSIG_QDELETING,
|
|
COMSIG_CIRCUIT_COMPONENT_REMOVED,
|
|
), PROC_REF(remove_vendor_component))
|
|
|
|
/obj/item/circuit_component/vendor_component
|
|
display_name = "Vend"
|
|
desc = "A component used to vend out specific objects from the dispenser bot."
|
|
|
|
circuit_flags = CIRCUIT_FLAG_OUTPUT_SIGNAL
|
|
|
|
var/obj/structure/dispenser_bot/attached_bot
|
|
|
|
/// The item this vendor component should vend
|
|
var/datum/port/input/item_to_vend
|
|
/// Used to vend the item
|
|
var/datum/port/input/vend_item
|
|
|
|
circuit_size = 0
|
|
|
|
/obj/item/circuit_component/vendor_component/register_shell(atom/movable/shell)
|
|
. = ..()
|
|
if(istype(shell, /obj/structure/dispenser_bot))
|
|
attached_bot = shell
|
|
|
|
/obj/item/circuit_component/vendor_component/unregister_shell(atom/movable/shell)
|
|
attached_bot = null
|
|
return ..()
|
|
|
|
/obj/item/circuit_component/vendor_component/populate_ports()
|
|
item_to_vend = add_input_port("Item", PORT_TYPE_ATOM, trigger = null)
|
|
vend_item = add_input_port("Vend Item", PORT_TYPE_SIGNAL, trigger = PROC_REF(vend_item))
|
|
|
|
/obj/item/circuit_component/vendor_component/proc/vend_item(datum/port/input/port, list/return_values)
|
|
CIRCUIT_TRIGGER
|
|
if(!attached_bot)
|
|
return
|
|
|
|
var/obj/item/vending_item = locate(item_to_vend.value) in attached_bot.stored_items
|
|
|
|
if(!vending_item)
|
|
return
|
|
|
|
attached_bot.remove_item(vending_item)
|