2 Copyright (C) 1996-1997 Id Software, Inc.
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 See the GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 // sys_win.c -- Win32 system interface code
31 extern void S_BlockSound (void);
33 cvar_t sys_usetimegettime = {CVAR_SAVE, "sys_usetimegettime", "1", "use windows timeGetTime function (which has issues on some motherboards) for timing rather than QueryPerformanceCounter timer (which has issues on multicore/multiprocessor machines and processors which are designed to conserve power)"};
35 HANDLE hinput, houtput;
39 static HANDLE heventParent;
40 static HANDLE heventChild;
44 ===============================================================================
48 ===============================================================================
51 void Sys_Error (const char *error, ...)
54 char text[MAX_INPUTLINE];
55 static int in_sys_error0 = 0;
56 static int in_sys_error1 = 0;
57 static int in_sys_error2 = 0;
58 static int in_sys_error3 = 0;
60 va_start (argptr, error);
61 dpvsnprintf (text, sizeof (text), error, argptr);
64 Con_Printf ("Quake Error: %s\n", text);
66 // close video so the message box is visible, unless we already tried that
67 if (!in_sys_error0 && cls.state != ca_dedicated)
73 if (!in_sys_error3 && cls.state != ca_dedicated)
76 MessageBox(NULL, text, "Quake Error", MB_OK | MB_SETFOREGROUND | MB_ICONSTOP);
85 // shut down QHOST hooks if necessary
95 void Sys_Shutdown (void)
100 if (cls.state == ca_dedicated)
103 // shut down QHOST hooks if necessary
107 void Sys_PrintToTerminal(const char *text)
110 extern HANDLE houtput;
111 if (cls.state == ca_dedicated)
112 WriteFile(houtput, text, (DWORD) strlen(text), &dummy, NULL);
120 double Sys_DoubleTime (void)
122 static int first = true;
123 static double oldtime = 0.0, curtime = 0.0;
125 // LordHavoc: note to people modifying this code, DWORD is specifically defined as an unsigned 32bit number, therefore the 65536.0 * 65536.0 is fine.
126 if (sys_usetimegettime.integer)
128 static int firsttimegettime = true;
131 // Windows 95/98/ME/NT/2000/XP
133 // reasonable accuracy (millisecond)
135 // wraps around every 47 days or so (but this is non-fatal to us, odd times are rejected, only causes a one frame stutter)
137 // make sure the timer is high precision, otherwise different versions of windows have varying accuracy
138 if (firsttimegettime)
141 firsttimegettime = false;
144 newtime = (double) timeGetTime () / 1000.0;
148 // QueryPerformanceCounter
150 // Windows 95/98/ME/NT/2000/XP
152 // very accurate (CPU cycles)
154 // does not necessarily match realtime too well (tends to get faster and faster in win98)
155 // wraps around occasionally on some platforms (depends on CPU speed and probably other unknown factors)
157 LARGE_INTEGER PerformanceFreq;
158 LARGE_INTEGER PerformanceCount;
160 if (!QueryPerformanceFrequency (&PerformanceFreq))
162 Con_Printf ("No hardware timer available\n");
163 // fall back to timeGetTime
164 Cvar_SetValueQuick(&sys_usetimegettime, true);
165 return Sys_DoubleTime();
167 QueryPerformanceCounter (&PerformanceCount);
170 timescale = 1.0 / ((double) PerformanceFreq.u.LowPart + (double) PerformanceFreq.u.HighPart * 65536.0 * 65536.0);
171 newtime = ((double) PerformanceCount.u.LowPart + (double) PerformanceCount.u.HighPart * 65536.0 * 65536.0) * timescale;
173 timescale = 1.0 / ((double) PerformanceFreq.LowPart + (double) PerformanceFreq.HighPart * 65536.0 * 65536.0);
174 newtime = ((double) PerformanceCount.LowPart + (double) PerformanceCount.HighPart * 65536.0 * 65536.0) * timescale;
184 if (newtime < oldtime)
186 // warn if it's significant
187 if (newtime - oldtime < -0.01)
188 Con_Printf("Sys_DoubleTime: time stepped backwards (went from %f to %f, difference %f)\n", oldtime, newtime, newtime - oldtime);
191 curtime += newtime - oldtime;
198 char *Sys_ConsoleInput (void)
200 static char text[MAX_INPUTLINE];
202 INPUT_RECORD recs[1024];
204 DWORD numread, numevents, dummy;
206 if (cls.state != ca_dedicated)
212 if (!GetNumberOfConsoleInputEvents (hinput, &numevents))
213 Sys_Error ("Error getting # of console events");
218 if (!ReadConsoleInput(hinput, recs, 1, &numread))
219 Sys_Error ("Error reading console input");
222 Sys_Error ("Couldn't read console input");
224 if (recs[0].EventType == KEY_EVENT)
226 if (!recs[0].Event.KeyEvent.bKeyDown)
228 ch = recs[0].Event.KeyEvent.uChar.AsciiChar;
233 WriteFile(houtput, "\r\n", 2, &dummy, NULL);
245 WriteFile(houtput, "\b \b", 3, &dummy, NULL);
255 WriteFile(houtput, &ch, 1, &dummy, NULL);
257 len = (len + 1) & 0xff;
270 void Sys_Sleep(int milliseconds)
272 if (milliseconds < 1)
277 char *Sys_GetClipboardData (void)
282 if (OpenClipboard (NULL) != 0)
284 HANDLE hClipboardData;
286 if ((hClipboardData = GetClipboardData (CF_TEXT)) != 0)
288 if ((cliptext = GlobalLock (hClipboardData)) != 0)
290 data = Z_Malloc (GlobalSize(hClipboardData)+1);
291 strcpy (data, cliptext);
292 GlobalUnlock (hClipboardData);
300 void Sys_InitConsole (void)
304 // initialize the windows dedicated server console if needed
305 tevent = CreateEvent(NULL, false, false, NULL);
308 Sys_Error ("Couldn't create event");
310 // LordHavoc: can't check cls.state because it hasn't been initialized yet
311 // if (cls.state == ca_dedicated)
312 if (COM_CheckParm("-dedicated"))
314 if (!AllocConsole ())
315 Sys_Error ("Couldn't create dedicated server console");
317 hinput = GetStdHandle (STD_INPUT_HANDLE);
318 houtput = GetStdHandle (STD_OUTPUT_HANDLE);
323 // give QHOST a chance to hook into the console
324 if ((t = COM_CheckParm ("-HFILE")) > 0)
327 hFile = (HANDLE)atoi (com_argv[t+1]);
330 if ((t = COM_CheckParm ("-HPARENT")) > 0)
333 heventParent = (HANDLE)atoi (com_argv[t+1]);
336 if ((t = COM_CheckParm ("-HCHILD")) > 0)
339 heventChild = (HANDLE)atoi (com_argv[t+1]);
342 InitConProc (hFile, heventParent, heventChild);
345 // because sound is off until we become active
349 void Sys_Init_Commands (void)
351 Cvar_RegisterVariable(&sys_usetimegettime);
355 ==============================================================================
359 ==============================================================================
368 HINSTANCE global_hInstance;
369 const char *argv[MAX_NUM_ARGVS];
370 char program_name[MAX_OSPATH];
372 int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
374 double frameoldtime, framenewtime;
375 MEMORYSTATUS lpBuffer;
377 /* previous instances do not exist in Win32 */
381 global_hInstance = hInstance;
383 lpBuffer.dwLength = sizeof(MEMORYSTATUS);
384 GlobalMemoryStatus (&lpBuffer);
386 program_name[sizeof(program_name)-1] = 0;
387 GetModuleFileNameA(NULL, program_name, sizeof(program_name) - 1);
391 argv[0] = program_name;
393 // FIXME: this tokenizer is rather redundent, call a more general one
394 while (*lpCmdLine && (com_argc < MAX_NUM_ARGVS))
396 while (*lpCmdLine && *lpCmdLine <= ' ')
402 if (*lpCmdLine == '\"')
406 argv[com_argc] = lpCmdLine;
408 while (*lpCmdLine && (*lpCmdLine != '\"'))
414 argv[com_argc] = lpCmdLine;
416 while (*lpCmdLine && *lpCmdLine > ' ')
429 frameoldtime = Sys_DoubleTime ();
431 /* main window message loop */
434 framenewtime = Sys_DoubleTime ();
435 Host_Frame (framenewtime - frameoldtime);
436 frameoldtime = framenewtime;
439 /* return success of application */