Pixel-Composer/scripts/directory_object/directory_object.gml

123 lines
3.8 KiB
Plaintext
Raw Normal View History

2022-09-27 06:37:28 +02:00
function FileObject(_name, _path) constructor {
name = _name;
path = _path;
spr = -1;
2022-12-10 05:06:01 +01:00
content = -1;
2022-09-27 06:37:28 +02:00
}
function DirectoryObject(name, path) constructor {
self.name = name;
self.path = path;
2022-11-01 03:06:03 +01:00
subDir = ds_list_create();
2022-09-27 06:37:28 +02:00
content = ds_list_create();
2022-11-01 03:06:03 +01:00
open = false;
2022-09-27 06:37:28 +02:00
static destroy = function() {
ds_list_destroy(subDir);
}
static scan = function(file_type) {
var _temp_name = ds_list_create();
var folder = file_find_first(path + "/*", fa_directory);
while(folder != "") {
ds_list_add(_temp_name, folder);
folder = file_find_next();
}
file_find_close();
ds_list_clear(subDir);
ds_list_clear(content);
ds_list_sort(_temp_name, true);
for( var i = 0; i < ds_list_size(_temp_name); i++ ) {
var file = _temp_name[| i];
if(directory_exists(path + "\\" + file)) {
var _fol_path = path + "\\" + file;
var fol = new DirectoryObject(file, _fol_path);
fol.scan(file_type);
ds_list_add(subDir, fol);
} else if(array_exists(file_type, filename_ext(file))) {
var f = new FileObject(string_replace(file, filename_ext(file), ""), path + "\\" + file);
ds_list_add(content, f);
if(filename_ext(file) == ".png") {
var icon_path = path + "\\" + file;
var amo = 1;
var p = string_pos("strip", icon_path);
if(p) amo = toNumber(string_copy(icon_path, p, string_length(icon_path) - p + 1));
f.spr = sprite_add(icon_path, amo, false, false, 0, 0);
} else {
var icon_path = path + "\\" + filename_change_ext(file, ".png");
if(!file_exists(icon_path)) continue;
var _temp = sprite_add(icon_path, 0, false, false, 0, 0);
var ww = sprite_get_width(_temp);
var hh = sprite_get_height(_temp);
var amo = ww % hh == 0? ww / hh : 1;
sprite_delete(_temp);
2022-11-01 03:06:03 +01:00
2022-09-27 06:37:28 +02:00
f.spr = sprite_add(icon_path, amo, false, false, 0, 0);
sprite_set_offset(f.spr, sprite_get_width(f.spr) / 2, sprite_get_height(f.spr) / 2);
}
}
}
ds_list_destroy(_temp_name);
}
static draw = function(parent, _x, _y, _m, _w, _hover, _focus, _homedir) {
2022-11-03 11:44:49 +01:00
var hg = ui(28);
2022-09-27 06:37:28 +02:00
var hh = 0;
if(path == parent.context.path)
2022-11-18 03:20:31 +01:00
draw_sprite_stretched_ext(THEME.ui_panel_bg, 0, _x + ui(28), _y, _w - ui(28), hg, COLORS.collection_path_current_bg, 1);
2022-09-27 06:37:28 +02:00
2022-11-03 11:44:49 +01:00
if(!ds_list_empty(subDir) && _hover && point_in_rectangle(_m[0], _m[1], _x, _y, ui(32), _y + hg - 1)) {
2022-11-18 03:20:31 +01:00
draw_sprite_stretched_ext(THEME.ui_panel_bg, 0, _x, _y, ui(32), hg, COLORS.collection_path_current_bg, 0.75);
2022-12-10 05:06:01 +01:00
if(mouse_press(mb_left, _focus))
2022-09-27 06:37:28 +02:00
open = !open;
}
2022-11-03 11:44:49 +01:00
if(_hover && point_in_rectangle(_m[0], _m[1], _x + ui(32), _y, _w, _y + hg - 1)) {
2022-11-18 03:20:31 +01:00
draw_sprite_stretched_ext(THEME.ui_panel_bg, 0, _x + ui(28), _y, _w - ui(28), hg, COLORS.collection_path_current_bg, 0.75);
2022-12-10 05:06:01 +01:00
if(mouse_press(mb_left, _focus)) {
if(!ds_list_empty(subDir))
open = !open;
2022-09-27 06:37:28 +02:00
if(parent.context == self)
parent.setContext(_homedir);
else
parent.setContext(self);
}
}
2022-11-18 03:20:31 +01:00
draw_set_text(f_p0, fa_left, fa_center, COLORS._main_text);
2022-09-27 06:37:28 +02:00
if(ds_list_empty(subDir)) {
2022-11-18 03:20:31 +01:00
draw_sprite_ui_uniform(THEME.folder_content, parent.context == self, _x + ui(16), _y + hg / 2 - 1, 1, COLORS.collection_folder_empty);
2022-09-27 06:37:28 +02:00
} else {
2022-11-18 03:20:31 +01:00
draw_sprite_ui_uniform(THEME.folder_content, open, _x + ui(16), _y + hg / 2 - 1, 1, COLORS.collection_folder_nonempty);
2022-09-27 06:37:28 +02:00
}
2022-11-03 11:44:49 +01:00
draw_text(_x + ui(32), _y + hg / 2, name);
2022-09-27 06:37:28 +02:00
hh += hg;
_y += hg;
if(open && !ds_list_empty(subDir)) {
var l_y = _y;
for(var i = 0; i < ds_list_size(subDir); i++) {
2022-11-03 11:44:49 +01:00
var _hg = subDir[| i].draw(parent, _x + ui(16), _y, _m, _w - ui(16), _hover, _focus, _homedir);
2022-11-18 03:20:31 +01:00
draw_set_color(COLORS.collection_tree_line);
2022-11-03 11:44:49 +01:00
draw_line(_x + ui(12), _y + hg / 2, _x + ui(16), _y + hg / 2);
2022-09-27 06:37:28 +02:00
hh += _hg;
_y += _hg;
}
2022-11-18 03:20:31 +01:00
draw_set_color(COLORS.collection_tree_line);
2022-11-03 11:44:49 +01:00
draw_line(_x + ui(12), l_y, _x + ui(12), _y - hg / 2);
2022-09-27 06:37:28 +02:00
}
return hh;
}
}