2023-02-28 09:43:01 +01:00
|
|
|
function Node_Outline(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
|
2022-01-13 05:24:03 +01:00
|
|
|
name = "Outline";
|
|
|
|
|
2024-03-14 14:35:19 +01:00
|
|
|
inputs[| 0] = nodeValue("Surface in", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, noone);
|
2023-12-23 09:39:55 +01:00
|
|
|
|
|
|
|
inputs[| 1] = nodeValue("Width", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0)
|
|
|
|
.setMappable(15);
|
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
inputs[| 2] = nodeValue("Color", self, JUNCTION_CONNECT.input, VALUE_TYPE.color, c_white);
|
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, "Blend outline color with the original color.");
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
inputs[| 4] = nodeValue("Blend alpha", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 1)
|
2023-12-23 09:39:55 +01:00
|
|
|
.setDisplay(VALUE_DISPLAY.slider)
|
|
|
|
.setMappable(16);
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
inputs[| 5] = nodeValue("Position", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 1)
|
2022-01-19 03:05:13 +01:00
|
|
|
.setDisplay(VALUE_DISPLAY.enum_button, ["Inside", "Outside"]);
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2024-04-18 07:12:31 +02:00
|
|
|
inputs[| 6] = nodeValue("Anti aliasing", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, 0);
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
inputs[| 7] = nodeValue("Oversample mode", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0, "How to deal with pixel outside the surface.\n - Empty: Use empty pixel\n - Clamp: Repeat edge pixel\n - Repeat: Repeat texture.")
|
2023-01-01 02:06:02 +01:00
|
|
|
.setDisplay(VALUE_DISPLAY.enum_scroll, [ "Empty", "Clamp", "Repeat" ]);
|
|
|
|
|
2023-12-23 09:39:55 +01:00
|
|
|
inputs[| 8] = nodeValue("Start", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0, "Shift outline inside, outside the shape.")
|
|
|
|
.setMappable(17);
|
2023-02-14 05:32:32 +01:00
|
|
|
|
2024-03-14 14:35:19 +01:00
|
|
|
inputs[| 9] = nodeValue("Mask", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, noone);
|
2023-02-14 05:32:32 +01:00
|
|
|
|
|
|
|
inputs[| 10] = nodeValue("Mix", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 1)
|
2023-10-02 08:57:44 +02:00
|
|
|
.setDisplay(VALUE_DISPLAY.slider);
|
2023-01-25 06:49:00 +01:00
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
inputs[| 11] = nodeValue("Active", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, true);
|
|
|
|
active_index = 11;
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-10-23 11:39:41 +02:00
|
|
|
inputs[| 12] = nodeValue("Crop border", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, false);
|
|
|
|
|
2023-11-24 10:41:53 +01:00
|
|
|
__init_mask_modifier(9); // inputs 13, 14
|
|
|
|
|
2023-12-23 09:39:55 +01:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
inputs[| 15] = nodeValueMap("Width map", self);
|
|
|
|
|
|
|
|
inputs[| 16] = nodeValueMap("Blend alpha map", self);
|
|
|
|
|
|
|
|
inputs[| 17] = nodeValueMap("Start map", self);
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2023-02-14 05:32:32 +01:00
|
|
|
outputs[| 0] = nodeValue("Surface out", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, noone);
|
|
|
|
|
|
|
|
outputs[| 1] = nodeValue("Outline", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, noone);
|
|
|
|
|
|
|
|
input_display_list = [ 11,
|
2023-11-24 10:41:53 +01:00
|
|
|
["Surfaces", true], 0, 9, 10, 13, 14,
|
2023-12-23 09:39:55 +01:00
|
|
|
["Outline", false], 1, 15, 5, 8, 17, 12,
|
2024-01-09 03:39:40 +01:00
|
|
|
["Render", false], 2, 6,
|
|
|
|
["Blend", true, 3], 4, 16,
|
2023-01-01 02:06:02 +01:00
|
|
|
];
|
|
|
|
|
2023-03-19 09:17:39 +01:00
|
|
|
attribute_surface_depth();
|
2023-03-21 03:01:53 +01:00
|
|
|
attribute_oversample();
|
2023-03-19 09:17:39 +01:00
|
|
|
|
2023-10-23 11:39:41 +02:00
|
|
|
static step = function() { #region
|
|
|
|
var _side = getInputData(5);
|
|
|
|
|
|
|
|
inputs[| 12].setVisible(_side == 0);
|
2023-11-24 10:41:53 +01:00
|
|
|
|
|
|
|
__step_mask_modifier();
|
2023-12-23 09:39:55 +01:00
|
|
|
|
|
|
|
inputs[| 1].mappableStep();
|
|
|
|
inputs[| 4].mappableStep();
|
|
|
|
inputs[| 8].mappableStep();
|
2023-10-23 11:39:41 +02:00
|
|
|
} #endregion
|
|
|
|
|
|
|
|
static processData = function(_outSurf, _data, _output_index, _array_index) { #region
|
2023-09-08 21:37:36 +02:00
|
|
|
var ww = surface_get_width_safe(_data[0]);
|
|
|
|
var hh = surface_get_height_safe(_data[0]);
|
2022-01-13 05:24:03 +01:00
|
|
|
var cl = _data[2];
|
|
|
|
|
|
|
|
var blend = _data[3];
|
|
|
|
var side = _data[5];
|
|
|
|
var aa = _data[6];
|
2023-06-13 14:42:06 +02:00
|
|
|
var sam = struct_try_get(attributes, "oversample");
|
2023-10-23 11:39:41 +02:00
|
|
|
var _crop = _data[12];
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-10-23 11:39:41 +02:00
|
|
|
surface_set_shader(_outSurf, sh_outline);
|
2023-12-23 09:39:55 +01:00
|
|
|
shader_set_f("dimension", ww, hh);
|
|
|
|
shader_set_f_map("borderSize", _data[1], _data[15], inputs[| 1]);
|
|
|
|
shader_set_f_map("borderStart", _data[8], _data[17], inputs[| 8]);
|
2023-10-23 11:39:41 +02:00
|
|
|
shader_set_color("borderColor", cl);
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-12-23 09:39:55 +01:00
|
|
|
shader_set_i("side", side);
|
|
|
|
shader_set_i("is_aa", aa);
|
|
|
|
shader_set_i("outline_only", _output_index);
|
|
|
|
shader_set_i("is_blend", blend);
|
|
|
|
shader_set_f_map("blend_alpha", _data[4], _data[16], inputs[| 4]);
|
|
|
|
shader_set_i("sampleMode", sam);
|
|
|
|
shader_set_i("crop_border", _crop);
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-12-23 09:39:55 +01:00
|
|
|
draw_surface_safe(_data[0]);
|
2023-10-23 11:39:41 +02:00
|
|
|
surface_reset_shader();
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2023-11-24 10:41:53 +01:00
|
|
|
__process_mask_modifier(_data);
|
2023-02-14 05:32:32 +01:00
|
|
|
_outSurf = mask_apply(_data[0], _outSurf, _data[9], _data[10]);
|
|
|
|
|
2022-12-27 04:00:50 +01:00
|
|
|
return _outSurf;
|
2023-10-23 11:39:41 +02:00
|
|
|
} #endregion
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|