2015-10-12 49 views
5

我正在尝试在Java/LWJGL中制作一个简单的游戏。我正在关注一个在Windows上制作的教程,并且我正在使用一个mac。我复制了他的代码以打开角色的窗口角色,并且程序立即崩溃,给我一个很长很奇怪的错误,可能与指针有关(我实际上不知道)。下面是用于创建我用一个窗口,宽度和高度的属性定义行:LWJGL:打开窗口导致程序崩溃

window = glfwCreateWindow(width, height, "Flappy Bird", NULL, NULL); 

当我在我的Mac上运行它,它给了我这个错误:

2015-10-12 13:18:38.475 java[496:31875] *** Assertion failure in + [NSUndoManager _endTopLevelGroupings], /SourceCache/Foundation/Foundation-1154/Misc.subproj/NSUndoManager.m:340 
2015-10-12 13:18:38.476 java[496:31875] +[NSUndoManager(NSInternal) _endTopLevelGroupings] is only safe to invoke on the main thread. 
2015-10-12 13:18:38.476 java[496:31875] (
0 CoreFoundation      0x00007fff98c3003c __exceptionPreprocess + 172 
1 libobjc.A.dylib      0x00007fff9620a76e objc_exception_throw + 43 
2 CoreFoundation      0x00007fff98c2fe1a +[NSException raise:format:arguments:] + 106 
3 Foundation       0x00007fff99f6199b -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195 
4 Foundation       0x00007fff99ee364f +[NSUndoManager(NSPrivate) _endTopLevelGroupings] + 156 
5 AppKit        0x00007fff96ecbb95 -[NSApplication run] + 756 
6 libglfw.dylib      0x000000010d597974 initializeAppKit + 1332 
7 libglfw.dylib      0x000000010d597035 _glfwPlatformCreateWindow + 37 
8 libglfw.dylib      0x000000010d59397b glfwCreateWindow + 443 
9 ???         0x0000000104411eee 0x0 + 4366343918 
10 ???         0x0000000104406929 0x0 + 4366297385 
11 ???         0x0000000104406929 0x0 + 4366297385 
12 ???         0x0000000104406929 0x0 + 4366297385 
13 ???         0x000000010440685a 0x0 + 4366297178 
14 ???         0x0000000104406d34 0x0 + 4366298420 
) 
2015-10-12 13:18:38.477 java[496:31875] *** Assertion failure in +[NSUndoManager _endTopLevelGroupings], /SourceCache/Foundation/Foundation-1154/Misc.subproj/NSUndoManager.m:340 
2015-10-12 13:18:38.477 java[496:31875] An uncaught exception was raised 
2015-10-12 13:18:38.477 java[496:31875] +[NSUndoManager(NSInternal) _endTopLevelGroupings] is only safe to invoke on the main thread. 
2015-10-12 13:18:38.477 java[496:31875] (
0 CoreFoundation      0x00007fff98c3003c __exceptionPreprocess + 172 
1 libobjc.A.dylib      0x00007fff9620a76e objc_exception_throw + 43 
2 CoreFoundation      0x00007fff98c2fe1a +[NSException raise:format:arguments:] + 106 
3 Foundation       0x00007fff99f6199b -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195 
4 Foundation       0x00007fff99ee364f +[NSUndoManager(NSPrivate) _endTopLevelGroupings] + 156 
5 AppKit        0x00007fff96ecbc41 -[NSApplication run] + 928 
6 libglfw.dylib      0x000000010d597974 initializeAppKit + 1332 
7 libglfw.dylib      0x000000010d597035 _glfwPlatformCreateWindow + 37 
8 libglfw.dylib      0x000000010d59397b glfwCreateWindow + 443 
9 ???         0x0000000104411eee 0x0 + 4366343918 
10 ???         0x0000000104406929 0x0 + 4366297385 
11 ???         0x0000000104406929 0x0 + 4366297385 
12 ???         0x0000000104406929 0x0 + 4366297385 
13 ???         0x000000010440685a 0x0 + 4366297178 
14 ???         0x0000000104406d34 0x0 + 4366298420 
) 
2015-10-12 13:18:38.478 java[496:31875] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '+[NSUndoManager(NSInternal) _endTopLevelGroupings] is only safe to invoke on the main thread.' 
*** First throw call stack: 
(
0 CoreFoundation      0x00007fff98c3003c __exceptionPreprocess + 172 
1 libobjc.A.dylib      0x00007fff9620a76e objc_exception_throw + 43 
2 CoreFoundation      0x00007fff98c2fe1a +[NSException raise:format:arguments:] + 106 
3 Foundation       0x00007fff99f6199b -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195 
4 Foundation       0x00007fff99ee364f +[NSUndoManager(NSPrivate) _endTopLevelGroupings] + 156 
5 AppKit        0x00007fff96ecbc41 -[NSApplication run] + 928 
6 libglfw.dylib      0x000000010d597974 initializeAppKit + 1332 
7 libglfw.dylib      0x000000010d597035 _glfwPlatformCreateWindow + 37 
8 libglfw.dylib      0x000000010d59397b glfwCreateWindow + 443 
9 ???         0x0000000104411eee 0x0 + 4366343918 
10 ???         0x0000000104406929 0x0 + 4366297385 
11 ???         0x0000000104406929 0x0 + 4366297385 
12 ???         0x0000000104406929 0x0 + 4366297385 
13 ???         0x000000010440685a 0x0 + 4366297178 
14 ???         0x0000000104406d34 0x0 + 4366298420 
) 
libc++abi.dylib: terminating with uncaught exception of type NSException 

一窗口也弹出,说:“java在使用libglfw.dylib插件时意外退出。”

我安装了LWJGL错误还是我的代码有瑕疵?谢谢您的帮助!

<terminated> 
+0

你不应该忽略所有的例外。抛出一个异常或打印一条消息,无论你现在只是返回。您还应该使用[glfwSetErrorCallback](http://javadoc.lwjgl.org/org/lwjgl/glfw/GLFW.html#glfwSetErrorCallback(org.lwjgl.glfw.GLFWErrorCallback))设置错误回调,并使用' - Dorg.lwjgl.util.Debug = TRUE;。 – javac

回答

1

如果您使用的是LWJGL 3我建议您按照Oskar的视频教程来设置您的项目和显示。

Workspace setting

Display tutorial

并尝试在你的glfwCreateWindow通话使用MemoryUtil.NULL而不是标准null

+1

'MemoryUtil.NULL'很长,'null'是一个对象,所以你不能“改用它”。 – javac