h2-mod/data/cdata/ui_scripts/settings/__init__.lua

211 lines
5.2 KiB
Lua
Raw Normal View History

2022-07-14 21:52:46 -04:00
require("language")
2022-07-13 21:23:56 -04:00
2022-01-31 16:47:57 -05:00
function createdivider(menu, text)
local element = LUI.UIElement.new({
leftAnchor = true,
rightAnchor = true,
left = 0,
right = 0,
topAnchor = true,
bottomAnchor = false,
top = 0,
bottom = 33.33
})
element.scrollingToNext = true
element:addElement(LUI.MenuBuilder.BuildRegisteredType("h1_option_menu_titlebar", {
title_bar_text = Engine.ToUpperCase(Engine.Localize(text))
}))
menu.list:addElement(element)
end
LUI.addmenubutton("pc_controls", {
index = 4,
2022-03-19 19:41:25 -04:00
text = "@MENU_GENERAL",
2022-03-19 19:57:07 -04:00
description = Engine.Localize("@MENU_GENERAL_DESC"),
2022-01-31 16:47:57 -05:00
callback = function()
LUI.FlowManager.RequestAddMenu(nil, "settings_menu")
end
})
LUI.MenuBuilder.m_types_build["settings_menu"] = function(a1)
local menu = LUI.MenuTemplate.new(a1, {
2022-03-19 19:41:25 -04:00
menu_title = "@MENU_GENERAL",
2022-04-28 16:41:29 -04:00
menu_list_divider_top_offset = -(LUI.H1MenuTab.tabChangeHoldingElementHeight + H1MenuDims.spacing),
menu_width = GenericMenuDims.OptionMenuWidth
2022-01-31 16:47:57 -05:00
})
2022-03-19 19:41:25 -04:00
createdivider(menu, "@LUA_MENU_UPDATES")
2022-01-31 16:47:57 -05:00
LUI.Options.CreateOptionButton(
menu,
"cg_auto_update",
"@LUA_MENU_AUTO_UPDATE",
"@LUA_MENU_AUTO_UPDATE_DESC",
2022-01-31 16:47:57 -05:00
{
{
2022-03-19 19:41:25 -04:00
text = "@LUA_MENU_ENABLED",
value = true
2022-01-31 16:47:57 -05:00
},
{
2022-03-19 19:41:25 -04:00
text = "@LUA_MENU_DISABLED",
value = false
2022-01-31 16:47:57 -05:00
}
2022-03-19 19:41:25 -04:00
}
2022-01-31 16:47:57 -05:00
)
2022-03-19 19:41:25 -04:00
menu:AddButton("@LUA_MENU_CHECK_UPDATES", function()
2022-01-31 16:47:57 -05:00
LUI.tryupdating(false)
end, nil, true, nil, {
2022-03-19 19:41:25 -04:00
desc_text = Engine.Localize("@LUA_MENU_CHECK_UPDATES_DESC")
2022-01-31 16:47:57 -05:00
})
2022-03-19 19:41:25 -04:00
createdivider(menu, "@LUA_MENU_DRAWING")
2022-01-31 16:47:57 -05:00
LUI.Options.CreateOptionButton(
menu,
"cg_drawFPS",
"@LUA_MENU_DRAW_FPS",
"@LUA_MENU_DRAW_FPS_DESC",
2022-01-31 16:47:57 -05:00
{
{
2022-03-19 19:41:25 -04:00
text = "@LUA_MENU_DISABLED",
value = 0
2022-01-31 16:47:57 -05:00
},
{
2022-03-19 19:41:25 -04:00
text = "@LUA_MENU_FPS_ONLY",
value = 1
2022-01-31 16:47:57 -05:00
},
{
2022-03-19 19:41:25 -04:00
text = "@LUA_MENU_FPS_AND_VIEWPOS",
value = 2
2022-01-31 16:47:57 -05:00
}
2022-03-19 19:41:25 -04:00
}
2022-01-31 16:47:57 -05:00
)
LUI.Options.CreateOptionButton(
menu,
"cg_drawSpeed",
"@LUA_MENU_DRAW_SPEED",
"@LUA_MENU_DRAW_SPEED_DESC",
2022-01-31 16:47:57 -05:00
{
{
2022-03-19 19:41:25 -04:00
text = "@LUA_MENU_ENABLED",
value = true
2022-01-31 16:47:57 -05:00
},
{
2022-03-19 19:41:25 -04:00
text = "@LUA_MENU_DISABLED",
value = false
2022-01-31 16:47:57 -05:00
}
2022-03-19 19:41:25 -04:00
}
2022-01-31 16:47:57 -05:00
)
LUI.Options.CreateOptionButton(
menu,
"cg_speedGraph",
"@LUA_MENU_DRAW_SPEEDGRAPH",
2022-03-19 19:41:25 -04:00
"@LUA_MENU_DRAW_SPEEDGRAPH_DESC",
2022-01-31 16:47:57 -05:00
{
{
2022-03-19 19:41:25 -04:00
text = "@LUA_MENU_ENABLED",
value = true
2022-01-31 16:47:57 -05:00
},
{
2022-03-19 19:41:25 -04:00
text = "@LUA_MENU_DISABLED",
value = false
2022-01-31 16:47:57 -05:00
}
2022-03-19 19:41:25 -04:00
}
2022-01-31 16:47:57 -05:00
)
2022-03-19 19:41:25 -04:00
createdivider(menu, "@LUA_MENU_RENDERING")
2022-01-31 16:47:57 -05:00
LUI.Options.CreateOptionButton(
menu,
"r_fullbright",
"@LUA_MENU_R_FULLBRIGHT",
"@LUA_MENU_R_FULLBRIGHT_DESC",
2022-01-31 16:47:57 -05:00
{
{
2022-03-19 19:41:25 -04:00
text = "@LUA_MENU_DISABLED",
value = 0
2022-01-31 16:47:57 -05:00
},
{
2022-03-19 19:41:25 -04:00
text = "@LUA_MENU_ENABLED",
value = 1
2022-01-31 16:47:57 -05:00
},
{
2022-03-19 19:41:25 -04:00
text = "@LUA_MENU_MODE2",
value = 2
2022-01-31 16:47:57 -05:00
},
{
2022-03-19 19:41:25 -04:00
text = "@LUA_MENU_MODE3",
value = 3
2022-01-31 16:47:57 -05:00
}
2022-03-19 19:41:25 -04:00
}
2022-01-31 16:47:57 -05:00
)
2022-08-22 03:15:45 -04:00
createdivider(menu, "@LUA_MENU_AUDIO_OPTIONS")
LUI.Options.CreateOptionButton(
menu,
"snd_musicDisabledForCustomSoundtrack",
"@LUA_MENU_MUSIC",
"@LUA_MENU_MUSIC_DESC",
2022-08-22 03:15:45 -04:00
{
{
text = "@LUA_MENU_DISABLED",
value = true
},
{
text = "@LUA_MENU_ENABLED",
value = false
},
}
)
createdivider(menu, "@MENU_GAME_BEGINNING")
LUI.Options.CreateOptionButton(
menu,
"intro",
"@LUA_MENU_INTRO",
"@LUA_MENU_INTRO_DESC",
2022-08-22 03:15:45 -04:00
{
{
text = "@LUA_MENU_DISABLED",
value = false
},
{
text = "@LUA_MENU_ENABLED",
value = true
},
}
)
2022-01-31 16:47:57 -05:00
LUI.Options.InitScrollingList(menu.list, nil)
LUI.Options.AddOptionTextInfo(menu)
menu:AddBackButton()
return menu
2022-03-19 19:57:07 -04:00
end
if not Engine.InFrontend() then
LUI.MenuTemplate.AddVignette = function(f36_arg0)
if not LUI.FlowManager.IsMenuTopmost(Engine.GetLuiRoot(), "advanced_video") then
local f36_local0 = CoD.CreateState(0, 0, 0, 0, CoD.AnchorTypes.All)
f36_local0.material = RegisterMaterial("h1_ui_bg_vignette")
local self = LUI.UIImage.new(f36_local0)
self:setupFullWindowElement()
f36_arg0:addElement(self)
end
end
LUI.MenuTemplate.InitInGameBkg = function(f38_arg0, f38_arg1, f38_arg2, f38_arg3)
LUI.MenuTemplate.AddDarken(f38_arg0, f38_arg1, f38_arg3, 0.55)
if not Engine.IsMultiplayer() and not LUI.FlowManager.IsMenuTopmost(Engine.GetLuiRoot(), "advanced_video") then
LUI.MenuTemplate.AddWorldBlur(f38_arg0, f38_arg1)
end
end
end