Pixel-Composer/scripts/node_flood_fill/node_flood_fill.gml

119 lines
3.7 KiB
Plaintext
Raw Normal View History

2023-02-28 09:43:01 +01:00
function Node_Flood_Fill(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
name = "Flood Fill";
2024-05-03 13:40:46 +02:00
inputs[| 0] = nodeValue("Surface in", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, noone);
2023-02-28 09:43:01 +01:00
2024-03-14 14:35:19 +01:00
inputs[| 1] = nodeValue("Mask", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, noone);
2023-02-28 09:43:01 +01:00
inputs[| 2] = nodeValue("Mix", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 1)
.setDisplay(VALUE_DISPLAY.slider);
2023-02-28 09:43:01 +01:00
inputs[| 3] = nodeValue("Active", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, true);
active_index = 3;
inputs[| 4] = nodeValue("Position", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, [ 1, 1 ])
.setDisplay(VALUE_DISPLAY.vector);
2024-03-19 09:49:29 +01:00
inputs[| 5] = nodeValue("Colors", self, JUNCTION_CONNECT.input, VALUE_TYPE.color, cola(c_black) );
2023-02-28 09:43:01 +01:00
inputs[| 6] = nodeValue("Threshold", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0.1)
.setDisplay(VALUE_DISPLAY.slider);
2023-02-28 09:43:01 +01:00
inputs[| 7] = nodeValue("Diagonal", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, false);
2023-11-24 10:41:53 +01:00
__init_mask_modifier(1); // inputs 8, 9
2024-05-02 14:36:59 +02:00
inputs[| 10] = nodeValue("Blend", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0)
.setDisplay(VALUE_DISPLAY.enum_scroll, [ "Override", "Multiply" ]);
2023-02-28 09:43:01 +01:00
outputs[| 0] = nodeValue("Surface out", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, noone);
input_display_list = [ 3,
2023-11-24 10:41:53 +01:00
["Surfaces", false], 0, 1, 2, 8, 9,
2024-05-02 14:36:59 +02:00
["Fill", false], 4, 6, 5, 7, 10,
2023-02-28 09:43:01 +01:00
]
temp_surface = [ surface_create(1, 1), surface_create(1, 1) ];
2023-03-19 09:17:39 +01:00
attribute_surface_depth();
2023-06-13 14:42:06 +02:00
attributes.fill_iteration = -1;
2023-03-24 09:32:08 +01:00
array_push(attributeEditors, "Algorithm");
2023-07-14 20:34:35 +02:00
array_push(attributeEditors, ["Fill iteration", function() { return attributes.fill_iteration; },
2023-04-11 20:29:20 +02:00
new textBox(TEXTBOX_INPUT.number, function(val) {
2023-06-13 14:42:06 +02:00
attributes.fill_iteration = val;
2023-04-11 20:29:20 +02:00
triggerRender();
})]);
2023-03-24 09:32:08 +01:00
2024-03-14 14:35:19 +01:00
static drawOverlay = function(hover, active, _x, _y, _s, _mx, _my, _snx, _sny) {
2024-07-02 12:18:32 +02:00
var _hov = false;
var hv = inputs[| 4].drawOverlay(hover, active, _x, _y, _s, _mx, _my, _snx, _sny); _hov |= hv;
return _hov;
2023-02-28 09:43:01 +01:00
}
2023-11-24 10:41:53 +01:00
static step = function() { #region
__step_mask_modifier();
} #endregion
2023-08-17 16:56:54 +02:00
static processData = function(_outSurf, _data, _output_index, _array_index) {
2023-02-28 09:43:01 +01:00
var inSurf = _data[0];
if(!is_surface(inSurf)) return _outSurf;
2024-05-02 14:36:59 +02:00
var _pos = _data[ 4];
var _col = _data[ 5];
var _thr = _data[ 6];
var _dia = _data[ 7];
var _bnd = _data[10];
2023-02-28 09:43:01 +01:00
2023-03-31 06:59:08 +02:00
var _filC = surface_get_pixel_ext(inSurf, _pos[0], _pos[1]);
2023-02-28 09:43:01 +01:00
2023-09-08 21:37:36 +02:00
var sw = surface_get_width_safe(inSurf);
var sh = surface_get_height_safe(inSurf);
2023-02-28 09:43:01 +01:00
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(temp_surface); i < n; i++ )
2023-03-19 09:17:39 +01:00
temp_surface[i] = surface_verify(temp_surface[i], sw, sh, attrDepth());
2023-02-28 09:43:01 +01:00
surface_set_target(temp_surface[0]);
2023-03-19 09:17:39 +01:00
DRAW_CLEAR
2023-02-28 09:43:01 +01:00
shader_set(sh_flood_fill_thres);
2023-03-25 12:27:04 +01:00
shader_set_f("color", colaToVec4(_filC));
shader_set_f("thres", _thr);
2023-02-28 09:43:01 +01:00
BLEND_OVERRIDE
draw_surface_safe(inSurf);
2023-02-28 09:43:01 +01:00
BLEND_NORMAL
shader_reset();
BLEND_OVERRIDE
draw_set_color(c_red);
draw_point(_pos[0] - 1, _pos[1] - 1);
BLEND_NORMAL
surface_reset_target();
var ind = 0;
2024-05-02 14:36:59 +02:00
var it = attributes.fill_iteration == -1? 8 : attributes.fill_iteration;
2023-02-28 09:43:01 +01:00
repeat(it) {
ind = !ind;
2024-01-08 08:10:50 +01:00
surface_set_shader(temp_surface[ind], sh_flood_fill_it);
shader_set_f("dimension", [ sw, sh ]);
shader_set_i("diagonal", _dia);
draw_surface_safe(temp_surface[!ind]);
2024-01-08 08:10:50 +01:00
surface_reset_shader();
2023-02-28 09:43:01 +01:00
}
2024-01-08 08:10:50 +01:00
surface_set_shader(_outSurf, sh_flood_fill_replace);
2024-05-02 14:36:59 +02:00
shader_set_color("color", _col);
2024-01-08 08:10:50 +01:00
shader_set_surface("mask", temp_surface[ind]);
2024-05-02 14:36:59 +02:00
shader_set_i("blend", _bnd);
draw_surface_safe(inSurf);
2024-01-08 08:10:50 +01:00
surface_reset_shader();
2023-02-28 09:43:01 +01:00
2023-11-24 10:41:53 +01:00
__process_mask_modifier(_data);
2023-02-28 09:43:01 +01:00
_outSurf = mask_apply(_data[0], _outSurf, _data[1], _data[2]);
return _outSurf;
}
}