2017-11-19 20:54:36 +03:00
|
|
|
//========================================================================
|
2019-07-18 20:08:14 +03:00
|
|
|
// GLFW 3.4 macOS - www.glfw.org
|
2017-11-19 20:54:36 +03:00
|
|
|
//------------------------------------------------------------------------
|
2019-07-18 20:11:34 +03:00
|
|
|
// Copyright (c) 2009-2019 Camilla Löwy <elmindreda@glfw.org>
|
2017-11-19 20:54:36 +03: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.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <dlfcn.h>
|
|
|
|
|
2018-10-25 08:02:17 +03:00
|
|
|
#include <Carbon/Carbon.h>
|
2017-11-19 20:54:36 +03:00
|
|
|
#if defined(__OBJC__)
|
|
|
|
#import <Cocoa/Cocoa.h>
|
2019-02-20 12:38:07 +03:00
|
|
|
#import <CoreVideo/CoreVideo.h>
|
2017-11-19 20:54:36 +03:00
|
|
|
#else
|
|
|
|
typedef void* id;
|
2019-02-20 12:38:07 +03:00
|
|
|
typedef void* CVDisplayLinkRef;
|
2017-11-19 20:54:36 +03:00
|
|
|
#endif
|
|
|
|
|
2019-11-21 16:16:01 +03: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-28 10:07:05 +03: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
|
|
|
|
|
|
|
|
#if (MAC_OS_X_VERSION_MAX_ALLOWED < 101400)
|
|
|
|
#define NSPasteboardTypeFileURL NSFilenamesPboardType
|
|
|
|
#define NSBitmapFormatAlphaNonpremultiplied NSAlphaNonpremultipliedBitmapFormat
|
|
|
|
#define NSPasteboardTypeString NSStringPboardType
|
|
|
|
#define NSOpenGLContextParameterSurfaceOpacity NSOpenGLCPSurfaceOpacity
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2019-02-14 18:09:32 +03:00
|
|
|
typedef int (* GLFWcocoatextinputfilterfun)(int,int,unsigned int, unsigned long);
|
2019-11-24 15:01:54 +03:00
|
|
|
typedef bool (* GLFWapplicationshouldhandlereopenfun)(int);
|
2021-03-10 19:03:29 +03:00
|
|
|
typedef bool (* GLFWhandlefileopen)(const char*);
|
2019-11-23 21:18:38 +03:00
|
|
|
typedef void (* GLFWapplicationwillfinishlaunchingfun)(void);
|
2019-11-24 15:01:54 +03:00
|
|
|
typedef bool (* GLFWcocoatogglefullscreenfun)(GLFWwindow*);
|
2019-02-20 12:38:07 +03:00
|
|
|
typedef void (* GLFWcocoarenderframefun)(GLFWwindow*);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
2020-01-17 15:14:32 +03:00
|
|
|
typedef VkFlags VkMacOSSurfaceCreateFlagsMVK;
|
2020-01-17 16:08:47 +03:00
|
|
|
typedef VkFlags VkMetalSurfaceCreateFlagsEXT;
|
2020-01-17 15:14:32 +03:00
|
|
|
|
2017-11-19 20:54:36 +03:00
|
|
|
typedef struct VkMacOSSurfaceCreateInfoMVK
|
|
|
|
{
|
|
|
|
VkStructureType sType;
|
|
|
|
const void* pNext;
|
|
|
|
VkMacOSSurfaceCreateFlagsMVK flags;
|
|
|
|
const void* pView;
|
|
|
|
} VkMacOSSurfaceCreateInfoMVK;
|
|
|
|
|
2020-01-17 16:08:47 +03:00
|
|
|
typedef struct VkMetalSurfaceCreateInfoEXT
|
|
|
|
{
|
2020-01-17 15:14:32 +03:00
|
|
|
VkStructureType sType;
|
|
|
|
const void* pNext;
|
|
|
|
VkMetalSurfaceCreateFlagsEXT flags;
|
2020-01-17 16:08:47 +03:00
|
|
|
const void* pLayer;
|
2020-01-17 15:14:32 +03:00
|
|
|
} VkMetalSurfaceCreateInfoEXT;
|
|
|
|
|
2020-01-17 16:08:47 +03:00
|
|
|
typedef VkResult (APIENTRY *PFN_vkCreateMacOSSurfaceMVK)(VkInstance,const VkMacOSSurfaceCreateInfoMVK*,const VkAllocationCallbacks*,VkSurfaceKHR*);
|
|
|
|
typedef VkResult (APIENTRY *PFN_vkCreateMetalSurfaceEXT)(VkInstance,const VkMetalSurfaceCreateInfoEXT*,const VkAllocationCallbacks*,VkSurfaceKHR*);
|
2020-01-17 15:14:32 +03:00
|
|
|
|
2017-11-19 20:54:36 +03:00
|
|
|
#include "posix_thread.h"
|
|
|
|
#include "cocoa_joystick.h"
|
|
|
|
#include "nsgl_context.h"
|
|
|
|
|
|
|
|
#define _glfw_dlopen(name) dlopen(name, RTLD_LAZY | RTLD_LOCAL)
|
|
|
|
#define _glfw_dlclose(handle) dlclose(handle)
|
|
|
|
#define _glfw_dlsym(handle, name) dlsym(handle, name)
|
|
|
|
|
|
|
|
#define _GLFW_PLATFORM_WINDOW_STATE _GLFWwindowNS ns
|
|
|
|
#define _GLFW_PLATFORM_LIBRARY_WINDOW_STATE _GLFWlibraryNS ns
|
|
|
|
#define _GLFW_PLATFORM_LIBRARY_TIMER_STATE _GLFWtimerNS ns
|
|
|
|
#define _GLFW_PLATFORM_MONITOR_STATE _GLFWmonitorNS ns
|
|
|
|
#define _GLFW_PLATFORM_CURSOR_STATE _GLFWcursorNS ns
|
|
|
|
|
|
|
|
// 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
|
|
|
|
|
|
|
|
|
|
|
|
// Cocoa-specific per-window data
|
|
|
|
//
|
|
|
|
typedef struct _GLFWwindowNS
|
|
|
|
{
|
|
|
|
id object;
|
|
|
|
id delegate;
|
|
|
|
id view;
|
|
|
|
id layer;
|
|
|
|
|
2019-06-21 16:50:20 +03:00
|
|
|
bool maximized;
|
|
|
|
bool retina;
|
2020-11-16 07:53:01 +03:00
|
|
|
bool in_traditional_fullscreen;
|
2020-11-20 05:00:46 +03:00
|
|
|
bool titlebar_hidden;
|
2020-11-16 07:53:01 +03:00
|
|
|
unsigned long pre_full_screen_style_mask;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
2018-01-12 03:04:53 +03:00
|
|
|
// Cached window properties to filter out duplicate events
|
2017-11-19 20:54:36 +03:00
|
|
|
int width, height;
|
|
|
|
int fbWidth, fbHeight;
|
2018-01-12 03:04:53 +03:00
|
|
|
float xscale, yscale;
|
2017-11-19 20:54:36 +03: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
|
|
|
|
double cursorWarpDeltaX, cursorWarpDeltaY;
|
|
|
|
|
2018-04-19 15:14:31 +03:00
|
|
|
// The text input filter callback
|
|
|
|
GLFWcocoatextinputfilterfun textInputFilterCallback;
|
2018-09-12 13:15:08 +03:00
|
|
|
// The toggle fullscreen intercept callback
|
|
|
|
GLFWcocoatogglefullscreenfun toggleFullscreenCallback;
|
2018-04-20 11:55:53 +03:00
|
|
|
// Dead key state
|
|
|
|
UInt32 deadKeyState;
|
2019-02-20 12:38:07 +03:00
|
|
|
// Whether a render frame has been requested for this window
|
2019-06-08 05:42:42 +03:00
|
|
|
bool renderFrameRequested;
|
2019-02-20 12:38:07 +03:00
|
|
|
GLFWcocoarenderframefun renderFrameCallback;
|
2017-11-19 20:54:36 +03:00
|
|
|
} _GLFWwindowNS;
|
|
|
|
|
2019-02-20 12:38:07 +03:00
|
|
|
typedef struct _GLFWDisplayLinkNS
|
|
|
|
{
|
|
|
|
CVDisplayLinkRef displayLink;
|
|
|
|
CGDirectDisplayID displayID;
|
2021-05-12 04:59:51 +03:00
|
|
|
monotonic_t lastRenderFrameRequestedAt, first_unserviced_render_frame_request_at;
|
2019-02-20 12:38:07 +03:00
|
|
|
} _GLFWDisplayLinkNS;
|
|
|
|
|
2017-11-19 20:54:36 +03:00
|
|
|
// Cocoa-specific global data
|
|
|
|
//
|
|
|
|
typedef struct _GLFWlibraryNS
|
|
|
|
{
|
|
|
|
CGEventSourceRef eventSource;
|
|
|
|
id delegate;
|
2019-07-23 20:57:18 +03:00
|
|
|
bool finishedLaunching;
|
2019-06-21 16:50:20 +03:00
|
|
|
bool cursorHidden;
|
2017-11-19 20:54:36 +03:00
|
|
|
TISInputSourceRef inputSource;
|
|
|
|
IOHIDManagerRef hidManager;
|
|
|
|
id unicodeData;
|
2018-12-26 09:59:38 +03:00
|
|
|
id helper;
|
|
|
|
id keyUpMonitor;
|
|
|
|
id keyDownMonitor;
|
2019-07-23 20:57:18 +03:00
|
|
|
id nibObjects;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
|
|
|
char keyName[64];
|
2018-03-30 11:47:39 +03:00
|
|
|
char text[256];
|
2017-11-19 20:54:36 +03:00
|
|
|
char* clipboardString;
|
|
|
|
CGPoint cascadePoint;
|
|
|
|
// Where to place the cursor when re-enabled
|
|
|
|
double restoreCursorPosX, restoreCursorPosY;
|
|
|
|
// The window whose disabled cursor mode is active
|
|
|
|
_GLFWwindow* disabledCursorWindow;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
CFBundleRef bundle;
|
|
|
|
PFN_TISCopyCurrentKeyboardLayoutInputSource CopyCurrentKeyboardLayoutInputSource;
|
|
|
|
PFN_TISGetInputSourceProperty GetInputSourceProperty;
|
|
|
|
PFN_LMGetKbdType GetKbdType;
|
|
|
|
CFStringRef kPropertyUnicodeKeyLayoutData;
|
|
|
|
} tis;
|
|
|
|
|
2019-02-20 12:38:07 +03:00
|
|
|
struct {
|
|
|
|
_GLFWDisplayLinkNS entries[256];
|
|
|
|
size_t count;
|
|
|
|
} displayLinks;
|
2021-03-10 19:03:29 +03:00
|
|
|
// the callback to handle file open events
|
|
|
|
GLFWhandlefileopen file_open_callback;
|
2019-02-20 12:38:07 +03:00
|
|
|
|
2017-11-19 20:54:36 +03:00
|
|
|
} _GLFWlibraryNS;
|
|
|
|
|
|
|
|
// Cocoa-specific per-monitor data
|
|
|
|
//
|
|
|
|
typedef struct _GLFWmonitorNS
|
|
|
|
{
|
|
|
|
CGDirectDisplayID displayID;
|
|
|
|
CGDisplayModeRef previousMode;
|
|
|
|
uint32_t unitNumber;
|
|
|
|
id screen;
|
2020-01-02 20:05:38 +03:00
|
|
|
double fallbackRefreshRate;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
|
|
|
} _GLFWmonitorNS;
|
|
|
|
|
|
|
|
// Cocoa-specific per-cursor data
|
|
|
|
//
|
|
|
|
typedef struct _GLFWcursorNS
|
|
|
|
{
|
|
|
|
id object;
|
|
|
|
|
|
|
|
} _GLFWcursorNS;
|
|
|
|
|
|
|
|
// Cocoa-specific global timer data
|
|
|
|
//
|
|
|
|
typedef struct _GLFWtimerNS
|
|
|
|
{
|
|
|
|
uint64_t frequency;
|
|
|
|
|
|
|
|
} _GLFWtimerNS;
|
|
|
|
|
|
|
|
|
|
|
|
void _glfwPollMonitorsNS(void);
|
2018-02-08 06:45:40 +03:00
|
|
|
void _glfwSetVideoModeNS(_GLFWmonitor* monitor, const GLFWvidmode* desired);
|
2017-11-19 20:54:36 +03:00
|
|
|
void _glfwRestoreVideoModeNS(_GLFWmonitor* monitor);
|
2019-06-21 16:50:20 +03:00
|
|
|
|
2019-03-06 06:38:08 +03:00
|
|
|
float _glfwTransformYNS(float y);
|
2019-06-21 16:50:20 +03:00
|
|
|
|
2020-01-17 16:12:05 +03:00
|
|
|
void* _glfwLoadLocalVulkanLoaderNS(void);
|
|
|
|
|
2019-05-13 08:29:01 +03:00
|
|
|
void _glfwClearDisplayLinks(void);
|
2019-05-28 15:24:34 +03:00
|
|
|
void _glfwRestartDisplayLinks(void);
|
2019-05-13 08:29:01 +03:00
|
|
|
void _glfwDispatchTickCallback(void);
|
2019-03-21 14:21:01 +03:00
|
|
|
void _glfwDispatchRenderFrame(CGDirectDisplayID);
|
2019-06-29 11:51:47 +03:00
|
|
|
void _glfwShutdownCVDisplayLink(unsigned long long, void*);
|
2019-07-18 11:55:11 +03:00
|
|
|
void _glfwCocoaPostEmptyEvent(void);
|
2021-05-12 04:59:51 +03:00
|
|
|
void _glfw_create_cv_display_link(_GLFWDisplayLinkNS *entry);
|
2021-08-01 08:40:46 +03:00
|
|
|
_GLFWDisplayLinkNS* _glfw_create_display_link(CGDirectDisplayID);
|