mirror of
https://github.com/vrld/hump.git
synced 2024-11-23 12:24:19 +00:00
73 lines
2.5 KiB
Lua
73 lines
2.5 KiB
Lua
--[[
|
|
Copyright (c) 2010-2013 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.
|
|
]]--
|
|
|
|
local function __NULL__() end
|
|
|
|
-- default gamestate produces error on every callback
|
|
local function __ERROR__() error("Gamestate not initialized. Use Gamestate.switch()") end
|
|
local current = {leave = __NULL__}
|
|
|
|
local GS = {}
|
|
function GS.new(t) return t or {} end -- constructor - deprecated!
|
|
|
|
function GS.switch(to, ...)
|
|
assert(to, "Missing argument: Gamestate to switch to")
|
|
local pre = current
|
|
;(current.leave or __NULL__)(self)
|
|
;(to.init or __NULL__)(to)
|
|
to.init = nil
|
|
current = to
|
|
return (current.enter or __NULL__)(current, pre, ...)
|
|
end
|
|
|
|
-- holds all defined love callbacks after GS.registerEvents is called
|
|
-- returns empty function on undefined callback
|
|
local registry = setmetatable({}, {__index = function() return __NULL__ end})
|
|
|
|
local all_callbacks = {
|
|
'update', 'draw', 'focus', 'keypressed', 'keyreleased',
|
|
'mousepressed', 'mousereleased', 'joystickpressed',
|
|
'joystickreleased', 'quit'
|
|
}
|
|
|
|
function GS.registerEvents(callbacks)
|
|
callbacks = callbacks or all_callbacks
|
|
for _, f in ipairs(callbacks) do
|
|
registry[f] = love[f]
|
|
love[f] = function(...) return GS[f](...) end
|
|
end
|
|
end
|
|
|
|
-- forward any undefined functions
|
|
setmetatable(GS, {__index = function(_, func)
|
|
return function(...)
|
|
registry[func](...)
|
|
return (current[func] or __NULL__)(current, ...)
|
|
end
|
|
end})
|
|
|
|
return GS
|