sound
This commit is contained in:
parent
4c3a12aa5b
commit
1ca6226283
|
@ -68,7 +68,6 @@ class Player extends Bot
|
||||||
@projection.setPosition @projection.getPosition().mul(1.0-posDelta).plus camPos.mul posDelta
|
@projection.setPosition @projection.getPosition().mul(1.0-posDelta).plus camPos.mul posDelta
|
||||||
|
|
||||||
if @look_angle # player is looking up or down
|
if @look_angle # player is looking up or down
|
||||||
log "look_angle #{@look_angle}"
|
|
||||||
@projection.setXVector playerDir.cross(playerUp).normal()
|
@projection.setXVector playerDir.cross(playerUp).normal()
|
||||||
rot = Quaternion.rotationAroundVector @look_angle, @projection.getXVector()
|
rot = Quaternion.rotationAroundVector @look_angle, @projection.getXVector()
|
||||||
@projection.setYVector rot.rotate playerUp
|
@projection.setYVector rot.rotate playerUp
|
||||||
|
|
|
@ -9,8 +9,9 @@ Howler = require 'howler'
|
||||||
Howl = Howler.Howl
|
Howl = Howler.Howl
|
||||||
|
|
||||||
class Sound
|
class Sound
|
||||||
|
|
||||||
@sounds =
|
@sounds = Object.create null
|
||||||
|
@files =
|
||||||
BOT_MOVE: file: "bot_move.wav", volume: 0.2
|
BOT_MOVE: file: "bot_move.wav", volume: 0.2
|
||||||
BOT_JUMP: file: "bot_jump.wav", volume: 0.7
|
BOT_JUMP: file: "bot_jump.wav", volume: 0.7
|
||||||
BOT_LAND: file: "bot_land.wav", volume: 0.7
|
BOT_LAND: file: "bot_land.wav", volume: 0.7
|
||||||
|
@ -45,25 +46,29 @@ class Sound
|
||||||
GENERATOR_OFF: file: "generator_off.wav", volume: 1.0
|
GENERATOR_OFF: file: "generator_off.wav", volume: 1.0
|
||||||
MOTOR: file: "bomb_splitter.wav", volume: 1.0
|
MOTOR: file: "bomb_splitter.wav", volume: 1.0
|
||||||
|
|
||||||
|
@init: ->
|
||||||
|
return if _.size @sounds
|
||||||
|
for k,v of @files
|
||||||
|
@sounds[k] = new Howl
|
||||||
|
src: ["#{__dirname}/../sound/#{v.file}"]
|
||||||
|
volume: v.volume
|
||||||
|
@sounds[k].pannerAttr
|
||||||
|
maxDistance: 10
|
||||||
|
refDistance: 1
|
||||||
|
rolloffFactor: 4
|
||||||
|
distanceModel: 'exponential'
|
||||||
|
|
||||||
|
@setMatrix: (m) ->
|
||||||
|
p = m.getPosition()
|
||||||
|
f = m.getZVector()
|
||||||
|
u = m.getYVector()
|
||||||
|
Howler.Howler.pos p.x, p.y, p.z
|
||||||
|
Howler.Howler.orientation f.x, f.y, f.z, u.x, u.y, u.z
|
||||||
|
|
||||||
@play: (sound, pos, time) ->
|
@play: (sound, pos, time) ->
|
||||||
log "Sound.playSound #{sound} #{time}", pos
|
pos ?= world.player?.current_position
|
||||||
# Howler.volume 1
|
# log "Sound.play #{sound} #{time}", pos
|
||||||
howl = new Howl src: ["#{__dirname}/../sound/#{@sounds[sound].file}"]
|
id = @sounds[sound].play()
|
||||||
if world.projection?
|
@sounds[sound].pos pos.x, pos.y, pos.z, id if pos?
|
||||||
p = world.projection.getPosition()
|
|
||||||
Howler.Howler.pos p.x, p.y, p.z
|
|
||||||
f = world.projection.getZVector()
|
|
||||||
u = world.projection.getYVector()
|
|
||||||
Howler.Howler.orientation f.x, f.y, f.z, u.x, u.y, u.z
|
|
||||||
howl.pannerAttr
|
|
||||||
maxDistance: 10
|
|
||||||
refDistance: 1
|
|
||||||
rolloffFactor: 1
|
|
||||||
distanceModel: 'exponential'
|
|
||||||
id = howl.play()
|
|
||||||
# log "sound id #{id}"
|
|
||||||
howl.volume @sounds[sound].volume, id
|
|
||||||
if pos?
|
|
||||||
howl.pos pos.x, pos.y, pos.z, id
|
|
||||||
|
|
||||||
module.exports = Sound
|
module.exports = Sound
|
||||||
|
|
|
@ -138,6 +138,8 @@ class World extends Actor
|
||||||
@initGlobal: () ->
|
@initGlobal: () ->
|
||||||
|
|
||||||
return if @levels?
|
return if @levels?
|
||||||
|
|
||||||
|
Sound.init()
|
||||||
|
|
||||||
global.rot0 = Quaternion.rot_0
|
global.rot0 = Quaternion.rot_0
|
||||||
global.rotx90 = Quaternion.rot_90_X
|
global.rotx90 = Quaternion.rot_90_X
|
||||||
|
@ -672,6 +674,9 @@ class World extends Actor
|
||||||
when World.CAMERA_INSIDE then @projection = @player.getInsideProjection()
|
when World.CAMERA_INSIDE then @projection = @player.getInsideProjection()
|
||||||
when World.CAMERA_BEHIND then @projection = @player.getBehindProjection()
|
when World.CAMERA_BEHIND then @projection = @player.getBehindProjection()
|
||||||
when World.CAMERA_FOLLOW then @projection = @player.getFollowProjection()
|
when World.CAMERA_FOLLOW then @projection = @player.getFollowProjection()
|
||||||
|
|
||||||
|
Sound.setMatrix @projection
|
||||||
|
|
||||||
@player.setOpacity clamp 0, 1, @projection.getPosition().minus(@player.current_position).length()-0.4
|
@player.setOpacity clamp 0, 1, @projection.getPosition().minus(@player.current_position).length()-0.4
|
||||||
@projection.apply @camera
|
@projection.apply @camera
|
||||||
@sun.position.copy @camera.position
|
@sun.position.copy @camera.position
|
||||||
|
|
Loading…
Reference in New Issue
Block a user