Pixel-Composer/scripts/node_zigzag/node_zigzag.gml

83 lines
2.5 KiB
Plaintext
Raw Normal View History

2023-02-28 09:43:01 +01:00
function Node_Zigzag(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
2022-01-13 05:24:03 +01:00
name = "Zigzag";
2024-08-18 06:16:20 +02:00
newInput(0, nodeValue_Dimension(self));
2022-01-13 05:24:03 +01:00
2024-08-18 09:13:41 +02:00
newInput(1, nodeValue_Int("Amount", self, 1))
2023-12-23 12:59:21 +01:00
.setDisplay(VALUE_DISPLAY.slider, { range: [1, 16, 0.1] })
.setMappable(6);
2024-08-18 09:13:41 +02:00
newInput(2, nodeValue_Vec2("Position", self, [0, 0] ))
2022-12-27 13:30:02 +01:00
.setUnitRef(function(index) { return getDimension(index); });
2022-01-13 05:24:03 +01:00
2024-08-18 06:16:20 +02:00
newInput(3, nodeValue_Color("Color 1", self, c_white));
2023-12-23 12:59:21 +01:00
2024-08-18 06:16:20 +02:00
newInput(4, nodeValue_Color("Color 2", self, c_black));
2022-09-21 06:09:40 +02:00
2024-08-18 06:16:20 +02:00
newInput(5, nodeValue_Enum_Button("Type", self, 0, [ "Solid", "Smooth", "AA" ]));
2022-09-21 06:09:40 +02:00
2023-12-23 12:59:21 +01:00
//////////////////////////////////////////////////////////////////////////////////
2024-08-18 06:16:20 +02:00
newInput(6, nodeValueMap("Amount map", self));
2023-12-23 12:59:21 +01:00
2024-08-18 06:16:20 +02:00
newInput(7, nodeValueMap("Angle map", self));
2024-03-27 14:18:39 +01:00
2023-12-23 12:59:21 +01:00
//////////////////////////////////////////////////////////////////////////////////
2024-08-18 09:13:41 +02:00
newInput(8, nodeValue_Rotation("Angle", self, 0))
2024-03-27 14:18:39 +01:00
.setMappable(7);
2024-08-08 06:57:51 +02:00
outputs[0] = nodeValue_Output("Surface out", self, VALUE_TYPE.surface, noone);
2022-09-21 06:09:40 +02:00
input_display_list = [
["Output", false], 0,
2024-03-27 14:18:39 +01:00
["Pattern", false], 1, 6, 2, 8,
["Render", false], 5, 3, 4,
2022-09-21 06:09:40 +02:00
];
2022-01-13 05:24:03 +01:00
2023-03-19 09:17:39 +01:00
attribute_surface_depth();
2024-03-14 14:35:19 +01:00
static drawOverlay = function(hover, active, _x, _y, _s, _mx, _my, _snx, _sny) {
PROCESSOR_OVERLAY_CHECK
2024-07-02 12:18:32 +02:00
var pos = current_data[2];
var px = _x + pos[0] * _s;
var py = _y + pos[1] * _s;
var _hov = false;
2024-03-27 14:18:39 +01:00
2024-08-08 06:57:51 +02:00
var hv = inputs[2].drawOverlay(hover, active, _x, _y, _s, _mx, _my, _snx, _sny); _hov |= hv;
var hv = inputs[8].drawOverlay(hover, active, px, py, _s, _mx, _my, _snx, _sny); _hov |= hv;
2024-07-02 12:18:32 +02:00
return _hov;
}
2023-12-23 12:59:21 +01:00
static step = function() { #region
2024-08-08 06:57:51 +02:00
inputs[1].mappableStep();
inputs[8].mappableStep();
2023-12-23 12:59:21 +01:00
} #endregion
2023-08-17 16:56:54 +02:00
static processData = function(_outSurf, _data, _output_index, _array_index) {
2022-12-22 03:09:55 +01:00
var _dim = _data[0];
var _pos = _data[2];
2022-01-13 05:24:03 +01:00
2022-12-22 03:09:55 +01:00
var _col1 = _data[3];
var _col2 = _data[4];
var _bnd = _data[5];
2022-09-21 06:09:40 +02:00
2023-03-19 09:17:39 +01:00
_outSurf = surface_verify(_outSurf, _dim[0], _dim[1], attrDepth());
2023-12-23 12:59:21 +01:00
surface_set_shader(_outSurf, sh_zigzag);
2024-03-27 14:18:39 +01:00
shader_set_f("dimension", _dim);
2023-12-23 12:59:21 +01:00
shader_set_f("position", _pos[0] / _dim[0], _pos[1] / _dim[1]);
2024-08-08 06:57:51 +02:00
shader_set_f_map("amount", _data[1], _data[6], inputs[1]);
shader_set_f_map("angle", _data[8], _data[7], inputs[8]);
2023-12-23 12:59:21 +01:00
shader_set_i("blend", _bnd);
shader_set_color("col1", _col1);
shader_set_color("col2", _col2);
2022-01-13 05:24:03 +01:00
2023-12-23 12:59:21 +01:00
draw_sprite_ext(s_fx_pixel, 0, 0, 0, _dim[0], _dim[1], 0, c_white, 1);
surface_reset_shader();
2022-12-22 03:09:55 +01:00
return _outSurf;
2022-01-13 05:24:03 +01:00
}
}