Pixel-Composer/scripts/panel_workspace/panel_workspace.gml

123 lines
3.3 KiB
Plaintext
Raw Normal View History

2023-03-12 02:28:21 +01:00
function Panel_Workspace() : PanelContent() constructor {
title = "Workspace";
2023-03-12 02:28:21 +01:00
workspaces = [];
w = ui(480);
2023-03-13 10:45:56 +01:00
h = ui(40);
scroll = 0;
scroll_to = 0;
scroll_max = 0;
hori = false;
2023-03-12 02:28:21 +01:00
2023-03-28 06:58:28 +02:00
layout_selecting = "";
2023-03-12 02:28:21 +01:00
function refreshContent() {
workspaces = [];
var f = file_find_first(DIRECTORY + "layouts/*", 0);
2023-03-12 02:28:21 +01:00
while(f != "") {
2023-11-20 05:10:55 +01:00
if(filename_ext(f) == ".json")
array_push(workspaces, filename_name_only(f));
2023-03-12 02:28:21 +01:00
f = file_find_next();
}
}
refreshContent();
2023-03-13 10:45:56 +01:00
function onFocusBegin() { refreshContent(); }
2023-03-12 02:28:21 +01:00
function drawContent(panel) {
2024-05-27 07:12:24 +02:00
draw_clear_alpha(COLORS.panel_bg_clear, 1);
2023-03-12 02:28:21 +01:00
2023-03-13 10:45:56 +01:00
var _hori = hori;
hori = w > h;
if(hori != _hori) scroll_to = 0;
2023-03-12 02:28:21 +01:00
2023-03-13 10:45:56 +01:00
var x0 = hori? ui(6) + scroll : ui(6), x1;
var y0 = hori? ui(6) : ui(6) + scroll, y1;
var ww = 0;
var hh = 0;
2023-03-28 06:58:28 +02:00
var amo = array_length(workspaces);
2023-03-12 02:28:21 +01:00
draw_set_text(f_p1, hori? fa_left : fa_center, fa_top, COLORS._main_text_sub);
2023-03-28 06:58:28 +02:00
for( var i = 0; i <= amo; i++ ) {
var str = i == amo? "+" : workspaces[i];
var tw = hori? string_width(str) + ui(16) : w - ui(16);
var th = string_height(str) + ui(8);
2023-03-12 02:28:21 +01:00
x1 = x0 + tw;
y1 = y0 + th;
if(pHOVER && point_in_rectangle(mx, my, x0, y0, x1, y1)) {
draw_sprite_stretched(THEME.button_hide_fill, 1, x0, y0, x1 - x0, y1 - y0);
if(mouse_press(mb_left, pFOCUS)) {
2023-03-28 06:58:28 +02:00
if(i == amo) {
var dia = dialogCall(o_dialog_file_name, mouse_mx + ui(8), mouse_my + ui(8));
2023-10-31 05:30:42 +01:00
dia.name = PREFERENCES.panel_layout_file;
2023-03-28 06:58:28 +02:00
dia.onModify = function(name) {
var cont = panelSerialize();
2023-10-31 05:30:42 +01:00
json_save_struct($"{DIRECTORY}layouts/{name}.json", cont);
2023-03-28 06:58:28 +02:00
2023-10-31 05:30:42 +01:00
PREFERENCES.panel_layout_file = name;
2023-03-28 06:58:28 +02:00
PREF_SAVE();
refreshContent();
};
} else {
2023-10-31 05:30:42 +01:00
PREFERENCES.panel_layout_file = str;
2023-03-28 06:58:28 +02:00
PREF_SAVE();
setPanel();
}
}
if(mouse_press(mb_right, pFOCUS)) {
layout_selecting = str;
2023-05-03 21:42:17 +02:00
menuCall("workspace_menu",,, [
2023-06-05 18:27:53 +02:00
menuItem(__txt("Select"), function() {
2023-10-31 05:30:42 +01:00
PREFERENCES.panel_layout_file = layout_selecting;
2023-03-28 06:58:28 +02:00
PREF_SAVE();
setPanel();
}),
2023-06-05 18:27:53 +02:00
menuItem(__txtx("workspace_replace_current", "Replace with current"), function() {
2023-03-28 06:58:28 +02:00
var cont = panelSerialize();
json_save_struct(DIRECTORY + "layouts/" + layout_selecting + ".json", cont);
2023-03-28 06:58:28 +02:00
}),
2023-06-05 18:27:53 +02:00
menuItem(__txt("Delete"), function() {
file_delete(DIRECTORY + "layouts/" + layout_selecting + ".json");
2023-03-28 06:58:28 +02:00
refreshContent();
}, THEME.cross),
]);
2023-03-12 02:28:21 +01:00
}
}
2024-05-27 07:12:24 +02:00
draw_set_color(PREFERENCES.panel_layout_file == str? COLORS._main_text : COLORS._main_text_sub);
2023-03-28 06:58:28 +02:00
draw_text_add(hori? x0 + ui(8) : (x0 + x1) / 2, y0 + ui(4), str);
2023-03-12 02:28:21 +01:00
2023-03-13 10:45:56 +01:00
if(hori) {
x0 += tw + ui(4);
ww += tw + ui(4);
} else {
y0 += th + ui(4);
hh += th + ui(4);
}
}
scroll = lerp_float(scroll, scroll_to, 5);
if(hori) {
scroll_max = max(ww - w + ui(16), 0);
if(pHOVER) {
2023-04-07 21:25:27 +02:00
if(mouse_wheel_down()) scroll_to = clamp(scroll_to - ui(128) * SCROLL_SPEED, -scroll_max, 0);
if(mouse_wheel_up()) scroll_to = clamp(scroll_to + ui(128) * SCROLL_SPEED, -scroll_max, 0);
2023-03-13 10:45:56 +01:00
}
} else {
scroll_max = max(hh - h + ui(16), 0);
if(pHOVER) {
2023-04-07 21:25:27 +02:00
if(mouse_wheel_down()) scroll_to = clamp(scroll_to - ui(32) * SCROLL_SPEED, -scroll_max, 0);
if(mouse_wheel_up()) scroll_to = clamp(scroll_to + ui(32) * SCROLL_SPEED, -scroll_max, 0);
2023-03-13 10:45:56 +01:00
}
2023-03-12 02:28:21 +01:00
}
}
}