limboai/bt/tasks/decorators/bt_subtree.h

40 lines
1.1 KiB
C
Raw Normal View History

/**
* bt_subtree.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.
* =============================================================================
*/
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 "modules/limboai/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 String _generate_name() const override;
virtual int _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; }
2022-12-17 07:33:18 +00:00
virtual void initialize(Node *p_agent, const Ref<Blackboard> &p_blackboard) override;
virtual PackedStringArray get_configuration_warnings() const override;
2022-09-03 18:42:38 +00:00
};
#endif // BT_SUBTREE_H