From b0fa5e0ef0b7c3d9e2979c714debbccb6226886a Mon Sep 17 00:00:00 2001 From: rachytski Date: Tue, 8 Feb 2011 01:17:28 +0200 Subject: [PATCH] timer-based periodical updates. --- base/timer.hpp | 4 +++- iphone/Maps/Platform/IPhonePlatform.hpp | 2 ++ iphone/Maps/Platform/IPhonePlatform.mm | 6 ++++++ map/framework.hpp | 5 ++++- map/render_queue.cpp | 4 ++-- map/render_queue.hpp | 2 +- map/render_queue_routine.cpp | 5 ++++- map/render_queue_routine.hpp | 4 +++- platform/platform.hpp | 2 ++ platform/qtplatform.cpp | 7 ++++++- yg/render_state_updater.cpp | 19 +++++++++++++++---- yg/render_state_updater.hpp | 4 ++++ 12 files changed, 52 insertions(+), 12 deletions(-) diff --git a/base/timer.hpp b/base/timer.hpp index 8049b7a38d..fbcd5b1ac9 100644 --- a/base/timer.hpp +++ b/base/timer.hpp @@ -10,11 +10,13 @@ namespace my class Timer { public: - Timer() : m_StartTime(clock()) {} + Timer() {Reset();} double ElapsedSeconds() const { return (clock() - m_StartTime) / static_cast(CLOCKS_PER_SEC); } + + void Reset() { m_StartTime = clock(); } private: clock_t m_StartTime; }; diff --git a/iphone/Maps/Platform/IPhonePlatform.hpp b/iphone/Maps/Platform/IPhonePlatform.hpp index 066de0f389..e82ad4b4fd 100644 --- a/iphone/Maps/Platform/IPhonePlatform.hpp +++ b/iphone/Maps/Platform/IPhonePlatform.hpp @@ -19,6 +19,7 @@ public: virtual string const SkinName() const; virtual bool IsMultiSampled() const; virtual bool DoPeriodicalUpdate() const; + virtual double PeriodicalUpdateInterval() const; virtual vector GetFontNames() const; private: @@ -27,6 +28,7 @@ private: NSDate * m_StartDate; bool m_isMultiSampled; bool m_doPeriodicalUpdate; + double m_periodicalUpdateInterval; string m_resourcesPath; string m_writablePath; }; diff --git a/iphone/Maps/Platform/IPhonePlatform.mm b/iphone/Maps/Platform/IPhonePlatform.mm index 2d6ccbdd62..5b0b8c2c5a 100644 --- a/iphone/Maps/Platform/IPhonePlatform.mm +++ b/iphone/Maps/Platform/IPhonePlatform.mm @@ -32,6 +32,7 @@ IPhonePlatform::IPhonePlatform() m_skinName = "basic.skn"; m_isMultiSampled = true; m_doPeriodicalUpdate = true; + m_periodicalUpdateInterval = 0.3; /// Calculating resolution UIDevice * device = [UIDevice currentDevice]; @@ -168,6 +169,11 @@ bool IPhonePlatform::DoPeriodicalUpdate() const return m_doPeriodicalUpdate; } +double IPhonePlatform::PeriodicalUpdateInterval() const +{ + return m_periodicalUpdateInterval; +} + vector IPhonePlatform::GetFontNames() const { vector res; diff --git a/map/framework.hpp b/map/framework.hpp index 7549dff413..98ceff798a 100644 --- a/map/framework.hpp +++ b/map/framework.hpp @@ -164,7 +164,10 @@ class FrameWork public: FrameWork(shared_ptr windowHandle, size_t bottomShift) : m_windowHandle(windowHandle), - m_renderQueue(GetPlatform().SkinName(), GetPlatform().IsMultiSampled(), GetPlatform().DoPeriodicalUpdate()), + m_renderQueue(GetPlatform().SkinName(), + GetPlatform().IsMultiSampled(), + GetPlatform().DoPeriodicalUpdate(), + GetPlatform().PeriodicalUpdateInterval()), m_isRedrawEnabled(true) { m_informationDisplay.setBottomShift(bottomShift); diff --git a/map/render_queue.cpp b/map/render_queue.cpp index 97a35a459d..7799e1b9e2 100644 --- a/map/render_queue.cpp +++ b/map/render_queue.cpp @@ -5,7 +5,7 @@ #include "../yg/render_state.hpp" #include "../yg/rendercontext.hpp" -RenderQueue::RenderQueue(string const & skinName, bool isMultiSampled, bool doPeriodicalUpdate) +RenderQueue::RenderQueue(string const & skinName, bool isMultiSampled, bool doPeriodicalUpdate, double updateInterval) : m_renderState(new yg::gl::RenderState()) { m_renderState->m_surfaceWidth = 100; @@ -13,7 +13,7 @@ RenderQueue::RenderQueue(string const & skinName, bool isMultiSampled, bool doPe m_renderState->m_textureWidth = 256; m_renderState->m_textureHeight = 256; - m_routine = new RenderQueueRoutine(m_renderState, skinName, isMultiSampled, doPeriodicalUpdate); + m_routine = new RenderQueueRoutine(m_renderState, skinName, isMultiSampled, doPeriodicalUpdate, updateInterval); } void RenderQueue::initializeGL(shared_ptr const & primaryContext, diff --git a/map/render_queue.hpp b/map/render_queue.hpp index 17761c30b2..27148a817a 100644 --- a/map/render_queue.hpp +++ b/map/render_queue.hpp @@ -31,7 +31,7 @@ private: public: /// constructor. - RenderQueue(string const & skinName, bool isMultiSampled, bool doPeriodicalUpdate); + RenderQueue(string const & skinName, bool isMultiSampled, bool doPeriodicalUpdate, double updateInterval); /// destructor. ~RenderQueue(); /// set the primary context. it starts the rendering thread. diff --git a/map/render_queue_routine.cpp b/map/render_queue_routine.cpp index ce49334345..553c798aa1 100644 --- a/map/render_queue_routine.cpp +++ b/map/render_queue_routine.cpp @@ -31,7 +31,8 @@ RenderQueueRoutine::RenderModelCommand::RenderModelCommand(ScreenBase const & fr RenderQueueRoutine::RenderQueueRoutine(shared_ptr const & renderState, string const & skinName, bool isMultiSampled, - bool doPeriodicalUpdate) + bool doPeriodicalUpdate, + double updateInterval) { m_skinName = skinName; m_visualScale = 0; @@ -39,6 +40,7 @@ RenderQueueRoutine::RenderQueueRoutine(shared_ptr const & r m_renderState->addInvalidateFn(bind(&RenderQueueRoutine::invalidate, this)); m_isMultiSampled = isMultiSampled; m_doPeriodicalUpdate = doPeriodicalUpdate; + m_updateInterval = updateInterval; } void RenderQueueRoutine::Cancel() @@ -220,6 +222,7 @@ void RenderQueueRoutine::Do() params.m_frameBuffer = m_frameBuffer; params.m_renderState = m_renderState; params.m_doPeriodicalUpdate = m_doPeriodicalUpdate; + params.m_updateInterval = m_updateInterval; params.m_textTreeAutoClean = false; m_threadDrawer = make_shared_ptr(new DrawerYG(m_skinName, params)); diff --git a/map/render_queue_routine.hpp b/map/render_queue_routine.hpp index b45a474360..574378f625 100644 --- a/map/render_queue_routine.hpp +++ b/map/render_queue_routine.hpp @@ -74,6 +74,7 @@ private: bool m_isMultiSampled; bool m_doPeriodicalUpdate; + double m_updateInterval; double m_visualScale; string m_skinName; @@ -81,7 +82,8 @@ public: RenderQueueRoutine(shared_ptr const & renderState, string const & skinName, bool isMultiSampled, - bool doPeriodicalUpdate); + bool doPeriodicalUpdate, + double updateInterval); /// initialize GL rendering /// this function is called just before the thread starts. void initializeGL(shared_ptr const & renderContext, diff --git a/platform/platform.hpp b/platform/platform.hpp index eb27f61284..b31eb1d442 100644 --- a/platform/platform.hpp +++ b/platform/platform.hpp @@ -67,6 +67,8 @@ public: virtual bool DoPeriodicalUpdate() const = 0; + virtual double PeriodicalUpdateInterval() const = 0; + virtual vector GetFontNames() const = 0; }; diff --git a/platform/qtplatform.cpp b/platform/qtplatform.cpp index 349db2f4f1..86ddb0b206 100644 --- a/platform/qtplatform.cpp +++ b/platform/qtplatform.cpp @@ -355,7 +355,12 @@ public: bool DoPeriodicalUpdate() const { - return false; + return true; + } + + double PeriodicalUpdateInterval() const + { + return 0.3; } vector GetFontNames() const diff --git a/yg/render_state_updater.cpp b/yg/render_state_updater.cpp index 09fda87f47..880a8104b7 100644 --- a/yg/render_state_updater.cpp +++ b/yg/render_state_updater.cpp @@ -1,21 +1,27 @@ #include "../base/SRC_FIRST.hpp" + #include "render_state_updater.hpp" #include "render_state.hpp" #include "framebuffer.hpp" +#include "../base/logging.hpp" + namespace yg { namespace gl { RenderStateUpdater::Params::Params() - : m_doPeriodicalUpdate(false) + : m_doPeriodicalUpdate(false), m_updateInterval(0.0) {} RenderStateUpdater::RenderStateUpdater(Params const & params) : base_t(params), m_renderState(params.m_renderState), - m_doPeriodicalUpdate(params.m_doPeriodicalUpdate) - {} + m_doPeriodicalUpdate(params.m_doPeriodicalUpdate), + m_updateInterval(params.m_updateInterval) + { + LOG(LINFO, ("UpdateInterval: ", m_updateInterval)); + } shared_ptr const & RenderStateUpdater::renderState() const { @@ -29,10 +35,14 @@ namespace yg { base_t::drawGeometry(texture, vertices, indices, indicesCount); m_indicesCount += indicesCount; - if (m_doPeriodicalUpdate && m_renderState && (m_indicesCount > 20000)) + if (m_doPeriodicalUpdate + && m_renderState + && (m_indicesCount > 20000) + && (m_updateTimer.ElapsedSeconds() > m_updateInterval)) { updateActualTarget(); m_indicesCount %= 20000; + m_updateTimer.Reset(); } } @@ -96,6 +106,7 @@ namespace yg { base_t::beginFrame(); m_indicesCount = 0; + m_updateTimer.Reset(); } void RenderStateUpdater::endFrame() diff --git a/yg/render_state_updater.hpp b/yg/render_state_updater.hpp index 3fa832c270..f2a9c6d3c0 100644 --- a/yg/render_state_updater.hpp +++ b/yg/render_state_updater.hpp @@ -2,6 +2,7 @@ #include "../std/shared_ptr.hpp" #include "../geometry/screenbase.hpp" +#include "../base/timer.hpp" #include "geometry_renderer.hpp" @@ -23,12 +24,15 @@ namespace yg int m_indicesCount; bool m_doPeriodicalUpdate; + double m_updateInterval; + my::Timer m_updateTimer; public: struct Params : base_t::Params { bool m_doPeriodicalUpdate; + double m_updateInterval; shared_ptr m_renderState; Params(); };