axmol/core/base/Director.cpp

1567 lines
42 KiB
C++
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2008-2010 Ricardo Quesada
Copyright (c) 2010-2013 cocos2d-x.org
Copyright (c) 2011 Zynga Inc.
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).
2019-11-23 20:27:39 +08:00
2022-10-01 16:24:52 +08:00
https://axmolengine.github.io/
2019-11-23 20:27:39 +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:
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.
****************************************************************************/
// cocos2d includes
#include "base/Director.h"
2019-11-23 20:27:39 +08:00
// standard includes
#include <string>
#include "2d/SpriteFrameCache.h"
#include "platform/FileUtils.h"
2019-11-23 20:27:39 +08:00
#include "2d/ActionManager.h"
#include "2d/FontFNT.h"
#include "2d/FontAtlasCache.h"
#include "2d/AnimationCache.h"
#include "2d/Transition.h"
#include "2d/FontFreeType.h"
#include "2d/LabelAtlas.h"
#include "renderer/TextureCache.h"
#include "renderer/Renderer.h"
#include "renderer/RenderState.h"
#include "2d/Camera.h"
#include "base/UserDefault.h"
#include "base/Utils.h"
#include "base/FPSImages.h"
#include "base/Scheduler.h"
#include "base/Macros.h"
#include "base/EventDispatcher.h"
#include "base/EventCustom.h"
#include "base/Console.h"
#include "base/AutoreleasePool.h"
#include "base/Configuration.h"
#include "base/AsyncTaskPool.h"
2019-11-23 20:27:39 +08:00
#include "base/ObjectFactory.h"
#include "platform/Application.h"
2022-01-03 11:34:58 +08:00
#include "audio/AudioEngine.h"
2019-11-23 20:27:39 +08:00
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_SCRIPT_BINDING
# include "base/ScriptSupport.h"
2019-11-23 20:27:39 +08:00
#endif
using namespace std;
NS_AX_BEGIN
2019-11-23 20:27:39 +08:00
// FIXME: it should be a Director ivar. Move it there once support for multiple directors is added
// singleton stuff
2021-12-25 10:04:45 +08:00
static Director* s_SharedDirector = nullptr;
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
#define kDefaultFPS 60 // 60 frames per second
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
const char* Director::EVENT_BEFORE_SET_NEXT_SCENE = "director_before_set_next_scene";
const char* Director::EVENT_AFTER_SET_NEXT_SCENE = "director_after_set_next_scene";
const char* Director::EVENT_PROJECTION_CHANGED = "director_projection_changed";
const char* Director::EVENT_AFTER_DRAW = "director_after_draw";
const char* Director::EVENT_AFTER_VISIT = "director_after_visit";
const char* Director::EVENT_BEFORE_UPDATE = "director_before_update";
const char* Director::EVENT_AFTER_UPDATE = "director_after_update";
const char* Director::EVENT_RESET = "director_reset";
const char* Director::EVENT_BEFORE_DRAW = "director_before_draw";
2019-11-23 20:27:39 +08:00
Director* Director::getInstance()
{
if (!s_SharedDirector)
{
2021-12-08 00:11:53 +08:00
s_SharedDirector = new Director;
2022-07-16 10:43:05 +08:00
AXASSERT(s_SharedDirector, "FATAL: Not enough memory");
2019-11-23 20:27:39 +08:00
s_SharedDirector->init();
}
return s_SharedDirector;
}
2021-12-25 10:04:45 +08:00
Director::Director() {}
2019-11-23 20:27:39 +08:00
bool Director::init()
{
setDefaultValues();
_scenesStack.reserve(15);
// FPS
_lastUpdate = std::chrono::steady_clock::now();
2021-12-25 10:04:45 +08:00
2021-12-08 00:11:53 +08:00
_console = new Console;
2019-11-23 20:27:39 +08:00
// scheduler
2021-12-08 00:11:53 +08:00
_scheduler = new Scheduler();
2019-11-23 20:27:39 +08:00
// action manager
2021-12-08 00:11:53 +08:00
_actionManager = new ActionManager();
2019-11-23 20:27:39 +08:00
_scheduler->scheduleUpdate(_actionManager, Scheduler::PRIORITY_SYSTEM, false);
2021-12-08 00:11:53 +08:00
_eventDispatcher = new EventDispatcher();
2021-12-25 10:04:45 +08:00
2021-12-08 00:11:53 +08:00
_beforeSetNextScene = new EventCustom(EVENT_BEFORE_SET_NEXT_SCENE);
2019-11-23 20:27:39 +08:00
_beforeSetNextScene->setUserData(this);
2021-12-08 00:11:53 +08:00
_afterSetNextScene = new EventCustom(EVENT_AFTER_SET_NEXT_SCENE);
2019-11-23 20:27:39 +08:00
_afterSetNextScene->setUserData(this);
2021-12-08 00:11:53 +08:00
_eventAfterDraw = new EventCustom(EVENT_AFTER_DRAW);
2019-11-23 20:27:39 +08:00
_eventAfterDraw->setUserData(this);
2021-12-08 00:11:53 +08:00
_eventBeforeDraw = new EventCustom(EVENT_BEFORE_DRAW);
2019-11-23 20:27:39 +08:00
_eventBeforeDraw->setUserData(this);
2021-12-08 00:11:53 +08:00
_eventAfterVisit = new EventCustom(EVENT_AFTER_VISIT);
2019-11-23 20:27:39 +08:00
_eventAfterVisit->setUserData(this);
2021-12-08 00:11:53 +08:00
_eventBeforeUpdate = new EventCustom(EVENT_BEFORE_UPDATE);
2019-11-23 20:27:39 +08:00
_eventBeforeUpdate->setUserData(this);
2021-12-08 00:11:53 +08:00
_eventAfterUpdate = new EventCustom(EVENT_AFTER_UPDATE);
2019-11-23 20:27:39 +08:00
_eventAfterUpdate->setUserData(this);
2021-12-08 00:11:53 +08:00
_eventProjectionChanged = new EventCustom(EVENT_PROJECTION_CHANGED);
2019-11-23 20:27:39 +08:00
_eventProjectionChanged->setUserData(this);
2021-12-08 00:11:53 +08:00
_eventResetDirector = new EventCustom(EVENT_RESET);
2021-12-25 10:04:45 +08:00
// init TextureCache
2019-11-23 20:27:39 +08:00
initTextureCache();
initMatrixStack();
2021-12-08 00:11:53 +08:00
_renderer = new Renderer;
2019-11-23 20:27:39 +08:00
#if AX_ENABLE_CACHE_TEXTURE_DATA
// listen the event that renderer was recreated on Android/WP8
_rendererRecreatedListener = EventListenerCustom::create(
EVENT_RENDERER_RECREATED, [this](EventCustom*) {
_isStatusLabelUpdated = true; // Force recreation of textures
});
_eventDispatcher->addEventListenerWithFixedPriority(_rendererRecreatedListener, -1);
#endif
2019-11-23 20:27:39 +08:00
return true;
}
Director::~Director()
{
2022-07-16 10:43:05 +08:00
AXLOGINFO("deallocing Director: %p", this);
#if AX_ENABLE_CACHE_TEXTURE_DATA
_eventDispatcher->removeEventListener(_rendererRecreatedListener);
_rendererRecreatedListener = nullptr;
#endif
2022-07-16 10:43:05 +08:00
AX_SAFE_RELEASE(_FPSLabel);
AX_SAFE_RELEASE(_drawnVerticesLabel);
AX_SAFE_RELEASE(_drawnBatchesLabel);
AX_SAFE_RELEASE(_runningScene);
AX_SAFE_RELEASE(_notificationNode);
AX_SAFE_RELEASE(_scheduler);
AX_SAFE_RELEASE(_actionManager);
AX_SAFE_RELEASE(_beforeSetNextScene);
AX_SAFE_RELEASE(_afterSetNextScene);
AX_SAFE_RELEASE(_eventBeforeUpdate);
AX_SAFE_RELEASE(_eventAfterUpdate);
AX_SAFE_RELEASE(_eventAfterDraw);
AX_SAFE_RELEASE(_eventBeforeDraw);
AX_SAFE_RELEASE(_eventAfterVisit);
AX_SAFE_RELEASE(_eventProjectionChanged);
AX_SAFE_RELEASE(_eventResetDirector);
2019-11-23 20:27:39 +08:00
delete _renderer;
delete _console;
2022-07-16 10:43:05 +08:00
AX_SAFE_RELEASE(_eventDispatcher);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
Configuration::destroyInstance();
ObjectFactory::destroyInstance();
s_SharedDirector = nullptr;
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_SCRIPT_BINDING
2019-11-23 20:27:39 +08:00
ScriptEngineManager::destroyInstance();
#endif
}
void Director::setDefaultValues()
{
2021-12-25 10:04:45 +08:00
Configuration* conf = Configuration::getInstance();
2019-11-23 20:27:39 +08:00
// default FPS
2022-10-01 16:24:52 +08:00
float fps = conf->getValue("axmol.fps", Value(kDefaultFPS)).asFloat();
2019-11-23 20:27:39 +08:00
_oldAnimationInterval = _animationInterval = 1.0f / fps;
// Display FPS
2022-10-01 16:24:52 +08:00
_statsDisplay = conf->getValue("axmol.display_fps", Value(false)).asBool();
2019-11-23 20:27:39 +08:00
// GL projection
2022-10-01 16:24:52 +08:00
std::string projection = conf->getValue("axmol.gl.projection", Value("3d")).asString();
2019-11-23 20:27:39 +08:00
if (projection == "3d")
_projection = Projection::_3D;
else if (projection == "2d")
_projection = Projection::_2D;
else if (projection == "custom")
_projection = Projection::CUSTOM;
else
2022-07-16 10:43:05 +08:00
AXASSERT(false, "Invalid projection value");
2019-11-23 20:27:39 +08:00
// Default pixel format for PNG images with alpha
2022-10-01 16:24:52 +08:00
std::string pixel_format = conf->getValue("axmol.texture.pixel_format_for_png", Value("rgba8888")).asString();
2019-11-23 20:27:39 +08:00
if (pixel_format == "rgba8888")
Texture2D::setDefaultAlphaPixelFormat(backend::PixelFormat::RGBA8);
2021-12-25 10:04:45 +08:00
else if (pixel_format == "rgba4444")
Texture2D::setDefaultAlphaPixelFormat(backend::PixelFormat::RGBA4);
2021-12-25 10:04:45 +08:00
else if (pixel_format == "rgba5551")
2019-11-23 20:27:39 +08:00
Texture2D::setDefaultAlphaPixelFormat(backend::PixelFormat::RGB5A1);
/* !!!Notes
** All compressed image should do PMA at texture convert tools(such as astcenc-2.2+ with -pp-premultiply)
** or GPU fragment shader
*/
// PVR v2 has alpha premultiplied ?
2022-10-01 16:24:52 +08:00
bool pvr_alpha_premultiplied = conf->getValue("axmol.texture.pvrv2_has_alpha_premultiplied", Value(false)).asBool();
Image::setCompressedImagesHavePMA(Image::CompressedImagePMAFlag::PVR, pvr_alpha_premultiplied);
// ASTC has alpha premultiplied ?
2022-10-01 16:24:52 +08:00
bool astc_alpha_premultiplied = conf->getValue("axmol.texture.astc_has_pma", Value{true}).asBool();
Image::setCompressedImagesHavePMA(Image::CompressedImagePMAFlag::ASTC, astc_alpha_premultiplied);
// ETC2 has alpha premultiplied ?
// Note: no suitable tools(etc2comp, Mali Texture Compression Tool, PVRTexTool) support do PMA currently, so set etc2 PMA default to `false`
2022-10-01 16:24:52 +08:00
bool etc2_alpha_premultiplied = conf->getValue("axmol.texture.etc2_has_pma", Value{false}).asBool();
Image::setCompressedImagesHavePMA(Image::CompressedImagePMAFlag::ETC2, etc2_alpha_premultiplied);
2019-11-23 20:27:39 +08:00
}
void Director::setGLDefaultValues()
{
// This method SHOULD be called only after glView_ was initialized
AXASSERT(_glView, "opengl view should not be null");
2019-11-23 20:27:39 +08:00
_renderer->setDepthTest(false);
_renderer->setDepthCompareFunction(backend::CompareFunction::LESS_EQUAL);
setProjection(_projection);
}
// Draw the Scene
void Director::drawScene()
{
_renderer->beginFrame();
2019-11-23 20:27:39 +08:00
// calculate "global" dt
calculateDeltaTime();
2021-12-25 10:04:45 +08:00
if (_glView)
2019-11-23 20:27:39 +08:00
{
_glView->pollEvents();
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
// tick before glClear: issue #533
if (!_paused)
2019-11-23 20:27:39 +08:00
{
_eventDispatcher->dispatchEvent(_eventBeforeUpdate);
_scheduler->update(_deltaTime);
_eventDispatcher->dispatchEvent(_eventAfterUpdate);
}
_renderer->clear(ClearFlag::ALL, _clearColor, 1, 0, -10000.0);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
_eventDispatcher->dispatchEvent(_eventBeforeDraw);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/* to avoid flickr, nextScene MUST be here: after tick and before draw.
* FIXME: Which bug is this one. It seems that it can't be reproduced with v0.9
*/
if (_nextScene)
{
setNextScene();
}
pushMatrix(MATRIX_STACK_TYPE::MATRIX_STACK_MODELVIEW);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
if (_runningScene)
{
2022-07-16 10:43:05 +08:00
#if (AX_USE_PHYSICS || (AX_USE_3D_PHYSICS && AX_ENABLE_BULLET_INTEGRATION) || AX_USE_NAVMESH)
2019-11-23 20:27:39 +08:00
_runningScene->stepPhysicsAndNavigation(_deltaTime);
#endif
2021-12-25 10:04:45 +08:00
// clear draw stats
2019-11-23 20:27:39 +08:00
_renderer->clearDrawStats();
2021-12-25 10:04:45 +08:00
// render the scene
if (_glView)
_glView->renderScene(_runningScene, _renderer);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
_eventDispatcher->dispatchEvent(_eventAfterVisit);
}
// draw the notifications node
if (_notificationNode)
{
_notificationNode->visit(_renderer, Mat4::IDENTITY, 0);
}
updateFrameRate();
2021-12-25 10:04:45 +08:00
if (_statsDisplay)
2019-11-23 20:27:39 +08:00
{
2022-07-16 10:43:05 +08:00
#if !AX_STRIP_FPS
2019-11-23 20:27:39 +08:00
showStats();
#endif
}
2021-12-25 10:04:45 +08:00
_renderer->render();
2019-11-23 20:27:39 +08:00
_eventDispatcher->dispatchEvent(_eventAfterDraw);
popMatrix(MATRIX_STACK_TYPE::MATRIX_STACK_MODELVIEW);
_totalFrames++;
// swap buffers
if (_glView)
2019-11-23 20:27:39 +08:00
{
_glView->swapBuffers();
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
_renderer->endFrame();
if (_statsDisplay)
2019-11-23 20:27:39 +08:00
{
2022-07-16 10:43:05 +08:00
#if !AX_STRIP_FPS
2019-11-23 20:27:39 +08:00
calculateMPF();
#endif
}
}
void Director::calculateDeltaTime()
{
// new delta time. Re-fixed issue #1277
if (_nextDeltaTimeZero)
{
2021-12-25 10:04:45 +08:00
_deltaTime = 0;
2019-11-23 20:27:39 +08:00
_nextDeltaTimeZero = false;
2021-12-25 10:04:45 +08:00
_lastUpdate = std::chrono::steady_clock::now();
2019-11-23 20:27:39 +08:00
}
else
{
// delta time may passed by invoke mainLoop(dt)
if (!_deltaTimePassedByCaller)
{
2021-12-25 10:04:45 +08:00
auto now = std::chrono::steady_clock::now();
_deltaTime = std::chrono::duration_cast<std::chrono::microseconds>(now - _lastUpdate).count() / 1000000.0f;
2019-11-23 20:27:39 +08:00
_lastUpdate = now;
}
_deltaTime = MAX(0, _deltaTime);
}
2022-08-08 18:02:17 +08:00
#if _AX_DEBUG
2019-11-23 20:27:39 +08:00
// If we are debugging our code, prevent big delta time
if (_deltaTime > 0.2f)
{
_deltaTime = 1 / 60.0f;
}
#endif
}
float Director::getDeltaTime() const
{
return _deltaTime;
}
void Director::setGLView(GLView* glView)
2019-11-23 20:27:39 +08:00
{
AXASSERT(glView, "opengl view should not be null");
2019-11-23 20:27:39 +08:00
if (_glView != glView)
2019-11-23 20:27:39 +08:00
{
// Configuration. Gather GPU info
2021-12-25 10:04:45 +08:00
Configuration* conf = Configuration::getInstance();
2019-11-23 20:27:39 +08:00
conf->gatherGPUInfo();
2022-07-16 10:43:05 +08:00
AXLOG("%s\n", conf->getInfo().c_str());
2019-11-23 20:27:39 +08:00
if (_glView)
_glView->release();
_glView = glView;
_glView->retain();
2019-11-23 20:27:39 +08:00
// set size
_winSizeInPoints = _glView->getDesignResolutionSize();
2019-11-23 20:27:39 +08:00
_isStatusLabelUpdated = true;
_renderer->init();
2021-12-25 10:04:45 +08:00
if (_glView)
2019-11-23 20:27:39 +08:00
{
setGLDefaultValues();
}
if (_eventDispatcher)
{
_eventDispatcher->setEnabled(true);
}
}
}
TextureCache* Director::getTextureCache() const
{
return _textureCache;
}
void Director::initTextureCache()
{
2021-12-08 00:11:53 +08:00
_textureCache = new TextureCache();
2019-11-23 20:27:39 +08:00
}
void Director::destroyTextureCache()
{
if (_textureCache)
{
_textureCache->waitForQuit();
2022-07-16 10:43:05 +08:00
AX_SAFE_RELEASE_NULL(_textureCache);
2019-11-23 20:27:39 +08:00
}
}
void Director::setViewport()
{
if (_glView)
2019-11-23 20:27:39 +08:00
{
_glView->setViewPortInPoints(0, 0, _winSizeInPoints.width, _winSizeInPoints.height);
2019-11-23 20:27:39 +08:00
}
}
void Director::setNextDeltaTimeZero(bool nextDeltaTimeZero)
{
_nextDeltaTimeZero = nextDeltaTimeZero;
}
//
// FIXME TODO
// Matrix code MUST NOT be part of the Director
// MUST BE moved outside.
// Why the Director must have this code ?
//
void Director::initMatrixStack()
{
while (!_modelViewMatrixStack.empty())
{
_modelViewMatrixStack.pop();
}
while (!_projectionMatrixStack.empty())
{
2021-12-25 10:04:45 +08:00
_projectionMatrixStack.pop();
2019-11-23 20:27:39 +08:00
}
while (!_textureMatrixStack.empty())
{
_textureMatrixStack.pop();
}
_modelViewMatrixStack.push(Mat4::IDENTITY);
_projectionMatrixStack.push(Mat4::IDENTITY);
_textureMatrixStack.push(Mat4::IDENTITY);
}
void Director::resetMatrixStack()
{
initMatrixStack();
}
void Director::popMatrix(MATRIX_STACK_TYPE type)
{
2021-12-25 10:04:45 +08:00
if (MATRIX_STACK_TYPE::MATRIX_STACK_MODELVIEW == type)
2019-11-23 20:27:39 +08:00
{
_modelViewMatrixStack.pop();
}
2021-12-25 10:04:45 +08:00
else if (MATRIX_STACK_TYPE::MATRIX_STACK_PROJECTION == type)
2019-11-23 20:27:39 +08:00
{
_projectionMatrixStack.pop();
}
2021-12-25 10:04:45 +08:00
else if (MATRIX_STACK_TYPE::MATRIX_STACK_TEXTURE == type)
2019-11-23 20:27:39 +08:00
{
_textureMatrixStack.pop();
}
else
{
2022-07-16 10:43:05 +08:00
AXASSERT(false, "unknown matrix stack type");
2019-11-23 20:27:39 +08:00
}
}
void Director::loadIdentityMatrix(MATRIX_STACK_TYPE type)
{
2021-12-25 10:04:45 +08:00
if (MATRIX_STACK_TYPE::MATRIX_STACK_MODELVIEW == type)
2019-11-23 20:27:39 +08:00
{
_modelViewMatrixStack.top() = Mat4::IDENTITY;
}
2021-12-25 10:04:45 +08:00
else if (MATRIX_STACK_TYPE::MATRIX_STACK_PROJECTION == type)
2019-11-23 20:27:39 +08:00
{
_projectionMatrixStack.top() = Mat4::IDENTITY;
}
2021-12-25 10:04:45 +08:00
else if (MATRIX_STACK_TYPE::MATRIX_STACK_TEXTURE == type)
2019-11-23 20:27:39 +08:00
{
_textureMatrixStack.top() = Mat4::IDENTITY;
}
else
{
2022-07-16 10:43:05 +08:00
AXASSERT(false, "unknown matrix stack type");
2019-11-23 20:27:39 +08:00
}
}
void Director::loadMatrix(MATRIX_STACK_TYPE type, const Mat4& mat)
{
2021-12-25 10:04:45 +08:00
if (MATRIX_STACK_TYPE::MATRIX_STACK_MODELVIEW == type)
2019-11-23 20:27:39 +08:00
{
_modelViewMatrixStack.top() = mat;
}
2021-12-25 10:04:45 +08:00
else if (MATRIX_STACK_TYPE::MATRIX_STACK_PROJECTION == type)
2019-11-23 20:27:39 +08:00
{
_projectionMatrixStack.top() = mat;
}
2021-12-25 10:04:45 +08:00
else if (MATRIX_STACK_TYPE::MATRIX_STACK_TEXTURE == type)
2019-11-23 20:27:39 +08:00
{
_textureMatrixStack.top() = mat;
}
else
{
2022-07-16 10:43:05 +08:00
AXASSERT(false, "unknown matrix stack type");
2019-11-23 20:27:39 +08:00
}
}
void Director::multiplyMatrix(MATRIX_STACK_TYPE type, const Mat4& mat)
{
2021-12-25 10:04:45 +08:00
if (MATRIX_STACK_TYPE::MATRIX_STACK_MODELVIEW == type)
2019-11-23 20:27:39 +08:00
{
_modelViewMatrixStack.top() *= mat;
}
2021-12-25 10:04:45 +08:00
else if (MATRIX_STACK_TYPE::MATRIX_STACK_PROJECTION == type)
2019-11-23 20:27:39 +08:00
{
_projectionMatrixStack.top() *= mat;
}
2021-12-25 10:04:45 +08:00
else if (MATRIX_STACK_TYPE::MATRIX_STACK_TEXTURE == type)
2019-11-23 20:27:39 +08:00
{
_textureMatrixStack.top() *= mat;
}
else
{
2022-07-16 10:43:05 +08:00
AXASSERT(false, "unknown matrix stack type");
2019-11-23 20:27:39 +08:00
}
}
void Director::pushMatrix(MATRIX_STACK_TYPE type)
{
2021-12-25 10:04:45 +08:00
if (type == MATRIX_STACK_TYPE::MATRIX_STACK_MODELVIEW)
2019-11-23 20:27:39 +08:00
{
_modelViewMatrixStack.push(_modelViewMatrixStack.top());
}
2021-12-25 10:04:45 +08:00
else if (type == MATRIX_STACK_TYPE::MATRIX_STACK_PROJECTION)
2019-11-23 20:27:39 +08:00
{
_projectionMatrixStack.push(_projectionMatrixStack.top());
}
2021-12-25 10:04:45 +08:00
else if (type == MATRIX_STACK_TYPE::MATRIX_STACK_TEXTURE)
2019-11-23 20:27:39 +08:00
{
_textureMatrixStack.push(_textureMatrixStack.top());
}
else
{
2022-07-16 10:43:05 +08:00
AXASSERT(false, "unknown matrix stack type");
2019-11-23 20:27:39 +08:00
}
}
const Mat4& Director::getMatrix(MATRIX_STACK_TYPE type) const
{
2021-12-25 10:04:45 +08:00
if (type == MATRIX_STACK_TYPE::MATRIX_STACK_MODELVIEW)
2019-11-23 20:27:39 +08:00
{
return _modelViewMatrixStack.top();
}
2021-12-25 10:04:45 +08:00
else if (type == MATRIX_STACK_TYPE::MATRIX_STACK_PROJECTION)
2019-11-23 20:27:39 +08:00
{
return _projectionMatrixStack.top();
}
2021-12-25 10:04:45 +08:00
else if (type == MATRIX_STACK_TYPE::MATRIX_STACK_TEXTURE)
2019-11-23 20:27:39 +08:00
{
return _textureMatrixStack.top();
}
2022-07-16 10:43:05 +08:00
AXASSERT(false, "unknown matrix stack type, will return modelview matrix instead");
2021-12-25 10:04:45 +08:00
return _modelViewMatrixStack.top();
2019-11-23 20:27:39 +08:00
}
void Director::setProjection(Projection projection)
{
2021-10-23 23:27:14 +08:00
Vec2 size = _winSizeInPoints;
2019-11-23 20:27:39 +08:00
if (size.width == 0 || size.height == 0)
{
2022-10-01 16:24:52 +08:00
AXLOGERROR("axmol: warning, Director::setProjection() failed because size is 0");
2019-11-23 20:27:39 +08:00
return;
}
setViewport();
switch (projection)
{
2021-12-25 10:04:45 +08:00
case Projection::_2D:
{
Mat4 orthoMatrix;
Mat4::createOrthographicOffCenter(0, size.width, 0, size.height, -1024, 1024, &orthoMatrix);
loadMatrix(MATRIX_STACK_TYPE::MATRIX_STACK_PROJECTION, orthoMatrix);
loadIdentityMatrix(MATRIX_STACK_TYPE::MATRIX_STACK_MODELVIEW);
break;
}
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
case Projection::_3D:
{
float zeye = this->getZEye();
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
Mat4 matrixPerspective, matrixLookup;
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
// issue #1334
Mat4::createPerspective(60, (float)size.width / size.height, 10, zeye + size.height / 2, &matrixPerspective);
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
Vec3 eye(size.width / 2, size.height / 2, zeye), center(size.width / 2, size.height / 2, 0.0f),
up(0.0f, 1.0f, 0.0f);
Mat4::createLookAt(eye, center, up, &matrixLookup);
Mat4 proj3d = matrixPerspective * matrixLookup;
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
loadMatrix(MATRIX_STACK_TYPE::MATRIX_STACK_PROJECTION, proj3d);
loadIdentityMatrix(MATRIX_STACK_TYPE::MATRIX_STACK_MODELVIEW);
break;
}
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
case Projection::CUSTOM:
// Projection Delegate is no longer needed
// since the event "PROJECTION CHANGED" is emitted
break;
default:
2022-10-01 16:24:52 +08:00
AXLOG("axmol: Director: unrecognized projection");
2021-12-25 10:04:45 +08:00
break;
2019-11-23 20:27:39 +08:00
}
_projection = projection;
_eventDispatcher->dispatchEvent(_eventProjectionChanged);
}
void Director::purgeCachedData()
{
FontFNT::purgeCachedData();
FontAtlasCache::purgeCachedData();
if (s_SharedDirector->getGLView())
2019-11-23 20:27:39 +08:00
{
SpriteFrameCache::getInstance()->removeUnusedSpriteFrames();
_textureCache->removeUnusedTextures();
// Note: some tests such as ActionsTest are leaking refcounted textures
// There should be no test textures left in the cache
log("%s\n", _textureCache->getCachedTextureInfo().c_str());
}
FileUtils::getInstance()->purgeCachedEntries();
}
float Director::getZEye() const
{
2021-12-25 10:04:45 +08:00
return (_winSizeInPoints.height / 1.154700538379252f); //(2 * tanf(M_PI/6))
2019-11-23 20:27:39 +08:00
}
void Director::setClearColor(const Color4F& clearColor)
{
_clearColor = clearColor;
}
2021-12-25 10:04:45 +08:00
static void GLToClipTransform(Mat4* transformOut)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
if (nullptr == transformOut)
return;
2019-11-23 20:27:39 +08:00
Director* director = Director::getInstance();
2022-07-16 10:43:05 +08:00
AXASSERT(nullptr != director, "Director is null when setting matrix stack");
2019-11-23 20:27:39 +08:00
2020-08-28 15:01:25 +08:00
auto& projection = director->getMatrix(MATRIX_STACK_TYPE::MATRIX_STACK_PROJECTION);
2021-12-25 10:04:45 +08:00
auto& modelview = director->getMatrix(MATRIX_STACK_TYPE::MATRIX_STACK_MODELVIEW);
*transformOut = projection * modelview;
2019-11-23 20:27:39 +08:00
}
Vec2 Director::convertToGL(const Vec2& uiPoint)
{
Mat4 transform;
GLToClipTransform(&transform);
Mat4 transformInv = transform.getInversed();
// Calculate z=0 using -> transform*[0, 0, 0, 1]/w
2021-12-25 10:04:45 +08:00
float zClip = transform.m[14] / transform.m[15];
2019-11-23 20:27:39 +08:00
Vec2 glSize = _glView->getDesignResolutionSize();
2021-12-25 10:04:45 +08:00
Vec4 clipCoord(2.0f * uiPoint.x / glSize.width - 1.0f, 1.0f - 2.0f * uiPoint.y / glSize.height, zClip, 1);
2019-11-23 20:27:39 +08:00
Vec4 glCoord;
2021-12-25 10:04:45 +08:00
// transformInv.transformPoint(clipCoord, &glCoord);
2019-11-23 20:27:39 +08:00
transformInv.transformVector(clipCoord, &glCoord);
float factor = 1.0f / glCoord.w;
return Vec2(glCoord.x * factor, glCoord.y * factor);
}
Vec2 Director::convertToUI(const Vec2& glPoint)
{
Mat4 transform;
GLToClipTransform(&transform);
Vec4 clipCoord;
// Need to calculate the zero depth from the transform.
Vec4 glCoord(glPoint.x, glPoint.y, 0.0, 1);
transform.transformVector(glCoord, &clipCoord);
2021-12-25 10:04:45 +08:00
/*
BUG-FIX #5506
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
a = (Vx, Vy, Vz, 1)
b = (a×M)T
Out = 1 bw(bx, by, bz)
*/
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
clipCoord.x = clipCoord.x / clipCoord.w;
clipCoord.y = clipCoord.y / clipCoord.w;
clipCoord.z = clipCoord.z / clipCoord.w;
Vec2 glSize = _glView->getDesignResolutionSize();
2019-11-23 20:27:39 +08:00
float factor = 1.0f / glCoord.w;
2021-12-25 10:04:45 +08:00
return Vec2(glSize.width * (clipCoord.x * 0.5f + 0.5f) * factor,
glSize.height * (-clipCoord.y * 0.5f + 0.5f) * factor);
2019-11-23 20:27:39 +08:00
}
2021-10-23 23:27:14 +08:00
const Vec2& Director::getWinSize() const
2019-11-23 20:27:39 +08:00
{
return _winSizeInPoints;
}
2021-10-23 23:27:14 +08:00
Vec2 Director::getWinSizeInPixels() const
2019-11-23 20:27:39 +08:00
{
2021-10-23 23:27:14 +08:00
return Vec2(_winSizeInPoints.width * _contentScaleFactor, _winSizeInPoints.height * _contentScaleFactor);
2019-11-23 20:27:39 +08:00
}
2021-10-23 23:27:14 +08:00
Vec2 Director::getVisibleSize() const
2019-11-23 20:27:39 +08:00
{
if (_glView)
2019-11-23 20:27:39 +08:00
{
return _glView->getVisibleSize();
2019-11-23 20:27:39 +08:00
}
else
{
2021-10-23 23:27:14 +08:00
return Vec2::ZERO;
2019-11-23 20:27:39 +08:00
}
}
Vec2 Director::getVisibleOrigin() const
{
if (_glView)
2019-11-23 20:27:39 +08:00
{
return _glView->getVisibleOrigin();
2019-11-23 20:27:39 +08:00
}
else
{
return Vec2::ZERO;
}
}
Rect Director::getSafeAreaRect() const
{
if (_glView)
2019-11-23 20:27:39 +08:00
{
return _glView->getSafeAreaRect();
2019-11-23 20:27:39 +08:00
}
else
{
return Rect::ZERO;
}
}
// scene management
2021-12-25 10:04:45 +08:00
void Director::runWithScene(Scene* scene)
2019-11-23 20:27:39 +08:00
{
2022-07-16 10:43:05 +08:00
AXASSERT(scene != nullptr,
2021-12-25 10:04:45 +08:00
"This command can only be used to start the Director. There is already a scene present.");
2022-07-16 10:43:05 +08:00
AXASSERT(_runningScene == nullptr, "_runningScene should be null");
2019-11-23 20:27:39 +08:00
pushScene(scene);
startAnimation();
}
2021-12-25 10:04:45 +08:00
void Director::replaceScene(Scene* scene)
2019-11-23 20:27:39 +08:00
{
2022-07-16 10:43:05 +08:00
// AXASSERT(_runningScene, "Use runWithScene: instead to start the director");
AXASSERT(scene != nullptr, "the scene should not be null");
2021-12-25 10:04:45 +08:00
if (_runningScene == nullptr)
{
2019-11-23 20:27:39 +08:00
runWithScene(scene);
return;
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
if (scene == _nextScene)
return;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
if (_nextScene)
{
if (_nextScene->isRunning())
{
_nextScene->onExit();
}
_nextScene->cleanup();
_nextScene = nullptr;
}
ssize_t index = _scenesStack.size() - 1;
_sendCleanupToScene = true;
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_GC_FOR_NATIVE_OBJECTS
2019-11-23 20:27:39 +08:00
auto sEngine = ScriptEngineManager::getInstance()->getScriptEngine();
if (sEngine)
{
sEngine->retainScriptObject(this, scene);
sEngine->releaseScriptObject(this, _scenesStack.at(index));
}
2022-07-16 10:43:05 +08:00
#endif // AX_ENABLE_GC_FOR_NATIVE_OBJECTS
2019-11-23 20:27:39 +08:00
_scenesStack.replace(index, scene);
_nextScene = scene;
}
2021-12-25 10:04:45 +08:00
void Director::pushScene(Scene* scene)
2019-11-23 20:27:39 +08:00
{
2022-07-16 10:43:05 +08:00
AXASSERT(scene, "the scene should not null");
2019-11-23 20:27:39 +08:00
_sendCleanupToScene = false;
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_GC_FOR_NATIVE_OBJECTS
2019-11-23 20:27:39 +08:00
auto sEngine = ScriptEngineManager::getInstance()->getScriptEngine();
if (sEngine)
{
sEngine->retainScriptObject(this, scene);
}
2022-07-16 10:43:05 +08:00
#endif // AX_ENABLE_GC_FOR_NATIVE_OBJECTS
2019-11-23 20:27:39 +08:00
_scenesStack.pushBack(scene);
_nextScene = scene;
2019-11-23 20:27:39 +08:00
}
void Director::popScene()
{
2022-07-16 10:43:05 +08:00
AXASSERT(_runningScene != nullptr, "running scene should not null");
2021-12-25 10:04:45 +08:00
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_GC_FOR_NATIVE_OBJECTS
2019-11-23 20:27:39 +08:00
auto sEngine = ScriptEngineManager::getInstance()->getScriptEngine();
if (sEngine)
{
sEngine->releaseScriptObject(this, _scenesStack.back());
}
2022-07-16 10:43:05 +08:00
#endif // AX_ENABLE_GC_FOR_NATIVE_OBJECTS
2019-11-23 20:27:39 +08:00
_scenesStack.popBack();
ssize_t c = _scenesStack.size();
if (c == 0)
{
end();
}
else
{
_sendCleanupToScene = true;
2021-12-25 10:04:45 +08:00
_nextScene = _scenesStack.at(c - 1);
2019-11-23 20:27:39 +08:00
}
}
void Director::popToRootScene()
{
popToSceneStackLevel(1);
}
void Director::popToSceneStackLevel(int level)
{
2022-07-16 10:43:05 +08:00
AXASSERT(_runningScene != nullptr, "A running Scene is needed");
2019-11-23 20:27:39 +08:00
ssize_t c = _scenesStack.size();
// level 0? -> end
if (level == 0)
{
end();
return;
}
// current level or lower -> nothing
if (level >= c)
return;
auto firstOnStackScene = _scenesStack.back();
if (firstOnStackScene == _runningScene)
{
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_GC_FOR_NATIVE_OBJECTS
2019-11-23 20:27:39 +08:00
auto sEngine = ScriptEngineManager::getInstance()->getScriptEngine();
if (sEngine)
{
sEngine->releaseScriptObject(this, _scenesStack.back());
}
2022-07-16 10:43:05 +08:00
#endif // AX_ENABLE_GC_FOR_NATIVE_OBJECTS
2019-11-23 20:27:39 +08:00
_scenesStack.popBack();
--c;
}
// pop stack until reaching desired level
while (c > level)
{
auto current = _scenesStack.back();
if (current->isRunning())
{
current->onExit();
}
current->cleanup();
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_GC_FOR_NATIVE_OBJECTS
2019-11-23 20:27:39 +08:00
auto sEngine = ScriptEngineManager::getInstance()->getScriptEngine();
if (sEngine)
{
sEngine->releaseScriptObject(this, _scenesStack.back());
}
2022-07-16 10:43:05 +08:00
#endif // AX_ENABLE_GC_FOR_NATIVE_OBJECTS
2019-11-23 20:27:39 +08:00
_scenesStack.popBack();
--c;
}
_nextScene = _scenesStack.back();
// cleanup running scene
_sendCleanupToScene = true;
}
void Director::end()
{
_purgeDirectorInNextLoop = true;
}
void Director::restart()
{
_restartDirectorInNextLoop = true;
}
void Director::reset()
{
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_GC_FOR_NATIVE_OBJECTS
2019-11-23 20:27:39 +08:00
auto sEngine = ScriptEngineManager::getInstance()->getScriptEngine();
2022-07-16 10:43:05 +08:00
#endif // AX_ENABLE_GC_FOR_NATIVE_OBJECTS
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
if (_runningScene)
{
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_GC_FOR_NATIVE_OBJECTS
2019-11-23 20:27:39 +08:00
if (sEngine)
{
sEngine->releaseScriptObject(this, _runningScene);
}
2022-07-16 10:43:05 +08:00
#endif // AX_ENABLE_GC_FOR_NATIVE_OBJECTS
2019-11-23 20:27:39 +08:00
_runningScene->onExit();
_runningScene->cleanup();
_runningScene->release();
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
_runningScene = nullptr;
2021-12-25 10:04:45 +08:00
_nextScene = nullptr;
2019-11-23 20:27:39 +08:00
if (_eventDispatcher)
_eventDispatcher->dispatchEvent(_eventResetDirector);
2022-10-01 16:24:52 +08:00
// Fix github issue: https://github.com/axmolengine/axmol/issues/550
// !!!The AudioEngine hold scheduler must end before Director destroyed, otherwise, just lead app crash
AudioEngine::end();
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
// cleanup scheduler
getScheduler()->unscheduleAll();
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
// Remove all events
if (_eventDispatcher)
{
_eventDispatcher->removeAllEventListeners();
}
2021-12-25 10:04:45 +08:00
if (_notificationNode)
2019-11-23 20:27:39 +08:00
{
_notificationNode->onExit();
_notificationNode->cleanup();
_notificationNode->release();
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
_notificationNode = nullptr;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
// remove all objects, but don't release it.
// runWithScene might be executed after 'end'.
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_GC_FOR_NATIVE_OBJECTS
2019-11-23 20:27:39 +08:00
if (sEngine)
{
2021-12-25 10:04:45 +08:00
for (const auto& scene : _scenesStack)
2019-11-23 20:27:39 +08:00
{
if (scene)
sEngine->releaseScriptObject(this, scene);
}
}
2022-07-16 10:43:05 +08:00
#endif // AX_ENABLE_GC_FOR_NATIVE_OBJECTS
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
while (!_scenesStack.empty())
{
_scenesStack.popBack();
}
stopAnimation();
2021-12-25 10:04:45 +08:00
2022-07-16 10:43:05 +08:00
AX_SAFE_RELEASE_NULL(_notificationNode);
AX_SAFE_RELEASE_NULL(_FPSLabel);
AX_SAFE_RELEASE_NULL(_drawnBatchesLabel);
AX_SAFE_RELEASE_NULL(_drawnVerticesLabel);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
// purge bitmap cache
FontFNT::purgeCachedData();
FontAtlasCache::purgeCachedData();
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
FontFreeType::shutdownFreeType();
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
// purge all managed caches
AnimationCache::destroyInstance();
SpriteFrameCache::destroyInstance();
FileUtils::destroyInstance();
AsyncTaskPool::destroyInstance();
2022-10-12 19:44:31 +08:00
backend::ProgramManager::destroyInstance();
2021-12-25 10:04:45 +08:00
// axmol specific data structures
2019-11-23 20:27:39 +08:00
UserDefault::destroyInstance();
resetMatrixStack();
destroyTextureCache();
}
void Director::purgeDirector()
{
reset();
2021-12-25 10:04:45 +08:00
// CHECK_GL_ERROR_DEBUG();
2019-11-23 20:27:39 +08:00
// OpenGL view
if (_glView)
2019-11-23 20:27:39 +08:00
{
_glView->end();
_glView = nullptr;
2019-11-23 20:27:39 +08:00
}
// delete Director
release();
2023-05-25 15:45:00 +08:00
#if AX_TARGET_PLATFORM == AX_PLATFORM_IOS || AX_TARGET_PLATFORM == AX_PLATFORM_ANDROID
utils::killCurrentProcess();
#endif
2019-11-23 20:27:39 +08:00
}
void Director::restartDirector()
{
reset();
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
// Texture cache need to be reinitialized
initTextureCache();
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
// Reschedule for action manager
getScheduler()->scheduleUpdate(getActionManager(), Scheduler::PRIORITY_SYSTEM, false);
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
// release the objects
PoolManager::getInstance()->getCurrentPool()->clear();
// Restart animation
startAnimation();
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
// Real restart in script level
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_SCRIPT_BINDING
2019-11-23 20:27:39 +08:00
ScriptEvent scriptEvent(kRestartGame, nullptr);
ScriptEngineManager::sendEventToLua(scriptEvent);
2019-11-23 20:27:39 +08:00
#endif
2021-12-25 10:04:45 +08:00
setGLDefaultValues();
#if AX_ENABLE_CACHE_TEXTURE_DATA
// listen the event that renderer was recreated on Android/WP8
_rendererRecreatedListener = EventListenerCustom::create(
EVENT_RENDERER_RECREATED, [this](EventCustom*) {
_isStatusLabelUpdated = true; // Force recreation of textures
});
_eventDispatcher->addEventListenerWithFixedPriority(_rendererRecreatedListener, -1);
#endif
2019-11-23 20:27:39 +08:00
}
void Director::setNextScene()
{
_eventDispatcher->dispatchEvent(_beforeSetNextScene);
bool runningIsTransition = dynamic_cast<TransitionScene*>(_runningScene) != nullptr;
2021-12-25 10:04:45 +08:00
bool newIsTransition = dynamic_cast<TransitionScene*>(_nextScene) != nullptr;
2019-11-23 20:27:39 +08:00
// If it is not a transition, call onExit/cleanup
2021-12-25 10:04:45 +08:00
if (!newIsTransition)
{
if (_runningScene)
{
_runningScene->onExitTransitionDidStart();
_runningScene->onExit();
}
// issue #709. the root node (scene) should receive the cleanup message too
// otherwise it might be leaked.
if (_sendCleanupToScene && _runningScene)
{
_runningScene->cleanup();
}
}
2019-11-23 20:27:39 +08:00
if (_runningScene)
{
_runningScene->release();
}
_runningScene = _nextScene;
_nextScene->retain();
_nextScene = nullptr;
2021-12-25 10:04:45 +08:00
if ((!runningIsTransition) && _runningScene)
2019-11-23 20:27:39 +08:00
{
_runningScene->onEnter();
_runningScene->onEnterTransitionDidFinish();
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
_eventDispatcher->dispatchEvent(_afterSetNextScene);
}
void Director::pause()
{
if (_paused)
{
return;
}
_oldAnimationInterval = _animationInterval;
2022-07-16 10:43:05 +08:00
#if AX_REDUCE_PAUSED_CPU_USAGE
2019-11-23 20:27:39 +08:00
// when paused, don't consume CPU
setAnimationInterval(1 / 4.0, SetIntervalReason::BY_DIRECTOR_PAUSE);
#endif
2019-11-23 20:27:39 +08:00
_paused = true;
}
void Director::resume()
{
2021-12-25 10:04:45 +08:00
if (!_paused)
2019-11-23 20:27:39 +08:00
{
return;
}
2022-07-16 10:43:05 +08:00
#if AX_REDUCE_PAUSED_CPU_USAGE
2019-11-23 20:27:39 +08:00
setAnimationInterval(_oldAnimationInterval, SetIntervalReason::BY_ENGINE);
#endif
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
_paused = false;
2019-11-23 20:27:39 +08:00
_deltaTime = 0;
// fix issue #3509, skip one fps to avoid incorrect time calculation.
setNextDeltaTimeZero(true);
}
void Director::updateFrameRate()
{
2021-12-25 10:04:45 +08:00
// static const float FPS_FILTER = 0.1f;
// static float prevDeltaTime = 0.016f; // 60FPS
//
// float dt = _deltaTime * FPS_FILTER + (1.0f-FPS_FILTER) * prevDeltaTime;
// prevDeltaTime = dt;
// _frameRate = 1.0f/dt;
2019-11-23 20:27:39 +08:00
// Frame rate should be the real value of current frame.
_frameRate = 1.0f / _deltaTime;
}
2022-07-16 10:43:05 +08:00
#if !AX_STRIP_FPS
2019-11-23 20:27:39 +08:00
// display the FPS using a LabelAtlas
// updates the FPS every frame
void Director::showStats()
{
if (_isStatusLabelUpdated)
{
createStatsLabel();
_isStatusLabelUpdated = false;
}
static uint32_t prevCalls = 0;
static uint32_t prevVerts = 0;
2019-11-23 20:27:39 +08:00
++_frames;
_accumDt += _deltaTime;
2021-12-25 10:04:45 +08:00
if (_statsDisplay && _FPSLabel && _drawnBatchesLabel && _drawnVerticesLabel)
2019-11-23 20:27:39 +08:00
{
char buffer[30] = {0};
// Probably we don't need this anymore since
// the framerate is using a low-pass filter
// to make the FPS stable
2022-07-16 10:43:05 +08:00
if (_accumDt > AX_DIRECTOR_STATS_INTERVAL)
2019-11-23 20:27:39 +08:00
{
snprintf(buffer, sizeof(buffer), "%.1f / %.3f", _frames / _accumDt, _secondsPerFrame);
2019-11-23 20:27:39 +08:00
_FPSLabel->setString(buffer);
_accumDt = 0;
2021-12-25 10:04:45 +08:00
_frames = 0;
2019-11-23 20:27:39 +08:00
}
auto currentCalls = (uint32_t)_renderer->getDrawnBatches();
auto currentVerts = (uint32_t)_renderer->getDrawnVertices();
2021-12-25 10:04:45 +08:00
if (currentCalls != prevCalls)
{
snprintf(buffer, sizeof(buffer), "GL calls:%6u", currentCalls);
2019-11-23 20:27:39 +08:00
_drawnBatchesLabel->setString(buffer);
prevCalls = currentCalls;
}
2021-12-25 10:04:45 +08:00
if (currentVerts != prevVerts)
{
snprintf(buffer, sizeof(buffer), "GL verts:%6u", currentVerts);
2019-11-23 20:27:39 +08:00
_drawnVerticesLabel->setString(buffer);
prevVerts = currentVerts;
}
const Mat4& identity = Mat4::IDENTITY;
_drawnVerticesLabel->visit(_renderer, identity, 0);
_drawnBatchesLabel->visit(_renderer, identity, 0);
_FPSLabel->visit(_renderer, identity, 0);
}
}
void Director::calculateMPF()
{
static float prevSecondsPerFrame = 0;
2021-12-25 10:04:45 +08:00
static const float MPF_FILTER = 0.10f;
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
_secondsPerFrame = _deltaTime * MPF_FILTER + (1 - MPF_FILTER) * prevSecondsPerFrame;
2019-11-23 20:27:39 +08:00
prevSecondsPerFrame = _secondsPerFrame;
}
// returns the FPS image data pointer and len
void Director::getFPSImageData(unsigned char** datapointer, ssize_t* length)
{
2021-12-25 10:04:45 +08:00
// FIXME: fixed me if it should be used
2019-11-23 20:27:39 +08:00
*datapointer = cc_fps_images_png;
2021-12-25 10:04:45 +08:00
*length = cc_fps_images_len();
2019-11-23 20:27:39 +08:00
}
void Director::createStatsLabel()
{
2021-12-25 10:04:45 +08:00
Texture2D* texture = nullptr;
std::string fpsString = "00.0";
std::string drawBatchString = "000";
2019-11-23 20:27:39 +08:00
std::string drawVerticesString = "00000";
if (_FPSLabel)
{
2021-12-25 10:04:45 +08:00
fpsString = _FPSLabel->getString();
drawBatchString = _drawnBatchesLabel->getString();
2019-11-23 20:27:39 +08:00
drawVerticesString = _drawnVerticesLabel->getString();
2021-12-25 10:04:45 +08:00
2022-07-16 10:43:05 +08:00
AX_SAFE_RELEASE_NULL(_FPSLabel);
AX_SAFE_RELEASE_NULL(_drawnBatchesLabel);
AX_SAFE_RELEASE_NULL(_drawnVerticesLabel);
2019-11-23 20:27:39 +08:00
_textureCache->removeTextureForKey("/cc_fps_images");
FileUtils::getInstance()->purgeCachedEntries();
}
2021-12-25 10:04:45 +08:00
unsigned char* data = nullptr;
ssize_t dataLength = 0;
2019-11-23 20:27:39 +08:00
getFPSImageData(&data, &dataLength);
2021-12-08 00:11:53 +08:00
Image* image = new Image();
2021-12-25 10:04:45 +08:00
bool isOK = image->initWithImageData(data, dataLength, false);
if (!isOK)
{
if (image)
2019-11-23 20:27:39 +08:00
delete image;
2022-07-16 10:43:05 +08:00
AXLOGERROR("%s", "Fails: init fps_images");
2019-11-23 20:27:39 +08:00
return;
}
texture = _textureCache->addImage(image, "/cc_fps_images", PixelFormat::RGBA4);
2022-07-16 10:43:05 +08:00
AX_SAFE_RELEASE(image);
2019-11-23 20:27:39 +08:00
/*
2021-12-25 10:04:45 +08:00
We want to use an image which is stored in the file named ccFPSImage.c
for any design resolutions and all resource resolutions.
2019-11-23 20:27:39 +08:00
To achieve this, we need to ignore 'contentScaleFactor' in 'AtlasNode' and 'LabelAtlas'.
So I added a new method called 'setIgnoreContentScaleFactor' for 'AtlasNode',
this is not exposed to game developers, it's only used for displaying FPS now.
*/
2022-07-16 10:43:05 +08:00
float scaleFactor = 1 / AX_CONTENT_SCALE_FACTOR();
2019-11-23 20:27:39 +08:00
_FPSLabel = LabelAtlas::create(fpsString, texture, 12, 32, '.');
2019-11-23 20:27:39 +08:00
_FPSLabel->retain();
_FPSLabel->setIgnoreContentScaleFactor(true);
_FPSLabel->setScale(scaleFactor);
_drawnBatchesLabel = LabelAtlas::create(drawBatchString, texture, 12, 32, '.');
2019-11-23 20:27:39 +08:00
_drawnBatchesLabel->retain();
_drawnBatchesLabel->setIgnoreContentScaleFactor(true);
_drawnBatchesLabel->setScale(scaleFactor);
_drawnVerticesLabel = LabelAtlas::create(drawVerticesString, texture, 12, 32, '.');
2019-11-23 20:27:39 +08:00
_drawnVerticesLabel->retain();
_drawnVerticesLabel->setIgnoreContentScaleFactor(true);
_drawnVerticesLabel->setScale(scaleFactor);
setStatsAnchor();
}
void Director::setStatsAnchor(AnchorPreset anchor)
{
if (!_statsDisplay)
return;
2023-05-25 15:45:00 +08:00
// Initialize stat counters
if (!_FPSLabel)
showStats();
{
static Vec2 _fpsPosition = {0, 0};
auto safeOrigin = getSafeAreaRect().origin;
auto safeSize = getSafeAreaRect().size;
2022-07-16 10:43:05 +08:00
const int height_spacing = (int)(22 / AX_CONTENT_SCALE_FACTOR());
switch (anchor)
{
case AnchorPreset::BOTTOM_LEFT:
_fpsPosition = Vec2(0, 0);
_drawnVerticesLabel->setAnchorPoint({0, 0});
_drawnBatchesLabel->setAnchorPoint({0, 0});
_FPSLabel->setAnchorPoint({0, 0});
break;
case AnchorPreset::CENTER_LEFT:
_fpsPosition = Vec2(0, safeSize.height / 2 - height_spacing * 1.5);
_drawnVerticesLabel->setAnchorPoint({0, 0.0});
_drawnBatchesLabel->setAnchorPoint({0, 0.0});
_FPSLabel->setAnchorPoint({0, 0});
break;
case AnchorPreset::TOP_LEFT:
_fpsPosition = Vec2(0, safeSize.height - height_spacing * 3);
_drawnVerticesLabel->setAnchorPoint({0, 0});
_drawnBatchesLabel->setAnchorPoint({0, 0});
_FPSLabel->setAnchorPoint({0, 0});
break;
case AnchorPreset::BOTTOM_RIGHT:
_fpsPosition = Vec2(safeSize.width, 0);
_drawnVerticesLabel->setAnchorPoint({1, 0});
_drawnBatchesLabel->setAnchorPoint({1, 0});
_FPSLabel->setAnchorPoint({1, 0});
break;
case AnchorPreset::CENTER_RIGHT:
_fpsPosition = Vec2(safeSize.width, safeSize.height / 2 - height_spacing * 1.5);
_drawnVerticesLabel->setAnchorPoint({1, 0.0});
_drawnBatchesLabel->setAnchorPoint({1, 0.0});
_FPSLabel->setAnchorPoint({1, 0.0});
break;
case AnchorPreset::TOP_RIGHT:
_fpsPosition = Vec2(safeSize.width, safeSize.height - height_spacing * 3);
_drawnVerticesLabel->setAnchorPoint({1, 0});
_drawnBatchesLabel->setAnchorPoint({1, 0});
_FPSLabel->setAnchorPoint({1, 0});
break;
case AnchorPreset::BOTTOM_CENTER:
_fpsPosition = Vec2(safeSize.width / 2, 0);
_drawnVerticesLabel->setAnchorPoint({0.5, 0});
_drawnBatchesLabel->setAnchorPoint({0.5, 0});
_FPSLabel->setAnchorPoint({0.5, 0});
break;
case AnchorPreset::CENTER:
_fpsPosition = Vec2(safeSize.width / 2, safeSize.height / 2 - height_spacing * 1.5);
_drawnVerticesLabel->setAnchorPoint({0.5, 0.0});
_drawnBatchesLabel->setAnchorPoint({0.5, 0.0});
_FPSLabel->setAnchorPoint({0.5, 0.0});
break;
case AnchorPreset::TOP_CENTER:
_fpsPosition = Vec2(safeSize.width / 2, safeSize.height - height_spacing * 3);
_drawnVerticesLabel->setAnchorPoint({0.5, 0});
_drawnBatchesLabel->setAnchorPoint({0.5, 0});
_FPSLabel->setAnchorPoint({0.5, 0});
break;
default: // FPSPosition::BOTTOM_LEFT
_fpsPosition = Vec2(0, 0);
_drawnVerticesLabel->setAnchorPoint({0, 0});
_drawnBatchesLabel->setAnchorPoint({0, 0});
_FPSLabel->setAnchorPoint({0, 0});
break;
}
_drawnVerticesLabel->setPosition(Vec2(0, height_spacing * 2.0f) + _fpsPosition + safeOrigin);
_drawnBatchesLabel->setPosition(Vec2(0, height_spacing * 1.0f) + _fpsPosition + safeOrigin);
_FPSLabel->setPosition(Vec2(0, height_spacing * 0.0f) + _fpsPosition + safeOrigin);
}
2019-11-23 20:27:39 +08:00
}
2022-07-16 10:43:05 +08:00
#endif // #if !AX_STRIP_FPS
2019-11-23 20:27:39 +08:00
void Director::setContentScaleFactor(float scaleFactor)
{
if (scaleFactor != _contentScaleFactor)
{
2021-12-25 10:04:45 +08:00
_contentScaleFactor = scaleFactor;
2019-11-23 20:27:39 +08:00
_isStatusLabelUpdated = true;
}
}
2021-12-25 10:04:45 +08:00
void Director::setNotificationNode(Node* node)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
if (_notificationNode != nullptr)
{
_notificationNode->onExitTransitionDidStart();
_notificationNode->onExit();
_notificationNode->cleanup();
}
2022-07-16 10:43:05 +08:00
AX_SAFE_RELEASE(_notificationNode);
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
_notificationNode = node;
if (node == nullptr)
return;
_notificationNode->onEnter();
_notificationNode->onEnterTransitionDidFinish();
2022-07-16 10:43:05 +08:00
AX_SAFE_RETAIN(_notificationNode);
2019-11-23 20:27:39 +08:00
}
void Director::setScheduler(Scheduler* scheduler)
{
if (_scheduler != scheduler)
{
2022-07-16 10:43:05 +08:00
AX_SAFE_RETAIN(scheduler);
AX_SAFE_RELEASE(_scheduler);
2019-11-23 20:27:39 +08:00
_scheduler = scheduler;
}
}
void Director::setActionManager(ActionManager* actionManager)
{
if (_actionManager != actionManager)
{
2022-07-16 10:43:05 +08:00
AX_SAFE_RETAIN(actionManager);
AX_SAFE_RELEASE(_actionManager);
2019-11-23 20:27:39 +08:00
_actionManager = actionManager;
2021-12-25 10:04:45 +08:00
}
2019-11-23 20:27:39 +08:00
}
void Director::setEventDispatcher(EventDispatcher* dispatcher)
{
if (_eventDispatcher != dispatcher)
{
2022-07-16 10:43:05 +08:00
AX_SAFE_RETAIN(dispatcher);
AX_SAFE_RELEASE(_eventDispatcher);
2019-11-23 20:27:39 +08:00
_eventDispatcher = dispatcher;
}
}
void Director::startAnimation()
{
startAnimation(SetIntervalReason::BY_ENGINE);
}
void Director::startAnimation(SetIntervalReason reason)
{
_lastUpdate = std::chrono::steady_clock::now();
_invalid = false;
2022-10-12 07:04:36 +08:00
_axmol_thread_id = std::this_thread::get_id();
2019-11-23 20:27:39 +08:00
Application::getInstance()->setAnimationInterval(_animationInterval);
2019-11-23 20:27:39 +08:00
// fix issue #3509, skip one fps to avoid incorrect time calculation.
setNextDeltaTimeZero(true);
}
void Director::queueOperation(AsyncOperation op, void* param)
{
#if defined(AX_PLATFORM_PC)
_operations.enqueue([=]() { op(param); });
#else
_glView->queueOperation(op, param);
#endif
}
#if defined(AX_PLATFORM_PC)
void Director::processOperations()
{
std::function<void()> op;
while (_operations.try_dequeue(op))
op();
}
#endif
2019-11-23 20:27:39 +08:00
void Director::mainLoop()
{
#if defined(AX_PLATFORM_PC)
processOperations();
#endif
2022-06-29 17:26:22 +08:00
if (_purgeDirectorInNextLoop)
{
2022-06-29 17:26:22 +08:00
_purgeDirectorInNextLoop = false;
purgeDirector();
}
2022-06-29 17:26:22 +08:00
else if (_restartDirectorInNextLoop)
{
2022-06-29 17:26:22 +08:00
_restartDirectorInNextLoop = false;
restartDirector();
2019-11-23 20:27:39 +08:00
}
2022-06-29 17:26:22 +08:00
else if (!_invalid)
{
drawScene();
// release the objects
PoolManager::getInstance()->getCurrentPool()->clear();
}
2019-11-23 20:27:39 +08:00
}
void Director::mainLoop(float dt)
{
2021-12-25 10:04:45 +08:00
_deltaTime = dt;
2019-11-23 20:27:39 +08:00
_deltaTimePassedByCaller = true;
mainLoop();
}
void Director::stopAnimation()
{
_invalid = true;
}
void Director::setAnimationInterval(float interval)
{
setAnimationInterval(interval, SetIntervalReason::BY_GAME);
}
void Director::setAnimationInterval(float interval, SetIntervalReason reason)
{
_animationInterval = interval;
2021-12-25 10:04:45 +08:00
if (!_invalid)
2019-11-23 20:27:39 +08:00
{
stopAnimation();
startAnimation(reason);
}
}
NS_AX_END