2015-11-20 11:30:40 +00:00
|
|
|
local lf = love.filesystem
|
|
|
|
local lg = love.graphics
|
2016-01-20 22:34:25 +00:00
|
|
|
local path = ...
|
2015-11-20 11:30:40 +00:00
|
|
|
|
2015-11-18 03:27:06 +00:00
|
|
|
local pop = {}
|
2016-01-20 22:34:25 +00:00
|
|
|
pop.elementClasses = {}
|
|
|
|
--pop.elements = {}
|
2016-01-21 23:01:15 +00:00
|
|
|
pop.window = {child = {}} --top level element, defined in pop.load()
|
2015-11-20 11:30:40 +00:00
|
|
|
pop.skins = {}
|
2016-01-20 22:34:25 +00:00
|
|
|
pop.currentSkin = "clear"
|
2016-01-21 22:18:28 +00:00
|
|
|
--TODO we need a "focused" element for textinput or whatever
|
2015-11-18 03:27:06 +00:00
|
|
|
|
2016-01-20 22:34:25 +00:00
|
|
|
function pop.load()
|
|
|
|
-- load element classes
|
|
|
|
local elementList = lf.getDirectoryItems(path .. "/elements")
|
2015-11-18 03:27:06 +00:00
|
|
|
|
2016-01-21 22:18:28 +00:00
|
|
|
for i=1, #elementList do
|
2016-01-20 22:34:25 +00:00
|
|
|
local name = elementList[i]:sub(1, -5)
|
|
|
|
pop.elementClasses[name] = require(path .. "/elements/" .. name)
|
2016-01-21 23:01:15 +00:00
|
|
|
print("loaded \"" .. name .. "\" element")
|
2016-01-20 22:34:25 +00:00
|
|
|
|
|
|
|
-- wrapper to be able to call pop.element() to create elements
|
|
|
|
if not pop[name] then
|
|
|
|
pop[name] = function(...) return pop.create(name, ...) end
|
2016-01-21 23:01:15 +00:00
|
|
|
print("pop." .. name .. "() created")
|
2016-01-20 22:34:25 +00:00
|
|
|
end
|
2015-11-18 03:27:06 +00:00
|
|
|
end
|
|
|
|
|
2016-01-20 22:34:25 +00:00
|
|
|
-- load skins
|
|
|
|
local skinList = lf.getDirectoryItems(path .. "/skins")
|
2015-11-18 03:27:06 +00:00
|
|
|
|
2016-01-21 22:18:28 +00:00
|
|
|
for i=1, #skinList do
|
2016-01-20 22:34:25 +00:00
|
|
|
local name = skinList[i]:sub(1, -5)
|
|
|
|
pop.skins[name] = require(path .. "/skins/" .. name)
|
|
|
|
pop.skins[name].name = name
|
2016-01-21 23:01:15 +00:00
|
|
|
print("loaded \"" .. name .. "\" skin")
|
2016-01-20 22:34:25 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
-- set top element
|
2016-01-21 22:18:28 +00:00
|
|
|
pop.window = pop.create("element"):setSize(lg.getWidth(), lg.getHeight())
|
2016-01-21 23:01:15 +00:00
|
|
|
print("created pop.window")
|
2016-01-20 22:34:25 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function pop.create(elementType, parent, ...)
|
|
|
|
if not parent then
|
|
|
|
parent = pop.window
|
2015-11-18 03:27:06 +00:00
|
|
|
end
|
|
|
|
|
2016-01-20 22:34:25 +00:00
|
|
|
local newElement = pop.elementClasses[elementType](pop, parent, ...)
|
2016-01-21 23:01:15 +00:00
|
|
|
table.insert(parent.child, newElement) --NOTE pop.window is its own parent?
|
2016-01-20 22:34:25 +00:00
|
|
|
|
2015-11-18 03:27:06 +00:00
|
|
|
return newElement
|
|
|
|
end
|
|
|
|
|
2016-01-20 22:34:25 +00:00
|
|
|
function pop.update(dt, element)
|
|
|
|
if not element then
|
|
|
|
element = pop.window
|
|
|
|
end
|
|
|
|
|
|
|
|
if element.update then
|
|
|
|
element:update(dt)
|
|
|
|
end
|
|
|
|
|
2016-01-21 22:18:28 +00:00
|
|
|
for i=1,#element.child do
|
|
|
|
pop.update(dt, element.child[i])
|
2016-01-20 22:34:25 +00:00
|
|
|
end
|
|
|
|
end
|
2015-11-18 03:27:06 +00:00
|
|
|
|
|
|
|
function pop.draw(element)
|
|
|
|
if not element then
|
2016-01-20 22:34:25 +00:00
|
|
|
element = pop.window
|
2015-11-18 03:27:06 +00:00
|
|
|
end
|
|
|
|
|
2016-01-21 22:18:28 +00:00
|
|
|
if not element.excludeRendering then
|
|
|
|
if element.skin.draw and element.skin.draw(element) then
|
|
|
|
-- do nothing...
|
|
|
|
elseif element.draw then
|
|
|
|
element:draw()
|
|
|
|
end
|
2015-11-20 11:30:40 +00:00
|
|
|
|
2016-01-21 22:18:28 +00:00
|
|
|
for i=1,#element.child do
|
|
|
|
pop.draw(element.child[i])
|
|
|
|
end
|
2015-11-20 11:30:40 +00:00
|
|
|
end
|
2015-11-18 03:27:06 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function pop.mousepressed(button, x, y)
|
2016-01-20 22:34:25 +00:00
|
|
|
--TODO find element, if it has a callback, call with button and LOCAL x/y
|
2015-11-18 03:27:06 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function pop.mousereleased(button, x, y)
|
2016-01-20 22:34:25 +00:00
|
|
|
--TODO find element, if it has a callback, call with button and LOCAL x/y
|
2015-11-18 03:27:06 +00:00
|
|
|
end
|
|
|
|
|
2016-01-20 22:34:25 +00:00
|
|
|
function pop.keypressed(key)
|
|
|
|
--TODO no idea what to do with this
|
2015-11-21 00:41:11 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function pop.keyreleased(key)
|
2016-01-20 22:34:25 +00:00
|
|
|
--TODO no idea what to do with this
|
2015-11-21 00:41:11 +00:00
|
|
|
end
|
|
|
|
|
2016-01-21 23:01:15 +00:00
|
|
|
function pop.setSkin(skin)
|
|
|
|
if type(skin) == "string" then
|
|
|
|
pop.currentSkin = pop.skins[skin]
|
|
|
|
else
|
|
|
|
pop.currentSkin = skin
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-01-20 22:34:25 +00:00
|
|
|
pop.load()
|
2015-11-18 03:27:06 +00:00
|
|
|
|
|
|
|
return pop
|