| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429 |
- let ui_files_default_path: string =
- ///if krom_windows
- "C:\\Users"
- ///elseif krom_android
- "/storage/emulated/0/Download"
- ///elseif krom_darwin
- "/Users"
- ///else
- "/"
- ///end
- ;
- let ui_files_filename: string;
- let ui_files_path: string = ui_files_default_path;
- let ui_files_last_path: string = "";
- let ui_files_last_search: string = "";
- let ui_files_files: string[] = null;
- let ui_files_icon_map: map_t<string, image_t> = null;
- let ui_files_selected: i32 = -1;
- let ui_files_show_extensions: bool = false;
- let ui_files_offline: bool = false;
- function ui_files_show(filters: string, is_save: bool, open_multiple: bool, files_done: (s: string)=>void) {
- if (is_save) {
- ui_files_path = krom_save_dialog(filters, "");
- if (ui_files_path != null) {
- while (string_index_of(ui_files_path, path_sep + path_sep) >= 0) {
- ui_files_path = string_replace_all(ui_files_path, path_sep + path_sep, path_sep);
- }
- ui_files_path = string_replace_all(ui_files_path, "\r", "");
- ui_files_filename = substring(ui_files_path, string_last_index_of(ui_files_path, path_sep) + 1, ui_files_path.length);
- ui_files_path = substring(ui_files_path, 0, string_last_index_of(ui_files_path, path_sep));
- files_done(ui_files_path);
- }
- }
- else {
- let paths: string[] = krom_open_dialog(filters, "", open_multiple);
- if (paths != null) {
- for (let i: i32 = 0; i < paths.length; ++i) {
- let path: string = paths[i];
- while (string_index_of(path, path_sep + path_sep) >= 0) {
- path = string_replace_all(path, path_sep + path_sep, path_sep);
- }
- path = string_replace_all(path, "\r", "");
- ui_files_filename = substring(path, string_last_index_of(path, path_sep) + 1, path.length);
- files_done(path);
- }
- }
- }
- ui_files_release_keys();
- }
- function ui_files_release_keys() {
- // File dialog may prevent firing key up events
- keyboard_up_listener(key_code_t.SHIFT);
- keyboard_up_listener(key_code_t.CONTROL);
- ///if krom_darwin
- keyboard_up_listener(key_code_t.META);
- ///end
- }
- let _ui_files_file_browser_handle: zui_handle_t;
- let _ui_files_file_browser_f: string;
- let _ui_files_file_browser_shandle: string;
- function ui_files_file_browser(ui: zui_t, handle: zui_handle_t, folders_only: bool = false, drag_files: bool = false, search: string = "", refresh: bool = false, context_menu: (s: string)=>void = null): string {
- let icons: image_t = resource_get("icons.k");
- let folder: rect_t = resource_tile50(icons, 2, 1);
- let file: rect_t = resource_tile50(icons, 3, 1);
- let is_cloud: bool = starts_with(handle.text, "cloud");
- if (is_cloud && file_cloud == null) {
- file_init_cloud(function () {
- ui_base_hwnds[tab_area_t.STATUS].redraws = 3;
- });
- }
- if (is_cloud && file_read_directory("cloud", false).length == 0) {
- return handle.text;
- }
- ///if krom_ios
- let document_directory: string = krom_save_dialog("", "");
- document_directory = substring(document_directory, 0, document_directory.length - 8); // Strip /"untitled"
- ///end
- if (handle.text == "") handle.text = ui_files_default_path;
- if (handle.text != ui_files_last_path || search != ui_files_last_search || refresh) {
- ui_files_files = [];
- // Up directory
- let i1: i32 = string_index_of(handle.text, path_sep);
- let nested: bool = i1 > -1 && handle.text.length - 1 > i1;
- ///if krom_windows
- // Server addresses like \\server are not nested
- nested = nested && !(handle.text.length >= 2 && char_at(handle.text, 0) == path_sep && char_at(handle.text, 1) == path_sep && string_last_index_of(handle.text, path_sep) == 1);
- ///end
- if (nested) {
- array_push(ui_files_files, "..");
- }
- let dir_path: string = handle.text;
- ///if krom_ios
- if (!is_cloud) {
- dir_path = document_directory + dir_path;
- }
- ///end
- let files_all: string[] = file_read_directory(dir_path, folders_only);
- for (let i: i32 = 0; i < files_all.length; ++i) {
- let f: string = files_all[i];
- if (f == "" || char_at(f, 0) == ".") {
- continue; // Skip hidden
- }
- if (string_index_of(f, ".") > 0 && !path_is_known(f)) {
- continue; // Skip unknown extensions
- }
- if (is_cloud && string_index_of(f, "_icon.") >= 0) {
- continue; // Skip thumbnails
- }
- if (string_index_of(to_lower_case(f), to_lower_case(search)) < 0) {
- continue; // Search filter
- }
- array_push(ui_files_files, f);
- }
- }
- ui_files_last_path = handle.text;
- ui_files_last_search = search;
- handle.changed = false;
- let slotw: i32 = math_floor(70 * zui_SCALE(ui));
- let num: i32 = math_floor(ui._w / slotw);
- ui._y += 4; // Don't cut off the border around selected materials
- // Directory contents
- for (let row: i32 = 0; row < math_floor(math_ceil(ui_files_files.length / num)); ++row) {
- let ar: f32[] = [];
- for (let i: i32 = 0; i < num * 2; ++i) {
- array_push(ar, 1 / num);
- }
- zui_row(ar);
- if (row > 0) {
- ui._y += zui_ELEMENT_OFFSET(ui) * 14.0;
- }
- for (let j: i32 = 0; j < num; ++j) {
- let i: i32 = j + row * num;
- if (i >= ui_files_files.length) {
- zui_end_element(slotw);
- zui_end_element(slotw);
- continue;
- }
- let f: string = ui_files_files[i];
- let _x: f32 = ui._x;
- let rect: rect_t = string_index_of(f, ".") > 0 ? file : folder;
- let col: i32 = rect == file ? ui.ops.theme.LABEL_COL : ui.ops.theme.LABEL_COL - 0x00202020;
- if (ui_files_selected == i) col = ui.ops.theme.HIGHLIGHT_COL;
- let off: f32 = ui._w / 2 - 25 * zui_SCALE(ui);
- ui._x += off;
- let uix: f32 = ui._x;
- let uiy: f32 = ui._y;
- let state: zui_state_t = zui_state_t.IDLE;
- let generic: bool = true;
- let icon: image_t = null;
- if (is_cloud && f != ".." && !ui_files_offline) {
- if (ui_files_icon_map == null) {
- ui_files_icon_map = map_create();
- }
- icon = map_get(ui_files_icon_map, handle.text + path_sep + f);
- if (icon == null) {
- let files_all: string[] = file_read_directory(handle.text);
- let icon_file: string = substring(f, 0, string_last_index_of(f, ".")) + "_icon.jpg";
- if (array_index_of(files_all, icon_file) >= 0) {
- let empty: image_t = map_get(render_path_render_targets, "empty_black")._image;
- map_set(ui_files_icon_map, handle.text + path_sep + f, empty);
- _ui_files_file_browser_handle = handle;
- _ui_files_file_browser_f = f;
- file_cache_cloud(handle.text + path_sep + icon_file, function (abs: string) {
- if (abs != null) {
- let image: image_t = data_get_image(abs);
- app_notify_on_init(function (image: image_t) {
- if (base_pipe_copy_rgb == null) {
- base_make_pipe_copy_rgb();
- }
- let icon: image_t = image_create_render_target(image.width, image.height);
- if (ends_with(f, ".arm")) { // Used for material sphere alpha cutout
- g2_begin(icon);
- ///if (is_paint || is_sculpt)
- g2_draw_image(project_materials[0].image, 0, 0);
- ///end
- }
- else {
- g2_begin(icon);
- g2_clear(0xffffffff);
- }
- g2_set_pipeline(base_pipe_copy_rgb);
- g2_draw_image(image, 0, 0);
- g2_set_pipeline(null);
- g2_end();
- map_set(ui_files_icon_map, _ui_files_file_browser_handle.text + path_sep + _ui_files_file_browser_f, icon);
- ui_base_hwnds[tab_area_t.STATUS].redraws = 3;
- }, image);
- }
- else {
- ui_files_offline = true;
- }
- });
- }
- }
- if (icon != null) {
- let w: i32 = 50;
- if (i == ui_files_selected) {
- zui_fill(-2, -2, w + 4, 2, ui.ops.theme.HIGHLIGHT_COL);
- zui_fill(-2, w + 2, w + 4, 2, ui.ops.theme.HIGHLIGHT_COL);
- zui_fill(-2, 0, 2, w + 4, ui.ops.theme.HIGHLIGHT_COL);
- zui_fill(w + 2 , -2, 2, w + 6, ui.ops.theme.HIGHLIGHT_COL);
- }
- state = zui_image(icon, 0xffffffff, w * zui_SCALE(ui));
- if (ui.is_hovered) {
- zui_tooltip_image(icon);
- zui_tooltip(f);
- }
- generic = false;
- }
- }
- if (ends_with(f, ".arm") && !is_cloud) {
- if (ui_files_icon_map == null) {
- ui_files_icon_map = map_create();
- }
- let key: string = handle.text + path_sep + f;
- icon = map_get(ui_files_icon_map, key);
- if (map_get(ui_files_icon_map, key) == null) {
- let blob_path: string = key;
- ///if krom_ios
- blob_path = document_directory + blob_path;
- // TODO: implement native .arm parsing first
- ///else
- let buffer: buffer_t = krom_load_blob(blob_path);
- let raw: any = armpack_decode(buffer);
- if (raw.material_icons != null) {
- let bytes_icon: any = raw.material_icons[0];
- icon = image_from_bytes(lz4_decode(bytes_icon, 256 * 256 * 4), 256, 256);
- }
- ///if (is_paint || is_sculpt)
- else if (raw.mesh_icons != null) {
- let bytes_icon: any = raw.mesh_icons[0];
- icon = image_from_bytes(lz4_decode(bytes_icon, 256 * 256 * 4), 256, 256);
- }
- else if (raw.brush_icons != null) {
- let bytes_icon: any = raw.brush_icons[0];
- icon = image_from_bytes(lz4_decode(bytes_icon, 256 * 256 * 4), 256, 256);
- }
- ///end
- ///if is_lab
- if (raw.mesh_icon != null) {
- let bytes_icon: any = raw.mesh_icon;
- icon = image_from_bytes(lz4_decode(bytes_icon, 256 * 256 * 4), 256, 256);
- }
- ///end
- map_set(ui_files_icon_map, key, icon);
- ///end
- }
- if (icon != null) {
- let w: i32 = 50;
- if (i == ui_files_selected) {
- zui_fill(-2, -2, w + 4, 2, ui.ops.theme.HIGHLIGHT_COL);
- zui_fill(-2, w + 2, w + 4, 2, ui.ops.theme.HIGHLIGHT_COL);
- zui_fill(-2, 0, 2, w + 4, ui.ops.theme.HIGHLIGHT_COL);
- zui_fill(w + 2 , -2, 2, w + 6, ui.ops.theme.HIGHLIGHT_COL);
- }
- state = zui_image(icon, 0xffffffff, w * zui_SCALE(ui));
- if (ui.is_hovered) {
- zui_tooltip_image(icon);
- zui_tooltip(f);
- }
- generic = false;
- }
- }
- if (path_is_texture(f) && !is_cloud) {
- let w: i32 = 50;
- if (ui_files_icon_map == null) {
- ui_files_icon_map = map_create();
- }
- let shandle: string = handle.text + path_sep + f;
- icon = map_get(ui_files_icon_map, shandle);
- if (icon == null) {
- let empty: image_t = map_get(render_path_render_targets, "empty_black")._image;
- map_set(ui_files_icon_map, shandle, empty);
- let image: image_t = data_get_image(shandle);
- _ui_files_file_browser_shandle = shandle;
- app_notify_on_init(function (image: image_t) {
- if (base_pipe_copy_rgb == null) {
- base_make_pipe_copy_rgb();
- }
- let sw: i32 = image.width > image.height ? w : math_floor(1.0 * image.width / image.height * w);
- let sh: i32 = image.width > image.height ? math_floor(1.0 * image.height / image.width * w) : w;
- let icon: image_t = image_create_render_target(sw, sh);
- g2_begin(icon);
- g2_clear(0xffffffff);
- g2_set_pipeline(base_pipe_copy_rgb);
- g2_draw_scaled_image(image, 0, 0, sw, sh);
- g2_set_pipeline(null);
- g2_end();
- map_set(ui_files_icon_map, _ui_files_file_browser_shandle, icon);
- ui_base_hwnds[tab_area_t.STATUS].redraws = 3;
- data_delete_image(_ui_files_file_browser_shandle); // The big image is not needed anymore
- }, image);
- }
- if (icon != null) {
- if (i == ui_files_selected) {
- zui_fill(-2, -2, w + 4, 2, ui.ops.theme.HIGHLIGHT_COL);
- zui_fill(-2, w + 2, w + 4, 2, ui.ops.theme.HIGHLIGHT_COL);
- zui_fill(-2, 0, 2, w + 4, ui.ops.theme.HIGHLIGHT_COL);
- zui_fill(w + 2 , -2, 2, w + 6, ui.ops.theme.HIGHLIGHT_COL);
- }
- state = zui_image(icon, 0xffffffff, icon.height * zui_SCALE(ui));
- generic = false;
- }
- }
- if (generic) {
- state = zui_image(icons, col, 50 * zui_SCALE(ui), rect.x, rect.y, rect.w, rect.h);
- }
- if (ui.is_hovered && ui.input_released_r && context_menu != null) {
- context_menu(handle.text + path_sep + f);
- }
- if (state == zui_state_t.STARTED) {
- if (f != ".." && drag_files) {
- base_drag_off_x = -(mouse_x - uix - ui._window_x - 3);
- base_drag_off_y = -(mouse_y - uiy - ui._window_y + 1);
- base_drag_file = handle.text;
- ///if krom_ios
- if (!is_cloud) {
- base_drag_file = document_directory + base_drag_file;
- }
- ///end
- if (char_at(base_drag_file, base_drag_file.length - 1) != path_sep) {
- base_drag_file += path_sep;
- }
- base_drag_file += f;
- base_drag_file_icon = icon;
- }
- ui_files_selected = i;
- if (time_time() - context_raw.select_time < 0.25) {
- base_drag_file = null;
- base_drag_file_icon = null;
- base_is_dragging = false;
- handle.changed = ui.changed = true;
- if (f == "..") { // Up
- handle.text = substring(handle.text, 0, string_last_index_of(handle.text, path_sep));
- // Drive root
- if (handle.text.length == 2 && char_at(handle.text, 1) == ":") {
- handle.text += path_sep;
- }
- }
- else {
- if (char_at(handle.text, handle.text.length - 1) != path_sep) {
- handle.text += path_sep;
- }
- handle.text += f;
- }
- ui_files_selected = -1;
- }
- context_raw.select_time = time_time();
- }
- // Label
- ui._x = _x;
- ui._y += slotw * 0.75;
- let label0: string = (ui_files_show_extensions || string_index_of(f, ".") <= 0) ? f : substring(f, 0, string_last_index_of(f, "."));
- let label1: string = "";
- while (label0.length > 0 && g2_font_width(ui.ops.font, ui.font_size, label0) > ui._w - 6) { // 2 line split
- label1 = char_at(label0, label0.length - 1) + label1;
- label0 = substring(label0, 0, label0.length - 1);
- }
- if (label1 != "") {
- ui.cur_ratio--;
- }
- zui_text(label0, zui_align_t.CENTER);
- if (ui.is_hovered) {
- zui_tooltip(label0 + label1);
- }
- if (label1 != "") { // Second line
- ui._x = _x;
- ui._y += g2_font_height(ui.ops.font, ui.font_size);
- zui_text(label1, zui_align_t.CENTER);
- if (ui.is_hovered) {
- zui_tooltip(label0 + label1);
- }
- ui._y -= g2_font_height(ui.ops.font, ui.font_size);
- }
- ui._y -= slotw * 0.75;
- if (handle.changed) {
- break;
- }
- }
- if (handle.changed) {
- break;
- }
- }
- ui._y += slotw * 0.8;
- return handle.text;
- }
|