2023-08-18 19:38:28 +00:00
|
|
|
/**
|
|
|
|
* bt_comment.cpp
|
|
|
|
* =============================================================================
|
2024-03-21 20:38:57 +00:00
|
|
|
* Copyright 2021-2024 Serhii Snitsaruk
|
2023-08-18 19:38:28 +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.
|
|
|
|
* =============================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "bt_comment.h"
|
|
|
|
|
2023-08-19 10:39:51 +00:00
|
|
|
#include "bt_task.h"
|
|
|
|
|
2024-01-06 20:04:34 +00:00
|
|
|
#ifdef LIMBOAI_GDEXTENSION
|
|
|
|
#include <godot_cpp/classes/engine.hpp>
|
|
|
|
using namespace godot;
|
|
|
|
#endif
|
|
|
|
|
2023-08-18 19:38:28 +00:00
|
|
|
Ref<BTTask> BTComment::clone() const {
|
|
|
|
if (Engine::get_singleton()->is_editor_hint()) {
|
|
|
|
return BTTask::clone();
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
2023-08-19 10:39:51 +00:00
|
|
|
|
2024-01-06 20:04:34 +00:00
|
|
|
PackedStringArray BTComment::get_configuration_warnings() {
|
2023-08-19 10:39:51 +00:00
|
|
|
PackedStringArray warnings = BTTask::get_configuration_warnings();
|
|
|
|
if (get_child_count_excluding_comments() > 0) {
|
|
|
|
warnings.append("Can only have other comment tasks as children.");
|
|
|
|
}
|
|
|
|
if (get_parent() == nullptr) {
|
|
|
|
warnings.append("Can't be the root task.");
|
|
|
|
}
|
|
|
|
return warnings;
|
|
|
|
}
|