mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-11 13:03:49 +01:00
75 lines
2.6 KiB
Plaintext
75 lines
2.6 KiB
Plaintext
function Node_Threshold(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
|
|
name = "Threshold";
|
|
|
|
inputs[| 0] = nodeValue("Surface in", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, 0);
|
|
|
|
inputs[| 1] = nodeValue("Brightness", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, false);
|
|
|
|
inputs[| 2] = nodeValue("Brightness Threshold", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0.5)
|
|
.setDisplay(VALUE_DISPLAY.slider, [ 0, 1, 0.01 ]);
|
|
|
|
inputs[| 3] = nodeValue("Brightness Smoothness", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0)
|
|
.setDisplay(VALUE_DISPLAY.slider, [ 0, 1, 0.01 ]);
|
|
|
|
inputs[| 4] = nodeValue("Mask", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, 0);
|
|
|
|
inputs[| 5] = nodeValue("Mix", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 1)
|
|
.setDisplay(VALUE_DISPLAY.slider, [ 0, 1, 0.01 ]);
|
|
|
|
inputs[| 6] = nodeValue("Active", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, true);
|
|
active_index = 6;
|
|
|
|
inputs[| 7] = nodeValue("Alpha", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, false);
|
|
|
|
inputs[| 8] = nodeValue("Alpha Threshold", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0.5)
|
|
.setDisplay(VALUE_DISPLAY.slider, [ 0, 1, 0.01 ]);
|
|
|
|
inputs[| 9] = nodeValue("Alpha Smoothness", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0)
|
|
.setDisplay(VALUE_DISPLAY.slider, [ 0, 1, 0.01 ]);
|
|
|
|
outputs[| 0] = nodeValue("Surface out", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, noone);
|
|
|
|
input_display_list = [ 6,
|
|
["Output", true], 0, 4, 5,
|
|
["Threshold", false], 1, 2, 3, 7, 8, 9,
|
|
];
|
|
|
|
attribute_surface_depth();
|
|
|
|
static step = function() {
|
|
var _bright = inputs[| 1].getValue();
|
|
inputs[| 2].setVisible(_bright);
|
|
inputs[| 3].setVisible(_bright);
|
|
|
|
var _alpha = inputs[| 7].getValue();
|
|
inputs[| 8].setVisible(_alpha);
|
|
inputs[| 9].setVisible(_alpha);
|
|
}
|
|
|
|
static processData = function(_outSurf, _data, _output_index, _array_index) {
|
|
var _bright = _data[1];
|
|
var _brightThreshold = _data[2];
|
|
var _brightSmooth = _data[3];
|
|
|
|
var _alpha = _data[7];
|
|
var _alphaThreshold = _data[8];
|
|
var _alphaSmooth = _data[9];
|
|
|
|
surface_set_shader(_outSurf, sh_threshold);
|
|
shader_set_i("bright", _bright );
|
|
shader_set_f("brightThreshold", _brightThreshold );
|
|
shader_set_f("brightSmooth", _brightSmooth );
|
|
|
|
shader_set_i("alpha", _alpha );
|
|
shader_set_f("alphaThreshold", _alphaThreshold );
|
|
shader_set_f("alphaSmooth", _alphaSmooth );
|
|
|
|
draw_surface_safe(_data[0]);
|
|
surface_reset_shader();
|
|
|
|
_outSurf = mask_apply(_data[0], _outSurf, _data[4], _data[5]);
|
|
|
|
return _outSurf;
|
|
}
|
|
}
|