File size: 1,459 Bytes
b6a38d7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
function OpenPreGameMainMenu(mode, context)
LoadingScreenOpen("idLoadingScreen", "pregame menu")
ResetGameSession()
local dlg = OpenDialog("PreGameMenu")
if dlg and mode then
dlg:SetMode(mode, context)
end
LoadingScreenClose("idLoadingScreen", "pregame menu")
if ChangingMap then
WaitMsg("ChangeMapDone")
end
TryConnectToServer()
ChangeGameState("setpiece_playing", false) -- in case a setpiece was still playing due to some error
Msg("PreGameMenuOpen")
end
function GetPreGameMainMenu()
return GetDialog("PreGameMenu")
end
function ResetGameSession()
Msg("ResetGameSession")
CloseAllDialogs()
if GetMap() ~= "" then
ChangeMap("")
end
DoneGame()
end
function OpenIngameMainMenu()
-- This menu usually opens on pressing "Escape" which is the same key used to skip setpieces.
-- People spam the key and there is a short time window in which you can pause during the setpiece
-- and break stuff.
if IsSetpiecePlaying() then return end
if not GameState.pregame_menu then
local menu = GetInGameMainMenu()
if menu then
CloseIngameMainMenu()
else
Msg("InGameMenuOpen")
return OpenDialog("InGameMenu")
end
end
end
function GetInGameMainMenu()
return GetDialog("InGameMenu")
end
function CloseIngameMainMenu()
CloseDialog("InGameMenu")
end
function CloseMenuDialogs()
local menu = GetPreGameMainMenu() or GetInGameMainMenu()
if menu and menu.window_state ~= "destroying" then
CloseDialog(menu)
end
end |