4 Mac OS X OpenGL and input module, using Carbon and AGL
6 Copyright (C) 2005-2006 Mathieu Olivier
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #include <OpenGL/OpenGL.h>
28 #include <Carbon/Carbon.h>
29 #include <IOKit/hidsystem/IOHIDLib.h>
30 #include <IOKit/hidsystem/IOHIDParameter.h>
31 #include <IOKit/hidsystem/event_status_driver.h>
33 #include "vid_agl_mackeys.h" // this is SDL/src/video/maccommon/SDL_mackeys.h
35 #ifndef kCGLCEMPEngine
36 #define kCGLCEMPEngine 313
39 // Tell startup code that we have a client
40 int cl_available = true;
42 qboolean vid_supportrefreshrate = true;
45 AGLPixelFormat (*qaglChoosePixelFormat) (const AGLDevice *gdevs, GLint ndev, const GLint *attribList);
46 AGLContext (*qaglCreateContext) (AGLPixelFormat pix, AGLContext share);
47 GLboolean (*qaglDestroyContext) (AGLContext ctx);
48 void (*qaglDestroyPixelFormat) (AGLPixelFormat pix);
49 const GLubyte* (*qaglErrorString) (GLenum code);
50 GLenum (*qaglGetError) (void);
51 GLboolean (*qaglSetCurrentContext) (AGLContext ctx);
52 GLboolean (*qaglSetDrawable) (AGLContext ctx, AGLDrawable draw);
53 GLboolean (*qaglSetFullScreen) (AGLContext ctx, GLsizei width, GLsizei height, GLsizei freq, GLint device);
54 GLboolean (*qaglSetInteger) (AGLContext ctx, GLenum pname, const GLint *params);
55 void (*qaglSwapBuffers) (AGLContext ctx);
56 CGLError (*qCGLEnable) (CGLContextObj ctx, CGLContextEnable pname);
57 CGLError (*qCGLDisable) (CGLContextObj ctx, CGLContextEnable pname);
58 CGLContextObj (*qCGLGetCurrentContext) (void);
60 static qboolean multithreadedgl;
61 static qboolean mouse_avail = true;
62 static qboolean vid_usingmouse = false;
63 static qboolean vid_usingnoaccel = false;
64 static float mouse_x, mouse_y;
66 static qboolean vid_isfullscreen = false;
67 static qboolean vid_usingvsync = false;
69 static qboolean sound_active = true;
71 static int scr_width, scr_height;
73 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)"};
74 static cvar_t apple_mouse_noaccel = {CVAR_SAVE, "apple_mouse_noaccel", "1", "disables mouse acceleration while DarkPlaces is active"};
76 static AGLContext context;
77 static WindowRef window;
79 static double originalMouseSpeed = -1.0;
81 io_connect_t IN_GetIOHandle()
83 io_connect_t iohandle = MACH_PORT_NULL;
85 io_service_t iohidsystem = MACH_PORT_NULL;
86 mach_port_t masterport;
88 status = IOMasterPort(MACH_PORT_NULL, &masterport);
89 if(status != KERN_SUCCESS)
92 iohidsystem = IORegistryEntryFromPath(masterport, kIOServicePlane ":/IOResources/IOHIDSystem");
96 status = IOServiceOpen(iohidsystem, mach_task_self(), kIOHIDParamConnectType, &iohandle);
97 IOObjectRelease(iohidsystem);
102 void VID_GetWindowSize (int *x, int *y, int *width, int *height)
106 *height = scr_height;
109 static void IN_Activate( qboolean grab )
113 if(vid_usingmouse && (vid_usingnoaccel != !!apple_mouse_noaccel.integer))
114 IN_Activate(false); // ungrab first!
115 if (!vid_usingmouse && mouse_avail && window)
120 SelectWindow(window);
121 CGDisplayHideCursor(CGMainDisplayID());
123 // Put the mouse cursor at the center of the window
124 GetWindowBounds (window, kWindowContentRgn, &winBounds);
125 winCenter.x = (winBounds.left + winBounds.right) / 2;
126 winCenter.y = (winBounds.top + winBounds.bottom) / 2;
127 CGWarpMouseCursorPosition(winCenter);
129 // Lock the mouse pointer at its current position
130 CGAssociateMouseAndMouseCursorPosition(false);
132 // Save the status of mouse acceleration
133 originalMouseSpeed = -1.0; // in case of error
134 if(apple_mouse_noaccel.integer)
136 io_connect_t mouseDev = IN_GetIOHandle();
139 if(IOHIDGetAccelerationWithKey(mouseDev, CFSTR(kIOHIDMouseAccelerationType), &originalMouseSpeed) == kIOReturnSuccess)
141 Con_DPrintf("previous mouse acceleration: %f\n", originalMouseSpeed);
142 if(IOHIDSetAccelerationWithKey(mouseDev, CFSTR(kIOHIDMouseAccelerationType), -1.0) != kIOReturnSuccess)
144 Con_Print("Could not disable mouse acceleration (failed at IOHIDSetAccelerationWithKey).\n");
145 Cvar_SetValueQuick(&apple_mouse_noaccel, 0);
150 Con_Print("Could not disable mouse acceleration (failed at IOHIDGetAccelerationWithKey).\n");
151 Cvar_SetValueQuick(&apple_mouse_noaccel, 0);
153 IOServiceClose(mouseDev);
157 Con_Print("Could not disable mouse acceleration (failed at IO_GetIOHandle).\n");
158 Cvar_SetValueQuick(&apple_mouse_noaccel, 0);
162 mouse_x = mouse_y = 0;
163 vid_usingmouse = true;
164 vid_usingnoaccel = !!apple_mouse_noaccel.integer;
171 if(originalMouseSpeed != -1.0)
173 io_connect_t mouseDev = IN_GetIOHandle();
176 Con_DPrintf("restoring mouse acceleration to: %f\n", originalMouseSpeed);
177 if(IOHIDSetAccelerationWithKey(mouseDev, CFSTR(kIOHIDMouseAccelerationType), originalMouseSpeed) != kIOReturnSuccess)
178 Con_Print("Could not re-enable mouse acceleration (failed at IOHIDSetAccelerationWithKey).\n");
179 IOServiceClose(mouseDev);
182 Con_Print("Could not re-enable mouse acceleration (failed at IO_GetIOHandle).\n");
185 CGAssociateMouseAndMouseCursorPosition(true);
186 CGDisplayShowCursor(CGMainDisplayID());
188 vid_usingmouse = false;
193 #define GAMMA_TABLE_SIZE 256
194 void VID_Finish (qboolean allowmousegrab)
196 qboolean vid_usemouse;
197 qboolean vid_usevsync;
199 // handle the mouse state when windowed if that's changed
200 vid_usemouse = false;
201 if (allowmousegrab && vid_mouse.integer && !key_consoleactive && (key_dest != key_game || !cls.demoplayback))
203 if (!vid_activewindow)
204 vid_usemouse = false;
205 if (vid_isfullscreen)
207 IN_Activate(vid_usemouse);
209 // handle changes of the vsync option
210 vid_usevsync = (vid_vsync.integer && !cls.timedemo);
211 if (vid_usingvsync != vid_usevsync)
213 GLint sync = (vid_usevsync ? 1 : 0);
215 if (qaglSetInteger(context, AGL_SWAP_INTERVAL, &sync) == GL_TRUE)
217 vid_usingvsync = vid_usevsync;
218 Con_DPrintf("Vsync %s\n", vid_usevsync ? "activated" : "deactivated");
221 Con_Printf("ERROR: can't %s vsync\n", vid_usevsync ? "activate" : "deactivate");
224 if (r_render.integer)
227 if (r_speeds.integer || gl_finish.integer)
229 qglFinish();CHECKGLERROR
231 qaglSwapBuffers(context);
233 VID_UpdateGamma(false, GAMMA_TABLE_SIZE);
235 if (apple_multithreadedgl.integer)
237 if (!multithreadedgl)
239 if(qCGLGetCurrentContext && qCGLEnable && qCGLDisable)
241 CGLContextObj ctx = qCGLGetCurrentContext();
242 CGLError e = qCGLEnable(ctx, kCGLCEMPEngine);
244 multithreadedgl = true;
247 Con_Printf("WARNING: can't enable multithreaded GL, error %d\n", (int) e);
248 Cvar_SetValueQuick(&apple_multithreadedgl, 0);
253 Con_Printf("WARNING: can't enable multithreaded GL, CGL functions not present\n");
254 Cvar_SetValueQuick(&apple_multithreadedgl, 0);
262 if(qCGLGetCurrentContext && qCGLEnable && qCGLDisable)
264 CGLContextObj ctx = qCGLGetCurrentContext();
265 qCGLDisable(ctx, kCGLCEMPEngine);
266 multithreadedgl = false;
272 int VID_SetGamma(unsigned short *ramps, int rampsize)
274 CGGammaValue table_red [GAMMA_TABLE_SIZE];
275 CGGammaValue table_green [GAMMA_TABLE_SIZE];
276 CGGammaValue table_blue [GAMMA_TABLE_SIZE];
279 // Convert the unsigned short table into 3 float tables
280 for (i = 0; i < rampsize; i++)
281 table_red[i] = (float)ramps[i] / 65535.0f;
282 for (i = 0; i < rampsize; i++)
283 table_green[i] = (float)ramps[i + rampsize] / 65535.0f;
284 for (i = 0; i < rampsize; i++)
285 table_blue[i] = (float)ramps[i + 2 * rampsize] / 65535.0f;
287 if (CGSetDisplayTransferByTable(CGMainDisplayID(), rampsize, table_red, table_green, table_blue) != CGDisplayNoErr)
289 Con_Print("VID_SetGamma: ERROR: CGSetDisplayTransferByTable failed!\n");
296 int VID_GetGamma(unsigned short *ramps, int rampsize)
298 CGGammaValue table_red [GAMMA_TABLE_SIZE];
299 CGGammaValue table_green [GAMMA_TABLE_SIZE];
300 CGGammaValue table_blue [GAMMA_TABLE_SIZE];
301 CGTableCount actualsize = 0;
304 // Get the gamma ramps from the system
305 if (CGGetDisplayTransferByTable(CGMainDisplayID(), rampsize, table_red, table_green, table_blue, &actualsize) != CGDisplayNoErr)
307 Con_Print("VID_GetGamma: ERROR: CGGetDisplayTransferByTable failed!\n");
310 if (actualsize != (unsigned int)rampsize)
312 Con_Printf("VID_GetGamma: ERROR: invalid gamma table size (%u != %u)\n", actualsize, rampsize);
316 // Convert the 3 float tables into 1 unsigned short table
317 for (i = 0; i < rampsize; i++)
318 ramps[i] = table_red[i] * 65535.0f;
319 for (i = 0; i < rampsize; i++)
320 ramps[i + rampsize] = table_green[i] * 65535.0f;
321 for (i = 0; i < rampsize; i++)
322 ramps[i + 2 * rampsize] = table_blue[i] * 65535.0f;
327 void signal_handler(int sig)
329 printf("Received signal %d, exiting...\n", sig);
330 VID_RestoreSystemGamma();
336 signal(SIGHUP, signal_handler);
337 signal(SIGINT, signal_handler);
338 signal(SIGQUIT, signal_handler);
339 signal(SIGILL, signal_handler);
340 signal(SIGTRAP, signal_handler);
341 signal(SIGIOT, signal_handler);
342 signal(SIGBUS, signal_handler);
343 signal(SIGFPE, signal_handler);
344 signal(SIGSEGV, signal_handler);
345 signal(SIGTERM, signal_handler);
350 InitSig(); // trap evil signals
351 Cvar_RegisterVariable(&apple_multithreadedgl);
352 Cvar_RegisterVariable(&apple_mouse_noaccel);
353 // COMMANDLINEOPTION: Input: -nomouse disables mouse support (see also vid_mouse cvar)
354 if (COM_CheckParm ("-nomouse"))
358 static void *prjobj = NULL;
359 static void *cglobj = NULL;
361 static void GL_CloseLibrary(void)
372 gl_platformextensions = "";
375 static int GL_OpenLibrary(void)
377 const char *name = "/System/Library/Frameworks/AGL.framework/AGL";
378 const char *name2 = "/System/Library/Frameworks/OpenGL.framework/OpenGL";
380 Con_Printf("Loading OpenGL driver %s\n", name);
382 if (!(prjobj = dlopen(name, RTLD_LAZY)))
384 Con_Printf("Unable to open symbol list for %s\n", name);
387 strlcpy(gl_driver, name, sizeof(gl_driver));
389 Con_Printf("Loading OpenGL driver %s\n", name2);
390 if (!(cglobj = dlopen(name2, RTLD_LAZY)))
391 Con_Printf("Unable to open symbol list for %s; multithreaded GL disabled\n", name);
396 void *GL_GetProcAddress(const char *name)
398 return dlsym(prjobj, name);
401 static void *CGL_GetProcAddress(const char *name)
405 return dlsym(cglobj, name);
408 void VID_Shutdown(void)
410 if (context == NULL && window == NULL)
414 VID_RestoreSystemGamma();
418 qaglDestroyContext(context);
422 if (vid_isfullscreen)
423 CGReleaseAllDisplays();
427 DisposeWindow(window);
432 vid_isfullscreen = false;
438 // Since the event handler can be called at any time, we store the events for later processing
439 static qboolean AsyncEvent_Quitting = false;
440 static qboolean AsyncEvent_Collapsed = false;
441 static OSStatus MainWindowEventHandler (EventHandlerCallRef nextHandler, EventRef event, void *userData)
443 OSStatus err = noErr;
445 switch (GetEventKind (event))
447 case kEventWindowClosed:
448 AsyncEvent_Quitting = true;
452 case kEventWindowCollapsing:
453 AsyncEvent_Collapsed = true;
456 // Undocked / restored (end)
457 case kEventWindowExpanded:
458 AsyncEvent_Collapsed = false;
462 err = eventNotHandledErr;
469 static void VID_AppFocusChanged(qboolean windowIsActive)
471 if (vid_activewindow != windowIsActive)
473 vid_activewindow = windowIsActive;
474 if (!vid_activewindow)
475 VID_RestoreSystemGamma();
478 if (sound_active != windowIsActive)
480 sound_active = windowIsActive;
488 static void VID_ProcessPendingAsyncEvents (void)
490 // Collapsed / expanded
491 if (AsyncEvent_Collapsed != vid_hidden)
493 vid_hidden = !vid_hidden;
494 VID_AppFocusChanged(!vid_hidden);
498 if (AsyncEvent_Quitting)
502 static void VID_BuildAGLAttrib(GLint *attrib, qboolean stencil, qboolean fullscreen, qboolean stereobuffer, int samples)
504 *attrib++ = AGL_RGBA;
505 *attrib++ = AGL_RED_SIZE;*attrib++ = stencil ? 8 : 5;
506 *attrib++ = AGL_GREEN_SIZE;*attrib++ = stencil ? 8 : 5;
507 *attrib++ = AGL_BLUE_SIZE;*attrib++ = stencil ? 8 : 5;
508 *attrib++ = AGL_DOUBLEBUFFER;
509 *attrib++ = AGL_DEPTH_SIZE;*attrib++ = stencil ? 24 : 16;
511 // if stencil is enabled, ask for alpha too
514 *attrib++ = AGL_STENCIL_SIZE;*attrib++ = 8;
515 *attrib++ = AGL_ALPHA_SIZE;*attrib++ = 8;
518 *attrib++ = AGL_FULLSCREEN;
520 *attrib++ = AGL_STEREO;
521 #ifdef AGL_SAMPLE_BUFFERS_ARB
522 #ifdef AGL_SAMPLES_ARB
525 *attrib++ = AGL_SAMPLE_BUFFERS_ARB;
527 *attrib++ = AGL_SAMPLES_ARB;
533 *attrib++ = AGL_NONE;
536 int VID_InitMode(int fullscreen, int width, int height, int bpp, int refreshrate, int stereobuffer, int samples)
538 const EventTypeSpec winEvents[] =
540 { kEventClassWindow, kEventWindowClosed },
541 { kEventClassWindow, kEventWindowCollapsing },
542 { kEventClassWindow, kEventWindowExpanded },
544 OSStatus carbonError;
546 CFStringRef windowTitle;
547 AGLPixelFormat pixelFormat;
548 GLint attributes [32];
551 if (!GL_OpenLibrary())
553 Con_Printf("Unable to load GL driver\n");
557 if ((qaglChoosePixelFormat = (AGLPixelFormat (*) (const AGLDevice *gdevs, GLint ndev, const GLint *attribList))GL_GetProcAddress("aglChoosePixelFormat")) == NULL
558 || (qaglCreateContext = (AGLContext (*) (AGLPixelFormat pix, AGLContext share))GL_GetProcAddress("aglCreateContext")) == NULL
559 || (qaglDestroyContext = (GLboolean (*) (AGLContext ctx))GL_GetProcAddress("aglDestroyContext")) == NULL
560 || (qaglDestroyPixelFormat = (void (*) (AGLPixelFormat pix))GL_GetProcAddress("aglDestroyPixelFormat")) == NULL
561 || (qaglErrorString = (const GLubyte* (*) (GLenum code))GL_GetProcAddress("aglErrorString")) == NULL
562 || (qaglGetError = (GLenum (*) (void))GL_GetProcAddress("aglGetError")) == NULL
563 || (qaglSetCurrentContext = (GLboolean (*) (AGLContext ctx))GL_GetProcAddress("aglSetCurrentContext")) == NULL
564 || (qaglSetDrawable = (GLboolean (*) (AGLContext ctx, AGLDrawable draw))GL_GetProcAddress("aglSetDrawable")) == NULL
565 || (qaglSetFullScreen = (GLboolean (*) (AGLContext ctx, GLsizei width, GLsizei height, GLsizei freq, GLint device))GL_GetProcAddress("aglSetFullScreen")) == NULL
566 || (qaglSetInteger = (GLboolean (*) (AGLContext ctx, GLenum pname, const GLint *params))GL_GetProcAddress("aglSetInteger")) == NULL
567 || (qaglSwapBuffers = (void (*) (AGLContext ctx))GL_GetProcAddress("aglSwapBuffers")) == NULL
570 Con_Printf("AGL functions not found\n");
571 ReleaseWindow(window);
575 qCGLEnable = (CGLError (*) (CGLContextObj ctx, CGLContextEnable pname)) CGL_GetProcAddress("CGLEnable");
576 qCGLDisable = (CGLError (*) (CGLContextObj ctx, CGLContextEnable pname)) CGL_GetProcAddress("CGLDisable");
577 qCGLGetCurrentContext = (CGLContextObj (*) (void)) CGL_GetProcAddress("CGLGetCurrentContext");
578 if(!qCGLEnable || !qCGLDisable || !qCGLGetCurrentContext)
579 Con_Printf("CGL functions not found; disabling multithreaded OpenGL\n");
581 // Ignore the events from the previous window
582 AsyncEvent_Quitting = false;
583 AsyncEvent_Collapsed = false;
585 // Create the window, a bit towards the center of the screen
586 windowBounds.left = 100;
587 windowBounds.top = 100;
588 windowBounds.right = width + 100;
589 windowBounds.bottom = height + 100;
590 carbonError = CreateNewWindow(kDocumentWindowClass, kWindowStandardFloatingAttributes | kWindowStandardHandlerAttribute, &windowBounds, &window);
591 if (carbonError != noErr || window == NULL)
593 Con_Printf("Unable to create window (error %u)\n", (unsigned)carbonError);
597 // Set the window title
598 windowTitle = CFSTR("DarkPlaces AGL");
599 SetWindowTitleWithCFString(window, windowTitle);
601 // Install the callback function for the window events we can't get
602 // through ReceiveNextEvent (i.e. close, collapse, and expand)
603 InstallWindowEventHandler (window, NewEventHandlerUPP (MainWindowEventHandler),
604 GetEventTypeCount(winEvents), winEvents, window, NULL);
606 // Create the desired attribute list
607 VID_BuildAGLAttrib(attributes, bpp == 32, fullscreen, stereobuffer, samples);
612 pixelFormat = qaglChoosePixelFormat(NULL, 0, attributes);
613 error = qaglGetError();
614 if (error != AGL_NO_ERROR)
616 Con_Printf("qaglChoosePixelFormat FAILED: %s\n",
617 (char *)qaglErrorString(error));
618 ReleaseWindow(window);
622 else // Output is fullScreen
624 CGDirectDisplayID mainDisplay;
625 CFDictionaryRef refDisplayMode;
628 // Get the mainDisplay and set resolution to current
629 mainDisplay = CGMainDisplayID();
630 CGDisplayCapture(mainDisplay);
632 // TOCHECK: not sure whether or not it's necessary to change the resolution
633 // "by hand", or if aglSetFullscreen does the job anyway
634 refDisplayMode = CGDisplayBestModeForParametersAndRefreshRate(mainDisplay, bpp, width, height, refreshrate, NULL);
635 CGDisplaySwitchToMode(mainDisplay, refDisplayMode);
636 DMGetGDeviceByDisplayID((DisplayIDType)mainDisplay, &gdhDisplay, false);
638 // Set pixel format with built attribs
639 // Note: specifying a device is *required* for AGL_FullScreen
640 pixelFormat = qaglChoosePixelFormat(&gdhDisplay, 1, attributes);
641 error = qaglGetError();
642 if (error != AGL_NO_ERROR)
644 Con_Printf("qaglChoosePixelFormat FAILED: %s\n",
645 (char *)qaglErrorString(error));
646 ReleaseWindow(window);
651 // Create a context using the pform
652 context = qaglCreateContext(pixelFormat, NULL);
653 error = qaglGetError();
654 if (error != AGL_NO_ERROR)
656 Con_Printf("qaglCreateContext FAILED: %s\n",
657 (char *)qaglErrorString(error));
660 // Make the context the current one ('enable' it)
661 qaglSetCurrentContext(context);
662 error = qaglGetError();
663 if (error != AGL_NO_ERROR)
665 Con_Printf("qaglSetCurrentContext FAILED: %s\n",
666 (char *)qaglErrorString(error));
667 ReleaseWindow(window);
672 qaglDestroyPixelFormat(pixelFormat);
674 // Attempt fullscreen if requested
677 qaglSetFullScreen (context, width, height, refreshrate, 0);
678 error = qaglGetError();
679 if (error != AGL_NO_ERROR)
681 Con_Printf("qaglSetFullScreen FAILED: %s\n",
682 (char *)qaglErrorString(error));
688 // Set Window as Drawable
689 qaglSetDrawable(context, GetWindowPort(window));
690 error = qaglGetError();
691 if (error != AGL_NO_ERROR)
693 Con_Printf("qaglSetDrawable FAILED: %s\n",
694 (char *)qaglErrorString(error));
695 ReleaseWindow(window);
703 if ((qglGetString = (const GLubyte* (GLAPIENTRY *)(GLenum name))GL_GetProcAddress("glGetString")) == NULL)
704 Sys_Error("glGetString not found in %s", gl_driver);
706 gl_platformextensions = "";
708 gl_videosyncavailable = true;
710 multithreadedgl = false;
711 vid_isfullscreen = fullscreen;
712 vid_usingmouse = false;
714 vid_activewindow = true;
718 SelectWindow(window);
724 static void Handle_KeyMod(UInt32 keymod)
726 const struct keymod_to_event_s { UInt32 keybit; keynum_t event; } keymod_events [] =
729 { shiftKey, K_SHIFT },
730 { alphaLock, K_CAPSLOCK },
731 { optionKey, K_ALT },
732 { controlKey, K_CTRL },
733 { kEventKeyModifierNumLockMask, K_NUMLOCK },
734 { kEventKeyModifierFnMask, K_AUX2 }
736 static UInt32 prev_keymod = 0;
740 modChanges = prev_keymod ^ keymod;
744 for (i = 0; i < sizeof(keymod_events) / sizeof(keymod_events[0]); i++)
746 UInt32 keybit = keymod_events[i].keybit;
748 if ((modChanges & keybit) != 0)
749 Key_Event(keymod_events[i].event, '\0', (keymod & keybit) != 0);
752 prev_keymod = keymod;
755 static void Handle_Key(unsigned char charcode, UInt32 mackeycode, qboolean keypressed)
757 unsigned int keycode = 0;
802 keycode = K_SCROLLOCK;
808 keycode = K_BACKSPACE;
823 keycode = K_KP_EQUALS;
826 keycode = K_KP_DIVIDE;
829 keycode = K_KP_MULTIPLY;
853 keycode = K_KP_MINUS;
856 keycode = K_CAPSLOCK;
884 keycode = K_KP_ENTER;
890 keycode = K_KP_PERIOD;
895 case kUpArrowCharCode:
898 case kLeftArrowCharCode:
899 keycode = K_LEFTARROW;
901 case kDownArrowCharCode:
902 keycode = K_DOWNARROW;
904 case kRightArrowCharCode:
905 keycode = K_RIGHTARROW;
909 // characters 0 and 191 are sent by the mouse buttons (?!)
912 if ('A' <= charcode && charcode <= 'Z')
914 keycode = charcode + ('a' - 'A'); // lowercase it
917 else if (charcode >= 32)
923 Con_DPrintf(">> UNKNOWN char/keycode: %d/%u <<\n", charcode, (unsigned) mackeycode);
928 Key_Event(keycode, ascii, keypressed);
931 void Sys_SendKeyEvents(void)
934 EventTargetRef theTarget;
936 // Start by processing the asynchronous events we received since the previous frame
937 VID_ProcessPendingAsyncEvents();
939 theTarget = GetEventDispatcherTarget();
940 while (ReceiveNextEvent(0, NULL, kEventDurationNoWait, true, &theEvent) == noErr)
942 UInt32 eventClass = GetEventClass(theEvent);
943 UInt32 eventKind = GetEventKind(theEvent);
947 case kEventClassMouse:
949 EventMouseButton theButton;
954 case kEventMouseDown:
956 GetEventParameter(theEvent, kEventParamMouseButton, typeMouseButton, NULL, sizeof(theButton), NULL, &theButton);
960 case kEventMouseButtonPrimary:
963 case kEventMouseButtonSecondary:
966 case kEventMouseButtonTertiary:
970 Key_Event(key, '\0', eventKind == kEventMouseDown);
973 // Note: These two events are mutual exclusives
974 // Treat MouseDragged in the same statement, so we don't block MouseMoved while a mousebutton is held
975 case kEventMouseMoved:
976 case kEventMouseDragged:
980 GetEventParameter(theEvent, kEventParamMouseDelta, typeHIPoint, NULL, sizeof(deltaPos), NULL, &deltaPos);
982 mouse_x += deltaPos.x;
983 mouse_y += deltaPos.y;
987 case kEventMouseWheelMoved:
990 unsigned int wheelEvent;
992 GetEventParameter(theEvent, kEventParamMouseWheelDelta, typeSInt32, NULL, sizeof(delta), NULL, &delta);
994 wheelEvent = (delta > 0) ? K_MWHEELUP : K_MWHEELDOWN;
995 Key_Event(wheelEvent, 0, true);
996 Key_Event(wheelEvent, 0, false);
1001 Con_Printf (">> kEventClassMouse (UNKNOWN eventKind: %u) <<\n", (unsigned)eventKind);
1006 case kEventClassKeyboard:
1013 case kEventRawKeyDown:
1014 GetEventParameter(theEvent, kEventParamKeyMacCharCodes, typeChar, NULL, sizeof(charcode), NULL, &charcode);
1015 GetEventParameter(theEvent, kEventParamKeyCode, typeUInt32, NULL, sizeof(keycode), NULL, &keycode);
1016 Handle_Key(charcode, keycode, true);
1019 case kEventRawKeyRepeat:
1022 case kEventRawKeyUp:
1023 GetEventParameter(theEvent, kEventParamKeyMacCharCodes, typeChar, NULL, sizeof(charcode), NULL, &charcode);
1024 GetEventParameter(theEvent, kEventParamKeyCode, typeUInt32, NULL, sizeof(keycode), NULL, &keycode);
1025 Handle_Key(charcode, keycode, false);
1028 case kEventRawKeyModifiersChanged:
1031 GetEventParameter(theEvent, kEventParamKeyModifiers, typeUInt32, NULL, sizeof(keymod), NULL, &keymod);
1032 Handle_KeyMod(keymod);
1036 case kEventHotKeyPressed:
1039 case kEventHotKeyReleased:
1042 case kEventMouseWheelMoved:
1046 Con_Printf (">> kEventClassKeyboard (UNKNOWN eventKind: %u) <<\n", (unsigned)eventKind);
1052 case kEventClassTextInput:
1053 Con_Printf(">> kEventClassTextInput (%d) <<\n", (int)eventKind);
1056 case kEventClassApplication:
1059 case kEventAppActivated :
1060 VID_AppFocusChanged(true);
1062 case kEventAppDeactivated:
1063 VID_AppFocusChanged(false);
1068 case kEventAppActiveWindowChanged:
1071 Con_Printf(">> kEventClassApplication (UNKNOWN eventKind: %u) <<\n", (unsigned)eventKind);
1076 case kEventClassAppleEvent:
1079 case kEventAppleEvent :
1082 Con_Printf(">> kEventClassAppleEvent (UNKNOWN eventKind: %u) <<\n", (unsigned)eventKind);
1087 case kEventClassWindow:
1090 case kEventWindowUpdate :
1093 Con_Printf(">> kEventClassWindow (UNKNOWN eventKind: %u) <<\n", (unsigned)eventKind);
1098 case kEventClassControl:
1102 /*Con_Printf(">> UNKNOWN eventClass: %c%c%c%c, eventKind: %d <<\n",
1103 eventClass >> 24, (eventClass >> 16) & 0xFF,
1104 (eventClass >> 8) & 0xFF, eventClass & 0xFF,
1109 SendEventToEventTarget (theEvent, theTarget);
1110 ReleaseEvent(theEvent);
1118 in_mouse_x = mouse_x;
1119 in_mouse_y = mouse_y;