webaudio_sandbox.html 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  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. <!-- Import maps polyfill -->
  33. <!-- Remove this when import maps will be widely supported -->
  34. <script async src="https://unpkg.com/[email protected]/dist/es-module-shims.js"></script>
  35. <script type="importmap">
  36. {
  37. "imports": {
  38. "three": "../build/three.module.js"
  39. }
  40. }
  41. </script>
  42. <script type="module">
  43. import * as THREE from 'three';
  44. import { GUI } from './jsm/libs/lil-gui.module.min.js';
  45. import { FirstPersonControls } from './jsm/controls/FirstPersonControls.js';
  46. let camera, controls, scene, renderer, light;
  47. let material1, material2, material3;
  48. let analyser1, analyser2, analyser3;
  49. const clock = new THREE.Clock();
  50. const startButton = document.getElementById( 'startButton' );
  51. startButton.addEventListener( 'click', init );
  52. function init() {
  53. const overlay = document.getElementById( 'overlay' );
  54. overlay.remove();
  55. camera = new THREE.PerspectiveCamera( 50, window.innerWidth / window.innerHeight, 1, 10000 );
  56. camera.position.set( 0, 25, 0 );
  57. const listener = new THREE.AudioListener();
  58. camera.add( listener );
  59. scene = new THREE.Scene();
  60. scene.fog = new THREE.FogExp2( 0x000000, 0.0025 );
  61. light = new THREE.DirectionalLight( 0xffffff );
  62. light.position.set( 0, 0.5, 1 ).normalize();
  63. scene.add( light );
  64. const sphere = new THREE.SphereGeometry( 20, 32, 16 );
  65. material1 = new THREE.MeshPhongMaterial( { color: 0xffaa00, flatShading: true, shininess: 0 } );
  66. material2 = new THREE.MeshPhongMaterial( { color: 0xff2200, flatShading: true, shininess: 0 } );
  67. material3 = new THREE.MeshPhongMaterial( { color: 0x6622aa, flatShading: true, shininess: 0 } );
  68. // sound spheres
  69. const mesh1 = new THREE.Mesh( sphere, material1 );
  70. mesh1.position.set( - 250, 30, 0 );
  71. scene.add( mesh1 );
  72. const sound1 = new THREE.PositionalAudio( listener );
  73. const songElement = document.getElementById( 'song' );
  74. sound1.setMediaElementSource( songElement );
  75. sound1.setRefDistance( 20 );
  76. songElement.play();
  77. mesh1.add( sound1 );
  78. //
  79. const mesh2 = new THREE.Mesh( sphere, material2 );
  80. mesh2.position.set( 250, 30, 0 );
  81. scene.add( mesh2 );
  82. const sound2 = new THREE.PositionalAudio( listener );
  83. const skullbeatzElement = document.getElementById( 'skullbeatz' );
  84. sound2.setMediaElementSource( skullbeatzElement );
  85. sound2.setRefDistance( 20 );
  86. skullbeatzElement.play();
  87. mesh2.add( sound2 );
  88. //
  89. const mesh3 = new THREE.Mesh( sphere, material3 );
  90. mesh3.position.set( 0, 30, - 250 );
  91. scene.add( mesh3 );
  92. const sound3 = new THREE.PositionalAudio( listener );
  93. const oscillator = listener.context.createOscillator();
  94. oscillator.type = 'sine';
  95. oscillator.frequency.setValueAtTime( 144, sound3.context.currentTime );
  96. oscillator.start( 0 );
  97. sound3.setNodeSource( oscillator );
  98. sound3.setRefDistance( 20 );
  99. sound3.setVolume( 0.5 );
  100. mesh3.add( sound3 );
  101. // analysers
  102. analyser1 = new THREE.AudioAnalyser( sound1, 32 );
  103. analyser2 = new THREE.AudioAnalyser( sound2, 32 );
  104. analyser3 = new THREE.AudioAnalyser( sound3, 32 );
  105. // global ambient audio
  106. const sound4 = new THREE.Audio( listener );
  107. const utopiaElement = document.getElementById( 'utopia' );
  108. sound4.setMediaElementSource( utopiaElement );
  109. sound4.setVolume( 0.5 );
  110. utopiaElement.play();
  111. // ground
  112. const helper = new THREE.GridHelper( 1000, 10, 0x444444, 0x444444 );
  113. helper.position.y = 0.1;
  114. scene.add( helper );
  115. //
  116. const SoundControls = function () {
  117. this.master = listener.getMasterVolume();
  118. this.firstSphere = sound1.getVolume();
  119. this.secondSphere = sound2.getVolume();
  120. this.thirdSphere = sound3.getVolume();
  121. this.Ambient = sound4.getVolume();
  122. };
  123. const GeneratorControls = function () {
  124. this.frequency = oscillator.frequency.value;
  125. this.wavetype = oscillator.type;
  126. };
  127. const gui = new GUI();
  128. const soundControls = new SoundControls();
  129. const generatorControls = new GeneratorControls();
  130. const volumeFolder = gui.addFolder( 'sound volume' );
  131. const generatorFolder = gui.addFolder( 'sound generator' );
  132. volumeFolder.add( soundControls, 'master' ).min( 0.0 ).max( 1.0 ).step( 0.01 ).onChange( function () {
  133. listener.setMasterVolume( soundControls.master );
  134. } );
  135. volumeFolder.add( soundControls, 'firstSphere' ).min( 0.0 ).max( 1.0 ).step( 0.01 ).onChange( function () {
  136. sound1.setVolume( soundControls.firstSphere );
  137. } );
  138. volumeFolder.add( soundControls, 'secondSphere' ).min( 0.0 ).max( 1.0 ).step( 0.01 ).onChange( function () {
  139. sound2.setVolume( soundControls.secondSphere );
  140. } );
  141. volumeFolder.add( soundControls, 'thirdSphere' ).min( 0.0 ).max( 1.0 ).step( 0.01 ).onChange( function () {
  142. sound3.setVolume( soundControls.thirdSphere );
  143. } );
  144. volumeFolder.add( soundControls, 'Ambient' ).min( 0.0 ).max( 1.0 ).step( 0.01 ).onChange( function () {
  145. sound4.setVolume( soundControls.Ambient );
  146. } );
  147. volumeFolder.open();
  148. generatorFolder.add( generatorControls, 'frequency' ).min( 50.0 ).max( 5000.0 ).step( 1.0 ).onChange( function () {
  149. oscillator.frequency.setValueAtTime( generatorControls.frequency, listener.context.currentTime );
  150. } );
  151. generatorFolder.add( generatorControls, 'wavetype', [ 'sine', 'square', 'sawtooth', 'triangle' ] ).onChange( function () {
  152. oscillator.type = generatorControls.wavetype;
  153. } );
  154. generatorFolder.open();
  155. //
  156. renderer = new THREE.WebGLRenderer( { antialias: true } );
  157. renderer.setPixelRatio( window.devicePixelRatio );
  158. renderer.setSize( window.innerWidth, window.innerHeight );
  159. document.body.appendChild( renderer.domElement );
  160. //
  161. controls = new FirstPersonControls( camera, renderer.domElement );
  162. controls.movementSpeed = 70;
  163. controls.lookSpeed = 0.05;
  164. controls.noFly = true;
  165. controls.lookVertical = false;
  166. //
  167. window.addEventListener( 'resize', onWindowResize );
  168. animate();
  169. }
  170. function onWindowResize() {
  171. camera.aspect = window.innerWidth / window.innerHeight;
  172. camera.updateProjectionMatrix();
  173. renderer.setSize( window.innerWidth, window.innerHeight );
  174. controls.handleResize();
  175. }
  176. function animate() {
  177. requestAnimationFrame( animate );
  178. render();
  179. }
  180. function render() {
  181. const delta = clock.getDelta();
  182. controls.update( delta );
  183. material1.emissive.b = analyser1.getAverageFrequency() / 256;
  184. material2.emissive.b = analyser2.getAverageFrequency() / 256;
  185. material3.emissive.b = analyser3.getAverageFrequency() / 256;
  186. renderer.render( scene, camera );
  187. }
  188. </script>
  189. </body>
  190. </html>