mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Perform CON_SAVE after a frame is drawn
git-svn-id: https://svn.eduke32.com/eduke32@6721 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
9c23735d98
commit
cd5b23e855
1 changed files with 19 additions and 21 deletions
|
@ -6759,23 +6759,6 @@ MAIN_LOOP_RESTART:
|
||||||
while (((g_netClient || g_netServer) || !(g_player[myconnectindex].ps->gm & (MODE_MENU|MODE_DEMO))) && totalclock >= ototalclock+TICSPERFRAME);
|
while (((g_netClient || g_netServer) || !(g_player[myconnectindex].ps->gm & (MODE_MENU|MODE_DEMO))) && totalclock >= ototalclock+TICSPERFRAME);
|
||||||
}
|
}
|
||||||
|
|
||||||
// handle CON_SAVE and CON_SAVENN
|
|
||||||
if (g_saveRequested)
|
|
||||||
{
|
|
||||||
KB_FlushKeyboardQueue();
|
|
||||||
|
|
||||||
g_screenCapture = 1;
|
|
||||||
G_DrawRooms(myconnectindex, 65536);
|
|
||||||
g_screenCapture = 0;
|
|
||||||
|
|
||||||
G_SavePlayerMaybeMulti(g_lastautosave);
|
|
||||||
g_quickload = &g_lastautosave;
|
|
||||||
|
|
||||||
OSD_Printf("Saved: %s\n", g_lastautosave.path);
|
|
||||||
|
|
||||||
g_saveRequested = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
G_DoCheats();
|
G_DoCheats();
|
||||||
|
|
||||||
if (g_player[myconnectindex].ps->gm & (MODE_EOL|MODE_RESTART))
|
if (g_player[myconnectindex].ps->gm & (MODE_EOL|MODE_RESTART))
|
||||||
|
@ -6790,10 +6773,8 @@ MAIN_LOOP_RESTART:
|
||||||
if (g_networkMode == NET_DEDICATED_SERVER)
|
if (g_networkMode == NET_DEDICATED_SERVER)
|
||||||
{
|
{
|
||||||
idle();
|
idle();
|
||||||
goto skipframe;
|
|
||||||
}
|
}
|
||||||
|
else if (G_FPSLimit() || g_saveRequested)
|
||||||
if (G_FPSLimit())
|
|
||||||
{
|
{
|
||||||
int const smoothRatio
|
int const smoothRatio
|
||||||
= ((ud.show_help == 0 && (!g_netServer && ud.multimode < 2) && !(g_player[myconnectindex].ps->gm & MODE_MENU))
|
= ((ud.show_help == 0 && (!g_netServer && ud.multimode < 2) && !(g_player[myconnectindex].ps->gm & MODE_MENU))
|
||||||
|
@ -6808,7 +6789,24 @@ MAIN_LOOP_RESTART:
|
||||||
G_DisplayRest(smoothRatio);
|
G_DisplayRest(smoothRatio);
|
||||||
}
|
}
|
||||||
|
|
||||||
skipframe:
|
// handle CON_SAVE and CON_SAVENN
|
||||||
|
if (g_saveRequested)
|
||||||
|
{
|
||||||
|
KB_FlushKeyboardQueue();
|
||||||
|
nextpage();
|
||||||
|
|
||||||
|
g_screenCapture = 1;
|
||||||
|
G_DrawRooms(myconnectindex, 65536);
|
||||||
|
g_screenCapture = 0;
|
||||||
|
|
||||||
|
G_SavePlayerMaybeMulti(g_lastautosave);
|
||||||
|
g_quickload = &g_lastautosave;
|
||||||
|
|
||||||
|
OSD_Printf("Saved: %s\n", g_lastautosave.path);
|
||||||
|
|
||||||
|
g_saveRequested = false;
|
||||||
|
}
|
||||||
|
|
||||||
if (g_player[myconnectindex].ps->gm&MODE_DEMO)
|
if (g_player[myconnectindex].ps->gm&MODE_DEMO)
|
||||||
goto MAIN_LOOP_RESTART;
|
goto MAIN_LOOP_RESTART;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue