summaryrefslogtreecommitdiffhomepage
path: root/player.lua
diff options
context:
space:
mode:
authorAki <nthirtyone@gmail.com>2016-06-24 19:18:02 +0200
committerAki <nthirtyone@gmail.com>2016-06-24 19:18:02 +0200
commitfee69da24f3f580acbe6682116a9a1636f9736c4 (patch)
tree514563c632e5b797b03053a710155043757c7e5f /player.lua
parent3006753ee3cbb1a32efb1b094a21885e9d4de858 (diff)
downloadroflnauts-fee69da24f3f580acbe6682116a9a1636f9736c4.zip
roflnauts-fee69da24f3f580acbe6682116a9a1636f9736c4.tar.gz
roflnauts-fee69da24f3f580acbe6682116a9a1636f9736c4.tar.bz2
More sounds
Diffstat (limited to 'player.lua')
-rw-r--r--player.lua18
1 files changed, 7 insertions, 11 deletions
diff --git a/player.lua b/player.lua
index 66872c6..70446b4 100644
--- a/player.lua
+++ b/player.lua
@@ -44,8 +44,7 @@ Player = {
portrait_sprite = nil,
portrait_sheet = require "portraits",
-- Sounds
- sfx_death = love.sound.newSoundData("sounds/death.wav"),
- sfx_hit = love.sound.newSoundData("sounds/hit.wav")
+ sfx = require "sounds"
}
-- Constructor of `Player`
@@ -336,6 +335,8 @@ function Player:hit (ox, oy, sx, sy, vx, vy)
end
end
end
+ -- sound
+ self:playSound(4)
end
-- Hittest
@@ -358,7 +359,7 @@ function Player:damage (horizontal, vertical)
self:changeAnimation("damage")
self.combo = math.min(20, self.combo + 1)
self.punchcd = 0.08
- self:playSoundHit()
+ self:playSound(2)
end
-- DIE
@@ -369,7 +370,7 @@ function Player:die ()
self.spawntimer = 1
self.body:setActive(false)
self.world:onNautKilled(self)
- self:playSoundDeath()
+ self:playSound(1)
end
-- And then respawn. Like Jon Snow.
@@ -382,12 +383,7 @@ function Player:respawn ()
end
-- Sounds
-function Player:playSoundHit()
- local source = love.audio.newSource(self.sfx_hit)
- source:play()
-end
-
-function Player:playSoundDeath()
- local source = love.audio.newSource(self.sfx_death)
+function Player:playSound(sfx)
+ local source = love.audio.newSource(self.sfx[sfx])
source:play()
end \ No newline at end of file