Pixel-Composer/scripts/node_surface_data/node_surface_data.gml

35 lines
993 B
Plaintext
Raw Normal View History

2023-02-28 09:43:01 +01:00
function Node_Surface_data(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
2022-01-13 05:24:03 +01:00
name = "Surface data";
2022-11-18 03:20:31 +01:00
color = COLORS.node_blend_number;
2022-01-13 05:24:03 +01:00
2024-08-18 06:16:20 +02:00
newInput(0, nodeValue_Surface("Surface", self));
2022-01-13 05:24:03 +01:00
2024-09-04 03:57:11 +02:00
newOutput(0, nodeValue_Output("Dimension", self, VALUE_TYPE.integer, [ 1, 1 ]))
2022-01-13 05:24:03 +01:00
.setDisplay(VALUE_DISPLAY.vector);
2024-06-23 07:30:42 +02:00
2024-09-04 03:57:11 +02:00
newOutput(1, nodeValue_Output("Array length", self, VALUE_TYPE.integer, 0));
2022-01-13 05:24:03 +01:00
2023-01-17 08:11:55 +01:00
2024-05-02 11:05:02 +02:00
setDimension(96, 48);
2022-01-13 05:24:03 +01:00
2023-10-09 16:07:33 +02:00
static update = function(frame = CURRENT_FRAME) {
var _insurf = getInputData(0);
2022-01-13 05:24:03 +01:00
if(is_array(_insurf)) {
var len = array_length(_insurf);
var _dim = array_create(len);
for( var i = 0; i < len; i++ ) {
2023-09-08 21:37:36 +02:00
_dim[i][0] = surface_get_width_safe(_insurf[i]);
_dim[i][1] = surface_get_height_safe(_insurf[i]);
2022-01-13 05:24:03 +01:00
}
2024-08-08 06:57:51 +02:00
outputs[0].setValue(_dim);
outputs[1].setValue(len);
2022-01-13 05:24:03 +01:00
return;
}
if(!_insurf || !surface_exists(_insurf)) return;
2024-08-08 06:57:51 +02:00
outputs[0].setValue([ surface_get_width_safe(_insurf), surface_get_height_safe(_insurf) ]);
2022-01-13 05:24:03 +01:00
}
}