/**
 * bt_call_method.h
 * =============================================================================
 * Copyright 2021-2024 Serhii Snitsaruk
 *
 * Use of this source code is governed by an MIT-style
 * license that can be found in the LICENSE file or at
 * https://opensource.org/licenses/MIT.
 * =============================================================================
 */

#ifndef BT_CALL_METHOD_H
#define BT_CALL_METHOD_H

#include "../bt_action.h"

#include "../../../blackboard/bb_param/bb_node.h"
#include "../../../blackboard/bb_param/bb_variant.h"

class BTCallMethod : public BTAction {
	GDCLASS(BTCallMethod, BTAction);
	TASK_CATEGORY(Utility);

private:
	StringName method;
	Ref<BBNode> node_param;
	TypedArray<BBVariant> args;
	bool include_delta = false;
	StringName result_var;

protected:
	static void _bind_methods();

	virtual String _generate_name() override;
	virtual Status _tick(double p_delta) override;

public:
	void set_method(const StringName &p_method_name);
	StringName get_method() const { return method; }

	void set_node_param(const Ref<BBNode> &p_object);
	Ref<BBNode> get_node_param() const { return node_param; }

	void set_args(TypedArray<BBVariant> p_args);
	TypedArray<BBVariant> get_args() const { return args; }

	void set_include_delta(bool p_include_delta);
	bool is_delta_included() const { return include_delta; }

	void set_result_var(const StringName &p_result_var);
	StringName get_result_var() const { return result_var; }

	virtual PackedStringArray get_configuration_warnings() override;

	BTCallMethod();
};

#endif // BT_CALL_METHOD_H