X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=blobdiff_plain;f=sys_win.c;h=e5655b653768b125371f396bd8e60ec9b8c82fb5;hp=8715a6078292f530dc1284c3b1e4837b59c61973;hb=ae200d7042383b4cb57a86a449105106c3bc1ab0;hpb=ea7c24e1fb41f3b1df984ac0eed6881c9fde16f5 diff --git a/sys_win.c b/sys_win.c index 8715a607..e5655b65 100644 --- a/sys_win.c +++ b/sys_win.c @@ -8,7 +8,7 @@ of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. @@ -19,8 +19,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ // sys_win.c -- Win32 system interface code -#define WIN32_USETIMEGETTIME 0 - #include "quakedef.h" #include "winquake.h" #include "errno.h" @@ -28,13 +26,16 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "conproc.h" #include "direct.h" -#define CONSOLE_ERROR_TIMEOUT 60.0 // # of seconds to wait on Sys_Error running - // dedicated before exiting -#define PAUSE_SLEEP 50 // sleep time on pause or minimization -#define NOT_FOCUS_SLEEP 20 // sleep time when not focus +cvar_t sys_usetimegettime = {CVAR_SAVE, "sys_usetimegettime", "1"}; + +// # of seconds to wait on Sys_Error running dedicated before exiting +#define CONSOLE_ERROR_TIMEOUT 60.0 +// sleep time on pause or minimization +#define PAUSE_SLEEP 50 +// sleep time when not focus +#define NOT_FOCUS_SLEEP 20 int starttime; -qboolean ActiveApp, Minimized; static qboolean sc_return_on_enter = false; HANDLE hinput, houtput; @@ -44,127 +45,28 @@ static HANDLE hFile; static HANDLE heventParent; static HANDLE heventChild; + /* =============================================================================== -QFile IO +DLL MANAGEMENT =============================================================================== */ -// LordHavoc: 256 pak files (was 10) -#define MAX_HANDLES 256 -QFile *sys_handles[MAX_HANDLES]; - -int findhandle (void) -{ - int i; - - for (i=1 ; i= ' ') { - WriteFile(houtput, &ch, 1, &dummy, NULL); + WriteFile(houtput, &ch, 1, &dummy, NULL); text[len] = ch; len = (len + 1) & 0xff; } @@ -451,7 +333,7 @@ void Sys_Sleep (void) void Sys_SendKeyEvents (void) { - MSG msg; + MSG msg; while (PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE)) { @@ -461,8 +343,8 @@ void Sys_SendKeyEvents (void) if (!GetMessage (&msg, NULL, 0, 0)) Sys_Quit (); - TranslateMessage (&msg); - DispatchMessage (&msg); + TranslateMessage (&msg); + DispatchMessage (&msg); } } @@ -470,7 +352,7 @@ void Sys_SendKeyEvents (void) /* ============================================================================== - WINDOWS CRAP +WINDOWS CRAP ============================================================================== */ @@ -489,19 +371,18 @@ WinMain */ HINSTANCE global_hInstance; int global_nCmdShow; -char *argv[MAX_NUM_ARGVS]; -static char *empty_string = ""; +const char *argv[MAX_NUM_ARGVS]; +char program_name[MAX_OSPATH]; int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { - double oldtime, newtime; - MEMORYSTATUS lpBuffer; - static char cwd[1024]; - int t; + double frameoldtime, framenewtime; + MEMORYSTATUS lpBuffer; + int t; - /* previous instances do not exist in Win32 */ - if (hPrevInstance) - return 0; + /* previous instances do not exist in Win32 */ + if (hPrevInstance) + return 0; global_hInstance = hInstance; global_nCmdShow = nCmdShow; @@ -509,28 +390,20 @@ int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLin lpBuffer.dwLength = sizeof(MEMORYSTATUS); GlobalMemoryStatus (&lpBuffer); - if (!GetCurrentDirectory (sizeof(cwd), cwd)) - Sys_Error ("Couldn't determine current directory"); + com_argc = 1; + program_name[sizeof(program_name)-1] = 0; + GetModuleFileNameA(NULL, program_name, sizeof(program_name) - 1); + argv[0] = program_name; - if (cwd[strlen(cwd)-1] == '/') - cwd[strlen(cwd)-1] = 0; - - memset(&host_parms, 0, sizeof(host_parms)); - - host_parms.basedir = cwd; - - host_parms.argc = 1; - argv[0] = empty_string; - - while (*lpCmdLine && (host_parms.argc < MAX_NUM_ARGVS)) + while (*lpCmdLine && (com_argc < MAX_NUM_ARGVS)) { while (*lpCmdLine && ((*lpCmdLine <= 32) || (*lpCmdLine > 126))) lpCmdLine++; if (*lpCmdLine) { - argv[host_parms.argc] = lpCmdLine; - host_parms.argc++; + argv[com_argc] = lpCmdLine; + com_argc++; while (*lpCmdLine && ((*lpCmdLine > 32) && (*lpCmdLine <= 126))) lpCmdLine++; @@ -540,19 +413,14 @@ int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLin *lpCmdLine = 0; lpCmdLine++; } - } } - - host_parms.argv = argv; - - COM_InitArgv (host_parms.argc, host_parms.argv); - - host_parms.argc = com_argc; - host_parms.argv = com_argv; + com_argv = argv; Sys_Shared_EarlyInit(); + Cvar_RegisterVariable(&sys_usetimegettime); + tevent = CreateEvent(NULL, false, false, NULL); if (!tevent) @@ -593,42 +461,33 @@ int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLin // because sound is off until we become active S_BlockSound (); -#if WIN32_USETIMEGETTIME - // make sure the timer is high precision, otherwise NT gets 18ms resolution - // LordHavoc: - // Windows 2000 Advanced Server (and possibly other versions) - // apparently have a broken timer, because it runs at more like 10x speed - // if this isn't used, heh - timeBeginPeriod (1); -#endif - Host_Init (); Sys_Shared_LateInit(); - oldtime = Sys_DoubleTime (); + frameoldtime = Sys_DoubleTime (); - /* main window message loop */ + /* main window message loop */ while (1) { if (cls.state != ca_dedicated) { // yield the CPU for a little while when paused, minimized, or not the focus - if ((cl.paused && !ActiveApp) || Minimized) + if ((cl.paused && !vid_activewindow) || vid_hidden) { SleepUntilInput (PAUSE_SLEEP); scr_skipupdate = 1; // no point in bothering to draw } - else if (!ActiveApp) + else if (!vid_activewindow) SleepUntilInput (NOT_FOCUS_SLEEP); } - newtime = Sys_DoubleTime (); - Host_Frame (newtime - oldtime); - oldtime = newtime; + framenewtime = Sys_DoubleTime (); + Host_Frame (framenewtime - frameoldtime); + frameoldtime = framenewtime; } - /* return success of application */ - return true; + /* return success of application */ + return true; }