X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Fgame%2Fg_window.pas;h=f13daa3f8b8a9b9c656a3c376d631c19f759bbff;hb=5c816a8e702fd39c65d0928a3315d81e979f30fb;hp=c4d1b0fb73a7984ce18686733833b6189abbac3e;hpb=c7a5223f1e2520ab13b480b937af1e208201de15;p=d2df-sdl.git diff --git a/src/game/g_window.pas b/src/game/g_window.pas index c4d1b0f..f13daa3 100644 --- a/src/game/g_window.pas +++ b/src/game/g_window.pas @@ -40,8 +40,8 @@ uses {$ENDIF} {$INCLUDE ../nogl/noGLuses.inc} SysUtils, Classes, MAPDEF, Math, - e_graphics, e_log, e_texture, g_main, - g_console, e_input, g_options, g_game, + r_graphics, e_log, e_texture, g_main, + g_console, r_console, e_input, g_options, g_game, r_game, g_basic, g_textures, e_sound, g_sound, g_menu, ENet, g_net, g_map, g_gfx, g_monsters, xprofiler, g_touch, g_gui, g_system, g_netmaster; @@ -91,10 +91,10 @@ begin e_SetRendertarget(True); e_SetViewPort(0, 0, gScreenWidth, gScreenHeight); - DrawMenuBackground('INTER'); + r_Game_DrawMenuBackground('INTER'); e_DarkenQuadWH(0, 0, gScreenWidth, gScreenHeight, 150); - DrawLoadingStat(); - g_Console_Draw(True); + r_Game_DrawLoadingStat(); + r_Console_Draw(True); e_SetRendertarget(False); e_SetViewPort(0, 0, gWinSizeX, gWinSizeY); @@ -145,15 +145,9 @@ begin begin flag := true; for i := 1 to t do - begin - if (NetMode = NET_SERVER) then g_Net_Host_Update() - else if (NetMode = NET_CLIENT) then g_Net_Client_Update(); Update(); - end; end; - if NetMode = NET_SERVER then g_Net_Flush(); - g_Map_ProfilersEnd(); g_Mons_ProfilersEnd(); @@ -181,7 +175,7 @@ begin begin if (not wMinimized) then begin - if gPause or not gLerpActors then + if gPause or (not gLerpActors) or (gState = STATE_FOLD) then gLerpFactor := 1.0 else gLerpFactor := nmin(1.0, (Time - Time_Old) / 28.0);