Skip to content
Snippets Groups Projects
Commit d8290561 authored by dg's avatar dg
Browse files

New option in the main menu: reset interface positions

git-svn-id: http://svn.net-core.org/repos/t-engine4@4994 51575b47-30f0-44d4-a5cc-537603b46e54
parent c16ff481
No related branches found
No related tags found
No related merge requests found
......@@ -1353,7 +1353,7 @@ function _M:setupCommands()
HELP = "EXIT",
EXIT = function()
local menu menu = require("engine.dialogs.GameMenu").new{
local l = {
"resume",
"achievements",
{ "Show known Lore", function() self:unregisterDialog(menu) self:registerDialog(require("mod.dialogs.ShowLore").new("Tales of Maj'Eyal Lore", self.player)) end },
......@@ -1368,6 +1368,9 @@ function _M:setupCommands()
"save",
"quit"
}
local adds = self.uiset:getMainMenuItems()
for i = #adds, 1, -1 do table.insert(l, 10, adds[i]) end
local menu menu = require("engine.dialogs.GameMenu").new(l)
self:registerDialog(menu)
end,
......
......@@ -210,6 +210,12 @@ function _M:init()
self.buffs_base = UI:makeFrame("ui/icon-frame/frame", 40, 40)
end
function _M:getMainMenuItems()
return {
{"Reset interface positions", function() self:resetPlaces() end},
}
end
--- Forbid some options from showing up, they are useless for this ui
function _M:checkGameOption(name)
local list = table.reverse{"icons_temp_effects", "icons_hotkeys", "hotkeys_rows", "log_lines"}
......
......@@ -54,3 +54,7 @@ end
function _M:handleResolutionChange(w, h, ow, oh)
return false
end
function _M:getMainMenuItems()
return {}
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment