]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - sys_win.c
fix mouse in win32, I had forgotten to update a lot of code
[xonotic/darkplaces.git] / sys_win.c
index 82b5179be4510168be8ca50a0a9650105b4fc7c0..dee6bc51c618064dde845be98bc64287948415c3 100644 (file)
--- 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.
 
@@ -28,55 +28,23 @@ 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
+// # 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;
 
-static char                    *tracking_tag = "Clams & Mooses";
-
 static HANDLE  tevent;
 static HANDLE  hFile;
 static HANDLE  heventParent;
 static HANDLE  heventChild;
 
-volatile int                                   sys_checksum;
-
-
-/*
-================
-Sys_PageIn
-================
-*/
-/*
-void Sys_PageIn (void *ptr, int size)
-{
-       byte    *x;
-       int             m, n;
-
-// touch all the memory to make sure it's there. The 16-page skip is to
-// keep Win 95 from thinking we're trying to page ourselves in (we are
-// doing that, of course, but there's no reason we shouldn't)
-       x = (byte *)ptr;
-
-       for (n=0 ; n<4 ; n++)
-       {
-               for (m=0 ; m<(size - 16 * 0x1000) ; m += 4)
-               {
-                       sys_checksum += *(int *)&x[m];
-                       sys_checksum += *(int *)&x[m + 16 * 0x1000];
-               }
-       }
-}
-*/
-
-
 /*
 ===============================================================================
 
@@ -92,7 +60,7 @@ QFile *sys_handles[MAX_HANDLES];
 int            findhandle (void)
 {
        int             i;
-       
+
        for (i=1 ; i<MAX_HANDLES ; i++)
                if (!sys_handles[i])
                        return i;
@@ -102,10 +70,10 @@ int                findhandle (void)
 
 /*
 ================
-filelength
+Sys_FileLength
 ================
 */
-int filelength (QFile *f)
+int Sys_FileLength (QFile *f)
 {
        int             pos;
        int             end;
@@ -136,7 +104,7 @@ int Sys_FileOpenRead (char *path, int *hndl)
        {
                sys_handles[i] = f;
                *hndl = i;
-               retval = filelength(f);
+               retval = Sys_FileLength(f);
        }
 
        return retval;
@@ -156,7 +124,7 @@ int Sys_FileOpenWrite (char *path)
                return 0;
        }
        sys_handles[i] = f;
-       
+
        return i;
 }
 
@@ -184,14 +152,14 @@ int Sys_FileWrite (int handle, void *data, int count)
 int    Sys_FileTime (char *path)
 {
        QFile   *f;
-       
+
        f = Qopen(path, "rb");
        if (f)
        {
                Qclose(f);
                return 1;
        }
-       
+
        return -1;
 }
 
@@ -209,6 +177,8 @@ SYSTEM IO
 ===============================================================================
 */
 
+void SleepUntilInput (int time);
+
 void Sys_Error (char *error, ...)
 {
        va_list         argptr;
@@ -248,8 +218,7 @@ void Sys_Error (char *error, ...)
                sc_return_on_enter = true;      // so Enter will get us out of here
 
                while (!Sys_ConsoleInput () && ((Sys_DoubleTime () - starttime) < CONSOLE_ERROR_TIMEOUT))
-               {
-               }
+                       SleepUntilInput(1);
        }
        else
        {
@@ -262,9 +231,7 @@ void Sys_Error (char *error, ...)
                        MessageBox(NULL, text, "Quake Error", MB_OK | MB_SETFOREGROUND | MB_ICONSTOP);
                }
                else
-               {
                        MessageBox(NULL, text, "Double Quake Error", MB_OK | MB_SETFOREGROUND | MB_ICONSTOP);
-               }
        }
 
        if (!in_sys_error1)
