Spaces:
Running
Running
File size: 2,264 Bytes
6cd9596 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
/**
* @author sunag / http://www.sunag.com.br/
*/
import { TempNode } from '../core/TempNode.js';
import { NodeLib } from '../core/NodeLib.js';
function PositionNode( scope ) {
TempNode.call( this, 'v3' );
this.scope = scope || PositionNode.LOCAL;
}
PositionNode.LOCAL = 'local';
PositionNode.WORLD = 'world';
PositionNode.VIEW = 'view';
PositionNode.PROJECTION = 'projection';
PositionNode.prototype = Object.create( TempNode.prototype );
PositionNode.prototype.constructor = PositionNode;
PositionNode.prototype.nodeType = "Position";
PositionNode.prototype.getType = function ( ) {
switch ( this.scope ) {
case PositionNode.PROJECTION:
return 'v4';
}
return this.type;
};
PositionNode.prototype.getShared = function ( builder ) {
switch ( this.scope ) {
case PositionNode.LOCAL:
case PositionNode.WORLD:
return false;
}
return true;
};
PositionNode.prototype.generate = function ( builder, output ) {
var result;
switch ( this.scope ) {
case PositionNode.LOCAL:
builder.requires.position = true;
result = builder.isShader( 'vertex' ) ? 'transformed' : 'vPosition';
break;
case PositionNode.WORLD:
builder.requires.worldPosition = true;
result = 'vWPosition';
break;
case PositionNode.VIEW:
result = builder.isShader( 'vertex' ) ? '-mvPosition.xyz' : 'vViewPosition';
break;
case PositionNode.PROJECTION:
result = builder.isShader( 'vertex' ) ? '( projectionMatrix * modelViewMatrix * vec4( position, 1.0 ) )' : 'vec4( 0.0 )';
break;
}
return builder.format( result, this.getType( builder ), output );
};
PositionNode.prototype.copy = function ( source ) {
TempNode.prototype.copy.call( this, source );
this.scope = source.scope;
};
PositionNode.prototype.toJSON = function ( meta ) {
var data = this.getJSONNode( meta );
if ( ! data ) {
data = this.createJSONNode( meta );
data.scope = this.scope;
}
return data;
};
NodeLib.addKeyword( 'position', function () {
return new PositionNode();
} );
NodeLib.addKeyword( 'worldPosition', function () {
return new PositionNode( PositionNode.WORLD );
} );
NodeLib.addKeyword( 'viewPosition', function () {
return new PositionNode( NormalNode.VIEW );
} );
export { PositionNode };
|