2023-04-08 18:33:43 -04:00
|
|
|
if Engine.GetCurrentMap() ~= "core_frontend" then
|
2023-04-08 19:09:02 -04:00
|
|
|
return
|
2023-04-08 18:33:43 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
local utils = require("utils")
|
2023-04-11 15:04:04 -04:00
|
|
|
require("DataSources_StartMenuTabs")
|
2023-04-08 18:33:43 -04:00
|
|
|
|
2023-04-11 14:25:30 -04:00
|
|
|
CoD.LobbyButtons.MP_PUBLIC_MATCH = {
|
|
|
|
stringRef = "MENU_PLAY_CAPS",
|
|
|
|
action = NavigateToLobby_SelectionList,
|
|
|
|
param = "MPLobbyOnline",
|
|
|
|
customId = "btnPublicMatch",
|
|
|
|
}
|
|
|
|
|
|
|
|
CoD.LobbyButtons.MP_FIND_MATCH = {
|
|
|
|
stringRef = "MPUI_BASICTRAINING_CAPS",
|
|
|
|
action = OpenFindMatch,
|
|
|
|
customId = "btnFindMatch",
|
|
|
|
}
|
|
|
|
|
2023-04-08 18:33:43 -04:00
|
|
|
CoD.LobbyButtons.MP_STATS = {
|
|
|
|
stringRef = "STATS",
|
|
|
|
action = function(self, element, controller, param, menu)
|
|
|
|
SetPerControllerTableProperty(controller, "disableGameSettingsOptions", true)
|
|
|
|
OpenPopup(menu, "BoiiiStatsMenu", controller)
|
|
|
|
end,
|
|
|
|
customId = "btnMPStats"
|
|
|
|
}
|
|
|
|
|
|
|
|
CoD.LobbyButtons.MP_START_GAME = {
|
|
|
|
stringRef = "MENU_START_GAME_CAPS",
|
|
|
|
action = function(self, element, controller, param, menu)
|
|
|
|
Engine.SetDvar("party_minplayers", 1)
|
|
|
|
Engine.Exec(nil, "launchgame")
|
|
|
|
end,
|
|
|
|
customId = "btnStartGame"
|
|
|
|
}
|
|
|
|
|
|
|
|
CoD.LobbyButtons.SETTING_UP_BOTS = {
|
|
|
|
stringRef = "MENU_SETUP_BOTS_CAPS",
|
|
|
|
action = function(self, element, controller, param, menu)
|
|
|
|
SetPerControllerTableProperty(controller, "disableGameSettingsOptions", true)
|
|
|
|
OpenPopup(menu, "GameSettings_Bots", controller)
|
|
|
|
end,
|
|
|
|
customId = "btnSettingUpBots"
|
|
|
|
}
|
|
|
|
|
|
|
|
CoD.LobbyButtons.MP_CUSTOM_SETUP_GAME = {
|
|
|
|
stringRef = "MPUI_SETUP_GAME_CAPS",
|
|
|
|
action = OpenSetupGameMP,
|
|
|
|
customId = "btnSetupGame",
|
|
|
|
}
|
|
|
|
|
|
|
|
local shouldShowMapVote = false
|
|
|
|
local addCustomButtons = function(controller, menuId, buttonTable, isLeader)
|
|
|
|
if menuId == LobbyData.UITargets.UI_MPLOBBYONLINE.id or menuId == LobbyData.UITargets.UI_ZMLOBBYONLINE.id then
|
|
|
|
utils.AddSpacer(buttonTable)
|
|
|
|
utils.AddSmallButton(controller, buttonTable, CoD.LobbyButtons.MP_STATS)
|
|
|
|
end
|
|
|
|
|
|
|
|
if menuId == LobbyData.UITargets.UI_MPLOBBYONLINE.id or menuId == LobbyData.UITargets.UI_ZMLOBBYONLINE.id or menuId == LobbyData.UITargets.UI_MPLOBBYMAIN.id or menuId == LobbyData.UITargets.UI_MPLOBBYLANGAME.id then
|
|
|
|
Engine.Mods_Lists_UpdateUsermaps()
|
|
|
|
end
|
|
|
|
|
|
|
|
if menuId == LobbyData.UITargets.UI_MPLOBBYONLINE.id then
|
|
|
|
shouldShowMapVote = true
|
|
|
|
elseif menuId == LobbyData.UITargets.UI_MPLOBBYONLINEPUBLICGAME.id then
|
|
|
|
if shouldShowMapVote == true then
|
|
|
|
shouldShowMapVote = false
|
2023-04-08 19:09:02 -04:00
|
|
|
--Enable map vote at start lobby
|
|
|
|
Engine.Exec(nil, "LobbyStopDemo")
|
2023-04-08 18:33:43 -04:00
|
|
|
end
|
2023-04-08 19:09:02 -04:00
|
|
|
utils.AddLargeButton(controller, buttonTable, CoD.LobbyButtons.MP_START_GAME, 1) --Launch match button
|
2023-04-08 18:33:43 -04:00
|
|
|
utils.AddSpacer(buttonTable, 1)
|
|
|
|
|
|
|
|
utils.AddSpacer(buttonTable)
|
|
|
|
utils.AddSmallButton(controller, buttonTable, CoD.LobbyButtons.MP_CUSTOM_SETUP_GAME) --Setup game in public lobby
|
|
|
|
elseif menuId == LobbyData.UITargets.UI_MPLOBBYONLINEARENAGAME.id then
|
|
|
|
utils.AddSpacer(buttonTable)
|
|
|
|
utils.AddSmallButton(controller, buttonTable, CoD.LobbyButtons.SETTING_UP_BOTS) --Bot setting button in public lobby
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-04-08 19:09:02 -04:00
|
|
|
local oldAddButtonsForTarget = CoD.LobbyMenus.AddButtonsForTarget
|
2023-04-08 18:33:43 -04:00
|
|
|
CoD.LobbyMenus.AddButtonsForTarget = function(controller, id)
|
|
|
|
local model = nil
|
|
|
|
if Engine.IsLobbyActive(Enum.LobbyType.LOBBY_TYPE_GAME) then
|
|
|
|
model = Engine.GetModel(DataSources.LobbyRoot.getModel(controller), "gameClient.isHost")
|
|
|
|
else
|
|
|
|
model = Engine.GetModel(DataSources.LobbyRoot.getModel(controller), "privateClient.isHost")
|
|
|
|
end
|
|
|
|
local isLeader = nil
|
|
|
|
if model ~= nil then
|
|
|
|
isLeader = Engine.GetModelValue(model)
|
|
|
|
else
|
|
|
|
isLeader = 1
|
|
|
|
end
|
2023-04-08 19:09:02 -04:00
|
|
|
local result = oldAddButtonsForTarget(controller, id)
|
2023-04-08 18:33:43 -04:00
|
|
|
addCustomButtons(controller, id, result, isLeader)
|
|
|
|
return result
|
|
|
|
end
|