mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-14 06:23:55 +01:00
56 lines
1.7 KiB
Plaintext
56 lines
1.7 KiB
Plaintext
function Node_Padding(_x, _y, _group = -1) : Node_Processor(_x, _y, _group) constructor {
|
|
name = "Padding";
|
|
dimension_index = -1;
|
|
|
|
inputs[| 0] = nodeValue("Surface in", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, 0);
|
|
|
|
inputs[| 1] = nodeValue("Padding", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, [0, 0, 0, 0])
|
|
.setDisplay(VALUE_DISPLAY.padding)
|
|
.setUnitRef(function(index) { return getDimension(index); });
|
|
|
|
inputs[| 2] = nodeValue("Fill method", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0)
|
|
.setDisplay(VALUE_DISPLAY.enum_scroll, [ "Empty", "Solid" ]);
|
|
|
|
inputs[| 3] = nodeValue("Fill color", self, JUNCTION_CONNECT.input, VALUE_TYPE.color, c_black);
|
|
|
|
inputs[| 4] = nodeValue("Active", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, true);
|
|
active_index = 4;
|
|
|
|
outputs[| 0] = nodeValue("Surface out", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, noone);
|
|
|
|
input_display_list = [ 4,
|
|
["Surface", true], 0,
|
|
["Padding", false], 1, 2, 3
|
|
];
|
|
|
|
static process_data = function(_outSurf, _data, _output_index, _array_index) {
|
|
var padding = _data[1];
|
|
var fill = _data[2];
|
|
var fillClr = _data[3];
|
|
|
|
inputs[| 3].setVisible(fill);
|
|
|
|
var ww = surface_get_width(_data[0]);
|
|
var hh = surface_get_height(_data[0]);
|
|
|
|
var sw = ww + padding[0] + padding[2];
|
|
var sh = hh + padding[1] + padding[3];
|
|
|
|
if(sw > 1 && sh > 1) {
|
|
_outSurf = surface_verify(_outSurf, sw, sh);
|
|
|
|
surface_set_target(_outSurf);
|
|
if(fill == 0) {
|
|
draw_clear_alpha(0, 0);
|
|
BLEND_OVERRIDE;
|
|
} else if(fill == 1) {
|
|
draw_clear_alpha(fillClr, 1);
|
|
}
|
|
|
|
draw_surface_safe(_data[0], padding[2], padding[1]);
|
|
BLEND_NORMAL;
|
|
surface_reset_target();
|
|
}
|
|
return _outSurf;
|
|
}
|
|
} |