Pixel-Composer/scripts/node_array_shift/node_array_shift.gml

39 lines
1.2 KiB
Plaintext
Raw Normal View History

function Node_Array_Shift(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
2024-03-28 14:18:02 +01:00
name = "Array Shift";
setDimension(96, 32 + 24);
2023-03-07 14:29:47 +01:00
inputs[| 0] = nodeValue("Array", self, JUNCTION_CONNECT.input, VALUE_TYPE.any, 0)
.setArrayDepth(99)
2023-03-07 14:29:47 +01:00
.setVisible(true, true);
inputs[| 1] = nodeValue("Shift", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0)
outputs[| 0] = nodeValue("Array", self, JUNCTION_CONNECT.output, VALUE_TYPE.any, 0);
static processData = function(_outSurf, _data, _output_index, _array_index) {
var _arr = _data[0];
var _shf = _data[1];
2023-03-07 14:29:47 +01:00
inputs[| 0].setType(VALUE_TYPE.any);
2023-10-07 16:23:40 +02:00
outputs[| 0].setType(VALUE_TYPE.any);
2023-03-07 14:29:47 +01:00
if(!is_array(_arr)) return [];
2023-03-07 14:29:47 +01:00
if(inputs[| 0].value_from != noone) {
var type = inputs[| 0].value_from.type;
inputs[| 0].setType(type);
2023-10-07 16:23:40 +02:00
outputs[| 0].setType(type);
2023-03-07 14:29:47 +01:00
}
var arr = [];
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(_arr); i < n; i++ )
2023-03-07 14:29:47 +01:00
arr[i] = array_safe_get(_arr, i - _shf,, ARRAY_OVERFLOW.loop);
return arr;
2023-03-07 14:29:47 +01:00
}
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
var bbox = drawGetBbox(xx, yy, _s);
2023-03-13 10:45:56 +01:00
draw_sprite_fit(s_node_array_shift, 0, bbox.xc, bbox.yc, bbox.w, bbox.h);
2023-03-07 14:29:47 +01:00
}
}