summaryrefslogtreecommitdiffhomepage
path: root/menu.lua
blob: 87369dab622a6c908bcfad12673c9a7c760079bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
-- `Menu` (Scene)
-- It creates single screen of a menu
-- I do know that model I used here and in `World` loading configuration files is not flawless but I did not want to rewrite `World`s one but wanted to keep things similar at least in project scope.

require "selector"

-- Here it begins
Menu = {
	scale = getScale(),
	elements, --table
	active = 1
}
function Menu:new(name)
	local o = {}
	setmetatable(o, self)
	self.__index = self
	o.elements = {}
	o:load(name)
	return o
end
function Menu:delete() end

-- Load menu from file
function Menu:load(name)
	local name = "config/" .. (name or "menumain") .. ".lua"
	local menu = love.filesystem.load(name)
	self.elements = menu()
	self.elements[self.active]:focus()
end

-- LÖVE2D callbacks
function Menu:update(dt) end
function Menu:draw()
	local scale = self.scale
	love.graphics.setFont(Font)
	for _,element in pairs(self.elements) do
		element:draw(scale)
	end
end

-- Controller callbacks
function Menu:controlpressed(set, action, key)
	if action == "down" then
		self.elements[self.active]:blur()
		self.active = (self.active%#self.elements)+1
		self.elements[self.active]:focus()
	end
	if action == "up" then
		self.elements[self.active]:blur()
		if self.active == 1 then
			self.active = #self.elements
		else
			self.active = self.active - 1
		end
		self.elements[self.active]:focus()
	end
	for _,element in pairs(self.elements) do
		element:controlpressed(set, action, key)
	end
end
function Menu:controlreleased(set, action, key) end