mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-13 05:53:53 +01:00
90 lines
2.7 KiB
Plaintext
90 lines
2.7 KiB
Plaintext
function Node_create_Posterize(_x, _y) {
|
|
var node = new Node_Posterize(_x, _y);
|
|
ds_list_add(PANEL_GRAPH.nodes_list, node);
|
|
return node;
|
|
}
|
|
|
|
function Node_Posterize(_x, _y) : Node_Processor(_x, _y) constructor {
|
|
name = "Posterize";
|
|
|
|
uniform_colors = shader_get_uniform(sh_posterize, "colors");
|
|
uniform_gamma = shader_get_uniform(sh_posterize, "gamma");
|
|
|
|
uniform_color = shader_get_uniform(sh_posterize_palette, "palette");
|
|
uniform_key = shader_get_uniform(sh_posterize_palette, "keys");
|
|
|
|
inputs[| 0] = nodeValue(0, "Surface in", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, 0);
|
|
inputs[| 1] = nodeValue(1, "Palette", self, JUNCTION_CONNECT.input, VALUE_TYPE.color, [ c_white ])
|
|
.setDisplay(VALUE_DISPLAY.palette);
|
|
|
|
inputs[| 2] = nodeValue(2, "Use palette", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, true);
|
|
|
|
inputs[| 3] = nodeValue(3, "Colors", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 4)
|
|
.setDisplay(VALUE_DISPLAY.slider, [2, 16, 1]);
|
|
|
|
inputs[| 4] = nodeValue(4, "Gamma", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0.6)
|
|
.setDisplay(VALUE_DISPLAY.slider, [0, 1, 0.01]);
|
|
|
|
input_display_list = [
|
|
["Effect settings", false], 0, 2, 1,
|
|
["Auto color", false], 3, 4
|
|
];
|
|
|
|
outputs[| 0] = nodeValue(0, "Surface out", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, surface_create(1, 1));
|
|
|
|
static step = function() {
|
|
var _use_pal = inputs[| 2].getValue();
|
|
|
|
inputs[| 1].show_in_inspector = _use_pal;
|
|
inputs[| 3].show_in_inspector = !_use_pal;
|
|
inputs[| 4].show_in_inspector = !_use_pal;
|
|
}
|
|
|
|
static process_data = function(_outSurf, _data, _output_index) {
|
|
var _gra = _data[1];
|
|
var _use_gra = _data[2];
|
|
|
|
if(_use_gra) {
|
|
var _colors = array_create(array_length(_gra) * 4);
|
|
for(var i = 0; i < array_length(_gra); i++) {
|
|
_colors[i * 4 + 0] = color_get_red(_gra[i]) / 255;
|
|
_colors[i * 4 + 1] = color_get_green(_gra[i]) / 255;
|
|
_colors[i * 4 + 2] = color_get_blue(_gra[i]) / 255;
|
|
_colors[i * 4 + 3] = 1;
|
|
}
|
|
|
|
surface_set_target(_outSurf);
|
|
draw_clear_alpha(0, 0);
|
|
BLEND_ADD
|
|
|
|
shader_set(sh_posterize_palette);
|
|
shader_set_uniform_f_array(uniform_color, _colors);
|
|
shader_set_uniform_i(uniform_key, array_length(_gra));
|
|
|
|
draw_surface_safe(_data[0], 0, 0);
|
|
shader_reset();
|
|
|
|
BLEND_NORMAL
|
|
surface_reset_target();
|
|
} else {
|
|
var _colors = _data[3];
|
|
var _gamma = _data[4];
|
|
|
|
surface_set_target(_outSurf);
|
|
draw_clear_alpha(0, 0);
|
|
BLEND_ADD
|
|
|
|
shader_set(sh_posterize);
|
|
shader_set_uniform_i(uniform_colors, _colors);
|
|
shader_set_uniform_f(uniform_gamma, _gamma);
|
|
|
|
draw_surface_safe(_data[0], 0, 0);
|
|
shader_reset();
|
|
|
|
BLEND_NORMAL
|
|
surface_reset_target();
|
|
}
|
|
|
|
return _outSurf;
|
|
}
|
|
} |