webaudio_sandbox.html 7.9 KB

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