2010-09-07 11:34:51 -04:00
|
|
|
//========================================================================
|
2019-04-16 08:43:29 -04:00
|
|
|
// GLFW 3.4 macOS - www.glfw.org
|
2010-09-07 11:34:51 -04:00
|
|
|
//------------------------------------------------------------------------
|
2019-04-15 14:50:00 -04:00
|
|
|
// Copyright (c) 2009-2019 Camilla Löwy <elmindreda@glfw.org>
|
2010-09-07 11:34:51 -04:00
|
|
|
//
|
|
|
|
// This software is provided 'as-is', without any express or implied
|
|
|
|
// warranty. In no event will the authors be held liable for any damages
|
|
|
|
// arising from the use of this software.
|
|
|
|
//
|
|
|
|
// Permission is granted to anyone to use this software for any purpose,
|
|
|
|
// including commercial applications, and to alter it and redistribute it
|
|
|
|
// freely, subject to the following restrictions:
|
|
|
|
//
|
|
|
|
// 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
// claim that you wrote the original software. If you use this software
|
|
|
|
// in a product, an acknowledgment in the product documentation would
|
|
|
|
// be appreciated but is not required.
|
|
|
|
//
|
|
|
|
// 2. Altered source versions must be plainly marked as such, and must not
|
|
|
|
// be misrepresented as being the original software.
|
|
|
|
//
|
|
|
|
// 3. This notice may not be removed or altered from any source
|
|
|
|
// distribution.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
2010-09-15 12:57:25 -04:00
|
|
|
#include <stdint.h>
|
2015-08-10 14:19:04 -04:00
|
|
|
#include <dlfcn.h>
|
2010-09-15 12:57:25 -04:00
|
|
|
|
2018-10-24 08:30:02 -04:00
|
|
|
#include <Carbon/Carbon.h>
|
2019-02-20 18:35:53 -05:00
|
|
|
|
2019-03-26 13:30:17 -04:00
|
|
|
// NOTE: All of NSGL was deprecated in the 10.14 SDK
|
|
|
|
// This disables the pointless warnings for every symbol we use
|
|
|
|
#define GL_SILENCE_DEPRECATION
|
|
|
|
|
2010-09-07 11:34:51 -04:00
|
|
|
#if defined(__OBJC__)
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#else
|
2010-09-15 12:57:25 -04:00
|
|
|
typedef void* id;
|
2010-09-07 11:34:51 -04:00
|
|
|
#endif
|
|
|
|
|
2019-11-06 11:25:16 -05:00
|
|
|
// NOTE: Many Cocoa enum values have been renamed and we need to build across
|
|
|
|
// SDK versions where one is unavailable or the other deprecated
|
|
|
|
// We use the newer names in code and these macros to handle compatibility
|
2019-03-26 20:26:39 -04:00
|
|
|
#if MAC_OS_X_VERSION_MAX_ALLOWED < 101200
|
|
|
|
#define NSBitmapFormatAlphaNonpremultiplied NSAlphaNonpremultipliedBitmapFormat
|
|
|
|
#define NSEventMaskAny NSAnyEventMask
|
|
|
|
#define NSEventMaskKeyUp NSKeyUpMask
|
|
|
|
#define NSEventModifierFlagCapsLock NSAlphaShiftKeyMask
|
|
|
|
#define NSEventModifierFlagCommand NSCommandKeyMask
|
|
|
|
#define NSEventModifierFlagControl NSControlKeyMask
|
|
|
|
#define NSEventModifierFlagDeviceIndependentFlagsMask NSDeviceIndependentModifierFlagsMask
|
|
|
|
#define NSEventModifierFlagOption NSAlternateKeyMask
|
|
|
|
#define NSEventModifierFlagShift NSShiftKeyMask
|
|
|
|
#define NSEventTypeApplicationDefined NSApplicationDefined
|
|
|
|
#define NSWindowStyleMaskBorderless NSBorderlessWindowMask
|
|
|
|
#define NSWindowStyleMaskClosable NSClosableWindowMask
|
|
|
|
#define NSWindowStyleMaskMiniaturizable NSMiniaturizableWindowMask
|
|
|
|
#define NSWindowStyleMaskResizable NSResizableWindowMask
|
|
|
|
#define NSWindowStyleMaskTitled NSTitledWindowMask
|
|
|
|
#endif
|
|
|
|
|
2016-10-13 19:46:56 -04:00
|
|
|
typedef VkFlags VkMacOSSurfaceCreateFlagsMVK;
|
|
|
|
|
|
|
|
typedef struct VkMacOSSurfaceCreateInfoMVK
|
|
|
|
{
|
|
|
|
VkStructureType sType;
|
|
|
|
const void* pNext;
|
|
|
|
VkMacOSSurfaceCreateFlagsMVK flags;
|
|
|
|
const void* pView;
|
|
|
|
} VkMacOSSurfaceCreateInfoMVK;
|
|
|
|
|
|
|
|
typedef VkResult (APIENTRY *PFN_vkCreateMacOSSurfaceMVK)(VkInstance,const VkMacOSSurfaceCreateInfoMVK*,const VkAllocationCallbacks*,VkSurfaceKHR*);
|
|
|
|
|
2017-05-25 13:25:47 -04:00
|
|
|
#include "posix_thread.h"
|
2015-12-06 09:53:10 -05:00
|
|
|
#include "cocoa_joystick.h"
|
2016-03-28 07:19:31 -04:00
|
|
|
#include "nsgl_context.h"
|
2017-01-02 09:32:55 -05:00
|
|
|
#include "egl_context.h"
|
2017-02-28 13:23:25 -05:00
|
|
|
#include "osmesa_context.h"
|
2010-09-07 11:34:51 -04:00
|
|
|
|
2015-08-10 14:19:04 -04:00
|
|
|
#define _glfw_dlopen(name) dlopen(name, RTLD_LAZY | RTLD_LOCAL)
|
|
|
|
#define _glfw_dlclose(handle) dlclose(handle)
|
|
|
|
#define _glfw_dlsym(handle, name) dlsym(handle, name)
|
|
|
|
|
2017-01-02 09:32:55 -05:00
|
|
|
#define _GLFW_EGL_NATIVE_WINDOW ((EGLNativeWindowType) window->ns.view)
|
|
|
|
#define _GLFW_EGL_NATIVE_DISPLAY EGL_DEFAULT_DISPLAY
|
|
|
|
|
2013-01-01 19:40:42 -05:00
|
|
|
#define _GLFW_PLATFORM_WINDOW_STATE _GLFWwindowNS ns
|
|
|
|
#define _GLFW_PLATFORM_LIBRARY_WINDOW_STATE _GLFWlibraryNS ns
|
2017-03-18 18:09:34 -04:00
|
|
|
#define _GLFW_PLATFORM_LIBRARY_TIMER_STATE _GLFWtimerNS ns
|
2013-01-01 19:40:42 -05:00
|
|
|
#define _GLFW_PLATFORM_MONITOR_STATE _GLFWmonitorNS ns
|
2013-12-04 08:19:22 -05:00
|
|
|
#define _GLFW_PLATFORM_CURSOR_STATE _GLFWcursorNS ns
|
2010-09-15 12:57:25 -04:00
|
|
|
|
2016-05-23 06:46:57 -04:00
|
|
|
// HIToolbox.framework pointer typedefs
|
|
|
|
#define kTISPropertyUnicodeKeyLayoutData _glfw.ns.tis.kPropertyUnicodeKeyLayoutData
|
|
|
|
typedef TISInputSourceRef (*PFN_TISCopyCurrentKeyboardLayoutInputSource)(void);
|
|
|
|
#define TISCopyCurrentKeyboardLayoutInputSource _glfw.ns.tis.CopyCurrentKeyboardLayoutInputSource
|
|
|
|
typedef void* (*PFN_TISGetInputSourceProperty)(TISInputSourceRef,CFStringRef);
|
|
|
|
#define TISGetInputSourceProperty _glfw.ns.tis.GetInputSourceProperty
|
|
|
|
typedef UInt8 (*PFN_LMGetKbdType)(void);
|
|
|
|
#define LMGetKbdType _glfw.ns.tis.GetKbdType
|
|
|
|
|
2010-09-15 12:57:25 -04:00
|
|
|
|
2014-09-02 13:42:43 -04:00
|
|
|
// Cocoa-specific per-window data
|
|
|
|
//
|
2010-09-15 12:57:25 -04:00
|
|
|
typedef struct _GLFWwindowNS
|
|
|
|
{
|
2013-01-02 10:48:02 -05:00
|
|
|
id object;
|
2015-04-10 07:17:27 -04:00
|
|
|
id delegate;
|
2013-01-02 10:48:02 -05:00
|
|
|
id view;
|
2016-10-13 19:46:56 -04:00
|
|
|
id layer;
|
2014-09-02 13:42:43 -04:00
|
|
|
|
2016-06-16 07:09:28 -04:00
|
|
|
GLFWbool maximized;
|
2019-03-27 12:07:44 -04:00
|
|
|
GLFWbool retina;
|
2016-06-16 07:09:28 -04:00
|
|
|
|
2017-12-11 15:26:40 -05:00
|
|
|
// Cached window properties to filter out duplicate events
|
2017-11-16 05:34:42 -05:00
|
|
|
int width, height;
|
|
|
|
int fbWidth, fbHeight;
|
2017-12-11 15:26:40 -05:00
|
|
|
float xscale, yscale;
|
2017-11-16 05:34:42 -05:00
|
|
|
|
2014-02-11 12:24:01 -05:00
|
|
|
// The total sum of the distances the cursor has been warped
|
|
|
|
// since the last cursor motion event was processed
|
|
|
|
// This is kept to counteract Cocoa doing the same internally
|
2016-05-24 06:23:58 -04:00
|
|
|
double cursorWarpDeltaX, cursorWarpDeltaY;
|
2014-02-11 12:24:01 -05:00
|
|
|
|
2010-09-15 12:57:25 -04:00
|
|
|
} _GLFWwindowNS;
|
2010-09-07 11:34:51 -04:00
|
|
|
|
2014-09-02 13:42:43 -04:00
|
|
|
// Cocoa-specific global data
|
|
|
|
//
|
2010-09-15 12:57:25 -04:00
|
|
|
typedef struct _GLFWlibraryNS
|
|
|
|
{
|
2015-07-02 08:24:50 -04:00
|
|
|
CGEventSourceRef eventSource;
|
|
|
|
id delegate;
|
2019-01-10 19:05:00 -05:00
|
|
|
GLFWbool finishedLaunching;
|
2017-08-22 14:40:07 -04:00
|
|
|
GLFWbool cursorHidden;
|
2015-07-02 08:24:50 -04:00
|
|
|
TISInputSourceRef inputSource;
|
2016-06-07 08:11:54 -04:00
|
|
|
IOHIDManagerRef hidManager;
|
2015-07-02 08:24:50 -04:00
|
|
|
id unicodeData;
|
2018-12-24 17:31:58 -05:00
|
|
|
id helper;
|
|
|
|
id keyUpMonitor;
|
|
|
|
id nibObjects;
|
2015-07-02 08:24:50 -04:00
|
|
|
|
2019-08-22 15:31:46 -04:00
|
|
|
char keynames[GLFW_KEY_LAST + 1][17];
|
2016-09-07 09:43:39 -04:00
|
|
|
short int keycodes[256];
|
|
|
|
short int scancodes[GLFW_KEY_LAST + 1];
|
2015-07-02 08:24:50 -04:00
|
|
|
char* clipboardString;
|
2017-01-01 13:59:09 -05:00
|
|
|
CGPoint cascadePoint;
|
2016-05-25 08:06:02 -04:00
|
|
|
// Where to place the cursor when re-enabled
|
|
|
|
double restoreCursorPosX, restoreCursorPosY;
|
2016-05-30 15:21:09 -04:00
|
|
|
// The window whose disabled cursor mode is active
|
|
|
|
_GLFWwindow* disabledCursorWindow;
|
2013-02-14 13:07:17 -05:00
|
|
|
|
2016-05-23 06:46:57 -04:00
|
|
|
struct {
|
|
|
|
CFBundleRef bundle;
|
|
|
|
PFN_TISCopyCurrentKeyboardLayoutInputSource CopyCurrentKeyboardLayoutInputSource;
|
|
|
|
PFN_TISGetInputSourceProperty GetInputSourceProperty;
|
|
|
|
PFN_LMGetKbdType GetKbdType;
|
|
|
|
CFStringRef kPropertyUnicodeKeyLayoutData;
|
|
|
|
} tis;
|
|
|
|
|
2010-09-15 12:57:25 -04:00
|
|
|
} _GLFWlibraryNS;
|
2010-09-07 11:34:51 -04:00
|
|
|
|
2014-09-02 13:42:43 -04:00
|
|
|
// Cocoa-specific per-monitor data
|
|
|
|
//
|
2012-09-12 14:44:08 -04:00
|
|
|
typedef struct _GLFWmonitorNS
|
|
|
|
{
|
2013-04-17 17:07:44 -04:00
|
|
|
CGDirectDisplayID displayID;
|
|
|
|
CGDisplayModeRef previousMode;
|
2015-09-02 07:42:28 -04:00
|
|
|
uint32_t unitNumber;
|
2017-08-29 13:19:00 -04:00
|
|
|
id screen;
|
2019-12-19 02:43:01 -05:00
|
|
|
double fallbackRefreshRate;
|
2012-09-12 14:44:08 -04:00
|
|
|
|
|
|
|
} _GLFWmonitorNS;
|
|
|
|
|
2014-09-02 13:42:43 -04:00
|
|
|
// Cocoa-specific per-cursor data
|
|
|
|
//
|
2013-12-04 08:19:22 -05:00
|
|
|
typedef struct _GLFWcursorNS
|
|
|
|
{
|
2014-09-02 13:42:43 -04:00
|
|
|
id object;
|
|
|
|
|
2013-12-04 08:19:22 -05:00
|
|
|
} _GLFWcursorNS;
|
|
|
|
|
2014-09-02 13:42:43 -04:00
|
|
|
// Cocoa-specific global timer data
|
|
|
|
//
|
2017-03-18 18:09:34 -04:00
|
|
|
typedef struct _GLFWtimerNS
|
2014-03-27 12:19:22 -04:00
|
|
|
{
|
2016-03-23 05:09:07 -04:00
|
|
|
uint64_t frequency;
|
2014-03-27 12:19:22 -04:00
|
|
|
|
2017-03-18 18:09:34 -04:00
|
|
|
} _GLFWtimerNS;
|
2014-03-27 12:19:22 -04:00
|
|
|
|
2011-09-18 15:05:00 -04:00
|
|
|
|
2015-12-03 12:16:46 -05:00
|
|
|
void _glfwInitTimerNS(void);
|
2012-02-08 19:53:26 -05:00
|
|
|
|
2016-12-04 19:19:48 -05:00
|
|
|
void _glfwPollMonitorsNS(void);
|
2018-02-05 11:11:04 -05:00
|
|
|
void _glfwSetVideoModeNS(_GLFWmonitor* monitor, const GLFWvidmode* desired);
|
2015-12-03 12:16:46 -05:00
|
|
|
void _glfwRestoreVideoModeNS(_GLFWmonitor* monitor);
|
2011-09-18 15:05:00 -04:00
|
|
|
|
2019-03-05 11:41:32 -05:00
|
|
|
float _glfwTransformYNS(float y);
|
|
|
|
|