2023-08-08 13:06:01 +00:00
|
|
|
/**
|
|
|
|
* bt_check_var.h
|
|
|
|
* =============================================================================
|
2024-03-04 11:49:09 +00:00
|
|
|
* Copyright 2021-2024 Serhii Snitsaruk
|
2023-08-08 13:06:01 +00:00
|
|
|
*
|
|
|
|
* 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_CHECK_VAR_H
|
|
|
|
#define BT_CHECK_VAR_H
|
|
|
|
|
2023-08-15 15:49:13 +00:00
|
|
|
#include "../bt_condition.h"
|
2023-08-08 13:06:01 +00:00
|
|
|
|
2024-01-06 23:47:46 +00:00
|
|
|
#include "../../../blackboard/bb_param/bb_variant.h"
|
2024-01-10 22:26:24 +00:00
|
|
|
#include "../../../util/limbo_utility.h"
|
2023-08-08 13:06:01 +00:00
|
|
|
|
|
|
|
class BTCheckVar : public BTCondition {
|
|
|
|
GDCLASS(BTCheckVar, BTCondition);
|
2023-08-28 11:22:23 +00:00
|
|
|
TASK_CATEGORY(Blackboard);
|
2023-08-08 13:06:01 +00:00
|
|
|
|
|
|
|
private:
|
2024-03-04 11:49:09 +00:00
|
|
|
StringName variable;
|
2023-08-10 11:12:13 +00:00
|
|
|
LimboUtility::CheckType check_type = LimboUtility::CheckType::CHECK_EQUAL;
|
2023-08-08 13:06:01 +00:00
|
|
|
Ref<BBVariant> value;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2024-01-06 23:47:46 +00:00
|
|
|
virtual String _generate_name() override;
|
2023-09-19 11:43:26 +00:00
|
|
|
virtual Status _tick(double p_delta) override;
|
2023-08-08 13:06:01 +00:00
|
|
|
|
|
|
|
public:
|
2024-01-06 23:47:46 +00:00
|
|
|
virtual PackedStringArray get_configuration_warnings() override;
|
2023-08-08 13:06:01 +00:00
|
|
|
|
2024-03-04 11:49:09 +00:00
|
|
|
void set_variable(const StringName &p_variable);
|
|
|
|
StringName get_variable() const { return variable; }
|
2023-08-08 13:06:01 +00:00
|
|
|
|
2023-08-10 11:12:13 +00:00
|
|
|
void set_check_type(LimboUtility::CheckType p_check_type);
|
|
|
|
LimboUtility::CheckType get_check_type() const { return check_type; }
|
2023-08-08 13:06:01 +00:00
|
|
|
|
2024-03-04 11:49:09 +00:00
|
|
|
void set_value(const Ref<BBVariant> &p_value);
|
2023-08-08 13:06:01 +00:00
|
|
|
Ref<BBVariant> get_value() const { return value; }
|
|
|
|
};
|
|
|
|
|
2024-03-04 11:49:09 +00:00
|
|
|
#endif // BT_CHECK_VAR_H
|