Pixel-Composer/objects/o_dialog_palette/Create_0.gml

119 lines
2.9 KiB
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01:00
/// @description init
event_inherited();
#region data
2022-12-10 05:06:01 +01:00
dialog_w = ui(812);
dialog_h = ui(440);
2022-01-13 05:24:03 +01:00
destroy_on_click_out = true;
2023-02-14 13:44:46 +01:00
name = get_text("palette_editor_title", "Palette editor");
2022-01-13 05:24:03 +01:00
palette = 0;
index_selecting = 0;
index_dragging = -1;
2022-11-18 03:20:31 +01:00
setColor = function(color) {
2022-01-13 05:24:03 +01:00
if(index_selecting == -1 || palette == 0) return;
2022-11-18 03:20:31 +01:00
palette[index_selecting] = color;
2023-01-01 02:06:02 +01:00
2023-01-04 02:30:04 +01:00
if(onApply == noone) return;
onApply(palette);
2022-01-13 05:24:03 +01:00
}
2022-11-18 03:20:31 +01:00
2023-01-01 02:06:02 +01:00
onApply = noone;
2022-11-18 03:20:31 +01:00
selector = new colorSelector(setColor);
2022-12-22 03:09:55 +01:00
selector.dropper_close = false;
2022-11-18 03:20:31 +01:00
2023-02-14 13:44:46 +01:00
previous_palette = c_black;
function setDefault(pal) {
setPalette(pal);
previous_palette = array_clone(pal);
}
b_cancel = button(function() {
onApply(previous_palette);
DIALOG_CLICK = false;
instance_destroy();
}).setIcon(THEME.revert, 0, COLORS._main_icon)
.setTooltip("Revert and exit");
2023-01-25 06:49:00 +01:00
b_apply = button(function() {
onApply(palette);
instance_destroy();
}).setIcon(THEME.accept, 0, COLORS._main_icon_dark);
2022-01-13 05:24:03 +01:00
function setPalette(pal) {
palette = pal;
index_selecting = 0;
if(array_length(palette) > 0)
2022-11-18 03:20:31 +01:00
selector.setColor(palette[0]);
2022-01-13 05:24:03 +01:00
}
#endregion
#region presets
presets = ds_list_create();
preset_name = ds_list_create();
function presetCollect() {
ds_list_clear(presets);
ds_list_clear(preset_name);
var path = DIRECTORY + "Palettes/"
var file = file_find_first(path + "*", 0);
while(file != "") {
ds_list_add(presets, loadPalette(path + file));
ds_list_add(preset_name, filename_name(file));
file = file_find_next();
}
file_find_close();
}
presetCollect();
2022-11-03 11:44:49 +01:00
sp_preset_w = ui(240 - 32 - 16);
sp_presets = new scrollPane(sp_preset_w, dialog_h - ui(62), function(_y, _m) {
var ww = sp_preset_w - ui(40);
var hh = ui(32);
var yy = _y + ui(8);
var hg = ui(52);
2022-11-18 03:20:31 +01:00
draw_clear_alpha(COLORS.panel_bg_clear, 0);
2022-01-13 05:24:03 +01:00
for(var i = 0; i < ds_list_size(presets); i++) {
2022-12-19 13:35:30 +01:00
var isHover = sHOVER && sp_presets.hover && point_in_rectangle(_m[0], _m[1], ui(4), yy, ui(4) + sp_preset_w - ui(16), yy + hg);
2022-11-18 03:20:31 +01:00
draw_sprite_stretched(THEME.ui_panel_bg, 1, ui(4), yy, sp_preset_w - ui(16), hg);
2022-12-10 05:06:01 +01:00
if(isHover)
draw_sprite_stretched_ext(THEME.node_active, 1, ui(4), yy, sp_preset_w - ui(16), hg, COLORS._main_accent, 1);
2022-11-18 03:20:31 +01:00
draw_set_text(f_p2, fa_left, fa_top, COLORS._main_text_sub);
2022-11-03 11:44:49 +01:00
draw_text(ui(16), yy + ui(8), preset_name[| i]);
drawPalette(presets[| i], ui(16), yy + ui(28), ww, ui(16));
2022-01-13 05:24:03 +01:00
2022-12-10 05:06:01 +01:00
if(isHover && mouse_press(mb_left, sFOCUS)) {
palette = array_create(array_length(presets[| i]));
for( var j = 0; j < array_length(presets[| i]); j++ ) {
palette[j] = presets[| i][j];
2022-01-13 05:24:03 +01:00
}
}
2022-11-03 11:44:49 +01:00
yy += hg + ui(4);
hh += hg + ui(4);
2022-01-13 05:24:03 +01:00
}
return hh;
})
#endregion
#region tools
2022-12-13 09:20:36 +01:00
function sortPalette(sortFunc) {
array_sort(palette, sortFunc);
2023-01-09 03:14:20 +01:00
onApply(palette);
2022-01-13 05:24:03 +01:00
}
#endregion
2022-11-18 03:20:31 +01:00
#region action
2022-01-13 05:24:03 +01:00
onResize = function() {
2022-11-03 11:44:49 +01:00
sp_presets.resize(sp_preset_w, dialog_h - ui(62));
2022-01-13 05:24:03 +01:00
}
2022-11-18 03:20:31 +01:00
function checkMouse() {}
2022-01-13 05:24:03 +01:00
#endregion