2018-01-29 16:25:32 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2022-04-25 12:06:43 +08:00
|
|
|
Copyright (c) 2021-2022 Bytedance Inc.
|
2021-10-07 18:44:34 +08:00
|
|
|
|
2022-07-09 22:23:34 +08:00
|
|
|
https://axis-project.github.io/
|
2021-12-28 16:06:23 +08:00
|
|
|
|
2018-01-29 16:25:32 +08:00
|
|
|
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:
|
2021-12-28 16:06:23 +08:00
|
|
|
|
2018-01-29 16:25:32 +08:00
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
2021-12-28 16:06:23 +08:00
|
|
|
|
2018-01-29 16:25:32 +08:00
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-03-10 15:32:48 +08:00
|
|
|
#include "cocos2d.h"
|
|
|
|
#include "AppDelegate.h"
|
2016-03-21 21:04:06 +08:00
|
|
|
#include "scripting/lua-bindings/manual/CCLuaEngine.h"
|
2014-03-10 15:32:48 +08:00
|
|
|
#include "lua_assetsmanager_test_sample.h"
|
2016-03-21 21:04:06 +08:00
|
|
|
#include "scripting/lua-bindings/manual/lua_module_register.h"
|
2014-10-10 09:49:25 +08:00
|
|
|
#include "lua_test_bindings.h"
|
2014-03-10 15:32:48 +08:00
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
USING_NS_AX;
|
2014-03-10 15:32:48 +08:00
|
|
|
|
2021-12-28 16:06:23 +08:00
|
|
|
AppDelegate::AppDelegate() {}
|
2014-03-10 15:32:48 +08:00
|
|
|
|
2021-12-28 16:06:23 +08:00
|
|
|
AppDelegate::~AppDelegate() {}
|
2014-03-10 15:32:48 +08:00
|
|
|
|
2014-08-22 16:22:16 +08:00
|
|
|
void AppDelegate::initGLContextAttrs()
|
2014-08-21 09:35:32 +08:00
|
|
|
{
|
2018-01-19 09:28:22 +08:00
|
|
|
GLContextAttrs glContextAttrs = {8, 8, 8, 8, 24, 8, 0};
|
2019-07-02 09:29:20 +08:00
|
|
|
|
2014-08-22 16:22:16 +08:00
|
|
|
GLView::setGLContextAttrs(glContextAttrs);
|
2014-08-21 09:35:32 +08:00
|
|
|
}
|
|
|
|
|
2014-03-10 15:32:48 +08:00
|
|
|
bool AppDelegate::applicationDidFinishLaunching()
|
|
|
|
{
|
|
|
|
// register lua engine
|
|
|
|
LuaEngine* pEngine = LuaEngine::getInstance();
|
|
|
|
ScriptEngineManager::getInstance()->setScriptEngine(pEngine);
|
2014-08-04 17:11:57 +08:00
|
|
|
|
2014-06-06 17:17:43 +08:00
|
|
|
LuaStack* stack = pEngine->getLuaStack();
|
2021-12-28 16:06:23 +08:00
|
|
|
lua_State* L = stack->getLuaState();
|
|
|
|
|
2014-08-04 17:11:57 +08:00
|
|
|
lua_module_register(L);
|
2014-10-19 22:20:34 +08:00
|
|
|
|
2014-08-04 09:39:42 +08:00
|
|
|
lua_getglobal(L, "_G");
|
2021-12-28 16:06:23 +08:00
|
|
|
if (lua_istable(L, -1)) // stack:...,_G,
|
2014-08-04 09:39:42 +08:00
|
|
|
{
|
2021-12-28 16:06:23 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32 || CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || \
|
|
|
|
CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
|
2014-08-04 09:39:42 +08:00
|
|
|
register_assetsmanager_test_sample(L);
|
2014-10-19 22:20:34 +08:00
|
|
|
#endif
|
2014-10-10 09:49:25 +08:00
|
|
|
register_test_binding(L);
|
2014-08-04 09:39:42 +08:00
|
|
|
}
|
|
|
|
lua_pop(L, 1);
|
2014-10-19 22:20:34 +08:00
|
|
|
|
2016-10-08 14:44:18 +08:00
|
|
|
FileUtils::getInstance()->addSearchPath("src");
|
2016-09-28 16:19:20 +08:00
|
|
|
FileUtils::getInstance()->addSearchPath("res");
|
|
|
|
pEngine->executeScriptFile("controller.lua");
|
2014-05-08 14:58:53 +08:00
|
|
|
|
2014-03-10 15:32:48 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-25 22:18:57 +08:00
|
|
|
// This function will be called when the app is inactive. Note, when receiving a phone call it is invoked.
|
2014-03-10 15:32:48 +08:00
|
|
|
void AppDelegate::applicationDidEnterBackground()
|
|
|
|
{
|
|
|
|
Director::getInstance()->stopAnimation();
|
|
|
|
}
|
|
|
|
|
|
|
|
// this function will be called when the app is active again
|
|
|
|
void AppDelegate::applicationWillEnterForeground()
|
|
|
|
{
|
|
|
|
Director::getInstance()->startAnimation();
|
|
|
|
}
|