1
0
mirror of https://github.com/godotengine/godot synced 2024-07-05 18:14:09 +00:00

Merge pull request #86269 from aaronfranke/detect-module

Allow detecting when building as an engine module
This commit is contained in:
Rémi Verschelde 2024-01-09 11:27:24 +01:00
commit 079f1c154d
No known key found for this signature in database
GPG Key ID: C3336907360768E1
16 changed files with 23 additions and 20 deletions

View File

@ -7,6 +7,9 @@ Import("env")
env_modules = env.Clone()
# Allow modules to detect if they are being built as a module.
env_modules.Append(CPPDEFINES=["GODOT_MODULE"])
Export("env_modules")
# Header with MODULE_*_ENABLED defines.

View File

@ -34,7 +34,7 @@
#ifdef GDEXTENSION
#include <godot_cpp/core/class_db.hpp>
using namespace godot;
#else
#elif defined(GODOT_MODULE)
#include "modules/register_module_types.h"
#endif

View File

@ -40,7 +40,7 @@
using namespace godot;
#else
#elif defined(GODOT_MODULE)
// Headers for building as built-in module.
#include "core/string/ustring.h"

View File

@ -44,7 +44,7 @@ using namespace godot;
#define GLOBAL_GET(m_var) ProjectSettings::get_singleton()->get_setting_with_override(m_var)
#else
#elif defined(GODOT_MODULE)
// Headers for building as built-in module.
#include "core/config/project_settings.h"
@ -370,7 +370,7 @@ bool TextServerAdvanced::_has_feature(Feature p_feature) const {
String TextServerAdvanced::_get_name() const {
#ifdef GDEXTENSION
return "ICU / HarfBuzz / Graphite (GDExtension)";
#else
#elif defined(GODOT_MODULE)
return "ICU / HarfBuzz / Graphite (Built-in)";
#endif
}
@ -4852,7 +4852,7 @@ RID TextServerAdvanced::_find_sys_font_for_text(const RID &p_fdef, const String
#ifdef GDEXTENSION
for (int fb = 0; fb < fallback_font_name.size(); fb++) {
const String &E = fallback_font_name[fb];
#else
#elif defined(GODOT_MODULE)
for (const String &E : fallback_font_name) {
#endif
SystemFontKey key = SystemFontKey(E, font_style & TextServer::FONT_ITALIC, font_weight, font_stretch, p_fdef, this);
@ -6757,7 +6757,7 @@ String TextServerAdvanced::_strip_diacritics(const String &p_string) const {
if (u_getCombiningClass(normalized_string[i]) == 0) {
#ifdef GDEXTENSION
result = result + String::chr(normalized_string[i]);
#else
#elif defined(GODOT_MODULE)
result = result + normalized_string[i];
#endif
}

View File

@ -78,7 +78,7 @@
using namespace godot;
#else
#elif defined(GODOT_MODULE)
// Headers for building as built-in module.
#include "core/extension/ext_wrappers.gen.inc"

View File

@ -35,7 +35,7 @@
using namespace godot;
#else
#elif defined(GODOT_MODULE)
// Headers for building as built-in module.
#include "core/typedefs.h"

View File

@ -39,7 +39,7 @@
using namespace godot;
#else
#elif defined(GODOT_MODULE)
// Headers for building as built-in module.
#include "core/typedefs.h"

View File

@ -38,7 +38,7 @@
using namespace godot;
#else
#elif defined(GODOT_MODULE)
// Headers for building as built-in module.
#include "core/error/error_macros.h"

View File

@ -40,7 +40,7 @@
using namespace godot;
#else
#elif defined(GODOT_MODULE)
// Headers for building as built-in module.
#include "core/os/mutex.h"

View File

@ -34,7 +34,7 @@
#ifdef GDEXTENSION
#include <godot_cpp/core/class_db.hpp>
using namespace godot;
#else
#elif defined(GODOT_MODULE)
#include "modules/register_module_types.h"
#endif

View File

@ -44,7 +44,7 @@ using namespace godot;
#define GLOBAL_GET(m_var) ProjectSettings::get_singleton()->get_setting_with_override(m_var)
#else
#elif defined(GODOT_MODULE)
// Headers for building as built-in module.
#include "core/config/project_settings.h"
@ -95,7 +95,7 @@ bool TextServerFallback::_has_feature(Feature p_feature) const {
String TextServerFallback::_get_name() const {
#ifdef GDEXTENSION
return "Fallback (GDExtension)";
#else
#elif defined(GODOT_MODULE)
return "Fallback (Built-in)";
#endif
}
@ -3654,7 +3654,7 @@ RID TextServerFallback::_find_sys_font_for_text(const RID &p_fdef, const String
#ifdef GDEXTENSION
for (int fb = 0; fb < fallback_font_name.size(); fb++) {
const String &E = fallback_font_name[fb];
#else
#elif defined(GODOT_MODULE)
for (const String &E : fallback_font_name) {
#endif
SystemFontKey key = SystemFontKey(E, font_style & TextServer::FONT_ITALIC, font_weight, font_stretch, p_fdef, this);

View File

@ -76,7 +76,7 @@
using namespace godot;
#else
#elif defined(GODOT_MODULE)
// Headers for building as built-in module.
#include "core/extension/ext_wrappers.gen.inc"

View File

@ -35,7 +35,7 @@
using namespace godot;
#else
#elif defined(GODOT_MODULE)
// Headers for building as built-in module.
#include "core/typedefs.h"

View File

@ -39,7 +39,7 @@
using namespace godot;
#else
#elif defined(GODOT_MODULE)
// Headers for building as built-in module.
#include "core/typedefs.h"

View File

@ -38,7 +38,7 @@
using namespace godot;
#else
#elif defined(GODOT_MODULE)
// Headers for building as built-in module.
#include "core/error/error_macros.h"

View File

@ -40,7 +40,7 @@
using namespace godot;
#else
#elif defined(GODOT_MODULE)
// Headers for building as built-in module.
#include "core/os/mutex.h"