2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
2011-03-06 00:46:39 +00:00
|
|
|
// GLFW - An OpenGL library
|
2012-11-27 14:02:26 +00:00
|
|
|
// Platform: Cocoa
|
2010-09-07 15:41:26 +00:00
|
|
|
// API Version: 3.0
|
2010-09-07 15:34:51 +00:00
|
|
|
// WWW: http://www.glfw.org/
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Copyright (c) 2009-2010 Camilla Berglund <elmindreda@elmindreda.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.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
2012-11-27 14:02:26 +00:00
|
|
|
#ifndef _cocoa_platform_h_
|
|
|
|
#define _cocoa_platform_h_
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
|
2010-09-15 16:57:25 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
#if defined(__OBJC__)
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#else
|
2012-03-05 15:27:53 +00:00
|
|
|
#include <ApplicationServices/ApplicationServices.h>
|
2010-09-15 16:57:25 +00:00
|
|
|
typedef void* id;
|
2010-09-07 15:34:51 +00:00
|
|
|
#endif
|
|
|
|
|
2012-11-27 14:02:26 +00:00
|
|
|
#if defined(_GLFW_NSGL)
|
|
|
|
#include "nsgl_platform.h"
|
2012-12-02 18:01:20 +00:00
|
|
|
#else
|
|
|
|
#error "No supported context creation API selected"
|
2012-11-27 14:02:26 +00:00
|
|
|
#endif
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-02-14 18:07:17 +00:00
|
|
|
#include <IOKit/IOKitLib.h>
|
|
|
|
#include <IOKit/IOCFPlugIn.h>
|
|
|
|
#include <IOKit/hid/IOHIDLib.h>
|
|
|
|
#include <IOKit/hid/IOHIDKeys.h>
|
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
#define _GLFW_PLATFORM_WINDOW_STATE _GLFWwindowNS ns
|
|
|
|
#define _GLFW_PLATFORM_LIBRARY_WINDOW_STATE _GLFWlibraryNS ns
|
|
|
|
#define _GLFW_PLATFORM_MONITOR_STATE _GLFWmonitorNS ns
|
2010-09-15 16:57:25 +00:00
|
|
|
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
// GLFW platform specific types
|
|
|
|
//========================================================================
|
|
|
|
|
2010-10-14 15:55:45 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
//------------------------------------------------------------------------
|
2010-09-15 16:57:25 +00:00
|
|
|
// Platform-specific window structure
|
2010-09-07 15:34:51 +00:00
|
|
|
//------------------------------------------------------------------------
|
2010-09-15 16:57:25 +00:00
|
|
|
typedef struct _GLFWwindowNS
|
|
|
|
{
|
2013-01-02 15:48:02 +00:00
|
|
|
id object;
|
|
|
|
id delegate;
|
|
|
|
id view;
|
|
|
|
unsigned int modifierFlags;
|
2010-09-15 16:57:25 +00:00
|
|
|
} _GLFWwindowNS;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
|
2013-02-14 18:07:17 +00:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Joystick information & state
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int present;
|
|
|
|
char name[256];
|
|
|
|
|
|
|
|
IOHIDDeviceInterface** interface;
|
|
|
|
|
|
|
|
int numAxes;
|
|
|
|
int numButtons;
|
|
|
|
int numHats;
|
|
|
|
|
|
|
|
CFMutableArrayRef axes;
|
|
|
|
CFMutableArrayRef buttons;
|
|
|
|
CFMutableArrayRef hats;
|
|
|
|
|
|
|
|
} _GLFWjoy;
|
|
|
|
|
|
|
|
|
2010-09-15 16:57:25 +00:00
|
|
|
//------------------------------------------------------------------------
|
2012-04-22 13:53:02 +00:00
|
|
|
// Platform-specific library global data for Cocoa
|
2010-09-15 16:57:25 +00:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
typedef struct _GLFWlibraryNS
|
|
|
|
{
|
2010-09-07 15:34:51 +00:00
|
|
|
struct {
|
2013-01-02 15:48:02 +00:00
|
|
|
double base;
|
|
|
|
double resolution;
|
2010-09-15 16:57:25 +00:00
|
|
|
} timer;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-03-20 14:23:35 +00:00
|
|
|
CGEventSourceRef eventSource;
|
2013-01-02 15:48:02 +00:00
|
|
|
id delegate;
|
|
|
|
id autoreleasePool;
|
2012-04-11 22:51:58 +00:00
|
|
|
|
2013-01-02 15:48:02 +00:00
|
|
|
char* clipboardString;
|
2013-02-14 18:07:17 +00:00
|
|
|
|
|
|
|
_GLFWjoy joysticks[GLFW_JOYSTICK_LAST + 1];
|
2010-09-15 16:57:25 +00:00
|
|
|
} _GLFWlibraryNS;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
|
2012-09-12 18:44:08 +00:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Platform-specific monitor structure
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
typedef struct _GLFWmonitorNS
|
|
|
|
{
|
2012-09-13 14:30:01 +00:00
|
|
|
CGDirectDisplayID displayID;
|
2013-01-02 16:29:24 +00:00
|
|
|
CGDisplayModeRef previousMode;
|
2012-09-12 18:44:08 +00:00
|
|
|
|
|
|
|
} _GLFWmonitorNS;
|
|
|
|
|
|
|
|
|
2011-09-18 19:05:00 +00:00
|
|
|
//========================================================================
|
|
|
|
// Prototypes for platform specific internal functions
|
|
|
|
//========================================================================
|
|
|
|
|
2012-02-09 00:53:26 +00:00
|
|
|
// Time
|
|
|
|
void _glfwInitTimer(void);
|
|
|
|
|
2011-09-18 19:05:00 +00:00
|
|
|
// Joystick input
|
|
|
|
void _glfwInitJoysticks(void);
|
|
|
|
void _glfwTerminateJoysticks(void);
|
|
|
|
|
2012-03-06 01:21:01 +00:00
|
|
|
// Fullscreen
|
2013-01-02 16:29:24 +00:00
|
|
|
GLboolean _glfwSetVideoMode(_GLFWmonitor* monitor, int* width, int* height, int* bpp);
|
|
|
|
void _glfwRestoreVideoMode(_GLFWmonitor* monitor);
|
2011-09-18 19:05:00 +00:00
|
|
|
|
2012-08-13 14:03:44 +00:00
|
|
|
// OpenGL support
|
2013-01-15 19:49:29 +00:00
|
|
|
int _glfwInitContextAPI(void);
|
|
|
|
void _glfwTerminateContextAPI(void);
|
2012-12-29 23:58:18 +00:00
|
|
|
int _glfwCreateContext(_GLFWwindow* window,
|
|
|
|
const _GLFWwndconfig* wndconfig,
|
|
|
|
const _GLFWfbconfig* fbconfig);
|
|
|
|
void _glfwDestroyContext(_GLFWwindow* window);
|
2012-08-13 14:03:44 +00:00
|
|
|
|
2012-11-27 14:02:26 +00:00
|
|
|
#endif // _cocoa_platform_h_
|