/**************************************************************************** Copyright (c) 2013-2016 Chukong Technologies Inc. Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. Copyright (c) 2019-present Axmol Engine contributors (see AUTHORS.md). https://axmol.dev/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ****************************************************************************/ #include "platform/android/Application-android.h" #include "platform/android/GLViewImpl-android.h" #include "base/Director.h" #include "base/EventCustom.h" #include "base/EventType.h" #include "base/EventDispatcher.h" #include "renderer/backend/DriverBase.h" #include "renderer/TextureCache.h" #include "platform/android/jni/JniHelper.h" #include #include #include #define LOG_TAG "main" #define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__) void axmol_android_app_init(JNIEnv* env) __attribute__((weak)); USING_NS_AX; extern "C" { // ndk break compatibility, refer to https://github.com/cocos2d/cocos2d-x/issues/16267 for detail information // should remove it when using NDK r13 since NDK r13 will add back bsd_signal() #if __ANDROID_API__ > 19 # include # include typedef __sighandler_t (*bsd_signal_func_t)(int, __sighandler_t); bsd_signal_func_t bsd_signal_func = NULL; __sighandler_t bsd_signal(int s, __sighandler_t f) { if (bsd_signal_func == NULL) { // For now (up to Android 7.0) this is always available bsd_signal_func = (bsd_signal_func_t)dlsym(RTLD_DEFAULT, "bsd_signal"); if (bsd_signal_func == NULL) { __android_log_assert("", "bsd_signal_wrapper", "bsd_signal symbol not found!"); } } return bsd_signal_func(s, f); } #endif // __ANDROID_API__ > 19 JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM* vm, void* reserved) { JniHelper::setJavaVM(vm); axmol_android_app_init(JniHelper::getEnv()); return JNI_VERSION_1_4; } JNIEXPORT void JNICALL Java_org_axmol_lib_AxmolRenderer_nativeInit(JNIEnv*, jclass, jint w, jint h) { GLViewImpl::loadGLES2(); auto director = ax::Director::getInstance(); auto glView = director->getGLView(); if (!glView) { glView = ax::GLViewImpl::create("Android app"); glView->setFrameSize(w, h); director->setGLView(glView); ax::Application::getInstance()->run(); } else { backend::DriverBase::getInstance()->resetState(); ax::Director::getInstance()->resetMatrixStack(); ax::EventCustom recreatedEvent(EVENT_RENDERER_RECREATED); director->getEventDispatcher()->dispatchEvent(&recreatedEvent, true); director->setGLDefaultValues(); #if AX_ENABLE_CACHE_TEXTURE_DATA ax::VolatileTextureMgr::reloadAllTextures(); #endif } } JNIEXPORT void JNICALL Java_org_axmol_lib_AxmolRenderer_nativeOnContextLost(JNIEnv*, jclass) { #if AX_ENABLE_RESTART_APPLICATION_ON_CONTEXT_LOST auto director = ax::Director::getInstance(); ax::EventCustom recreatedEvent(EVENT_APP_RESTARTING); director->getEventDispatcher()->dispatchEvent(&recreatedEvent, true); // Pop to root scene, replace with an empty scene, and clear all cached data before restarting director->popToRootScene(); auto rootScene = Scene::create(); director->replaceScene(rootScene); director->purgeCachedData(); JniHelper::callStaticVoidMethod("org/axmol/lib/AxmolEngine", "restartProcess"); #endif } JNIEXPORT jintArray JNICALL Java_org_axmol_lib_AxmolActivity_getGLContextAttrs(JNIEnv* env, jclass) { ax::Application::getInstance()->initGLContextAttrs(); GLContextAttrs _glContextAttrs = GLView::getGLContextAttrs(); int tmp[7] = {_glContextAttrs.redBits, _glContextAttrs.greenBits, _glContextAttrs.blueBits, _glContextAttrs.alphaBits, _glContextAttrs.depthBits, _glContextAttrs.stencilBits, _glContextAttrs.multisamplingCount}; jintArray glContextAttrsJava = env->NewIntArray(7); env->SetIntArrayRegion(glContextAttrsJava, 0, 7, tmp); return glContextAttrsJava; } JNIEXPORT void JNICALL Java_org_axmol_lib_AxmolRenderer_nativeOnSurfaceChanged(JNIEnv*, jclass, jint w, jint h) { ax::Application::getInstance()->applicationScreenSizeChanged(w, h); } }