limboai/bt/tasks/decorators/bt_subtree.h

46 lines
1.1 KiB
C
Raw Normal View History

/**
* bt_subtree.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.
* =============================================================================
*/
2022-09-03 18:42:38 +00:00
#ifndef BT_SUBTREE_H
#define BT_SUBTREE_H
2022-09-20 17:15:48 +00:00
#include "bt_new_scope.h"
2022-09-03 18:42:38 +00:00
#include "../../../bt/behavior_tree.h"
2023-07-20 16:35:36 +00:00
2022-09-20 17:15:48 +00:00
class BTSubtree : public BTNewScope {
GDCLASS(BTSubtree, BTNewScope);
2023-08-28 11:22:23 +00:00
TASK_CATEGORY(Decorators);
2022-09-03 18:42:38 +00:00
private:
Ref<BehaviorTree> subtree;
protected:
static void _bind_methods();
virtual void _update_blackboard_plan() override;
virtual String _generate_name() override;
virtual Status _tick(double p_delta) override;
2022-09-03 18:42:38 +00:00
public:
void set_subtree(const Ref<BehaviorTree> &p_value);
2022-09-03 18:42:38 +00:00
Ref<BehaviorTree> get_subtree() const { return subtree; }
virtual void initialize(Node *p_agent, const Ref<Blackboard> &p_blackboard, Node *p_scene_root) override;
virtual PackedStringArray get_configuration_warnings() override;
BTSubtree() = default;
~BTSubtree();
2022-09-03 18:42:38 +00:00
};
2024-01-13 16:10:42 +00:00
#endif // BT_SUBTREE_H