mirror of
https://codeberg.org/StreamGraph/StreamGraph.git
synced 2024-11-13 19:49:55 +01:00
edeb8e22dc
Reviewed-on: https://codeberg.org/StreamGraph/StreamGraph/pulls/123 Co-authored-by: Lera Elvoé <yagich@poto.cafe> Co-committed-by: Lera Elvoé <yagich@poto.cafe>
54 lines
1.3 KiB
GDScript
54 lines
1.3 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 = "Raise Number to Power"
|
|
node_type = "scalar_exponentiate"
|
|
description = "Raise one number to the power of another (exponentiation)."
|
|
aliases = ["exponentiate", "square", "cube", "quad"]
|
|
|
|
add_input_port(
|
|
DeckType.Types.NUMERIC,
|
|
"Base",
|
|
"spinbox:unbounded:0.0001",
|
|
)
|
|
|
|
add_input_port(
|
|
DeckType.Types.NUMERIC,
|
|
"Exponent",
|
|
"spinbox:unbounded:0.0001",
|
|
).set_value(2)
|
|
|
|
add_output_port(
|
|
DeckType.Types.NUMERIC,
|
|
"Result"
|
|
)
|
|
|
|
|
|
func _value_request(_on_output_port: int) -> Variant:
|
|
var va = await resolve_input_port_value_async(0)
|
|
var vb = await resolve_input_port_value_async(1)
|
|
|
|
va = DeckType.convert_value(va, DeckType.Types.NUMERIC)
|
|
vb = DeckType.convert_value(vb, DeckType.Types.NUMERIC)
|
|
|
|
return va ** vb
|
|
|
|
|
|
func _receive(on_input_port: int, data: Variant) -> void:
|
|
var va
|
|
var vb
|
|
if on_input_port == 0:
|
|
va = data
|
|
vb = await resolve_input_port_value_async(1)
|
|
else:
|
|
va = await resolve_input_port_value_async(0)
|
|
vb = data
|
|
|
|
va = DeckType.convert_value(va, DeckType.Types.NUMERIC)
|
|
vb = DeckType.convert_value(vb, DeckType.Types.NUMERIC)
|
|
|
|
send(0, va ** vb)
|