h1-mod/data/ui_scripts/server_list/lobby.lua

70 lines
2.5 KiB
Lua
Raw Normal View History

2022-03-02 18:21:09 -05:00
local Lobby = luiglobals.Lobby
local MPLobbyOnline = LUI.mp_menus.MPLobbyOnline
2022-03-05 15:01:55 -05:00
game:addlocalizedstring("LUA_MENU_SERVERLIST", "SERVER LIST")
2022-03-02 18:21:09 -05:00
function LeaveLobby(f5_arg0)
2022-03-11 17:35:50 -05:00
LeaveXboxLive()
if Lobby.IsInPrivateParty() == false or Lobby.IsPrivatePartyHost() then
LUI.FlowManager.RequestLeaveMenuByName("menu_xboxlive")
Engine.ExecNow("clearcontrollermap")
end
2022-03-02 18:21:09 -05:00
end
function menu_xboxlive(f16_arg0, f16_arg1)
2022-03-11 17:35:50 -05:00
local menu = LUI.MPLobbyBase.new(f16_arg0, {
menu_title = "@PLATFORM_UI_HEADER_PLAY_MP_CAPS",
memberListState = Lobby.MemberListStates.Prelobby
})
2022-03-02 18:21:09 -05:00
2022-03-11 17:35:50 -05:00
menu:setClass(LUI.MPLobbyOnline)
2022-03-02 18:21:09 -05:00
2022-03-11 17:35:50 -05:00
local serverListButton = menu:AddButton("@LUA_MENU_SERVERLIST", function(a1, a2)
2022-03-02 18:21:09 -05:00
LUI.FlowManager.RequestAddMenu(a1, "menu_systemlink_join", true, nil)
end)
2022-03-11 17:35:50 -05:00
serverListButton:setDisabledRefreshRate(500)
if Engine.IsCoreMode() then
menu:AddCACButton()
menu:AddBarracksButton()
menu:AddPersonalizationButton()
-- menu:AddDepotButton()
end
2022-03-02 18:21:09 -05:00
2022-03-11 17:35:50 -05:00
serverListButton = menu:AddButton("@MENU_PRIVATE_MATCH", MPLobbyOnline.OnPrivateMatch,
MPLobbyOnline.disablePrivateMatchButton)
serverListButton:rename("menu_xboxlive_private_match")
serverListButton:setDisabledRefreshRate(500)
if not Engine.IsCoreMode() then
local leaderboardButton = menu:AddButton("@LUA_MENU_LEADERBOARD", "OpLeaderboardMain")
leaderboardButton:rename("OperatorMenu_leaderboard")
end
2022-03-02 18:21:09 -05:00
2022-03-11 17:35:50 -05:00
menu:AddOptionsButton()
local natType = Lobby.GetNATType()
if natType then
local natTypeText = Engine.Localize("NETWORK_YOURNATTYPE", natType)
local properties = CoD.CreateState(nil, nil, 2, -62, CoD.AnchorTypes.BottomRight)
properties.width = 250
properties.height = CoD.TextSettings.BodyFontVeryTiny.Height
properties.font = CoD.TextSettings.BodyFontVeryTiny.Font
properties.color = luiglobals.Colors.white
properties.alpha = 0.25
local self = LUI.UIText.new(properties)
self:setText(natTypeText)
menu:addElement(self)
end
2022-03-02 18:21:09 -05:00
2022-03-11 17:35:50 -05:00
menu.isSignInMenu = true
menu:registerEventHandler("gain_focus", LUI.MPLobbyOnline.OnGainFocus)
menu:registerEventHandler("player_joined", luiglobals.Cac.PlayerJoinedEvent)
menu:registerEventHandler("exit_live_lobby", LeaveLobby)
2022-03-02 18:21:09 -05:00
2022-03-11 17:35:50 -05:00
if Engine.IsCoreMode() then
Engine.ExecNow("eliteclan_refresh", Engine.GetFirstActiveController())
end
2022-03-02 18:21:09 -05:00
2022-03-11 17:35:50 -05:00
return menu
2022-03-02 18:21:09 -05:00
end
LUI.MenuBuilder.m_types_build["menu_xboxlive"] = menu_xboxlive