mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-12 10:42:37 +00:00
* Fix some copy paste UI errors (#81325) ## About The Pull Request One day we will have opendream lint to catch this. (WYCI I guess) * Fix some copy paste UI errors --------- Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com>
72 lines
2.6 KiB
Plaintext
72 lines
2.6 KiB
Plaintext
/datum/computer_file/program/notepad
|
|
filename = "notepad"
|
|
filedesc = "Notepad"
|
|
downloader_category = PROGRAM_CATEGORY_DEVICE
|
|
program_open_overlay = "generic"
|
|
extended_desc = "Jot down your work-safe thoughts and what not."
|
|
size = 2
|
|
tgui_id = "NtosNotepad"
|
|
program_icon = "book"
|
|
can_run_on_flags = PROGRAM_ALL
|
|
circuit_comp_type = /obj/item/circuit_component/mod_program/notepad
|
|
|
|
var/written_note = "Congratulations on your station upgrading to the new NtOS and Thinktronic based collaboration effort, \
|
|
bringing you the best in electronics and software since 2467!\n\
|
|
To help with navigation, we have provided the following definitions:\n\
|
|
Fore - Toward front of ship\n\
|
|
Aft - Toward back of ship\n\
|
|
Port - Left side of ship\n\
|
|
Starboard - Right side of ship\n\
|
|
Quarter - Either sides of Aft\n\
|
|
Bow - Either sides of Fore"
|
|
|
|
/datum/computer_file/program/notepad/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
|
|
. = ..()
|
|
switch(action)
|
|
if("UpdateNote")
|
|
written_note = params["newnote"]
|
|
return TRUE
|
|
|
|
/datum/computer_file/program/notepad/ui_data(mob/user)
|
|
var/list/data = list()
|
|
|
|
data["note"] = written_note
|
|
|
|
return data
|
|
|
|
/obj/item/circuit_component/mod_program/notepad
|
|
associated_program = /datum/computer_file/program/notepad
|
|
///When the input is received, the written note will be set to its value.
|
|
var/datum/port/input/set_text
|
|
///The written note output, sent everytime notes are updated.
|
|
var/datum/port/output/updated_text
|
|
///Pinged whenever the text is updated
|
|
var/datum/port/output/updated
|
|
|
|
/obj/item/circuit_component/mod_program/notepad/populate_ports()
|
|
. = ..()
|
|
set_text = add_input_port("Set Notes", PORT_TYPE_STRING)
|
|
updated_text = add_output_port("Notes", PORT_TYPE_STRING)
|
|
updated = add_output_port("Updated", PORT_TYPE_SIGNAL)
|
|
|
|
/obj/item/circuit_component/mod_program/notepad/register_shell(atom/movable/shell)
|
|
. = ..()
|
|
RegisterSignal(associated_program, COMSIG_UI_ACT, PROC_REF(on_note_updated))
|
|
|
|
/obj/item/circuit_component/mod_program/notepad/unregister_shell()
|
|
UnregisterSignal(associated_program, COMSIG_UI_ACT)
|
|
return ..()
|
|
|
|
/obj/item/circuit_component/mod_program/notepad/proc/on_note_updated(datum/source, mob/user, action, list/params)
|
|
SIGNAL_HANDLER
|
|
if(action == "UpdateNote")
|
|
updated_text.set_output(params["newnote"])
|
|
updated.set_output(COMPONENT_SIGNAL)
|
|
|
|
/obj/item/circuit_component/mod_program/notepad/input_received(datum/port/port)
|
|
var/datum/computer_file/program/notepad/pad = associated_program
|
|
pad.written_note = set_text.value
|
|
SStgui.update_uis(pad.computer)
|
|
updated_text.set_output(pad.written_note)
|
|
updated.set_output(COMPONENT_SIGNAL)
|