123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- import { Node } from '../../core/Node.js';
- import { ColorNode } from '../../inputs/ColorNode.js';
- class BasicNode extends Node {
- constructor() {
- super();
- this.color = new ColorNode( 0xFFFFFF );
- }
- generate( builder ) {
- let code;
- if ( builder.isShader( 'vertex' ) ) {
- const position = this.position ? this.position.analyzeAndFlow( builder, 'v3', { cache: 'position' } ) : undefined;
- const output = [
- '#include <beginnormal_vertex>',
- '#include <morphnormal_vertex>',
- '#include <skinnormal_vertex>',
- '#include <defaultnormal_vertex>'
- ];
- output.push(
- '#include <begin_vertex>'
- );
- if ( position ) {
- output.push(
- position.code,
- position.result ? 'transformed = ' + position.result + ';' : ''
- );
- }
- output.push(
- '#include <morphtarget_vertex>',
- '#include <skinning_vertex>',
- '#include <project_vertex>',
- '#include <logdepthbuf_vertex>',
- '#include <worldpos_vertex>',
- '#include <clipping_planes_vertex>',
- '#include <fog_vertex>',
- );
- code = output.join( '\n' );
- } else {
- // Analyze all nodes to reuse generate codes
- this.color.analyze( builder, { slot: 'color' } );
- if ( this.alpha ) this.alpha.analyze( builder );
- if ( this.mask ) this.mask.analyze( builder );
- // Build code
- const color = this.color.flow( builder, 'c', { slot: 'color' } );
- const alpha = this.alpha ? this.alpha.flow( builder, 'f' ) : undefined;
- const mask = this.mask ? this.mask.flow( builder, 'b' ) : undefined;
- builder.requires.transparent = alpha !== undefined;
- const output = [
- color.code
- ];
- if ( mask ) {
- output.push(
- mask.code,
- 'if ( ! ' + mask.result + ' ) discard;'
- );
- }
- if ( alpha ) {
- output.push(
- alpha.code,
- '#ifdef ALPHATEST',
- ' if ( ' + alpha.result + ' <= ALPHATEST ) discard;',
- '#endif'
- );
- }
- if ( alpha ) {
- output.push( 'gl_FragColor = vec4(' + color.result + ', ' + alpha.result + ' );' );
- } else {
- output.push( 'gl_FragColor = vec4(' + color.result + ', 1.0 );' );
- }
- code = output.join( '\n' );
- }
- return code;
- }
- copy( source ) {
- super.copy( source );
- this.color = source.color;
- if ( source.position ) this.position = source.position;
- if ( source.alpha ) this.alpha = source.alpha;
- if ( source.mask ) this.mask = source.mask;
- return this;
- }
- toJSON( meta ) {
- let data = this.getJSONNode( meta );
- if ( ! data ) {
- data = this.createJSONNode( meta );
- data.color = this.color.toJSON( meta ).uuid;
- if ( this.position ) data.position = this.position.toJSON( meta ).uuid;
- if ( this.alpha ) data.alpha = this.alpha.toJSON( meta ).uuid;
- if ( this.mask ) data.mask = this.mask.toJSON( meta ).uuid;
- }
- return data;
- }
- }
- BasicNode.prototype.nodeType = 'Basic';
- export { BasicNode };
|