2010-09-19 13:37:55 +00:00
|
|
|
--[[
|
2013-02-20 15:54:57 +00:00
|
|
|
Copyright (c) 2010-2013 Matthias Richter
|
2010-09-19 13:37:55 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
]]--
|
|
|
|
|
2010-08-13 13:36:12 +00:00
|
|
|
local function __NULL__() end
|
2011-11-19 19:41:43 +00:00
|
|
|
|
2013-08-05 14:30:30 +00:00
|
|
|
-- default gamestate produces error on every callback
|
|
|
|
local state_init = setmetatable({leave = __NULL__},
|
|
|
|
{__index = function() error("Gamestate not initialized. Use Gamestate.switch()") end})
|
|
|
|
local stack = {state_init}
|
2015-10-07 19:48:20 +00:00
|
|
|
local initialized_states = setmetatable({}, {__mode = "k"})
|
2015-05-30 14:41:37 +00:00
|
|
|
local state_is_dirty = true
|
2010-08-13 12:48:24 +00:00
|
|
|
|
2011-11-19 19:41:43 +00:00
|
|
|
local GS = {}
|
2013-02-20 14:51:50 +00:00
|
|
|
function GS.new(t) return t or {} end -- constructor - deprecated!
|
2010-08-09 15:52:48 +00:00
|
|
|
|
2015-05-30 14:41:37 +00:00
|
|
|
local function change_state(stack_offset, to, ...)
|
2013-08-05 14:30:30 +00:00
|
|
|
local pre = stack[#stack]
|
2016-05-23 21:52:49 +00:00
|
|
|
|
2015-10-07 19:48:20 +00:00
|
|
|
-- initialize only on first call
|
2015-10-13 06:08:26 +00:00
|
|
|
;(initialized_states[to] or to.init or __NULL__)(to)
|
2015-10-07 19:48:20 +00:00
|
|
|
initialized_states[to] = __NULL__
|
|
|
|
|
2015-05-30 14:41:37 +00:00
|
|
|
stack[#stack+stack_offset] = to
|
|
|
|
state_is_dirty = true
|
2013-08-05 14:30:30 +00:00
|
|
|
return (to.enter or __NULL__)(to, pre, ...)
|
|
|
|
end
|
|
|
|
|
2015-05-30 14:41:37 +00:00
|
|
|
function GS.switch(to, ...)
|
|
|
|
assert(to, "Missing argument: Gamestate to switch to")
|
|
|
|
assert(to ~= GS, "Can't call switch with colon operator")
|
|
|
|
;(stack[#stack].leave or __NULL__)(stack[#stack])
|
|
|
|
return change_state(0, to, ...)
|
|
|
|
end
|
|
|
|
|
2013-08-24 20:58:30 +00:00
|
|
|
function GS.push(to, ...)
|
|
|
|
assert(to, "Missing argument: Gamestate to switch to")
|
2014-07-01 17:42:42 +00:00
|
|
|
assert(to ~= GS, "Can't call push with colon operator")
|
2015-05-30 14:41:37 +00:00
|
|
|
return change_state(1, to, ...)
|
2013-08-05 14:30:30 +00:00
|
|
|
end
|
|
|
|
|
2014-08-22 11:57:02 +00:00
|
|
|
function GS.pop(...)
|
2013-08-05 14:30:30 +00:00
|
|
|
assert(#stack > 1, "No more states to pop!")
|
2015-05-30 14:19:26 +00:00
|
|
|
local pre, to = stack[#stack], stack[#stack-1]
|
2013-08-05 14:30:30 +00:00
|
|
|
stack[#stack] = nil
|
2014-08-22 11:42:17 +00:00
|
|
|
;(pre.leave or __NULL__)(pre)
|
2015-05-30 14:41:37 +00:00
|
|
|
state_is_dirty = true
|
2014-12-16 17:07:32 +00:00
|
|
|
return (to.resume or __NULL__)(to, pre, ...)
|
2013-08-05 14:30:30 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function GS.current()
|
|
|
|
return stack[#stack]
|
2010-08-09 15:52:48 +00:00
|
|
|
end
|
|
|
|
|
2015-05-30 14:19:26 +00:00
|
|
|
-- fetch event callbacks from love.handlers
|
|
|
|
local all_callbacks = { 'draw', 'errhand', 'update' }
|
|
|
|
for k in pairs(love.handlers) do
|
|
|
|
all_callbacks[#all_callbacks+1] = k
|
|
|
|
end
|
2010-10-31 12:04:08 +00:00
|
|
|
|
2011-11-19 19:41:43 +00:00
|
|
|
function GS.registerEvents(callbacks)
|
2013-08-19 12:10:00 +00:00
|
|
|
local registry = {}
|
2011-11-19 19:41:43 +00:00
|
|
|
callbacks = callbacks or all_callbacks
|
|
|
|
for _, f in ipairs(callbacks) do
|
2013-08-19 12:10:00 +00:00
|
|
|
registry[f] = love[f] or __NULL__
|
|
|
|
love[f] = function(...)
|
|
|
|
registry[f](...)
|
|
|
|
return GS[f](...)
|
|
|
|
end
|
2011-11-19 19:41:43 +00:00
|
|
|
end
|
2010-08-09 15:52:48 +00:00
|
|
|
end
|
|
|
|
|
2011-11-19 19:41:43 +00:00
|
|
|
-- forward any undefined functions
|
|
|
|
setmetatable(GS, {__index = function(_, func)
|
2015-05-30 14:41:37 +00:00
|
|
|
-- call function only if at least one 'update' was called beforehand
|
|
|
|
-- (see issue #46)
|
|
|
|
if not state_is_dirty or func == 'update' then
|
|
|
|
state_is_dirty = false
|
|
|
|
return function(...)
|
|
|
|
return (stack[#stack][func] or __NULL__)(stack[#stack], ...)
|
|
|
|
end
|
2011-11-19 19:41:43 +00:00
|
|
|
end
|
2015-05-30 14:41:37 +00:00
|
|
|
return __NULL__
|
2011-11-19 19:41:43 +00:00
|
|
|
end})
|
2011-01-22 10:53:31 +00:00
|
|
|
|
2011-11-19 19:41:43 +00:00
|
|
|
return GS
|