2023-07-21 09:50:06 +00:00
|
|
|
/**
|
|
|
|
* bt_subtree.h
|
|
|
|
* =============================================================================
|
2024-03-04 20:36:16 +00:00
|
|
|
* Copyright 2021-2024 Serhii Snitsaruk
|
2023-07-21 09:50:06 +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.
|
|
|
|
* =============================================================================
|
|
|
|
*/
|
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
|
|
|
|
2024-01-06 23:47:46 +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();
|
|
|
|
|
2024-03-26 17:19:31 +00:00
|
|
|
virtual void _update_blackboard_plan() override;
|
|
|
|
|
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;
|
2022-09-03 18:42:38 +00:00
|
|
|
|
|
|
|
public:
|
2023-08-15 15:05:30 +00:00
|
|
|
void set_subtree(const Ref<BehaviorTree> &p_value);
|
2022-09-03 18:42:38 +00:00
|
|
|
Ref<BehaviorTree> get_subtree() const { return subtree; }
|
|
|
|
|
2024-05-01 21:20:17 +00:00
|
|
|
virtual void initialize(Node *p_agent, const Ref<Blackboard> &p_blackboard, Node *p_scene_root) override;
|
2024-01-06 23:47:46 +00:00
|
|
|
virtual PackedStringArray get_configuration_warnings() override;
|
2024-03-26 17:19:31 +00:00
|
|
|
|
|
|
|
BTSubtree() = default;
|
|
|
|
~BTSubtree();
|
2022-09-03 18:42:38 +00:00
|
|
|
};
|
|
|
|
|
2024-01-13 16:10:42 +00:00
|
|
|
#endif // BT_SUBTREE_H
|