diff --git a/iphone/Maps/Classes/EAGLView.mm b/iphone/Maps/Classes/EAGLView.mm index 4b80347e0c..513f401355 100644 --- a/iphone/Maps/Classes/EAGLView.mm +++ b/iphone/Maps/Classes/EAGLView.mm @@ -36,60 +36,60 @@ { if ((self = [super initWithCoder:coder])) { - // Setup Layer Properties - CAEAGLLayer * eaglLayer = (CAEAGLLayer *)self.layer; + // Setup Layer Properties + CAEAGLLayer * eaglLayer = (CAEAGLLayer *)self.layer; - eaglLayer.opaque = YES; + eaglLayer.opaque = YES; - /// ColorFormat : RGB565 - /// Backbuffer : YES, (to prevent from loosing content when mixing with ordinary layers). - eaglLayer.drawableProperties = [NSDictionary dictionaryWithObjectsAndKeys: - [NSNumber numberWithBool:YES], - kEAGLDrawablePropertyRetainedBacking, - kEAGLColorFormatRGB565, - kEAGLDrawablePropertyColorFormat, - nil]; + /// ColorFormat : RGB565 + /// Backbuffer : YES, (to prevent from loosing content when mixing with ordinary layers). + eaglLayer.drawableProperties = [NSDictionary dictionaryWithObjectsAndKeys: + [NSNumber numberWithBool:NO], + kEAGLDrawablePropertyRetainedBacking, + kEAGLColorFormatRGB565, + kEAGLDrawablePropertyColorFormat, + nil]; - int etalonW = 320; - int scrW = etalonW; + int etalonW = 320; + int scrW = etalonW; - UIDevice * device = [UIDevice currentDevice]; + UIDevice * device = [UIDevice currentDevice]; - float ver = [device.systemVersion floatValue]; - NSLog(@"%@", device.systemVersion); - /// rounding problems - if (ver >= 3.199) - { - UIScreen * mainScr = [UIScreen mainScreen]; - scrW = mainScr.currentMode.size.width; - if (scrW == 640) - self.contentScaleFactor = 2.0; - } + float ver = [device.systemVersion floatValue]; + NSLog(@"%@", device.systemVersion); + /// rounding problems + if (ver >= 3.199) + { + UIScreen * mainScr = [UIScreen mainScreen]; + scrW = mainScr.currentMode.size.width; + if (scrW == 640) + self.contentScaleFactor = 2.0; + } - renderContext = shared_ptr(new iphone::RenderContext()); + renderContext = shared_ptr(new iphone::RenderContext()); - if (!renderContext.get()) - { - [self release]; - return nil; - } + if (!renderContext.get()) + { + [self release]; + return nil; + } - renderContext->makeCurrent(); - frameBuffer = shared_ptr(new yg::gl::FrameBuffer()); + renderContext->makeCurrent(); + frameBuffer = shared_ptr(new yg::gl::FrameBuffer()); - int bigVBSize = pow(2, ceil(log2(15000 * sizeof(yg::gl::Vertex)))); - int bigIBSize = pow(2, ceil(log2(30000 * sizeof(unsigned short)))); + int bigVBSize = pow(2, ceil(log2(15000 * sizeof(yg::gl::Vertex)))); + int bigIBSize = pow(2, ceil(log2(30000 * sizeof(unsigned short)))); - int smallVBSize = pow(2, ceil(log2(1500 * sizeof(yg::gl::Vertex)))); - int smallIBSize = pow(2, ceil(log2(3000 * sizeof(unsigned short)))); + int smallVBSize = pow(2, ceil(log2(1500 * sizeof(yg::gl::Vertex)))); + int smallIBSize = pow(2, ceil(log2(3000 * sizeof(unsigned short)))); - int blitVBSize = pow(2, ceil(log2(10 * sizeof(yg::gl::AuxVertex)))); - int blitIBSize = pow(2, ceil(log2(10 * sizeof(unsigned short)))); + int blitVBSize = pow(2, ceil(log2(10 * sizeof(yg::gl::AuxVertex)))); + int blitIBSize = pow(2, ceil(log2(10 * sizeof(unsigned short)))); - resourceManager = shared_ptr(new yg::ResourceManager( + resourceManager = shared_ptr(new yg::ResourceManager( bigVBSize, bigIBSize, 20, smallVBSize, smallIBSize, 30, - blitVBSize, blitIBSize, 20, + blitVBSize, blitIBSize, 20, 512, 256, 10, GetPlatform().ReadPathForFile("unicode_blocks.txt").c_str(), GetPlatform().ReadPathForFile("fonts_whitelist.txt").c_str(), diff --git a/iphone/Maps/Classes/MapViewController.mm b/iphone/Maps/Classes/MapViewController.mm index 426226555c..c19bd45e1b 100644 --- a/iphone/Maps/Classes/MapViewController.mm +++ b/iphone/Maps/Classes/MapViewController.mm @@ -35,6 +35,7 @@ typedef FrameWork frame - (void) OnSettingsClicked: (id)sender { + m_framework->SetUpdatesEnabled(false); [SettingsManager Show:self WithStorage:m_storage]; } @@ -65,18 +66,18 @@ typedef FrameWork frame m_locationController = [[UserLocationController alloc] initWithDelegate:self]; m_CurrentAction = NOTHING; - m_isDirtyPosition = false; + m_isDirtyPosition = false; // initialize with currently active screen orientation - [self didRotateFromInterfaceOrientation: self.interfaceOrientation]; + [self didRotateFromInterfaceOrientation: self.interfaceOrientation]; m_framework->initializeGL([(EAGLView*)self.view renderContext], resourceManager); // to perform a proper resize [(EAGLView*)self.view layoutSubviews]; - // restore previous screen position - if (!m_framework->LoadState()) + // restore previous screen position + if (!m_framework->LoadState()) m_framework->ShowAll(); } @@ -307,8 +308,8 @@ NSInteger compareAddress(UITouch * l, UITouch * r, void * context) { if (m_framework) { - NSLog(@"invalidate"); - m_framework->Invalidate(); + if (!m_framework->SetUpdatesEnabled(true)) + m_framework->Invalidate(); } } diff --git a/iphone/Maps/Classes/WindowHandle.hpp b/iphone/Maps/Classes/WindowHandle.hpp index 155b98082e..29c424346d 100644 --- a/iphone/Maps/Classes/WindowHandle.hpp +++ b/iphone/Maps/Classes/WindowHandle.hpp @@ -16,11 +16,11 @@ namespace iphone { class WindowHandle : public ::WindowHandle { - private: - EAGLView * m_view; + private: + EAGLView * m_view; public: - WindowHandle(EAGLView * view); + WindowHandle(EAGLView * view); - void invalidate(); + void invalidateImpl(); }; } diff --git a/iphone/Maps/Classes/WindowHandle.mm b/iphone/Maps/Classes/WindowHandle.mm index bc6a6384dd..48c97f963c 100644 --- a/iphone/Maps/Classes/WindowHandle.mm +++ b/iphone/Maps/Classes/WindowHandle.mm @@ -18,7 +18,7 @@ namespace iphone m_view = view; } - void WindowHandle::invalidate() + void WindowHandle::invalidateImpl() { [m_view drawViewOnMainThread]; } diff --git a/iphone/Maps/Maps.xcodeproj/project.pbxproj b/iphone/Maps/Maps.xcodeproj/project.pbxproj index 339c199ad3..c47a6c2e1a 100644 --- a/iphone/Maps/Maps.xcodeproj/project.pbxproj +++ b/iphone/Maps/Maps.xcodeproj/project.pbxproj @@ -630,7 +630,7 @@ PROVISIONING_PROFILE = ""; SDKROOT = iphoneos; STRIP_INSTALLED_PRODUCT = NO; - VALID_ARCHS = "armv7 armv6"; + VALID_ARCHS = "armv6 armv7"; VERSIONING_SYSTEM = "apple-generic"; }; name = "Device Debug"; diff --git a/map/framework.hpp b/map/framework.hpp index d62a383d97..4df97aa320 100644 --- a/map/framework.hpp +++ b/map/framework.hpp @@ -288,6 +288,11 @@ public: UpdateNow(); } + bool SetUpdatesEnabled(bool doEnable) + { + return m_windowHandle->setUpdatesEnabled(doEnable); + } + /// enabling/disabling AddRedrawCommand void SetRedrawEnabled(bool isRedrawEnabled) { diff --git a/map/window_handle.hpp b/map/window_handle.hpp index 92fe095262..872f5dad16 100644 --- a/map/window_handle.hpp +++ b/map/window_handle.hpp @@ -3,6 +3,7 @@ #include "../std/shared_ptr.hpp" #include "events.hpp" #include "drawer_yg.hpp" +#include "../base/logging.hpp" namespace yg { @@ -19,8 +20,14 @@ private: shared_ptr m_drawer; shared_ptr m_renderContext; + bool m_hasPendingUpdates; + bool m_isUpdatesEnabled; + public: + WindowHandle() : m_hasPendingUpdates(false), m_isUpdatesEnabled(true) + {} + shared_ptr const & drawer() { return m_drawer; @@ -41,5 +48,26 @@ public: m_drawer = drawer; } - virtual void invalidate() = 0; + bool setUpdatesEnabled(bool doEnable) + { + bool res = false; + if ((!m_isUpdatesEnabled) && (doEnable) && (m_hasPendingUpdates)) + { + invalidateImpl(); + m_hasPendingUpdates = false; + res = true; + } + m_isUpdatesEnabled = doEnable; + return res; + } + + void invalidate() + { + if (m_isUpdatesEnabled) + invalidateImpl(); + else + m_hasPendingUpdates = true; + } + + virtual void invalidateImpl() = 0; }; diff --git a/qt/qt_window_handle.hpp b/qt/qt_window_handle.hpp index 88cd1553b0..7ba5d29e1c 100644 --- a/qt/qt_window_handle.hpp +++ b/qt/qt_window_handle.hpp @@ -13,9 +13,10 @@ namespace qt QWidget * m_pWnd; public: + WindowHandle(QWidget * p) : m_pWnd(p) {} - void invalidate() + void invalidateImpl() { ASSERT ( m_pWnd != 0, () ); m_pWnd->setUpdatesEnabled(true);