diff options
author | Aki <nthirtyone@gmail.com> | 2017-04-09 22:07:04 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-04-09 22:07:04 +0200 |
commit | 0dd01913fe0eefc7ba4bc0797877f40fdedf9315 (patch) | |
tree | 8d270eb07f589d2487b3ce66d4865e5a4718042a /config/menuselect.lua | |
parent | 55b0cf1a22e4a7e41fe00aa693445d6c4bd0652d (diff) | |
parent | a03c1125f10fbbad253a0efc4727072fcbd55345 (diff) | |
download | roflnauts-0dd01913fe0eefc7ba4bc0797877f40fdedf9315.zip roflnauts-0dd01913fe0eefc7ba4bc0797877f40fdedf9315.tar.gz roflnauts-0dd01913fe0eefc7ba4bc0797877f40fdedf9315.tar.bz2 |
Merge branch 'com'
Diffstat (limited to 'config/menuselect.lua')
-rw-r--r-- | config/menuselect.lua | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/config/menuselect.lua b/config/menuselect.lua deleted file mode 100644 index 19f46ab..0000000 --- a/config/menuselect.lua +++ /dev/null @@ -1,73 +0,0 @@ -local menu = ... - -local button = require "button" -local selector = require "selector" -local element = require "element" - -local width, height = love.graphics.getWidth()/getScale(), love.graphics.getHeight()/getScale() -local bx = width/2-29 - -local naut_selector = selector:new(menu) -local start_button = button:new(menu) - -return { - naut_selector - :setPosition(width/2,60) - :setMargin(8) - :setSize(32, 32) - :set("list", require "nautslist") - :set("global", false) - :set("icons_i", love.graphics.newImage("assets/portraits.png")) - :set("icons_q", require "nautsicons") - :init() - , - start_button - :setText("Force start") - :setPosition(bx,134) - :set("isEnabled", function () - if #naut_selector:getFullSelection(false) > 1 then - return true - end - return false - end) - :set("active", function (self) - local nauts = naut_selector:getFullSelection(false) - if #nauts > 1 then - changeScene(World:new(MAP, nauts)) - end - end) - , - button:new(menu) - :setText("Go back") - :setPosition(bx,150) - :set("active", function (self) - self.parent:load("menuhost") - end) - , - element:new(menu) - :setPosition(bx, 101) - :set("the_final_countdown", 9) - :set("draw", function (self, scale) - if self.the_final_countdown ~= 9 then - local x,y = self:getPosition() - local countdown = math.max(1, math.ceil(self.the_final_countdown)) - love.graphics.setColor(255, 255, 255, 255) - love.graphics.setFont(Font) - love.graphics.print("Autostart in:", (x-16)*scale, (y+10)*scale, 0, scale, scale) - love.graphics.setFont(Bold) - love.graphics.printf(countdown, (x+40)*scale, (y)*scale, 36, "center", 0, scale, scale) - end - end) - :set("update", function (self, dt) - local total = #naut_selector:getFullSelection(false) - if total > 1 then - self.the_final_countdown = self.the_final_countdown - dt - else - self.the_final_countdown = 9 - end - if self.the_final_countdown < 0 then - start_button:active() - end - end) - , -}
\ No newline at end of file |