limboai/bt/tasks/blackboard/bt_set_var.h

45 lines
1.1 KiB
C
Raw Normal View History

/**
* bt_set_var.h
* =============================================================================
* Copyright 2021-2023 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_SET_VAR_H
#define BT_SET_VAR_H
2023-08-15 15:49:13 +00:00
#include "../bt_action.h"
2023-08-15 15:49:13 +00:00
#include "modules/limboai/blackboard/bb_param/bb_variant.h"
#include "core/string/ustring.h"
class BTSetVar : public BTAction {
GDCLASS(BTSetVar, BTAction);
2023-08-28 11:22:23 +00:00
TASK_CATEGORY(Blackboard);
private:
String variable;
Ref<BBVariant> value;
protected:
static void _bind_methods();
virtual String _generate_name() const override;
virtual Status _tick(double p_delta) override;
public:
virtual PackedStringArray get_configuration_warnings() const override;
void set_variable(const String &p_variable);
String get_variable() const { return variable; }
void set_value(Ref<BBVariant> p_value);
Ref<BBVariant> get_value() const { return value; }
};
#endif // BT_SET_VAR