Pixel-Composer/scripts/node_grain/node_grain.gml

117 lines
3.8 KiB
Plaintext
Raw Normal View History

2024-07-10 13:13:51 +02:00
function Node_Grain(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
name = "Grain";
2024-08-18 06:16:20 +02:00
newInput(0, nodeValue_Surface("Surface in", self));
2024-07-10 13:13:51 +02:00
2024-08-18 06:16:20 +02:00
newInput(1, nodeValue_Surface("Mask", self));
2024-07-10 13:13:51 +02:00
2024-08-18 09:13:41 +02:00
newInput(2, nodeValue_Float("Mix", self, 1))
2024-07-10 13:13:51 +02:00
.setDisplay(VALUE_DISPLAY.slider);
2024-08-18 06:16:20 +02:00
newInput(3, nodeValue_Bool("Active", self, true));
2024-07-10 13:13:51 +02:00
active_index = 3;
2024-08-18 06:16:20 +02:00
newInput(4, nodeValue_Toggle("Channel", self, 0b1111, { data: array_create(4, THEME.inspector_channel) }));
2024-07-10 13:13:51 +02:00
__init_mask_modifier(1); // inputs 5, 6
2024-08-18 09:13:41 +02:00
newInput(7, nodeValue_Float("Brightness", self, 0))
2024-07-10 13:13:51 +02:00
.setDisplay(VALUE_DISPLAY.slider)
.setMappable(8);
2024-08-18 06:16:20 +02:00
newInput(8, nodeValueMap("Brightness map", self));
2024-07-10 13:13:51 +02:00
2024-11-07 07:59:04 +01:00
newInput(9, nodeValueSeed(self));
2024-07-10 13:13:51 +02:00
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2024-08-18 09:13:41 +02:00
newInput(10, nodeValue_Float("Red", self, 0))
2024-07-10 13:13:51 +02:00
.setDisplay(VALUE_DISPLAY.slider)
.setMappable(11);
2024-08-18 06:16:20 +02:00
newInput(11, nodeValueMap("Red map", self));
2024-07-10 13:13:51 +02:00
2024-08-18 09:13:41 +02:00
newInput(12, nodeValue_Float("Green", self, 0))
2024-07-10 13:13:51 +02:00
.setDisplay(VALUE_DISPLAY.slider)
.setMappable(13);
2024-08-18 06:16:20 +02:00
newInput(13, nodeValueMap("Green map", self));
2024-07-10 13:13:51 +02:00
2024-08-18 09:13:41 +02:00
newInput(14, nodeValue_Float("Blue", self, 0))
2024-07-10 13:13:51 +02:00
.setDisplay(VALUE_DISPLAY.slider)
.setMappable(15);
2024-08-18 06:16:20 +02:00
newInput(15, nodeValueMap("Blue map", self));
2024-07-10 13:13:51 +02:00
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2024-08-18 09:13:41 +02:00
newInput(16, nodeValue_Float("Hue", self, 0))
2024-07-10 13:13:51 +02:00
.setDisplay(VALUE_DISPLAY.slider)
.setMappable(17);
2024-08-18 06:16:20 +02:00
newInput(17, nodeValueMap("Hue map", self));
2024-07-10 13:13:51 +02:00
2024-08-18 09:13:41 +02:00
newInput(18, nodeValue_Float("Saturation", self, 0))
2024-07-10 13:13:51 +02:00
.setDisplay(VALUE_DISPLAY.slider)
.setMappable(19);
2024-08-18 06:16:20 +02:00
newInput(19, nodeValueMap("Saturation map", self));
2024-07-10 13:13:51 +02:00
2024-08-18 09:13:41 +02:00
newInput(20, nodeValue_Float("Value", self, 0))
2024-07-10 13:13:51 +02:00
.setDisplay(VALUE_DISPLAY.slider)
.setMappable(21);
2024-08-18 06:16:20 +02:00
newInput(21, nodeValueMap("Value map", self));
2024-07-10 13:13:51 +02:00
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2024-08-18 09:13:41 +02:00
newInput(22, nodeValue_Enum_Scroll("Blend mode", self, 0, [ "Additive", "Multiply", "Screen", "Overlay" ]))
2024-08-18 09:13:41 +02:00
newInput(23, nodeValue_Enum_Scroll("Blend mode", self, 0, [ "Additive", "Multiply", "Screen" ]))
2024-08-18 09:13:41 +02:00
newInput(24, nodeValue_Enum_Scroll("Blend mode", self, 0, [ "Additive", "Multiply", "Screen" ]))
2024-07-10 13:13:51 +02:00
input_display_list = [ 3, 4, 9,
["Surfaces", true], 0, 1, 2, 5, 6,
["Brightness", false], 22, /**/ 7, 8,
["RGB", false], 23, /**/ 10, 11, 12, 13, 14, 15,
["HSV", false], 24, /**/ 16, 17, 18, 19, 20, 21,
2024-07-10 13:13:51 +02:00
]
2024-09-04 03:57:11 +02:00
newOutput(0, nodeValue_Output("Surface out", self, VALUE_TYPE.surface, noone));
2024-07-10 13:13:51 +02:00
attribute_surface_depth();
static step = function() {
__step_mask_modifier();
2024-08-08 06:57:51 +02:00
inputs[7].mappableStep();
2024-07-10 13:13:51 +02:00
}
static processData = function(_outSurf, _data, _output_index, _array_index) {
surface_set_shader(_outSurf, sh_grain);
shader_set_f("seed", _data[9]);
2024-08-08 06:57:51 +02:00
shader_set_f_map("brightness", _data[ 7], _data[ 8], inputs[ 7]);
shader_set_f_map("red", _data[10], _data[11], inputs[10]);
shader_set_f_map("green", _data[12], _data[13], inputs[12]);
shader_set_f_map("blue", _data[14], _data[15], inputs[14]);
2024-07-10 13:13:51 +02:00
2024-08-08 06:57:51 +02:00
shader_set_f_map("hue", _data[16], _data[17], inputs[16]);
shader_set_f_map("sat", _data[18], _data[19], inputs[18]);
shader_set_f_map("val", _data[20], _data[21], inputs[20]);
2024-07-10 13:13:51 +02:00
shader_set_i("bmBright", _data[22]);
shader_set_i("bmRGB", _data[23]);
shader_set_i("bmHSV", _data[24]);
2024-07-10 13:13:51 +02:00
draw_surface_safe(_data[0]);
surface_reset_shader();
__process_mask_modifier(_data);
_outSurf = mask_apply(_data[0], _outSurf, _data[1], _data[2]);
_outSurf = channel_apply(_data[0], _outSurf, _data[4]);
return _outSurf;
}
}