slam/slam.lua

194 lines
5.0 KiB
Lua
Raw Normal View History

-- Simple LÖVE Audio Manager
2011-10-24 16:44:03 +00:00
--
-- Copyright (c) 2011 Matthias Richter
-- Permission is hereby granted, free of charge, to any person obtaining a copy
-- of this software and associated documentation files (the "Software"), to deal
-- in the Software without restriction, including without limitation the rights
-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-- copies of the Software, and to permit persons to whom the Software is
-- furnished to do so, subject to the following conditions:
--
-- The above copyright notice and this permission notice shall be included in
-- all copies or substantial portions of the Software.
--
-- Except as contained in this notice, the name(s) of the above copyright holders
-- shall not be used in advertising or otherwise to promote the sale, use or
-- other dealings in this Software without prior written authorization.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-- THE SOFTWARE.
--
-- (Modified by Guard13007 to remove global state modification.)
2011-10-24 16:44:03 +00:00
local newInstance = love.audio.newSource
local stop = love.audio.stop
------------------
-- source class --
------------------
local Source = {}
Source.__index = Source
2012-02-05 21:02:38 +00:00
Source.__newindex = function(_,k) error(('Cannot write key %s'):format(tostring(k))) end
2011-10-24 16:44:03 +00:00
local function remove_stopped(sources)
local remove = {}
for s in pairs(sources) do
2014-11-28 00:31:17 +00:00
if (s:isStopped()) then remove[s] = true end
2011-10-24 16:44:03 +00:00
end
for s in pairs(remove) do
sources[s] = nil
end
end
2012-02-05 21:02:38 +00:00
local function get_target(target)
if type(target) == 'table' then
return target[math.random(1,#target)]
end
2012-02-05 21:02:38 +00:00
return target
end
2011-10-24 16:44:03 +00:00
local play_instance, stop_instance
function Source:play()
remove_stopped(self.instances)
2012-02-05 21:02:38 +00:00
if self._paused then self:stop() end
local instance = newInstance(get_target(self.target), self.how)
2011-10-24 16:44:03 +00:00
-- overwrite instance:stop() and instance:play()
if not (play_instance and stop_instance) then
play_instance = getmetatable(instance).play
getmetatable(instance).play = error
stop_instance = getmetatable(instance).stop
getmetatable(instance).stop = function(this)
stop_instance(this)
self.instances[this] = nil
end
end
instance:setLooping(self.looping)
instance:setPitch(self.pitch)
instance:setVolume(self.volume)
self.instances[instance] = instance
play_instance(instance)
return instance
end
function Source:stop()
for s in pairs(self.instances) do
s:stop()
end
2012-02-05 21:02:38 +00:00
self._paused = false
2011-10-24 16:44:03 +00:00
self.instances = {}
end
2012-02-05 21:02:38 +00:00
function Source:pause()
if self._paused then return end
for s in pairs(self.instances) do
s:pause()
end
self._paused = true
end
function Source:resume()
if not self._paused then return end
for s in pairs(self.instances) do
s:resume()
end
self._paused = false
end
2011-10-24 16:44:03 +00:00
function Source:addTags(tag, ...)
if not tag then return end
slam.audio.tags[tag][self] = self
2011-10-24 16:44:03 +00:00
return Source.addTags(self, ...)
end
function Source:removeTags(tag, ...)
if not tag then return end
slam.audio.tags[tag][self] = nil
2011-10-24 16:44:03 +00:00
return Source.removeTags(self, ...)
end
function Source:isStatic()
return self.how ~= "stream"
2011-10-24 16:44:03 +00:00
end
-- getter/setter for looping, pitch and volume
for _, property in ipairs{'looping', 'pitch', 'volume'} do
local name = property:sub(1,1):upper() .. property:sub(2)
Source['get' .. name] = function(self)
return self[property]
end
Source['set' .. name] = function(self, val)
self[property] = val
for s in pairs(self.instances) do
s['set' .. name](s, val)
2011-10-24 16:44:03 +00:00
end
end
end
2011-12-02 13:00:57 +00:00
Source.isLooping = Source.getLooping
2011-10-24 16:44:03 +00:00
--------------------------
-- love.audio interface --
--------------------------
2014-11-28 00:28:00 +00:00
local slam = {}
slam.audio = {}
function slam.audio.newSource(target, how)
2011-10-24 16:44:03 +00:00
local s = {
2012-02-05 21:02:38 +00:00
_paused = false,
target = target,
2011-10-24 16:44:03 +00:00
how = how,
instances = {},
looping = false,
pitch = 1,
volume = 1,
}
2012-02-05 21:02:38 +00:00
if how == 'static' and type(target) == 'string' then
s.target = love.sound.newSoundData(target)
end
slam.audio.tags.all[s] = s
2011-10-24 16:44:03 +00:00
return setmetatable(s, Source)
end
function slam.audio.play(source)
2012-02-05 21:02:38 +00:00
assert(source and source.instances, "Can only play source objects.")
return source:play()
2011-10-24 16:44:03 +00:00
end
function slam.audio.stop(source)
2012-02-05 21:02:38 +00:00
if source and source.stop then return source:stop() end
2011-10-24 16:44:03 +00:00
stop()
end
----------
-- tags --
----------
local Tag = { __mode = "kv" }
function Tag:__index(func)
-- calls a function on all tagged sources
return function(...)
for s in pairs(self) do
assert(type(s[func]) == "function", ("`%s' does not name a function."):format(func))
s[func](s, ...)
end
end
end
slam.audio.tags = setmetatable({}, {
2011-10-24 16:44:03 +00:00
__newindex = error,
__index = function(t,k)
local tag = setmetatable({}, Tag)
rawset(t, k, tag)
return tag
2011-12-02 13:00:57 +00:00
end,
2011-10-24 16:44:03 +00:00
})
2014-11-28 00:28:00 +00:00
return slam