Pixel-Composer/scripts/node_path_array/node_path_array.gml
2023-03-07 20:29:47 +07:00

91 lines
2.1 KiB
Plaintext

function Node_Path_Array(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
name = "Path Array";
previewable = false;
w = 96;
input_fix_len = ds_list_size(inputs);
data_length = 1;
outputs[| 0] = nodeValue("Path array", self, JUNCTION_CONNECT.output, VALUE_TYPE.pathnode, self);
static createNewInput = function() {
var index = ds_list_size(inputs);
inputs[| index] = nodeValue("Path", self, JUNCTION_CONNECT.input, VALUE_TYPE.pathnode, noone )
.setVisible(true, true);
return inputs[| index];
}
if(!LOADING && !APPENDING) createNewInput();
static refreshDynamicInput = function() {
var _l = ds_list_create();
for( var i = 0; i < input_fix_len; i++ ) {
_l[| i] = inputs[| i];
}
for( var i = input_fix_len; i < ds_list_size(inputs); i++ ) {
if(inputs[| i].value_from)
ds_list_add(_l, inputs[| i]);
else
delete inputs[| i];
}
for( var i = 0; i < ds_list_size(_l); i++ )
_l[| i].index = i;
ds_list_destroy(inputs);
inputs = _l;
createNewInput();
}
static onValueFromUpdate = function(index) {
if(LOADING || APPENDING) return;
refreshDynamicInput();
}
static getLineCount = function() {
var l = 0;
for( var i = input_fix_len; i < ds_list_size(inputs) - 1; i++ ) {
var _path = inputs[| i].getValue();
l += struct_has(_path, "getLineCount")? _path.getLineCount() : 1;
}
return l;
}
static getSegmentCount = function() {
return 0;
}
static getPointRatio = function(_rat, ind = 0) {
for( var i = input_fix_len; i < ds_list_size(inputs) - 1; i++ ) {
var _path = inputs[| i].getValue();
var lc = struct_has(_path, "getLineCount")? _path.getLineCount() : 1;
if(ind < lc)
return _path.getPointRatio(_rat, ind);
ind -= lc;
}
return [ 0, 0 ];
}
static update = function(frame = ANIMATOR.current_frame) {
outputs[| 0].setValue(self);
}
static postDeserialize = function() {
var _inputs = load_map[? "inputs"];
for(var i = input_fix_len; i < ds_list_size(_inputs); i += data_length)
createNewInput();
}
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
}
}