Pixel-Composer/scripts/node_skew/node_skew.gml

73 lines
2.8 KiB
Plaintext
Raw Normal View History

2023-02-28 09:43:01 +01:00
function Node_Skew(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
2022-12-13 14:11:39 +01:00
name = "Skew";
2023-02-14 05:32:32 +01:00
inputs[| 0] = nodeValue("Surface in", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, 0);
inputs[| 1] = nodeValue("Axis", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0)
2022-12-13 14:11:39 +01:00
.setDisplay(VALUE_DISPLAY.enum_button, ["x", "y"]);
2023-02-14 05:32:32 +01:00
inputs[| 2] = nodeValue("Amount", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0)
.setDisplay(VALUE_DISPLAY.slider, { range: [-1, 1, 0.01] });
2022-12-13 14:11:39 +01:00
2023-02-14 05:32:32 +01:00
inputs[| 3] = nodeValue("Wrap", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, false);
2022-12-13 14:11:39 +01:00
2023-02-14 05:32:32 +01:00
inputs[| 4] = nodeValue("Center", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, [0, 0] )
.setDisplay(VALUE_DISPLAY.vector, { side_button : button(function() { centerAnchor(); })
.setIcon(THEME.anchor)
.setTooltip(__txt("Set to center")) });
2022-12-13 14:11:39 +01:00
2023-02-14 05:32:32 +01:00
inputs[| 5] = nodeValue("Oversample mode", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0, "How to deal with pixel outside the surface.\n - Empty: Use empty pixel\n - Clamp: Repeat edge pixel\n - Repeat: Repeat texture.")
2022-12-27 04:00:50 +01:00
.setDisplay(VALUE_DISPLAY.enum_scroll, [ "Empty", "Clamp", "Repeat" ]);
2023-02-14 05:32:32 +01:00
inputs[| 6] = nodeValue("Mask", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, 0);
inputs[| 7] = nodeValue("Mix", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 1)
.setDisplay(VALUE_DISPLAY.slider);
2023-02-14 05:32:32 +01:00
inputs[| 8] = nodeValue("Active", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, true);
active_index = 8;
input_display_list = [ 8,
2023-05-03 21:42:17 +02:00
["Output", true], 0, 6, 7,
2023-01-01 02:06:02 +01:00
["Skew", false], 1, 2, 4,
2022-12-13 14:11:39 +01:00
]
2023-02-14 05:32:32 +01:00
outputs[| 0] = nodeValue("Surface out", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, noone);
2022-12-13 14:11:39 +01:00
2023-03-19 09:17:39 +01:00
attribute_surface_depth();
2023-03-21 03:01:53 +01:00
attribute_oversample();
attribute_interpolation();
2022-12-13 14:11:39 +01:00
static centerAnchor = function() {
if(!is_surface(current_data[0])) return;
2023-09-08 21:37:36 +02:00
var ww = surface_get_width_safe(current_data[0]);
var hh = surface_get_height_safe(current_data[0]);
2022-12-13 14:11:39 +01:00
inputs[| 4].setValue([ww / 2, hh / 2]);
}
2022-12-19 13:35:30 +01:00
static drawOverlay = function(active, _x, _y, _s, _mx, _my, _snx, _sny) {
inputs[| 4].drawOverlay(active, _x, _y, _s, _mx, _my, _snx, _sny);
2022-12-13 14:11:39 +01:00
}
2023-08-17 16:56:54 +02:00
static processData = function(_outSurf, _data, _output_index, _array_index) {
2022-12-13 14:11:39 +01:00
var _axis = _data[1];
var _amou = _data[2];
2023-08-12 12:35:35 +02:00
var _wrap = _data[3];
2022-12-13 14:11:39 +01:00
var _cent = _data[4];
2023-06-13 14:42:06 +02:00
var _samp = struct_try_get(attributes, "oversample");
2022-12-13 14:11:39 +01:00
2023-08-12 12:35:35 +02:00
surface_set_shader(_outSurf, sh_skew);
2023-03-21 03:01:53 +01:00
shader_set_interpolation(_data[0]);
2023-08-12 12:35:35 +02:00
shader_set_dim("dimension", _data[0]);
shader_set_f("center", _cent);
shader_set_i("axis", _axis);
shader_set_f("amount", _amou);
shader_set_i("sampleMode", _samp);
2022-12-13 14:11:39 +01:00
draw_surface_safe(_data[0], 0, 0);
2023-03-21 03:01:53 +01:00
surface_reset_shader();
2022-12-13 14:11:39 +01:00
2023-02-14 05:32:32 +01:00
_outSurf = mask_apply(_data[0], _outSurf, _data[6], _data[7]);
2022-12-13 14:11:39 +01:00
return _outSurf;
}
}