]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - vid_agl.c
Changed how polygonbegin guesses if the geometry is 2D or 3D, it now uses a separate...
[xonotic/darkplaces.git] / vid_agl.c
index 1caf2664fda02f65090d477b4b9faf2d04916a66..ae4e871b12ab9b0ae2adc5cc77b696e374472925 100644 (file)
--- a/vid_agl.c
+++ b/vid_agl.c
@@ -60,6 +60,7 @@ CGLContextObj (*qCGLGetCurrentContext) (void);
 static qboolean multithreadedgl;
 static qboolean mouse_avail = true;
 static qboolean vid_usingmouse = false;
+static qboolean vid_usinghidecursor = false;
 static qboolean vid_usingnoaccel = false;
 
 static qboolean vid_isfullscreen = false;
@@ -67,8 +68,6 @@ static qboolean vid_usingvsync = false;
 
 static qboolean sound_active = true;
 
-static int scr_width, scr_height;
-
 static cvar_t apple_multithreadedgl = {CVAR_SAVE, "apple_multithreadedgl", "1", "makes use of a second thread for the OpenGL driver (if possible) rather than using the engine thread (note: this is done automatically on most other operating systems)"};
 static cvar_t apple_mouse_noaccel = {CVAR_SAVE, "apple_mouse_noaccel", "1", "disables mouse acceleration while DarkPlaces is active"};
 
@@ -77,7 +76,7 @@ static WindowRef window;
 
 static double originalMouseSpeed = -1.0;
 
-io_connect_t IN_GetIOHandle()
+io_connect_t IN_GetIOHandle(void)
 {
        io_connect_t iohandle = MACH_PORT_NULL;
        kern_return_t status;
@@ -98,26 +97,21 @@ io_connect_t IN_GetIOHandle()
        return iohandle;
 }
 
-void VID_GetWindowSize (int *x, int *y, int *width, int *height)
+void VID_SetMouse(qboolean fullscreengrab, qboolean relative, qboolean hidecursor)
 {
-       *x = *y = 0;
-       *width = scr_width;
-       *height = scr_height;
-}
+       if (!mouse_avail || !window)
+               relative = hidecursor = false;
 
-void VID_GrabMouse(qboolean grab)
-{
-       if (grab)
+       if (relative)
        {
                if(vid_usingmouse && (vid_usingnoaccel != !!apple_mouse_noaccel.integer))
-                       VID_GrabMouse(false); // ungrab first!
-               if (!vid_usingmouse && mouse_avail && window)
+                       VID_SetMouse(false, false, false); // ungrab first!
+               if (!vid_usingmouse)
                {
                        Rect winBounds;
                        CGPoint winCenter;
 
                        SelectWindow(window);
-                       CGDisplayHideCursor(CGMainDisplayID());
 
                        // Put the mouse cursor at the center of the window
                        GetWindowBounds (window, kWindowContentRgn, &winBounds);
@@ -181,14 +175,21 @@ void VID_GrabMouse(qboolean grab)
                        }
 
                        CGAssociateMouseAndMouseCursorPosition(true);
-                       CGDisplayShowCursor(CGMainDisplayID());
 
                        vid_usingmouse = false;
                }
        }
+
+       if (vid_usinghidecursor != hidecursor)
+       {
+               vid_usinghidecursor = hidecursor;
+               if (hidecursor)
+                       CGDisplayHideCursor(CGMainDisplayID());
+               else
+                       CGDisplayShowCursor(CGMainDisplayID());
+       }
 }
 
-#define GAMMA_TABLE_SIZE 256
 void VID_Finish (void)
 {
        qboolean vid_usevsync;
@@ -208,16 +209,13 @@ void VID_Finish (void)
                        Con_Printf("ERROR: can't %s vsync\n", vid_usevsync ? "activate" : "deactivate");
        }
 
-       if (r_render.integer)
+       if (!vid_hidden)
        {
-               CHECKGLERROR
-               if (r_speeds.integer || gl_finish.integer)
-               {
-                       qglFinish();CHECKGLERROR
-               }
+               if (r_speeds.integer == 2 || gl_finish.integer)
+                       GL_Finish();
                qaglSwapBuffers(context);
        }
