123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /**
- * @author sunag / http://www.sunag.com.br/
- */
- THREE.ConstNode = function( name, useDefine ) {
- THREE.TempNode.call( this );
- this.parse( name || THREE.ConstNode.PI, useDefine );
- };
- THREE.ConstNode.prototype = Object.create( THREE.TempNode.prototype );
- THREE.ConstNode.prototype.constructor = THREE.ConstNode;
- THREE.ConstNode.PI = 'PI';
- THREE.ConstNode.PI2 = 'PI2';
- THREE.ConstNode.RECIPROCAL_PI = 'RECIPROCAL_PI';
- THREE.ConstNode.RECIPROCAL_PI2 = 'RECIPROCAL_PI2';
- THREE.ConstNode.LOG2 = 'LOG2';
- THREE.ConstNode.EPSILON = 'EPSILON';
- THREE.ConstNode.prototype.parse = function( src, useDefine ) {
- var name, type;
- var rDeclaration = /^([a-z_0-9]+)\s([a-z_0-9]+)\s?\=(.*?)\;/i;
- var match = src.match( rDeclaration );
- if ( match && match.length > 1 ) {
- type = match[ 1 ];
- name = match[ 2 ];
- if ( useDefine ) {
- this.src = '#define ' + name + ' ' + match[ 3 ];
- }
- else {
- this.src = 'const ' + type + ' ' + name + ' = ' + match[ 3 ] + ';';
- }
- }
- else {
- name = src;
- type = 'fv1';
- }
- this.name = name;
- this.type = type;
- };
- THREE.ConstNode.prototype.generate = function( builder, output ) {
- return builder.format( this.name, this.getType( builder ), output );
- };
|