Pixel-Composer/scripts/node_VCT/node_VCT.gml

59 lines
1.6 KiB
Plaintext
Raw Normal View History

2023-07-15 20:01:29 +02:00
function Node_VCT(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
name = "VCT";
icon = THEME.vct;
color = COLORS.node_blend_vct;
vct = new VCT(self);
inputs[| 0] = nodeValue("Editor", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0)
.setDisplay(VALUE_DISPLAY.button, [ function() {
vct.createDialog();
}, "Editor" ]);
outputs[| 0] = nodeValue("Surface out", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, noone);
input_display_list = [ 0,
2023-07-17 19:58:33 +02:00
["Automations", false],
2023-07-15 20:01:29 +02:00
];
2023-08-05 14:00:33 +02:00
setIsDynamicInput(1);
2023-07-15 20:01:29 +02:00
2023-08-05 14:00:33 +02:00
static createNewInput = function(key = "") {
2023-07-15 20:01:29 +02:00
var index = ds_list_size(inputs);
var _s = floor((index - input_fix_len) / data_length);
var name = string_title(string_replace_all(key, "_", " "));
var _var = vct[$ key];
inputs[| index] = nodeValue(name, self, JUNCTION_CONNECT.input, _var.type, 0)
.setDisplay(_var.disp, _var.disp_data);
inputs[| index].extra_data.key = key;
array_append(input_display_list, [ index ]);
}
2023-08-17 16:56:54 +02:00
static processData = function(_outSurf, _data, _output_index, _array_index) {
2023-07-15 20:01:29 +02:00
for( var i = 1; i < array_length(_data); i++ )
2023-07-17 19:58:33 +02:00
vct[$ inputs[| i].extra_data.key].setDirect(_data[i]);
2023-07-18 17:51:40 +02:00
var params = {
frame: PROJECT.animator.current_frame
};
return vct.process(params);
2023-07-15 20:01:29 +02:00
}
static onDoubleClick = function(panel) {
vct.createDialog();
}
static doSerialize = function(_map) {
_map.vct = vct.serialize();
}
static postDeserialize = function() {
vct.deserialize(load_map.vct);
2023-08-05 14:00:33 +02:00
//for(var i = input_fix_len; i < array_length(_inputs); i += data_length)
// createNewInput(_inputs[i].extra_data.key);
2023-07-15 20:01:29 +02:00
}
}