Preset existance check

This commit is contained in:
Tanasart 2023-03-22 13:07:38 +07:00
parent fc425113bf
commit f1e1a7c906
2 changed files with 10 additions and 7 deletions

View file

@ -9,12 +9,15 @@
directory_create(root);
var _l = root + "/version";
if(file_exists(_l)) {
var res = json_load_struct(_l);
if(!is_struct(res) || !struct_has(res, "version") || res.version < VERSION)
zip_unzip("data/Preset.zip", root);
} else
zip_unzip("data/Preset.zip", root);
var _preset_path = "data/Preset.zip";
if(file_exists(_preset_path)) {
if(file_exists(_l)) {
var res = json_load_struct(_l);
if(!is_struct(res) || !struct_has(res, "version") || res.version < VERSION)
zip_unzip(_preset_path, root);
} else
zip_unzip(_preset_path, root);
}
json_save_struct(_l, { version: VERSION });
global.PRESETS = new DirectoryObject("Presets", root);