16 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)"};
21 // =======================================================================
23 // =======================================================================
24 void Sys_Shutdown (void)
27 fcntl (0, F_SETFL, fcntl (0, F_GETFL, 0) & ~FNDELAY);
32 void Sys_Error (const char *error, ...)
35 char string[MAX_INPUTLINE];
37 // change stdin to non blocking
39 fcntl (0, F_SETFL, fcntl (0, F_GETFL, 0) & ~FNDELAY);
42 va_start (argptr,error);
43 dpvsnprintf (string, sizeof (string), error, argptr);
46 Con_Printf ("Quake Error: %s\n", string);
52 void Sys_PrintToTerminal(const char *text)
55 // BUG: for some reason, NDELAY also affects stdout (1) when used on stdin (0).
56 int origflags = fcntl (1, F_GETFL, 0);
57 fcntl (1, F_SETFL, origflags & ~FNDELAY);
61 int written = (int)write(1, text, (int)strlen(text));
63 break; // sorry, I cannot do anything about this error - without an output
67 fcntl (1, F_SETFL, origflags);
69 //fprintf(stdout, "%s", text);
72 double Sys_DoubleTime (void)
74 static int first = true;
75 static double oldtime = 0.0, curtime = 0.0;
79 // LordHavoc: note to people modifying this code, DWORD is specifically defined as an unsigned 32bit number, therefore the 65536.0 * 65536.0 is fine.
80 if (sys_usetimegettime.integer)
82 static int firsttimegettime = true;
85 // Windows 95/98/ME/NT/2000/XP
87 // reasonable accuracy (millisecond)
89 // wraps around every 47 days or so (but this is non-fatal to us, odd times are rejected, only causes a one frame stutter)
91 // make sure the timer is high precision, otherwise different versions of windows have varying accuracy
95 firsttimegettime = false;
98 newtime = (double) timeGetTime () / 1000.0;
102 // QueryPerformanceCounter
104 // Windows 95/98/ME/NT/2000/XP
106 // very accurate (CPU cycles)
108 // does not necessarily match realtime too well (tends to get faster and faster in win98)
109 // wraps around occasionally on some platforms (depends on CPU speed and probably other unknown factors)
111 LARGE_INTEGER PerformanceFreq;
112 LARGE_INTEGER PerformanceCount;
114 if (!QueryPerformanceFrequency (&PerformanceFreq))
116 Con_Printf ("No hardware timer available\n");
117 // fall back to timeGetTime
118 Cvar_SetValueQuick(&sys_usetimegettime, true);
119 return Sys_DoubleTime();
121 QueryPerformanceCounter (&PerformanceCount);
124 timescale = 1.0 / ((double) PerformanceFreq.u.LowPart + (double) PerformanceFreq.u.HighPart * 65536.0 * 65536.0);
125 newtime = ((double) PerformanceCount.u.LowPart + (double) PerformanceCount.u.HighPart * 65536.0 * 65536.0) * timescale;
127 timescale = 1.0 / ((double) PerformanceFreq.LowPart + (double) PerformanceFreq.HighPart * 65536.0 * 65536.0);
128 newtime = ((double) PerformanceCount.LowPart + (double) PerformanceCount.HighPart * 65536.0 * 65536.0) * timescale;
133 gettimeofday(&tp, NULL);
134 newtime = (double) tp.tv_sec + tp.tv_usec / 1000000.0;
143 if (newtime < oldtime)
145 // warn if it's significant
146 if (newtime - oldtime < -0.01)
147 Con_Printf("Sys_DoubleTime: time stepped backwards (went from %f to %f, difference %f)\n", oldtime, newtime, newtime - oldtime);
150 curtime += newtime - oldtime;
156 char *Sys_ConsoleInput(void)
158 if (cls.state == ca_dedicated)
160 static char text[MAX_INPUTLINE];
161 static unsigned int len = 0;
187 if (len < sizeof (text) - 1)
196 struct timeval timeout;
198 FD_SET(0, &fdset); // stdin
201 if (select (1, &fdset, NULL, NULL, &timeout) != -1 && FD_ISSET(0, &fdset))
203 len = read (0, text, sizeof(text));
206 // rip off the \n and terminate
216 void Sys_Sleep(int microseconds)
219 Sleep(microseconds / 1000);
221 usleep(microseconds);
225 char *Sys_GetClipboardData (void)
230 void Sys_InitConsole (void)
234 void Sys_Init_Commands (void)
238 int main (int argc, char **argv)
240 signal(SIGFPE, SIG_IGN);
243 com_argv = (const char **)argv;
246 fcntl(0, F_SETFL, fcntl (0, F_GETFL, 0) | FNDELAY);