2023-06-13 17:23:10 +02:00
|
|
|
extends DeckNode
|
|
|
|
|
|
|
|
|
|
|
|
func _init() -> void:
|
2023-07-21 07:30:12 +02:00
|
|
|
name = "Set Deck Var"
|
|
|
|
node_type = name.to_snake_case()
|
|
|
|
description = "set deck variable"
|
2023-11-23 07:38:10 +01:00
|
|
|
category = "general"
|
2023-07-21 07:30:12 +02:00
|
|
|
|
2023-06-13 17:23:10 +02:00
|
|
|
add_input_port(
|
2023-11-26 23:07:15 +01:00
|
|
|
DeckType.Types.STRING,
|
2023-06-13 17:23:10 +02:00
|
|
|
"Variable Name",
|
|
|
|
"field"
|
|
|
|
)
|
|
|
|
|
|
|
|
add_input_port(
|
2023-11-26 23:07:15 +01:00
|
|
|
DeckType.Types.ANY,
|
2023-06-13 17:23:10 +02:00
|
|
|
"Value",
|
|
|
|
"field"
|
|
|
|
)
|
|
|
|
|
|
|
|
add_input_port(
|
2023-11-26 23:07:15 +01:00
|
|
|
DeckType.Types.BOOL,
|
2023-06-13 17:23:10 +02:00
|
|
|
"Set",
|
|
|
|
"button"
|
|
|
|
)
|
|
|
|
|
|
|
|
add_output_port(
|
2023-11-26 23:07:15 +01:00
|
|
|
DeckType.Types.ANY,
|
2023-06-13 17:23:10 +02:00
|
|
|
"Value",
|
|
|
|
"label"
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2023-11-26 23:07:15 +01:00
|
|
|
func _receive(to_input_port: int, data: Variant, extra_data: Array = []) -> void:
|
2023-11-22 05:26:11 +01:00
|
|
|
if to_input_port != 2:
|
2023-06-13 17:23:10 +02:00
|
|
|
return
|
|
|
|
|
|
|
|
var var_name: String = get_value_for_port(0, data)
|
2023-11-26 23:07:15 +01:00
|
|
|
var var_value: Variant = get_value_for_port(1, data)
|
2023-06-13 17:23:10 +02:00
|
|
|
|
|
|
|
_belonging_to.variable_stack[var_name] = var_value
|
|
|
|
|
2023-11-26 23:07:15 +01:00
|
|
|
send(0, var_value)
|
2023-06-13 17:23:10 +02:00
|
|
|
|
|
|
|
# this can probably go into DeckNode with a different name that makes it clear
|
|
|
|
# that it prioritizes call-time resolution
|
2023-11-26 23:07:15 +01:00
|
|
|
func get_value_for_port(port: int, data: Variant) -> Variant:
|
2023-06-13 17:23:10 +02:00
|
|
|
if request_value(port) != null:
|
|
|
|
return request_value(port)
|
|
|
|
elif ports[port].value_callback.call() != "":
|
|
|
|
return ports[port].value_callback.call()
|
|
|
|
else:
|
2023-11-26 23:07:15 +01:00
|
|
|
return data
|