summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/SCsub12
-rw-r--r--core/config/engine.cpp45
-rw-r--r--core/config/engine.h3
-rw-r--r--core/config/project_settings.cpp14
-rw-r--r--core/core_bind.cpp23
-rw-r--r--core/core_bind.h3
-rw-r--r--core/core_builders.py49
-rw-r--r--core/crypto/SCsub2
-rw-r--r--core/extension/gdextension.cpp10
-rw-r--r--core/input/godotcontrollerdb.txt4
-rw-r--r--core/io/compression.cpp4
-rw-r--r--core/io/file_access_pack.h2
-rw-r--r--core/io/http_client_tcp.cpp2
-rw-r--r--core/io/image.cpp8
-rw-r--r--core/io/remote_filesystem_client.cpp1
-rw-r--r--core/math/convex_hull.cpp2
-rw-r--r--core/object/class_db.h2
-rw-r--r--core/os/safe_binary_mutex.h2
-rw-r--r--core/string/string_builder.cpp2
-rw-r--r--core/string/string_builder.h2
-rw-r--r--core/templates/hash_map.h2
-rw-r--r--core/templates/hash_set.h2
-rw-r--r--core/version.h48
23 files changed, 204 insertions, 40 deletions
diff --git a/core/SCsub b/core/SCsub
index c8267ae960..bd61b5fc5b 100644
--- a/core/SCsub
+++ b/core/SCsub
@@ -157,7 +157,7 @@ if env["builtin_zstd"]:
env.core_sources += thirdparty_obj
-# Godot source files
+# Redot source files
env.add_source_files(env.core_sources, "*.cpp")
@@ -189,7 +189,11 @@ def version_info_builder(target, source, env):
#define VERSION_MODULE_CONFIG "{module_config}"
#define VERSION_WEBSITE "{website}"
#define VERSION_DOCS_BRANCH "{docs_branch}"
-#define VERSION_DOCS_URL "https://docs.godotengine.org/en/" VERSION_DOCS_BRANCH
+#define VERSION_DOCS_URL "https://docs.redotengine.org/en/" VERSION_DOCS_BRANCH
+#define GODOT_VERSION_MAJOR {godot_major}
+#define GODOT_VERSION_MINOR {godot_minor}
+#define GODOT_VERSION_PATCH {godot_patch}
+#define GODOT_VERSION_STATUS "{godot_status}"
""".format(**env.version_info)
)
@@ -259,6 +263,10 @@ env.CommandNoCache(
)
# Authors
+env.Depends("#core/redot_authors.gen.h", "../REDOT_AUTHORS.md")
+env.CommandNoCache("#core/redot_authors.gen.h", "../REDOT_AUTHORS.md", env.Run(core_builders.make_redot_authors_header))
+
+# Authors
env.Depends("#core/authors.gen.h", "../AUTHORS.md")
env.CommandNoCache("#core/authors.gen.h", "../AUTHORS.md", env.Run(core_builders.make_authors_header))
diff --git a/core/config/engine.cpp b/core/config/engine.cpp
index 3574430cf7..7b65319849 100644
--- a/core/config/engine.cpp
+++ b/core/config/engine.cpp
@@ -34,8 +34,10 @@
#include "core/config/project_settings.h"
#include "core/donors.gen.h"
#include "core/license.gen.h"
+#include "core/redot_authors.gen.h"
#include "core/variant/typed_array.h"
#include "core/version.h"
+#include "core/version_generated.gen.h"
void Engine::set_physics_ticks_per_second(int p_ips) {
ERR_FAIL_COND_MSG(p_ips <= 0, "Engine iterations per second must be greater than 0.");
@@ -137,6 +139,25 @@ Dictionary Engine::get_version_info() const {
return dict;
}
+Dictionary Engine::get_godot_compatible_version_info() const {
+ Dictionary dict;
+ dict["major"] = GODOT_VERSION_MAJOR;
+ dict["minor"] = GODOT_VERSION_MINOR;
+ dict["patch"] = GODOT_VERSION_PATCH;
+ dict["hex"] = GODOT_VERSION_HEX;
+ dict["status"] = GODOT_VERSION_STATUS;
+
+ String stringver = String(dict["major"]) + "." + String(dict["minor"]);
+ if ((int)dict["patch"] != 0) {
+ stringver += "." + String(dict["patch"]);
+ }
+ // stringver += "-" + String(dict["status"]) + " (" + String(dict["build"]) + ")"; TODO: add godot automated build identification?
+ stringver += "-" + String(dict["status"]);
+ dict["string"] = stringver;
+
+ return dict;
+}
+
static Array array_from_info(const char *const *info_list) {
Array arr;
for (int i = 0; info_list[i] != nullptr; i++) {
@@ -156,6 +177,17 @@ static Array array_from_info_count(const char *const *info_list, int info_count)
Dictionary Engine::get_author_info() const {
Dictionary dict;
+ dict["lead_developers"] = array_from_info(REDOT_AUTHORS_LEAD_DEVELOPERS);
+ dict["project_managers"] = array_from_info(REDOT_AUTHORS_PROJECT_MANAGERS);
+ dict["founders"] = array_from_info(REDOT_AUTHORS_FOUNDERS);
+ dict["developers"] = array_from_info(REDOT_AUTHORS_DEVELOPERS);
+
+ return dict;
+}
+
+Dictionary Engine::get_godot_author_info() const {
+ Dictionary dict;
+
dict["lead_developers"] = array_from_info(AUTHORS_LEAD_DEVELOPERS);
dict["project_managers"] = array_from_info(AUTHORS_PROJECT_MANAGERS);
dict["founders"] = array_from_info(AUTHORS_FOUNDERS);
@@ -188,6 +220,19 @@ TypedArray<Dictionary> Engine::get_copyright_info() const {
Dictionary Engine::get_donor_info() const {
Dictionary donors;
+ donors["patrons"] = Array();
+ donors["platinum_sponsors"] = Array();
+ donors["gold_sponsors"] = Array();
+ donors["silver_sponsors"] = Array();
+ donors["diamond_members"] = Array();
+ donors["titanium_members"] = Array();
+ donors["platinum_members"] = Array();
+ donors["gold_members"] = Array();
+ return donors;
+}
+
+Dictionary Engine::get_godot_donor_info() const {
+ Dictionary donors;
donors["patrons"] = array_from_info(DONORS_PATRONS);
donors["platinum_sponsors"] = array_from_info(DONORS_SPONSORS_PLATINUM);
donors["gold_sponsors"] = array_from_info(DONORS_SPONSORS_GOLD);
diff --git a/core/config/engine.h b/core/config/engine.h
index 7e617d8773..f7e14f15d1 100644
--- a/core/config/engine.h
+++ b/core/config/engine.h
@@ -164,9 +164,12 @@ public:
#endif
Dictionary get_version_info() const;
+ Dictionary get_godot_compatible_version_info() const;
Dictionary get_author_info() const;
+ Dictionary get_godot_author_info() const;
TypedArray<Dictionary> get_copyright_info() const;
Dictionary get_donor_info() const;
+ Dictionary get_godot_donor_info() const;
Dictionary get_license_info() const;
String get_license_text() const;
diff --git a/core/config/project_settings.cpp b/core/config/project_settings.cpp
index f231e4010f..f671d94579 100644
--- a/core/config/project_settings.cpp
+++ b/core/config/project_settings.cpp
@@ -74,7 +74,7 @@ String ProjectSettings::get_imported_files_path() const {
}
#ifdef TOOLS_ENABLED
-// Returns the features that a project must have when opened with this build of Godot.
+// Returns the features that a project must have when opened with this build of Redot.
// This is used by the project manager to provide the initial_settings for config/features.
const PackedStringArray ProjectSettings::get_required_features() {
PackedStringArray features;
@@ -85,7 +85,7 @@ const PackedStringArray ProjectSettings::get_required_features() {
return features;
}
-// Returns the features supported by this build of Godot. Includes all required features.
+// Returns the features supported by this build of Redot. Includes all required features.
const PackedStringArray ProjectSettings::_get_supported_features() {
PackedStringArray features = get_required_features();
#ifdef MODULE_MONO_ENABLED
@@ -108,7 +108,7 @@ const PackedStringArray ProjectSettings::_get_supported_features() {
return features;
}
-// Returns the features that this project needs but this build of Godot lacks.
+// Returns the features that this project needs but this build of Redot lacks.
const PackedStringArray ProjectSettings::get_unsupported_features(const PackedStringArray &p_project_features) {
PackedStringArray unsupported_features;
PackedStringArray supported_features = singleton->_get_supported_features();
@@ -125,7 +125,7 @@ const PackedStringArray ProjectSettings::get_unsupported_features(const PackedSt
return unsupported_features;
}
-// Returns the features that both this project has and this build of Godot has, ensuring required features exist.
+// Returns the features that both this project has and this build of Redot has, ensuring required features exist.
const PackedStringArray ProjectSettings::_trim_to_supported_features(const PackedStringArray &p_project_features) {
// Remove unsupported features if present.
PackedStringArray features = PackedStringArray(p_project_features);
@@ -570,7 +570,7 @@ Error ProjectSettings::_setup(const String &p_path, const String &p_main_pack, b
bool found = _load_resource_pack(exec_path);
// Attempt with exec_name.pck.
- // (This is the usual case when distributing a Godot game.)
+ // (This is the usual case when distributing a Redot game.)
String exec_dir = exec_path.get_base_dir();
String exec_filename = exec_path.get_file();
String exec_basename = exec_filename.get_basename();
@@ -1410,7 +1410,7 @@ void ProjectSettings::_add_builtin_input_map() {
ProjectSettings::ProjectSettings() {
// Initialization of engine variables should be done in the setup() method,
- // so that the values can be overridden from project.godot or project.binary.
+ // so that the values can be overridden from project.redot or project.binary.
CRASH_COND_MSG(singleton != nullptr, "Instantiating a new ProjectSettings singleton is not supported.");
singleton = this;
@@ -1517,7 +1517,7 @@ ProjectSettings::ProjectSettings() {
GLOBAL_DEF("debug/settings/crash_handler/message",
String("Please include this when reporting the bug to the project developer."));
GLOBAL_DEF("debug/settings/crash_handler/message.editor",
- String("Please include this when reporting the bug on: https://github.com/godotengine/godot/issues"));
+ String("Please include this when reporting the bug on: https://github.com/Redot-Engine/redot-engine/issues"));
GLOBAL_DEF_RST(PropertyInfo(Variant::INT, "rendering/occlusion_culling/bvh_build_quality", PROPERTY_HINT_ENUM, "Low,Medium,High"), 2);
GLOBAL_DEF_RST("rendering/occlusion_culling/jitter_projection", true);
diff --git a/core/core_bind.cpp b/core/core_bind.cpp
index a1b7b81111..dcc71259b1 100644
--- a/core/core_bind.cpp
+++ b/core/core_bind.cpp
@@ -272,18 +272,18 @@ String OS::get_executable_path() const {
Error OS::shell_open(const String &p_uri) {
if (p_uri.begins_with("res://")) {
- WARN_PRINT("Attempting to open an URL with the \"res://\" protocol. Use `ProjectSettings.globalize_path()` to convert a Godot-specific path to a system path before opening it with `OS.shell_open()`.");
+ WARN_PRINT("Attempting to open an URL with the \"res://\" protocol. Use `ProjectSettings.globalize_path()` to convert a Redot-specific path to a system path before opening it with `OS.shell_open()`.");
} else if (p_uri.begins_with("user://")) {
- WARN_PRINT("Attempting to open an URL with the \"user://\" protocol. Use `ProjectSettings.globalize_path()` to convert a Godot-specific path to a system path before opening it with `OS.shell_open()`.");
+ WARN_PRINT("Attempting to open an URL with the \"user://\" protocol. Use `ProjectSettings.globalize_path()` to convert a Redot-specific path to a system path before opening it with `OS.shell_open()`.");
}
return ::OS::get_singleton()->shell_open(p_uri);
}
Error OS::shell_show_in_file_manager(const String &p_path, bool p_open_folder) {
if (p_path.begins_with("res://")) {
- WARN_PRINT("Attempting to explore file path with the \"res://\" protocol. Use `ProjectSettings.globalize_path()` to convert a Godot-specific path to a system path before opening it with `OS.shell_show_in_file_manager()`.");
+ WARN_PRINT("Attempting to explore file path with the \"res://\" protocol. Use `ProjectSettings.globalize_path()` to convert a Redot-specific path to a system path before opening it with `OS.shell_show_in_file_manager()`.");
} else if (p_path.begins_with("user://")) {
- WARN_PRINT("Attempting to explore file path with the \"user://\" protocol. Use `ProjectSettings.globalize_path()` to convert a Godot-specific path to a system path before opening it with `OS.shell_show_in_file_manager()`.");
+ WARN_PRINT("Attempting to explore file path with the \"user://\" protocol. Use `ProjectSettings.globalize_path()` to convert a Redot-specific path to a system path before opening it with `OS.shell_show_in_file_manager()`.");
}
return ::OS::get_singleton()->shell_show_in_file_manager(p_path, p_open_folder);
}
@@ -1700,10 +1700,18 @@ Dictionary Engine::get_version_info() const {
return ::Engine::get_singleton()->get_version_info();
}
+Dictionary Engine::get_godot_compatible_version_info() const {
+ return ::Engine::get_singleton()->get_godot_compatible_version_info();
+}
+
Dictionary Engine::get_author_info() const {
return ::Engine::get_singleton()->get_author_info();
}
+Dictionary Engine::get_godot_author_info() const {
+ return ::Engine::get_singleton()->get_godot_author_info();
+}
+
TypedArray<Dictionary> Engine::get_copyright_info() const {
return ::Engine::get_singleton()->get_copyright_info();
}
@@ -1712,6 +1720,10 @@ Dictionary Engine::get_donor_info() const {
return ::Engine::get_singleton()->get_donor_info();
}
+Dictionary Engine::get_godot_donor_info() const {
+ return ::Engine::get_singleton()->get_godot_donor_info();
+}
+
Dictionary Engine::get_license_info() const {
return ::Engine::get_singleton()->get_license_info();
}
@@ -1833,9 +1845,12 @@ void Engine::_bind_methods() {
ClassDB::bind_method(D_METHOD("get_main_loop"), &Engine::get_main_loop);
ClassDB::bind_method(D_METHOD("get_version_info"), &Engine::get_version_info);
+ ClassDB::bind_method(D_METHOD("get_godot_compatible_version_info"), &Engine::get_godot_compatible_version_info);
ClassDB::bind_method(D_METHOD("get_author_info"), &Engine::get_author_info);
+ ClassDB::bind_method(D_METHOD("get_godot_author_info"), &Engine::get_godot_author_info);
ClassDB::bind_method(D_METHOD("get_copyright_info"), &Engine::get_copyright_info);
ClassDB::bind_method(D_METHOD("get_donor_info"), &Engine::get_donor_info);
+ ClassDB::bind_method(D_METHOD("get_godot_donor_info"), &Engine::get_godot_donor_info);
ClassDB::bind_method(D_METHOD("get_license_info"), &Engine::get_license_info);
ClassDB::bind_method(D_METHOD("get_license_text"), &Engine::get_license_text);
diff --git a/core/core_bind.h b/core/core_bind.h
index b142a2fbbd..0ec65b0efc 100644
--- a/core/core_bind.h
+++ b/core/core_bind.h
@@ -515,9 +515,12 @@ public:
MainLoop *get_main_loop() const;
Dictionary get_version_info() const;
+ Dictionary get_godot_compatible_version_info() const;
Dictionary get_author_info() const;
+ Dictionary get_godot_author_info() const;
TypedArray<Dictionary> get_copyright_info() const;
Dictionary get_donor_info() const;
+ Dictionary get_godot_donor_info() const;
Dictionary get_license_info() const;
String get_license_text() const;
diff --git a/core/core_builders.py b/core/core_builders.py
index a3dc935b79..0c161db364 100644
--- a/core/core_builders.py
+++ b/core/core_builders.py
@@ -53,6 +53,55 @@ def make_certs_header(target, source, env):
g.write("#endif // CERTS_COMPRESSED_GEN_H")
+def make_redot_authors_header(target, source, env):
+ sections = [
+ "Project Founders",
+ "Lead Developer",
+ "Project Manager",
+ "Developers",
+ ]
+ sections_id = [
+ "REDOT_AUTHORS_FOUNDERS",
+ "REDOT_AUTHORS_LEAD_DEVELOPERS",
+ "REDOT_AUTHORS_PROJECT_MANAGERS",
+ "REDOT_AUTHORS_DEVELOPERS",
+ ]
+
+ src = str(source[0])
+ dst = str(target[0])
+ with open(src, "r", encoding="utf-8") as f, open(dst, "w", encoding="utf-8", newline="\n") as g:
+ g.write("/* THIS FILE IS GENERATED DO NOT EDIT */\n")
+ g.write("#ifndef REDOT_AUTHORS_GEN_H\n")
+ g.write("#define REDOT_AUTHORS_GEN_H\n")
+
+ reading = False
+
+ def close_section():
+ g.write("\t0\n")
+ g.write("};\n")
+
+ for line in f:
+ if reading:
+ if line.startswith(" "):
+ g.write('\t"' + escape_string(line.strip()) + '",\n')
+ continue
+ if line.startswith("## "):
+ if reading:
+ close_section()
+ reading = False
+ for section, section_id in zip(sections, sections_id):
+ if line.strip().endswith(section):
+ current_section = escape_string(section_id)
+ reading = True
+ g.write("const char *const " + current_section + "[] = {\n")
+ break
+
+ if reading:
+ close_section()
+
+ g.write("#endif // REDOT_AUTHORS_GEN_H\n")
+
+
def make_authors_header(target, source, env):
sections = [
"Project Founders",
diff --git a/core/crypto/SCsub b/core/crypto/SCsub
index 8cff3cf679..ade313745b 100644
--- a/core/crypto/SCsub
+++ b/core/crypto/SCsub
@@ -53,7 +53,7 @@ elif is_builtin:
# Needed to force rebuilding the core files when the configuration file is updated.
thirdparty_obj = ["#thirdparty/mbedtls/include/godot_module_mbedtls_config.h"]
-# Godot source files
+# Redot source files
core_obj = []
diff --git a/core/extension/gdextension.cpp b/core/extension/gdextension.cpp
index cb6832ea39..120a68e1f1 100644
--- a/core/extension/gdextension.cpp
+++ b/core/extension/gdextension.cpp
@@ -241,7 +241,7 @@ public:
virtual Variant call(Object *p_object, const Variant **p_args, int p_arg_count, Callable::CallError &r_error) const override {
#ifdef TOOLS_ENABLED
- ERR_FAIL_COND_V_MSG(!valid, Variant(), vformat("Cannot call invalid GDExtension method bind '%s'. It's probably cached - you may need to restart Godot.", name));
+ ERR_FAIL_COND_V_MSG(!valid, Variant(), vformat("Cannot call invalid GDExtension method bind '%s'. It's probably cached - you may need to restart Redot.", name));
ERR_FAIL_COND_V_MSG(p_object && p_object->is_extension_placeholder(), Variant(), vformat("Cannot call GDExtension method bind '%s' on placeholder instance.", name));
#endif
Variant ret;
@@ -255,7 +255,7 @@ public:
}
virtual void validated_call(Object *p_object, const Variant **p_args, Variant *r_ret) const override {
#ifdef TOOLS_ENABLED
- ERR_FAIL_COND_MSG(!valid, vformat("Cannot call invalid GDExtension method bind '%s'. It's probably cached - you may need to restart Godot.", name));
+ ERR_FAIL_COND_MSG(!valid, vformat("Cannot call invalid GDExtension method bind '%s'. It's probably cached - you may need to restart Redot.", name));
ERR_FAIL_COND_MSG(p_object && p_object->is_extension_placeholder(), vformat("Cannot call GDExtension method bind '%s' on placeholder instance.", name));
#endif
ERR_FAIL_COND_MSG(vararg, "Vararg methods don't have validated call support. This is most likely an engine bug.");
@@ -287,7 +287,7 @@ public:
virtual void ptrcall(Object *p_object, const void **p_args, void *r_ret) const override {
#ifdef TOOLS_ENABLED
- ERR_FAIL_COND_MSG(!valid, vformat("Cannot call invalid GDExtension method bind '%s'. It's probably cached - you may need to restart Godot.", name));
+ ERR_FAIL_COND_MSG(!valid, vformat("Cannot call invalid GDExtension method bind '%s'. It's probably cached - you may need to restart Redot.", name));
ERR_FAIL_COND_MSG(p_object && p_object->is_extension_placeholder(), vformat("Cannot call GDExtension method bind '%s' on placeholder instance.", name));
#endif
ERR_FAIL_COND_MSG(vararg, "Vararg methods don't have ptrcall support. This is most likely an engine bug.");
@@ -483,10 +483,10 @@ void GDExtension::_register_extension_class_internal(GDExtensionClassLibraryPtr
if (self->is_reloading && self->extension_classes.has(class_name)) {
extension = &self->extension_classes[class_name];
if (!parent_extension && parent_class_name != extension->gdextension.parent_class_name) {
- ERR_FAIL_MSG(vformat("GDExtension class '%s' cannot change parent type from '%s' to '%s' on hot reload. Restart Godot for this change to take effect.", class_name, extension->gdextension.parent_class_name, parent_class_name));
+ ERR_FAIL_MSG(vformat("GDExtension class '%s' cannot change parent type from '%s' to '%s' on hot reload. Restart Redot for this change to take effect.", class_name, extension->gdextension.parent_class_name, parent_class_name));
}
if (extension->gdextension.is_runtime != is_runtime) {
- ERR_PRINT(vformat("GDExtension class '%s' cannot change to/from runtime class on hot reload. Restart Godot for this change to take effect.", class_name));
+ ERR_PRINT(vformat("GDExtension class '%s' cannot change to/from runtime class on hot reload. Restart Redot for this change to take effect.", class_name));
is_runtime = extension->gdextension.is_runtime;
}
extension->is_reloading = false;
diff --git a/core/input/godotcontrollerdb.txt b/core/input/godotcontrollerdb.txt
index 8e8ec4c718..1b67d86072 100644
--- a/core/input/godotcontrollerdb.txt
+++ b/core/input/godotcontrollerdb.txt
@@ -1,5 +1,5 @@
-# Game Controller DB for Godot in SDL 2.0.16 format
-# Source: https://github.com/godotengine/godot
+# Game Controller DB for Redot in SDL 2.0.16 format
+# Source: https://github.com/Redot-Engine/redot-engine
# Windows
__XINPUT_DEVICE__,XInput Gamepad,a:b12,b:b13,x:b14,y:b15,start:b4,guide:b10,back:b5,leftstick:b6,rightstick:b7,leftshoulder:b8,rightshoulder:b9,dpup:b0,dpdown:b1,dpleft:b2,dpright:b3,leftx:a0,lefty:a1,rightx:a2,righty:a3,lefttrigger:a4,righttrigger:a5,platform:Windows,
diff --git a/core/io/compression.cpp b/core/io/compression.cpp
index 4e4627c40b..74e450c117 100644
--- a/core/io/compression.cpp
+++ b/core/io/compression.cpp
@@ -146,7 +146,7 @@ int Compression::decompress(uint8_t *p_dst, int p_dst_max_size, const uint8_t *p
ERR_FAIL_COND_V(res != BROTLI_DECODER_RESULT_SUCCESS, -1);
return ret_size;
#else
- ERR_FAIL_V_MSG(-1, "Godot was compiled without brotli support.");
+ ERR_FAIL_V_MSG(-1, "Redot was compiled without brotli support.");
#endif
} break;
case MODE_FASTLZ: {
@@ -267,7 +267,7 @@ int Compression::decompress_dynamic(Vector<uint8_t> *p_dst_vect, int p_max_dst_s
BrotliDecoderDestroyInstance(state);
return Z_OK;
#else
- ERR_FAIL_V_MSG(Z_ERRNO, "Godot was compiled without brotli support.");
+ ERR_FAIL_V_MSG(Z_ERRNO, "Redot was compiled without brotli support.");
#endif
} else {
// This function only supports GZip and Deflate.
diff --git a/core/io/file_access_pack.h b/core/io/file_access_pack.h
index 594ac8f089..efce2c0cac 100644
--- a/core/io/file_access_pack.h
+++ b/core/io/file_access_pack.h
@@ -38,7 +38,7 @@
#include "core/templates/list.h"
#include "core/templates/rb_map.h"
-// Godot's packed file magic header ("GDPC" in ASCII).
+// Redot's packed file magic header ("GDPC" in ASCII).
#define PACK_HEADER_MAGIC 0x43504447
// The current packed file format version number.
#define PACK_FORMAT_VERSION 2
diff --git a/core/io/http_client_tcp.cpp b/core/io/http_client_tcp.cpp
index 2f45238951..84c9264ece 100644
--- a/core/io/http_client_tcp.cpp
+++ b/core/io/http_client_tcp.cpp
@@ -196,7 +196,7 @@ Error HTTPClientTCP::request(Method p_method, const String &p_url, const Vector<
// Should it add utf8 encoding?
}
if (add_uagent) {
- request += "User-Agent: GodotEngine/" + String(VERSION_FULL_BUILD) + " (" + OS::get_singleton()->get_name() + ")\r\n";
+ request += "User-Agent: RedotEngine/" + String(VERSION_FULL_BUILD) + " (" + OS::get_singleton()->get_name() + ")\r\n";
}
if (add_accept) {
request += "Accept: */*\r\n";
diff --git a/core/io/image.cpp b/core/io/image.cpp
index d0598e4dc6..32387427d3 100644
--- a/core/io/image.cpp
+++ b/core/io/image.cpp
@@ -3836,7 +3836,7 @@ Error Image::load_tga_from_buffer(const Vector<uint8_t> &p_array) {
ERR_FAIL_NULL_V_MSG(
_tga_mem_loader_func,
ERR_UNAVAILABLE,
- "The TGA module isn't enabled. Recompile the Godot editor or export template binary with the `module_tga_enabled=yes` SCons option.");
+ "The TGA module isn't enabled. Recompile the Redot editor or export template binary with the `module_tga_enabled=yes` SCons option.");
return _load_from_buffer(p_array, _tga_mem_loader_func);
}
@@ -3844,7 +3844,7 @@ Error Image::load_bmp_from_buffer(const Vector<uint8_t> &p_array) {
ERR_FAIL_NULL_V_MSG(
_bmp_mem_loader_func,
ERR_UNAVAILABLE,
- "The BMP module isn't enabled. Recompile the Godot editor or export template binary with the `module_bmp_enabled=yes` SCons option.");
+ "The BMP module isn't enabled. Recompile the Redot editor or export template binary with the `module_bmp_enabled=yes` SCons option.");
return _load_from_buffer(p_array, _bmp_mem_loader_func);
}
@@ -3852,7 +3852,7 @@ Error Image::load_svg_from_buffer(const Vector<uint8_t> &p_array, float scale) {
ERR_FAIL_NULL_V_MSG(
_svg_scalable_mem_loader_func,
ERR_UNAVAILABLE,
- "The SVG module isn't enabled. Recompile the Godot editor or export template binary with the `module_svg_enabled=yes` SCons option.");
+ "The SVG module isn't enabled. Recompile the Redot editor or export template binary with the `module_svg_enabled=yes` SCons option.");
int buffer_size = p_array.size();
@@ -3874,7 +3874,7 @@ Error Image::load_ktx_from_buffer(const Vector<uint8_t> &p_array) {
ERR_FAIL_NULL_V_MSG(
_ktx_mem_loader_func,
ERR_UNAVAILABLE,
- "The KTX module isn't enabled. Recompile the Godot editor or export template binary with the `module_ktx_enabled=yes` SCons option.");
+ "The KTX module isn't enabled. Recompile the Redot editor or export template binary with the `module_ktx_enabled=yes` SCons option.");
return _load_from_buffer(p_array, _ktx_mem_loader_func);
}
diff --git a/core/io/remote_filesystem_client.cpp b/core/io/remote_filesystem_client.cpp
index 1198810441..346f6662e6 100644
--- a/core/io/remote_filesystem_client.cpp
+++ b/core/io/remote_filesystem_client.cpp
@@ -168,6 +168,7 @@ Error RemoteFilesystemClient::_synchronize_with_server(const String &p_host, int
// Connection OK, now send the current file state.
print_verbose("Remote Filesystem: Connection OK.");
+ // FIXME: Is rebranding needed here, to "GDFS"?
// Header (GRFS) - Godot Remote File System
print_verbose("Remote Filesystem: Sending header");
tcp_client->put_u8('G');
diff --git a/core/math/convex_hull.cpp b/core/math/convex_hull.cpp
index 80662c1b07..6d325c166a 100644
--- a/core/math/convex_hull.cpp
+++ b/core/math/convex_hull.cpp
@@ -2326,7 +2326,7 @@ Error ConvexHullComputer::convex_hull(const Vector<Vector3> &p_points, Geometry3
e = e->get_next_edge_of_face();
} while (e != e_start);
- // reverse indices: Godot wants clockwise, but this is counter-clockwise
+ // reverse indices: Redot wants clockwise, but this is counter-clockwise
if (face.indices.size() > 2) {
// reverse all but the first index.
int *indices = face.indices.ptr();
diff --git a/core/object/class_db.h b/core/object/class_db.h
index 228b82b588..3bf0e3ce95 100644
--- a/core/object/class_db.h
+++ b/core/object/class_db.h
@@ -170,7 +170,7 @@ public:
// Native structs, used by binder
struct NativeStruct {
- String ccode; // C code to create the native struct, fields separated by ; Arrays accepted (even containing other structs), also function pointers. All types must be Godot types.
+ String ccode; // C code to create the native struct, fields separated by ; Arrays accepted (even containing other structs), also function pointers. All types must be Redot types.
uint64_t struct_size; // local size of struct, for comparison
};
static HashMap<StringName, NativeStruct> native_structs;
diff --git a/core/os/safe_binary_mutex.h b/core/os/safe_binary_mutex.h
index 1e98cc074c..8e9e368f69 100644
--- a/core/os/safe_binary_mutex.h
+++ b/core/os/safe_binary_mutex.h
@@ -43,7 +43,7 @@
// - Must have recursive semnantics (or simulate, as this one does).
// The implementation keeps the lock count in TS. Therefore, only
// one object of each version of the template can exists; hence the Tag argument.
-// Tags must be unique across the Godot codebase.
+// Tags must be unique across the Redot codebase.
// Also, don't forget to declare the thread_local variable on each use.
template <int Tag>
class SafeBinaryMutex {
diff --git a/core/string/string_builder.cpp b/core/string/string_builder.cpp
index 4f74a2e42d..7661a8434a 100644
--- a/core/string/string_builder.cpp
+++ b/core/string/string_builder.cpp
@@ -70,7 +70,7 @@ String StringBuilder::as_string() const {
for (int i = 0; i < appended_strings.size(); i++) {
if (appended_strings[i] == -1) {
- // Godot string
+ // Redot string
const String &s = strings[godot_string_elem];
memcpy(buffer + current_position, s.ptr(), s.length() * sizeof(char32_t));
diff --git a/core/string/string_builder.h b/core/string/string_builder.h
index 1a989e8422..434815d96f 100644
--- a/core/string/string_builder.h
+++ b/core/string/string_builder.h
@@ -40,7 +40,7 @@ class StringBuilder {
Vector<String> strings;
Vector<const char *> c_strings;
- // -1 means it's a Godot String
+ // -1 means it's a Redot String
// a natural number means C string.
Vector<int32_t> appended_strings;
diff --git a/core/templates/hash_map.h b/core/templates/hash_map.h
index a3e8c2c788..a3d46be323 100644
--- a/core/templates/hash_map.h
+++ b/core/templates/hash_map.h
@@ -245,7 +245,7 @@ public:
_FORCE_INLINE_ uint32_t get_capacity() const { return hash_table_size_primes[capacity_index]; }
_FORCE_INLINE_ uint32_t size() const { return num_elements; }
- /* Standard Godot Container API */
+ /* Standard Redot Container API */
bool is_empty() const {
return num_elements == 0;
diff --git a/core/templates/hash_set.h b/core/templates/hash_set.h
index 295b07e5e7..94293a309a 100644
--- a/core/templates/hash_set.h
+++ b/core/templates/hash_set.h
@@ -230,7 +230,7 @@ public:
_FORCE_INLINE_ uint32_t get_capacity() const { return hash_table_size_primes[capacity_index]; }
_FORCE_INLINE_ uint32_t size() const { return num_elements; }
- /* Standard Godot Container API */
+ /* Standard Redot Container API */
bool is_empty() const {
return num_elements == 0;
diff --git a/core/version.h b/core/version.h
index 18a97cadf0..46f137f084 100644
--- a/core/version.h
+++ b/core/version.h
@@ -41,7 +41,7 @@
#define _MKSTR(m_x) _STR(m_x)
#endif
-// Godot versions are of the form <major>.<minor> for the initial release,
+// Redot versions are of the form <major>.<minor> for the initial release,
// and then <major>.<minor>.<patch> for subsequent bugfix releases where <patch> != 0
// That's arbitrary, but we find it pretty and it's the current policy.
@@ -62,7 +62,7 @@
// Example: 3.1.4 will be 0x030104, making comparison easy from script.
#define VERSION_HEX 0x10000 * VERSION_MAJOR + 0x100 * VERSION_MINOR + VERSION_PATCH
-// Describes the full configuration of that Godot version, including the version number,
+// Describes the full configuration of that Redot version, including the version number,
// the status (beta, stable, etc.) and potential module-specific features (e.g. mono).
// Example: "3.1.4.stable.mono"
#define VERSION_FULL_CONFIG VERSION_NUMBER "." VERSION_STATUS VERSION_MODULE_CONFIG
@@ -72,8 +72,8 @@
// Example: "3.1.4.stable.mono.official"
#define VERSION_FULL_BUILD VERSION_FULL_CONFIG "." VERSION_BUILD
-// Same as above, but prepended with Godot's name and a cosmetic "v" for "version".
-// Example: "Godot v3.1.4.stable.official.mono"
+// Same as above, but prepended with Redot's name and a cosmetic "v" for "version".
+// Example: "Redot v3.1.4.stable.official.mono"
#define VERSION_FULL_NAME VERSION_NAME " v" VERSION_FULL_BUILD
// Git commit hash, generated at build time in `core/version_hash.gen.cpp`.
@@ -83,4 +83,44 @@ extern const char *const VERSION_HASH;
// Set to 0 if unknown.
extern const uint64_t VERSION_TIMESTAMP;
+// Defines the main "branch" version. Patch versions in this branch should be
+// forward-compatible.
+// Example: "3.1"
+#define GODOT_VERSION_BRANCH _MKSTR(GODOT_VERSION_MAJOR) "." _MKSTR(GODOT_VERSION_MINOR)
+#if GODOT_VERSION_PATCH
+// Example: "3.1.4"
+#define GODOT_VERSION_NUMBER GODOT_VERSION_BRANCH "." _MKSTR(GODOT_VERSION_PATCH)
+#else // patch is 0, we don't include it in the "pretty" version number.
+// Example: "3.1" instead of "3.1.0"
+#define GODOT_VERSION_NUMBER GODOT_VERSION_BRANCH
+#endif // GODOT_VERSION_PATCH
+
+// Version number encoded as hexadecimal int with one byte for each number,
+// for easy comparison from code.
+// Example: 3.1.4 will be 0x030104, making comparison easy from script.
+#define GODOT_VERSION_HEX 0x10000 * GODOT_VERSION_MAJOR + 0x100 * GODOT_VERSION_MINOR + GODOT_VERSION_PATCH
+
+// TODO: determine how to deal with godot compatible versioning behavior
+
+// Describes the full configuration of that Redot version, including the version number,
+// the status (beta, stable, etc.) and potential module-specific features (e.g. mono).
+// Example: "3.1.4.stable.mono"
+// #define GODOT_VERSION_FULL_CONFIG VERSION_NUMBER "." GODOT_VERSION_STATUS VERSION_MODULE_CONFIG
+
+// Similar to GODOT_VERSION_FULL_CONFIG, but also includes the (potentially custom) VERSION_BUILD
+// description (e.g. official, custom_build, etc.).
+// Example: "3.1.4.stable.mono.official"
+// #define GODOT_VERSION_FULL_BUILD GODOT_VERSION_FULL_CONFIG "." GODOT_VERSION_BUILD
+
+// Same as above, but prepended with Redot's name and a cosmetic "v" for "version".
+// Example: "Godot v3.1.4.stable.official.mono"
+// #define GODOT_VERSION_FULL_NAME GODOT_VERSION_NAME " v" GODOT_VERSION_FULL_BUILD
+
+// Git commit hash, generated at build time in `core/version_hash.gen.cpp`.
+// extern const char *const GODOT_VERSION_HASH;
+
+// Git commit date UNIX timestamp (in seconds), generated at build time in `core/version_hash.gen.cpp`.
+// Set to 0 if unknown.
+// extern const uint64_t GODOT_VERSION_TIMESTAMP;
+
#endif // VERSION_H