2023-02-28 09:43:01 +01:00
|
|
|
function Node_Combine_RGB(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
|
2022-12-27 04:00:50 +01:00
|
|
|
name = "RGB Combine";
|
2023-11-28 09:42:22 +01:00
|
|
|
dimension_index = -1;
|
2022-12-27 04:00:50 +01:00
|
|
|
|
2023-11-21 14:03:09 +01:00
|
|
|
inputs[| 0] = nodeValue("Red", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, noone);
|
|
|
|
inputs[| 1] = nodeValue("Green", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, noone);
|
|
|
|
inputs[| 2] = nodeValue("Blue", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, noone);
|
|
|
|
inputs[| 3] = nodeValue("Alpha", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, noone);
|
2023-01-01 02:06:02 +01:00
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
inputs[| 4] = nodeValue("Sampling type", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0)
|
2024-01-30 15:04:56 +01:00
|
|
|
.setDisplay(VALUE_DISPLAY.enum_scroll, ["Channel value", "Greyscale"]);
|
2022-12-27 04:00:50 +01:00
|
|
|
|
2023-11-27 11:40:28 +01:00
|
|
|
inputs[| 5] = nodeValue("Base value", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0, "Set value to the unconnected color channels.")
|
2023-12-23 09:39:55 +01:00
|
|
|
.setDisplay(VALUE_DISPLAY.slider)
|
|
|
|
.setMappable(6);
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
inputs[| 6] = nodeValueMap("Base value", self);
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////////////
|
2023-11-27 11:40:28 +01:00
|
|
|
|
2024-03-17 14:24:24 +01:00
|
|
|
inputs[| 7] = nodeValue("Array Input", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, false);
|
|
|
|
|
|
|
|
inputs[| 8] = nodeValue("RGBA Array", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, [])
|
|
|
|
.setArrayDepth(1);
|
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
outputs[| 0] = nodeValue("Surface out", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, noone);
|
2022-12-27 04:00:50 +01:00
|
|
|
|
2023-01-01 02:06:02 +01:00
|
|
|
input_display_list = [
|
2023-12-23 09:39:55 +01:00
|
|
|
["Sampling", false], 4, 5, 6,
|
2024-03-17 14:24:24 +01:00
|
|
|
["Surfaces", true], 7, 0, 1, 2, 3, 8,
|
2023-01-01 02:06:02 +01:00
|
|
|
]
|
|
|
|
|
2023-03-19 09:17:39 +01:00
|
|
|
attribute_surface_depth();
|
|
|
|
|
2023-12-23 09:39:55 +01:00
|
|
|
static step = function() { #region
|
|
|
|
inputs[| 5].mappableStep();
|
2024-03-17 14:24:24 +01:00
|
|
|
|
|
|
|
var _arr = getInputData(7);
|
|
|
|
|
|
|
|
inputs[| 0].setVisible(!_arr, !_arr);
|
|
|
|
inputs[| 1].setVisible(!_arr, !_arr);
|
|
|
|
inputs[| 2].setVisible(!_arr, !_arr);
|
|
|
|
inputs[| 3].setVisible(!_arr, !_arr);
|
|
|
|
|
|
|
|
inputs[| 8].setVisible(_arr, _arr);
|
2023-12-23 09:39:55 +01:00
|
|
|
} #endregion
|
|
|
|
|
2023-09-14 16:29:39 +02:00
|
|
|
static processData = function(_outSurf, _data, _output_index, _array_index) { #region
|
2024-03-17 14:24:24 +01:00
|
|
|
var _arr = _data[7];
|
|
|
|
|
|
|
|
var _r = _arr? array_safe_get(_data[8], 0) : _data[0];
|
|
|
|
var _g = _arr? array_safe_get(_data[8], 1) : _data[1];
|
|
|
|
var _b = _arr? array_safe_get(_data[8], 2) : _data[2];
|
|
|
|
var _a = _arr? array_safe_get(_data[8], 3) : _data[3];
|
2022-12-27 04:00:50 +01:00
|
|
|
|
2024-03-19 09:49:29 +01:00
|
|
|
var _baseS = is_surface(_r)? _r : (is_surface(_g)? _g : _b);
|
2023-11-28 09:42:22 +01:00
|
|
|
if(!is_surface(_baseS)) return _outSurf;
|
|
|
|
|
2024-03-19 09:49:29 +01:00
|
|
|
var _ww = surface_get_width_safe(_baseS);
|
|
|
|
var _hh = surface_get_height_safe(_baseS);
|
|
|
|
|
|
|
|
_outSurf = surface_verify(_outSurf, _ww, _hh);
|
2023-11-28 09:42:22 +01:00
|
|
|
|
2023-10-01 06:29:53 +02:00
|
|
|
surface_set_shader(_outSurf, sh_combine_rgb);
|
2024-03-17 14:24:24 +01:00
|
|
|
|
2023-11-21 14:03:09 +01:00
|
|
|
shader_set_surface("samplerR", _r);
|
|
|
|
shader_set_surface("samplerG", _g);
|
|
|
|
shader_set_surface("samplerB", _b);
|
|
|
|
shader_set_surface("samplerA", _a);
|
2024-03-17 14:24:24 +01:00
|
|
|
|
2023-11-27 11:40:28 +01:00
|
|
|
shader_set_i("useR", is_surface(_r));
|
|
|
|
shader_set_i("useG", is_surface(_g));
|
|
|
|
shader_set_i("useB", is_surface(_b));
|
2023-11-21 14:03:09 +01:00
|
|
|
shader_set_i("useA", is_surface(_a));
|
2023-11-27 11:40:28 +01:00
|
|
|
|
2024-01-30 15:04:56 +01:00
|
|
|
shader_set_i("mode", !_data[4]);
|
2023-12-23 09:39:55 +01:00
|
|
|
shader_set_f_map("base", _data[5], _data[6], inputs[| 5]);
|
2023-01-01 02:06:02 +01:00
|
|
|
|
2024-03-19 09:49:29 +01:00
|
|
|
draw_sprite_stretched(s_fx_pixel, 0, 0, 0, _ww, _hh);
|
|
|
|
|
2023-10-01 06:29:53 +02:00
|
|
|
surface_reset_shader();
|
2022-12-27 04:00:50 +01:00
|
|
|
|
|
|
|
return _outSurf;
|
2023-09-14 16:29:39 +02:00
|
|
|
} #endregion
|
2022-12-27 04:00:50 +01:00
|
|
|
}
|