mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-13 05:53:53 +01:00
127 lines
3.3 KiB
Plaintext
127 lines
3.3 KiB
Plaintext
function buttonPalette(_onApply, dialog = noone) : widget() constructor {
|
|
onApply = _onApply;
|
|
parentDialog = dialog;
|
|
current_palette = [];
|
|
|
|
function apply(value) {
|
|
if(!interactable) return;
|
|
onApply(value);
|
|
}
|
|
|
|
static trigger = function() {
|
|
var dialog = dialogCall(o_dialog_palette, WIN_W / 2, WIN_H / 2);
|
|
dialog.setDefault(current_palette);
|
|
dialog.onApply = apply;
|
|
dialog.interactable = interactable;
|
|
|
|
if(parentDialog)
|
|
parentDialog.addChildren(dialog);
|
|
}
|
|
|
|
static drawParam = function(params) {
|
|
return draw(params.x, params.y, params.w, params.h, params.data, params.m);
|
|
}
|
|
|
|
static draw = function(_x, _y, _w, _h, _color, _m) {
|
|
x = _x;
|
|
y = _y;
|
|
w = _w;
|
|
h = _h;
|
|
|
|
var _pw = _w - ui(12);
|
|
var _ph = _h - ui(12);
|
|
|
|
current_palette = _color;
|
|
|
|
if(array_length(_color) > 0 && is_array(_color[0])) {
|
|
if(array_length(_color[0]) == 0) return 0;
|
|
|
|
h = ui(12) + array_length(_color) * _ph;
|
|
current_palette = _color[0];
|
|
} else {
|
|
h = _h;
|
|
}
|
|
|
|
if(!is_array(current_palette) || array_empty(current_palette) || is_array(current_palette[0]))
|
|
return 0;
|
|
|
|
var hoverRect = point_in_rectangle(_m[0], _m[1], _x, _y, _x + _w, _y + h);
|
|
if(ihover && hoverRect) {
|
|
draw_sprite_stretched(THEME.button, 1, _x, _y, _w, h);
|
|
if(mouse_press(mb_left, iactive))
|
|
trigger();
|
|
|
|
if(mouse_click(mb_left, iactive)) {
|
|
draw_sprite_stretched(THEME.button, 2, _x, _y, _w, h);
|
|
draw_sprite_stretched_ext(THEME.button, 3, _x, _y, _w, h, COLORS._main_accent, 1);
|
|
}
|
|
} else {
|
|
draw_sprite_stretched(THEME.button, 0, _x, _y, _w, h);
|
|
if(mouse_press(mb_left)) deactivate();
|
|
}
|
|
|
|
if(!is_array(_color[0])) _color = [ _color ];
|
|
|
|
for( var i = 0, n = array_length(_color); i < n; i++ ) {
|
|
var _pal = _color[i];
|
|
var _px = _x + ui(6);
|
|
var _py = _y + ui(6) + i * _ph;
|
|
|
|
if(is_array(_pal))
|
|
drawPalette(_pal, _px, _py, _pw, _ph);
|
|
}
|
|
|
|
if(WIDGET_CURRENT == self)
|
|
draw_sprite_stretched_ext(THEME.widget_selecting, 0, _x - ui(3), _y - ui(3), _w + ui(6), h + ui(6), COLORS._main_accent, 1);
|
|
|
|
if(DRAGGING && DRAGGING.type == "Palette" && hover && hoverRect) {
|
|
draw_sprite_stretched_ext(THEME.ui_panel_active, 0, _x, _y, _w, h, COLORS._main_value_positive, 1);
|
|
if(mouse_release(mb_left))
|
|
onApply(DRAGGING.data);
|
|
}
|
|
|
|
resetFocus();
|
|
|
|
return h;
|
|
}
|
|
}
|
|
|
|
function drawPalette(_pal, _x, _y, _w, _h, _a = 1) {
|
|
var ww = _w / array_length(_pal);
|
|
draw_set_alpha(_a);
|
|
for(var i = 0; i < array_length(_pal); i++) {
|
|
if(!is_real(_pal[i])) continue;
|
|
draw_set_color(_pal[i]);
|
|
var _x0 = _x + i * ww;
|
|
var _x1 = _x0 + ww - 1;
|
|
draw_rectangle(_x0, _y, _x1, _y + _h, false);
|
|
}
|
|
draw_set_alpha(1);
|
|
}
|
|
|
|
|
|
function drawPaletteGrid(_pal, _x, _y, _w, _gs = 24, c_color = -1) {
|
|
var amo = array_length(_pal);
|
|
var col = floor(_w / _gs);
|
|
var row = ceil(amo / col);
|
|
|
|
for(var i = 0; i < array_length(_pal); i++) {
|
|
draw_set_color(_pal[i]);
|
|
var _x0 = _x + safe_mod(i, col) * _gs;
|
|
var _y0 = _y + floor(i / col) * _gs;
|
|
draw_rectangle(_x0, _y0 + 1, _x0 + _gs, _y0 + _gs, false);
|
|
}
|
|
|
|
if(c_color == -1) return;
|
|
|
|
for(var i = 0; i < array_length(_pal); i++) {
|
|
if(c_color != _pal[i]) continue;
|
|
|
|
var _x0 = _x + safe_mod(i, col) * _gs;
|
|
var _y0 = _y + floor(i / col) * _gs;
|
|
|
|
draw_set_color(c_white);
|
|
draw_rectangle_border(_x0, _y0 + 1, _x0 + _gs, _y0 + _gs, 2);
|
|
}
|
|
}
|