miggor-StreamGraph/classes/deck/nodes/print.gd

55 lines
1.1 KiB
GDScript3
Raw Normal View History

# (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
2023-07-21 10:10:24 +02:00
var times_activated := 0
func _init() -> void:
2023-07-21 07:30:12 +02:00
name = "Print"
node_type = name.to_snake_case()
description = "Print a value to the console."
2023-07-21 07:30:12 +02:00
2023-07-21 10:10:24 +02:00
props_to_serialize = [&"times_activated"]
category = "general"
2023-07-21 10:10:24 +02:00
add_input_port(
DeckType.Types.ANY,
"Data to print",
"field"
)
2023-06-10 20:23:57 +02:00
add_input_port(
DeckType.Types.BOOL,
2023-06-10 20:23:57 +02:00
"Trigger",
"button"
)
2023-06-12 17:32:16 +02:00
add_output_port(
DeckType.Types.BOOL,
2023-06-12 17:32:16 +02:00
"On Trigger",
"label"
)
func _receive(to_input_port: int, data: Variant, extra_data: Array = []) -> void:
if to_input_port != 1:
2023-06-10 20:23:57 +02:00
return
var data_to_print = str(resolve_input_port_value(0))
if data_to_print == null:
data_to_print = str(data)
if (data_to_print as String).is_empty():
data_to_print = "<nothing>"
2023-07-21 10:10:24 +02:00
times_activated += 1
2023-06-11 17:39:26 +02:00
# var data_to_print = input_ports[0].value_callback.call()
#print(data_to_print)
#print("extra data: ", extra_data)
DeckHolder.logger.log_node(data_to_print)
if !extra_data.is_empty():
DeckHolder.logger.log_node(str("Extra data: ", extra_data))
send(0, true)