mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-14 06:23:55 +01:00
48 lines
1.2 KiB
Plaintext
48 lines
1.2 KiB
Plaintext
function Node_PB(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
|
|
name = "PB Element";
|
|
icon = THEME.pixel_builder;
|
|
fullUpdate = true;
|
|
|
|
w = 128;
|
|
h = 128;
|
|
min_h = h;
|
|
|
|
static getNextNodesRaw = getNextNodes;
|
|
|
|
static drawOverlay = function(active, _x, _y, _s, _mx, _my, _snx, _sny) {
|
|
if(drawOverlayPB != noone)
|
|
drawOverlayPB(active, _x, _y, _s, _mx, _my, _snx, _sny);
|
|
|
|
for( var i = 0; i < ds_list_size(outputs); i++ ) {
|
|
if(outputs[| i].type != VALUE_TYPE.pbBox) continue;
|
|
|
|
var _box = outputs[| i].getValue();
|
|
if(!is_array(_box)) _box = [ _box ];
|
|
|
|
for( var j = 0; j < array_length(_box); j++ ) {
|
|
if(!is_instanceof(_box[j], __pbBox)) continue;
|
|
_box[j].drawOverlay(_x, _y, _s, c_red);
|
|
}
|
|
}
|
|
}
|
|
|
|
static drawOverlayPB = noone;
|
|
|
|
static getNextNodes = function() {
|
|
if(!struct_has(group, "checkComplete")) return [];
|
|
|
|
for( var i = 0; i < ds_list_size(outputs); i++ ) {
|
|
var _ot = outputs[| i];
|
|
var _tos = _ot.getJunctionTo();
|
|
|
|
if(array_length(_tos) > 0)
|
|
return getNextNodesRaw();
|
|
}
|
|
|
|
return group.checkComplete();
|
|
}
|
|
|
|
static getPreviewValue = function() {
|
|
return group.outputs[| 0];
|
|
}
|
|
} |