mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-25 17:12:12 +00:00
* Refactored fundamental circuit components that have varying inputs. Improvements to the integrated circuit UI. Improves and rebalances the drone shell (#68586) * Refactored fundamental circuit components that have varying inputs. Made the integrated circuit UI slightly better. * Fixes with UI * Removes logger * Ran prettier * Fixed documentation * Rebalances drone circuit * Drones can now charge in chargers Co-authored-by: Watermelon914 <hidden@ hidden.com> * Refactored fundamental circuit components that have varying inputs. Improvements to the integrated circuit UI. Improves and rebalances the drone shell Co-authored-by: Watermelon914 <37270891+Watermelon914@users.noreply.github.com> Co-authored-by: Watermelon914 <hidden@ hidden.com>
78 lines
2.5 KiB
Plaintext
78 lines
2.5 KiB
Plaintext
/**
|
|
* # List Literal Component
|
|
*
|
|
* Return a list literal.
|
|
*/
|
|
/obj/item/circuit_component/list_literal
|
|
display_name = "List Literal"
|
|
desc = "A component that creates a list from whatever input you give it."
|
|
category = "List"
|
|
circuit_flags = CIRCUIT_FLAG_INPUT_SIGNAL|CIRCUIT_FLAG_OUTPUT_SIGNAL
|
|
|
|
/// The list type
|
|
var/datum/port/input/option/list_options
|
|
|
|
/// The inputs used to create the list
|
|
var/list/datum/port/input/entry_ports = list()
|
|
/// The result from the output
|
|
var/datum/port/output/list_output
|
|
|
|
ui_buttons = list(
|
|
"plus" = "add",
|
|
"minus" = "remove"
|
|
)
|
|
|
|
var/max_list_count = 100
|
|
|
|
/obj/item/circuit_component/list_literal/populate_options()
|
|
list_options = add_option_port("List Type", GLOB.wiremod_basic_types)
|
|
|
|
/obj/item/circuit_component/list_literal/pre_input_received(datum/port/input/port)
|
|
if(port == list_options)
|
|
var/new_datatype = list_options.value
|
|
list_output.set_datatype(PORT_TYPE_LIST(new_datatype))
|
|
for(var/datum/port/input/port_to_set as anything in entry_ports)
|
|
port_to_set.set_datatype(new_datatype)
|
|
|
|
/obj/item/circuit_component/list_literal/populate_ports()
|
|
AddComponent(/datum/component/circuit_component_add_port, \
|
|
port_list = entry_ports, \
|
|
add_action = "add", \
|
|
remove_action = "remove", \
|
|
port_type = PORT_TYPE_ANY, \
|
|
prefix = "Index", \
|
|
minimum_amount = 1, \
|
|
maximum_amount = 20 \
|
|
)
|
|
list_output = add_output_port("Value", PORT_TYPE_LIST(PORT_TYPE_ANY), order = 1.1)
|
|
|
|
/obj/item/circuit_component/list_literal/input_received(datum/port/input/port)
|
|
var/list/new_literal = list()
|
|
var/datum/circuit_datatype/handler = GLOB.circuit_datatypes[list_options.value]
|
|
for(var/datum/port/input/entry_port as anything in entry_ports)
|
|
var/value = entry_port.value
|
|
// To prevent people from infinitely making lists to crash the server
|
|
if(islist(value) && get_list_count(value, max_list_count) >= max_list_count)
|
|
visible_message("[src] begins to overheat!")
|
|
return
|
|
var/value_to_add = handler.convert_value(list_output, value)
|
|
if(isdatum(value_to_add))
|
|
value_to_add = WEAKREF(value_to_add)
|
|
new_literal += list(value_to_add)
|
|
|
|
list_output.set_output(new_literal)
|
|
|
|
/proc/get_list_count(list/value, max_list_count)
|
|
var/list/lists_to_check = list()
|
|
lists_to_check += list(value)
|
|
var/lists = 1
|
|
while(length(lists_to_check))
|
|
var/list/list_to_iterate = lists_to_check[length(lists_to_check)]
|
|
lists_to_check.len--
|
|
for(var/list/list_data in list_to_iterate)
|
|
lists_to_check += list(list_data)
|
|
lists += 1
|
|
if(lists > max_list_count)
|
|
return lists
|
|
return lists
|