2023-02-28 09:43:01 +01:00
|
|
|
function Node_Canvas(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
|
2022-01-13 05:24:03 +01:00
|
|
|
name = "Canvas";
|
2022-11-18 03:20:31 +01:00
|
|
|
color = COLORS.node_blend_canvas;
|
2023-02-14 05:32:32 +01:00
|
|
|
preview_channel = 1;
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
inputs[| 0] = nodeValue("Dimension", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, def_surf_size2 )
|
2022-01-13 05:24:03 +01:00
|
|
|
.setDisplay(VALUE_DISPLAY.vector);
|
|
|
|
|
2023-07-18 17:51:40 +02:00
|
|
|
inputs[| 1] = nodeValue("Color", self, JUNCTION_CONNECT.input, VALUE_TYPE.color, c_white );
|
2023-07-14 20:34:35 +02:00
|
|
|
inputs[| 2] = nodeValue("Brush size", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 1 )
|
2022-01-13 05:24:03 +01:00
|
|
|
.setDisplay(VALUE_DISPLAY.slider, [1, 32, 1]);
|
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
inputs[| 3] = nodeValue("Fill threshold", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0.)
|
2022-01-19 03:05:13 +01:00
|
|
|
.setDisplay(VALUE_DISPLAY.slider, [0, 1, 0.01]);
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
inputs[| 4] = nodeValue("Fill type", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0)
|
2022-01-19 03:05:13 +01:00
|
|
|
.setDisplay(VALUE_DISPLAY.enum_scroll, ["4 connect", "8 connect", "Entire canvas"]);
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
inputs[| 5] = nodeValue("Draw preview overlay", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, true);
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
inputs[| 6] = nodeValue("Brush", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, -1)
|
|
|
|
.setVisible(true, false);
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
inputs[| 7] = nodeValue("Surface amount", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 1);
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
inputs[| 8] = nodeValue("Background", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, -1);
|
|
|
|
|
|
|
|
inputs[| 9] = nodeValue("Background alpha", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 1.)
|
|
|
|
.setDisplay(VALUE_DISPLAY.slider, [0, 1, 0.01]);
|
|
|
|
|
|
|
|
inputs[| 10] = nodeValue("Render background", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, false);
|
|
|
|
|
2023-06-24 22:12:35 +02:00
|
|
|
inputs[| 11] = nodeValue("Alpha", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 1 )
|
|
|
|
.setDisplay(VALUE_DISPLAY.slider, [0, 1, 0.01]);
|
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
outputs[| 0] = nodeValue("Surface out", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, noone);
|
2022-01-13 05:24:03 +01:00
|
|
|
|
|
|
|
input_display_list = [
|
|
|
|
["Output", false], 0,
|
2023-06-24 22:12:35 +02:00
|
|
|
["Brush", false], 6, 2, 1, 11,
|
2022-01-13 05:24:03 +01:00
|
|
|
["Fill", false], 3, 4,
|
2023-07-14 20:34:35 +02:00
|
|
|
["Display", false], 8, 10, 9,
|
2022-01-13 05:24:03 +01:00
|
|
|
];
|
|
|
|
|
2023-03-19 09:17:39 +01:00
|
|
|
attribute_surface_depth();
|
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
canvas_surface = surface_create_empty(1, 1);
|
|
|
|
drawing_surface = surface_create_empty(1, 1);
|
|
|
|
canvas_buffer = buffer_create(1 * 1 * 4, buffer_fixed, 2);
|
2023-02-14 05:32:32 +01:00
|
|
|
surface_w = 1;
|
|
|
|
surface_h = 1;
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
prev_surface = surface_create_empty(1, 1);
|
|
|
|
preview_draw_surface = surface_create_empty(1, 1);
|
|
|
|
_preview_draw_surface = surface_create_empty(1, 1);
|
|
|
|
|
2023-07-15 20:01:29 +02:00
|
|
|
is_selecting = false;
|
|
|
|
is_selected = false;
|
|
|
|
is_select_drag = false;
|
|
|
|
selection_surface = surface_create_empty(1, 1);
|
|
|
|
selection_mask = surface_create_empty(1, 1);
|
|
|
|
selection_position = [ 0, 0 ];
|
|
|
|
selection_sx = 0;
|
|
|
|
selection_sy = 0;
|
|
|
|
selection_mx = 0;
|
|
|
|
selection_my = 0;
|
|
|
|
|
2023-03-11 01:40:17 +01:00
|
|
|
tool_channel_edit = new checkBoxGroup(THEME.tools_canvas_channel, function(ind, val) { tool_attribute.channel[ind] = val; });
|
|
|
|
tool_attribute.channel = [ true, true, true, true ];
|
|
|
|
tool_settings = [
|
|
|
|
[ "Channel", tool_channel_edit, "channel", tool_attribute ],
|
|
|
|
];
|
|
|
|
|
2022-01-13 05:24:03 +01:00
|
|
|
tools = [
|
2023-07-15 20:01:29 +02:00
|
|
|
new NodeTool( "Selection", [ THEME.canvas_tools_selection_rectangle, THEME.canvas_tools_selection_circle ] ),
|
2023-03-11 01:40:17 +01:00
|
|
|
new NodeTool( "Pencil", THEME.canvas_tools_pencil ),
|
|
|
|
new NodeTool( "Eraser", THEME.canvas_tools_eraser ),
|
|
|
|
new NodeTool( "Rectangle", [ THEME.canvas_tools_rect, THEME.canvas_tools_rect_fill ]),
|
|
|
|
new NodeTool( "Ellipse", [ THEME.canvas_tools_ellip, THEME.canvas_tools_ellip_fill ]),
|
|
|
|
new NodeTool( "Fill", THEME.canvas_tools_bucket ),
|
2022-01-13 05:24:03 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
draw_stack = ds_list_create();
|
|
|
|
|
2023-03-11 01:40:17 +01:00
|
|
|
function apply_draw_surface() {
|
2023-06-24 22:12:35 +02:00
|
|
|
var _alp = inputs[| 11].getValue();
|
|
|
|
|
2023-03-11 01:40:17 +01:00
|
|
|
BLEND_ALPHA;
|
2023-07-15 20:01:29 +02:00
|
|
|
if(isUsingTool("Eraser"))
|
2023-03-11 01:40:17 +01:00
|
|
|
gpu_set_blendmode(bm_subtract);
|
2023-06-24 22:12:35 +02:00
|
|
|
draw_surface_ext_safe(drawing_surface, 0, 0, 1, 1, 0, c_white, _alp);
|
2023-03-11 01:40:17 +01:00
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
surface_clear(drawing_surface);
|
2023-03-11 01:40:17 +01:00
|
|
|
BLEND_NORMAL;
|
2023-03-13 10:45:56 +01:00
|
|
|
|
|
|
|
surface_store_buffer();
|
2023-03-11 01:40:17 +01:00
|
|
|
}
|
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
function surface_store_buffer() {
|
|
|
|
buffer_delete(canvas_buffer);
|
|
|
|
|
|
|
|
surface_w = surface_get_width(canvas_surface);
|
|
|
|
surface_h = surface_get_height(canvas_surface);
|
|
|
|
canvas_buffer = buffer_create(surface_w * surface_h * 4, buffer_fixed, 4);
|
|
|
|
buffer_get_surface(canvas_buffer, canvas_surface, 0);
|
|
|
|
|
|
|
|
triggerRender();
|
|
|
|
apply_surface();
|
|
|
|
}
|
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
function apply_surface() {
|
2023-07-14 20:34:35 +02:00
|
|
|
var _dim = inputs[| 0].getValue();
|
|
|
|
var cDep = attrDepth();
|
2023-02-14 05:32:32 +01:00
|
|
|
|
|
|
|
if(!is_surface(canvas_surface))
|
2023-07-14 20:34:35 +02:00
|
|
|
canvas_surface = surface_create_from_buffer(_dim[0], _dim[1], canvas_buffer);
|
2023-03-19 09:17:39 +01:00
|
|
|
else if(surface_get_width(canvas_surface) != _dim[0] || surface_get_height(canvas_surface) != _dim[1]) {
|
2023-07-14 20:34:35 +02:00
|
|
|
buffer_delete(canvas_buffer);
|
|
|
|
canvas_buffer = buffer_create(_dim[0] * _dim[1] * 4, buffer_fixed, 4);
|
2023-03-19 09:17:39 +01:00
|
|
|
canvas_surface = surface_size_to(canvas_surface, _dim[0], _dim[1]);
|
2023-02-14 05:32:32 +01:00
|
|
|
}
|
|
|
|
|
2023-03-19 09:17:39 +01:00
|
|
|
drawing_surface = surface_verify(drawing_surface, _dim[0], _dim[1], cDep);
|
2023-07-14 20:34:35 +02:00
|
|
|
surface_clear(drawing_surface);
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
function draw_point_size(_x, _y, _siz, _brush) { #region
|
2022-09-21 06:09:40 +02:00
|
|
|
if(!is_surface(_brush)) {
|
|
|
|
if(_siz <= 1)
|
2022-01-13 05:24:03 +01:00
|
|
|
draw_point(_x, _y);
|
|
|
|
else if(_siz == 2) {
|
|
|
|
draw_point(_x, _y);
|
|
|
|
draw_point(_x + 1, _y);
|
|
|
|
draw_point(_x, _y + 1);
|
|
|
|
draw_point(_x + 1, _y + 1);
|
|
|
|
} else if(_siz == 3) {
|
|
|
|
draw_point(_x, _y);
|
|
|
|
draw_point(_x - 1, _y);
|
|
|
|
draw_point(_x, _y - 1);
|
|
|
|
draw_point(_x + 1, _y);
|
|
|
|
draw_point(_x, _y + 1);
|
|
|
|
} else
|
2023-06-17 14:30:49 +02:00
|
|
|
draw_circle_prec(_x, _y, _siz / 2, 0);
|
2022-09-21 06:09:40 +02:00
|
|
|
} else {
|
2022-01-13 05:24:03 +01:00
|
|
|
var _sw = surface_get_width(_brush);
|
|
|
|
var _sh = surface_get_height(_brush);
|
|
|
|
|
2023-03-19 09:17:39 +01:00
|
|
|
draw_surface_ext_safe(_brush, _x - floor(_sw / 2), _y - floor(_sh / 2), 1, 1, 0, draw_get_color(), draw_get_alpha());
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|
2023-07-14 20:34:35 +02:00
|
|
|
} #endregion
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
function draw_line_size(_x0, _y0, _x1, _y1, _siz, _brush) { #region
|
2022-01-13 05:24:03 +01:00
|
|
|
if(_siz == 1 && _brush == -1)
|
|
|
|
draw_line(_x0, _y0, _x1, _y1);
|
|
|
|
else {
|
2023-07-14 20:34:35 +02:00
|
|
|
var diss = point_distance(_x0, _y0, _x1, _y1);
|
2022-01-13 05:24:03 +01:00
|
|
|
var dirr = point_direction(_x0, _y0, _x1, _y1);
|
|
|
|
var st_x = lengthdir_x(1, dirr);
|
|
|
|
var st_y = lengthdir_y(1, dirr);
|
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
for( var i = 0; i <= diss; i += 1 ) {
|
|
|
|
var _px = _x0 + st_x * i;
|
|
|
|
var _py = _y0 + st_y * i;
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
draw_point_size(_px, _py, _siz, _brush);
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|
2023-07-14 20:34:35 +02:00
|
|
|
|
|
|
|
draw_point_size(_x1, _y1, _siz, _brush);
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|
2023-07-14 20:34:35 +02:00
|
|
|
} #endregion
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
function draw_rect_size(_x0, _y0, _x1, _y1, _siz, _fill, _brush) { #region
|
2022-01-13 05:24:03 +01:00
|
|
|
if(_x0 == _x1 && _y0 == _y1) {
|
|
|
|
draw_point_size(_x0, _y0, _siz, _brush);
|
|
|
|
return;
|
|
|
|
} else if(_x0 == _x1) {
|
2022-08-30 07:36:37 +02:00
|
|
|
draw_point_size(_x0, _y0, _siz, _brush);
|
|
|
|
draw_point_size(_x1, _y1, _siz, _brush);
|
2022-01-13 05:24:03 +01:00
|
|
|
draw_line_size(_x0, _y0, _x0, _y1, _siz, _brush);
|
|
|
|
return;
|
|
|
|
} else if(_y0 == _y1) {
|
2022-08-30 07:36:37 +02:00
|
|
|
draw_point_size(_x0, _y0, _siz, _brush);
|
|
|
|
draw_point_size(_x1, _y1, _siz, _brush);
|
2022-01-13 05:24:03 +01:00
|
|
|
draw_line_size(_x0, _y0, _x1, _y0, _siz, _brush);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var _min_x = min(_x0, _x1);
|
|
|
|
var _max_x = max(_x0, _x1);
|
|
|
|
var _min_y = min(_y0, _y1);
|
|
|
|
var _may_y = max(_y0, _y1);
|
|
|
|
|
|
|
|
if(_fill) {
|
|
|
|
draw_rectangle(_min_x, _min_y, _max_x, _may_y, 0);
|
|
|
|
} else if(_siz == 1 && _brush == -1)
|
|
|
|
draw_rectangle(_min_x + 1, _min_y + 1, _max_x - 1, _may_y - 1, 1);
|
|
|
|
else {
|
|
|
|
draw_line_size(_min_x, _min_y, _max_x, _min_y, _siz, _brush);
|
|
|
|
draw_line_size(_min_x, _min_y, _min_x, _may_y, _siz, _brush);
|
|
|
|
draw_line_size(_max_x, _may_y, _max_x, _min_y, _siz, _brush);
|
|
|
|
draw_line_size(_max_x, _may_y, _min_x, _may_y, _siz, _brush);
|
|
|
|
}
|
2023-07-14 20:34:35 +02:00
|
|
|
} #endregion
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
function draw_ellp_size(_x0, _y0, _x1, _y1, _siz, _fill, _brush) { #region
|
2022-01-13 05:24:03 +01:00
|
|
|
if(_x0 == _x1 && _y0 == _y1) {
|
|
|
|
draw_point_size(_x0, _y0, _siz, _brush);
|
|
|
|
return;
|
|
|
|
} else if(_x0 == _x1) {
|
2022-08-30 07:36:37 +02:00
|
|
|
draw_point_size(_x0, _y0, _siz, _brush);
|
|
|
|
draw_point_size(_x1, _y1, _siz, _brush);
|
2022-01-13 05:24:03 +01:00
|
|
|
draw_line_size(_x0, _y0, _x0, _y1, _siz, _brush);
|
|
|
|
return;
|
|
|
|
} else if(_y0 == _y1) {
|
2022-08-30 07:36:37 +02:00
|
|
|
draw_point_size(_x0, _y0, _siz, _brush);
|
|
|
|
draw_point_size(_x1, _y1, _siz, _brush);
|
2022-01-13 05:24:03 +01:00
|
|
|
draw_line_size(_x0, _y0, _x1, _y0, _siz, _brush);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-08-30 07:36:37 +02:00
|
|
|
var _min_x = min(_x0, _x1) - 1;
|
2022-01-13 05:24:03 +01:00
|
|
|
var _max_x = max(_x0, _x1);
|
2022-08-30 07:36:37 +02:00
|
|
|
var _min_y = min(_y0, _y1) - 1;
|
|
|
|
var _max_y = max(_y0, _y1);
|
|
|
|
|
2022-01-13 05:24:03 +01:00
|
|
|
if(_fill) {
|
2022-08-30 07:36:37 +02:00
|
|
|
draw_ellipse(_min_x, _min_y, _max_x, _max_y, 0);
|
|
|
|
} else {
|
2022-01-13 05:24:03 +01:00
|
|
|
var samp = 64;
|
2022-09-21 06:09:40 +02:00
|
|
|
var cx = (_min_x + _max_x) / 2;
|
|
|
|
var cy = (_min_y + _max_y) / 2;
|
2022-01-13 05:24:03 +01:00
|
|
|
var rx = abs(_x0 - _x1) / 2;
|
|
|
|
var ry = abs(_y0 - _y1) / 2;
|
|
|
|
|
|
|
|
var ox, oy, nx, ny;
|
|
|
|
for( var i = 0; i <= samp; i++ ) {
|
|
|
|
nx = cx + lengthdir_x(rx, 360 / samp * i);
|
|
|
|
ny = cy + lengthdir_y(ry, 360 / samp * i);
|
|
|
|
|
|
|
|
if(i) draw_line_size(ox, oy, nx, ny, _siz, _brush);
|
|
|
|
|
|
|
|
ox = nx;
|
|
|
|
oy = ny;
|
|
|
|
}
|
|
|
|
}
|
2023-07-14 20:34:35 +02:00
|
|
|
} #endregion
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
function get_color_buffer(_x, _y) { #region
|
2023-02-14 05:32:32 +01:00
|
|
|
var pos = (surface_w * _y + _x) * 4;
|
2023-07-14 20:34:35 +02:00
|
|
|
if(pos > buffer_get_size(canvas_buffer)) {
|
|
|
|
print("Error buffer overflow " + string(pos) + "/" + string(buffer_get_size(canvas_buffer)));
|
2023-02-14 05:32:32 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
buffer_seek(canvas_buffer, buffer_seek_start, pos);
|
|
|
|
var c = buffer_read(canvas_buffer, buffer_u32);
|
2022-01-13 05:24:03 +01:00
|
|
|
|
|
|
|
return c;
|
2023-07-14 20:34:35 +02:00
|
|
|
} #endregion
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
function ff_fillable(colorBase, colorFill, _x, _y, _thres) { #region
|
2023-03-02 07:59:14 +01:00
|
|
|
var d = color_diff(colorBase, get_color_buffer(_x, _y), true);
|
2023-02-14 05:32:32 +01:00
|
|
|
return d <= _thres && d != colorFill;
|
2023-07-14 20:34:35 +02:00
|
|
|
} #endregion
|
2023-02-14 05:32:32 +01:00
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
function flood_fill_scanline(_x, _y, _surf, _thres, _corner = false) { #region
|
2023-06-24 22:12:35 +02:00
|
|
|
var _alp = inputs[| 11].getValue();
|
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
var colorFill = draw_get_color() + (255 << 24);
|
|
|
|
var colorBase = get_color_buffer(_x, _y);
|
|
|
|
|
|
|
|
if(colorFill == colorBase) return;
|
2022-01-13 05:24:03 +01:00
|
|
|
|
|
|
|
var x1, y1, x_start;
|
|
|
|
var spanAbove, spanBelow;
|
2023-03-02 07:59:14 +01:00
|
|
|
var thr = _thres * _thres;
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
var queue = ds_queue_create();
|
|
|
|
ds_queue_enqueue(queue, [_x, _y]);
|
|
|
|
|
|
|
|
while(!ds_queue_empty(queue)) {
|
|
|
|
var pos = ds_queue_dequeue(queue);
|
2022-01-13 05:24:03 +01:00
|
|
|
x1 = pos[0];
|
|
|
|
y1 = pos[1];
|
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
var colorCurr = get_color_buffer(x1, y1);
|
|
|
|
//print("Searching " + string(x1) + ", " + string(y1) + ": " + string(colorCurr));
|
|
|
|
|
|
|
|
if(colorCurr == colorFill) continue; //Color in queue already filled
|
|
|
|
|
2023-03-02 07:59:14 +01:00
|
|
|
while(x1 >= 0 && ff_fillable(colorBase, colorFill, x1, y1, thr)) //Shift left
|
2022-01-13 05:24:03 +01:00
|
|
|
x1--;
|
|
|
|
|
|
|
|
x1++;
|
|
|
|
x_start = x1;
|
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
spanAbove = false;
|
|
|
|
spanBelow = false;
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-03-02 07:59:14 +01:00
|
|
|
while(x1 < surface_w && ff_fillable(colorBase, colorFill, x1, y1, thr)) {
|
2023-06-24 22:12:35 +02:00
|
|
|
draw_set_alpha(_alp);
|
2022-01-13 05:24:03 +01:00
|
|
|
draw_point(x1, y1);
|
2023-03-11 01:40:17 +01:00
|
|
|
draw_set_alpha(1);
|
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
buffer_seek(canvas_buffer, buffer_seek_start, (surface_w * y1 + x1) * 4);
|
|
|
|
buffer_write(canvas_buffer, buffer_u32, colorFill);
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
//print("> Filling " + string(x1) + ", " + string(y1) + ": " + string(get_color_buffer(x1, y1)));
|
|
|
|
|
2022-01-13 05:24:03 +01:00
|
|
|
if(y1 > 0) {
|
|
|
|
if(x1 == x_start && x1 > 0 && _corner) {
|
2023-03-02 07:59:14 +01:00
|
|
|
if(!spanAbove && ff_fillable(colorBase, colorFill, x1 - 1, y1 - 1, thr)) {
|
2023-02-14 05:32:32 +01:00
|
|
|
ds_queue_enqueue(queue, [x1 - 1, y1 - 1]);
|
|
|
|
spanAbove = true;
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-02 07:59:14 +01:00
|
|
|
if(ff_fillable(colorBase, colorFill, x1, y1 - 1, thr)) {
|
2023-02-14 05:32:32 +01:00
|
|
|
ds_queue_enqueue(queue, [x1, y1 - 1]);
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
if(y1 < surface_h - 1) {
|
2022-01-13 05:24:03 +01:00
|
|
|
if(x1 == x_start && x1 > 0 && _corner) {
|
2023-03-02 07:59:14 +01:00
|
|
|
if(!spanBelow && ff_fillable(colorBase, colorFill, x1 - 1, y1 + 1, thr)) {
|
2023-02-14 05:32:32 +01:00
|
|
|
ds_queue_enqueue(queue, [x1 - 1, y1 + 1]);
|
|
|
|
spanBelow = true;
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-02 07:59:14 +01:00
|
|
|
if(ff_fillable(colorBase, colorFill, x1, y1 + 1, thr)) {
|
2023-02-14 05:32:32 +01:00
|
|
|
ds_queue_enqueue(queue, [x1, y1 + 1]);
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
x1++;
|
|
|
|
}
|
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
if(x1 < surface_w - 1 && _corner) {
|
|
|
|
if(y1 > 0) {
|
2023-03-02 07:59:14 +01:00
|
|
|
if(!spanAbove && ff_fillable(colorBase, colorFill, x1 + 1, y1 - 1, thr)) {
|
2023-02-14 05:32:32 +01:00
|
|
|
ds_queue_enqueue(queue, [x1 + 1, y1 - 1]);
|
|
|
|
spanAbove = true;
|
|
|
|
}
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
if(y1 < surface_h - 1) {
|
2023-03-02 07:59:14 +01:00
|
|
|
if(!spanBelow && ff_fillable(colorBase, colorFill, x1 + 1, y1 + 1, thr)) {
|
2023-02-14 05:32:32 +01:00
|
|
|
ds_queue_enqueue(queue, [x1 + 1, y1 + 1]);
|
|
|
|
spanBelow = true;
|
|
|
|
}
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-07-14 20:34:35 +02:00
|
|
|
} #endregion
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
function canvas_fill(_x, _y, _surf, _thres) { #region
|
2023-06-24 22:12:35 +02:00
|
|
|
var _alp = inputs[| 11].getValue();
|
|
|
|
|
2022-01-13 05:24:03 +01:00
|
|
|
var w = surface_get_width(_surf);
|
|
|
|
var h = surface_get_height(_surf);
|
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
var _c1 = get_color_buffer(_x, _y);
|
2023-03-02 07:59:14 +01:00
|
|
|
var thr = _thres * _thres;
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-06-24 22:12:35 +02:00
|
|
|
draw_set_alpha(_alp);
|
2022-01-13 05:24:03 +01:00
|
|
|
for( var i = 0; i < w; i++ ) {
|
|
|
|
for( var j = 0; j < h; j++ ) {
|
|
|
|
if(i == _x && j == _y) {
|
|
|
|
draw_point(i, j);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
var _c2 = get_color_buffer(i, j);
|
2023-03-02 07:59:14 +01:00
|
|
|
if(color_diff(_c1, _c2, true) <= thr)
|
2022-01-13 05:24:03 +01:00
|
|
|
draw_point(i, j);
|
|
|
|
}
|
2023-03-11 01:40:17 +01:00
|
|
|
}
|
|
|
|
draw_set_alpha(1);
|
2023-07-14 20:34:35 +02:00
|
|
|
} #endregion
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
mouse_cur_x = 0;
|
|
|
|
mouse_cur_y = 0;
|
|
|
|
mouse_pre_x = 0;
|
|
|
|
mouse_pre_y = 0;
|
|
|
|
mouse_pre_draw_x = 0;
|
|
|
|
mouse_pre_draw_y = 0;
|
|
|
|
|
|
|
|
mouse_holding = false;
|
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
//static getPreviewValue = function() { return key_mod_press(ALT)? outputs[| 0] : noone; }
|
|
|
|
|
2022-12-19 13:35:30 +01:00
|
|
|
static drawOverlay = function(active, _x, _y, _s, _mx, _my, _snx, _sny) {
|
2023-03-02 07:59:14 +01:00
|
|
|
mouse_cur_x = round((_mx - _x) / _s - 0.5);
|
|
|
|
mouse_cur_y = round((_my - _y) / _s - 0.5);
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
var _dim = inputs[| 0].getValue();
|
2022-01-13 05:24:03 +01:00
|
|
|
var _col = inputs[| 1].getValue();
|
|
|
|
var _siz = inputs[| 2].getValue();
|
|
|
|
var _thr = inputs[| 3].getValue();
|
|
|
|
var _fill_type = inputs[| 4].getValue();
|
|
|
|
var _prev = inputs[| 5].getValue();
|
|
|
|
var _brush = inputs[| 6].getValue();
|
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
if(!surface_exists(canvas_surface))
|
2023-07-14 20:34:35 +02:00
|
|
|
surface_store_buffer();
|
2023-02-14 05:32:32 +01:00
|
|
|
|
|
|
|
var _surf_w = surface_get_width(canvas_surface);
|
|
|
|
var _surf_h = surface_get_height(canvas_surface);
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-07-15 20:01:29 +02:00
|
|
|
if(!isUsingTool("Selection") && is_surface(selection_surface)) {
|
|
|
|
var pos_x = selection_position[0];
|
|
|
|
var pos_y = selection_position[1];
|
|
|
|
|
|
|
|
surface_set_target(canvas_surface);
|
|
|
|
BLEND_ALPHA
|
|
|
|
draw_surface(selection_surface, pos_x, pos_y);
|
|
|
|
BLEND_NORMAL
|
|
|
|
surface_reset_target();
|
|
|
|
|
|
|
|
surface_store_buffer();
|
|
|
|
surface_free(selection_surface);
|
|
|
|
}
|
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
surface_set_target(canvas_surface);
|
2022-01-13 05:24:03 +01:00
|
|
|
draw_set_color(_col);
|
|
|
|
|
2023-07-15 20:01:29 +02:00
|
|
|
if(!isUsingTool("Selection"))
|
|
|
|
gpu_set_colorwriteenable(tool_attribute.channel[0], tool_attribute.channel[1], tool_attribute.channel[2], tool_attribute.channel[3]);
|
|
|
|
|
|
|
|
if(isUsingTool("Selection")) {
|
|
|
|
if(is_selected) {
|
|
|
|
if(!is_surface(selection_surface)) {
|
|
|
|
is_selected = false;
|
|
|
|
} else {
|
|
|
|
if(is_select_drag) {
|
|
|
|
var px = selection_sx + (mouse_cur_x - selection_mx);
|
|
|
|
var py = selection_sy + (mouse_cur_y - selection_my);
|
|
|
|
|
|
|
|
selection_position[0] = px;
|
|
|
|
selection_position[1] = py;
|
|
|
|
|
|
|
|
if(mouse_release(mb_left))
|
|
|
|
is_select_drag = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(mouse_press(mb_left, active)) {
|
|
|
|
var pos_x = selection_position[0];
|
|
|
|
var pos_y = selection_position[1];
|
|
|
|
var sel_w = surface_get_width(selection_surface);
|
|
|
|
var sel_h = surface_get_height(selection_surface);
|
|
|
|
|
|
|
|
if(point_in_rectangle(mouse_cur_x, mouse_cur_y, pos_x, pos_y, pos_x + sel_w, pos_y + sel_h)) {
|
|
|
|
is_select_drag = true;
|
|
|
|
selection_sx = pos_x;
|
|
|
|
selection_sy = pos_y;
|
|
|
|
selection_mx = mouse_cur_x;
|
|
|
|
selection_my = mouse_cur_y;
|
|
|
|
} else {
|
|
|
|
is_selected = false;
|
|
|
|
|
|
|
|
surface_set_target(canvas_surface);
|
|
|
|
BLEND_ALPHA
|
|
|
|
draw_surface(selection_surface, pos_x, pos_y);
|
|
|
|
BLEND_NORMAL
|
|
|
|
surface_reset_target();
|
|
|
|
|
|
|
|
surface_store_buffer();
|
|
|
|
surface_free(selection_surface);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!is_selected) {
|
|
|
|
if(is_selecting) {
|
|
|
|
var sel_x0 = min(selection_sx, mouse_cur_x);
|
|
|
|
var sel_y0 = min(selection_sy, mouse_cur_y);
|
|
|
|
var sel_x1 = max(selection_sx, mouse_cur_x);
|
|
|
|
var sel_y1 = max(selection_sy, mouse_cur_y);
|
|
|
|
|
|
|
|
var sel_w = sel_x1 - sel_x0 + 1;
|
|
|
|
var sel_h = sel_y1 - sel_y0 + 1;
|
|
|
|
|
|
|
|
selection_mask = surface_verify(selection_mask, sel_w, sel_h);
|
|
|
|
surface_set_target(selection_mask);
|
|
|
|
DRAW_CLEAR
|
|
|
|
draw_set_color(c_white);
|
|
|
|
if(isUsingTool("Selection", 0))
|
|
|
|
draw_rectangle(0, 0, sel_w, sel_h, false);
|
|
|
|
else if(isUsingTool("Selection", 1))
|
|
|
|
draw_ellipse(0, 0, sel_w - 1, sel_h - 1, false);
|
|
|
|
surface_reset_target();
|
|
|
|
|
|
|
|
if(mouse_release(mb_left)) {
|
|
|
|
is_selecting = false;
|
|
|
|
|
|
|
|
if(sel_x0 != sel_x1 && sel_y0 != sel_y1) {
|
|
|
|
is_selected = true;
|
|
|
|
|
|
|
|
selection_surface = surface_create(sel_w, sel_h);
|
|
|
|
|
|
|
|
surface_set_target(selection_surface);
|
|
|
|
DRAW_CLEAR
|
|
|
|
draw_surface(canvas_surface, -sel_x0, -sel_y0);
|
|
|
|
|
|
|
|
BLEND_MULTIPLY
|
|
|
|
draw_surface(selection_mask, 0, 0);
|
|
|
|
BLEND_NORMAL
|
|
|
|
surface_reset_target();
|
|
|
|
|
|
|
|
surface_set_target(canvas_surface);
|
|
|
|
gpu_set_blendmode(bm_subtract);
|
|
|
|
draw_surface(selection_surface, sel_x0, sel_y0);
|
|
|
|
gpu_set_blendmode(bm_normal);
|
|
|
|
surface_reset_target();
|
|
|
|
|
|
|
|
surface_store_buffer();
|
|
|
|
|
|
|
|
selection_position = [ sel_x0, sel_y0 ];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(mouse_press(mb_left, active)) {
|
|
|
|
is_selecting = true;
|
|
|
|
selection_sx = mouse_cur_x;
|
|
|
|
selection_sy = mouse_cur_y;
|
|
|
|
|
|
|
|
surface_free_safe(selection_mask);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if(isUsingTool("Pencil") || isUsingTool("Eraser")) {
|
2023-03-11 01:40:17 +01:00
|
|
|
if(key_mod_press(SHIFT) && key_mod_press(CTRL)) {
|
|
|
|
var aa = point_direction(mouse_pre_draw_x, mouse_pre_draw_y, mouse_cur_x, mouse_cur_y);
|
|
|
|
var dd = point_distance(mouse_pre_draw_x, mouse_pre_draw_y, mouse_cur_x, mouse_cur_y);
|
|
|
|
var _a = round(aa / 45) * 45;
|
|
|
|
dd = dd * cos(degtorad(_a - aa));
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-03-11 01:40:17 +01:00
|
|
|
mouse_cur_x = mouse_pre_draw_x + lengthdir_x(dd, _a);
|
|
|
|
mouse_cur_y = mouse_pre_draw_y + lengthdir_y(dd, _a);
|
|
|
|
}
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-03-11 01:40:17 +01:00
|
|
|
if(mouse_press(mb_left, active)) {
|
2023-03-19 09:17:39 +01:00
|
|
|
drawing_surface = surface_verify(drawing_surface, _dim[0], _dim[1], attrDepth());
|
2023-07-14 20:34:35 +02:00
|
|
|
|
|
|
|
surface_set_shader(drawing_surface, noone);
|
2023-02-14 05:32:32 +01:00
|
|
|
draw_point_size(mouse_cur_x, mouse_cur_y, _siz, _brush);
|
2023-07-14 20:34:35 +02:00
|
|
|
surface_reset_shader();
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-03-11 01:40:17 +01:00
|
|
|
mouse_holding = true;
|
|
|
|
if(key_mod_press(SHIFT)) {
|
2023-07-14 20:34:35 +02:00
|
|
|
surface_set_shader(drawing_surface, noone, true, BLEND.alpha);
|
|
|
|
//print($"===== DRAW LINE {mouse_pre_draw_x}, {mouse_pre_draw_y}, {mouse_cur_x}, {mouse_cur_y} =====");
|
2023-03-02 07:59:14 +01:00
|
|
|
draw_line_size(mouse_pre_draw_x, mouse_pre_draw_y, mouse_cur_x, mouse_cur_y, _siz, _brush);
|
2023-07-14 20:34:35 +02:00
|
|
|
//print($"===== DRAW LINE END =====");
|
|
|
|
surface_reset_shader();
|
2023-03-11 01:40:17 +01:00
|
|
|
mouse_holding = false;
|
|
|
|
|
|
|
|
apply_draw_surface();
|
2023-03-02 07:59:14 +01:00
|
|
|
}
|
2023-03-11 01:40:17 +01:00
|
|
|
|
|
|
|
mouse_pre_draw_x = mouse_cur_x;
|
|
|
|
mouse_pre_draw_y = mouse_cur_y;
|
|
|
|
}
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-03-11 01:40:17 +01:00
|
|
|
if(mouse_holding && mouse_click(mb_left, active)) {
|
|
|
|
if(mouse_pre_draw_x != mouse_cur_x || mouse_pre_draw_y != mouse_cur_y) {
|
2023-07-14 20:34:35 +02:00
|
|
|
surface_set_shader(drawing_surface, noone, false, BLEND.alpha);
|
2023-03-02 07:59:14 +01:00
|
|
|
draw_point_size(mouse_cur_x, mouse_cur_y, _siz, _brush);
|
|
|
|
draw_line_size(mouse_pre_draw_x, mouse_pre_draw_y, mouse_cur_x, mouse_cur_y, _siz, _brush);
|
2023-07-14 20:34:35 +02:00
|
|
|
surface_reset_shader();
|
2023-03-02 07:59:14 +01:00
|
|
|
}
|
2023-03-11 01:40:17 +01:00
|
|
|
|
|
|
|
mouse_pre_draw_x = mouse_cur_x;
|
|
|
|
mouse_pre_draw_y = mouse_cur_y;
|
|
|
|
}
|
2023-02-14 05:32:32 +01:00
|
|
|
|
2023-03-11 01:40:17 +01:00
|
|
|
if(mouse_holding && mouse_release(mb_left)) {
|
|
|
|
mouse_holding = false;
|
|
|
|
apply_draw_surface();
|
|
|
|
}
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-03-11 01:40:17 +01:00
|
|
|
BLEND_NORMAL;
|
2023-02-14 05:32:32 +01:00
|
|
|
|
2023-03-11 01:40:17 +01:00
|
|
|
mouse_pre_x = mouse_cur_x;
|
|
|
|
mouse_pre_y = mouse_cur_y;
|
|
|
|
|
2023-07-15 20:01:29 +02:00
|
|
|
} else if(isUsingTool("Rectangle") || isUsingTool("Ellipse")) {
|
2023-03-11 01:40:17 +01:00
|
|
|
if(mouse_holding && key_mod_press(SHIFT)) {
|
|
|
|
var ww = mouse_cur_x - mouse_pre_x;
|
|
|
|
var hh = mouse_cur_y - mouse_pre_y;
|
|
|
|
var ss = max(abs(ww), abs(hh));
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-03-11 01:40:17 +01:00
|
|
|
mouse_cur_x = mouse_pre_x + ss * sign(ww);
|
|
|
|
mouse_cur_y = mouse_pre_y + ss * sign(hh);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(mouse_press(mb_left, active)) {
|
2022-01-13 05:24:03 +01:00
|
|
|
mouse_pre_x = mouse_cur_x;
|
|
|
|
mouse_pre_y = mouse_cur_y;
|
|
|
|
|
2023-03-11 01:40:17 +01:00
|
|
|
mouse_holding = true;
|
|
|
|
}
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
if(mouse_holding) {
|
|
|
|
drawing_surface = surface_verify(drawing_surface, _dim[0], _dim[1], attrDepth());
|
|
|
|
|
|
|
|
surface_set_shader(drawing_surface, noone);
|
2023-07-15 20:01:29 +02:00
|
|
|
if(isUsingTool("Rectangle"))
|
|
|
|
draw_rect_size(mouse_pre_x, mouse_pre_y, mouse_cur_x, mouse_cur_y, _siz, isUsingTool("Rectangle", 1), _brush);
|
|
|
|
else if(isUsingTool("Ellipse"))
|
|
|
|
draw_ellp_size(mouse_pre_x, mouse_pre_y, mouse_cur_x, mouse_cur_y, _siz, isUsingTool("Ellipse", 1), _brush);
|
2023-07-14 20:34:35 +02:00
|
|
|
surface_reset_shader();
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
if(mouse_release(mb_left)) {
|
|
|
|
apply_draw_surface();
|
|
|
|
mouse_holding = false;
|
|
|
|
}
|
2023-03-11 01:40:17 +01:00
|
|
|
}
|
2023-07-15 20:01:29 +02:00
|
|
|
} else if(isUsingTool("Fill") || (DRAGGING && DRAGGING.type == "Color")) {
|
2023-03-28 06:58:28 +02:00
|
|
|
if(point_in_rectangle(mouse_cur_x, mouse_cur_y, 0, 0, _surf_w - 1, _surf_h - 1)) {
|
|
|
|
var fill = DRAGGING? mouse_release(mb_left) : mouse_press(mb_left);
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-03-28 06:58:28 +02:00
|
|
|
if(fill) {
|
|
|
|
if(DRAGGING) draw_set_color(DRAGGING.data);
|
|
|
|
switch(_fill_type) {
|
|
|
|
case 0 :
|
|
|
|
flood_fill_scanline(mouse_cur_x, mouse_cur_y, canvas_surface, _thr, false);
|
|
|
|
break;
|
|
|
|
case 1 :
|
|
|
|
flood_fill_scanline(mouse_cur_x, mouse_cur_y, canvas_surface, _thr, true);
|
|
|
|
break;
|
|
|
|
case 2 :
|
|
|
|
canvas_fill(mouse_cur_x, mouse_cur_y, canvas_surface, _thr);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
surface_store_buffer();
|
|
|
|
}
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-11 01:40:17 +01:00
|
|
|
draw_set_alpha(1);
|
|
|
|
gpu_set_colorwriteenable(true, true, true, true);
|
2022-01-13 05:24:03 +01:00
|
|
|
surface_reset_target();
|
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
if(key_mod_press(ALT)) return;
|
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
#region preview
|
2023-06-24 22:12:35 +02:00
|
|
|
var _bg = inputs[| 8].getValue();
|
|
|
|
var _bga = inputs[| 9].getValue();
|
2023-07-14 20:34:35 +02:00
|
|
|
var _bgr = inputs[| 10].getValue();
|
2023-06-24 22:12:35 +02:00
|
|
|
var _alp = inputs[| 11].getValue();
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
var __s = surface_get_target();
|
2023-02-14 05:32:32 +01:00
|
|
|
|
2023-07-18 17:51:40 +02:00
|
|
|
prev_surface = surface_verify(prev_surface, _dim[0], _dim[1]);
|
2023-07-14 20:34:35 +02:00
|
|
|
preview_draw_surface = surface_verify(preview_draw_surface, _dim[0], _dim[1]);
|
|
|
|
_preview_draw_surface = surface_verify(_preview_draw_surface, surface_get_width(__s), surface_get_height(__s));
|
2023-02-14 05:32:32 +01:00
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
surface_set_shader(preview_draw_surface, noone,, BLEND.alpha);
|
|
|
|
draw_surface_safe(drawing_surface, 0, 0);
|
|
|
|
|
|
|
|
draw_set_color(_col);
|
2023-07-15 20:01:29 +02:00
|
|
|
if(isUsingTool("Selection")) {
|
|
|
|
if(is_selected)
|
|
|
|
draw_surface(selection_surface, selection_position[0], selection_position[1]);
|
|
|
|
else if(is_selecting) {
|
|
|
|
var sel_x0 = min(selection_sx, mouse_cur_x);
|
|
|
|
var sel_y0 = min(selection_sy, mouse_cur_y);
|
|
|
|
draw_surface_safe(selection_mask, sel_x0, sel_y0);
|
|
|
|
}
|
|
|
|
} else if(isUsingTool("Pencil") || isUsingTool("Eraser")) {
|
2023-07-18 17:51:40 +02:00
|
|
|
if(mouse_holding) {
|
|
|
|
if(isUsingTool("Eraser")) draw_set_color(c_white);
|
2023-07-14 20:34:35 +02:00
|
|
|
|
2023-07-18 17:51:40 +02:00
|
|
|
if(key_mod_press(SHIFT)) draw_line_size(mouse_pre_draw_x, mouse_pre_draw_y, mouse_cur_x, mouse_cur_y, _siz, _brush);
|
|
|
|
else draw_point_size(mouse_cur_x, mouse_cur_y, _siz, _brush);
|
|
|
|
}
|
2023-07-15 20:01:29 +02:00
|
|
|
} else if(isUsingTool("Rectangle")) {
|
2023-07-18 17:51:40 +02:00
|
|
|
if(mouse_holding) draw_rect_size(mouse_pre_x, mouse_pre_y, mouse_cur_x, mouse_cur_y, _siz, isUsingTool("Rectangle", 1), _brush);
|
2023-07-15 20:01:29 +02:00
|
|
|
} else if(isUsingTool("Ellipse")) {
|
2023-07-18 17:51:40 +02:00
|
|
|
if(mouse_holding) draw_ellp_size(mouse_pre_x, mouse_pre_y, mouse_cur_x, mouse_cur_y, _siz, isUsingTool("Ellipse", 1), _brush);
|
2023-07-14 20:34:35 +02:00
|
|
|
}
|
|
|
|
surface_reset_shader();
|
2023-03-11 01:40:17 +01:00
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
if(_bgr && is_surface(_bg))
|
|
|
|
draw_surface_ext(_bg, _x, _y, _s, _s, 0, c_white, _bga);
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-07-15 20:01:29 +02:00
|
|
|
if(!isNotUsingTool()) {
|
|
|
|
if(isUsingTool("Selection")) {
|
|
|
|
if(is_selected) {
|
|
|
|
var pos_x = _x + selection_position[0] * _s;
|
|
|
|
var pos_y = _y + selection_position[1] * _s;
|
|
|
|
var sel_w = surface_get_width(selection_surface) * _s;
|
|
|
|
var sel_h = surface_get_height(selection_surface) * _s;
|
|
|
|
|
|
|
|
draw_set_color(c_white);
|
|
|
|
draw_rectangle_dashed(pos_x, pos_y, pos_x + sel_w, pos_y + sel_h, true, 4);
|
|
|
|
|
|
|
|
draw_surface_ext(selection_surface, pos_x, pos_y, _s, _s, 0, c_white, 1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
gpu_set_colorwriteenable(tool_attribute.channel[0], tool_attribute.channel[1], tool_attribute.channel[2], tool_attribute.channel[3]);
|
|
|
|
draw_surface_ext_safe(preview_draw_surface, _x, _y, _s, _s, 0, isUsingTool("Eraser")? c_red : c_white, isUsingTool("Eraser")? 0.2 : _alp);
|
|
|
|
gpu_set_colorwriteenable(true, true, true, true);
|
|
|
|
}
|
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
surface_set_target(_preview_draw_surface);
|
|
|
|
DRAW_CLEAR
|
|
|
|
draw_surface_ext(preview_draw_surface, _x, _y, _s, _s, 0, c_white, 1);
|
|
|
|
surface_reset_target();
|
2022-09-21 06:09:40 +02:00
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
shader_set(sh_brush_outline);
|
|
|
|
shader_set_f("dimension", surface_get_width(_preview_draw_surface), surface_get_height(_preview_draw_surface));
|
|
|
|
draw_surface_ext(_preview_draw_surface, 0, 0, 1, 1, 0, c_white, 1);
|
|
|
|
shader_reset();
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
|
2023-07-14 20:34:35 +02:00
|
|
|
var _x0 = _x;
|
|
|
|
var _y0 = _y;
|
|
|
|
var _x1 = _x0 + _dim[0] * _s;
|
|
|
|
var _y1 = _y0 + _dim[1] * _s;
|
|
|
|
|
|
|
|
draw_set_color(COLORS.panel_preview_surface_outline);
|
|
|
|
draw_rectangle(_x0, _y0, _x1 - 1, _y1 - 1, true);
|
|
|
|
|
|
|
|
previewing = 1;
|
2023-02-14 05:32:32 +01:00
|
|
|
}
|
|
|
|
|
2023-07-06 19:49:16 +02:00
|
|
|
static update = function(frame = PROJECT.animator.current_frame) {
|
2023-07-14 20:34:35 +02:00
|
|
|
var _dim = inputs[| 0].getValue();
|
|
|
|
var _bg = inputs[| 8].getValue();
|
|
|
|
var _bga = inputs[| 9].getValue();
|
|
|
|
var _bgr = inputs[| 10].getValue();
|
|
|
|
|
|
|
|
var cDep = attrDepth();
|
2023-02-14 05:32:32 +01:00
|
|
|
apply_surface();
|
2023-07-14 20:34:35 +02:00
|
|
|
|
|
|
|
var _outSurf = outputs[| 0].getValue();
|
|
|
|
_outSurf = surface_verify(_outSurf, _dim[0], _dim[1], cDep);
|
|
|
|
|
|
|
|
surface_set_shader(_outSurf, noone,, BLEND.alpha);
|
|
|
|
if(_bgr && is_surface(_bg))
|
|
|
|
draw_surface_stretched_ext(_bg, 0, 0, _dim[0], _dim[1], c_white, _bga);
|
|
|
|
draw_surface_safe(canvas_surface, 0, 0);
|
|
|
|
surface_reset_shader();
|
|
|
|
|
|
|
|
outputs[| 0].setValue(_outSurf);
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static doSerialize = function(_map) {
|
2023-03-13 10:45:56 +01:00
|
|
|
surface_store_buffer();
|
2023-07-14 20:34:35 +02:00
|
|
|
var comp = buffer_compress(canvas_buffer, 0, buffer_get_size(canvas_buffer));
|
2023-03-13 10:45:56 +01:00
|
|
|
var enc = buffer_base64_encode(comp, 0, buffer_get_size(comp));
|
|
|
|
|
2023-06-19 20:28:30 +02:00
|
|
|
_map.surface = enc;
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|
|
|
|
|
2023-03-13 10:45:56 +01:00
|
|
|
static doApplyDeserialize = function() {
|
2023-06-13 14:42:06 +02:00
|
|
|
if(!struct_has(load_map, "surface")) return;
|
|
|
|
var buff = buffer_base64_decode(load_map.surface);
|
2023-07-14 20:34:35 +02:00
|
|
|
canvas_buffer = buffer_decompress(buff);
|
2023-02-14 05:32:32 +01:00
|
|
|
|
2023-03-13 10:45:56 +01:00
|
|
|
var _dim = inputs[| 0].getValue();
|
|
|
|
var _outSurf = outputs[| 0].getValue();
|
2023-03-19 09:17:39 +01:00
|
|
|
_outSurf = surface_verify(_outSurf, _dim[0], _dim[1], attrDepth());
|
2023-07-14 20:34:35 +02:00
|
|
|
canvas_surface = surface_create_from_buffer(_dim[0], _dim[1], canvas_buffer);
|
2023-03-13 10:45:56 +01:00
|
|
|
|
|
|
|
apply_surface();
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|
2023-02-23 07:02:19 +01:00
|
|
|
|
|
|
|
static onCleanUp = function() {
|
|
|
|
surface_free(canvas_surface);
|
|
|
|
}
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|