Pixel-Composer/scripts/node_curve/node_curve.gml

74 lines
2.0 KiB
Plaintext
Raw Normal View History

2023-02-28 09:43:01 +01:00
function Node_Curve(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
2023-02-14 02:48:33 +01:00
name = "Curve";
2024-08-18 06:16:20 +02:00
newInput(0, nodeValue_Surface("Surface in", self));
2023-02-14 02:48:33 +01:00
newInput(1, nodeValue_Curve("Brightness", self, CURVE_DEF_01));
2023-02-14 02:48:33 +01:00
newInput(2, nodeValue_Curve("Red", self, CURVE_DEF_01));
2023-02-14 02:48:33 +01:00
newInput(3, nodeValue_Curve("Green", self, CURVE_DEF_01));
2023-02-14 02:48:33 +01:00
newInput(4, nodeValue_Curve("Blue", self, CURVE_DEF_01));
2023-02-14 02:48:33 +01:00
2024-08-18 06:16:20 +02:00
newInput(5, nodeValue_Surface("Mask", self));
2023-02-14 02:48:33 +01:00
2024-08-18 09:13:41 +02:00
newInput(6, nodeValue_Float("Mix", self, 1))
.setDisplay(VALUE_DISPLAY.slider);
2023-02-14 02:48:33 +01:00
2024-08-18 06:16:20 +02:00
newInput(7, nodeValue_Bool("Active", self, true));
2023-02-14 02:48:33 +01:00
active_index = 7;
2024-08-18 06:16:20 +02:00
newInput(8, nodeValue_Toggle("Channel", self, 0b1111, { data: array_create(4, THEME.inspector_channel) }));
2023-11-24 10:41:53 +01:00
__init_mask_modifier(5); // inputs 9, 10
newInput(11, nodeValue_Curve("Alpha", self, CURVE_DEF_01));
2024-05-25 07:01:54 +02:00
2024-09-04 03:57:11 +02:00
newOutput(0, nodeValue_Output("Surface out", self, VALUE_TYPE.surface, noone));
2023-02-14 02:48:33 +01:00
input_display_list = [ 7, 8,
2023-11-24 10:41:53 +01:00
["Surfaces", true], 0, 5, 6, 9, 10,
2024-05-25 07:01:54 +02:00
["Curve", false], 1, 2, 3, 4, 11,
2023-02-14 02:48:33 +01:00
];
2023-03-19 09:17:39 +01:00
attribute_surface_depth();
static step = function() {
2023-11-24 10:41:53 +01:00
__step_mask_modifier();
}
2023-11-24 10:41:53 +01:00
static processData = function(_outSurf, _data, _output_index, _array_index) {
2023-02-14 02:48:33 +01:00
var _wcur = _data[1];
var _rcur = _data[2];
var _gcur = _data[3];
var _bcur = _data[4];
2024-05-25 07:01:54 +02:00
var _acur = _data[11];
2023-02-14 02:48:33 +01:00
2024-01-09 03:39:40 +01:00
surface_set_shader(_outSurf, sh_curve);
shader_set_f("w_curve", _wcur);
shader_set_i("w_amount", array_length(_wcur));
shader_set_f("r_curve", _rcur);
shader_set_i("r_amount", array_length(_rcur));
shader_set_f("g_curve", _gcur);
shader_set_i("g_amount", array_length(_gcur));
shader_set_f("b_curve", _bcur);
shader_set_i("b_amount", array_length(_bcur));
2023-02-14 02:48:33 +01:00
2024-05-25 07:01:54 +02:00
shader_set_f("a_curve", _acur);
shader_set_i("a_amount", array_length(_acur));
2024-01-09 03:39:40 +01:00
draw_surface_safe(_data[0]);
surface_reset_shader();
2023-02-14 02:48:33 +01:00
2023-11-24 10:41:53 +01:00
__process_mask_modifier(_data);
2023-02-14 02:48:33 +01:00
_outSurf = mask_apply(_data[0], _outSurf, _data[5], _data[6]);
_outSurf = channel_apply(_data[0], _outSurf, _data[8]);
2023-02-14 02:48:33 +01:00
return _outSurf;
}
2023-02-14 02:48:33 +01:00
}