Pixel-Composer/scripts/surfaceBox/surfaceBox.gml

59 lines
1.6 KiB
Plaintext
Raw Normal View History

2022-09-27 06:37:28 +02:00
function surfaceBox(_onModify, def_path = "") constructor {
onModify = _onModify;
self.def_path = def_path;
active = false;
hover = false;
open = false;
align = fa_center;
static draw = function(_x, _y, _w, _h, _surface, _m, _rx, _ry) {
if(!open) {
if(hover && point_in_rectangle(_m[0], _m[1], _x, _y, _x + _w, _y + _h)) {
2022-11-18 03:20:31 +01:00
draw_sprite_stretched(THEME.textbox, 1, _x, _y, _w, _h);
2022-09-27 06:37:28 +02:00
if(active && mouse_check_button_pressed(mb_left)) {
open = true;
with(dialogCall(o_dialog_assetbox, _x + _w + _rx, _y + _ry)) {
target = other;
gotoDir(other.def_path);
}
}
if(mouse_check_button(mb_left))
2022-11-18 03:20:31 +01:00
draw_sprite_stretched(THEME.textbox, 2, _x, _y, _w, _h);
2022-09-27 06:37:28 +02:00
} else {
2022-11-18 03:20:31 +01:00
draw_sprite_stretched(THEME.textbox, 0, _x, _y, _w, _h);
2022-09-27 06:37:28 +02:00
}
2022-11-03 11:44:49 +01:00
var pad = ui(12);
2022-09-27 06:37:28 +02:00
var sw = min(_w - pad, _h - pad);
var sh = sw;
var sx0 = _x + _w / 2 - sw / 2;
var sx1 = sx0 + sw;
var sy0 = _y + _h / 2 - sh / 2;
var sy1 = sy0 + sh;
2022-11-18 03:20:31 +01:00
draw_set_color(COLORS.widget_surface_frame);
2022-09-27 06:37:28 +02:00
draw_rectangle(sx0, sy0, sx1, sy1, true);
if(is_array(_surface))
_surface = _surface[round(current_time / 250) % array_length(_surface)];
if(is_surface(_surface)) {
var sfw = surface_get_width(_surface);
var sfh = surface_get_height(_surface);
var ss = min(sw / sfw, sh / sfh);
2022-11-01 03:06:03 +01:00
var _sx = sx0 + sw / 2 - ss * sfw / 2;
var _sy = sy0 + sh / 2 - ss * sfh / 2;
2022-09-27 06:37:28 +02:00
2022-11-01 03:06:03 +01:00
draw_surface_ext(_surface, _sx, _sy, ss, ss, 0, c_white, 1);
2022-09-27 06:37:28 +02:00
}
2022-11-18 03:20:31 +01:00
draw_sprite_ui_uniform(THEME.scroll_box_arrow, 0, _x + _w - ui(20), _y + _h / 2, 1, COLORS._main_icon);
2022-09-27 06:37:28 +02:00
}
hover = false;
active = false;
}
}