Pixel-Composer/scripts/node_mirror/node_mirror.gml

66 lines
2 KiB
Text
Raw Normal View History

2023-02-28 15:43:01 +07:00
function Node_Mirror(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
2022-01-13 11:24:03 +07:00
name = "Mirror";
batch_output = false;
2022-01-13 11:24:03 +07:00
2024-08-18 11:16:20 +07:00
newInput(0, nodeValue_Surface("Surface in", self));
2023-02-14 11:32:32 +07:00
2024-08-18 14:13:41 +07:00
newInput(1, nodeValue_Vec2("Position", self, [ 0.5, 0.5 ]))
2023-12-15 18:56:36 +07:00
.setUnitRef(function(index) { return getDimension(index); }, VALUE_UNIT.reference);
2022-01-13 11:24:03 +07:00
2024-08-18 11:16:20 +07:00
newInput(2, nodeValue_Rotation("Angle", self, 0));
2022-01-13 11:24:03 +07:00
2024-08-18 11:16:20 +07:00
newInput(3, nodeValue_Bool("Active", self, true));
2023-02-14 11:32:32 +07:00
active_index = 3;
2024-01-20 11:06:56 +07:00
2024-09-04 08:57:11 +07:00
newOutput(0, nodeValue_Output("Surface out", self, VALUE_TYPE.surface, noone));
2023-02-14 11:32:32 +07:00
2024-09-04 08:57:11 +07:00
newOutput(1, nodeValue_Output("Mirror mask", self, VALUE_TYPE.surface, noone));
2022-01-13 11:24:03 +07:00
2023-02-14 11:32:32 +07:00
input_display_list = [ 3,
["Surfaces", false], 0,
2023-02-14 11:32:32 +07:00
["Mirror", false], 1, 2,
]
2023-01-17 14:11:55 +07:00
2023-03-19 15:17:39 +07:00
attribute_surface_depth();
2024-03-14 20:35:19 +07:00
static drawOverlay = function(hover, active, _x, _y, _s, _mx, _my, _snx, _sny) { #region
PROCESSOR_OVERLAY_CHECK
var _pos = current_data[1];
var _ang = current_data[2];
2022-01-13 11:24:03 +07:00
var _posx = _pos[0] * _s + _x;
var _posy = _pos[1] * _s + _y;
var dx0 = _posx + lengthdir_x(1000, _ang);
var dx1 = _posx + lengthdir_x(1000, _ang + 180);
var dy0 = _posy + lengthdir_y(1000, _ang);
var dy1 = _posy + lengthdir_y(1000, _ang + 180);
2022-11-18 09:20:31 +07:00
draw_set_color(COLORS._main_accent);
2022-01-13 11:24:03 +07:00
draw_line(dx0, dy0, dx1, dy1);
2024-07-02 17:18:32 +07:00
var _hov = false;
2024-08-08 11:57:51 +07:00
var hv = inputs[1].drawOverlay(hover, active, _x, _y, _s, _mx, _my, _snx, _sny); active &= !hv; _hov |= hv;
var hv = inputs[2].drawOverlay(hover, active, _posx, _posy, _s, _mx, _my, _snx, _sny); active &= !hv; _hov |= hv;
2024-07-02 17:18:32 +07:00
return _hov;
2024-01-20 11:06:56 +07:00
} #endregion
2022-01-13 11:24:03 +07:00
2024-01-20 11:06:56 +07:00
static processData = function(_outSurf, _data, _output_index, _array_index) { #region
var _suf = _data[0];
2022-01-13 11:24:03 +07:00
var _pos = _data[1];
var _ang = _data[2];
2024-01-20 11:06:56 +07:00
var _dim = surface_get_dimension(_suf);
surface_set_shader(_outSurf, _output_index? sh_mirror_mask : sh_mirror);
shader_set_f("dimension", _dim);
2024-06-24 18:49:54 +07:00
shader_set_2("position", _pos);
2024-01-20 11:06:56 +07:00
shader_set_f("angle", degtorad(_ang));
2022-01-13 11:24:03 +07:00
2024-01-20 11:06:56 +07:00
draw_surface_safe(_suf);
surface_reset_shader();
2022-01-13 11:24:03 +07:00
return _outSurf;
2024-01-20 11:06:56 +07:00
} #endregion
2022-01-13 11:24:03 +07:00
}