mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 22:23:07 +00:00
Fix mutating project.godot
Namely: - comment block lost on first save; - config_version doubled as 3 and null on second save; - format change on first save.
This commit is contained in:
parent
ccb17c2b27
commit
1619aabfe1
@ -455,8 +455,10 @@ Error ProjectSettings::_load_settings(const String p_path) {
|
||||
memdelete(f);
|
||||
ERR_FAIL_COND_V(config_version > FORMAT_VERSION, ERR_FILE_CANT_OPEN);
|
||||
}
|
||||
} else {
|
||||
// config_version is checked and dropped
|
||||
set(section + "/" + assign, value);
|
||||
}
|
||||
set(section + "/" + assign, value);
|
||||
} else if (next_tag.name != String()) {
|
||||
section = next_tag.name;
|
||||
}
|
||||
@ -600,6 +602,15 @@ Error ProjectSettings::_save_settings_text(const String &p_file, const Map<Strin
|
||||
ERR_FAIL_COND_V(err, err)
|
||||
}
|
||||
|
||||
file->store_line("; Engine configuration file.");
|
||||
file->store_line("; It's best edited using the editor UI and not directly,");
|
||||
file->store_line("; since the parameters that go here are not all obvious.");
|
||||
file->store_line("; ");
|
||||
file->store_line("; Format: ");
|
||||
file->store_line("; [section] ; section goes between []");
|
||||
file->store_line("; param=value ; assign values to parameters");
|
||||
file->store_line("");
|
||||
|
||||
file->store_string("config_version=" + itos(FORMAT_VERSION) + "\n");
|
||||
if (p_custom_features != String())
|
||||
file->store_string("custom_features=\"" + p_custom_features + "\"\n");
|
||||
@ -640,38 +651,43 @@ Error ProjectSettings::_save_custom_bnd(const String &p_file) { // add other par
|
||||
return save_custom(p_file);
|
||||
};
|
||||
|
||||
Error ProjectSettings::save_custom(const String &p_path, const CustomMap &p_custom, const Vector<String> &p_custom_features) {
|
||||
Error ProjectSettings::save_custom(const String &p_path, const CustomMap &p_custom, const Vector<String> &p_custom_features, bool p_merge_with_current) {
|
||||
|
||||
ERR_FAIL_COND_V(p_path == "", ERR_INVALID_PARAMETER);
|
||||
|
||||
Set<_VCSort> vclist;
|
||||
|
||||
for (Map<StringName, VariantContainer>::Element *G = props.front(); G; G = G->next()) {
|
||||
if (p_merge_with_current) {
|
||||
for (Map<StringName, VariantContainer>::Element *G = props.front(); G; G = G->next()) {
|
||||
|
||||
const VariantContainer *v = &G->get();
|
||||
const VariantContainer *v = &G->get();
|
||||
|
||||
if (v->hide_from_editor)
|
||||
continue;
|
||||
if (v->hide_from_editor)
|
||||
continue;
|
||||
|
||||
if (p_custom.has(G->key()))
|
||||
continue;
|
||||
if (p_custom.has(G->key()))
|
||||
continue;
|
||||
|
||||
_VCSort vc;
|
||||
vc.name = G->key(); //*k;
|
||||
vc.order = v->order;
|
||||
vc.type = v->variant.get_type();
|
||||
vc.flags = PROPERTY_USAGE_EDITOR | PROPERTY_USAGE_STORAGE;
|
||||
if (v->variant == v->initial)
|
||||
continue;
|
||||
_VCSort vc;
|
||||
vc.name = G->key(); //*k;
|
||||
vc.order = v->order;
|
||||
vc.type = v->variant.get_type();
|
||||
vc.flags = PROPERTY_USAGE_EDITOR | PROPERTY_USAGE_STORAGE;
|
||||
if (v->variant == v->initial)
|
||||
continue;
|
||||
|
||||
vclist.insert(vc);
|
||||
vclist.insert(vc);
|
||||
}
|
||||
}
|
||||
|
||||
for (const Map<String, Variant>::Element *E = p_custom.front(); E; E = E->next()) {
|
||||
|
||||
// Lookup global prop to store in the same order
|
||||
Map<StringName, VariantContainer>::Element *global_prop = props.find(E->key());
|
||||
|
||||
_VCSort vc;
|
||||
vc.name = E->key();
|
||||
vc.order = 0xFFFFFFF;
|
||||
vc.order = global_prop ? global_prop->get().order : 0xFFFFFFF;
|
||||
vc.type = E->get().get_type();
|
||||
vc.flags = PROPERTY_USAGE_STORAGE;
|
||||
vclist.insert(vc);
|
||||
|
@ -138,7 +138,7 @@ public:
|
||||
|
||||
Error setup(const String &p_path, const String &p_main_pack);
|
||||
|
||||
Error save_custom(const String &p_path = "", const CustomMap &p_custom = CustomMap(), const Vector<String> &p_custom_features = Vector<String>());
|
||||
Error save_custom(const String &p_path = "", const CustomMap &p_custom = CustomMap(), const Vector<String> &p_custom_features = Vector<String>(), bool p_merge_with_current = true);
|
||||
Error save();
|
||||
void set_custom_property_info(const String &p_prop, const PropertyInfo &p_info);
|
||||
|
||||
|
@ -187,30 +187,17 @@ private:
|
||||
} else {
|
||||
if (mode == MODE_NEW) {
|
||||
|
||||
FileAccess *f = FileAccess::open(dir.plus_file("/project.godot"), FileAccess::WRITE);
|
||||
if (!f) {
|
||||
ProjectSettings::CustomMap initial_settings;
|
||||
initial_settings["application/config/name"] = project_name->get_text();
|
||||
initial_settings["application/config/icon"] = "res://icon.png";
|
||||
initial_settings["rendering/environment/default_environment"] = "res://default_env.tres";
|
||||
|
||||
if (ProjectSettings::get_singleton()->save_custom(dir.plus_file("/project.godot"), initial_settings, Vector<String>(), false)) {
|
||||
error->set_text(TTR("Couldn't create project.godot in project path."));
|
||||
} else {
|
||||
|
||||
f->store_line("; Engine configuration file.");
|
||||
f->store_line("; It's best edited using the editor UI and not directly,");
|
||||
f->store_line("; since the parameters that go here are not all obvious.");
|
||||
f->store_line("; ");
|
||||
f->store_line("; Format: ");
|
||||
f->store_line("; [section] ; section goes between []");
|
||||
f->store_line("; param=value ; assign values to parameters");
|
||||
f->store_line("\n");
|
||||
f->store_line("[application]");
|
||||
f->store_line("\n");
|
||||
f->store_line("config/name=\"" + project_name->get_text() + "\"");
|
||||
f->store_line("config/icon=\"res://icon.png\"");
|
||||
f->store_line("[rendering]");
|
||||
f->store_line("environment/default_environment=\"res://default_env.tres\"");
|
||||
memdelete(f);
|
||||
|
||||
ResourceSaver::save(dir.plus_file("/icon.png"), get_icon("DefaultProjectIcon", "EditorIcons"));
|
||||
|
||||
f = FileAccess::open(dir.plus_file("/default_env.tres"), FileAccess::WRITE);
|
||||
FileAccess *f = FileAccess::open(dir.plus_file("/default_env.tres"), FileAccess::WRITE);
|
||||
if (!f) {
|
||||
error->set_text(TTR("Couldn't create project.godot in project path."));
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user