2023-06-10 19:13:16 +02:00
|
|
|
extends DeckNode
|
|
|
|
|
2023-07-21 10:10:24 +02:00
|
|
|
var times_activated := 0
|
|
|
|
|
2023-06-10 19:13:16 +02:00
|
|
|
|
|
|
|
func _init() -> void:
|
2023-07-21 07:30:12 +02:00
|
|
|
name = "Print"
|
|
|
|
node_type = name.to_snake_case()
|
|
|
|
description = "print a value"
|
|
|
|
|
2023-07-21 10:10:24 +02:00
|
|
|
props_to_serialize = [&"times_activated"]
|
2023-11-23 07:38:10 +01:00
|
|
|
category = "general"
|
2023-07-21 10:10:24 +02:00
|
|
|
|
2023-06-10 19:13:16 +02:00
|
|
|
add_input_port(
|
|
|
|
Deck.Types.STRING,
|
2023-06-10 20:23:57 +02:00
|
|
|
"Text to print",
|
2023-06-10 19:13:16 +02:00
|
|
|
"field"
|
|
|
|
)
|
|
|
|
|
2023-06-10 20:23:57 +02:00
|
|
|
add_input_port(
|
|
|
|
Deck.Types.BOOL,
|
|
|
|
"Trigger",
|
|
|
|
"button"
|
|
|
|
)
|
|
|
|
|
2023-06-12 17:32:16 +02:00
|
|
|
add_output_port(
|
|
|
|
Deck.Types.BOOL,
|
|
|
|
"On Trigger",
|
|
|
|
"label"
|
|
|
|
)
|
|
|
|
|
2023-06-10 19:13:16 +02:00
|
|
|
|
2023-11-22 05:26:11 +01:00
|
|
|
func _receive(to_input_port: int, data: DeckType, extra_data: Array = []) -> void:
|
|
|
|
if to_input_port != 1:
|
2023-06-10 20:23:57 +02:00
|
|
|
return
|
|
|
|
|
2023-06-13 17:23:10 +02:00
|
|
|
var data_to_print
|
|
|
|
if request_value(0) != null:
|
|
|
|
data_to_print = request_value(0)
|
2023-11-22 05:26:11 +01:00
|
|
|
elif get_input_ports()[0].value_callback.get_object() && get_input_ports()[0].value_callback.call() != "":
|
|
|
|
data_to_print = get_input_ports()[0].value_callback.call()
|
2023-06-13 17:23:10 +02:00
|
|
|
else:
|
|
|
|
data_to_print = data.get_value()
|
|
|
|
|
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()
|
2023-06-10 19:13:16 +02:00
|
|
|
print(data_to_print)
|
|
|
|
print("extra data: ", extra_data)
|
2023-11-22 05:26:11 +01:00
|
|
|
send(0, DeckType.DeckTypeBool.new(true))
|