Pixel-Composer/scripts/node_perlin/node_perlin.gml

108 lines
3.9 KiB
Plaintext
Raw Normal View History

2023-02-28 09:43:01 +01:00
function Node_Perlin(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
2023-01-25 06:49:00 +01:00
name = "Perlin Noise";
2022-01-13 05:24:03 +01:00
2023-07-21 12:40:20 +02:00
inputs[| 0] = nodeValue("Dimension", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, DEF_SURF )
2022-01-13 05:24:03 +01:00
.setDisplay(VALUE_DISPLAY.vector);
2023-02-14 05:32:32 +01:00
inputs[| 1] = nodeValue("Position", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, [ 0, 0 ])
2022-12-27 04:00:50 +01:00
.setDisplay(VALUE_DISPLAY.vector)
2022-12-27 13:30:02 +01:00
.setUnitRef(function(index) { return getDimension(index); });
2022-01-13 05:24:03 +01:00
2023-02-14 05:32:32 +01:00
inputs[| 2] = nodeValue("Scale", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, [ 5, 5 ])
2023-12-23 09:39:55 +01:00
.setDisplay(VALUE_DISPLAY.vector)
.setMappable(10);
2022-01-13 05:24:03 +01:00
2024-01-16 14:08:57 +01:00
inputs[| 3] = nodeValue("Iteration", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 4);
2022-01-13 05:24:03 +01:00
2023-02-28 09:43:01 +01:00
inputs[| 4] = nodeValue("Tile", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, true);
2022-12-27 04:00:50 +01:00
inputs[| 5] = nodeValue("Seed", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, seed_random(6))
2024-06-08 06:31:21 +02:00
.setDisplay(VALUE_DISPLAY._default, { side_button : button(function() { randomize(); inputs[| 5].setValue(seed_random(6)); }).setIcon(THEME.icon_random, 0, COLORS._main_icon) });
2023-04-07 21:25:27 +02:00
inputs[| 6] = nodeValue("Color mode", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0)
.setDisplay(VALUE_DISPLAY.enum_button, [ "Greyscale", "RGB", "HSV" ]);
inputs[| 7] = nodeValue("Color R range", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, [ 0, 1 ])
.setDisplay(VALUE_DISPLAY.slider_range);
2023-04-07 21:25:27 +02:00
inputs[| 8] = nodeValue("Color G range", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, [ 0, 1 ])
.setDisplay(VALUE_DISPLAY.slider_range);
2023-04-07 21:25:27 +02:00
inputs[| 9] = nodeValue("Color B range", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, [ 0, 1 ])
.setDisplay(VALUE_DISPLAY.slider_range);
2022-12-27 04:00:50 +01:00
2023-12-23 09:39:55 +01:00
//////////////////////////////////////////////////////////////////////////////////
inputs[| 10] = nodeValueMap("Scale map", self);
//////////////////////////////////////////////////////////////////////////////////
2024-03-31 05:36:11 +02:00
inputs[| 11] = nodeValue("Rotation", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0)
.setDisplay(VALUE_DISPLAY.rotation);
2022-12-27 04:00:50 +01:00
input_display_list = [
2023-05-03 21:42:17 +02:00
["Output", true], 0, 5,
2024-03-31 05:36:11 +02:00
["Noise", false], 1, 11, 2, 10, 3, 4,
2023-04-07 21:25:27 +02:00
["Render", false], 6, 7, 8, 9,
2022-12-27 04:00:50 +01:00
];
2022-01-13 05:24:03 +01:00
2023-02-14 05:32:32 +01:00
outputs[| 0] = nodeValue("Surface out", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, noone);
2022-01-13 05:24:03 +01:00
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;
var hv = inputs[| 1].drawOverlay(hover, active, _x, _y, _s, _mx, _my, _snx, _sny); _hov |= hv;
return _hov;
2024-03-31 05:36:11 +02:00
}
2023-04-07 21:25:27 +02:00
static step = function() {
var _col = getInputData(6);
2023-04-07 21:25:27 +02:00
inputs[| 7].setVisible(_col != 0);
inputs[| 8].setVisible(_col != 0);
inputs[| 9].setVisible(_col != 0);
inputs[| 7].name = _col == 1? "Color R range" : "Color H range";
inputs[| 8].name = _col == 1? "Color G range" : "Color S range";
inputs[| 9].name = _col == 1? "Color B range" : "Color V range";
2023-12-23 09:39:55 +01:00
inputs[| 2].mappableStep();
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 _pos = _data[1];
var _ite = _data[3];
2023-02-28 09:43:01 +01:00
var _til = _data[4];
2022-12-27 04:00:50 +01:00
var _sed = _data[5];
2022-01-13 05:24:03 +01:00
2023-04-07 21:25:27 +02:00
var _col = _data[6];
var _clr = _data[7];
var _clg = _data[8];
var _clb = _data[9];
2024-03-31 05:36:11 +02:00
var _rot = _data[11];
2023-04-07 21:25:27 +02: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
2023-04-07 21:25:27 +02:00
surface_set_shader(_outSurf, sh_perlin_tiled);
2023-12-18 04:40:21 +01:00
shader_set_f("u_resolution", _dim);
2024-06-24 13:49:54 +02:00
shader_set_2("position", _pos);
2024-03-31 05:36:11 +02:00
shader_set_f("rotation", degtorad(_rot));
2023-12-23 09:39:55 +01:00
shader_set_f_map("scale", _data[2], _data[10], inputs[| 2]);
2023-12-18 04:40:21 +01:00
shader_set_f("seed", _sed);
shader_set_i("tile", _til);
shader_set_i("iteration", _ite);
2023-04-07 21:25:27 +02:00
2023-12-18 04:40:21 +01:00
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-12-18 04:40:21 +01: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);
2023-04-07 21:25:27 +02:00
surface_reset_shader();
2022-12-22 03:09:55 +01:00
return _outSurf;
2022-01-13 05:24:03 +01:00
}
}