Pixel-Composer/scripts/preset_data/preset_data.gml

38 lines
1.1 KiB
Plaintext
Raw Normal View History

2022-12-10 05:06:01 +01:00
#region loading
global.PRESETS_MAP = ds_map_create();
function __initPresets() {
ds_map_clear(global.PRESETS_MAP);
var root = DIRECTORY + "Presets";
if(!directory_exists(root))
directory_create(root);
2023-03-08 12:14:01 +01:00
var _l = root + "/version";
2023-03-22 07:07:38 +01:00
var _preset_path = "data/Preset.zip";
if(file_exists(_preset_path)) {
2023-05-07 20:55:13 +02:00
if(file_exists(_l)) {
var res = json_load_struct(_l);
if(!is_struct(res) || !struct_has(res, "version") || res.version != BUILD_NUMBER)
zip_unzip(_preset_path, root);
} else
2023-03-22 07:07:38 +01:00
zip_unzip(_preset_path, root);
}
2023-05-07 20:55:13 +02:00
json_save_struct(_l, { version: BUILD_NUMBER });
2023-02-14 02:51:14 +01:00
2022-12-10 05:06:01 +01:00
global.PRESETS = new DirectoryObject("Presets", root);
global.PRESETS.scan([".json"]);
for( var i = 0; i < ds_list_size(global.PRESETS.subDir); i++ ) {
var l = [];
var grp = global.PRESETS.subDir[| i];
for( var j = 0; j < ds_list_size(grp.content); j++ ) {
var pth = grp.content[| j].path;
var f = new FileObject(grp.content[| j].name, pth);
f.content = json_load(pth);
array_push(l, f);
}
global.PRESETS_MAP[? grp.name] = l;
}
}
#endregion