Source

Extra/PostEffect.js

  1. import Color from '../Color';
  2. import RenderTexture from '../Renderers/RenderTexture';
  3. import Sprite from '../Objects/Sprite';
  4. import SpriteCommand from '../Renderers/Commands/SpriteCommand';
  5. import WebGL from '../Renderers/WebGL/RenderWebGL';
  6. /**
  7. * A class to create post-effects
  8. *
  9. * @category Shaders
  10. */
  11. class PostEffect {
  12. /**
  13. * Constructor
  14. *
  15. * @param {Program} program A Program instance.
  16. */
  17. constructor(program) {
  18. /**
  19. * The render API to use
  20. *
  21. * @type {RenderAPI}
  22. * @protected
  23. */
  24. this.renderApi = WebGL.getInstance();
  25. /**
  26. * Textures where we will apply effects
  27. *
  28. * @type {RenderTexture}
  29. * @private
  30. */
  31. this.renderTexture = null;
  32. /**
  33. * Full screen sprite with the resulting effects
  34. *
  35. * @type {Sprite}
  36. * @private
  37. */
  38. this.sprite = new Sprite();
  39. this.sprite.setCustomProgram(program);
  40. }
  41. /**
  42. * Init the post effect composer
  43. *
  44. * @param {number} width Resulting effect width
  45. * @param {number} height Resulting effect height
  46. * @param {boolean=} useDepthBuffer True to use depth buffer (useful in 3D)
  47. * @param {boolean=} userStencilBuffer True to use stencil buffer
  48. * @return {PostEffect} A reference to the instance
  49. */
  50. init(width, height, useDepthBuffer = true, userStencilBuffer = false) {
  51. // Init texture
  52. this.renderTexture = new RenderTexture(width, height, 1, useDepthBuffer, userStencilBuffer);
  53. // Link resulting texture to the sprite
  54. this.sprite.setSize(1, -1);
  55. this.sprite.setTexture(this.renderTexture.getTextures()[0]);
  56. this.sprite.setTextureRect(0, 0, width, height);
  57. return this;
  58. }
  59. /**
  60. * Begin
  61. *
  62. * @param {Color=} color A Color instance
  63. */
  64. begin(color = new Color(30, 30, 30)) {
  65. if (!this.renderTexture) {
  66. return;
  67. }
  68. this.renderTexture.clear(color);
  69. }
  70. /**
  71. * End
  72. */
  73. end() {
  74. if (!this.renderTexture) {
  75. return;
  76. }
  77. // Display result
  78. this.renderTexture.display();
  79. // Draw the full screen quad
  80. SpriteCommand.draw(this.renderApi, this.sprite);
  81. }
  82. /**
  83. * Render the given scene
  84. *
  85. * @param {Scene} scene A Scene instance
  86. * @param {Camera} camera A Camera instance
  87. */
  88. render(scene, camera) {
  89. this.renderTexture.render(scene, camera);
  90. }
  91. /**
  92. * Set program to use
  93. *
  94. * @param {Program} program A Program instance
  95. * @return {PostEffect} A reference to the instance
  96. */
  97. setProgram(program) {
  98. this.sprite.setCustomProgram(program);
  99. return this;
  100. }
  101. /**
  102. * Set value of an element from the program
  103. *
  104. * @param {string} name Element's name in the shader
  105. * @param {Type} type Type of value to send
  106. * @param {Array.<number>|number|boolean|Texture|Float32Array} value A value
  107. * @return {PostEffect} A reference to the instance
  108. */
  109. setEffectValue(name, type, value, groupCount) {
  110. this.renderApi.setUniform(this.sprite.getCustomProgram(), name, type, value, groupCount);
  111. return this;
  112. }
  113. }
  114. export default PostEffect;