sound
This commit is contained in:
parent
aa54788ff1
commit
4c3a12aa5b
|
@ -222,12 +222,8 @@ class Bot extends Pushable
|
|||
relTime = action.getRelativeTime()
|
||||
dltTime = action.getRelativeDelta()
|
||||
|
||||
# log "Bot.performAction #{action.name} #{action.current} #{action.last} #{action.duration} id #{action.id}"
|
||||
# log "Bot.performAction #{action.name} #{relTime} #{dltTime} id #{action.id}"
|
||||
# cosFac = 1.0 - Math.cos(Math.PI/2 * relTime)
|
||||
cosFac = Math.cos Math.PI/2 - Math.PI/2 * relTime
|
||||
sinFac = Math.sin Math.PI/2 * relTime
|
||||
# log "bot.performAction peform #{action.name} #{relTime} #{action.current} #{action.getDuration()}"
|
||||
switch action.id
|
||||
when Action.SHOOT
|
||||
if relTime == 0
|
||||
|
@ -240,7 +236,6 @@ class Bot extends Pushable
|
|||
@left_tire_rot += @dir_sgn * dltTime
|
||||
@right_tire_rot += @dir_sgn * dltTime
|
||||
@current_position = @position.plus @getDir().mul(relTime)
|
||||
# log 'bot.forward', @current_position
|
||||
return
|
||||
|
||||
when Action.JUMP
|
||||
|
|
|
@ -18,6 +18,8 @@ class Pushable extends Item
|
|||
super
|
||||
@pusher = null
|
||||
@direction = Vector.minusY
|
||||
@landing_sound = 'STONE_LAND'
|
||||
@pushing_sound = 'STONE_MOVE'
|
||||
|
||||
@addAction new Action @, Action.NOOP, "noop"
|
||||
@addAction new Action @, Action.PUSH, "push"
|
||||
|
@ -43,6 +45,7 @@ class Pushable extends Item
|
|||
initAction: (action) ->
|
||||
switch action.id
|
||||
when Action.PUSH, Action.FALL
|
||||
world.playSound @pushing_sound if action.id == Action.PUSH
|
||||
world.objectWillMoveToPos @, @position.plus(@direction), action.getDuration()
|
||||
|
||||
performAction: (action) ->
|
||||
|
|
69
coffee/sound.coffee
Normal file
69
coffee/sound.coffee
Normal file
|
@ -0,0 +1,69 @@
|
|||
# 0000000 0000000 000 000 000 000 0000000
|
||||
# 000 000 000 000 000 0000 000 000 000
|
||||
# 0000000 000 000 000 000 000 0 000 000 000
|
||||
# 000 000 000 000 000 000 0000 000 000
|
||||
# 0000000 0000000 0000000 000 000 0000000
|
||||
|
||||
log = require '/Users/kodi/s/ko/js/tools/log'
|
||||
Howler = require 'howler'
|
||||
Howl = Howler.Howl
|
||||
|
||||
class Sound
|
||||
|
||||
@sounds =
|
||||
BOT_MOVE: file: "bot_move.wav", volume: 0.2
|
||||
BOT_JUMP: file: "bot_jump.wav", volume: 0.7
|
||||
BOT_LAND: file: "bot_land.wav", volume: 0.7
|
||||
BOT_SPIKED: file: "bot_move.wav", volume: 1.0
|
||||
BOT_HEALTH_ALERT: file: "bot_health_alert.wav", volume: 1.0
|
||||
BOT_DEATH: file: "bot_death.wav", volume: 1.0
|
||||
BOT_NO_ENERGY: file: "bot_no_energy.wav", volume: 1.0
|
||||
BULLET_SHOT: file: "bullet_shot.wav", volume: 1.0
|
||||
BULLET_HIT_WALL: file: "bullet_hit_wall.wav", volume: 1.0
|
||||
BULLET_HIT_OBJECT: file: "bullet_hit_object.wav", volume: 1.0
|
||||
BULLET_HIT_PLAYER: file: "bullet_hit_player.wav", volume: 1.0
|
||||
BULLET_HIT_MUTANT: file: "bullet_hit_mutant.wav", volume: 1.0
|
||||
STONE_MOVE: file: "stone_move.wav", volume: 1.0
|
||||
STONE_LAND: file: "stone_land.wav", volume: 1.0
|
||||
SWITCH_ON: file: "switch_on.wav", volume: 1.0
|
||||
SWITCH_OFF: file: "switch_on.wav", volume: 0.5
|
||||
ATOM_BIRTH: file: "atom_digest.wav", volume: 1.0
|
||||
ATOM_DIGEST: file: "atom_digest.wav", volume: 1.0
|
||||
SPIKES_START: file: "bot_move.wav", volume: 1.0
|
||||
MENU_FADE: file: "menu_fade.wav", volume: 1.0
|
||||
MENU_ITEM: file: "menu_item.wav", volume: 1.0
|
||||
MENU_SELECT: file: "menu_select.wav", volume: 1.0
|
||||
MENU_ABORT: file: "menu_abort.wav", volume: 1.0
|
||||
GATE_OPEN: file: "gate_open.wav", volume: 1.0
|
||||
GATE_CLOSE: file: "gate_close.wav", volume: 1.0
|
||||
GATE_WARP: file: "gate_warp.wav", volume: 1.0
|
||||
BOMB_EXPLODE: file: "bomb_explode.wav", volume: 1.0
|
||||
BOMB_SPLITTER: file: "bomb_splitter.wav", volume: 1.0
|
||||
GEAR_ON: file: "gear_on.wav", volume: 1.0
|
||||
GEAR_OFF: file: "gear_off.wav", volume: 1.0
|
||||
GENERATOR_ON: file: "generator_on.wav", volume: 1.0
|
||||
GENERATOR_OFF: file: "generator_off.wav", volume: 1.0
|
||||
MOTOR: file: "bomb_splitter.wav", volume: 1.0
|
||||
|
||||
@play: (sound, pos, time) ->
|
||||
log "Sound.playSound #{sound} #{time}", pos
|
||||
# Howler.volume 1
|
||||
howl = new Howl src: ["#{__dirname}/../sound/#{@sounds[sound].file}"]
|
||||
if world.projection?
|
||||
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
|
|
@ -18,6 +18,7 @@ Gate = require './gate'
|
|||
Light = require './light'
|
||||
Levels = require './levels'
|
||||
Player = require './player'
|
||||
Sound = require './sound'
|
||||
Cage = require './cage'
|
||||
Timer = require './timer'
|
||||
Actor = require './actor'
|
||||
|
@ -898,7 +899,7 @@ class World extends Actor
|
|||
when World.CAMERA_FOLLOW then @projection = @player.getFollowProjection()
|
||||
@projection
|
||||
|
||||
playSound: (sound, pos, time) -> # log "World.playSound #{sound} #{time}", pos
|
||||
playSound: (sound, pos, time) -> Sound.play sound, pos, time
|
||||
|
||||
# 000 000 00000000 000 000
|
||||
# 000 000 000 000 000
|
||||
|
|
BIN
sound/atom_digest.wav
Normal file
BIN
sound/atom_digest.wav
Normal file
Binary file not shown.
BIN
sound/bomb_explode.wav
Normal file
BIN
sound/bomb_explode.wav
Normal file
Binary file not shown.
BIN
sound/bomb_splitter.wav
Normal file
BIN
sound/bomb_splitter.wav
Normal file
Binary file not shown.
BIN
sound/bot_death.wav
Normal file
BIN
sound/bot_death.wav
Normal file
Binary file not shown.
BIN
sound/bot_health_alert.wav
Normal file
BIN
sound/bot_health_alert.wav
Normal file
Binary file not shown.
BIN
sound/bot_jump.wav
Normal file
BIN
sound/bot_jump.wav
Normal file
Binary file not shown.
BIN
sound/bot_land.wav
Normal file
BIN
sound/bot_land.wav
Normal file
Binary file not shown.
BIN
sound/bot_move.wav
Normal file
BIN
sound/bot_move.wav
Normal file
Binary file not shown.
BIN
sound/bot_no_energy.wav
Normal file
BIN
sound/bot_no_energy.wav
Normal file
Binary file not shown.
BIN
sound/bullet_hit_mutant.wav
Normal file
BIN
sound/bullet_hit_mutant.wav
Normal file
Binary file not shown.
BIN
sound/bullet_hit_object.wav
Normal file
BIN
sound/bullet_hit_object.wav
Normal file
Binary file not shown.
BIN
sound/bullet_hit_player.wav
Normal file
BIN
sound/bullet_hit_player.wav
Normal file
Binary file not shown.
BIN
sound/bullet_hit_wall.wav
Normal file
BIN
sound/bullet_hit_wall.wav
Normal file
Binary file not shown.
BIN
sound/bullet_shot.wav
Normal file
BIN
sound/bullet_shot.wav
Normal file
Binary file not shown.
BIN
sound/gate_close.wav
Normal file
BIN
sound/gate_close.wav
Normal file
Binary file not shown.
BIN
sound/gate_open.wav
Normal file
BIN
sound/gate_open.wav
Normal file
Binary file not shown.
BIN
sound/gate_warp.wav
Normal file
BIN
sound/gate_warp.wav
Normal file
Binary file not shown.
BIN
sound/gear_off.wav
Normal file
BIN
sound/gear_off.wav
Normal file
Binary file not shown.
BIN
sound/gear_on.wav
Normal file
BIN
sound/gear_on.wav
Normal file
Binary file not shown.
BIN
sound/generator_off.wav
Normal file
BIN
sound/generator_off.wav
Normal file
Binary file not shown.
BIN
sound/generator_on.wav
Normal file
BIN
sound/generator_on.wav
Normal file
Binary file not shown.
BIN
sound/menu_abort.wav
Normal file
BIN
sound/menu_abort.wav
Normal file
Binary file not shown.
BIN
sound/menu_fade.wav
Normal file
BIN
sound/menu_fade.wav
Normal file
Binary file not shown.
BIN
sound/menu_item.wav
Normal file
BIN
sound/menu_item.wav
Normal file
Binary file not shown.
BIN
sound/menu_select.wav
Normal file
BIN
sound/menu_select.wav
Normal file
Binary file not shown.
BIN
sound/stone_land.wav
Normal file
BIN
sound/stone_land.wav
Normal file
Binary file not shown.
BIN
sound/stone_move.wav
Normal file
BIN
sound/stone_move.wav
Normal file
Binary file not shown.
BIN
sound/switch_on.wav
Normal file
BIN
sound/switch_on.wav
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user