Pixel-Composer/scripts/histogram_drawer/histogram_drawer.gml

87 lines
2.3 KiB
Plaintext
Raw Normal View History

2022-09-23 13:28:42 +02:00
function histogramInit() {
2023-06-13 14:42:06 +02:00
attributes.preview_resolution = 64;
2023-03-19 09:17:39 +01:00
array_push(attributeEditors, ["Preview resolution", "preview_resolution",
2023-06-13 14:42:06 +02:00
new textBox(TEXTBOX_INPUT.number, function(val) { attributes.preview_resolution = val; })]);
2023-03-19 09:17:39 +01:00
2023-06-13 14:42:06 +02:00
attributes.preview_sample = 32;
2023-03-19 09:17:39 +01:00
array_push(attributeEditors, ["Preview sample", "preview_sample",
2023-06-13 14:42:06 +02:00
new textBox(TEXTBOX_INPUT.number, function(val) { attributes.preview_sample = val; })]);
2023-03-19 09:17:39 +01:00
2022-09-23 13:28:42 +02:00
for( var i = 0; i < 4; i++ ) {
2023-06-13 14:42:06 +02:00
hist[i] = array_create(attributes.preview_resolution + 1);
2022-09-23 13:28:42 +02:00
histShow[i] = true;
}
histMax = 0;
}
function histogramDraw(_x, _y, _w, _h) {
var _levels = array_length(hist[0]) - 1;
var lw = _w / _levels;
var ox, oy = array_create(4);
draw_set_alpha(0.5);
2023-01-25 06:49:00 +01:00
BLEND_OVERRIDE
2022-09-23 13:28:42 +02:00
for( var i = 0; i < _levels; i++ ) {
var _lx = _x + i * lw, _lh = [];
for( var j = 0; j < 4; j++ ) {
_lh[@ j] = _y - hist[j][i] / histMax * _h;
}
if(i) {
for( var j = 0; j < 4; j++ ) {
if(!histShow[j]) continue;
2022-11-18 03:20:31 +01:00
draw_set_color(COLORS.histogram[j]);
2022-09-23 13:28:42 +02:00
draw_line(ox, oy[j], _lx, _lh[j]);
}
}
for( var j = 0; j < 4; j++ ) {
oy[@ j] = _lh[j];
}
ox = _lx;
}
draw_set_alpha(1);
BLEND_NORMAL
}
function histogramUpdate(surface) {
2023-06-13 14:42:06 +02:00
if(array_length(hist[0]) != attributes.preview_resolution + 1)
2022-09-23 13:28:42 +02:00
histogramInit();
if(!is_surface(surface)) return;
histMax = 0;
var sw = surface_get_width(surface);
var sh = surface_get_height(surface);
2023-06-13 14:42:06 +02:00
var stw = max(1, sw / attributes.preview_sample);
var sth = max(1, sh / attributes.preview_sample);
2022-09-23 13:28:42 +02:00
for( var j = 0; j < 4; j++ )
for( var i = 0; i < array_length(hist[0]); i++ ) {
hist[j][i] = 0;
}
2022-11-03 11:44:49 +01:00
var surface_buffer = buffer_create(sw * sh * 4, buffer_grow, 1);
buffer_get_surface(surface_buffer, surface, 0);
2022-09-23 13:28:42 +02:00
2022-11-03 11:44:49 +01:00
for( var i = 0; i < sw; i += stw )
for( var j = 0; j < sh; j += sth ) {
var col = buffer_get_color(surface_buffer, i, j, sw, sh);
2022-09-23 13:28:42 +02:00
var colA = [];
2023-06-13 14:42:06 +02:00
colA[0] = round(color_get_red(col) / 256 * attributes.preview_resolution);
colA[1] = round(color_get_green(col) / 256 * attributes.preview_resolution);
colA[2] = round(color_get_blue(col) / 256 * attributes.preview_resolution);
2022-09-23 13:28:42 +02:00
colA[3] = round((colA[0] + colA[1] + colA[2]) / 3);
for( var k = 0; k < 4; k++ ) {
if(!colA[k]) continue
hist[k][colA[k]]++;
histMax = max(histMax, hist[k][colA[k]]);
}
}
}