Adds the Proximity Pinpointer circuit component! (#61574)

This commit is contained in:
TheSmallBlue
2021-09-21 17:12:29 -07:00
committed by GitHub
parent b080da385f
commit 6fde2a7b9f
4 changed files with 60 additions and 0 deletions
@@ -0,0 +1,53 @@
/**
* # Proximity Pinpointer Component
*
* Return the location of its input.
*/
/obj/item/circuit_component/pinpointer
display_name = "Proximity Pinpointer"
desc = "A component that returns the xyz co-ordinates of its entity input, as long as its in view."
var/datum/port/input/target
var/datum/port/output/x_pos
var/datum/port/output/y_pos
var/datum/port/output/z_pos
var/datum/port/output/on_error
var/max_range = 7
circuit_flags = CIRCUIT_FLAG_INPUT_SIGNAL|CIRCUIT_FLAG_OUTPUT_SIGNAL
/obj/item/circuit_component/pinpointer/populate_ports()
target = add_input_port("Target entity", PORT_TYPE_ATOM, FALSE)
x_pos = add_output_port("X", PORT_TYPE_NUMBER)
y_pos = add_output_port("Y", PORT_TYPE_NUMBER)
z_pos = add_output_port("Z", PORT_TYPE_NUMBER)
on_error = add_output_port("Failed", PORT_TYPE_SIGNAL)
/obj/item/circuit_component/pinpointer/input_received(datum/port/input/port)
if(isnull(target.value))
x_pos.set_output(null)
y_pos.set_output(null)
z_pos.set_output(null)
on_error.set_output(COMPONENT_SIGNAL)
return
var/atom/target_entity = target.value
if(isInSight(target_entity, get_turf(src)) && IN_GIVEN_RANGE(get_turf(src), target_entity, max_range))
var/turf/location = get_turf(target_entity)
x_pos.set_output(location?.x)
y_pos.set_output(location?.y)
z_pos.set_output(location?.z)
else
x_pos.set_output(null)
y_pos.set_output(null)
z_pos.set_output(null)
on_error.set_output(COMPONENT_SIGNAL)
return TRUE