cocos2dx onpause崩

原文:http://discuss.cocos2d-x.org/t/bug-in-cocos2dxrenderer-cpp/8619


I encountered a crash issue that,when you tried to install apk and start it from Eclipse,the game will surely crash with an assertion error if your phone’s screen is off. Here is the reason I found:
When the phone screen is off,android will call onCreate,onResume,then onPause in order. While in onPause,Cocos2dxRenderer.nativeOnPause will be called. So see the code below:

JNIEXPORT void JNICALL Java_org_cocos2dx_lib_Cocos2dxRenderer_nativeOnPause() {
CCApplication::sharedApplication()->applicationDidEnterBackground();
CCNotificationCenter::sharednotificationCenter()->postNotification(EVENT_COME_TO_BACKGROUND,NULL);
}

Cocos2dxRenderer.nativeOnPause will attempt to call applicationDidEnterBackground() of the current application. But it is NULL: because while the screen is off,android won’t draw anything so that Cocos2dxRenderer.nativeInit isn’t called,and AppDelegate won’t be created.
But why the app don’t crash in onResume? I compared the native code of Cocos2dxRenderer.onResume:

JNIEXPORT void JNICALL Java_org_cocos2dx_lib_Cocos2dxRenderer_nativeOnResume() {
if (CCDirector::sharedDirector()->getopenGLView()) {
CCApplication::sharedApplication()->applicationWillEnterForeground();
}
}

I found a check before calling applicationWillEnterForeground(),this prevent calling applicationWillEnterForeground() while the application is not created.

I wonder why the implementation won’t check getopenGLView() in onPause but in onResume only?

The issue above won’t effect much for the end-user,because they always launch your game with screen on. But it might lead to crash on some auto test system

相关文章

    本文实践自 RayWenderlich、Ali Hafizji 的文章《...
Cocos-code-ide使用入门学习地点:杭州滨江邮箱:appdevzw@1...
第一次開始用手游引擎挺激动!!!进入正题。下载资源1:从C...
    Cocos2d-x是一款强大的基于OpenGLES的跨平台游戏开发...
1.  来源 QuickV3sample项目中的2048样例游戏,以及最近《...
   Cocos2d-x3.x已经支持使用CMake来进行构建了,这里尝试...