-       VID_UpdateGamma(false, GAMMA_TABLE_SIZE);
+       VID_UpdateGamma();
 
        if (apple_multithreadedgl.integer)
        {
@@ -256,65 +254,9 @@ void VID_Finish (void)
        }
 }
 
-int VID_SetGamma(unsigned short *ramps, int rampsize)
-{
-       CGGammaValue table_red [GAMMA_TABLE_SIZE];
-       CGGammaValue table_green [GAMMA_TABLE_SIZE];
-       CGGammaValue table_blue [GAMMA_TABLE_SIZE];
-       int i;
-
-       // Convert the unsigned short table into 3 float tables
-       for (i = 0; i < rampsize; i++)
-               table_red[i] = (float)ramps[i] / 65535.0f;
-       for (i = 0; i < rampsize; i++)
-               table_green[i] = (float)ramps[i + rampsize] / 65535.0f;
-       for (i = 0; i < rampsize; i++)
-               table_blue[i] = (float)ramps[i + 2 * rampsize] / 65535.0f;
-
-       if (CGSetDisplayTransferByTable(CGMainDisplayID(), rampsize, table_red, table_green, table_blue) != CGDisplayNoErr)
-       {
-               Con_Print("VID_SetGamma: ERROR: CGSetDisplayTransferByTable failed!\n");
-               return false;
-       }
-
-       return true;
-}
-
-int VID_GetGamma(unsigned short *ramps, int rampsize)
-{
-       CGGammaValue table_red [GAMMA_TABLE_SIZE];
-       CGGammaValue table_green [GAMMA_TABLE_SIZE];
-       CGGammaValue table_blue [GAMMA_TABLE_SIZE];
-       CGTableCount actualsize = 0;
-       int i;
-
-       // Get the gamma ramps from the system
-       if (CGGetDisplayTransferByTable(CGMainDisplayID(), rampsize, table_red, table_green, table_blue, &actualsize) != CGDisplayNoErr)
-       {
-               Con_Print("VID_GetGamma: ERROR: CGGetDisplayTransferByTable failed!\n");
-               return false;
-       }
-       if (actualsize != (unsigned int)rampsize)
-       {
-               Con_Printf("VID_GetGamma: ERROR: invalid gamma table size (%u != %u)\n", actualsize, rampsize);
-               return false;
-       }
-
-       // Convert the 3 float tables into 1 unsigned short table
-       for (i = 0; i < rampsize; i++)
-               ramps[i] = table_red[i] * 65535.0f;
-       for (i = 0; i < rampsize; i++)
-               ramps[i + rampsize] = table_green[i] * 65535.0f;
-       for (i = 0; i < rampsize; i++)
-               ramps[i + 2 * rampsize] = table_blue[i] * 65535.0f;
-
-       return true;
-}
-
 void signal_handler(int sig)
 {
-       printf("Received signal %d, exiting...\n", sig);
-       VID_RestoreSystemGamma();
+       Sys_PrintfToTerminal("Received signal %d, exiting...\n", sig);
        Sys_Quit(1);
 }
 
@@ -397,8 +339,8 @@ void VID_Shutdown(void)
        if (context == NULL && window == NULL)
                return;
 
-       VID_GrabMouse(false);
-       VID_RestoreSystemGamma();
+       VID_EnableJoystick(false);
+       VID_SetMouse(false, false, false);
 
        if (context != NULL)
        {
@@ -419,7 +361,6 @@ void VID_Shutdown(void)
        vid_isfullscreen = false;
 
        GL_CloseLibrary();
-       Key_ClearStates ();
 }
 
 // Since the event handler can be called at any time, we store the events for later processing
