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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
levelselection = {}
local lg = love.graphics
function levelselection.enter()
state = STATE_LEVELSELECTION
level = 1
playMusic("menujazz")
end
function levelselection.update(dt)
updateKeys()
end
function levelselection.draw()
lg.push()
lg.scale(config.scale)
lg.print("PLEASE SELECT", 129, 11)
lg.print("A LEVEL", 151, 22)
lg.draw(img.level_buildings, quad.level_buildings, 116, 34)
drawBox(6,82,126,69)
drawBox(6,44,126,38)
if level == 1 then
lg.draw(img.level_buildings, quad.building_outline1, 138,121)
elseif level == 2 then
lg.draw(img.level_buildings, quad.building_outline2, 192,108)
else
lg.draw(img.level_buildings, quad.building_outline3, 156,43)
end
lg.printf(BUILDING_NAMES[level][1], 16, 54, 107, "center")
lg.printf(BUILDING_NAMES[level][2], 16, 66, 107, "center")
lg.print(DIFFICULTY_NAMES[level], 16, 92)
if level == 1 then
lg.print("FLOORS: " .. 21, 16, 106)
elseif level == 2 then
lg.print("FLOORS: " .. 30, 16, 106)
else
lg.print("FLOORS: " .. 42, 16, 106)
end
lg.print("MISSES: "..string.rep("@",6-level), 16, 120)
if highscores[level][1] then
lg.print("BEST: "..highscores[level][1].score, 16, 134)
else
lg.print("BEST:", 16, 134)
end
lg.pop()
end
function levelselection.keypressed(k, uni)
if k == "right" or k == "down" then
level = level + 1
if level > 3 then level = 1 end
playSound("blip")
elseif k == "left" or k == "up" then
level = level - 1
if level < 1 then level = 3 end
playSound("blip")
elseif k == "return" or k == " " then
ingame.enter(level)
playSound("confirm")
elseif k == "escape" then
playSound("confirm")
playMusic("opening")
mainmenu.enter()
end
end
function levelselection.action(k)
if k == "right" or k == "down" then
level = level + 1
if level > 3 then level = 1 end
playSound("blip")
elseif k == "left" or k == "up" then
level = level - 1
if level < 1 then level = 3 end
playSound("blip")
elseif k == "jump" or k == "pause" then
ingame.enter(level)
playSound("confirm")
elseif k == "action" then
playSound("confirm")
playMusic("opening")
mainmenu.enter()
end
end
|