BasicNode.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. import { Node } from '../../core/Node.js';
  2. import { ColorNode } from '../../inputs/ColorNode.js';
  3. class BasicNode extends Node {
  4. constructor() {
  5. super();
  6. this.color = new ColorNode( 0xFFFFFF );
  7. }
  8. generate( builder ) {
  9. let code;
  10. if ( builder.isShader( 'vertex' ) ) {
  11. const position = this.position ? this.position.analyzeAndFlow( builder, 'v3', { cache: 'position' } ) : undefined;
  12. const output = [
  13. '#include <beginnormal_vertex>',
  14. '#include <morphnormal_vertex>',
  15. '#include <skinnormal_vertex>',
  16. '#include <defaultnormal_vertex>'
  17. ];
  18. output.push(
  19. '#include <begin_vertex>'
  20. );
  21. if ( position ) {
  22. output.push(
  23. position.code,
  24. position.result ? 'transformed = ' + position.result + ';' : ''
  25. );
  26. }
  27. output.push(
  28. '#include <morphtarget_vertex>',
  29. '#include <skinning_vertex>',
  30. '#include <project_vertex>',
  31. '#include <logdepthbuf_vertex>',
  32. '#include <worldpos_vertex>',
  33. '#include <clipping_planes_vertex>',
  34. '#include <fog_vertex>',
  35. );
  36. code = output.join( '\n' );
  37. } else {
  38. // Analyze all nodes to reuse generate codes
  39. this.color.analyze( builder, { slot: 'color' } );
  40. if ( this.alpha ) this.alpha.analyze( builder );
  41. if ( this.mask ) this.mask.analyze( builder );
  42. // Build code
  43. const color = this.color.flow( builder, 'c', { slot: 'color' } );
  44. const alpha = this.alpha ? this.alpha.flow( builder, 'f' ) : undefined;
  45. const mask = this.mask ? this.mask.flow( builder, 'b' ) : undefined;
  46. builder.requires.transparent = alpha !== undefined;
  47. const output = [
  48. color.code
  49. ];
  50. if ( mask ) {
  51. output.push(
  52. mask.code,
  53. 'if ( ! ' + mask.result + ' ) discard;'
  54. );
  55. }
  56. if ( alpha ) {
  57. output.push(
  58. alpha.code,
  59. '#ifdef ALPHATEST',
  60. ' if ( ' + alpha.result + ' <= ALPHATEST ) discard;',
  61. '#endif'
  62. );
  63. }
  64. if ( alpha ) {
  65. output.push( 'gl_FragColor = vec4(' + color.result + ', ' + alpha.result + ' );' );
  66. } else {
  67. output.push( 'gl_FragColor = vec4(' + color.result + ', 1.0 );' );
  68. }
  69. code = output.join( '\n' );
  70. }
  71. return code;
  72. }
  73. copy( source ) {
  74. super.copy( source );
  75. this.color = source.color;
  76. if ( source.position ) this.position = source.position;
  77. if ( source.alpha ) this.alpha = source.alpha;
  78. if ( source.mask ) this.mask = source.mask;
  79. return this;
  80. }
  81. toJSON( meta ) {
  82. let data = this.getJSONNode( meta );
  83. if ( ! data ) {
  84. data = this.createJSONNode( meta );
  85. data.color = this.color.toJSON( meta ).uuid;
  86. if ( this.position ) data.position = this.position.toJSON( meta ).uuid;
  87. if ( this.alpha ) data.alpha = this.alpha.toJSON( meta ).uuid;
  88. if ( this.mask ) data.mask = this.mask.toJSON( meta ).uuid;
  89. }
  90. return data;
  91. }
  92. }
  93. BasicNode.prototype.nodeType = 'Basic';
  94. export { BasicNode };