forked from organicmaps/organicmaps
switched off screen rotation, as it's not so fast as expected to support it in RenderPolicyMT.
This commit is contained in:
parent
5d830d5649
commit
9eb5fed75d
4 changed files with 19 additions and 18 deletions
|
@ -10,10 +10,11 @@
|
|||
|
||||
ScreenBase::ScreenBase() :
|
||||
m_PixelRect(0, 0, 640, 480),
|
||||
m_Scale(1),
|
||||
m_Scale(0.1),
|
||||
m_Angle(0.0),
|
||||
m_Org(320, 240),
|
||||
m_GlobalRect(m2::RectD(0, 0, 640, 480))
|
||||
m_GlobalRect(m_Org, ang::AngleD(0), m2::RectD(-320, -240, 320, 240)),
|
||||
m_ClipRect(m2::RectD(0, 0, 640, 480))
|
||||
{
|
||||
m_GtoP = math::Identity<double, 3>();
|
||||
m_PtoG = math::Identity<double, 3>();
|
||||
|
|
|
@ -534,22 +534,22 @@ void Framework<TModel>::StopDrag(DragEvent const & e)
|
|||
template <typename TModel>
|
||||
void Framework<TModel>::StartRotate(RotateEvent const & e)
|
||||
{
|
||||
m_navigator.StartRotate(e.Angle(), m_timer.ElapsedSeconds());
|
||||
m_renderPolicy->StartRotate(e.Angle(), m_timer.ElapsedSeconds());
|
||||
/* m_navigator.StartRotate(e.Angle(), m_timer.ElapsedSeconds());
|
||||
m_renderPolicy->StartRotate(e.Angle(), m_timer.ElapsedSeconds());*/
|
||||
}
|
||||
|
||||
template <typename TModel>
|
||||
void Framework<TModel>::DoRotate(RotateEvent const & e)
|
||||
{
|
||||
m_navigator.DoRotate(e.Angle(), m_timer.ElapsedSeconds());
|
||||
m_renderPolicy->DoRotate(e.Angle(), m_timer.ElapsedSeconds());
|
||||
/* m_navigator.DoRotate(e.Angle(), m_timer.ElapsedSeconds());
|
||||
m_renderPolicy->DoRotate(e.Angle(), m_timer.ElapsedSeconds());*/
|
||||
}
|
||||
|
||||
template <typename TModel>
|
||||
void Framework<TModel>::StopRotate(RotateEvent const & e)
|
||||
{
|
||||
m_navigator.StopRotate(e.Angle(), m_timer.ElapsedSeconds());
|
||||
m_renderPolicy->StopRotate(e.Angle(), m_timer.ElapsedSeconds());
|
||||
/* m_navigator.StopRotate(e.Angle(), m_timer.ElapsedSeconds());
|
||||
m_renderPolicy->StopRotate(e.Angle(), m_timer.ElapsedSeconds());*/
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -96,14 +96,14 @@ void Navigator::OnSize(int x0, int y0, int w, int h)
|
|||
|
||||
bool Navigator::CanShrinkInto(ScreenBase const & screen, m2::RectD const & boundRect)
|
||||
{
|
||||
m2::RectD globalRect = screen.GlobalRect();
|
||||
m2::RectD globalRect = screen.ClipRect();
|
||||
return (boundRect.SizeX() >= globalRect.SizeX()) && (boundRect.SizeY() >= globalRect.SizeY());
|
||||
}
|
||||
|
||||
ScreenBase const Navigator::ShrinkInto(ScreenBase const & screen, m2::RectD const & boundRect)
|
||||
{
|
||||
ScreenBase res = screen;
|
||||
m2::RectD globalRect = res.GlobalRect();
|
||||
m2::RectD globalRect = res.ClipRect();
|
||||
if (globalRect.minX() < boundRect.minX())
|
||||
globalRect.Offset(boundRect.minX() - globalRect.minX(), 0);
|
||||
if (globalRect.maxX() > boundRect.maxX())
|
||||
|
@ -112,14 +112,14 @@ ScreenBase const Navigator::ShrinkInto(ScreenBase const & screen, m2::RectD cons
|
|||
globalRect.Offset(0, boundRect.minY() - globalRect.minY());
|
||||
if (globalRect.maxY() > boundRect.maxY())
|
||||
globalRect.Offset(0, boundRect.maxY() - globalRect.maxY());
|
||||
res.SetFromRect(globalRect);
|
||||
res.SetFromRect(m2::AnyRectD(globalRect));
|
||||
return res;
|
||||
}
|
||||
|
||||
ScreenBase const Navigator::ScaleInto(ScreenBase const & screen, m2::RectD const & boundRect)
|
||||
{
|
||||
ScreenBase res = screen;
|
||||
m2::RectD globalRect = res.GlobalRect();
|
||||
m2::RectD globalRect = res.ClipRect();
|
||||
|
||||
if (globalRect.minX() < boundRect.minX())
|
||||
globalRect.Scale((boundRect.minX() - globalRect.Center().x) / (globalRect.minX() - globalRect.Center().x));
|
||||
|
@ -130,14 +130,14 @@ ScreenBase const Navigator::ScaleInto(ScreenBase const & screen, m2::RectD const
|
|||
if (globalRect.maxY() > boundRect.maxY())
|
||||
globalRect.Scale((boundRect.maxY() - globalRect.Center().y) / (globalRect.maxY() - globalRect.Center().y));
|
||||
|
||||
res.SetFromRect(globalRect);
|
||||
res.SetFromRect(m2::AnyRectD(globalRect));
|
||||
return res;
|
||||
}
|
||||
|
||||
ScreenBase const Navigator::ShrinkAndScaleInto(ScreenBase const & screen, m2::RectD const & boundRect)
|
||||
{
|
||||
ScreenBase res = screen;
|
||||
m2::RectD globalRect = res.GlobalRect();
|
||||
m2::RectD globalRect = res.ClipRect();
|
||||
|
||||
if (globalRect.minX() < boundRect.minX())
|
||||
{
|
||||
|
@ -167,7 +167,7 @@ ScreenBase const Navigator::ShrinkAndScaleInto(ScreenBase const & screen, m2::Re
|
|||
globalRect.Scale((globalRect.Center().y - boundRect.minY()) / (globalRect.Center().y - globalRect.minY()));
|
||||
}
|
||||
|
||||
res.SetFromRect(globalRect);
|
||||
res.SetFromRect(m2::AnyRectD(globalRect));
|
||||
return res;
|
||||
}
|
||||
|
||||
|
@ -319,7 +319,7 @@ bool Navigator::CheckMinScale(ScreenBase const & screen)
|
|||
|
||||
bool Navigator::CheckBorders(ScreenBase const & screen)
|
||||
{
|
||||
m2::RectD ScreenBounds = screen.GlobalRect();
|
||||
m2::RectD ScreenBounds = screen.ClipRect();
|
||||
return ScreenBounds.IsRectInside(m_worldRect) || m_worldRect.IsRectInside(ScreenBounds);
|
||||
}
|
||||
|
||||
|
@ -331,7 +331,7 @@ bool Navigator::ScaleImpl(m2::PointD const & newPt1, m2::PointD const & newPt2,
|
|||
|
||||
ScreenBase tmp = m_Screen;
|
||||
tmp.SetGtoPMatrix(newM);
|
||||
//tmp.Rotate(tmp.GetAngle());
|
||||
// tmp.Rotate(-tmp.GetAngle());
|
||||
|
||||
if (!skipMaxScaleAndBordersCheck && !CheckMaxScale(tmp))
|
||||
return false;
|
||||
|
|
|
@ -22,7 +22,7 @@ namespace yg
|
|||
|
||||
bool RenderState::isPanning() const
|
||||
{
|
||||
return IsPanning(m_actualScreen, m_currentScreen);
|
||||
return IsPanningAndRotate(m_actualScreen, m_currentScreen);
|
||||
}
|
||||
|
||||
void RenderState::copyTo(RenderState &s) const
|
||||
|
|
Loading…
Add table
Reference in a new issue