Pixel-Composer/scripts/node_processor/node_processor.gml

214 lines
6.5 KiB
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01:00
enum ARRAY_PROCESS {
loop,
2023-02-28 09:43:01 +01:00
hold,
expand,
expand_inv,
2022-01-13 05:24:03 +01:00
}
2023-03-02 07:59:14 +01:00
#macro PROCESSOR_OVERLAY_CHECK if(array_length(current_data) != ds_list_size(inputs)) return;
2023-02-28 09:43:01 +01:00
function Node_Processor(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
2023-03-19 09:17:39 +01:00
attributes[? "array_process"] = ARRAY_PROCESS.loop;
2022-12-27 13:30:02 +01:00
current_data = [];
inputs_data = [];
2023-01-01 02:06:02 +01:00
process_amount = 0;
2023-02-28 09:43:01 +01:00
process_length = [];
2022-12-27 13:30:02 +01:00
dimension_index = 0;
2023-02-14 02:51:14 +01:00
active_index = -1;
2022-01-13 05:24:03 +01:00
2022-11-18 03:20:31 +01:00
icon = THEME.node_processor;
2022-01-13 05:24:03 +01:00
2023-03-19 09:17:39 +01:00
array_push(attributeEditors, "Array processor");
array_push(attributeEditors, [ "Array process type", "array_process",
new scrollBox([ "Loop", "Hold", "Expand", "Expand inverse" ], function(val) { attributes[? "array_process"] = val; } ) ]);
2023-02-14 02:51:14 +01:00
static process_data = function(_outSurf, _data, _output_index, _array_index = 0) { return _outSurf; }
2022-01-13 05:24:03 +01:00
2023-03-05 07:16:44 +01:00
static getSingleValue = function(_index, _arr = 0, output = false) {
var _l = output? outputs : inputs;
var _n = _l[| _index];
2022-12-27 13:30:02 +01:00
var _in = _n.getValue();
2022-12-27 04:00:50 +01:00
2023-02-28 09:43:01 +01:00
if(!_n.isArray()) return _in;
2023-03-19 09:17:39 +01:00
switch(attributes[? "array_process"]) {
2023-02-28 09:43:01 +01:00
case ARRAY_PROCESS.loop : _index = safe_mod(_arr, array_length(_in)); break;
case ARRAY_PROCESS.hold : _index = min(_arr, array_length(_in) - 1); break;
case ARRAY_PROCESS.expand : _index = floor(_arr / process_length[_index][1]) % process_length[_index][0]; break;
2023-03-05 07:16:44 +01:00
case ARRAY_PROCESS.expand_inv : _index = floor(_arr / process_length[ds_list_size(_l) - 1 - _index][1]) % process_length[_index][0]; break;
2023-02-28 09:43:01 +01:00
}
return array_safe_get(_in, _index);
2022-12-27 13:30:02 +01:00
}
static getDimension = function(arr = 0) {
if(dimension_index == -1) return [1, 1];
var _in = getSingleValue(dimension_index, arr);
2023-01-01 02:06:02 +01:00
if(inputs[| dimension_index].type == VALUE_TYPE.surface && is_surface(_in)) {
2022-12-27 13:30:02 +01:00
var ww = surface_get_width(_in);
var hh = surface_get_height(_in);
2022-12-27 04:00:50 +01:00
return [ww, hh];
2022-01-13 05:24:03 +01:00
}
2022-12-27 13:30:02 +01:00
if(is_array(_in) && array_length(_in) == 2)
return _in;
2022-12-27 04:00:50 +01:00
return [1, 1];
}
static preProcess = function(outIndex) {
var _out = outputs[| outIndex].getValue();
2022-12-18 03:20:38 +01:00
2022-12-27 04:00:50 +01:00
if(process_amount == 0) { //render single data
2023-01-01 02:06:02 +01:00
if(outputs[| outIndex].type == VALUE_TYPE.d3object) //passing 3D vertex call
return _out;
2023-02-14 02:51:14 +01:00
if(is_array(_out) && outputs[| outIndex].type == VALUE_TYPE.surface) { //free surface if needed
for(var i = 1; i < array_length(_out); i++)
2022-12-27 04:00:50 +01:00
if(is_surface(_out[i])) surface_free(_out[i]);
}
2023-03-19 09:17:39 +01:00
if(outputs[| outIndex].type == VALUE_TYPE.surface && dimension_index > -1) { //resize surface
2022-12-27 13:30:02 +01:00
var surf = inputs_data[dimension_index];
var _sw = 1, _sh = 1;
2023-02-14 02:51:14 +01:00
if(inputs[| dimension_index].type == VALUE_TYPE.surface) {
if(is_surface(surf)) {
_sw = surface_get_width(surf);
_sh = surface_get_height(surf);
} else
return noone;
2022-12-27 13:30:02 +01:00
} else if(is_array(surf)) {
2023-03-07 14:29:47 +01:00
_sw = array_safe_get(surf, 0, 1);
_sh = array_safe_get(surf, 1, 1);
2022-12-27 13:30:02 +01:00
}
2023-03-19 09:17:39 +01:00
_out = surface_verify(_out, _sw, _sh, attrDepth());
2022-12-27 04:00:50 +01:00
}
current_data = inputs_data;
2023-02-14 02:51:14 +01:00
if(active_index > -1 && !inputs_data[active_index]) { // skip
if(inputs[| 0].type == VALUE_TYPE.surface)
return surface_clone(inputs_data[0], _out);
else
return inputs_data[0]
}
2023-01-01 02:06:02 +01:00
return process_data(_out, inputs_data, outIndex, 0);
}
if(outputs[| outIndex].type == VALUE_TYPE.d3object) { //passing 3D vertex call
if(is_array(_out)) _out = _out[0];
return array_create(process_amount, _out);
2022-12-27 04:00:50 +01:00
}
if(!is_array(_out))
_out = array_create(process_amount);
else if(array_length(_out) != process_amount)
array_resize(_out, process_amount);
var _data = array_create(ds_list_size(inputs));
for(var l = 0; l < process_amount; l++) {
for(var i = 0; i < ds_list_size(inputs); i++) { //input prepare
var _in = inputs_data[i];
2022-01-13 05:24:03 +01:00
2022-12-27 04:00:50 +01:00
if(!inputs[| i].isArray(_in)) {
_data[i] = inputs_data[i];
continue;
2022-01-13 05:24:03 +01:00
}
2022-12-27 04:00:50 +01:00
if(array_length(_in) == 0) {
_data[i] = 0;
continue;
2022-01-13 05:24:03 +01:00
}
2022-12-27 04:00:50 +01:00
var _index = 0;
2023-03-19 09:17:39 +01:00
switch(attributes[? "array_process"]) {
2023-02-28 09:43:01 +01:00
case ARRAY_PROCESS.loop : _index = safe_mod(l, array_length(_in)); break;
case ARRAY_PROCESS.hold : _index = min(l, array_length(_in) - 1); break;
case ARRAY_PROCESS.expand : _index = floor(l / process_length[i][1]) % process_length[i][0]; break;
case ARRAY_PROCESS.expand_inv : _index = floor(l / process_length[ds_list_size(inputs) - 1 - i][1]) % process_length[i][0]; break;
2022-11-22 14:25:39 +01:00
}
2022-12-27 04:00:50 +01:00
_data[i] = _in[_index];
2022-01-13 05:24:03 +01:00
}
2022-12-27 04:00:50 +01:00
2022-12-27 13:30:02 +01:00
if(outputs[| outIndex].type == VALUE_TYPE.surface && dimension_index > -1) {
var surf = _data[dimension_index];
var _sw = 1, _sh = 1;
2023-02-14 02:51:14 +01:00
if(inputs[| dimension_index].type == VALUE_TYPE.surface) {
if(is_surface(surf)) {
_sw = surface_get_width(surf);
_sh = surface_get_height(surf);
} else
return noone;
2022-12-27 13:30:02 +01:00
} else if(is_array(surf)) {
_sw = surf[0];
_sh = surf[1];
}
2023-03-19 09:17:39 +01:00
_out[l] = surface_verify(_out[l], _sw, _sh, attrDepth());
2022-12-27 04:00:50 +01:00
}
2023-02-14 02:51:14 +01:00
if(l == 0 || l == preview_index)
2022-12-27 13:30:02 +01:00
current_data = _data;
2023-02-14 02:51:14 +01:00
if(active_index > -1 && !_data[active_index]) { // skip
if(inputs[| 0].type == VALUE_TYPE.surface)
_out[l] = surface_clone(_data[0], _out[l]);
else
_out[l] = _data[0];
} else
_out[l] = process_data(_out[l], _data, outIndex, l);
2022-01-13 05:24:03 +01:00
}
2022-12-27 04:00:50 +01:00
return _out;
2022-01-13 05:24:03 +01:00
}
2023-02-14 02:51:14 +01:00
static update = function(frame = ANIMATOR.current_frame) {
2023-02-28 09:43:01 +01:00
process_amount = 0;
inputs_data = array_create(ds_list_size(inputs));
process_length = array_create(ds_list_size(inputs));
2022-01-13 05:24:03 +01:00
2022-12-27 04:00:50 +01:00
for(var i = 0; i < ds_list_size(inputs); i++) { //pre-collect current input data
2023-02-28 09:43:01 +01:00
var val = inputs[| i].getValue();
var amo = inputs[| i].arrayLength(val);
2022-12-27 04:00:50 +01:00
2023-02-28 09:43:01 +01:00
inputs_data[i] = val;
2022-01-13 05:24:03 +01:00
2023-03-19 09:17:39 +01:00
switch(attributes[? "array_process"]) {
2023-02-28 09:43:01 +01:00
case ARRAY_PROCESS.loop :
case ARRAY_PROCESS.hold :
process_amount = max(process_amount, amo);
break;
case ARRAY_PROCESS.expand :
case ARRAY_PROCESS.expand_inv :
if(amo && process_amount == 0)
process_amount = 1;
process_amount *= max(1, amo);
break;
}
process_length[i] = [max(1, amo), process_amount];
}
var amoMax = process_amount;
for( var i = 0; i < array_length(process_length); i++ ) {
amoMax /= process_length[i][0];
process_length[i][1] = amoMax;
2022-12-27 04:00:50 +01:00
}
2022-01-13 05:24:03 +01:00
2022-12-27 04:00:50 +01:00
for(var i = 0; i < ds_list_size(outputs); i++)
outputs[| i].setValue(preProcess(i));
2022-01-13 05:24:03 +01:00
}
2023-02-28 09:43:01 +01:00
static processSerialize = function(_map) {
2023-03-19 09:17:39 +01:00
_map[? "array_process"] = attributes[? "array_process"];
2023-02-28 09:43:01 +01:00
}
static processDeserialize = function() {
2023-03-19 09:17:39 +01:00
attributes[? "array_process"] = ds_map_try_get(load_map, "array_process", ARRAY_PROCESS.loop);
2023-02-28 09:43:01 +01:00
}
2022-01-13 05:24:03 +01:00
}