diff --git a/drape_frontend/animation/animation.cpp b/drape_frontend/animation/animation.cpp index 6949e249d7..478fb6a660 100644 --- a/drape_frontend/animation/animation.cpp +++ b/drape_frontend/animation/animation.cpp @@ -3,6 +3,41 @@ namespace df { +bool Animation::GetCachedProperty(TPropertyCache const & properties, Object object, ObjectProperty property, PropertyValue & value) +{ + auto const it = properties.find(make_pair(object, property)); + if (it != properties.end()) + { + value = it->second; + return true; + } + return false; +} + +void Animation::GetCurrentScreen(TPropertyCache const & properties, ScreenBase const & screen, ScreenBase & currentScreen) +{ + currentScreen = screen; + + if (!properties.empty()) + { + double scale = currentScreen.GetScale(); + double angle = currentScreen.GetAngle(); + m2::PointD pos = currentScreen.GlobalRect().GlobalZero(); + + PropertyValue value; + if (GetCachedProperty(properties, Object::MapPlane, ObjectProperty::Scale, value)) + scale = value.m_valueD; + + if (GetCachedProperty(properties, Object::MapPlane, ObjectProperty::Angle, value)) + angle = value.m_valueD; + + if (GetCachedProperty(properties, Object::MapPlane, ObjectProperty::Position, value)) + pos = value.m_valuePointD; + + currentScreen.SetFromParams(pos, angle, scale); + } +} + bool Animation::CouldBeBlendedWith(Animation const & animation) const { bool hasSameObject = false; @@ -20,7 +55,7 @@ bool Animation::CouldBeBlendedWith(Animation const & animation) const m_couldBeBlended && animation.m_couldBeBlended); } -bool Animation::HasTargetProperty(TObject object, TProperty property) const +bool Animation::HasTargetProperty(Object object, ObjectProperty property) const { return HasProperty(object, property); } diff --git a/drape_frontend/animation/animation.hpp b/drape_frontend/animation/animation.hpp index ea5817078b..9bf2d847f2 100644 --- a/drape_frontend/animation/animation.hpp +++ b/drape_frontend/animation/animation.hpp @@ -3,6 +3,7 @@ #include "drape/pointers.hpp" #include "geometry/point2d.hpp" +#include "geometry/screenbase.hpp" #include "std/unordered_set.hpp" @@ -12,7 +13,7 @@ namespace df class Animation { public: - enum Type + enum class Type { Sequence, Parallel, @@ -23,14 +24,14 @@ public: KineticScroll }; - enum Object + enum class Object { MyPositionArrow, MapPlane, Selection }; - enum ObjectProperty + enum class ObjectProperty { Position, Scale, @@ -39,7 +40,7 @@ public: struct PropertyValue { - enum Type + enum class Type { ValueD, ValuePointD @@ -49,12 +50,12 @@ public: {} explicit PropertyValue(double value) - : m_type(ValueD) + : m_type(Type::ValueD) , m_valueD(value) {} explicit PropertyValue(m2::PointD const & value) - : m_type(ValuePointD) + : m_type(Type::ValuePointD) , m_valuePointD(value) {} @@ -66,11 +67,10 @@ public: }; }; - using TObject = uint32_t; - using TProperty = uint32_t; - using TAnimObjects = unordered_set; - using TObjectProperties = unordered_set; + using TAnimObjects = std::set; + using TObjectProperties = std::set; using TAction = function)>; + using TPropertyCache = map, Animation::PropertyValue>; Animation(bool couldBeInterrupted, bool couldBeBlended) : m_couldBeInterrupted(couldBeInterrupted) @@ -81,6 +81,7 @@ public: virtual ~Animation() = default; + virtual void Init(ScreenBase const & screen, TPropertyCache const & properties) {} virtual void OnStart() { if (m_onStartAction != nullptr) m_onStartAction(this); } virtual void OnFinish() { if (m_onFinishAction != nullptr) m_onFinishAction(this); } virtual void Interrupt() { if (m_onInterruptAction != nullptr) m_onInterruptAction(this); } @@ -89,10 +90,10 @@ public: virtual string GetCustomType() const { return string(); } virtual TAnimObjects const & GetObjects() const = 0; - virtual bool HasObject(TObject object) const = 0; - virtual TObjectProperties const & GetProperties(TObject object) const = 0; - virtual bool HasProperty(TObject object, TProperty property) const = 0; - virtual bool HasTargetProperty(TObject object, TProperty property) const; + virtual bool HasObject(Object object) const = 0; + virtual TObjectProperties const & GetProperties(Object object) const = 0; + virtual bool HasProperty(Object object, ObjectProperty property) const = 0; + virtual bool HasTargetProperty(Object object, ObjectProperty property) const; virtual void SetMaxDuration(double maxDuration) = 0; virtual double GetDuration() const = 0; @@ -101,8 +102,8 @@ public: virtual void Advance(double elapsedSeconds) = 0; virtual void Finish() { OnFinish(); } - virtual bool GetProperty(TObject object, TProperty property, PropertyValue & value) const = 0; - virtual bool GetTargetProperty(TObject object, TProperty property, PropertyValue & value) const = 0; + virtual bool GetProperty(Object object, ObjectProperty property, PropertyValue & value) const = 0; + virtual bool GetTargetProperty(Object object, ObjectProperty property, PropertyValue & value) const = 0; void SetOnStartAction(TAction const & action) { m_onStartAction = action; } void SetOnFinishAction(TAction const & action) { m_onFinishAction = action; } @@ -122,6 +123,9 @@ public: bool CouldBeRewinded() const { return m_couldBeRewinded; } protected: + void GetCurrentScreen(TPropertyCache const & properties, ScreenBase const & screen, ScreenBase & currentScreen); + bool GetCachedProperty(TPropertyCache const & properties, Object object, ObjectProperty property, PropertyValue & value); + TAction m_onStartAction; TAction m_onFinishAction; TAction m_onInterruptAction; diff --git a/drape_frontend/animation/arrow_animation.cpp b/drape_frontend/animation/arrow_animation.cpp index 27c61409eb..0854e42d85 100644 --- a/drape_frontend/animation/arrow_animation.cpp +++ b/drape_frontend/animation/arrow_animation.cpp @@ -9,11 +9,31 @@ ArrowAnimation::ArrowAnimation(m2::PointD const & startPos, m2::PointD const & e , m_positionInterpolator(moveDuration, 0.0 /* delay */, startPos, endPos) , m_angleInterpolator(startAngle, endAngle) { - m_objects.insert(Animation::MyPositionArrow); + m_objects.insert(Animation::Object::MyPositionArrow); if (m_positionInterpolator.IsActive()) - m_properties.insert(Animation::Position); + m_properties.insert(Animation::ObjectProperty::Position); if (m_angleInterpolator.IsActive()) - m_properties.insert(Animation::Angle); + m_properties.insert(Animation::ObjectProperty::Angle); +} + +void ArrowAnimation::Init(ScreenBase const & screen, TPropertyCache const & properties) +{ + PropertyValue value; + if (GetCachedProperty(properties, Animation::Object::MyPositionArrow, Animation::ObjectProperty::Position, value)) + { + m_positionInterpolator = PositionInterpolator(m_positionInterpolator.GetDuration(), + 0.0 /* delay */, + value.m_valuePointD, + m_positionInterpolator.GetTargetPosition()); + if (m_positionInterpolator.IsActive()) + m_properties.insert(Animation::ObjectProperty::Position); + } + if (GetCachedProperty(properties, Animation::Object::MyPositionArrow, Animation::ObjectProperty::Angle, value)) + { + m_angleInterpolator = AngleInterpolator(value.m_valueD, m_angleInterpolator.GetTargetAngle()); + if (m_angleInterpolator.IsActive()) + m_properties.insert(Animation::ObjectProperty::Angle); + } } Animation::TAnimObjects const & ArrowAnimation::GetObjects() const @@ -21,17 +41,17 @@ Animation::TAnimObjects const & ArrowAnimation::GetObjects() const return m_objects; } -bool ArrowAnimation::HasObject(TObject object) const +bool ArrowAnimation::HasObject(Object object) const { - return object == Animation::MyPositionArrow; + return object == Animation::Object::MyPositionArrow; } -Animation::TObjectProperties const & ArrowAnimation::GetProperties(TObject object) const +Animation::TObjectProperties const & ArrowAnimation::GetProperties(Object object) const { return m_properties; } -bool ArrowAnimation::HasProperty(TObject object, TProperty property) const +bool ArrowAnimation::HasProperty(Object object, ObjectProperty property) const { return HasObject(object) && m_properties.find(property) != m_properties.end(); } @@ -78,30 +98,30 @@ bool ArrowAnimation::IsFinished() const return m_positionInterpolator.IsFinished() && m_angleInterpolator.IsFinished(); } -bool ArrowAnimation::GetProperty(TObject object, TProperty property, PropertyValue & value) const +bool ArrowAnimation::GetProperty(Object object, ObjectProperty property, PropertyValue & value) const { return GetProperty(object, property, false /* targetValue */, value); } -bool ArrowAnimation::GetTargetProperty(TObject object, TProperty property, PropertyValue & value) const +bool ArrowAnimation::GetTargetProperty(Object object, ObjectProperty property, PropertyValue & value) const { return GetProperty(object, property, true /* targetValue */, value); } -bool ArrowAnimation::GetProperty(TObject object, TProperty property, bool targetValue, PropertyValue & value) const +bool ArrowAnimation::GetProperty(Object object, ObjectProperty property, bool targetValue, PropertyValue & value) const { - ASSERT_EQUAL(object, Animation::MyPositionArrow, ()); + ASSERT_EQUAL(static_cast(object), static_cast(Animation::Object::MyPositionArrow), ()); switch (property) { - case Animation::Position: + case Animation::ObjectProperty::Position: if (m_positionInterpolator.IsActive()) { value = PropertyValue(targetValue ? m_positionInterpolator.GetTargetPosition() : m_positionInterpolator.GetPosition()); return true; } return false; - case Animation::Angle: + case Animation::ObjectProperty::Angle: if (m_angleInterpolator.IsActive()) { value = PropertyValue(targetValue ? m_angleInterpolator.GetTargetAngle() : m_angleInterpolator.GetAngle()); @@ -109,7 +129,7 @@ bool ArrowAnimation::GetProperty(TObject object, TProperty property, bool target } return false; default: - ASSERT(false, ("Wrong property:", property)); + ASSERT(false, ("Wrong property:", static_cast(property))); } return false; diff --git a/drape_frontend/animation/arrow_animation.hpp b/drape_frontend/animation/arrow_animation.hpp index 5d20d85ace..e8385d1ea5 100644 --- a/drape_frontend/animation/arrow_animation.hpp +++ b/drape_frontend/animation/arrow_animation.hpp @@ -12,12 +12,14 @@ public: ArrowAnimation(m2::PointD const & startPos, m2::PointD const & endPos, double moveDuration, double startAngle, double endAngle); - Animation::Type GetType() const override { return Animation::Arrow; } + void Init(ScreenBase const & screen, TPropertyCache const & properties) override; + + Animation::Type GetType() const override { return Animation::Type::Arrow; } TAnimObjects const & GetObjects() const override; - bool HasObject(TObject object) const override; - TObjectProperties const & GetProperties(TObject object) const override; - bool HasProperty(TObject object, TProperty property) const override; + bool HasObject(Object object) const override; + TObjectProperties const & GetProperties(Object object) const override; + bool HasProperty(Object object, ObjectProperty property) const override; void SetMaxDuration(double maxDuration) override; double GetDuration() const override; @@ -26,11 +28,11 @@ public: void Advance(double elapsedSeconds) override; void Finish() override; - bool GetProperty(TObject object, TProperty property, PropertyValue & value) const override; - bool GetTargetProperty(TObject object, TProperty property, PropertyValue & value) const override; + bool GetProperty(Object object, ObjectProperty property, PropertyValue & value) const override; + bool GetTargetProperty(Object object, ObjectProperty property, PropertyValue & value) const override; private: - bool GetProperty(TObject object, TProperty property, bool targetValue, PropertyValue & value) const; + bool GetProperty(Object object, ObjectProperty property, bool targetValue, PropertyValue & value) const; TAnimObjects m_objects; TObjectProperties m_properties; diff --git a/drape_frontend/animation/follow_animation.cpp b/drape_frontend/animation/follow_animation.cpp index 32d0f59205..e8f5f06206 100644 --- a/drape_frontend/animation/follow_animation.cpp +++ b/drape_frontend/animation/follow_animation.cpp @@ -12,48 +12,58 @@ namespace df MapFollowAnimation::MapFollowAnimation(ScreenBase const & screen, m2::PointD const & globalUserPosition, m2::PointD const & endPixelPosition, - double startScale, double endScale, - double startAngle, double endAngle, + double endScale, double endAngle, bool isAutoZoom) : Animation(true /* couldBeInterrupted */, true /* couldBeBlended */) , m_isAutoZoom(isAutoZoom) - , m_scaleInterpolator(startScale, endScale, m_isAutoZoom) - , m_angleInterpolator(startAngle, endAngle) , m_globalPosition(globalUserPosition) , m_endPixelPosition(endPixelPosition) + , m_endScale(endScale) + , m_endAngle(endAngle) { - m_offset = screen.PtoG(screen.P3dtoP(m_endPixelPosition)) - m_globalPosition; - double const scale = m_isAutoZoom ? screen.GetScale() : (startScale + endScale) / 2.0; - double const moveDuration = PositionInterpolator::GetMoveDuration(m_offset.Length(), screen.PixelRectIn3d(), scale); + TPropertyCache properties; + Init(screen, properties); +} +void MapFollowAnimation::Init(ScreenBase const & screen, TPropertyCache const & properties) +{ + ScreenBase currentScreen; + GetCurrentScreen(properties, screen, currentScreen); + + m_offset = currentScreen.PtoG(currentScreen.P3dtoP(m_endPixelPosition)) - m_globalPosition; + double const averageScale = m_isAutoZoom ? currentScreen.GetScale() : (currentScreen.GetScale() + m_endScale) / 2.0; + double const moveDuration = PositionInterpolator::GetMoveDuration(m_offset.Length(), screen.PixelRectIn3d(), averageScale); m_offsetInterpolator = PositionInterpolator(moveDuration, 0.0, m_offset, m2::PointD(0.0, 0.0)); + m_scaleInterpolator = ScaleInterpolator(currentScreen.GetScale(), m_endScale, m_isAutoZoom); + m_angleInterpolator = AngleInterpolator(currentScreen.GetAngle(), m_endAngle); + double const duration = CalculateDuration(); m_scaleInterpolator.SetMinDuration(duration); m_angleInterpolator.SetMinDuration(duration); - m_objects.insert(Animation::MapPlane); + m_objects.insert(Animation::Object::MapPlane); if (m_scaleInterpolator.IsActive()) - m_properties.insert(Animation::Scale); + m_properties.insert(Animation::ObjectProperty::Scale); if (m_angleInterpolator.IsActive()) - m_properties.insert(Animation::Angle); + m_properties.insert(Animation::ObjectProperty::Angle); if (m_offsetInterpolator.IsActive() || m_scaleInterpolator.IsActive() || m_angleInterpolator.IsActive()) - m_properties.insert(Animation::Position); + m_properties.insert(Animation::ObjectProperty::Position); // If MapFollowAnimation affects only angles, disable rewinding. SetCouldBeRewinded(!m_angleInterpolator.IsActive() || m_scaleInterpolator.IsActive() || m_offsetInterpolator.IsActive()); } -Animation::TObjectProperties const & MapFollowAnimation::GetProperties(TObject object) const +Animation::TObjectProperties const & MapFollowAnimation::GetProperties(Object object) const { - ASSERT_EQUAL(object, Animation::MapPlane, ()); + ASSERT_EQUAL(static_cast(object), static_cast(Animation::Object::MapPlane), ()); return m_properties; } -bool MapFollowAnimation::HasProperty(TObject object, TProperty property) const +bool MapFollowAnimation::HasProperty(Object object, ObjectProperty property) const { return HasObject(object) && m_properties.find(property) != m_properties.end(); } @@ -112,19 +122,19 @@ bool MapFollowAnimation::IsFinished() const return m_angleInterpolator.IsFinished() && m_scaleInterpolator.IsFinished() && m_offsetInterpolator.IsFinished(); } -bool MapFollowAnimation::GetProperty(TObject object, TProperty property, PropertyValue & value) const +bool MapFollowAnimation::GetProperty(Object object, ObjectProperty property, PropertyValue & value) const { return GetProperty(object, property, false /* targetValue */, value); } -bool MapFollowAnimation::GetTargetProperty(TObject object, TProperty property, PropertyValue & value) const +bool MapFollowAnimation::GetTargetProperty(Object object, ObjectProperty property, PropertyValue & value) const { return GetProperty(object, property, true /* targetValue */, value); } -bool MapFollowAnimation::GetProperty(TObject object, TProperty property, bool targetValue, PropertyValue & value) const +bool MapFollowAnimation::GetProperty(Object object, ObjectProperty property, bool targetValue, PropertyValue & value) const { - if (property == Animation::Position) + if (property == Animation::ObjectProperty::Position) { ScreenBase tmp = AnimationSystem::Instance().GetLastScreen(); if (targetValue) @@ -147,18 +157,18 @@ bool MapFollowAnimation::GetProperty(TObject object, TProperty property, bool ta value = PropertyValue(tmp.GetOrg()); return true; } - if (property == Animation::Angle) + if (property == Animation::ObjectProperty::Angle) { value = PropertyValue(targetValue ? m_angleInterpolator.GetTargetAngle() : m_angleInterpolator.GetAngle()); return true; } - if (property == Animation::Scale) + if (property == Animation::ObjectProperty::Scale) { value = PropertyValue((targetValue && !m_isAutoZoom) ? m_scaleInterpolator.GetTargetScale() : m_scaleInterpolator.GetScale()); return true; } - ASSERT(false, ("Wrong property:", property)); + ASSERT(false, ("Wrong property:", static_cast(property))); return false; } diff --git a/drape_frontend/animation/follow_animation.hpp b/drape_frontend/animation/follow_animation.hpp index ac17d6e27f..ef721fed9b 100644 --- a/drape_frontend/animation/follow_animation.hpp +++ b/drape_frontend/animation/follow_animation.hpp @@ -12,24 +12,25 @@ public: MapFollowAnimation(ScreenBase const & screen, m2::PointD const & globalUserPosition, m2::PointD const & endPixelPosition, - double startScale, double endScale, - double startAngle, double endAngle, + double endScale, double endAngle, bool isAutoZoom); - Animation::Type GetType() const override { return Animation::MapFollow; } + void Init(ScreenBase const & screen, TPropertyCache const & properties) override; + + Animation::Type GetType() const override { return Animation::Type::MapFollow; } TAnimObjects const & GetObjects() const override { return m_objects; } - bool HasObject(TObject object) const override + bool HasObject(Object object) const override { - return object == Animation::MapPlane; + return object == Animation::Object::MapPlane; } - TObjectProperties const & GetProperties(TObject object) const override; - bool HasProperty(TObject object, TProperty property) const override; + TObjectProperties const & GetProperties(Object object) const override; + bool HasProperty(Object object, ObjectProperty property) const override; void Advance(double elapsedSeconds) override; void Finish() override; @@ -38,8 +39,8 @@ public: double GetDuration() const override; bool IsFinished() const override; - bool GetProperty(TObject object, TProperty property, PropertyValue & value) const override; - bool GetTargetProperty(TObject object, TProperty property, PropertyValue & value) const override; + bool GetProperty(Object object, ObjectProperty property, PropertyValue & value) const override; + bool GetTargetProperty(Object object, ObjectProperty property, PropertyValue & value) const override; bool IsAutoZoom() const { return m_isAutoZoom; } @@ -47,7 +48,7 @@ public: bool HasPixelOffset() const; private: - bool GetProperty(TObject object, TProperty property, bool targetValue, PropertyValue & value) const; + bool GetProperty(Object object, ObjectProperty property, bool targetValue, PropertyValue & value) const; double CalculateDuration() const; bool m_isAutoZoom; @@ -57,6 +58,8 @@ private: m2::PointD const m_globalPosition; m2::PointD const m_endPixelPosition; + double const m_endScale; + double const m_endAngle; m2::PointD m_offset; diff --git a/drape_frontend/animation/linear_animation.cpp b/drape_frontend/animation/linear_animation.cpp index eb4caa8060..27ac9e94d9 100644 --- a/drape_frontend/animation/linear_animation.cpp +++ b/drape_frontend/animation/linear_animation.cpp @@ -13,22 +13,32 @@ MapLinearAnimation::MapLinearAnimation(m2::PointD const & startPos, m2::PointD c , m_positionInterpolator(startPos, endPos, convertor) , m_scaleInterpolator(startScale, endScale, false /* isAutoZoom */) { - m_objects.insert(Animation::MapPlane); + m_objects.insert(Animation::Object::MapPlane); if (m_positionInterpolator.IsActive()) - m_properties.insert(Animation::Position); + m_properties.insert(Animation::ObjectProperty::Position); if (m_angleInterpolator.IsActive()) - m_properties.insert(Animation::Angle); + m_properties.insert(Animation::ObjectProperty::Angle); if (m_scaleInterpolator.IsActive()) - m_properties.insert(Animation::Scale); + m_properties.insert(Animation::ObjectProperty::Scale); } MapLinearAnimation::MapLinearAnimation() : Animation(true /* couldBeInterrupted */, false /* couldBeBlended */) { - m_objects.insert(Animation::MapPlane); + m_objects.insert(Animation::Object::MapPlane); +} + +void MapLinearAnimation::Init(ScreenBase const & screen, TPropertyCache const & properties) +{ + ScreenBase currentScreen; + GetCurrentScreen(properties, screen, currentScreen); + + SetMove(currentScreen.GlobalRect().GlobalZero(), m_positionInterpolator.GetTargetPosition(), currentScreen); + SetScale(currentScreen.GetScale(), m_scaleInterpolator.GetTargetScale()); + SetRotate(currentScreen.GetAngle(), m_angleInterpolator.GetTargetAngle()); } void MapLinearAnimation::SetMove(m2::PointD const & startPos, m2::PointD const & endPos, @@ -36,7 +46,7 @@ void MapLinearAnimation::SetMove(m2::PointD const & startPos, m2::PointD const & { m_positionInterpolator = PositionInterpolator(startPos, endPos, convertor); if (m_positionInterpolator.IsActive()) - m_properties.insert(Animation::Position); + m_properties.insert(Animation::ObjectProperty::Position); } void MapLinearAnimation::SetMove(m2::PointD const & startPos, m2::PointD const & endPos, @@ -44,30 +54,30 @@ void MapLinearAnimation::SetMove(m2::PointD const & startPos, m2::PointD const & { m_positionInterpolator = PositionInterpolator(startPos, endPos, viewportRect, scale); if (m_positionInterpolator.IsActive()) - m_properties.insert(Animation::Position); + m_properties.insert(Animation::ObjectProperty::Position); } void MapLinearAnimation::SetRotate(double startAngle, double endAngle) { m_angleInterpolator = AngleInterpolator(startAngle, endAngle); if (m_angleInterpolator.IsActive()) - m_properties.insert(Animation::Angle); + m_properties.insert(Animation::ObjectProperty::Angle); } void MapLinearAnimation::SetScale(double startScale, double endScale) { m_scaleInterpolator = ScaleInterpolator(startScale, endScale, false /* isAutoZoom */); if (m_scaleInterpolator.IsActive()) - m_properties.insert(Animation::Scale); + m_properties.insert(Animation::ObjectProperty::Scale); } -Animation::TObjectProperties const & MapLinearAnimation::GetProperties(TObject object) const +Animation::TObjectProperties const & MapLinearAnimation::GetProperties(Object object) const { - ASSERT_EQUAL(object, Animation::MapPlane, ()); + ASSERT_EQUAL(static_cast(object), static_cast(Animation::Object::MapPlane), ()); return m_properties; } -bool MapLinearAnimation::HasProperty(TObject object, TProperty property) const +bool MapLinearAnimation::HasProperty(Object object, ObjectProperty property) const { return HasObject(object) && m_properties.find(property) != m_properties.end(); } @@ -133,37 +143,37 @@ bool MapLinearAnimation::IsFinished() const m_positionInterpolator.IsFinished(); } -bool MapLinearAnimation::GetProperty(TObject object, TProperty property, PropertyValue & value) const +bool MapLinearAnimation::GetProperty(Object object, ObjectProperty property, PropertyValue & value) const { return GetProperty(object, property, false /* targetValue */, value); } -bool MapLinearAnimation::GetTargetProperty(TObject object, TProperty property, PropertyValue & value) const +bool MapLinearAnimation::GetTargetProperty(Object object, ObjectProperty property, PropertyValue & value) const { return GetProperty(object, property, true /* targetValue */, value); } -bool MapLinearAnimation::GetProperty(TObject object, TProperty property, bool targetValue, PropertyValue & value) const +bool MapLinearAnimation::GetProperty(Object object, ObjectProperty property, bool targetValue, PropertyValue & value) const { - ASSERT_EQUAL(object, Animation::MapPlane, ()); + ASSERT_EQUAL(static_cast(object), static_cast(Animation::Object::MapPlane), ()); switch (property) { - case Animation::Position: + case Animation::ObjectProperty::Position: if (m_positionInterpolator.IsActive()) { value = PropertyValue(targetValue ? m_positionInterpolator.GetTargetPosition() : m_positionInterpolator.GetPosition()); return true; } return false; - case Animation::Scale: + case Animation::ObjectProperty::Scale: if (m_scaleInterpolator.IsActive()) { value = PropertyValue(targetValue ? m_scaleInterpolator.GetTargetScale() : m_scaleInterpolator.GetScale()); return true; } return false; - case Animation::Angle: + case Animation::ObjectProperty::Angle: if (m_angleInterpolator.IsActive()) { value = PropertyValue(targetValue ? m_angleInterpolator.GetTargetAngle() : m_angleInterpolator.GetAngle()); @@ -171,7 +181,7 @@ bool MapLinearAnimation::GetProperty(TObject object, TProperty property, bool ta } return false; default: - ASSERT(false, ("Wrong property:", property)); + ASSERT(false, ("Wrong property:", static_cast(property))); } return false; diff --git a/drape_frontend/animation/linear_animation.hpp b/drape_frontend/animation/linear_animation.hpp index 61e3e0ba59..a11c1ce84c 100644 --- a/drape_frontend/animation/linear_animation.hpp +++ b/drape_frontend/animation/linear_animation.hpp @@ -14,25 +14,27 @@ public: double startScale, double endScale, ScreenBase const & convertor); MapLinearAnimation(); + void Init(const ScreenBase &screen, const TPropertyCache &properties) override; + void SetMove(m2::PointD const & startPos, m2::PointD const & endPos, ScreenBase const & convertor); void SetMove(m2::PointD const & startPos, m2::PointD const & endPos, m2::RectD const & viewportRect, double scale); void SetRotate(double startAngle, double endAngle); void SetScale(double startScale, double endScale); - Animation::Type GetType() const override { return Animation::MapLinear; } + Animation::Type GetType() const override { return Animation::Type::MapLinear; } TAnimObjects const & GetObjects() const override { return m_objects; } - bool HasObject(TObject object) const override + bool HasObject(Object object) const override { - return object == Animation::MapPlane; + return object == Animation::Object::MapPlane; } - TObjectProperties const & GetProperties(TObject object) const override; - bool HasProperty(TObject object, TProperty property) const override; + TObjectProperties const & GetProperties(Object object) const override; + bool HasProperty(Object object, ObjectProperty property) const override; void Advance(double elapsedSeconds) override; void Finish() override; @@ -41,13 +43,13 @@ public: double GetDuration() const override; bool IsFinished() const override; - bool GetProperty(TObject object, TProperty property, PropertyValue & value) const override; - bool GetTargetProperty(TObject object, TProperty property, PropertyValue & value) const override; + bool GetProperty(Object object, ObjectProperty property, PropertyValue & value) const override; + bool GetTargetProperty(Object object, ObjectProperty property, PropertyValue & value) const override; void SetMaxScaleDuration(double maxDuration); private: - bool GetProperty(TObject object, TProperty property, bool targetValue, PropertyValue & value) const; + bool GetProperty(Object object, ObjectProperty property, bool targetValue, PropertyValue & value) const; AngleInterpolator m_angleInterpolator; PositionInterpolator m_positionInterpolator; diff --git a/drape_frontend/animation/parallel_animation.cpp b/drape_frontend/animation/parallel_animation.cpp index 22cdf386f7..b59a34031c 100644 --- a/drape_frontend/animation/parallel_animation.cpp +++ b/drape_frontend/animation/parallel_animation.cpp @@ -9,6 +9,12 @@ ParallelAnimation::ParallelAnimation() : Animation(true /* couldBeInterrupted */, true /* couldBeBlended */) {} +void ParallelAnimation::Init(ScreenBase const & screen, TPropertyCache const & properties) +{ + for (auto const & anim : m_animations) + anim->Init(screen, properties); +} + string ParallelAnimation::GetCustomType() const { return m_customType; @@ -24,18 +30,18 @@ Animation::TAnimObjects const & ParallelAnimation::GetObjects() const return m_objects; } -bool ParallelAnimation::HasObject(TObject object) const +bool ParallelAnimation::HasObject(Object object) const { return m_objects.find(object) != m_objects.end(); } -Animation::TObjectProperties const & ParallelAnimation::GetProperties(TObject object) const +Animation::TObjectProperties const & ParallelAnimation::GetProperties(Object object) const { ASSERT(HasObject(object), ()); return m_properties.find(object)->second; } -bool ParallelAnimation::HasProperty(TObject object, TProperty property) const +bool ParallelAnimation::HasProperty(Object object, ObjectProperty property) const { if (!HasObject(object)) return false; @@ -43,7 +49,7 @@ bool ParallelAnimation::HasProperty(TObject object, TProperty property) const return properties.find(property) != properties.end(); } -bool ParallelAnimation::HasTargetProperty(TObject object, TProperty property) const +bool ParallelAnimation::HasTargetProperty(Object object, ObjectProperty property) const { ASSERT(!m_animations.empty(), ()); for (auto const & anim : m_animations) @@ -73,7 +79,7 @@ bool ParallelAnimation::IsFinished() const return m_animations.empty(); } -bool ParallelAnimation::GetProperty(TObject object, TProperty property, PropertyValue & value) const +bool ParallelAnimation::GetProperty(Object object, ObjectProperty property, PropertyValue & value) const { ASSERT(!m_animations.empty(), ()); for (auto const & anim : m_animations) @@ -84,7 +90,7 @@ bool ParallelAnimation::GetProperty(TObject object, TProperty property, Property return false; } -bool ParallelAnimation::GetTargetProperty(TObject object, TProperty property, PropertyValue & value) const +bool ParallelAnimation::GetTargetProperty(Object object, ObjectProperty property, PropertyValue & value) const { ASSERT(!m_animations.empty(), ()); for (auto const & anim : m_animations) diff --git a/drape_frontend/animation/parallel_animation.hpp b/drape_frontend/animation/parallel_animation.hpp index 6d9a419e75..68a7404b3b 100644 --- a/drape_frontend/animation/parallel_animation.hpp +++ b/drape_frontend/animation/parallel_animation.hpp @@ -14,14 +14,16 @@ class ParallelAnimation : public Animation public: ParallelAnimation(); - Animation::Type GetType() const override { return Animation::Parallel; } + void Init(ScreenBase const & screen, TPropertyCache const & properties) override; + + Animation::Type GetType() const override { return Animation::Type::Parallel; } TAnimObjects const & GetObjects() const override; - bool HasObject(TObject object) const override; + bool HasObject(Object object) const override; - TObjectProperties const & GetProperties(TObject object) const override; - bool HasProperty(TObject object, TProperty property) const override; - bool HasTargetProperty(TObject object, TProperty property) const override; + TObjectProperties const & GetProperties(Object object) const override; + bool HasProperty(Object object, ObjectProperty property) const override; + bool HasTargetProperty(Object object, ObjectProperty property) const override; string GetCustomType() const override; void SetCustomType(string const & type); @@ -38,8 +40,8 @@ public: void Advance(double elapsedSeconds) override; void Finish() override; - bool GetProperty(TObject object, TProperty property, PropertyValue & value) const override; - bool GetTargetProperty(TObject object, TProperty property, PropertyValue & value) const override; + bool GetProperty(Object object, ObjectProperty property, PropertyValue & value) const override; + bool GetTargetProperty(Object object, ObjectProperty property, PropertyValue & value) const override; template T const * FindAnimation(Animation::Type type, char const * customType = nullptr) const { @@ -60,7 +62,7 @@ private: list> m_animations; TAnimObjects m_objects; - map m_properties; + map m_properties; string m_customType; }; diff --git a/drape_frontend/animation/scale_animation.cpp b/drape_frontend/animation/scale_animation.cpp index 2fb91703b2..2e39e78962 100644 --- a/drape_frontend/animation/scale_animation.cpp +++ b/drape_frontend/animation/scale_animation.cpp @@ -14,18 +14,26 @@ MapScaleAnimation::MapScaleAnimation(double startScale, double endScale, m2::Poi , m_pxScaleCenter(pxScaleCenter) , m_globalScaleCenter(globalScaleCenter) { - m_objects.insert(Animation::MapPlane); - m_properties.insert(Animation::Scale); - m_properties.insert(Animation::Position); + m_objects.insert(Animation::Object::MapPlane); + m_properties.insert(Animation::ObjectProperty::Scale); + m_properties.insert(Animation::ObjectProperty::Position); } -Animation::TObjectProperties const & MapScaleAnimation::GetProperties(TObject object) const +void MapScaleAnimation::Init(ScreenBase const & screen, TPropertyCache const & properties) { - ASSERT_EQUAL(object, Animation::MapPlane, ()); + ScreenBase currentScreen; + GetCurrentScreen(properties, screen, currentScreen); + + m_scaleInterpolator = ScaleInterpolator(currentScreen.GetScale(), m_scaleInterpolator.GetTargetScale(), false /* isAutoZoom */); +} + +Animation::TObjectProperties const & MapScaleAnimation::GetProperties(Object object) const +{ + ASSERT_EQUAL(static_cast(object), static_cast(Animation::Object::MapPlane), ()); return m_properties; } -bool MapScaleAnimation::HasProperty(TObject object, TProperty property) const +bool MapScaleAnimation::HasProperty(Object object, ObjectProperty property) const { return HasObject(object) && m_properties.find(property) != m_properties.end(); } @@ -56,11 +64,11 @@ bool MapScaleAnimation::IsFinished() const return m_scaleInterpolator.IsFinished(); } -bool MapScaleAnimation::GetProperty(TObject object, TProperty property, bool targetValue, PropertyValue & value) const +bool MapScaleAnimation::GetProperty(Object object, ObjectProperty property, bool targetValue, PropertyValue & value) const { - ASSERT_EQUAL(object, Animation::MapPlane, ()); + ASSERT_EQUAL(static_cast(object), static_cast(Animation::Object::MapPlane), ()); - if (property == Animation::Position) + if (property == Animation::ObjectProperty::Position) { ScreenBase screen = AnimationSystem::Instance().GetLastScreen(); screen.SetScale(targetValue ? m_scaleInterpolator.GetTargetScale() : m_scaleInterpolator.GetScale()); @@ -68,21 +76,21 @@ bool MapScaleAnimation::GetProperty(TObject object, TProperty property, bool tar value = PropertyValue(screen.PtoG(screen.GtoP(m_globalScaleCenter) + pixelOffset)); return true; } - if (property == Animation::Scale) + if (property == Animation::ObjectProperty::Scale) { value = PropertyValue(targetValue ? m_scaleInterpolator.GetTargetScale() : m_scaleInterpolator.GetScale()); return true; } - ASSERT(false, ("Wrong property:", property)); + ASSERT(false, ("Wrong property:", static_cast(property))); return false; } -bool MapScaleAnimation::GetTargetProperty(TObject object, TProperty property, PropertyValue & value) const +bool MapScaleAnimation::GetTargetProperty(Object object, ObjectProperty property, PropertyValue & value) const { return GetProperty(object, property, true /* targetValue */, value); } -bool MapScaleAnimation::GetProperty(TObject object, TProperty property, PropertyValue & value) const +bool MapScaleAnimation::GetProperty(Object object, ObjectProperty property, PropertyValue & value) const { return GetProperty(object, property, false /* targetValue */, value); } diff --git a/drape_frontend/animation/scale_animation.hpp b/drape_frontend/animation/scale_animation.hpp index 44b53c54a8..4bf5a0c750 100644 --- a/drape_frontend/animation/scale_animation.hpp +++ b/drape_frontend/animation/scale_animation.hpp @@ -12,20 +12,22 @@ public: MapScaleAnimation(double startScale, double endScale, m2::PointD const & globalScaleCenter, m2::PointD const & pxScaleCenter); - Animation::Type GetType() const override { return Animation::MapScale; } + void Init(ScreenBase const & screen, TPropertyCache const & properties) override; + + Animation::Type GetType() const override { return Animation::Type::MapScale; } TAnimObjects const & GetObjects() const override { return m_objects; } - bool HasObject(TObject object) const override + bool HasObject(Object object) const override { - return object == Animation::MapPlane; + return object == Animation::Object::MapPlane; } - TObjectProperties const & GetProperties(TObject object) const override; - bool HasProperty(TObject object, TProperty property) const override; + TObjectProperties const & GetProperties(Object object) const override; + bool HasProperty(Object object, ObjectProperty property) const override; void Advance(double elapsedSeconds) override; void Finish() override; @@ -34,11 +36,11 @@ public: double GetDuration() const override; bool IsFinished() const override; - bool GetProperty(TObject object, TProperty property, PropertyValue & value) const override; - bool GetTargetProperty(TObject object, TProperty property, PropertyValue & value) const override; + bool GetProperty(Object object, ObjectProperty property, PropertyValue & value) const override; + bool GetTargetProperty(Object object, ObjectProperty property, PropertyValue & value) const override; private: - bool GetProperty(TObject object, TProperty property, bool targetValue, PropertyValue & value) const; + bool GetProperty(Object object, ObjectProperty property, bool targetValue, PropertyValue & value) const; ScaleInterpolator m_scaleInterpolator; m2::PointD const m_pxScaleCenter; diff --git a/drape_frontend/animation/sequence_animation.cpp b/drape_frontend/animation/sequence_animation.cpp index 0928f76b1b..559c32fceb 100644 --- a/drape_frontend/animation/sequence_animation.cpp +++ b/drape_frontend/animation/sequence_animation.cpp @@ -12,6 +12,12 @@ SequenceAnimation::SequenceAnimation() { } +void SequenceAnimation::Init(ScreenBase const & screen, TPropertyCache const & properties) +{ + if (!m_animations.empty()) + m_animations.front()->Init(screen, properties); +} + string SequenceAnimation::GetCustomType() const { return m_customType; @@ -27,19 +33,19 @@ Animation::TAnimObjects const & SequenceAnimation::GetObjects() const return m_objects; } -bool SequenceAnimation::HasObject(TObject object) const +bool SequenceAnimation::HasObject(Object object) const { ASSERT(!m_animations.empty(), ()); return m_animations.front()->HasObject(object); } -Animation::TObjectProperties const & SequenceAnimation::GetProperties(TObject object) const +Animation::TObjectProperties const & SequenceAnimation::GetProperties(Object object) const { ASSERT(HasObject(object), ()); return m_properties.find(object)->second; } -bool SequenceAnimation::HasProperty(TObject object, TProperty property) const +bool SequenceAnimation::HasProperty(Object object, ObjectProperty property) const { if (!HasObject(object)) return false; @@ -47,7 +53,7 @@ bool SequenceAnimation::HasProperty(TObject object, TProperty property) const return m_animations.front()->HasProperty(object, property); } -bool SequenceAnimation::HasTargetProperty(TObject object, TProperty property) const +bool SequenceAnimation::HasTargetProperty(Object object, ObjectProperty property) const { ASSERT(!m_animations.empty(), ()); for (auto const & anim : m_animations) @@ -76,13 +82,13 @@ bool SequenceAnimation::IsFinished() const return m_animations.empty(); } -bool SequenceAnimation::GetProperty(TObject object, TProperty property, PropertyValue & value) const +bool SequenceAnimation::GetProperty(Object object, ObjectProperty property, PropertyValue & value) const { ASSERT(!m_animations.empty(), ()); return m_animations.front()->GetProperty(object, property, value); } -bool SequenceAnimation::GetTargetProperty(TObject object, TProperty property, PropertyValue & value) const +bool SequenceAnimation::GetTargetProperty(Object object, ObjectProperty property, PropertyValue & value) const { ASSERT(!m_animations.empty(), ()); diff --git a/drape_frontend/animation/sequence_animation.hpp b/drape_frontend/animation/sequence_animation.hpp index 6fbd16c31a..33077eb8be 100644 --- a/drape_frontend/animation/sequence_animation.hpp +++ b/drape_frontend/animation/sequence_animation.hpp @@ -13,12 +13,15 @@ class SequenceAnimation : public Animation { public: SequenceAnimation(); - Animation::Type GetType() const override { return Animation::Sequence; } + + void Init(ScreenBase const & screen, TPropertyCache const & properties) override; + + Animation::Type GetType() const override { return Animation::Type::Sequence; } TAnimObjects const & GetObjects() const override; - bool HasObject(TObject object) const override; - TObjectProperties const & GetProperties(TObject object) const override; - bool HasProperty(TObject object, TProperty property) const override; - bool HasTargetProperty(TObject object, TProperty property) const override; + bool HasObject(Object object) const override; + TObjectProperties const & GetProperties(Object object) const override; + bool HasProperty(Object object, ObjectProperty property) const override; + bool HasTargetProperty(Object object, ObjectProperty property) const override; string GetCustomType() const override; void SetCustomType(string const & type); @@ -27,8 +30,8 @@ public: double GetDuration() const override; bool IsFinished() const override; - bool GetProperty(TObject object, TProperty property, PropertyValue &value) const override; - bool GetTargetProperty(TObject object, TProperty property, PropertyValue &value) const override; + bool GetProperty(Object object, ObjectProperty property, PropertyValue &value) const override; + bool GetTargetProperty(Object object, ObjectProperty property, PropertyValue &value) const override; void AddAnimation(drape_ptr && animation); @@ -43,7 +46,7 @@ private: deque> m_animations; TAnimObjects m_objects; - map m_properties; + map m_properties; string m_customType; }; diff --git a/drape_frontend/animation_system.cpp b/drape_frontend/animation_system.cpp index 1021c3f3dd..1888db16c8 100644 --- a/drape_frontend/animation_system.cpp +++ b/drape_frontend/animation_system.cpp @@ -29,9 +29,9 @@ public: return; } - if (value.m_type == Animation::PropertyValue::ValueD) + if (value.m_type == Animation::PropertyValue::Type::ValueD) m_value.m_valueD += value.m_valueD; - else if (value.m_type == Animation::PropertyValue::ValuePointD) + else if (value.m_type == Animation::PropertyValue::Type::ValuePointD) m_value.m_valuePointD += value.m_valuePointD; } else @@ -48,9 +48,9 @@ public: double const scalar = 1.0 / m_counter; m_counter = 0; - if (m_value.m_type == Animation::PropertyValue::ValueD) + if (m_value.m_type == Animation::PropertyValue::Type::ValueD) m_value.m_valueD *= scalar; - else if (m_value.m_type == Animation::PropertyValue::ValuePointD) + else if (m_value.m_type == Animation::PropertyValue::Type::ValuePointD) m_value.m_valuePointD *= scalar; return m_value; @@ -94,13 +94,13 @@ bool AnimationSystem::GetScreen(ScreenBase const & currentScreen, TGetPropertyFn m2::PointD pos = currentScreen.GlobalRect().GlobalZero(); Animation::PropertyValue value; - if (getPropertyFn(Animation::MapPlane, Animation::Scale, value)) + if (getPropertyFn(Animation::Object::MapPlane, Animation::ObjectProperty::Scale, value)) scale = value.m_valueD; - if (getPropertyFn(Animation::MapPlane, Animation::Angle, value)) + if (getPropertyFn(Animation::Object::MapPlane, Animation::ObjectProperty::Angle, value)) angle = value.m_valueD; - if (getPropertyFn(Animation::MapPlane, Animation::Position, value)) + if (getPropertyFn(Animation::Object::MapPlane, Animation::ObjectProperty::Position, value)) pos = value.m_valuePointD; screen = currentScreen; @@ -112,7 +112,7 @@ bool AnimationSystem::GetScreen(ScreenBase const & currentScreen, TGetPropertyFn bool AnimationSystem::GetArrowPosition(m2::PointD & position) { Animation::PropertyValue value; - if (GetProperty(Animation::MyPositionArrow, Animation::Position, value)) + if (GetProperty(Animation::Object::MyPositionArrow, Animation::ObjectProperty::Position, value)) { position = value.m_valuePointD; return true; @@ -123,7 +123,7 @@ bool AnimationSystem::GetArrowPosition(m2::PointD & position) bool AnimationSystem::GetArrowAngle(double & angle) { Animation::PropertyValue value; - if (GetProperty(Animation::MyPositionArrow, Animation::Angle, value)) + if (GetProperty(Animation::Object::MyPositionArrow, Animation::ObjectProperty::Angle, value)) { angle = value.m_valueD; return true; @@ -131,7 +131,7 @@ bool AnimationSystem::GetArrowAngle(double & angle) return false; } -bool AnimationSystem::AnimationExists(Animation::TObject object) const +bool AnimationSystem::AnimationExists(Animation::Object object) const { if (!m_animationChain.empty()) { @@ -337,7 +337,7 @@ void AnimationSystem::FinishAnimations(Animation::Type type, string const & cust }, rewind, finishAll); } -void AnimationSystem::FinishObjectAnimations(Animation::TObject object, bool rewind, bool finishAll) +void AnimationSystem::FinishObjectAnimations(Animation::Object object, bool rewind, bool finishAll) { FinishAnimations([&object](shared_ptr const & anim) { return anim->HasObject(object); }, rewind, finishAll); @@ -392,7 +392,7 @@ void AnimationSystem::Print() } #endif -bool AnimationSystem::GetProperty(Animation::TObject object, Animation::TProperty property, +bool AnimationSystem::GetProperty(Animation::Object object, Animation::ObjectProperty property, Animation::PropertyValue & value) const { if (!m_animationChain.empty()) @@ -424,7 +424,7 @@ bool AnimationSystem::GetProperty(Animation::TObject object, Animation::TPropert return false; } -bool AnimationSystem::GetTargetProperty(Animation::TObject object, Animation::TProperty property, +bool AnimationSystem::GetTargetProperty(Animation::Object object, Animation::ObjectProperty property, Animation::PropertyValue & value) const { if (!m_animationChain.empty()) @@ -481,12 +481,14 @@ void AnimationSystem::StartNextAnimations() for (auto & anim : *(m_animationChain.front())) startedAnimations.push_back(anim); - //TODO (in future): use propertyCache to load start values to the next animations for (auto & weak_anim : startedAnimations) { shared_ptr anim = weak_anim.lock(); if (anim != nullptr) + { + anim->Init(m_lastScreen, m_propertyCache); anim->OnStart(); + } } } } diff --git a/drape_frontend/animation_system.hpp b/drape_frontend/animation_system.hpp index cc18969338..0db3911942 100644 --- a/drape_frontend/animation_system.hpp +++ b/drape_frontend/animation_system.hpp @@ -28,7 +28,7 @@ public: bool GetArrowPosition(m2::PointD & position); bool GetArrowAngle(double & angle); - bool AnimationExists(Animation::TObject object) const; + bool AnimationExists(Animation::Object object) const; bool HasAnimations() const; void CombineAnimation(drape_ptr && animation); @@ -36,7 +36,7 @@ public: void FinishAnimations(Animation::Type type, bool rewind, bool finishAll); void FinishAnimations(Animation::Type type, string const & customType, bool rewind, bool finishAll); - void FinishObjectAnimations(Animation::TObject object, bool rewind, bool finishAll); + void FinishObjectAnimations(Animation::Object object, bool rewind, bool finishAll); template T const * FindAnimation(Animation::Type type, char const * customType = nullptr) const { @@ -64,13 +64,13 @@ public: private: AnimationSystem() = default; - using TGetPropertyFn = function; bool GetScreen(ScreenBase const & currentScreen, TGetPropertyFn const & getPropertyFn, ScreenBase & screen); - bool GetProperty(Animation::TObject object, Animation::TProperty property, + bool GetProperty(Animation::Object object, Animation::ObjectProperty property, Animation::PropertyValue & value) const; - bool GetTargetProperty(Animation::TObject object, Animation::TProperty property, + bool GetTargetProperty(Animation::Object object, Animation::ObjectProperty property, Animation::PropertyValue & value) const; void StartNextAnimations(); void FinishAnimations(function const &)> const & predicate, @@ -82,7 +82,7 @@ private: using TAnimationList = list>; using TAnimationChain = deque>; - using TPropertyCache = map, Animation::PropertyValue>; + using TPropertyCache = map, Animation::PropertyValue>; TAnimationChain m_animationChain; mutable TPropertyCache m_propertyCache; diff --git a/drape_frontend/frontend_renderer.cpp b/drape_frontend/frontend_renderer.cpp index ec26b2ad48..307072349b 100755 --- a/drape_frontend/frontend_renderer.cpp +++ b/drape_frontend/frontend_renderer.cpp @@ -780,6 +780,7 @@ void FrontendRenderer::AcceptMessage(ref_ptr message) m_trafficRenderer->Clear(msg->GetMwmId()); break; } + case Message::DrapeApiFlush: { ref_ptr msg = message; diff --git a/drape_frontend/kinetic_scroller.cpp b/drape_frontend/kinetic_scroller.cpp index f98c9fa5b9..13dddc929f 100644 --- a/drape_frontend/kinetic_scroller.cpp +++ b/drape_frontend/kinetic_scroller.cpp @@ -34,29 +34,29 @@ public: , m_elapsedTime(0.0) { SetInterruptedOnCombine(true); - m_objects.insert(Animation::MapPlane); - m_properties.insert(Animation::Position); + m_objects.insert(Animation::Object::MapPlane); + m_properties.insert(Animation::ObjectProperty::Position); } - Animation::Type GetType() const override { return Animation::KineticScroll; } + Animation::Type GetType() const override { return Animation::Type::KineticScroll; } TAnimObjects const & GetObjects() const override { return m_objects; } - bool HasObject(TObject object) const override + bool HasObject(Object object) const override { return m_objects.find(object) != m_objects.end(); } - TObjectProperties const & GetProperties(TObject object) const override + TObjectProperties const & GetProperties(Object object) const override { ASSERT(HasObject(object), ()); return m_properties; } - bool HasProperty(TObject object, TProperty property) const override + bool HasProperty(Object object, ObjectProperty property) const override { return HasObject(object) && m_properties.find(property) != m_properties.end(); } @@ -81,7 +81,7 @@ public: Animation::Finish(); } - bool GetProperty(TObject object, TProperty property, PropertyValue & value) const override + bool GetProperty(Object object, ObjectProperty property, PropertyValue & value) const override { ASSERT(HasProperty(object, property), ()); // Current position = target position - amplutide * e ^ (elapsed / duration). @@ -90,7 +90,7 @@ public: return true; } - bool GetTargetProperty(TObject object, TProperty property, PropertyValue & value) const override + bool GetTargetProperty(Object object, ObjectProperty property, PropertyValue & value) const override { ASSERT(HasProperty(object, property), ()); value = PropertyValue(m_endPos); diff --git a/drape_frontend/my_position_controller.cpp b/drape_frontend/my_position_controller.cpp index 1f670ee526..088adb2f83 100644 --- a/drape_frontend/my_position_controller.cpp +++ b/drape_frontend/my_position_controller.cpp @@ -346,9 +346,11 @@ void MyPositionController::NextMode(ScreenBase const & screen) return; } - // From follow-and-rotate mode we can transit to follow mode if routing is disabled. + // From follow-and-rotate mode we can transit to follow mode. if (m_mode == location::FollowAndRotate) { + if (m_isInRouting && screen.isPerspective()) + preferredZoomLevel = GetZoomLevel(ScreenBase::GetStartPerspectiveScale() * 1.1); ChangeMode(location::Follow); ChangeModelView(m_position, 0.0, m_visiblePixelRect.Center(), preferredZoomLevel); } @@ -405,7 +407,7 @@ void MyPositionController::OnLocationUpdate(location::GpsInfo const & info, bool else if (!m_isPositionAssigned) { ChangeMode(m_isFirstLaunch ? location::Follow : m_desiredInitMode); - if (!m_isFirstLaunch || !AnimationSystem::Instance().AnimationExists(Animation::MapPlane)) + if (!m_isFirstLaunch || !AnimationSystem::Instance().AnimationExists(Animation::Object::MapPlane)) { if (m_mode == location::Follow) ChangeModelView(m_position, kDoNotChangeZoom); @@ -438,7 +440,7 @@ void MyPositionController::OnLocationUpdate(location::GpsInfo const & info, bool } else { - if (!AnimationSystem::Instance().AnimationExists(Animation::MapPlane)) + if (!AnimationSystem::Instance().AnimationExists(Animation::Object::MapPlane)) ChangeModelView(m_position, kDoNotChangeZoom); } } diff --git a/drape_frontend/screen_animations.cpp b/drape_frontend/screen_animations.cpp index fa8941afac..17c788b23f 100644 --- a/drape_frontend/screen_animations.cpp +++ b/drape_frontend/screen_animations.cpp @@ -97,8 +97,7 @@ drape_ptr GetPrettyFollowAnimation(ScreenBase const & startSc } auto followAnim = make_unique_dp(tmp, userPos, endPixelPos, - tmp.GetScale(), targetScale, - tmp.GetAngle(), targetAngle, + targetScale, targetAngle, false /* isAutoZoom */); followAnim->SetMaxDuration(kMaxAnimationTimeSec * 0.5); sequenceAnim->AddAnimation(move(followAnim)); @@ -138,8 +137,7 @@ drape_ptr GetFollowAnimation(ScreenBase const & startScreen, double targetScale, double targetAngle, m2::PointD const & endPixelPos, bool isAutoZoom) { - auto anim = make_unique_dp(startScreen, userPos, endPixelPos, startScreen.GetScale(), targetScale, - startScreen.GetAngle(), targetAngle, isAutoZoom); + auto anim = make_unique_dp(startScreen, userPos, endPixelPos, targetScale, targetAngle, isAutoZoom); anim->SetMaxDuration(kMaxAnimationTimeSec); return anim; diff --git a/drape_frontend/user_event_stream.cpp b/drape_frontend/user_event_stream.cpp index 4f7aa29f25..4dda6ff207 100644 --- a/drape_frontend/user_event_stream.cpp +++ b/drape_frontend/user_event_stream.cpp @@ -288,7 +288,7 @@ ScreenBase const & UserEventStream::ProcessEvents(bool & modelViewChanged, bool void UserEventStream::ApplyAnimations() { - if (m_animationSystem.AnimationExists(Animation::MapPlane)) + if (m_animationSystem.AnimationExists(Animation::Object::MapPlane)) { ScreenBase screen; if (m_animationSystem.GetScreen(GetCurrentScreen(), screen)) @@ -318,12 +318,12 @@ bool UserEventStream::OnSetScale(ref_ptr scaleEvent) if (scaleEvent->IsAnim()) { - auto followAnim = m_animationSystem.FindAnimation(Animation::MapFollow); + auto followAnim = m_animationSystem.FindAnimation(Animation::Type::MapFollow); if (followAnim == nullptr) { - auto const parallelAnim = m_animationSystem.FindAnimation(Animation::Parallel, kParallelFollowAnim.c_str()); + auto const parallelAnim = m_animationSystem.FindAnimation(Animation::Type::Parallel, kParallelFollowAnim.c_str()); if (parallelAnim != nullptr) - followAnim = parallelAnim->FindAnimation(Animation::MapFollow); + followAnim = parallelAnim->FindAnimation(Animation::Type::MapFollow); } if (followAnim != nullptr && followAnim->HasScale()) { @@ -332,8 +332,8 @@ bool UserEventStream::OnSetScale(ref_ptr scaleEvent) return false; // Reset follow animation with scaling if we apply scale explicitly. - ResetAnimations(Animation::MapFollow); - ResetAnimations(Animation::Parallel, kParallelFollowAnim); + ResetAnimations(Animation::Type::MapFollow); + ResetAnimations(Animation::Type::Parallel, kParallelFollowAnim); } m2::PointD glbScaleCenter = m_navigator.PtoG(m_navigator.P3dtoP(scaleCenter)); @@ -479,16 +479,16 @@ bool UserEventStream::SetScreen(ScreenBase const & endScreen, bool isAnim, TAnim bool UserEventStream::InterruptFollowAnimations(bool force) { - Animation const * followAnim = m_animationSystem.FindAnimation(Animation::MapFollow); + Animation const * followAnim = m_animationSystem.FindAnimation(Animation::Type::MapFollow); if (followAnim == nullptr) - followAnim = m_animationSystem.FindAnimation(Animation::Sequence, kPrettyFollowAnim.c_str()); + followAnim = m_animationSystem.FindAnimation(Animation::Type::Sequence, kPrettyFollowAnim.c_str()); if (followAnim == nullptr) - followAnim = m_animationSystem.FindAnimation(Animation::Parallel, kParallelFollowAnim.c_str()); + followAnim = m_animationSystem.FindAnimation(Animation::Type::Parallel, kParallelFollowAnim.c_str()); if (followAnim == nullptr) - followAnim = m_animationSystem.FindAnimation(Animation::Parallel, kParallelLinearAnim.c_str()); + followAnim = m_animationSystem.FindAnimation(Animation::Type::Parallel, kParallelLinearAnim.c_str()); if (followAnim != nullptr) { @@ -551,7 +551,8 @@ bool UserEventStream::SetFollowAndRotate(m2::PointD const & userPos, m2::PointD { drape_ptr parallelAnim = make_unique_dp(); parallelAnim->SetCustomType(kParallelFollowAnim); - parallelAnim->AddAnimation(parallelAnimCreator(anim->GetType() == Animation::MapFollow ? anim->GetDuration() : kDoNotChangeDuration)); + parallelAnim->AddAnimation(parallelAnimCreator(anim->GetType() == Animation::Type::MapFollow ? anim->GetDuration() + : kDoNotChangeDuration)); parallelAnim->AddAnimation(move(anim)); m_animationSystem.CombineAnimation(move(parallelAnim)); } @@ -596,7 +597,7 @@ void UserEventStream::ResetAnimations(Animation::Type animType, string const & c void UserEventStream::ResetMapPlaneAnimations() { bool const hasAnimations = m_animationSystem.HasAnimations(); - m_animationSystem.FinishObjectAnimations(Animation::MapPlane, false /* rewind */, false /* finishAll */); + m_animationSystem.FinishObjectAnimations(Animation::Object::MapPlane, false /* rewind */, false /* finishAll */); if (hasAnimations) ApplyAnimations(); } @@ -608,7 +609,7 @@ m2::AnyRectD UserEventStream::GetCurrentRect() const void UserEventStream::GetTargetScreen(ScreenBase & screen) { - m_animationSystem.FinishAnimations(Animation::KineticScroll, false /* rewind */, false /* finishAll */); + m_animationSystem.FinishAnimations(Animation::Type::KineticScroll, false /* rewind */, false /* finishAll */); ApplyAnimations(); m_animationSystem.GetTargetScreen(m_navigator.Screen(), screen); @@ -670,7 +671,7 @@ bool UserEventStream::TouchDown(array const & touches) bool isMapTouch = true; // Interrupt kinetic scroll on touch down. - m_animationSystem.FinishAnimations(Animation::KineticScroll, false /* rewind */, true /* finishAll */); + m_animationSystem.FinishAnimations(Animation::Type::KineticScroll, false /* rewind */, true /* finishAll */); if (touchCount == 1) { diff --git a/geometry/screenbase.cpp b/geometry/screenbase.cpp index a052b87c4d..4d27415a2e 100644 --- a/geometry/screenbase.cpp +++ b/geometry/screenbase.cpp @@ -94,6 +94,7 @@ void ScreenBase::UpdateDependentParameters() } } +// static double ScreenBase::CalculateAutoPerspectiveAngle(double scale) { if (scale > kStartPerspectiveScale1) @@ -114,6 +115,12 @@ double ScreenBase::CalculateAutoPerspectiveAngle(double scale) return kMaxPerspectiveAngle2 * 0.99; } +// static +double ScreenBase::GetStartPerspectiveScale() +{ + return kStartPerspectiveScale1; +} + double ScreenBase::CalculatePerspectiveAngle(double scale) const { if (!m_isAutoPerspective) diff --git a/geometry/screenbase.hpp b/geometry/screenbase.hpp index c0d462a90f..7f45f9b3ac 100644 --- a/geometry/screenbase.hpp +++ b/geometry/screenbase.hpp @@ -169,6 +169,7 @@ public: Matrix3dT GetModelView(m2::PointD const & pivot, double scalar) const; static double CalculateAutoPerspectiveAngle(double scale); + static double GetStartPerspectiveScale(); /// Compute arbitrary pixel transformation, that translates the (oldPt1, oldPt2) -> (newPt1, newPt2) static MatrixT const CalcTransform(m2::PointD const & oldPt1, m2::PointD const & oldPt2,