limboai/hsm/limbo_state.cpp

217 lines
7.0 KiB
C++
Raw Normal View History

/**
* limbo_state.cpp
* =============================================================================
* 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-28 10:48:45 +00:00
#include "limbo_state.h"
2023-07-20 16:35:36 +00:00
2024-01-09 12:34:24 +00:00
#include "../util/limbo_compat.h"
2023-07-20 16:35:36 +00:00
2024-01-07 04:54:17 +00:00
#ifdef LIMBOAI_MODULE
#include "core/error/error_macros.h"
#include "core/object/class_db.h"
#include "core/object/object.h"
2022-09-29 10:54:07 +00:00
#include "core/typedefs.h"
#include "core/variant/array.h"
2022-12-16 10:56:41 +00:00
#include "core/variant/callable.h"
#include "core/variant/variant.h"
2024-01-07 04:54:17 +00:00
#endif // LIMBOAI_MODULE
2022-09-28 10:48:45 +00:00
2024-01-07 04:54:17 +00:00
#ifdef LIMBOAI_GDEXTENSION
#endif
2022-09-28 10:48:45 +00:00
LimboState *LimboState::get_root() const {
const LimboState *state = this;
2022-10-26 21:12:29 +00:00
while (state->get_parent() && state->get_parent()->is_class("LimboState")) {
2022-09-28 10:48:45 +00:00
state = Object::cast_to<LimboState>(get_parent());
}
return const_cast<LimboState *>(state);
}
LimboState *LimboState::named(String p_name) {
set_name(p_name);
return this;
}
2022-09-28 10:48:45 +00:00
void LimboState::_enter() {
2022-09-28 10:48:45 +00:00
active = true;
VCALL(_enter);
2022-09-28 10:48:45 +00:00
emit_signal(LimboStringNames::get_singleton()->entered);
}
2022-09-28 10:48:45 +00:00
void LimboState::_exit() {
2022-09-29 10:54:07 +00:00
if (!active) {
return;
}
VCALL(_exit);
2022-09-28 10:48:45 +00:00
emit_signal(LimboStringNames::get_singleton()->exited);
active = false;
}
2022-09-28 10:48:45 +00:00
void LimboState::_update(double p_delta) {
VCALL_ARGS(_update, p_delta);
2022-09-28 10:48:45 +00:00
emit_signal(LimboStringNames::get_singleton()->updated, p_delta);
}
void LimboState::_setup() {
VCALL(_setup);
emit_signal(LimboStringNames::get_singleton()->setup);
}
2022-09-28 10:48:45 +00:00
2022-12-16 10:56:41 +00:00
void LimboState::_initialize(Node *p_agent, const Ref<Blackboard> &p_blackboard) {
2022-09-28 10:48:45 +00:00
ERR_FAIL_COND(p_agent == nullptr);
agent = p_agent;
if (!p_blackboard.is_null()) {
if (blackboard_plan.is_valid() && !blackboard_plan->is_empty()) {
blackboard = blackboard_plan->create_blackboard();
2024-01-25 13:27:14 +00:00
blackboard->set_parent(p_blackboard);
} else {
blackboard = p_blackboard;
}
}
_setup();
}
2022-09-28 10:48:45 +00:00
bool LimboState::dispatch(const String &p_event, const Variant &p_cargo) {
ERR_FAIL_COND_V(p_event.is_empty(), false);
2022-09-28 10:48:45 +00:00
if (handlers.size() > 0 && handlers.has(p_event)) {
2022-12-16 10:56:41 +00:00
Variant ret;
2024-01-07 04:54:17 +00:00
#ifdef LIMBOAI_MODULE
Callable::CallError ce;
2022-09-28 10:48:45 +00:00
if (p_cargo.get_type() == Variant::NIL) {
2022-12-16 10:56:41 +00:00
handlers[p_event].callp(nullptr, 0, ret, ce);
if (ce.error != Callable::CallError::CALL_OK) {
ERR_PRINT("Error calling event handler " + Variant::get_callable_error_text(handlers[p_event], nullptr, 0, ce));
}
2022-09-28 10:48:45 +00:00
} else {
2022-12-16 10:56:41 +00:00
const Variant *argptrs[1];
argptrs[0] = &p_cargo;
handlers[p_event].callp(argptrs, 1, ret, ce);
if (ce.error != Callable::CallError::CALL_OK) {
ERR_PRINT("Error calling event handler " + Variant::get_callable_error_text(handlers[p_event], argptrs, 1, ce));
}
}
2024-01-07 04:54:17 +00:00
2024-01-13 16:10:42 +00:00
#elif LIMBOAI_GDEXTENSION
2024-01-07 04:54:17 +00:00
if (p_cargo.get_type() == Variant::NIL) {
ret = handlers[p_event].call();
} else {
Array args;
args.append(p_cargo);
ret = handlers[p_event].callv(args);
}
#endif // LIMBOAI_GDEXTENSION
2022-12-16 10:56:41 +00:00
if (unlikely(ret.get_type() != Variant::BOOL)) {
ERR_PRINT("Event handler returned unexpected type: " + Variant::get_type_name(ret.get_type()));
} else {
return ret;
2022-09-28 10:48:45 +00:00
}
}
2022-12-16 10:56:41 +00:00
return false;
2022-09-28 10:48:45 +00:00
}
2022-12-16 10:56:41 +00:00
void LimboState::add_event_handler(const String &p_event, const Callable &p_handler) {
ERR_FAIL_COND(p_event.is_empty());
2022-12-16 10:56:41 +00:00
ERR_FAIL_COND(!p_handler.is_valid());
handlers.insert(p_event, p_handler);
2022-09-28 10:48:45 +00:00
}
LimboState *LimboState::call_on_enter(const Callable &p_callable) {
2022-12-16 10:56:41 +00:00
ERR_FAIL_COND_V(!p_callable.is_valid(), this);
connect(LimboStringNames::get_singleton()->entered, p_callable);
2022-09-28 10:48:45 +00:00
return this;
}
LimboState *LimboState::call_on_exit(const Callable &p_callable) {
2022-12-16 10:56:41 +00:00
ERR_FAIL_COND_V(!p_callable.is_valid(), this);
connect(LimboStringNames::get_singleton()->exited, p_callable);
2022-09-28 10:48:45 +00:00
return this;
}
LimboState *LimboState::call_on_update(const Callable &p_callable) {
2022-12-16 10:56:41 +00:00
ERR_FAIL_COND_V(!p_callable.is_valid(), this);
connect(LimboStringNames::get_singleton()->updated, p_callable);
2022-09-28 10:48:45 +00:00
return this;
}
2022-12-16 10:56:41 +00:00
void LimboState::set_guard(const Callable &p_guard_callable) {
ERR_FAIL_COND(!p_guard_callable.is_valid());
guard_callable = p_guard_callable;
2022-09-29 20:44:51 +00:00
}
2022-12-16 10:56:41 +00:00
void LimboState::clear_guard() {
guard_callable = Callable();
2022-09-29 20:44:51 +00:00
}
2022-09-28 10:48:45 +00:00
void LimboState::_notification(int p_what) {
switch (p_what) {
case NOTIFICATION_EXIT_TREE: {
if (active) {
_exit();
}
} break;
}
}
void LimboState::_bind_methods() {
ClassDB::bind_method(D_METHOD("get_root"), &LimboState::get_root);
2022-10-19 21:39:27 +00:00
ClassDB::bind_method(D_METHOD("get_agent"), &LimboState::get_agent);
2022-10-26 21:12:29 +00:00
ClassDB::bind_method(D_METHOD("set_agent", "p_agent"), &LimboState::set_agent);
2022-09-28 10:48:45 +00:00
ClassDB::bind_method(D_METHOD("event_finished"), &LimboState::event_finished);
ClassDB::bind_method(D_METHOD("is_active"), &LimboState::is_active);
2022-10-31 20:30:32 +00:00
ClassDB::bind_method(D_METHOD("_initialize", "p_agent", "p_blackboard"), &LimboState::_initialize);
2022-09-28 10:48:45 +00:00
ClassDB::bind_method(D_METHOD("dispatch", "p_event", "p_cargo"), &LimboState::dispatch, Variant());
ClassDB::bind_method(D_METHOD("named", "p_name"), &LimboState::named);
2022-12-16 10:56:41 +00:00
ClassDB::bind_method(D_METHOD("add_event_handler", "p_event", "p_handler"), &LimboState::add_event_handler);
ClassDB::bind_method(D_METHOD("call_on_enter", "p_callable"), &LimboState::call_on_enter);
ClassDB::bind_method(D_METHOD("call_on_exit", "p_callable"), &LimboState::call_on_exit);
ClassDB::bind_method(D_METHOD("call_on_update", "p_callable"), &LimboState::call_on_update);
ClassDB::bind_method(D_METHOD("set_guard", "p_guard_callable"), &LimboState::set_guard);
ClassDB::bind_method(D_METHOD("clear_guard"), &LimboState::clear_guard);
2022-10-19 21:39:27 +00:00
ClassDB::bind_method(D_METHOD("get_blackboard"), &LimboState::get_blackboard);
2022-09-28 10:48:45 +00:00
ClassDB::bind_method(D_METHOD("set_blackboard_plan", "p_plan"), &LimboState::set_blackboard_plan);
ClassDB::bind_method(D_METHOD("get_blackboard_plan"), &LimboState::get_blackboard_plan);
2024-01-07 04:54:17 +00:00
#ifdef LIMBOAI_MODULE
GDVIRTUAL_BIND(_setup);
GDVIRTUAL_BIND(_enter);
GDVIRTUAL_BIND(_exit);
GDVIRTUAL_BIND(_update, "p_delta");
2024-01-13 16:10:42 +00:00
#elif LIMBOAI_GDEXTENSION
// TODO: Registering virtual functions is not available in godot-cpp...
2024-01-07 04:54:17 +00:00
#endif
2022-09-28 10:48:45 +00:00
2022-10-26 21:12:29 +00:00
ADD_PROPERTY(PropertyInfo(Variant::STRING, "EVENT_FINISHED", PROPERTY_HINT_NONE, "", 0), "", "event_finished");
2022-12-16 10:56:41 +00:00
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "agent", PROPERTY_HINT_RESOURCE_TYPE, "Node", 0), "set_agent", "get_agent");
2022-10-26 21:12:29 +00:00
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "blackboard", PROPERTY_HINT_RESOURCE_TYPE, "Blackboard", 0), "", "get_blackboard");
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "blackboard_plan", PROPERTY_HINT_RESOURCE_TYPE, "BlackboardPlan", PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_INTERNAL), "set_blackboard_plan", "get_blackboard_plan");
2022-10-12 12:02:39 +00:00
2022-09-28 10:48:45 +00:00
ADD_SIGNAL(MethodInfo("setup"));
ADD_SIGNAL(MethodInfo("entered"));
ADD_SIGNAL(MethodInfo("exited"));
ADD_SIGNAL(MethodInfo("updated", PropertyInfo(Variant::FLOAT, "p_delta")));
}
2022-09-28 10:48:45 +00:00
LimboState::LimboState() {
agent = nullptr;
active = false;
blackboard = Ref<Blackboard>(memnew(Blackboard));
2022-09-28 10:48:45 +00:00
2022-12-16 10:56:41 +00:00
guard_callable = Callable();
2022-09-29 20:44:51 +00:00
2022-09-28 10:48:45 +00:00
set_process(false);
set_physics_process(false);
set_process_input(false);
}