webaudio_sandbox.html 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>three.js webaudio - sandbox</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
  7. <link type="text/css" rel="stylesheet" href="main.css">
  8. </head>
  9. <body>
  10. <audio id="song" preload="auto" style="display: none">
  11. <source src="sounds/358232_j_s_song.ogg" type="audio/ogg">
  12. <source src="sounds/358232_j_s_song.mp3" type="audio/mpeg">
  13. </audio>
  14. <audio id="skullbeatz" preload="auto" style="display: none">
  15. <source src="sounds/376737_Skullbeatz___Bad_Cat_Maste.ogg" type="audio/ogg">
  16. <source src="sounds/376737_Skullbeatz___Bad_Cat_Maste.mp3" type="audio/mpeg">
  17. </audio>
  18. <audio id="utopia" loop preload="auto" style="display: none">
  19. <source src="sounds/Project_Utopia.ogg" type="audio/ogg">
  20. <source src="sounds/Project_Utopia.mp3" type="audio/mpeg">
  21. </audio>
  22. <div id="overlay">
  23. <button id="startButton">Play</button>
  24. </div>
  25. <div id="info">
  26. <a href="https://threejs.org" target="_blank" rel="noopener">three.js</a> webaudio - sandbox<br/>
  27. music by <a href="http://www.newgrounds.com/audio/listen/358232" target="_blank" rel="noopener">larrylarrybb</a>,
  28. <a href="http://www.newgrounds.com/audio/listen/376737" target="_blank" rel="noopener">skullbeatz</a> and
  29. <a href="http://opengameart.org/content/project-utopia-seamless-loop" target="_blank" rel="noopener">congusbongus</a><br/><br/>
  30. navigate with WASD / arrows / mouse
  31. </div>
  32. <script type="module">
  33. import * as THREE from '../build/three.module.js';
  34. import { GUI } from './jsm/libs/dat.gui.module.js';
  35. import { FirstPersonControls } from './jsm/controls/FirstPersonControls.js';
  36. let camera, controls, scene, renderer, light;
  37. let material1, material2, material3;
  38. let analyser1, analyser2, analyser3;
  39. const clock = new THREE.Clock();
  40. const startButton = document.getElementById( 'startButton' );
  41. startButton.addEventListener( 'click', init );
  42. function init() {
  43. const overlay = document.getElementById( 'overlay' );
  44. overlay.remove();
  45. camera = new THREE.PerspectiveCamera( 50, window.innerWidth / window.innerHeight, 1, 10000 );
  46. camera.position.set( 0, 25, 0 );
  47. const listener = new THREE.AudioListener();
  48. camera.add( listener );
  49. scene = new THREE.Scene();
  50. scene.fog = new THREE.FogExp2( 0x000000, 0.0025 );
  51. light = new THREE.DirectionalLight( 0xffffff );
  52. light.position.set( 0, 0.5, 1 ).normalize();
  53. scene.add( light );
  54. const sphere = new THREE.SphereGeometry( 20, 32, 16 );
  55. material1 = new THREE.MeshPhongMaterial( { color: 0xffaa00, flatShading: true, shininess: 0 } );
  56. material2 = new THREE.MeshPhongMaterial( { color: 0xff2200, flatShading: true, shininess: 0 } );
  57. material3 = new THREE.MeshPhongMaterial( { color: 0x6622aa, flatShading: true, shininess: 0 } );
  58. // sound spheres
  59. const mesh1 = new THREE.Mesh( sphere, material1 );
  60. mesh1.position.set( - 250, 30, 0 );
  61. scene.add( mesh1 );
  62. const sound1 = new THREE.PositionalAudio( listener );
  63. const songElement = document.getElementById( 'song' );
  64. sound1.setMediaElementSource( songElement );
  65. sound1.setRefDistance( 20 );
  66. songElement.play();
  67. mesh1.add( sound1 );
  68. //
  69. const mesh2 = new THREE.Mesh( sphere, material2 );
  70. mesh2.position.set( 250, 30, 0 );
  71. scene.add( mesh2 );
  72. const sound2 = new THREE.PositionalAudio( listener );
  73. const skullbeatzElement = document.getElementById( 'skullbeatz' );
  74. sound2.setMediaElementSource( skullbeatzElement );
  75. sound2.setRefDistance( 20 );
  76. skullbeatzElement.play();
  77. mesh2.add( sound2 );
  78. //
  79. const mesh3 = new THREE.Mesh( sphere, material3 );
  80. mesh3.position.set( 0, 30, - 250 );
  81. scene.add( mesh3 );
  82. const sound3 = new THREE.PositionalAudio( listener );
  83. const oscillator = listener.context.createOscillator();
  84. oscillator.type = 'sine';
  85. oscillator.frequency.setValueAtTime( 144, sound3.context.currentTime );
  86. oscillator.start( 0 );
  87. sound3.setNodeSource( oscillator );
  88. sound3.setRefDistance( 20 );
  89. sound3.setVolume( 0.5 );
  90. mesh3.add( sound3 );
  91. // analysers
  92. analyser1 = new THREE.AudioAnalyser( sound1, 32 );
  93. analyser2 = new THREE.AudioAnalyser( sound2, 32 );
  94. analyser3 = new THREE.AudioAnalyser( sound3, 32 );
  95. // global ambient audio
  96. const sound4 = new THREE.Audio( listener );
  97. const utopiaElement = document.getElementById( 'utopia' );
  98. sound4.setMediaElementSource( utopiaElement );
  99. sound4.setVolume( 0.5 );
  100. utopiaElement.play();
  101. // ground
  102. const helper = new THREE.GridHelper( 1000, 10, 0x444444, 0x444444 );
  103. helper.position.y = 0.1;
  104. scene.add( helper );
  105. //
  106. const SoundControls = function () {
  107. this.master = listener.getMasterVolume();
  108. this.firstSphere = sound1.getVolume();
  109. this.secondSphere = sound2.getVolume();
  110. this.thirdSphere = sound3.getVolume();
  111. this.Ambient = sound4.getVolume();
  112. };
  113. const GeneratorControls = function () {
  114. this.frequency = oscillator.frequency.value;
  115. this.wavetype = oscillator.type;
  116. };
  117. const gui = new GUI();
  118. const soundControls = new SoundControls();
  119. const generatorControls = new GeneratorControls();
  120. const volumeFolder = gui.addFolder( 'sound volume' );
  121. const generatorFolder = gui.addFolder( 'sound generator' );
  122. volumeFolder.add( soundControls, 'master' ).min( 0.0 ).max( 1.0 ).step( 0.01 ).onChange( function () {
  123. listener.setMasterVolume( soundControls.master );
  124. } );
  125. volumeFolder.add( soundControls, 'firstSphere' ).min( 0.0 ).max( 1.0 ).step( 0.01 ).onChange( function () {
  126. sound1.setVolume( soundControls.firstSphere );
  127. } );
  128. volumeFolder.add( soundControls, 'secondSphere' ).min( 0.0 ).max( 1.0 ).step( 0.01 ).onChange( function () {
  129. sound2.setVolume( soundControls.secondSphere );
  130. } );
  131. volumeFolder.add( soundControls, 'thirdSphere' ).min( 0.0 ).max( 1.0 ).step( 0.01 ).onChange( function () {
  132. sound3.setVolume( soundControls.thirdSphere );
  133. } );
  134. volumeFolder.add( soundControls, 'Ambient' ).min( 0.0 ).max( 1.0 ).step( 0.01 ).onChange( function () {
  135. sound4.setVolume( soundControls.Ambient );
  136. } );
  137. volumeFolder.open();
  138. generatorFolder.add( generatorControls, 'frequency' ).min( 50.0 ).max( 5000.0 ).step( 1.0 ).onChange( function () {
  139. oscillator.frequency.setValueAtTime( generatorControls.frequency, listener.context.currentTime );
  140. } );
  141. generatorFolder.add( generatorControls, 'wavetype', [ 'sine', 'square', 'sawtooth', 'triangle' ] ).onChange( function () {
  142. oscillator.type = generatorControls.wavetype;
  143. } );
  144. generatorFolder.open();
  145. //
  146. renderer = new THREE.WebGLRenderer( { antialias: true } );
  147. renderer.setPixelRatio( window.devicePixelRatio );
  148. renderer.setSize( window.innerWidth, window.innerHeight );
  149. document.body.appendChild( renderer.domElement );
  150. //
  151. controls = new FirstPersonControls( camera, renderer.domElement );
  152. controls.movementSpeed = 70;
  153. controls.lookSpeed = 0.05;
  154. controls.noFly = true;
  155. controls.lookVertical = false;
  156. //
  157. window.addEventListener( 'resize', onWindowResize );
  158. animate();
  159. }
  160. function onWindowResize() {
  161. camera.aspect = window.innerWidth / window.innerHeight;
  162. camera.updateProjectionMatrix();
  163. renderer.setSize( window.innerWidth, window.innerHeight );
  164. controls.handleResize();
  165. }
  166. function animate() {
  167. requestAnimationFrame( animate );
  168. render();
  169. }
  170. function render() {
  171. const delta = clock.getDelta();
  172. controls.update( delta );
  173. material1.emissive.b = analyser1.getAverageFrequency() / 256;
  174. material2.emissive.b = analyser2.getAverageFrequency() / 256;
  175. material3.emissive.b = analyser3.getAverageFrequency() / 256;
  176. renderer.render( scene, camera );
  177. }
  178. </script>
  179. </body>
  180. </html>