Pixel-Composer/scripts/node_posterize/node_posterize.gml

79 lines
2.6 KiB
Plaintext
Raw Normal View History

2023-02-28 09:43:01 +01:00
function Node_Posterize(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
2022-01-13 05:24:03 +01:00
name = "Posterize";
2024-03-14 14:35:19 +01:00
inputs[| 0] = nodeValue("Surface in", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, noone);
2023-01-25 06:49:00 +01:00
2024-04-20 05:00:28 +02:00
inputs[| 1] = nodeValue("Palette", self, JUNCTION_CONNECT.input, VALUE_TYPE.color, array_clone(DEF_PALETTE))
2022-01-13 05:24:03 +01:00
.setDisplay(VALUE_DISPLAY.palette);
2023-02-14 05:32:32 +01:00
inputs[| 2] = nodeValue("Use palette", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, true);
2022-01-13 05:24:03 +01:00
2023-02-14 05:32:32 +01:00
inputs[| 3] = nodeValue("Colors", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 4)
2024-03-24 04:58:08 +01:00
.setDisplay(VALUE_DISPLAY.slider, { range: [2, 16, 0.1] });
2022-01-13 05:24:03 +01:00
2023-02-14 05:32:32 +01:00
inputs[| 4] = nodeValue("Gamma", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0.6)
2023-12-23 09:39:55 +01:00
.setDisplay(VALUE_DISPLAY.slider)
.setMappable(7);
2022-01-13 05:24:03 +01:00
2023-02-14 05:32:32 +01:00
inputs[| 5] = nodeValue("Active", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, true);
active_index = 5;
2023-08-01 19:21:51 +02:00
inputs[| 6] = nodeValue("Posterize alpha", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, true);
2023-02-14 05:32:32 +01:00
2023-12-23 09:39:55 +01:00
//////////////////////////////////////////////////////////////////////////////////////////////////
inputs[| 7] = nodeValueMap("Gamma map", self);
//////////////////////////////////////////////////////////////////////////////////////////////////
2024-05-03 13:40:46 +02:00
inputs[| 8] = nodeValue("Space", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0)
.setDisplay(VALUE_DISPLAY.enum_button, [ "RGB", "LAB" ]);
2024-01-09 03:39:40 +01:00
input_display_list = [ 5, 0,
2024-05-03 13:40:46 +02:00
["Palette", false, 2], 1, 3, 4, 7, 8,
2024-01-09 03:39:40 +01:00
["Alpha", false, 6],
2022-01-13 05:24:03 +01:00
];
2023-02-14 05:32:32 +01:00
outputs[| 0] = nodeValue("Surface out", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, noone);
2022-01-13 05:24:03 +01:00
2023-03-19 09:17:39 +01:00
attribute_surface_depth();
2022-01-18 05:31:19 +01:00
static step = function() {
var _use_pal = getInputData(2);
2022-01-13 05:24:03 +01:00
2022-01-19 06:11:17 +01:00
inputs[| 1].setVisible(_use_pal);
inputs[| 3].setVisible(!_use_pal);
inputs[| 4].setVisible(!_use_pal);
2023-12-23 09:39:55 +01:00
inputs[| 4].mappableStep();
2024-05-03 13:40:46 +02:00
inputs[| 8].setVisible(_use_pal);
2022-01-13 05:24:03 +01:00
}
2023-08-17 16:56:54 +02:00
static processData = function(_outSurf, _data, _output_index, _array_index) {
2024-05-03 13:40:46 +02:00
var _pal = _data[1];
var _use_pal = _data[2];
2023-08-01 19:21:51 +02:00
var _alp = _data[6];
2024-05-03 13:40:46 +02:00
var _spce = _data[8];
2022-01-13 05:24:03 +01:00
2024-05-03 13:40:46 +02:00
if(_use_pal) {
2023-08-01 19:21:51 +02:00
surface_set_shader(_outSurf, sh_posterize_palette);
2024-05-03 13:40:46 +02:00
shader_set_f("palette", paletteToArray(_pal));
shader_set_i("keys", array_length(_pal));
2023-08-01 19:21:51 +02:00
shader_set_i("alpha", _alp);
2024-05-03 13:40:46 +02:00
shader_set_i("space", _spce);
2023-02-14 05:32:32 +01:00
draw_surface_safe(_data[0]);
2023-08-01 19:21:51 +02:00
surface_reset_shader();
2022-01-13 05:24:03 +01:00
} else {
2023-08-01 19:21:51 +02:00
surface_set_shader(_outSurf, sh_posterize);
2023-12-23 09:39:55 +01:00
shader_set_i("colors", _data[3]);
shader_set_f_map("gamma", _data[4], _data[7], inputs[| 4]);
shader_set_i("alpha", _alp);
2022-01-13 05:24:03 +01:00
draw_surface_safe(_data[0]);
2023-08-01 19:21:51 +02:00
surface_reset_shader();
2022-01-13 05:24:03 +01:00
}
return _outSurf;
}
}