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
|
local menu, background = ...
local Button = require "not.Button"
local Selector = require "not.Selector"
local width, height = love.graphics.getWidth()/getScale(), love.graphics.getHeight()/getScale()
local bx = width/2-29
local map_Selector = Selector(menu)
require "iconsList"
local icons, maps = getMapsIconsList()
if background == nil or not background:is(require "not.MenuBackground") then
background = require "not.MenuBackground"(menu)
end
return {
background,
map_Selector
:setPosition(width/2, 40)
:setSize(80, 42)
:setMargin(0)
:set("global", true)
:set("first", true)
:set("list", maps)
:set("icons_i", love.graphics.newImage("assets/maps.png"))
:set("icons_q", icons)
:set("shape", "panorama")
:init()
,
Button(menu)
:setText("Next")
:setPosition(bx,101)
:set("isEnabled", function ()
return map_Selector:isLocked()
end)
:set("active", function (self)
MAP = map_Selector:getFullSelection(true)[1][1] -- please, don't kill me for this, kek
self.parent:open("select")
end)
,
Button(menu)
:setText("Go back")
:setPosition(bx,117)
:set("active", function (self)
self.parent:open("main")
end)
,
}
|