mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-13 05:53:53 +01:00
72 lines
2.3 KiB
Plaintext
72 lines
2.3 KiB
Plaintext
function nodeValue_Dimension(_node, value = DEF_SURF) { return new NodeValue_Dimension(_node, value); }
|
|
|
|
function NodeValue_Dimension(_node, value) : NodeValue("Dimension", _node, CONNECT_TYPE.input, VALUE_TYPE.integer, value, "") constructor {
|
|
setDisplay(VALUE_DISPLAY.vector);
|
|
|
|
/////============== GET =============
|
|
|
|
static valueProcess = function(value, nodeFrom = undefined, applyUnit = true, arrIndex = 0) {
|
|
var typeFrom = nodeFrom == undefined? VALUE_TYPE.any : nodeFrom.type;
|
|
|
|
if(typeFrom == VALUE_TYPE.text) value = toNumber(value);
|
|
if(validator != noone) value = validator.validate(value);
|
|
|
|
return applyUnit? unit.apply(value, arrIndex) : value;
|
|
}
|
|
|
|
static getValue = function(_time = CURRENT_FRAME, applyUnit = true, arrIndex = 0, useCache = false, log = false) { //// Get value
|
|
getValueRecursive(self.__curr_get_val, _time);
|
|
var val = __curr_get_val[0];
|
|
var nod = __curr_get_val[1];
|
|
|
|
var typ = nod.type;
|
|
var dis = nod.display_type;
|
|
|
|
if(typ != VALUE_TYPE.surface) {
|
|
if(!is_array(val)) val = [ val, val ];
|
|
if(array_length(val) != 2) val = [ array_safe_get_fast(val, 0), array_safe_get_fast(val, 1) ];
|
|
|
|
return valueProcess(val, nod, applyUnit, arrIndex);
|
|
}
|
|
|
|
// Dimension conversion
|
|
if(is_array(val)) {
|
|
var eqSize = true;
|
|
var sArr = [];
|
|
var _osZ = 0;
|
|
|
|
for( var i = 0, n = array_length(val); i < n; i++ ) {
|
|
if(!is_surface(val[i])) continue;
|
|
|
|
var surfSz = surface_get_dimension(val[i]);
|
|
array_push(sArr, surfSz);
|
|
|
|
if(i && !array_equals(surfSz, _osZ))
|
|
eqSize = false;
|
|
|
|
_osZ = surfSz;
|
|
}
|
|
|
|
if(eqSize) return _osZ;
|
|
return sArr;
|
|
} else if (is_surface(val))
|
|
return [ surface_get_width_safe(val), surface_get_height_safe(val) ];
|
|
return [ 1, 1 ];
|
|
}
|
|
|
|
static __getAnimValue = function(_time = CURRENT_FRAME) {
|
|
if(node.attributes.use_project_dimension) return PROJECT.attributes.surface_dimension;
|
|
|
|
if(!is_anim) {
|
|
if(sep_axis) return array_create_ext(2, function(i) /*=>*/ {return animators[i].processType(animators[i].values[0].value)});
|
|
return array_empty(animator.values)? 0 : animator.processType(animator.values[0].value);
|
|
}
|
|
|
|
if(sep_axis) {
|
|
__temp_time = _time;
|
|
return array_create_ext(2, function(i) /*=>*/ {return animators[i].getValue(__temp_time)});
|
|
}
|
|
|
|
return animator.getValue(_time);
|
|
}
|
|
} |