Pixel-Composer/scripts/node_stripe/node_stripe.gml

143 lines
5.1 KiB
Plaintext
Raw Normal View History

2023-02-28 09:43:01 +01:00
function Node_Stripe(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
2022-01-13 05:24:03 +01:00
name = "Stripe";
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("Amount", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 1)
2023-12-23 09:39:55 +01:00
.setDisplay(VALUE_DISPLAY.slider, { range: [1, 16, 0.1] })
.setMappable(11);
2022-01-13 05:24:03 +01:00
2024-03-31 05:36:11 +02:00
inputs[| 2] = nodeValue("Angle", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0)
2023-12-23 09:39:55 +01:00
.setDisplay(VALUE_DISPLAY.rotation)
.setMappable(12);
2022-01-13 05:24:03 +01:00
2024-03-27 14:18:39 +01:00
inputs[| 3] = nodeValue("Type", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0)
.setDisplay(VALUE_DISPLAY.enum_button, [ "Solid", "Smooth", "AA" ]);
2022-01-13 05:24:03 +01:00
2023-12-23 09:39:55 +01:00
inputs[| 4] = nodeValue("Position", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, [ 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-09-21 06:09:40 +02:00
2023-02-14 05:32:32 +01:00
inputs[| 5] = nodeValue("Random", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0)
2023-12-23 09:39:55 +01:00
.setDisplay(VALUE_DISPLAY.slider)
.setMappable(13);
2022-09-21 06:09:40 +02:00
2024-03-28 08:33:28 +01:00
inputs[| 6] = nodeValue("Coloring", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0)
.setDisplay(VALUE_DISPLAY.enum_button, [ "Alternate", "Palette", "Random" ]);
2022-09-21 06:09:40 +02:00
2024-07-27 07:10:34 +02:00
inputs[| 7] = nodeValue("Colors", self, JUNCTION_CONNECT.input, VALUE_TYPE.gradient, new gradientObject(cola(c_white)) )
2024-01-22 10:26:25 +01:00
.setMappable(15);
2022-09-21 06:09:40 +02:00
2023-02-14 05:32:32 +01:00
inputs[| 8] = nodeValue("Color 1", self, JUNCTION_CONNECT.input, VALUE_TYPE.color, c_white);
2023-01-09 03:14:20 +01:00
2023-02-14 05:32:32 +01:00
inputs[| 9] = nodeValue("Color 2", self, JUNCTION_CONNECT.input, VALUE_TYPE.color, c_black);
2023-01-09 03:14:20 +01:00
inputs[| 10] = nodeValue("Strip ratio", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0.5)
2023-12-23 09:39:55 +01:00
.setDisplay(VALUE_DISPLAY.slider)
.setMappable(14);
//////////////////////////////////////////////////////////////////////////////////////////////////
inputs[| 11] = nodeValueMap("Amount map", self);
inputs[| 12] = nodeValueMap("Angle map", self);
inputs[| 13] = nodeValueMap("Random map", self);
inputs[| 14] = nodeValueMap("Ratio map", self);
2024-01-22 10:26:25 +01:00
inputs[| 15] = nodeValueMap("Gradient map", self);
inputs[| 16] = nodeValueGradientRange("Gradient map range", self, inputs[| 7]);
2023-12-23 09:39:55 +01:00
//////////////////////////////////////////////////////////////////////////////////////////////////
2024-03-28 08:33:28 +01:00
inputs[| 17] = nodeValue("Progress", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0.5)
.setDisplay(VALUE_DISPLAY.slider);
inputs[| 18] = nodeValue("Colors", self, JUNCTION_CONNECT.input, VALUE_TYPE.color, [ c_black, c_white ] )
.setDisplay(VALUE_DISPLAY.palette);
inputs[| 19] = nodeValueSeed(self, VALUE_TYPE.float);
2023-02-14 05:32:32 +01:00
outputs[| 0] = nodeValue("Surface out", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, noone);
input_display_list = [ 19,
2022-09-21 06:09:40 +02:00
["Output", true], 0,
2024-03-28 08:33:28 +01:00
["Pattern", false], 1, 11, 10, 14, 2, 12, 4, 5, 13, 17,
["Render", false], 3, 6, 7, 15, 8, 9, 18,
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-07-02 12:18:32 +02: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[4];
var px = _x + pos[0] * _s;
var py = _y + pos[1] * _s;
var _hov = false;
2024-07-02 12:18:32 +02:00
var hv = inputs[| 4].drawOverlay(hover, active, _x, _y, _s, _mx, _my, _snx, _sny); active &= !hv; _hov |= hv;
var hv = inputs[| 2].drawOverlay(hover, active, px, py, _s, _mx, _my, _snx, _sny); active &= !hv; _hov |= hv;
var hv = inputs[| 16].drawOverlay(hover, active, _x, _y, _s, _mx, _my, _snx, _sny, current_data[0]); active &= !hv; _hov |= hv;
return _hov;
}
2024-07-02 12:18:32 +02:00
static step = function() {
2024-03-28 08:33:28 +01:00
var _clr = getSingleValue(6);
2023-12-23 09:39:55 +01:00
inputs[| 1].mappableStep();
inputs[| 2].mappableStep();
inputs[| 5].mappableStep();
2024-01-22 10:26:25 +01:00
inputs[| 7].mappableStep();
2023-12-23 09:39:55 +01:00
inputs[| 10].mappableStep();
2024-03-28 08:33:28 +01:00
inputs[| 8].setVisible(_clr == 0);
inputs[| 9].setVisible(_clr == 0);
inputs[| 18].setVisible(_clr == 1);
inputs[| 7].setVisible(_clr == 2);
2024-07-02 12:18:32 +02:00
}
2023-12-23 09:39:55 +01:00
static processData = function(_outSurf, _data, _output_index, _array_index) { #region
2023-12-23 09:39:55 +01:00
var _dim = _data[0];
var _bnd = _data[3];
var _pos = _data[4];
var _clr0 = _data[8];
var _clr1 = _data[9];
2024-03-28 08:33:28 +01:00
var _prg = _data[17];
var _pal = _data[18];
var _seed = _data[19];
2023-01-09 03:14:20 +01:00
2024-03-28 08:33:28 +01:00
var _color = _data[6];
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());
2022-01-13 05:24:03 +01:00
surface_set_shader(_outSurf, sh_stripe);
shader_set_f("seed", _seed);
shader_set_f("dimension", _dim[0], _dim[1]);
shader_set_f("position", _pos[0] / _dim[0], _pos[1] / _dim[1]);
2024-03-27 14:18:39 +01:00
shader_set_i("blend", _bnd);
2024-03-28 08:33:28 +01:00
shader_set_f("progress", _prg);
2023-12-23 09:39:55 +01:00
shader_set_f_map("amount", _data[ 1], _data[11], inputs[| 1]);
shader_set_f_map("angle", _data[ 2], _data[12], inputs[| 2]);
shader_set_f_map("randomAmount", _data[ 5], _data[13], inputs[| 5]);
shader_set_f_map("ratio", _data[10], _data[14], inputs[| 10]);
2022-09-21 06:09:40 +02:00
2024-03-28 08:33:28 +01:00
shader_set_i("coloring", _color);
2024-01-08 08:10:50 +01:00
shader_set_color("color0", _clr0);
shader_set_color("color1", _clr1);
2024-03-28 08:33:28 +01:00
shader_set_palette(_pal);
2023-01-09 03:14:20 +01:00
2024-01-22 10:26:25 +01:00
shader_set_gradient(_data[7], _data[15], _data[16], inputs[| 7]);
2022-09-21 06:09:40 +02: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;
} #endregion
2022-01-13 05:24:03 +01:00
}