Pixel-Composer/scripts/node_stripe/node_stripe.gml

112 lines
3.9 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
2023-02-14 05:32:32 +01:00
inputs[| 2] = nodeValue("Angle", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0)
2023-12-23 09:39:55 +01:00
.setDisplay(VALUE_DISPLAY.rotation)
.setMappable(12);
2022-01-13 05:24:03 +01:00
2023-02-14 05:32:32 +01:00
inputs[| 3] = nodeValue("Blend", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, 0, "Smoothly blend between each stripe.");
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
2023-02-14 05:32:32 +01:00
inputs[| 6] = nodeValue("Random color", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, false);
2022-09-21 06:09:40 +02:00
2023-05-28 20:00:51 +02:00
inputs[| 7] = nodeValue("Colors", self, JUNCTION_CONNECT.input, VALUE_TYPE.gradient, new gradientObject(c_white) );
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);
//////////////////////////////////////////////////////////////////////////////////////////////////
2023-02-14 05:32:32 +01:00
outputs[| 0] = nodeValue("Surface out", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, noone);
2022-09-27 06:37:28 +02:00
input_display_list = [
2022-09-21 06:09:40 +02:00
["Output", true], 0,
2023-12-23 09:39:55 +01:00
["Pattern", false], 1, 11, 10, 14, 2, 12, 4, 5, 13,
2023-01-09 03:14:20 +01:00
["Render", false], 6, 7, 8, 9, 3
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();
static drawOverlay = function(active, _x, _y, _s, _mx, _my, _snx, _sny) { #region
var pos = getInputData(4);
var px = _x + pos[0] * _s;
var py = _y + pos[1] * _s;
2022-12-19 13:35:30 +01:00
inputs[| 4].drawOverlay(active, _x, _y, _s, _mx, _my, _snx, _sny);
inputs[| 2].drawOverlay(active, px, py, _s, _mx, _my, _snx, _sny);
} #endregion
2023-12-23 09:39:55 +01:00
static step = function() { #region
inputs[| 1].mappableStep();
inputs[| 2].mappableStep();
inputs[| 5].mappableStep();
inputs[| 10].mappableStep();
} #endregion
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];
2023-01-09 03:14:20 +01:00
2022-12-22 03:09:55 +01:00
var _grad_use = _data[6];
2022-09-21 06:09:40 +02:00
inputs[| 7].setVisible(_grad_use);
2023-01-09 03:14:20 +01:00
inputs[| 8].setVisible(!_grad_use);
inputs[| 9].setVisible(!_grad_use);
2022-09-21 06:09:40 +02:00
2022-12-22 03:09:55 +01:00
var _gra = _data[7];
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("dimension", _dim[0], _dim[1]);
shader_set_f("position", _pos[0] / _dim[0], _pos[1] / _dim[1]);
shader_set_f("blend", _bnd);
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
shader_set_f("color0", colToVec4(_clr0));
shader_set_f("color1", colToVec4(_clr1));
2023-01-09 03:14:20 +01:00
shader_set_i("gradient_use", _grad_use);
2023-12-23 09:39:55 +01:00
_gra.shader_submit();
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
}