mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-12 02:43:49 +00:00
43 lines
1010 B
Plaintext
43 lines
1010 B
Plaintext
/**
|
|
* # Index Component
|
|
*
|
|
* Return the index of a list
|
|
*/
|
|
/obj/item/circuit_component/index
|
|
display_name = "Index List"
|
|
desc = "A component that returns the value of a list at a given index."
|
|
|
|
/// The input port
|
|
var/datum/port/input/list_port
|
|
var/datum/port/input/index_port
|
|
|
|
/// The result from the output
|
|
var/datum/port/output/output
|
|
circuit_flags = CIRCUIT_FLAG_INPUT_SIGNAL|CIRCUIT_FLAG_OUTPUT_SIGNAL
|
|
|
|
/obj/item/circuit_component/index/Initialize()
|
|
. = ..()
|
|
index_port = add_input_port("Index", PORT_TYPE_ANY)
|
|
list_port = add_input_port("List", PORT_TYPE_LIST)
|
|
|
|
output = add_output_port("Value", PORT_TYPE_ANY)
|
|
|
|
/obj/item/circuit_component/index/input_received(datum/port/input/port)
|
|
. = ..()
|
|
if(.)
|
|
return
|
|
|
|
var/index = index_port.value
|
|
var/list/list_input = list_port.value
|
|
|
|
if(!islist(list_input) || !index)
|
|
output.set_output(null)
|
|
return
|
|
|
|
if(isnum(index) && (index < 1 || index > length(list_input)))
|
|
output.set_output(null)
|
|
return
|
|
|
|
output.set_output(list_input[index])
|
|
|