mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 06:03:09 +00:00
Pass engine name and version parts as proper strings
Removes the need for _MKSTR all over the place which has the drawback of converting _MKSTR(UNKNOWN_DEFINE) to "UKNOWN_DEFINE" instead of throwing a compilation error.
This commit is contained in:
parent
ecf80fbbba
commit
6947bed015
@ -84,11 +84,11 @@ Dictionary Engine::get_version_info() const {
|
||||
#else
|
||||
dict["patch"] = 0;
|
||||
#endif
|
||||
dict["status"] = _MKSTR(VERSION_STATUS);
|
||||
dict["revision"] = _MKSTR(VERSION_REVISION);
|
||||
dict["status"] = VERSION_STATUS;
|
||||
dict["revision"] = VERSION_REVISION;
|
||||
dict["year"] = VERSION_YEAR;
|
||||
|
||||
String hash = String(VERSION_HASH);
|
||||
String hash = VERSION_HASH;
|
||||
dict["hash"] = hash.length() == 0 ? String("unknown") : hash;
|
||||
|
||||
String stringver = String(dict["major"]) + "." + String(dict["minor"]);
|
||||
|
@ -279,7 +279,7 @@ String OS::get_safe_application_name() const {
|
||||
String OS::get_godot_dir_name() const {
|
||||
|
||||
// Default to lowercase, so only override when different case is needed
|
||||
return String(_MKSTR(VERSION_SHORT_NAME)).to_lower();
|
||||
return String(VERSION_SHORT_NAME).to_lower();
|
||||
}
|
||||
|
||||
// OS equivalent of XDG_DATA_HOME
|
||||
|
@ -30,8 +30,8 @@
|
||||
#include "version_generated.gen.h"
|
||||
|
||||
#ifdef VERSION_PATCH
|
||||
#define VERSION_MKSTRING "" _MKSTR(VERSION_MAJOR) "." _MKSTR(VERSION_MINOR) "." _MKSTR(VERSION_PATCH) "." _MKSTR(VERSION_STATUS) "." _MKSTR(VERSION_REVISION) VERSION_MODULE_CONFIG
|
||||
#define VERSION_MKSTRING "" _MKSTR(VERSION_MAJOR) "." _MKSTR(VERSION_MINOR) "." _MKSTR(VERSION_PATCH) "." VERSION_STATUS "." VERSION_REVISION VERSION_MODULE_CONFIG
|
||||
#else
|
||||
#define VERSION_MKSTRING "" _MKSTR(VERSION_MAJOR) "." _MKSTR(VERSION_MINOR) "." _MKSTR(VERSION_STATUS) "." _MKSTR(VERSION_REVISION) VERSION_MODULE_CONFIG
|
||||
#define VERSION_MKSTRING "" _MKSTR(VERSION_MAJOR) "." _MKSTR(VERSION_MINOR) "." VERSION_STATUS "." VERSION_REVISION VERSION_MODULE_CONFIG
|
||||
#endif // VERSION_PATCH
|
||||
#define VERSION_FULL_NAME "" _MKSTR(VERSION_NAME) " v" VERSION_MKSTRING
|
||||
#define VERSION_FULL_NAME "" VERSION_NAME " v" VERSION_MKSTRING
|
||||
|
@ -951,7 +951,7 @@ Error DocData::save_classes(const String &p_default_path, const Map<String, Stri
|
||||
if (c.category == "")
|
||||
category = "Core";
|
||||
header += " category=\"" + category + "\"";
|
||||
header += String(" version=\"") + _MKSTR(VERSION_MAJOR) + "." + _MKSTR(VERSION_MINOR) + "-" + _MKSTR(VERSION_STATUS) + "\"";
|
||||
header += String(" version=\"") + itos(VERSION_MAJOR) + "." + itos(VERSION_MINOR) + "-" + VERSION_STATUS + "\"";
|
||||
header += ">";
|
||||
_write_string(f, 0, header);
|
||||
_write_string(f, 1, "<brief_description>");
|
||||
|
@ -82,7 +82,7 @@ void DocDump::dump(const String &p_file) {
|
||||
FileAccess *f = FileAccess::open(p_file, FileAccess::WRITE);
|
||||
|
||||
_write_string(f, 0, "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>");
|
||||
_write_string(f, 0, String("<doc version=\"") + _MKSTR(VERSION_MAJOR) + "." + _MKSTR(VERSION_MINOR) + "-" + _MKSTR(VERSION_STATUS) + "\" name=\"Engine Types\">");
|
||||
_write_string(f, 0, String("<doc version=\"") + itos(VERSION_MAJOR) + "." + itos(VERSION_MINOR) + "-" + VERSION_STATUS + "\" name=\"Engine Types\">");
|
||||
|
||||
while (class_list.size()) {
|
||||
|
||||
|
@ -336,7 +336,7 @@ Error EditorExportPlatform::_save_zip_file(void *p_userdata, const String &p_pat
|
||||
|
||||
String EditorExportPlatform::find_export_template(String template_file_name, String *err) const {
|
||||
|
||||
String current_version = itos(VERSION_MAJOR) + "." + itos(VERSION_MINOR) + "-" + _MKSTR(VERSION_STATUS) + VERSION_MODULE_CONFIG;
|
||||
String current_version = itos(VERSION_MAJOR) + "." + itos(VERSION_MINOR) + "-" + VERSION_STATUS + VERSION_MODULE_CONFIG;
|
||||
String template_path = EditorSettings::get_singleton()->get_templates_dir().plus_file(current_version).plus_file(template_file_name);
|
||||
|
||||
if (FileAccess::exists(template_path)) {
|
||||
|
@ -147,7 +147,7 @@ void EditorNode::_update_scene_tabs() {
|
||||
void EditorNode::_update_title() {
|
||||
|
||||
String appname = ProjectSettings::get_singleton()->get("application/config/name");
|
||||
String title = appname.empty() ? String(VERSION_FULL_NAME) : String(_MKSTR(VERSION_NAME) + String(" - ") + appname);
|
||||
String title = appname.empty() ? String(VERSION_FULL_NAME) : String(VERSION_NAME + String(" - ") + appname);
|
||||
String edited = editor_data.get_edited_scene_root() ? editor_data.get_edited_scene_root()->get_filename() : String();
|
||||
if (!edited.empty())
|
||||
title += " - " + String(edited.get_file());
|
||||
|
@ -67,7 +67,7 @@ void ExportTemplateManager::_update_template_list() {
|
||||
|
||||
memdelete(d);
|
||||
|
||||
String current_version = itos(VERSION_MAJOR) + "." + itos(VERSION_MINOR) + "-" + _MKSTR(VERSION_STATUS) + VERSION_MODULE_CONFIG;
|
||||
String current_version = itos(VERSION_MAJOR) + "." + itos(VERSION_MINOR) + "-" + VERSION_STATUS + VERSION_MODULE_CONFIG;
|
||||
|
||||
Label *current = memnew(Label);
|
||||
current->set_h_size_flags(SIZE_EXPAND_FILL);
|
||||
|
@ -233,7 +233,7 @@ private:
|
||||
|
||||
fdialog->set_mode(FileDialog::MODE_OPEN_FILE);
|
||||
fdialog->clear_filters();
|
||||
fdialog->add_filter("project.godot ; " _MKSTR(VERSION_NAME) " Project");
|
||||
fdialog->add_filter("project.godot ; " VERSION_NAME " Project");
|
||||
} else {
|
||||
fdialog->set_mode(FileDialog::MODE_OPEN_DIR);
|
||||
}
|
||||
@ -1483,13 +1483,13 @@ ProjectManager::ProjectManager() {
|
||||
String cp;
|
||||
cp.push_back(0xA9);
|
||||
cp.push_back(0);
|
||||
OS::get_singleton()->set_window_title(_MKSTR(VERSION_NAME) + String(" - ") + TTR("Project Manager") + " - " + cp + " 2008-2017 Juan Linietsky, Ariel Manzur & Godot Contributors");
|
||||
OS::get_singleton()->set_window_title(VERSION_NAME + String(" - ") + TTR("Project Manager") + " - " + cp + " 2008-2017 Juan Linietsky, Ariel Manzur & Godot Contributors");
|
||||
|
||||
HBoxContainer *top_hb = memnew(HBoxContainer);
|
||||
vb->add_child(top_hb);
|
||||
CenterContainer *ccl = memnew(CenterContainer);
|
||||
Label *l = memnew(Label);
|
||||
l->set_text(_MKSTR(VERSION_NAME) + String(" - ") + TTR("Project Manager"));
|
||||
l->set_text(VERSION_NAME + String(" - ") + TTR("Project Manager"));
|
||||
ccl->add_child(l);
|
||||
top_hb->add_child(ccl);
|
||||
top_hb->add_spacer();
|
||||
@ -1498,11 +1498,8 @@ ProjectManager::ProjectManager() {
|
||||
if (hash.length() != 0)
|
||||
hash = "." + hash.left(7);
|
||||
l->set_text("v" VERSION_MKSTRING "" + hash);
|
||||
//l->add_font_override("font",get_font("bold","Fonts"));
|
||||
l->set_align(Label::ALIGN_CENTER);
|
||||
top_hb->add_child(l);
|
||||
//vb->add_child(memnew(HSeparator));
|
||||
//vb->add_margin_child("\n",memnew(Control));
|
||||
|
||||
Control *center_box = memnew(Control);
|
||||
center_box->set_v_size_flags(SIZE_EXPAND_FILL);
|
||||
|
@ -177,7 +177,7 @@ static String get_full_version_string() {
|
||||
|
||||
void Main::print_help(const char *p_binary) {
|
||||
|
||||
print_line(String(_MKSTR(VERSION_NAME)) + " v" + get_full_version_string() + " - https://godotengine.org");
|
||||
print_line(String(VERSION_NAME) + " v" + get_full_version_string() + " - https://godotengine.org");
|
||||
OS::get_singleton()->print("(c) 2007-2017 Juan Linietsky, Ariel Manzur.\n");
|
||||
OS::get_singleton()->print("(c) 2014-2017 Godot Engine contributors.\n");
|
||||
OS::get_singleton()->print("\n");
|
||||
|
10
methods.py
10
methods.py
@ -1150,7 +1150,7 @@ def build_gles3_headers(target, source, env):
|
||||
|
||||
|
||||
def add_module_version_string(self,s):
|
||||
self.module_version_string+="."+s
|
||||
self.module_version_string += "." + s
|
||||
|
||||
def update_version(module_version_string=""):
|
||||
|
||||
@ -1162,14 +1162,14 @@ def update_version(module_version_string=""):
|
||||
import version
|
||||
|
||||
f = open("core/version_generated.gen.h", "w")
|
||||
f.write("#define VERSION_SHORT_NAME " + str(version.short_name) + "\n")
|
||||
f.write("#define VERSION_NAME " + str(version.name) + "\n")
|
||||
f.write("#define VERSION_SHORT_NAME \"" + str(version.short_name) + "\"\n")
|
||||
f.write("#define VERSION_NAME \"" + str(version.name) + "\"\n")
|
||||
f.write("#define VERSION_MAJOR " + str(version.major) + "\n")
|
||||
f.write("#define VERSION_MINOR " + str(version.minor) + "\n")
|
||||
if (hasattr(version, 'patch')):
|
||||
f.write("#define VERSION_PATCH " + str(version.patch) + "\n")
|
||||
f.write("#define VERSION_REVISION " + str(rev) + "\n")
|
||||
f.write("#define VERSION_STATUS " + str(version.status) + "\n")
|
||||
f.write("#define VERSION_REVISION \"" + str(rev) + "\"\n")
|
||||
f.write("#define VERSION_STATUS \"" + str(version.status) + "\"\n")
|
||||
f.write("#define VERSION_MODULE_CONFIG \"" + str(version.module_config) + module_version_string + "\"\n")
|
||||
import datetime
|
||||
f.write("#define VERSION_YEAR " + str(datetime.datetime.now().year) + "\n")
|
||||
|
@ -370,7 +370,7 @@ class EditorExportAndroid : public EditorExportPlatform {
|
||||
}
|
||||
|
||||
if (aname == "") {
|
||||
aname = _MKSTR(VERSION_NAME);
|
||||
aname = VERSION_NAME;
|
||||
}
|
||||
|
||||
return aname;
|
||||
|
@ -1369,7 +1369,7 @@ String OS_OSX::get_cache_path() const {
|
||||
// Get properly capitalized engine name for system paths
|
||||
String OS_OSX::get_godot_dir_name() const {
|
||||
|
||||
return String(_MKSTR(VERSION_SHORT_NAME)).capitalize();
|
||||
return String(VERSION_SHORT_NAME).capitalize();
|
||||
}
|
||||
|
||||
String OS_OSX::get_system_dir(SystemDir p_dir) const {
|
||||
|
@ -23,13 +23,13 @@ BEGIN
|
||||
BLOCK "040904b0"
|
||||
BEGIN
|
||||
VALUE "CompanyName", "Godot Engine"
|
||||
VALUE "FileDescription", _MKSTR(VERSION_NAME) " Editor"
|
||||
VALUE "FileDescription", VERSION_NAME " Editor"
|
||||
VALUE "FileVersion", _MKSTR(VERSION_MAJOR) "." _MKSTR(VERSION_MINOR) "." _MKSTR(VERSION_PATCH)
|
||||
VALUE "ProductName", _MKSTR(VERSION_NAME)
|
||||
VALUE "ProductName", VERSION_NAME
|
||||
VALUE "Licence", "MIT"
|
||||
VALUE "LegalCopyright", "Copyright (c) 2007-" _MKSTR(VERSION_YEAR) " Juan Linietsky, Ariel Manzur"
|
||||
VALUE "Info", "http://www.godotengine.org"
|
||||
VALUE "ProductVersion", _MKSTR(VERSION_MAJOR) "." _MKSTR(VERSION_MINOR) PATCH_STRING "." _MKSTR(VERSION_REVISION)
|
||||
VALUE "Info", "https://godotengine.org"
|
||||
VALUE "ProductVersion", _MKSTR(VERSION_MAJOR) "." _MKSTR(VERSION_MINOR) PATCH_STRING "." VERSION_REVISION
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
@ -2166,7 +2166,7 @@ String OS_Windows::get_cache_path() const {
|
||||
// Get properly capitalized engine name for system paths
|
||||
String OS_Windows::get_godot_dir_name() const {
|
||||
|
||||
return String(_MKSTR(VERSION_SHORT_NAME)).capitalize();
|
||||
return String(VERSION_SHORT_NAME).capitalize();
|
||||
}
|
||||
|
||||
String OS_Windows::get_system_dir(SystemDir p_dir) const {
|
||||
|
Loading…
Reference in New Issue
Block a user