miggor-StreamGraph/classes/deck/nodes/general/format_string.gd
2024-07-28 13:39:09 +03:00

48 lines
1.4 KiB
GDScript

# (c) 2023-present Eroax
# (c) 2023-present Yagich
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
extends DeckNode
func _init() -> void:
name = "String Positional Format"
node_type = "format_string"
description = "Replaces '%s' characters in a string."
add_input_port(
DeckType.Types.STRING,
"String to format",
"field",
)
add_input_port(
DeckType.Types.ARRAY,
"Replacements",
)
add_output_port(
DeckType.Types.STRING,
"Result string",
)
func _replace(string: String, replacements: Array) -> String:
return string % replacements
func _value_request(_on_output_port: int) -> Variant:
var string: String = DeckType.convert_value(await resolve_input_port_value_async(0), DeckType.Types.STRING)
var replacements: Array = DeckType.convert_value(await resolve_input_port_value_async(1), DeckType.Types.ARRAY)
return _replace(string, replacements)
func _receive(on_input_port: int, data: Variant) -> void:
if on_input_port == 0:
var string: String = DeckType.convert_value(data, DeckType.Types.STRING)
var replacements: Array = DeckType.convert_value(await resolve_input_port_value_async(1), DeckType.Types.ARRAY)
send(0, _replace(string, replacements))
else:
var string: String = DeckType.convert_value(await resolve_input_port_value_async(0), DeckType.Types.STRING)
var replacements: Array = DeckType.convert_value(data, DeckType.Types.ARRAY)
send(0, _replace(string, replacements))