2020-08-01 16:32:09 +02:00
|
|
|
local ListBox = require "core.modules.menusystem.listbox"
|
|
|
|
local OptionMenu = ListBox:extend()
|
|
|
|
local WIDTH = 424/1.4
|
2020-08-02 13:47:27 +02:00
|
|
|
local HEIGHT = 240/1.9
|
|
|
|
|
|
|
|
local gui = require "game.modules.gui"
|
2020-08-01 16:32:09 +02:00
|
|
|
|
|
|
|
function OptionMenu:new(menusystem, name)
|
|
|
|
local w, h = math.floor(WIDTH), math.floor(HEIGHT)
|
|
|
|
local screenw, screenh = core.screen:getDimensions()
|
|
|
|
local x = (screenw/2) - (w/2)
|
|
|
|
local y = (screenh/2) - (h/2)
|
2020-08-02 13:47:27 +02:00
|
|
|
OptionMenu.super.new(self, menusystem, name, x, y, w, h, 6)
|
|
|
|
self.box = gui.newTextBox("assets/gui/dialogbox.png", w+16, h+16)
|
|
|
|
end
|
|
|
|
|
|
|
|
function OptionMenu:draw()
|
|
|
|
love.graphics.draw(self.box, self.x-8, self.y-8)
|
|
|
|
OptionMenu.super.draw(self)
|
2020-08-01 16:32:09 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
return OptionMenu
|