[MIRROR] Integrated the component printer into the integrated circuit UI. You can now link integrated circuits to component printers [MDB IGNORE] (#9107)

* Integrated the component printer into the integrated circuit UI. You can now link integrated circuits to component printers (#62287)

Co-authored-by: Watermelon914 <3052169-Watermelon914@ users.noreply.gitlab.com>

* Integrated the component printer into the integrated circuit UI. You can now link integrated circuits to component printers

Co-authored-by: Watermelon914 <37270891+Watermelon914@users.noreply.github.com>
Co-authored-by: Watermelon914 <3052169-Watermelon914@ users.noreply.gitlab.com>
This commit is contained in:
SkyratBot
2021-10-28 20:49:34 +01:00
committed by GitHub
parent 3e82df92bf
commit c9b268a72a
86 changed files with 571 additions and 34 deletions

View File

@@ -6,6 +6,7 @@
/obj/item/circuit_component/concat
display_name = "Concatenate"
desc = "A component that combines strings."
category = "String"
/// The amount of input ports to have
var/input_port_amount = 4

View File

@@ -6,6 +6,7 @@
/obj/item/circuit_component/compare/contains
display_name = "String Contains"
desc = "Checks if a string contains a word/letter"
category = "String"
input_port_amount = 0

View File

@@ -9,6 +9,7 @@
/obj/item/circuit_component/textcase
display_name = "Text Case"
desc = "A component that makes its input uppercase or lowercase."
category = "String"
var/datum/port/input/option/textcase_options

View File

@@ -6,6 +6,7 @@
/obj/item/circuit_component/tonumber
display_name = "To Number"
desc = "A component that converts its input (a string) to a number. If there's text in the input, it'll only consider it if it starts with a number. It will take that number and ignore the rest."
category = "String"
/// The input port
var/datum/port/input/input_port

View File

@@ -6,6 +6,7 @@
/obj/item/circuit_component/tostring
display_name = "To String"
desc = "A component that converts its input to text."
category = "String"
/// The input port
var/datum/port/input/input_port