diff --git a/iphone/Maps/Platform/IPhonePlatform.hpp b/iphone/Maps/Platform/IPhonePlatform.hpp index 1b8e45b8ad..2b37abf166 100644 --- a/iphone/Maps/Platform/IPhonePlatform.hpp +++ b/iphone/Maps/Platform/IPhonePlatform.hpp @@ -24,6 +24,7 @@ public: virtual bool IsBenchmarking() const; virtual bool IsVisualLog() const; virtual string const DeviceID() const; + virtual unsigned ScaleEtalonSize() const; private: string m_deviceID; @@ -35,4 +36,5 @@ private: double m_periodicalUpdateInterval; string m_resourcesPath; string m_writablePath; + unsigned m_scaleEtalonSize; }; diff --git a/iphone/Maps/Platform/IPhonePlatform.mm b/iphone/Maps/Platform/IPhonePlatform.mm index 1dc0e6f052..ce73482dfc 100644 --- a/iphone/Maps/Platform/IPhonePlatform.mm +++ b/iphone/Maps/Platform/IPhonePlatform.mm @@ -60,6 +60,8 @@ IPhonePlatform::IPhonePlatform() } } + m_scaleEtalonSize = 256 * m_visualScale; + NSLog(@"Device Name : %@, SystemName : %@, SystemVersion : %@", device.name, device.systemName, device.systemVersion); [pool release]; @@ -199,6 +201,11 @@ bool IPhonePlatform::IsVisualLog() const return false; } +unsigned IPhonePlatform::ScaleEtalonSize() const +{ + return m_scaleEtalonSize; +} + string const IPhonePlatform::DeviceID() const { return m_deviceID; diff --git a/map/framework.hpp b/map/framework.hpp index 92ba9de887..9219ab5684 100644 --- a/map/framework.hpp +++ b/map/framework.hpp @@ -174,7 +174,8 @@ public: GetPlatform().IsMultiSampled(), GetPlatform().DoPeriodicalUpdate(), GetPlatform().PeriodicalUpdateInterval(), - GetPlatform().IsBenchmarking()), + GetPlatform().IsBenchmarking(), + GetPlatform().ScaleEtalonSize()), m_isRedrawEnabled(true) { m_informationDisplay.setBottomShift(bottomShift); @@ -309,7 +310,15 @@ public: int GetCurrentScale() const { - return scales::GetScaleLevel(m_navigator.Screen().ClipRect()); + m2::PointD textureCenter(m_renderQueue.renderState().m_textureWidth / 2, + m_renderQueue.renderState().m_textureHeight / 2); + m2::RectD glbRect; + + unsigned scaleEtalonSize = GetPlatform().ScaleEtalonSize(); + m_navigator.Screen().PtoG(m2::RectD(textureCenter - m2::PointD(scaleEtalonSize / 2, scaleEtalonSize / 2), + textureCenter + m2::PointD(scaleEtalonSize / 2, scaleEtalonSize / 2)), + glbRect); + return scales::GetScaleLevel(glbRect); } /// Actual rendering function. diff --git a/map/render_queue.cpp b/map/render_queue.cpp index cbf5bb3bc1..0bc8cd7662 100644 --- a/map/render_queue.cpp +++ b/map/render_queue.cpp @@ -10,7 +10,8 @@ RenderQueue::RenderQueue( bool isMultiSampled, bool doPeriodicalUpdate, double updateInterval, - bool isBenchmarking) + bool isBenchmarking, + unsigned scaleEtalonSize) : m_renderState(new yg::gl::RenderState()) { m_renderState->m_surfaceWidth = 100; @@ -25,7 +26,8 @@ RenderQueue::RenderQueue( isMultiSampled, doPeriodicalUpdate, updateInterval, - isBenchmarking); + isBenchmarking, + scaleEtalonSize); } void RenderQueue::initializeGL(shared_ptr const & primaryContext, diff --git a/map/render_queue.hpp b/map/render_queue.hpp index 8a4dcbf83b..37ee858053 100644 --- a/map/render_queue.hpp +++ b/map/render_queue.hpp @@ -35,7 +35,8 @@ public: bool isMultiSampled, bool doPeriodicalUpdate, double updateInterval, - bool isBenchmarking); + bool isBenchmarking, + unsigned scaleEtalonSize); /// 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 4b63aad9e9..e75ade4c96 100644 --- a/map/render_queue_routine.cpp +++ b/map/render_queue_routine.cpp @@ -33,7 +33,8 @@ RenderQueueRoutine::RenderQueueRoutine(shared_ptr const & r bool isMultiSampled, bool doPeriodicalUpdate, double updateInterval, - bool isBenchmarking) + bool isBenchmarking, + unsigned scaleEtalonSize) { m_skinName = skinName; m_visualScale = 0; @@ -43,6 +44,7 @@ RenderQueueRoutine::RenderQueueRoutine(shared_ptr const & r m_doPeriodicalUpdate = doPeriodicalUpdate; m_updateInterval = updateInterval; m_isBenchmarking = isBenchmarking; + m_scaleEtalonSize = scaleEtalonSize; } void RenderQueueRoutine::Cancel() @@ -373,7 +375,10 @@ void RenderQueueRoutine::Do() ScreenBase const & frameScreen = m_currentRenderCommand->m_frameScreen; m2::RectD glbRect; - frameScreen.PtoG(m2::RectD(surfaceRect), glbRect); + frameScreen.PtoG(m2::RectD(textureRect.Center() - m2::PointD(m_scaleEtalonSize / 2, m_scaleEtalonSize / 2), + textureRect.Center() + m2::PointD(m_scaleEtalonSize / 2, m_scaleEtalonSize / 2)), + glbRect); +// frameScreen.PtoG(m2::RectD(surfaceRect), glbRect); int scaleLevel = scales::GetScaleLevel(glbRect); for (size_t i = 0; i < areas.size(); ++i) diff --git a/map/render_queue_routine.hpp b/map/render_queue_routine.hpp index ea12d12649..1d9878dc74 100644 --- a/map/render_queue_routine.hpp +++ b/map/render_queue_routine.hpp @@ -78,6 +78,7 @@ private: double m_visualScale; string m_skinName; bool m_isBenchmarking; + unsigned m_scaleEtalonSize; void waitForRenderCommand(list > & cmdList, threads::ConditionGuard & guard); @@ -88,7 +89,8 @@ public: bool isMultiSampled, bool doPeriodicalUpdate, double updateInterval, - bool isBenchmarking); + bool isBenchmarking, + unsigned scaleEtalonSize); /// 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 d98d7ead9a..fb3279fa6e 100644 --- a/platform/platform.hpp +++ b/platform/platform.hpp @@ -76,6 +76,8 @@ public: virtual bool IsVisualLog() const = 0; virtual string const DeviceID() const = 0; + + virtual unsigned ScaleEtalonSize() const = 0; }; extern "C" Platform & GetPlatform(); diff --git a/platform/qtplatform.cpp b/platform/qtplatform.cpp index 35293bdd46..4491b8e50e 100644 --- a/platform/qtplatform.cpp +++ b/platform/qtplatform.cpp @@ -394,6 +394,11 @@ public: { return false; } + + unsigned ScaleEtalonSize() const + { + return 512; + } }; extern "C" Platform & GetPlatform()