Pixel-Composer/objects/o_dialog_splash/Draw_64.gml

189 lines
6.7 KiB
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01:00
/// @description init
if !ready exit;
#region base UI
2022-11-18 03:20:31 +01:00
draw_sprite_stretched(THEME.dialog_bg, 0, dialog_x, dialog_y, dialog_w, dialog_h);
2022-11-03 11:44:49 +01:00
if(sFOCUS)
2022-11-18 03:20:31 +01:00
draw_sprite_stretched_ext(THEME.dialog_active, 0, dialog_x, dialog_y, dialog_w, dialog_h, COLORS._main_accent, 1);
2022-01-13 05:24:03 +01:00
#endregion
#region content
2022-11-18 03:20:31 +01:00
draw_sprite_ui_uniform(THEME.icon_64, 0, dialog_x + ui(56), dialog_y + ui(56));
draw_set_text(f_h5, fa_left, fa_center, COLORS._main_text_accent);
2022-11-03 11:44:49 +01:00
draw_text(dialog_x + ui(56 + 48), dialog_y + ui(56), "Pixel Composer");
2022-01-13 05:24:03 +01:00
2022-11-03 11:44:49 +01:00
var bx = dialog_x + ui(56 + 48) + string_width("Pixel Composer") + ui(16);
var by = dialog_y + ui(56);
2022-01-13 05:24:03 +01:00
var txt = "v. " + VERSION_STRING;
2022-11-18 03:20:31 +01:00
draw_set_text(f_p0, fa_left, fa_center, COLORS._main_text_sub);
2022-11-03 11:44:49 +01:00
var ww = string_width(txt) + ui(16);
2023-05-28 20:00:51 +02:00
var hh = line_get_height(, 16);
2022-11-18 03:20:31 +01:00
if(buttonInstant(THEME.button_hide, bx, by - hh / 2, ww, hh, mouse_ui, sFOCUS, sHOVER) == 2) {
2022-01-13 05:24:03 +01:00
dialogCall(o_dialog_release_note, WIN_W / 2, WIN_H / 2);
}
2022-11-03 11:44:49 +01:00
draw_text(bx + ui(8), by, txt);
2022-01-13 05:24:03 +01:00
2022-11-03 11:44:49 +01:00
var bx = dialog_x + dialog_w - ui(52);
var by = dialog_y + ui(16);
2023-06-05 18:27:53 +02:00
if(buttonInstant(THEME.button_hide, bx, by, ui(36), ui(36), mouse_ui, sFOCUS, sHOVER, __txt("Preferences"), THEME.gear) == 2) {
2022-01-13 05:24:03 +01:00
dialogCall(o_dialog_preference, WIN_W / 2, WIN_H / 2);
}
2022-11-03 11:44:49 +01:00
bx -= ui(40);
2023-06-05 18:27:53 +02:00
if(buttonInstant(THEME.button_hide, bx, by, ui(36), ui(36), mouse_ui, sFOCUS, sHOVER, __txt("Show on startup"), THEME.icon_splash_show_on_start, PREF_MAP[? "show_splash"]) == 2) {
2022-11-01 03:06:03 +01:00
PREF_MAP[? "show_splash"] = !PREF_MAP[? "show_splash"];
PREF_SAVE();
}
2022-11-03 11:44:49 +01:00
var x0 = dialog_x + ui(16);
2023-03-05 07:16:44 +01:00
var x1 = x0 + recent_width;
2022-11-03 11:44:49 +01:00
var y0 = dialog_y + ui(128);
var y1 = dialog_y + dialog_h - ui(16);
2022-01-13 05:24:03 +01:00
2022-11-18 03:20:31 +01:00
draw_set_text(f_p0, fa_left, fa_bottom, COLORS._main_text_sub);
2023-06-04 18:28:29 +02:00
draw_text(x0, y0 - ui(4), __txt("Recent files"));
2022-11-18 03:20:31 +01:00
draw_sprite_stretched(THEME.ui_panel_bg, 0, x0, y0, x1 - x0, y1 - y0);
2023-06-21 20:36:53 +02:00
sp_recent.setFocusHover(sFOCUS, sHOVER);
2022-11-03 11:44:49 +01:00
sp_recent.draw(x0 + ui(6), y0);
2023-06-13 14:42:06 +02:00
draw_sprite_stretched(THEME.ui_panel_fg, 0, x0, y0, x1 - x0, y1 - y0);
2022-01-13 05:24:03 +01:00
2023-06-05 18:27:53 +02:00
var bx = x1 - ui(28);
var by = y0 - ui(28 + 4);
var txt = __txtx("splash_clear_recent", "Clear recent files");
if(buttonInstant(THEME.button_hide, bx, by, ui(28), ui(28), mouse_ui, sFOCUS, sHOVER, txt, THEME.icon_delete,, COLORS._main_value_negative) == 2) {
2023-03-05 07:16:44 +01:00
ds_list_clear(RECENT_FILES);
RECENT_SAVE();
}
2023-06-05 18:27:53 +02:00
2023-03-05 07:16:44 +01:00
bx -= ui(28 + 4);
2023-06-05 18:27:53 +02:00
txt = recent_thumbnail? __txtx("splash_hide_thumbnail", "Hide thumbnail") : __txtx("splash_show_thumbnail", "Show thumbnail");
if(buttonInstant(THEME.button_hide, bx, by, ui(28), ui(28), mouse_ui, sFOCUS, sHOVER, txt, THEME.splash_thumbnail, recent_thumbnail) == 2) {
2023-03-05 07:16:44 +01:00
recent_thumbnail = !recent_thumbnail;
}
2023-03-07 14:29:47 +01:00
bx -= ui(28 + 4);
2023-06-05 18:27:53 +02:00
txt = __txtx("splash_open_autosave", "Open autosave folder");
if(buttonInstant(THEME.button_hide, bx, by, ui(28), ui(28), mouse_ui, sFOCUS, sHOVER, txt, THEME.save_auto, 0) == 2) {
2023-03-07 14:29:47 +01:00
shellOpenExplorer(DIRECTORY + "autosave");
}
2023-03-05 07:16:44 +01:00
var expandAction = false;
var expand = PREF_MAP[? "splash_expand_recent"];
2023-06-01 10:32:21 +02:00
switch(pages[project_page]) {
case "Sample projects" :
case "Workshop" :
if(buttonInstant(THEME.button_hide_fill, x1, (y0 + y1) / 2 - ui(32), ui(16), ui(32), mouse_ui, sFOCUS, sHOVER,, THEME.arrow, expand? 2 : 0) == 2) {
PREF_MAP[? "splash_expand_recent"] = !PREF_MAP[? "splash_expand_recent"];
expandAction = true;
}
break;
2023-03-05 07:16:44 +01:00
}
2022-11-03 11:44:49 +01:00
x0 = x1 + ui(16);
x1 = dialog_x + dialog_w - ui(16);
2023-03-05 07:16:44 +01:00
bx = x0;
2023-06-13 14:42:06 +02:00
var tab_cover = noone;
var th = ui(36) + THEME_VALUE.panel_tab_extend;
2023-02-15 10:43:24 +01:00
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(pages); i < n; i++ ) {
2023-05-07 20:55:13 +02:00
draw_set_text(f_p0, fa_left, fa_bottom, project_page == i? COLORS._main_text : COLORS._main_text_sub);
2023-06-04 18:28:29 +02:00
var txt = pages[i];
var dtxt = __txt(txt);
var amo = noone;
2023-06-01 10:32:21 +02:00
switch(txt) {
case "Sample projects" : amo = ds_list_size(SAMPLE_PROJECTS); break;
case "Workshop" : amo = ds_list_size(STEAM_PROJECTS); break;
case "Contests" : amo = array_length(contests); break;
}
2023-06-04 18:28:29 +02:00
var tw = ui(16) + string_width(dtxt);
2023-06-01 10:32:21 +02:00
if(amo) tw += ui(8) + string_width(amo) + ui(8);
if(txt == "Contests")
tw += ui(32);
2023-02-15 10:43:24 +01:00
2023-06-13 14:42:06 +02:00
if(project_page == i) {
draw_sprite_stretched_ext(THEME.ui_panel_tab, 1, bx, y0 - ui(32), tw, th, COLORS.panel_tab, 1);
tab_cover = BBOX().fromWH(bx, y0, tw, THEME_VALUE.panel_tab_extend);
} else if(point_in_rectangle(mouse_mx, mouse_my, bx, y0 - ui(32), bx + tw, y0)) {
draw_sprite_stretched_ext(THEME.ui_panel_tab, 0, bx, y0 - ui(32), tw, th, COLORS.panel_tab_hover, 1);
2023-02-15 10:43:24 +01:00
2023-06-01 10:32:21 +02:00
if(mouse_click(mb_left, sFOCUS)) {
2023-02-15 10:43:24 +01:00
project_page = i;
2023-06-01 10:32:21 +02:00
if(txt == "Contests" && PREF_MAP[? "splash_expand_recent"]) {
PREF_MAP[? "splash_expand_recent"] = false;
expandAction = true;
}
}
2023-06-13 14:42:06 +02:00
} else
draw_sprite_stretched_ext(THEME.ui_panel_tab, 0, bx, y0 - ui(32), tw, th, COLORS.panel_tab_inactive, 1);
2023-05-07 20:55:13 +02:00
var _btx = bx + ui(8);
2023-06-01 10:32:21 +02:00
if(txt == "Contests") {
draw_sprite_ui(THEME.trophy, 0, _btx + ui(16), y0 - ui(14),,,, CDEF.yellow);
_btx += ui(32);
}
2023-06-13 14:42:06 +02:00
var cc = COLORS._main_text_sub;
if(project_page == i) cc = txt == "Contests"? CDEF.yellow : COLORS._main_text;
2023-06-10 13:59:45 +02:00
draw_set_color(cc);
2023-06-04 18:28:29 +02:00
draw_text(_btx, y0 - ui(4), dtxt);
2023-05-07 20:55:13 +02:00
2023-06-04 18:28:29 +02:00
_btx += ui(8) + string_width(dtxt);
2023-05-07 20:55:13 +02:00
2023-06-01 10:32:21 +02:00
if(amo) {
2023-06-10 13:59:45 +02:00
draw_sprite_stretched_ext(THEME.ui_panel_bg, 0, _btx, y0 - ui(26), string_width(amo) + ui(8), ui(24), COLORS._main_icon, 1);
2023-06-01 10:32:21 +02:00
_btx += ui(4);
if(txt == "Contests") draw_set_color(CDEF.yellow);
2023-06-10 13:59:45 +02:00
else draw_set_color(COLORS._main_text);
2023-06-01 10:32:21 +02:00
draw_text(_btx, y0 - ui(4), amo);
}
2023-02-15 10:43:24 +01:00
bx += tw;
}
2022-11-18 03:20:31 +01:00
draw_sprite_stretched(THEME.ui_panel_bg, 0, x0, y0, x1 - x0, y1 - y0);
2023-06-13 14:42:06 +02:00
draw_sprite_stretched(THEME.ui_panel_fg, 0, x0, y0, x1 - x0, y1 - y0);
draw_sprite_bbox(THEME.ui_panel_tab, 3, tab_cover);
2023-06-01 10:32:21 +02:00
switch(pages[project_page]) {
case "Sample projects" :
2023-06-21 20:36:53 +02:00
sp_sample.setFocusHover(sFOCUS, sHOVER);
2023-06-01 10:32:21 +02:00
sp_sample.draw(x0 + ui(6), y0);
if(!expand) {
draw_set_text(f_p1, fa_right, fa_bottom, COLORS._main_text_sub);
2023-06-05 18:27:53 +02:00
draw_text(x1 - ui(82), y0 - ui(4), __txt("Art by") + " ");
2023-06-25 20:12:17 +02:00
draw_sprite_ui_uniform(s_kenney, 0, x1, y0 - ui(4),, c_white, 0.5);
2023-06-01 10:32:21 +02:00
}
break;
case "Workshop" :
2023-06-21 20:36:53 +02:00
sp_sample.setFocusHover(sFOCUS, sHOVER);
2023-06-01 10:32:21 +02:00
sp_sample.draw(x0 + ui(6), y0);
2023-06-25 20:12:17 +02:00
2023-06-01 10:32:21 +02:00
var bx = x1 - ui(32);
var by = y0 - ui(32);
2023-02-15 10:43:24 +01:00
2023-06-05 18:27:53 +02:00
if(buttonInstant(THEME.button_hide, bx, by, ui(32), ui(32), mouse_ui, sFOCUS, sHOVER, __txtx("workshop_open", "Open Steam Workshop"), THEME.steam) == 2)
2023-06-01 10:32:21 +02:00
steam_activate_overlay_browser("https://steamcommunity.com/app/2299510/workshop/");
2023-02-17 11:31:33 +01:00
2023-06-01 10:32:21 +02:00
bx -= ui(36);
2023-06-05 18:27:53 +02:00
if(buttonInstant(THEME.button_hide, bx, by, ui(32), ui(32), mouse_ui, sFOCUS, sHOVER, __txt("Refresh"), THEME.refresh) == 2)
2023-06-01 10:32:21 +02:00
steamUCGload();
break;
case "Contests" :
2023-06-21 20:36:53 +02:00
sp_contest.setFocusHover(sFOCUS, sHOVER);
2023-06-25 20:12:17 +02:00
sp_contest.draw(x0 + ui(6), y0 + 1);
2023-06-01 10:32:21 +02:00
break;
2023-02-15 10:43:24 +01:00
}
2023-03-05 07:16:44 +01:00
if(expandAction) {
2023-03-25 12:27:04 +01:00
recent_width = PREF_MAP[? "splash_expand_recent"]? ui(564) : ui(288);
2023-03-05 07:16:44 +01:00
resize();
}
2022-01-13 05:24:03 +01:00
#endregion