From 3125761515b94316c3131c1ad4b7f00e9a51a397 Mon Sep 17 00:00:00 2001 From: vng Date: Mon, 8 Oct 2012 22:01:22 +0300 Subject: [PATCH] =?UTF-8?q?Add=20Framework::ShowRectEx=E2=80=A6=20function?= =?UTF-8?q?s=20with=20(consider=20screen=20rotation=20and=20zoom=20visibil?= =?UTF-8?q?ity).?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- geometry/any_rect2d.hpp | 11 ++++---- map/framework.cpp | 57 +++++++++++++++++++++++++---------------- map/framework.hpp | 17 +++++++++--- map/location_state.cpp | 6 +---- 4 files changed, 55 insertions(+), 36 deletions(-) diff --git a/geometry/any_rect2d.hpp b/geometry/any_rect2d.hpp index dcf1f2ecdf..c81a34ac38 100644 --- a/geometry/any_rect2d.hpp +++ b/geometry/any_rect2d.hpp @@ -14,16 +14,17 @@ namespace m2 class AnyRect { ang::Angle m_angle; + + /// @todo No need to store orthos separately. They are stored in m_angle. Point m_i; Point m_j; + Point m_zero; Rect m_rect; - Point const Convert(Point const & p, - Point const & fromI, - Point const & fromJ, - Point const & toI, - Point const & toJ) const + static Point const Convert(Point const & p, + Point const & fromI, Point const & fromJ, + Point const & toI, Point const & toJ) { Point res; diff --git a/map/framework.cpp b/map/framework.cpp index 9312ed47b1..cabfa91c40 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -705,21 +705,39 @@ void Framework::SetViewportCenter(m2::PointD const & pt) static int const theMetersFactor = 6; +m2::AnyRectD Framework::ToRotated(m2::RectD const & rect) const +{ + double const dx = rect.SizeX(); + double const dy = rect.SizeY(); + + return m2::AnyRectD(rect.Center(), + m_navigator.Screen().GetAngle(), + m2::RectD(-dx/2, -dy/2, dx/2, dy/2)); +} + void Framework::CheckMinGlobalRect(m2::AnyRectD & rect) const { m2::RectD const minRect = MercatorBounds::RectByCenterXYAndSizeInMeters( rect.GlobalCenter(), theMetersFactor * m_metresMinWidth); - double dx = minRect.SizeX(); - double dy = minRect.SizeY(); - double a = m_navigator.Screen().GetAngle(); - - m2::AnyRectD const minAnyRect(minRect.Center(), a, m2::RectD(-dx/2, -dy/2, dx/2, dy/2)); + m2::AnyRectD const minAnyRect = ToRotated(minRect); + /// @todo It would be better here to check only AnyRect ortho-sizes with minimal values. if (minAnyRect.IsRectInside(rect)) rect = minAnyRect; } +void Framework::CheckMinVisibleScale(m2::RectD & rect) const +{ + int const worldS = scales::GetUpperWorldScale(); + if (scales::GetScaleLevel(rect) > worldS) + { + m2::PointD const c = rect.Center(); + if (!IsCountryLoaded(c)) + rect = scales::GetRectForLevel(worldS, c, 1.0); + } +} + void Framework::ShowRect(m2::RectD const & r) { m2::AnyRectD rect(r); @@ -729,9 +747,15 @@ void Framework::ShowRect(m2::RectD const & r) Invalidate(); } -void Framework::ShowRectFixed(m2::RectD const & rect) +void Framework::ShowRectEx(m2::RectD const & rect) { - ShowRectFixed(m2::AnyRectD(rect)); + ShowRectFixed(ToRotated(rect)); +} + +void Framework::ShowRectExVisibleScale(m2::RectD rect) +{ + CheckMinVisibleScale(rect); + ShowRectEx(rect); } void Framework::ShowRectFixed(m2::AnyRectD const & r) @@ -1100,22 +1124,11 @@ bool Framework::GetCurrentPosition(double & lat, double & lon) const void Framework::ShowSearchResult(search::Result const & res) { - m2::RectD r = res.GetFeatureRect(); - int const worldS = scales::GetUpperWorldScale(); - if (scales::GetScaleLevel(r) > worldS) - { - m2::PointD const c = r.Center(); - if (!IsCountryLoaded(c)) - r = scales::GetRectForLevel(worldS, c, 1.0); - } + m2::RectD const rect = res.GetFeatureRect(); - double a = m_navigator.Screen().GetAngle(); - double dx = r.SizeX(); - double dy = r.SizeY(); + ShowRectExVisibleScale(rect); - ShowRectFixed(m2::AnyRectD(r.Center(), a, m2::RectD(-dx/2, -dy/2, dx/2, dy/2))); - - DrawPlacemark(res.GetFeatureCenter()); + DrawPlacemark(rect.Center()); } void Framework::GetDistanceAndAzimut(search::Result const & res, @@ -1265,7 +1278,7 @@ bool Framework::SetViewportByURL(string const & url) if (info.IsValid()) { - ShowRectFixed(info.GetViewport()); + ShowRectEx(info.GetViewport()); Invalidate(); return true; } diff --git a/map/framework.hpp b/map/framework.hpp index 54efc1f735..8994e25446 100644 --- a/map/framework.hpp +++ b/map/framework.hpp @@ -220,8 +220,6 @@ public: private: search::Engine * GetSearchEngine() const; - void CheckMinGlobalRect(m2::AnyRectD & r) const; - public: m2::RectD GetCurrentViewport() const; @@ -309,10 +307,21 @@ public: virtual void EndPaint(shared_ptr const & e); - void ShowRect(m2::RectD const & rect); - void ShowRectFixed(m2::RectD const & rect); +private: + m2::AnyRectD ToRotated(m2::RectD const & rect) const; + void CheckMinGlobalRect(m2::AnyRectD & rect) const; + void CheckMinVisibleScale(m2::RectD & rect) const; void ShowRectFixed(m2::AnyRectD const & rect); +public: + /// Set navigator viewport by rect as-is. + void ShowRect(m2::RectD const & rect); + /// - Use navigator rotate angle. + /// - Check for fixed scales from navigator. + void ShowRectEx(m2::RectD const & rect); + /// - Check minimal visible scale according to downloaded countries. + void ShowRectExVisibleScale(m2::RectD rect); + void DrawPlacemark(m2::PointD const & pt); void DisablePlacemark(); diff --git a/map/location_state.cpp b/map/location_state.cpp index 55fdc17b95..27e1d9c6bc 100644 --- a/map/location_state.cpp +++ b/map/location_state.cpp @@ -174,11 +174,7 @@ namespace location if (setScale != -1) rect = scales::GetRectForLevel(setScale, center, 1.0); - double const a = m_framework->GetNavigator().Screen().GetAngle(); - double const dx = rect.SizeX(); - double const dy = rect.SizeY(); - - m_framework->ShowRectFixed(m2::AnyRectD(rect.Center(), a, m2::RectD(-dx/2, -dy/2, dx/2, dy/2))); + m_framework->ShowRectEx(rect); SetIsCentered(true); CheckCompassRotation();