2025-02-04 11:39:46 +07:00
#region
FN_NODE_CONTEXT_INVOKE {
addHotkey("Node_Blur_Simple", "Size > Set", KEY_GROUP.numeric, MOD_KEY.none, function(val) /*=>*/ { PANEL_GRAPH_FOCUS_STR _n.inputs[1].setValue(toNumber(chr(keyboard_key))); });
});
#endregion
2023-02-28 15:43:01 +07:00
function Node_Blur_Simple(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
2024-01-23 20:40:03 +07:00
name = "Non-Uniform Blur";
2022-12-27 10:00:50 +07:00
2025-02-04 11:39:46 +07:00
newInput(0, nodeValue_Surface("Surface In", self));
2024-08-18 14:13:41 +07:00
newInput(1, nodeValue_Float("Size", self, 3))
2024-10-23 11:25:51 +07:00
.setValidator(VV_min(0))
.setUnitRef(function(index) /*=>*/ {return getDimension(index)});
2022-12-27 10:00:50 +07:00
2024-08-18 14:13:41 +07:00
newInput(2, nodeValue_Enum_Scroll("Oversample mode", self, 0, [ "Empty", "Clamp", "Repeat" ]))
2024-08-07 16:48:39 +07:00
.setTooltip("How to deal with pixel outside the surface.\n - Empty: Use empty pixel\n - Clamp: Repeat edge pixel\n - Repeat: Repeat texture.");
2022-12-27 10:00:50 +07:00
2024-08-18 11:16:20 +07:00
newInput(3, nodeValue_Surface("Blur mask", self));
2022-12-27 10:00:50 +07:00
2024-08-18 11:16:20 +07:00
newInput(4, nodeValue_Bool("Override color", self, false, "Replace all color while keeping the alpha. Used to\nfix grey outline when bluring transparent pixel."));
2023-01-17 14:11:55 +07:00
2024-11-23 14:31:15 +07:00
newInput(5, nodeValue_Color("Color", self, cola(c_black)));
2023-01-17 14:11:55 +07:00
2024-08-18 11:16:20 +07:00
newInput(6, nodeValue_Surface("Mask", self));
2023-02-14 11:32:32 +07:00
2024-08-18 14:13:41 +07:00
newInput(7, nodeValue_Float("Mix", self, 1))
2023-10-02 13:57:44 +07:00
.setDisplay(VALUE_DISPLAY.slider);
2023-02-14 11:32:32 +07:00
2024-08-18 11:16:20 +07:00
newInput(8, nodeValue_Bool("Active", self, true));
2023-02-14 11:32:32 +07:00
active_index = 8;
2024-08-18 11:16:20 +07:00
newInput(9, nodeValue_Toggle("Channel", self, 0b1111, { data: array_create(4, THEME.inspector_channel) }));
2023-11-09 10:02:41 +07:00
2023-11-24 16:41:53 +07:00
__init_mask_modifier(6); // inputs 10, 11,
2024-08-18 14:13:41 +07:00
newInput(12, nodeValue_Gradient("Gradient", self, new gradientObject([ cola(c_black), cola(c_white) ])))
2024-03-02 16:08:44 +07:00
.setMappable(13);
2024-08-18 11:16:20 +07:00
newInput(13, nodeValueMap("Gradient map", self));
2024-03-02 16:08:44 +07:00
2024-08-18 11:16:20 +07:00
newInput(14, nodeValueGradientRange("Gradient map range", self, inputs[1]));
2024-03-02 16:08:44 +07:00
2024-08-18 11:16:20 +07:00
newInput(15, nodeValue_Bool("Use Gradient", self, false));
2024-03-02 16:08:44 +07:00
2024-08-18 11:16:20 +07:00
newInput(16, nodeValue_Bool("Gamma Correction", self, false));
2024-06-13 14:21:07 +07:00
2023-11-09 10:02:41 +07:00
input_display_list = [ 8, 9,
2023-11-24 16:41:53 +07:00
["Surfaces", true], 0, 6, 7, 10, 11,
2024-06-13 14:21:07 +07:00
["Blur", false], 1, 3, 4, 5, 16,
2024-03-02 16:08:44 +07:00
["Effects", false, 15], 12, 13, 14,
2022-12-27 10:00:50 +07:00
];
2025-02-04 14:26:50 +07:00
newOutput(0, nodeValue_Output("Surface Out", self, VALUE_TYPE.surface, noone));
2022-12-27 10:00:50 +07:00
2023-03-19 15:17:39 +07:00
attribute_surface_depth();
2023-03-21 09:01:53 +07:00
attribute_oversample();
2023-03-19 15:17:39 +07:00
2024-10-23 11:25:51 +07:00
static step = function() {
2023-11-24 16:41:53 +07:00
__step_mask_modifier();
2024-03-02 16:08:44 +07:00
2024-08-08 11:57:51 +07:00
inputs[12].mappableStep();
2024-10-23 11:25:51 +07:00
}
2023-11-24 16:41:53 +07:00
2024-10-23 11:25:51 +07:00
static processData = function(_outSurf, _data, _output_index, _array_index) {
2022-12-27 10:00:50 +07:00
if(!is_surface(_data[0])) return _outSurf;
var _size = _data[1];
2024-11-07 13:59:04 +07:00
var _samp = getAttribute("oversample");
2022-12-27 10:00:50 +07:00
var _mask = _data[3];
2023-01-17 14:11:55 +07:00
var _isovr = _data[4];
var _overc = _data[5];
2023-02-14 11:32:32 +07:00
var _msk = _data[6];
var _mix = _data[7];
2024-03-02 16:08:44 +07:00
var _useGrd = _data[15];
2024-06-13 14:21:07 +07:00
var _gam = _data[16];
2023-01-17 14:11:55 +07:00
2024-08-08 11:57:51 +07:00
inputs[5].setVisible(_isovr);
2022-12-27 10:00:50 +07:00
2024-01-09 09:39:40 +07:00
surface_set_shader(_outSurf, sh_blur_simple);
2024-03-02 16:08:44 +07:00
shader_set_i("useGradient", _useGrd);
2024-08-08 11:57:51 +07:00
shader_set_gradient(_data[12], _data[13], _data[14], inputs[12]);
2024-03-02 16:08:44 +07:00
2024-01-09 09:39:40 +07:00
shader_set_f("dimension", surface_get_width_safe(_data[0]), surface_get_height_safe(_data[0]));
shader_set_f("size", _size);
shader_set_i("sampleMode", _samp);
2024-06-13 14:21:07 +07:00
shader_set_i("gamma", _gam);
2022-12-27 10:00:50 +07:00
2024-01-09 09:39:40 +07:00
shader_set_i("overrideColor", _isovr);
shader_set_color("overColor", _overc);
2022-12-27 10:00:50 +07:00
2024-01-09 09:39:40 +07:00
shader_set_i("useMask", is_surface(_mask));
shader_set_surface("mask", _mask);
2022-12-27 10:00:50 +07:00
2024-01-09 09:39:40 +07:00
draw_surface_safe(_data[0]);
surface_reset_shader();
2022-12-27 10:00:50 +07:00
2023-11-24 16:41:53 +07:00
__process_mask_modifier(_data);
2023-02-14 11:32:32 +07:00
_outSurf = mask_apply(_data[0], _outSurf, _msk, _mix);
2023-11-09 10:02:41 +07:00
_outSurf = channel_apply(_data[0], _outSurf, _data[9]);
2023-02-14 11:32:32 +07:00
2022-12-27 10:00:50 +07:00
return _outSurf;
2024-10-23 11:25:51 +07:00
}
2022-12-27 10:00:50 +07:00
}