2023-07-21 09:50:06 +00:00
|
|
|
/**
|
|
|
|
* bt_state.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-10-19 18:54:21 +00:00
|
|
|
|
|
|
|
#ifndef BT_STATE_H
|
|
|
|
#define BT_STATE_H
|
|
|
|
|
|
|
|
#include "modules/limboai/bt/behavior_tree.h"
|
|
|
|
#include "modules/limboai/bt/bt_task.h"
|
2023-07-20 16:35:36 +00:00
|
|
|
#include "modules/limboai/hsm/limbo_state.h"
|
|
|
|
|
|
|
|
#include "core/object/object.h"
|
2022-10-19 18:54:21 +00:00
|
|
|
|
|
|
|
class BTState : public LimboState {
|
|
|
|
GDCLASS(BTState, LimboState);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ref<BehaviorTree> behavior_tree;
|
2022-12-16 14:29:36 +00:00
|
|
|
Ref<BTTask> tree_instance;
|
2022-11-04 12:26:49 +00:00
|
|
|
String success_event;
|
|
|
|
String failure_event;
|
2022-10-19 18:54:21 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2022-12-15 07:26:52 +00:00
|
|
|
virtual void _setup() override;
|
2022-12-16 14:29:36 +00:00
|
|
|
// virtual void _enter() override {}
|
2022-12-15 07:26:52 +00:00
|
|
|
virtual void _exit() override;
|
2023-04-10 08:08:11 +00:00
|
|
|
virtual void _update(double p_delta) override;
|
2022-10-19 18:54:21 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
void set_behavior_tree(const Ref<BehaviorTree> &p_value) { behavior_tree = p_value; }
|
|
|
|
Ref<BehaviorTree> get_behavior_tree() const { return behavior_tree; }
|
2022-10-19 21:41:56 +00:00
|
|
|
|
2022-11-04 12:26:49 +00:00
|
|
|
void set_success_event(String p_success_event) { success_event = p_success_event; }
|
|
|
|
String get_success_event() const { return success_event; }
|
|
|
|
|
|
|
|
void set_failure_event(String p_failure_event) { failure_event = p_failure_event; }
|
|
|
|
String get_failure_event() const { return failure_event; }
|
|
|
|
|
2022-10-19 21:41:56 +00:00
|
|
|
BTState();
|
2023-04-13 07:29:45 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG_ENABLED
|
|
|
|
protected:
|
|
|
|
void _notification(int p_notification);
|
|
|
|
|
|
|
|
#endif
|
2022-10-19 18:54:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BT_STATE_H
|