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);

View File

@ -10,7 +10,7 @@ function file_text_read_all(path) {
function file_text_read_all_lines(path) {
var f = file_text_open_read(path);
var s = [];
while(!file_text_eof(f))
while(!file_text_eof(f))
array_push(s, file_text_readln(f));
file_text_close(f);
return s;