Perspective discarding after routing start fixed.

This commit is contained in:
Daria Volvenkova 2015-12-08 15:21:16 +03:00
parent 3c7cc4d2cf
commit d04585d8a7
6 changed files with 27 additions and 11 deletions

View file

@ -5,7 +5,7 @@
namespace dp
{
double const k3dAdditionalExtention = 3.0;
double const k3dAdditionalExtention = 2.0;
struct OverlayHandle::OffsetNodeFinder
{

View file

@ -876,10 +876,7 @@ void FrontendRenderer::CheckMinAllowableIn3dScale()
m_userEventStream.IsInPerspectiveAnimation())
return;
int const minScale = scales::GetMinAllowableIn3dScale() -
(df::VisualParams::Instance().GetVisualScale() <= 1.0 ? 1 : 0);
bool const switchTo2d = m_currentZoomLevel < minScale;
bool const switchTo2d = !UserEventStream::IsScaleAllowableIn3d(m_currentZoomLevel);
if ((!switchTo2d && !m_perspectiveDiscarded) ||
(switchTo2d && !m_userEventStream.GetCurrentScreen().isPerspective()))
return;

View file

@ -3,6 +3,8 @@
#include "indexer/scales.hpp"
#include "platform/platform.hpp"
#include "base/logging.hpp"
#include "base/macros.hpp"
@ -321,6 +323,17 @@ bool UserEventStream::SetScale(m2::PointD const & pxScaleCenter, double factor,
return true;
}
// static
bool UserEventStream::IsScaleAllowableIn3d(int scale)
{
int minScale = scales::GetMinAllowableIn3dScale();
if (df::VisualParams::Instance().GetVisualScale() <= 1.0)
minScale -= 1;
if (GetPlatform().IsTablet())
minScale += 1;
return scale >= minScale;
}
bool UserEventStream::SetCenter(m2::PointD const & center, int zoom, bool isAnim)
{
m2::PointD targetCenter = center;
@ -329,10 +342,9 @@ bool UserEventStream::SetCenter(m2::PointD const & center, int zoom, bool isAnim
ScreenBase const & currentScreen = GetCurrentScreen();
int const minScale = scales::GetMinAllowableIn3dScale() -
df::VisualParams::Instance().GetVisualScale() <= 1.0 ? 1 : 0;
bool const finishIn3d = m_discardedFOV > 0.0 && zoom >= minScale;
bool const finishIn2d = currentScreen.isPerspective() && zoom < minScale;
bool const isScaleAllowableIn3d = IsScaleAllowableIn3d(zoom);
bool const finishIn3d = m_discardedFOV > 0.0 && isScaleAllowableIn3d;
bool const finishIn2d = currentScreen.isPerspective() && !isScaleAllowableIn3d;
ScreenBase screen = currentScreen;
if (finishIn3d)

View file

@ -268,6 +268,8 @@ public:
bool IsInPerspectiveAnimation() const;
bool IsWaitingForActionCompletion() const;
static bool IsScaleAllowableIn3d(int scale);
void SetListener(ref_ptr<Listener> listener) { m_listener = listener; }
#ifdef DEBUG

View file

@ -10,6 +10,11 @@ namespace scales
{
static const int INITIAL_LEVEL = 1;
int GetMinAllowableIn3dScale()
{
return min(16, min(GetNavigation3dScale(), GetPedestrianNavigation3dScale()));
}
double GetScaleLevelD(double ratio)
{
double const level = min(static_cast<double>(GetUpperScale()), log(ratio) / log(2.0) + INITIAL_LEVEL);

View file

@ -24,8 +24,8 @@ namespace scales
inline int GetNavigation3dScale() { return UPPER_STYLE_SCALE - 3; }
/// Default pedestrian navigation 3d mode scale
inline int GetPedestrianNavigation3dScale() { return UPPER_STYLE_SCALE - 2; }
/// Minimal allowable scale in 3d mode
inline int GetMinAllowableIn3dScale() { return 17; }
int GetMinAllowableIn3dScale();
double GetScaleLevelD(double ratio);
double GetScaleLevelD(m2::RectD const & r);