mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-31 12:01:47 +00:00
* Added circuit component UI details, added multiplexer and allowed inserting components directly into shells. (#59635) Adds the multiplexer circuit component - en.wikipedia.org/wiki/Multiplexer Circuit components can now be directly inserted into shells rather than having to take the integrated circuit out. Special information can be accessed from components now through the "Info" button besides the eject button on a component. * Added circuit component UI details, added multiplexer and allowed inserting components directly into shells. Co-authored-by: Watermelon914 <37270891+Watermelon914@users.noreply.github.com>
52 lines
1.6 KiB
Plaintext
52 lines
1.6 KiB
Plaintext
/**
|
|
* # Compact Remote
|
|
*
|
|
* A handheld device with one big button.
|
|
*/
|
|
/obj/item/compact_remote
|
|
name = "compact remote"
|
|
icon = 'icons/obj/wiremod.dmi'
|
|
icon_state = "setup_small_simple"
|
|
inhand_icon_state = "electronic"
|
|
worn_icon_state = "electronic"
|
|
lefthand_file = 'icons/mob/inhands/misc/devices_lefthand.dmi'
|
|
righthand_file = 'icons/mob/inhands/misc/devices_righthand.dmi'
|
|
light_system = MOVABLE_LIGHT_DIRECTIONAL
|
|
light_on = FALSE
|
|
|
|
/obj/item/compact_remote/Initialize()
|
|
. = ..()
|
|
AddComponent(/datum/component/shell, list(
|
|
new /obj/item/circuit_component/compact_remote()
|
|
), SHELL_CAPACITY_SMALL)
|
|
|
|
/obj/item/circuit_component/compact_remote
|
|
display_name = "Compact Remote"
|
|
display_desc = "Used to receive inputs from the compact remote shell. Use the shell in hand to trigger the output signal."
|
|
|
|
/// Called when attack_self is called on the shell.
|
|
var/datum/port/output/signal
|
|
|
|
/obj/item/circuit_component/compact_remote/Initialize()
|
|
. = ..()
|
|
signal = add_output_port("Signal", PORT_TYPE_SIGNAL)
|
|
|
|
/obj/item/circuit_component/compact_remote/Destroy()
|
|
signal = null
|
|
return ..()
|
|
|
|
/obj/item/circuit_component/compact_remote/register_shell(atom/movable/shell)
|
|
RegisterSignal(shell, COMSIG_ITEM_ATTACK_SELF, .proc/send_trigger)
|
|
|
|
/obj/item/circuit_component/compact_remote/unregister_shell(atom/movable/shell)
|
|
UnregisterSignal(shell, COMSIG_ITEM_ATTACK_SELF)
|
|
|
|
/**
|
|
* Called when the shell item is used in hand.
|
|
*/
|
|
/obj/item/circuit_component/compact_remote/proc/send_trigger(atom/source, mob/user)
|
|
SIGNAL_HANDLER
|
|
source.balloon_alert(user, "clicked primary button")
|
|
playsound(source, get_sfx("terminal_type"), 25, FALSE)
|
|
signal.set_output(COMPONENT_SIGNAL)
|