Pixel-Composer/scripts/sample_projects/sample_projects.gml
2023-12-08 09:50:09 +07:00

40 lines
1.1 KiB
Plaintext

#region samples
globalvar SAMPLE_PROJECTS;
SAMPLE_PROJECTS = ds_list_create();
#endregion
function LOAD_FOLDER(list, folder) { #region
var path = $"{DIRECTORY}Welcome files/{folder}";
var file = file_find_first(path + "/*", fa_directory);
while(file != "") {
if(filename_ext(file) == ".pxc") {
var full_path = path + "/" + file;
var f = new FileObject(filename_name_only(file), full_path);
var icon_path = string_replace(full_path, filename_ext(full_path), ".png");
if(file_exists_empty(icon_path)) {
f.spr = sprite_add(icon_path, 0, false, false, 0, 0);
sprite_set_offset(f.spr, sprite_get_width(f.spr) / 2, sprite_get_height(f.spr) / 2);
}
f.tag = folder;
ds_list_add(list, f);
}
file = file_find_next();
}
file_find_close();
} #endregion
function LOAD_SAMPLE() { #region
ds_list_clear(SAMPLE_PROJECTS);
var zzip = "Welcome files.zip";
var targ = $"{DIRECTORY}Welcome files";
directory_verify(targ);
zip_unzip(zzip, targ);
LOAD_FOLDER(SAMPLE_PROJECTS, "Getting started");
LOAD_FOLDER(SAMPLE_PROJECTS, "Sample Projects");
} #endregion