2017-11-19 20:54:36 +03:00
|
|
|
//========================================================================
|
|
|
|
// GLFW 3.3 macOS - www.glfw.org
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Copyright (c) 2009-2016 Camilla Löwy <elmindreda@glfw.org>
|
|
|
|
//
|
|
|
|
// 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-02-28 11:29:49 +03:00
|
|
|
typedef enum {
|
|
|
|
EMPTY_EVENT_TYPE,
|
|
|
|
RENDER_FRAME_REQUEST_EVENT_TYPE,
|
|
|
|
TICK_CALLBACK_EVENT_TYPE
|
|
|
|
} EventTypes;
|
|
|
|
|
2019-02-20 12:38:07 +03:00
|
|
|
|
2017-11-19 20:54:36 +03:00
|
|
|
typedef VkFlags VkMacOSSurfaceCreateFlagsMVK;
|
2019-02-14 18:09:32 +03:00
|
|
|
typedef int (* GLFWcocoatextinputfilterfun)(int,int,unsigned int, unsigned long);
|
2018-06-07 04:47:37 +03:00
|
|
|
typedef int (* GLFWapplicationshouldhandlereopenfun)(int);
|
2018-09-12 13:15:08 +03:00
|
|
|
typedef int (* GLFWcocoatogglefullscreenfun)(GLFWwindow*);
|
2019-02-20 12:38:07 +03:00
|
|
|
typedef void (* GLFWcocoarenderframefun)(GLFWwindow*);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
|
|
|
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*);
|
|
|
|
|
|
|
|
#include "posix_thread.h"
|
|
|
|
#include "cocoa_joystick.h"
|
|
|
|
#include "nsgl_context.h"
|
|
|
|
#include "egl_context.h"
|
|
|
|
#include "osmesa_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_EGL_NATIVE_WINDOW ((EGLNativeWindowType) window->ns.view)
|
|
|
|
#define _GLFW_EGL_NATIVE_DISPLAY EGL_DEFAULT_DISPLAY
|
|
|
|
|
|
|
|
#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;
|
|
|
|
|
|
|
|
GLFWbool maximized;
|
|
|
|
|
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
|
|
|
|
GLFWbool renderFrameRequested;
|
|
|
|
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;
|
|
|
|
GLFWbool displayLinkStarted;
|
|
|
|
GLFWbool renderFrameRequested;
|
|
|
|
} _GLFWDisplayLinkNS;
|
|
|
|
|
2017-11-19 20:54:36 +03:00
|
|
|
// Cocoa-specific global data
|
|
|
|
//
|
|
|
|
typedef struct _GLFWlibraryNS
|
|
|
|
{
|
|
|
|
CGEventSourceRef eventSource;
|
|
|
|
id delegate;
|
|
|
|
GLFWbool cursorHidden;
|
|
|
|
TISInputSourceRef inputSource;
|
|
|
|
IOHIDManagerRef hidManager;
|
|
|
|
id unicodeData;
|
2018-12-26 09:59:38 +03:00
|
|
|
id helper;
|
|
|
|
id keyUpMonitor;
|
|
|
|
id keyDownMonitor;
|
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
|
|
|
short int keycodes[256];
|
|
|
|
short int scancodes[GLFW_KEY_LAST + 1];
|
|
|
|
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;
|
|
|
|
id lock;
|
|
|
|
} displayLinks;
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
} _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 _glfwInitTimerNS(void);
|
|
|
|
|
|
|
|
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-02-20 12:38:07 +03:00
|
|
|
void _glfwClearDisplayLinks();
|
2019-02-28 11:29:49 +03:00
|
|
|
void _glfwCocoaPostEmptyEvent(short subtype, long data1, bool at_start);
|
|
|
|
void _glfwDispatchTickCallback();
|