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

50 lines
1 KiB
GDScript3
Raw Normal View History

extends DeckNode
var expr = Expression.new()
func _init():
name = "Expression"
node_type = name.to_snake_case()
2023-12-14 19:15:42 +01:00
description = "A node returning the result of a mathematical expression."
category = "general"
props_to_serialize = []
2023-12-04 15:16:39 +01:00
# TODO: order of ports is changed
# due to https://github.com/godotengine/godot/issues/85558
# when it's fixed, switch it back
add_input_port(
DeckType.Types.DICTIONARY,
"Expression Input"
)
add_output_port(
DeckType.Types.ANY,
"Expression Text",
"codeblock"
)
2023-12-04 15:16:39 +01:00
func _value_request(_from_port : int) -> Variant:
var text = get_output_ports()[0].value_callback.call()
2023-12-04 15:16:39 +01:00
var err = expr.parse(text, ["deck_var", "input"])
if err != OK:
2023-12-04 15:16:39 +01:00
2023-12-14 22:04:29 +01:00
DeckHolder.logger.log_node("Expression parse failed: %s" % err, Logger.LogType.ERROR)
printerr(err)
return null
2023-12-04 15:16:39 +01:00
var res = expr.execute([_belonging_to.variable_stack, request_value(0)])
if expr.has_execute_failed():
2023-12-04 15:16:39 +01:00
2023-12-14 22:04:29 +01:00
DeckHolder.logger.log_node("Expression Execution Failed: %s" % text, Logger.LogType.ERROR)
return null
2023-12-04 15:16:39 +01:00
return res
2023-12-04 15:16:39 +01:00