@@ -285,7 +252,6 @@ void Sys_Error (char *error, ...)
 
 void Sys_Quit (void)
 {
-
        Host_Shutdown();
 
        if (tevent)
@@ -308,6 +274,9 @@ Sys_DoubleTime
 */
 double Sys_DoubleTime (void)
 {
+       static int first = true;
+       static double oldtime = 0.0, curtime = 0.0;
+       double newtime;
        // LordHavoc: note to people modifying this code, DWORD is specifically defined as an unsigned 32bit number, therefore the 65536.0 * 65536.0 is fine.
 #if WIN32_USETIMEGETTIME
        // timeGetTime
@@ -316,36 +285,13 @@ double Sys_DoubleTime (void)
        // features:
        // reasonable accuracy (millisecond)
        // issues:
-       // none known
-       static int first = true;
-       static double oldtime = 0.0, basetime = 0.0, old = 0.0;
-       double newtime, now;
-
-       now = (double) timeGetTime () + basetime;
+       // wraps around every 47 days or so (but this is non-fatal to us, odd times are rejected, only causes a one frame stutter)
 
+       // make sure the timer is high precision, otherwise different versions of windows have varying accuracy
        if (first)
-       {
-               first = false;
-               basetime = now;
-               now = 0;
-       }
+               timeBeginPeriod (1);
 
-       if (now < old)
-       {
-               // wrapped
-               basetime += (65536.0 * 65536.0);
-               now += (65536.0 * 65536.0);
-       }
-       old = now;
-
-       newtime = now / 1000.0;
-
-       if (newtime < oldtime)
-               Sys_Error("Sys_DoubleTime: time running backwards??\n");
-
-       oldtime = newtime;
-
-       return newtime;
+       newtime = (double) timeGetTime () / 1000.0;
 #else
        // QueryPerformanceCounter
        // platform:
@@ -354,56 +300,47 @@ double Sys_DoubleTime (void)
        // very accurate (CPU cycles)
        // known issues:
        // does not necessarily match realtime too well (tends to get faster and faster in win98)
-       static int first = true;
-       static double oldtime = 0.0, basetime = 0.0, timescale = 0.0;
-       double newtime;
+       // wraps around occasionally on some platforms (depends on CPU speed and probably other unknown factors)
+       static double timescale = 0.0;
        LARGE_INTEGER PerformanceFreq;
        LARGE_INTEGER PerformanceCount;
 
-       if (first)
-       {
-               if (!QueryPerformanceFrequency (&PerformanceFreq))
-                       Sys_Error ("No hardware timer available");
-
-#ifdef __BORLANDC__
-               timescale = 1.0 / ((double) PerformanceFreq.u.LowPart + (double) PerformanceFreq.u.HighPart * 65536.0 * 65536.0);
-#else
-               timescale = 1.0 / ((double) PerformanceFreq.LowPart + (double) PerformanceFreq.HighPart * 65536.0 * 65536.0);
-#endif 
-       }
-
+       if (!QueryPerformanceFrequency (&PerformanceFreq))
+               Sys_Error ("No hardware timer available");
        QueryPerformanceCounter (&PerformanceCount);
 
 #ifdef __BORLANDC__
-       newtime = ((double) PerformanceCount.u.LowPart + (double) PerformanceCount.u.HighPart * 65536.0 * 65536.0) * timescale - basetime;
+       timescale = 1.0 / ((double) PerformanceFreq.u.LowPart + (double) PerformanceFreq.u.HighPart * 65536.0 * 65536.0);
+       newtime = ((double) PerformanceCount.u.LowPart + (double) PerformanceCount.u.HighPart * 65536.0 * 65536.0) * timescale;
 #else
-       newtime = ((double) PerformanceCount.LowPart + (double) PerformanceCount.HighPart * 65536.0 * 65536.0) * timescale - basetime;
-#endif 
+       timescale = 1.0 / ((double) PerformanceFreq.LowPart + (double) PerformanceFreq.HighPart * 65536.0 * 65536.0);
+       newtime = ((double) PerformanceCount.LowPart + (double) PerformanceCount.HighPart * 65536.0 * 65536.0) * timescale;
+#endif
+#endif
 
        if (first)
        {
                first = false;
-               basetime = newtime;
-               newtime = 0;
+               oldtime = newtime;
        }
 
        if (newtime < oldtime)
-               Sys_Error("Sys_DoubleTime: time running backwards??\n");
-
+               Con_Printf("Sys_DoubleTime: time stepped backwards (went from %f to %f, difference %f)\n", oldtime, newtime, newtime - oldtime);
+       else
+               curtime += newtime - oldtime;
        oldtime = newtime;
 
-       return newtime;
-#endif
+       return curtime;
 }
 
 
 char *Sys_ConsoleInput (void)
 {
-       static char     text[256];
-       static int              len;
-       INPUT_RECORD    recs[1024];
-       int             dummy;
-       int             ch, numread, numevents;
+       static char text[256];
+       static int len;
+       INPUT_RECORD recs[1024];
+       int ch;
+       DWORD numread, numevents, dummy;
 
        if (cls.state != ca_dedicated)
                return NULL;
@@ -432,7 +369,7 @@ char *Sys_ConsoleInput (void)
                                switch (ch)
                                {
                                        case '\r':
-                                               WriteFile(houtput, "\r\n", 2, &dummy, NULL);    
+                                               WriteFile(houtput, "\r\n", 2, &dummy, NULL);
 
                                                if (len)
                                                {
@@ -451,7 +388,7 @@ char *Sys_ConsoleInput (void)
                                                break;
 
                                        case '\b':
-                                               WriteFile(houtput, "\b \b", 3, &dummy, NULL);   
+                                               WriteFile(houtput, "\b \b", 3, &dummy, NULL);
                                                if (len)
                                                {
                                                        len--;
@@ -461,7 +398,7 @@ char *Sys_ConsoleInput (void)
                                        default:
                                                if (ch >= ' ')
                                                {
-                                                       WriteFile(houtput, &ch, 1, &dummy, NULL);       
+                                                       WriteFile(houtput, &ch, 1, &dummy, NULL);
                                                        text[len] = ch;
                                                        len = (len + 1) & 0xff;
                                                }
@@ -484,7 +421,7 @@ void Sys_Sleep (void)
 
 void Sys_SendKeyEvents (void)
 {
-    MSG        msg;
+       MSG msg;
 
        while (PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE))
        {
@@ -494,8 +431,8 @@ void Sys_SendKeyEvents (void)
                if (!GetMessage (&msg, NULL, 0, 0))
                        Sys_Quit ();
 
-       TranslateMessage (&msg);
-       DispatchMessage (&msg);
+               TranslateMessage (&msg);
+               DispatchMessage (&msg);
        }
 }
 
@@ -503,20 +440,14 @@ void Sys_SendKeyEvents (void)
 /*
 ==============================================================================
 
- WINDOWS CRAP
+WINDOWS CRAP
 
 ==============================================================================
 */
 
 
-/*
-==================
-WinMain
-==================
-*/
 void SleepUntilInput (int time)
 {
-
        MsgWaitForMultipleObjects(1, &tevent, false, time, QS_ALLINPUT);
 }
 
@@ -533,14 +464,14 @@ static char       *empty_string = "";
 
 int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
 {
-       double                  oldtime, newtime;
+       double                  frameoldtime, framenewtime;
        MEMORYSTATUS    lpBuffer;
        static  char    cwd[1024];
        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;
@@ -592,24 +523,6 @@ int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLin
 
        Sys_Shared_EarlyInit();
 
-// take the greater of all the available memory or half the total memory,
-// but at least 8 Mb and no more than 16 Mb, unless they explicitly
-// request otherwise
-       /*
-       host_parms.memsize = lpBuffer.dwAvailPhys;
-
-       if (host_parms.memsize < MINIMUM_WIN_MEMORY)
-               host_parms.memsize = MINIMUM_WIN_MEMORY;
-
-       if (host_parms.memsize < (lpBuffer.dwTotalPhys >> 1))
-               host_parms.memsize = lpBuffer.dwTotalPhys >> 1;
-
-       if (host_parms.memsize > MAXIMUM_WIN_MEMORY)
-               host_parms.memsize = MAXIMUM_WIN_MEMORY;
-       */
-
-//     Sys_PageIn (parms.membase, parms.memsize);
-
        tevent = CreateEvent(NULL, false, false, NULL);
 
        if (!tevent)
@@ -650,42 +563,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;
 }