Pixel-Composer/scripts/node_array_length/node_array_length.gml

37 lines
1.1 KiB
Text
Raw Normal View History

2023-02-28 09:43:01 +01:00
function Node_Array_Length(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
name = "Array Length";
previewable = false;
w = 96;
h = 32 + 24;
min_h = h;
2023-02-14 05:32:32 +01:00
inputs[| 0] = nodeValue("Array", self, JUNCTION_CONNECT.input, VALUE_TYPE.any, 0)
2022-01-19 03:05:13 +01:00
.setVisible(true, true);
2023-02-14 05:32:32 +01:00
outputs[| 0] = nodeValue("Size", self, JUNCTION_CONNECT.output, VALUE_TYPE.integer, 0);
2023-10-28 04:07:43 +02:00
static step = function() { #region
2023-10-27 13:55:31 +02:00
inputs[| 0].setType(inputs[| 0].isLeaf()? VALUE_TYPE.any : inputs[| 0].value_from.type);
2023-10-28 04:07:43 +02:00
} #endregion
static update = function(frame = CURRENT_FRAME) { #region
var _arr = getInputData(0);
2022-12-22 03:09:55 +01:00
2023-01-25 06:49:00 +01:00
if(!is_array(_arr) || array_length(_arr) == 0) {
outputs[| 0].setValue(0);
return 0;
}
2023-02-14 05:32:32 +01:00
outputs[| 0].setValue(array_length(_arr));
2023-10-28 04:07:43 +02:00
} #endregion
2023-01-25 06:49:00 +01:00
2023-10-28 04:07:43 +02:00
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) { #region
2023-01-25 06:49:00 +01:00
draw_set_text(f_h5, fa_center, fa_center, COLORS._main_text);
var str = string(outputs[| 0].getValue());
var bbox = drawGetBbox(xx, yy, _s);
var ss = string_scale(str, bbox.w, bbox.h);
draw_text_transformed(bbox.xc, bbox.yc, str, ss, ss, 0);
2023-10-28 04:07:43 +02:00
} #endregion
}