Pixel-Composer/scripts/node_perlin_smear/node_perlin_smear.gml

57 lines
1.6 KiB
Plaintext
Raw Normal View History

2023-02-28 09:43:01 +01:00
function Node_Perlin_Smear(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
2022-01-13 05:24:03 +01:00
name = "Smear noise";
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_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(2, nodeValue_Vec2("Scale", self, [ 4, 6 ]));
2022-01-13 05:24:03 +01:00
2024-08-18 06:16:20 +02:00
newInput(3, nodeValue_Int("Iteration", self, 3));
2022-01-13 05:24:03 +01:00
2024-08-18 09:13:41 +02:00
newInput(4, nodeValue_Float("Brightness", self, 0.5))
.setDisplay(VALUE_DISPLAY.slider);
2022-01-13 05:24:03 +01:00
2024-08-18 06:16:20 +02:00
newInput(5, nodeValue_Rotation("Rotation", self, 0));
2024-03-31 05:36:11 +02:00
2024-09-04 03:57:11 +02:00
newOutput(0, nodeValue_Output("Surface out", self, VALUE_TYPE.surface, noone));
2022-01-13 05:24:03 +01:00
2024-03-31 05:36:11 +02:00
input_display_list = [
["Output", false], 0,
["Noise", false], 1, 5, 2, 3, 4,
];
2023-03-19 09:17:39 +01:00
attribute_surface_depth();
2024-03-31 05:36:11 +02:00
static drawOverlay = function(hover, active, _x, _y, _s, _mx, _my, _snx, _sny) {
2024-07-02 12:18:32 +02:00
var _hov = false;
2024-08-08 06:57:51 +02:00
var hv = inputs[1].drawOverlay(hover, active, _x, _y, _s, _mx, _my, _snx, _sny); _hov |= hv;
2024-07-02 12:18:32 +02:00
return _hov;
2024-03-31 05:36:11 +02:00
}
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[1];
var _sca = _data[2];
var _ite = _data[3];
var _bri = _data[4];
2024-03-31 05:36:11 +02:00
var _rot = _data[5];
2022-01-13 05:24:03 +01:00
2023-03-19 09:17:39 +01:00
_outSurf = surface_verify(_outSurf, _dim[0], _dim[1], attrDepth());
2022-01-13 05:24:03 +01:00
surface_set_shader(_outSurf, sh_perlin_smear);
shader_set_f("dimension", _dim);
shader_set_2("position", _pos);
shader_set_2("scale", _sca);
shader_set_f("bright", _bri);
shader_set_i("iteration", _ite);
shader_set_f("rotation", degtorad(_rot));
2024-03-31 05:36:11 +02:00
2022-01-13 05:24:03 +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
}
}