@@ -456,19 +397,23 @@ static OSStatus MainWindowEventHandler (EventHandlerCallRef nextHandler, EventRe
 static void VID_AppFocusChanged(qboolean windowIsActive)
 {
        if (vid_activewindow != windowIsActive)
-       {
                vid_activewindow = windowIsActive;
-               if (!vid_activewindow)
-                       VID_RestoreSystemGamma();
-       }
 
-       if (sound_active != windowIsActive)
+       if (windowIsActive || !snd_mutewhenidle.integer)
        {
-               sound_active = windowIsActive;
-               if (sound_active)
+               if (!sound_active)
+               {
                        S_UnblockSound ();
-               else
+                       sound_active = true;
+               }
+       }
+       else
+       {
+               if (sound_active)
+               {
                        S_BlockSound ();
+                       sound_active = false;
+               }
        }
 }
 
@@ -520,9 +465,9 @@ static void VID_BuildAGLAttrib(GLint *attrib, qboolean stencil, qboolean fullscr
        *attrib++ = AGL_NONE;
 }
 
-int VID_InitMode(int fullscreen, int width, int height, int bpp, int refreshrate, int stereobuffer, int samples)
+qboolean VID_InitMode(viddef_mode_t *mode)
 {
-    const EventTypeSpec winEvents[] =
+       const EventTypeSpec winEvents[] =
        {
                { kEventClassWindow, kEventWindowClosed },
                { kEventClassWindow, kEventWindowCollapsing },
@@ -572,8 +517,8 @@ int VID_InitMode(int fullscreen, int width, int height, int bpp, int refreshrate
        // Create the window, a bit towards the center of the screen
        windowBounds.left = 100;
        windowBounds.top = 100;
-       windowBounds.right = width + 100;
-       windowBounds.bottom = height + 100;
+       windowBounds.right = mode->width + 100;
+       windowBounds.bottom = mode->height + 100;
        carbonError = CreateNewWindow(kDocumentWindowClass, kWindowStandardFloatingAttributes | kWindowStandardHandlerAttribute, &windowBounds, &window);
        if (carbonError != noErr || window == NULL)
        {
@@ -591,9 +536,9 @@ int VID_InitMode(int fullscreen, int width, int height, int bpp, int refreshrate
                                                           GetEventTypeCount(winEvents), winEvents, window, NULL);
 
        // Create the desired attribute list
-       VID_BuildAGLAttrib(attributes, bpp == 32, fullscreen, stereobuffer, samples);
+       VID_BuildAGLAttrib(attributes, mode->bitsperpixel == 32, mode->fullscreen, mode->stereobuffer, mode->samples);
 
-       if (!fullscreen)
+       if (!mode->fullscreen)
        {
                // Output to Window
                pixelFormat = qaglChoosePixelFormat(NULL, 0, attributes);
@@ -618,7 +563,7 @@ int VID_InitMode(int fullscreen, int width, int height, int bpp, int refreshrate
 
                // TOCHECK: not sure whether or not it's necessary to change the resolution
                // "by hand", or if aglSetFullscreen does the job anyway
-               refDisplayMode = CGDisplayBestModeForParametersAndRefreshRate(mainDisplay, bpp, width, height, refreshrate, NULL);
+               refDisplayMode = CGDisplayBestModeForParametersAndRefreshRateWithProperty(mainDisplay, mode->bitsperpixel, mode->width, mode->height, mode->refreshrate, kCGDisplayModeIsSafeForHardware, NULL);
                CGDisplaySwitchToMode(mainDisplay, refDisplayMode);
                DMGetGDeviceByDisplayID((DisplayIDType)mainDisplay, &gdhDisplay, false);
 
@@ -659,9 +604,9 @@ int VID_InitMode(int fullscreen, int width, int height, int bpp, int refreshrate
        qaglDestroyPixelFormat(pixelFormat);
 
        // Attempt fullscreen if requested
-       if (fullscreen)
+       if (mode->fullscreen)
        {
-               qaglSetFullScreen (context, width, height, refreshrate, 0);
+               qaglSetFullScreen (context, mode->width, mode->height, mode->refreshrate, 0);
                error = qaglGetError();
                if (error != AGL_NO_ERROR)
                {
@@ -684,19 +629,16 @@ int VID_InitMode(int fullscreen, int width, int height, int bpp, int refreshrate
                }
        }
 
-       scr_width = width;
-       scr_height = height;
-
        if ((qglGetString = (const GLubyte* (GLAPIENTRY *)(GLenum name))GL_GetProcAddress("glGetString")) == NULL)
                Sys_Error("glGetString not found in %s", gl_driver);
 
        gl_platformextensions = "";
        gl_platform = "AGL";
-       gl_videosyncavailable = true;
 
        multithreadedgl = false;
-       vid_isfullscreen = fullscreen;
+       vid_isfullscreen = mode->fullscreen;
        vid_usingmouse = false;
+       vid_usinghidecursor = false;
        vid_hidden = false;
        vid_activewindow = true;
        sound_active = true;
@@ -968,7 +910,7 @@ void Sys_SendKeyEvents(void)
                                                GetEventParameter(theEvent, kEventParamMouseDelta, typeHIPoint, NULL, sizeof(deltaPos), NULL, &deltaPos);
                                                GetEventParameter(theEvent, kEventParamWindowMouseLocation, typeHIPoint, NULL, sizeof(windowPos), NULL, &windowPos);
 
-                                               if (vid.mouseaim)
+                                               if (vid_usingmouse)
                                                {
                                                        in_mouse_x += deltaPos.x;
                                                        in_mouse_y += deltaPos.y;
@@ -1106,6 +1048,83 @@ void Sys_SendKeyEvents(void)
        }
 }
 
+void VID_BuildJoyState(vid_joystate_t *joystate)
+{
+       VID_Shared_BuildJoyState_Begin(joystate);
+       VID_Shared_BuildJoyState_Finish(joystate);
+}
+
+void VID_EnableJoystick(qboolean enable)
+{
+       int index = joy_enable.integer > 0 ? joy_index.integer : -1;
+       qboolean success = false;
+       int sharedcount = 0;
+       sharedcount = VID_Shared_SetJoystick(index);
+       if (index >= 0 && index < sharedcount)
+               success = true;
+
+       // update cvar containing count of XInput joysticks
+       if (joy_detected.integer != sharedcount)
+               Cvar_SetValueQuick(&joy_detected, sharedcount);
+
+       Cvar_SetValueQuick(&joy_active, success ? 1 : 0);
+}
+
 void IN_Move (void)
 {
+       vid_joystate_t joystate;
+       VID_EnableJoystick(true);
+       VID_BuildJoyState(&joystate);
+       VID_ApplyJoyState(&joystate);
+}
+
+static bool GetDictionaryBoolean(CFDictionaryRef d, const void *key)
+{
+    CFBooleanRef ref = (CFBooleanRef) CFDictionaryGetValue(d, key);
+    if(ref)
+        return CFBooleanGetValue(ref);
+    return false;
+}
+
+long GetDictionaryLong(CFDictionaryRef d, const void *key)
+{
+       long value = 0;
+    CFNumberRef ref = (CFNumberRef) CFDictionaryGetValue(d, key);
+    if(ref)
+        CFNumberGetValue(ref, kCFNumberLongType, &value);
+    return value;
+}
+
+vid_mode_t *VID_GetDesktopMode(void)
+{
+       return NULL; // FIXME add desktopfullscreen
+}
+
+size_t VID_ListModes(vid_mode_t *modes, size_t maxcount)
+{
+       CGDirectDisplayID mainDisplay = CGMainDisplayID();
+       CFArrayRef vidmodes = CGDisplayAvailableModes(mainDisplay);
+       CFDictionaryRef thismode;
+       unsigned int n = CFArrayGetCount(vidmodes);
+       unsigned int i;
+       size_t k;
+
+       k = 0;
+       for(i = 0; i < n; ++i)
+       {
+               thismode = (CFDictionaryRef) CFArrayGetValueAtIndex(vidmodes, i);
+               if(!GetDictionaryBoolean(thismode, kCGDisplayModeIsSafeForHardware))
+                       continue;
+
+               if(k >= maxcount)
+                       break;
+               modes[k].width = GetDictionaryLong(thismode, kCGDisplayWidth);
+               modes[k].height = GetDictionaryLong(thismode, kCGDisplayHeight);
+               modes[k].bpp = GetDictionaryLong(thismode, kCGDisplayBitsPerPixel);
+               modes[k].refreshrate = GetDictionaryLong(thismode, kCGDisplayRefreshRate);
+               modes[k].pixelheight_num = 1;
+               modes[k].pixelheight_denom = 1; // OS X doesn't expose this either
+               ++k;
+       }
+       return k;
 }