Pixel-Composer/scripts/node_scale/node_scale.gml

52 lines
1.5 KiB
Text
Raw Normal View History

2022-12-13 09:20:36 +01:00
function Node_Scale(_x, _y, _group = -1) : Node_Processor(_x, _y, _group) constructor {
2022-01-13 05:24:03 +01:00
name = "Scale";
inputs[| 0] = nodeValue(0, "Surface in", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, 0);
inputs[| 1] = nodeValue(1, "Scale", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 1);
2022-01-17 12:10:30 +01:00
2023-01-25 06:49:00 +01:00
inputs[| 2] = nodeValue(2, "Mode", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0)
.setDisplay(VALUE_DISPLAY.enum_button, [ "Upscale", "Scale to fit" ]);
inputs[| 3] = nodeValue(3, "Target dimension", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, def_surf_size2)
.setDisplay(VALUE_DISPLAY.vector);
2022-01-13 05:24:03 +01:00
2022-09-21 06:09:40 +02:00
outputs[| 0] = nodeValue(0, "Surface out", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, PIXEL_SURFACE);
2022-01-13 05:24:03 +01:00
2023-01-25 06:49:00 +01:00
input_display_list = [
["Surface", true], 0,
["Scale", false], 2, 1, 3,
];
2023-01-01 02:06:02 +01:00
static process_data = function(_outSurf, _data, _output_index, _array_index) {
2022-01-13 05:24:03 +01:00
var scale = _data[1];
2023-01-25 06:49:00 +01:00
var mode = _data[2];
var targ = _data[3];
2022-01-13 05:24:03 +01:00
2023-01-25 06:49:00 +01:00
inputs[| 1].setVisible(mode == 0);
inputs[| 3].setVisible(mode == 1);
2022-01-13 05:24:03 +01:00
2023-01-25 06:49:00 +01:00
var ww, hh;
switch(mode) {
case 0 :
ww = scale * surface_get_width(_data[0]);
hh = scale * surface_get_height(_data[0]);
break;
case 1 :
ww = targ[0];
hh = targ[1];
break;
2022-01-13 05:24:03 +01:00
}
2023-01-25 06:49:00 +01:00
_outSurf = surface_verify(_outSurf, ww, hh);
surface_set_target(_outSurf);
draw_clear_alpha(0, 0);
BLEND_OVERRIDE
draw_surface_stretched_safe(_data[0], 0, 0, ww, hh);
BLEND_NORMAL
surface_reset_target();
2022-01-13 05:24:03 +01:00
return _outSurf;
}
}