]> icculus.org git repositories - divverent/darkplaces.git/blob - sys_win.c
new optimized Image_CopyMux is broken, disabled until it's fixed
[divverent/darkplaces.git] / sys_win.c
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
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.
8
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.
12
13 See the GNU General Public License for more details.
14
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.
18
19 */
20 // sys_win.c -- Win32 system interface code
21
22 #include "quakedef.h"
23 #include <windows.h>
24 #include <dsound.h>
25 #include "errno.h"
26 #include "resource.h"
27 #include "conproc.h"
28 #include "direct.h"
29
30 extern void S_BlockSound (void);
31
32 cvar_t sys_usetimegettime = {CVAR_SAVE, "sys_usetimegettime", "1"};
33
34 // # of seconds to wait on Sys_Error running dedicated before exiting
35 #define CONSOLE_ERROR_TIMEOUT   60.0
36 // sleep time on pause or minimization
37 #define PAUSE_SLEEP             50
38 // sleep time when not focus
39 #define NOT_FOCUS_SLEEP 20
40
41 static qboolean         sc_return_on_enter = false;
42 HANDLE                          hinput, houtput;
43
44 static HANDLE   tevent;
45 static HANDLE   hFile;
46 static HANDLE   heventParent;
47 static HANDLE   heventChild;
48
49
50 /*
51 ===============================================================================
52
53 SYSTEM IO
54
55 ===============================================================================
56 */
57
58 void SleepUntilInput (int time);
59
60 void Sys_Error (const char *error, ...)
61 {
62         va_list         argptr;
63         char            text[1024];
64         static int      in_sys_error0 = 0;
65         static int      in_sys_error1 = 0;
66         static int      in_sys_error2 = 0;
67
68         va_start (argptr, error);
69         vsnprintf (text, sizeof (text), error, argptr);
70         va_end (argptr);
71
72         // close video so the message box is visible, unless we already tried that
73         if (!in_sys_error0 && cls.state != ca_dedicated)
74         {
75                 in_sys_error0 = 1;
76                 VID_Shutdown();
77         }
78         MessageBox(NULL, text, "Quake Error", MB_OK | MB_SETFOREGROUND | MB_ICONSTOP);
79
80         if (!in_sys_error1)
81         {
82                 in_sys_error1 = 1;
83                 Host_Shutdown ();
84         }
85
86 // shut down QHOST hooks if necessary
87         if (!in_sys_error2)
88         {
89                 in_sys_error2 = 1;
90                 DeinitConProc ();
91         }
92
93         exit (1);
94 }
95
96 void Sys_Quit (void)
97 {
98         Host_Shutdown();
99
100         if (tevent)
101                 CloseHandle (tevent);
102
103         if (cls.state == ca_dedicated)
104                 FreeConsole ();
105
106 // shut down QHOST hooks if necessary
107         DeinitConProc ();
108
109         exit (0);
110 }
111
112 void Sys_PrintToTerminal(const char *text)
113 {
114         DWORD dummy;
115         extern HANDLE houtput;
116         if (cls.state == ca_dedicated)
117                 WriteFile(houtput, text, strlen (text), &dummy, NULL);
118 }
119
120 /*
121 ================
122 Sys_DoubleTime
123 ================
124 */
125 double Sys_DoubleTime (void)
126 {
127         static int first = true;
128         static double oldtime = 0.0, curtime = 0.0;
129         double newtime;
130         // LordHavoc: note to people modifying this code, DWORD is specifically defined as an unsigned 32bit number, therefore the 65536.0 * 65536.0 is fine.
131         if (sys_usetimegettime.integer)
132         {
133                 static int firsttimegettime = true;
134                 // timeGetTime
135                 // platform:
136                 // Windows 95/98/ME/NT/2000/XP
137                 // features:
138                 // reasonable accuracy (millisecond)
139                 // issues:
140                 // wraps around every 47 days or so (but this is non-fatal to us, odd times are rejected, only causes a one frame stutter)
141
142                 // make sure the timer is high precision, otherwise different versions of windows have varying accuracy
143                 if (firsttimegettime)
144                 {
145                         timeBeginPeriod (1);
146                         firsttimegettime = false;
147                 }
148
149                 newtime = (double) timeGetTime () / 1000.0;
150         }
151         else
152         {
153                 // QueryPerformanceCounter
154                 // platform:
155                 // Windows 95/98/ME/NT/2000/XP
156                 // features:
157                 // very accurate (CPU cycles)
158                 // known issues:
159                 // does not necessarily match realtime too well (tends to get faster and faster in win98)
160                 // wraps around occasionally on some platforms (depends on CPU speed and probably other unknown factors)
161                 double timescale;
162                 LARGE_INTEGER PerformanceFreq;
163                 LARGE_INTEGER PerformanceCount;
164
165                 if (!QueryPerformanceFrequency (&PerformanceFreq))
166                         Sys_Error ("No hardware timer available");
167                 QueryPerformanceCounter (&PerformanceCount);
168
169                 #ifdef __BORLANDC__
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;
172                 #else
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;
175                 #endif
176         }
177
178         if (first)
179         {
180                 first = false;
181                 oldtime = newtime;
182         }
183
184         if (newtime < oldtime)
185         {
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);
189         }
190         else
191                 curtime += newtime - oldtime;
192         oldtime = newtime;
193
194         return curtime;
195 }
196
197
198 char *Sys_ConsoleInput (void)
199 {
200         static char text[256];
201         static int len;
202         INPUT_RECORD recs[1024];
203         int ch;
204         DWORD numread, numevents, dummy;
205
206         if (cls.state != ca_dedicated)
207                 return NULL;
208
209
210         for ( ;; )
211         {
212                 if (!GetNumberOfConsoleInputEvents (hinput, &numevents))
213                         Sys_Error ("Error getting # of console events");
214
215                 if (numevents <= 0)
216                         break;
217
218                 if (!ReadConsoleInput(hinput, recs, 1, &numread))
219                         Sys_Error ("Error reading console input");
220
221                 if (numread != 1)
222                         Sys_Error ("Couldn't read console input");
223
224                 if (recs[0].EventType == KEY_EVENT)
225                 {
226                         if (!recs[0].Event.KeyEvent.bKeyDown)
227                         {
228                                 ch = recs[0].Event.KeyEvent.uChar.AsciiChar;
229
230                                 switch (ch)
231                                 {
232                                         case '\r':
233                                                 WriteFile(houtput, "\r\n", 2, &dummy, NULL);
234
235                                                 if (len)
236                                                 {
237                                                         text[len] = 0;
238                                                         len = 0;
239                                                         return text;
240                                                 }
241                                                 else if (sc_return_on_enter)
242                                                 {
243                                                 // special case to allow exiting from the error handler on Enter
244                                                         text[0] = '\r';
245                                                         len = 0;
246                                                         return text;
247                                                 }
248
249                                                 break;
250
251                                         case '\b':
252                                                 WriteFile(houtput, "\b \b", 3, &dummy, NULL);
253                                                 if (len)
254                                                 {
255                                                         len--;
256                                                 }
257                                                 break;
258
259                                         default:
260                                                 if (ch >= ' ')
261                                                 {
262                                                         WriteFile(houtput, &ch, 1, &dummy, NULL);
263                                                         text[len] = ch;
264                                                         len = (len + 1) & 0xff;
265                                                 }
266
267                                                 break;
268
269                                 }
270                         }
271                 }
272         }
273
274         return NULL;
275 }
276
277 void Sys_Sleep(int milliseconds)
278 {
279         if (milliseconds < 1)
280                 milliseconds = 1;
281         Sleep(milliseconds);
282 }
283
284
285 void Sys_SendKeyEvents (void)
286 {
287         MSG msg;
288
289         while (PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE))
290         {
291         // we always update if there are any event, even if we're paused
292                 scr_skipupdate = 0;
293
294                 if (!GetMessage (&msg, NULL, 0, 0))
295                         Sys_Quit ();
296
297                 TranslateMessage (&msg);
298                 DispatchMessage (&msg);
299         }
300 }
301
302
303 /*
304 ==============================================================================
305
306 WINDOWS CRAP
307
308 ==============================================================================
309 */
310
311
312 void SleepUntilInput (int time)
313 {
314         MsgWaitForMultipleObjects(1, &tevent, false, time, QS_ALLINPUT);
315 }
316
317
318 /*
319 ==================
320 WinMain
321 ==================
322 */
323 HINSTANCE       global_hInstance;
324 const char      *argv[MAX_NUM_ARGVS];
325 char            program_name[MAX_OSPATH];
326
327 int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
328 {
329         double frameoldtime, framenewtime;
330         MEMORYSTATUS lpBuffer;
331         int t;
332
333         /* previous instances do not exist in Win32 */
334         if (hPrevInstance)
335                 return 0;
336
337         global_hInstance = hInstance;
338
339         lpBuffer.dwLength = sizeof(MEMORYSTATUS);
340         GlobalMemoryStatus (&lpBuffer);
341
342         com_argc = 1;
343         program_name[sizeof(program_name)-1] = 0;
344         GetModuleFileNameA(NULL, program_name, sizeof(program_name) - 1);
345         argv[0] = program_name;
346
347         // FIXME: this tokenizer is rather redundent, call a more general one
348         while (*lpCmdLine && (com_argc < MAX_NUM_ARGVS))
349         {
350                 while (*lpCmdLine && *lpCmdLine <= 32)
351                         lpCmdLine++;
352
353                 if (*lpCmdLine)
354                 {
355                         if (*lpCmdLine == '\"')
356                         {
357                                 // quoted string
358                                 argv[com_argc] = lpCmdLine;
359                                 com_argc++;
360
361                                 while (*lpCmdLine && (*lpCmdLine != '\"'))
362                                         lpCmdLine++;
363
364                                 if (*lpCmdLine)
365                                 {
366                                         *lpCmdLine = 0;
367                                         lpCmdLine++;
368                                 }
369
370                                 if (*lpCmdLine == '\"')
371                                         lpCmdLine++;
372                         }
373                         else
374                         {
375                                 // unquoted word
376                                 argv[com_argc] = lpCmdLine;
377                                 com_argc++;
378
379                                 while (*lpCmdLine && *lpCmdLine > 32)
380                                         lpCmdLine++;
381
382                                 if (*lpCmdLine)
383                                 {
384                                         *lpCmdLine = 0;
385                                         lpCmdLine++;
386                                 }
387                         }
388                 }
389         }
390         com_argv = argv;
391
392         Sys_Shared_EarlyInit();
393
394         Cvar_RegisterVariable(&sys_usetimegettime);
395
396         tevent = CreateEvent(NULL, false, false, NULL);
397
398         if (!tevent)
399                 Sys_Error ("Couldn't create event");
400
401         // LordHavoc: can't check cls.state because it hasn't been initialized yet
402         // if (cls.state == ca_dedicated)
403         if (COM_CheckParm("-dedicated"))
404         {
405                 if (!AllocConsole ())
406                         Sys_Error ("Couldn't create dedicated server console");
407
408                 hinput = GetStdHandle (STD_INPUT_HANDLE);
409                 houtput = GetStdHandle (STD_OUTPUT_HANDLE);
410
411         // give QHOST a chance to hook into the console
412                 if ((t = COM_CheckParm ("-HFILE")) > 0)
413                 {
414                         if (t < com_argc)
415                                 hFile = (HANDLE)atoi (com_argv[t+1]);
416                 }
417
418                 if ((t = COM_CheckParm ("-HPARENT")) > 0)
419                 {
420                         if (t < com_argc)
421                                 heventParent = (HANDLE)atoi (com_argv[t+1]);
422                 }
423
424                 if ((t = COM_CheckParm ("-HCHILD")) > 0)
425                 {
426                         if (t < com_argc)
427                                 heventChild = (HANDLE)atoi (com_argv[t+1]);
428                 }
429
430                 InitConProc (hFile, heventParent, heventChild);
431         }
432
433 // because sound is off until we become active
434         S_BlockSound ();
435
436         Host_Init ();
437
438         Sys_Shared_LateInit();
439
440         frameoldtime = Sys_DoubleTime ();
441         
442         /* main window message loop */
443         while (1)
444         {
445                 if (cls.state != ca_dedicated)
446                 {
447                 // yield the CPU for a little while when paused, minimized, or not the focus
448                         if ((cl.paused && !vid_activewindow) || vid_hidden)
449                         {
450                                 SleepUntilInput (PAUSE_SLEEP);
451                                 scr_skipupdate = 1;             // no point in bothering to draw
452                         }
453                         else if (!vid_activewindow)
454                                 SleepUntilInput (NOT_FOCUS_SLEEP);
455                 }
456
457                 framenewtime = Sys_DoubleTime ();
458                 Host_Frame (framenewtime - frameoldtime);
459                 frameoldtime = framenewtime;
460         }
461
462         /* return success of application */
463         return true;
464 }
465