Pixel-Composer/scripts/node_noise/node_noise.gml

62 lines
1.7 KiB
Plaintext
Raw Normal View History

2023-02-28 09:43:01 +01:00
function Node_Noise(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
2022-12-12 09:08:03 +01:00
name = "Noise";
2024-08-18 06:16:20 +02:00
newInput(0, nodeValue_Dimension(self));
2022-12-12 09:08:03 +01:00
2024-11-07 07:59:04 +01:00
newInput(1, nodeValueSeed(self));
2022-12-12 09:08:03 +01:00
2024-08-18 06:16:20 +02:00
newInput(2, nodeValue_Enum_Button("Color mode", self, 0, [ "Greyscale", "RGB", "HSV" ]));
2023-04-07 21:25:27 +02:00
2024-08-18 06:16:20 +02:00
newInput(3, nodeValue_Slider_Range("Color R range", self, [ 0, 1 ]));
2023-04-07 21:25:27 +02:00
2024-08-18 06:16:20 +02:00
newInput(4, nodeValue_Slider_Range("Color G range", self, [ 0, 1 ]));
2023-04-07 21:25:27 +02:00
2024-08-18 06:16:20 +02:00
newInput(5, nodeValue_Slider_Range("Color B range", self, [ 0, 1 ]));
2023-04-07 21:25:27 +02:00
2022-12-12 09:08:03 +01:00
input_display_list = [
["Output", false], 0,
2023-04-07 21:25:27 +02:00
["Noise", false], 1,
["Color", false], 2, 3, 4, 5,
2022-12-12 09:08:03 +01:00
];
2024-09-04 03:57:11 +02:00
newOutput(0, nodeValue_Output("Surface out", self, VALUE_TYPE.surface, noone));
2022-12-12 09:08:03 +01:00
2023-03-19 09:17:39 +01:00
attribute_surface_depth();
2023-04-07 21:25:27 +02:00
static step = function() {
var _col = getInputData(2);
2023-04-07 21:25:27 +02:00
2024-08-08 06:57:51 +02:00
inputs[3].setVisible(_col != 0);
inputs[4].setVisible(_col != 0);
inputs[5].setVisible(_col != 0);
2023-04-07 21:25:27 +02:00
2024-08-08 06:57:51 +02:00
inputs[3].name = _col == 1? "Color R range" : "Color H range";
inputs[4].name = _col == 1? "Color G range" : "Color S range";
inputs[5].name = _col == 1? "Color B range" : "Color V range";
2023-04-07 21:25:27 +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 _sed = _data[1];
2022-12-12 09:08:03 +01:00
2023-04-07 21:25:27 +02:00
var _col = _data[2];
var _clr = _data[3];
var _clg = _data[4];
var _clb = _data[5];
2023-03-19 09:17:39 +01:00
_outSurf = surface_verify(_outSurf, _dim[0], _dim[1], attrDepth());
2022-12-12 09:08:03 +01:00
2023-04-07 21:25:27 +02:00
surface_set_shader(_outSurf, sh_noise);
shader_set_f("seed", _sed);
shader_set_i("colored", _col);
2024-06-24 13:49:54 +02:00
shader_set_2("colorRanR", _clr);
shader_set_2("colorRanG", _clg);
shader_set_2("colorRanB", _clb);
2023-04-07 21:25:27 +02:00
2022-12-12 09:08:03 +01:00
draw_sprite_ext(s_fx_pixel, 0, 0, 0, _dim[0], _dim[1], 0, c_white, 1);
2023-04-07 21:25:27 +02:00
surface_reset_shader();
2022-12-22 03:09:55 +01:00
return _outSurf;
2022-12-12 09:08:03 +01:00
}
}