glfw/src/cocoa_init.m

143 lines
3.7 KiB
Mathematica
Raw Normal View History

2010-09-07 15:34:51 +00:00
//========================================================================
// GLFW 3.1 OS X - www.glfw.org
2010-09-07 15:34:51 +00:00
//------------------------------------------------------------------------
// 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.
//
//========================================================================
#include "internal.h"
#include <sys/param.h> // For MAXPATHLEN
2010-09-16 03:09:36 +00:00
2012-03-07 14:04:14 +00:00
#if defined(_GLFW_USE_CHDIR)
2013-02-04 12:22:10 +00:00
// Change to our application bundle's resources directory, if present
//
static void changeToResourcesDirectory(void)
{
char resourcesPath[MAXPATHLEN];
CFBundleRef bundle = CFBundleGetMainBundle();
if (!bundle)
return;
2010-09-15 16:57:25 +00:00
CFURLRef resourcesURL = CFBundleCopyResourcesDirectoryURL(bundle);
2010-09-07 15:34:51 +00:00
CFStringRef last = CFURLCopyLastPathComponent(resourcesURL);
if (CFStringCompare(CFSTR("Resources"), last, 0) != kCFCompareEqualTo)
{
CFRelease(last);
CFRelease(resourcesURL);
return;
}
2010-09-07 15:34:51 +00:00
CFRelease(last);
2010-09-07 15:34:51 +00:00
if (!CFURLGetFileSystemRepresentation(resourcesURL,
true,
(UInt8*) resourcesPath,
MAXPATHLEN))
2010-09-07 15:34:51 +00:00
{
CFRelease(resourcesURL);
return;
2010-09-07 15:34:51 +00:00
}
CFRelease(resourcesURL);
2010-09-07 15:34:51 +00:00
chdir(resourcesPath);
2010-09-07 15:34:51 +00:00
}
#endif /* _GLFW_USE_CHDIR */
2010-09-07 15:34:51 +00:00
2010-09-16 01:25:36 +00:00
//////////////////////////////////////////////////////////////////////////
////// GLFW platform API //////
//////////////////////////////////////////////////////////////////////////
2010-09-07 15:34:51 +00:00
2010-09-15 16:57:25 +00:00
int _glfwPlatformInit(void)
2010-09-07 15:34:51 +00:00
{
_glfw.ns.autoreleasePool = [[NSAutoreleasePool alloc] init];
#if defined(_GLFW_USE_CHDIR)
changeToResourcesDirectory();
#endif
_glfw.ns.eventSource = CGEventSourceCreate(kCGEventSourceStateHIDSystemState);
if (!_glfw.ns.eventSource)
return GL_FALSE;
CGEventSourceSetLocalEventsSuppressionInterval(_glfw.ns.eventSource, 0.0);
2013-06-24 12:38:00 +00:00
if (!_glfwInitContextAPI())
return GL_FALSE;
_glfwInitTimer();
_glfwInitJoysticks();
2010-09-07 15:34:51 +00:00
return GL_TRUE;
}
void _glfwPlatformTerminate(void)
2010-09-07 15:34:51 +00:00
{
if (_glfw.ns.eventSource)
{
CFRelease(_glfw.ns.eventSource);
_glfw.ns.eventSource = NULL;
}
[NSApp setDelegate:nil];
[_glfw.ns.delegate release];
_glfw.ns.delegate = nil;
[_glfw.ns.autoreleasePool release];
_glfw.ns.autoreleasePool = nil;
2010-09-07 15:34:51 +00:00
2013-04-21 20:46:35 +00:00
[_glfw.ns.cursor release];
_glfw.ns.cursor = nil;
free(_glfw.ns.clipboardString);
2011-09-18 19:05:00 +00:00
_glfwTerminateJoysticks();
_glfwTerminateContextAPI();
2010-09-07 15:34:51 +00:00
}
2010-09-15 16:57:25 +00:00
const char* _glfwPlatformGetVersionString(void)
{
const char* version = _GLFW_VERSION_NUMBER " Cocoa"
2013-02-25 14:10:43 +00:00
#if defined(_GLFW_NSGL)
" NSGL"
#endif
#if defined(_GLFW_USE_CHDIR)
" chdir"
#endif
#if defined(_GLFW_USE_MENUBAR)
" menubar"
2013-02-14 12:13:07 +00:00
#endif
#if defined(_GLFW_BUILD_DLL)
" dynamic"
#endif
;
2010-09-15 16:57:25 +00:00
return version;
}