three
Version:
JavaScript 3D library
109 lines (59 loc) • 1.98 kB
JavaScript
/**
* @author sunag / http://www.sunag.com.br/
*/
import { TempNode } from './TempNode.js';
function FunctionCallNode( func, inputs ) {
TempNode.call( this );
this.setFunction( func, inputs );
}
FunctionCallNode.prototype = Object.create( TempNode.prototype );
FunctionCallNode.prototype.constructor = FunctionCallNode;
FunctionCallNode.prototype.nodeType = "FunctionCall";
FunctionCallNode.prototype.setFunction = function ( func, inputs ) {
this.value = func;
this.inputs = inputs || [];
};
FunctionCallNode.prototype.getFunction = function () {
return this.value;
};
FunctionCallNode.prototype.getType = function ( builder ) {
return this.value.getType( builder );
};
FunctionCallNode.prototype.generate = function ( builder, output ) {
var type = this.getType( builder ),
func = this.value;
var code = func.build( builder, output ) + '( ',
params = [];
for ( var i = 0; i < func.inputs.length; i ++ ) {
var inpt = func.inputs[ i ],
param = this.inputs[ i ] || this.inputs[ inpt.name ];
params.push( param.build( builder, builder.getTypeByFormat( inpt.type ) ) );
}
code += params.join( ', ' ) + ' )';
return builder.format( code, type, output );
};
FunctionCallNode.prototype.copy = function ( source ) {
TempNode.prototype.copy.call( this, source );
for ( var prop in source.inputs ) {
this.inputs[ prop ] = source.inputs[ prop ];
}
this.value = source.value;
};
FunctionCallNode.prototype.toJSON = function ( meta ) {
var data = this.getJSONNode( meta );
if ( ! data ) {
var func = this.value;
data = this.createJSONNode( meta );
data.value = this.value.toJSON( meta ).uuid;
if ( func.inputs.length ) {
data.inputs = {};
for ( var i = 0; i < func.inputs.length; i ++ ) {
var inpt = func.inputs[ i ],
node = this.inputs[ i ] || this.inputs[ inpt.name ];
data.inputs[ inpt.name ] = node.toJSON( meta ).uuid;
}
}
}
return data;
};
export { FunctionCallNode };