blob: 36acd461feee06a06b9ae57c06cf880fb391a449 [file] [log] [blame]
/*
* Copyright (C) 2011-2017 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "ScrollingEffectsController.h"
#include "KeyboardScrollingAnimator.h"
#include "LayoutSize.h"
#include "Logging.h"
#include "PlatformWheelEvent.h"
#include "ScrollAnimationMomentum.h"
#include "ScrollAnimationSmooth.h"
#include "ScrollExtents.h"
#include "ScrollableArea.h"
#include "WheelEventTestMonitor.h"
#include <wtf/text/TextStream.h>
#if ENABLE(KINETIC_SCROLLING) && !PLATFORM(MAC)
#include "ScrollAnimationKinetic.h"
#endif
#if HAVE(RUBBER_BANDING)
#include "ScrollAnimationRubberBand.h"
#endif
namespace WebCore {
ScrollingEffectsController::ScrollingEffectsController(ScrollingEffectsControllerClient& client)
: m_client(client)
{
}
void ScrollingEffectsController::animationCallback(MonotonicTime currentTime)
{
if (m_currentAnimation) {
if (m_currentAnimation->isActive())
m_currentAnimation->serviceAnimation(currentTime);
if (m_currentAnimation && !m_currentAnimation->isActive())
m_currentAnimation = nullptr;
}
updateRubberBandAnimatingState();
updateKeyboardScrollingAnimatingState(currentTime);
startOrStopAnimationCallbacks();
}
void ScrollingEffectsController::startOrStopAnimationCallbacks()
{
bool needsCallbacks = m_isAnimatingRubberBand || m_isAnimatingKeyboardScrolling || m_currentAnimation;
if (needsCallbacks == m_isRunningAnimatingCallback)
return;
if (needsCallbacks) {
m_client.startAnimationCallback(*this);
m_isRunningAnimatingCallback = true;
return;
}
m_client.stopAnimationCallback(*this);
m_isRunningAnimatingCallback = false;
}
void ScrollingEffectsController::beginKeyboardScrolling()
{
setIsAnimatingKeyboardScrolling(true);
}
void ScrollingEffectsController::stopKeyboardScrolling()
{
setIsAnimatingKeyboardScrolling(false);
}
bool ScrollingEffectsController::startAnimatedScrollToDestination(FloatPoint startOffset, FloatPoint destinationOffset)
{
if (m_currentAnimation)
m_currentAnimation->stop();
LOG_WITH_STREAM(ScrollAnimations, stream << "ScrollingEffectsController " << this << " startAnimatedScrollToDestination start " << startOffset << " end " << destinationOffset);
// We always create and attempt to start the animation. If it turns out to not need animating, then the animation
// remains inactive, and we'll remove it on the next animationCallback().
m_currentAnimation = makeUnique<ScrollAnimationSmooth>(*this);
return downcast<ScrollAnimationSmooth>(*m_currentAnimation).startAnimatedScrollToDestination(startOffset, destinationOffset);
}
bool ScrollingEffectsController::retargetAnimatedScroll(FloatPoint newDestinationOffset)
{
if (!is<ScrollAnimationSmooth>(m_currentAnimation.get()))
return false;
LOG_WITH_STREAM(ScrollAnimations, stream << "ScrollingEffectsController " << this << " retargetAnimatedScroll to " << newDestinationOffset);
ASSERT(m_currentAnimation->isActive());
return downcast<ScrollAnimationSmooth>(*m_currentAnimation).retargetActiveAnimation(newDestinationOffset);
}
void ScrollingEffectsController::stopAnimatedScroll()
{
LOG_WITH_STREAM(ScrollAnimations, stream << "ScrollingEffectsController " << this << " stopAnimatedScroll");
if (m_currentAnimation)
m_currentAnimation->stop();
}
bool ScrollingEffectsController::startMomentumScrollWithInitialVelocity(const FloatPoint& initialOffset, const FloatSize& initialVelocity, const FloatSize& initialDelta, const Function<FloatPoint(const FloatPoint&)>& destinationModifier)
{
if (m_currentAnimation) {
m_currentAnimation->stop();
if (!is<ScrollAnimationMomentum>(m_currentAnimation.get()))
m_currentAnimation = nullptr;
}
if (!m_currentAnimation)
m_currentAnimation = makeUnique<ScrollAnimationMomentum>(*this);
LOG_WITH_STREAM(ScrollAnimations, stream << "ScrollingEffectsController " << this << " startMomentumScrollWithInitialVelocity " << initialVelocity << " from " << initialOffset);
return downcast<ScrollAnimationMomentum>(*m_currentAnimation).startAnimatedScrollWithInitialVelocity(initialOffset, initialVelocity, initialDelta, destinationModifier);
}
void ScrollingEffectsController::setIsAnimatingRubberBand(bool isAnimatingRubberBand)
{
if (isAnimatingRubberBand == m_isAnimatingRubberBand)
return;
m_isAnimatingRubberBand = isAnimatingRubberBand;
startOrStopAnimationCallbacks();
}
void ScrollingEffectsController::setIsAnimatingScrollSnap(bool isAnimatingScrollSnap)
{
if (isAnimatingScrollSnap == m_isAnimatingScrollSnap)
return;
m_isAnimatingScrollSnap = isAnimatingScrollSnap;
startOrStopAnimationCallbacks();
}
void ScrollingEffectsController::setIsAnimatingKeyboardScrolling(bool isAnimatingKeyboardScrolling)
{
if (isAnimatingKeyboardScrolling == m_isAnimatingKeyboardScrolling)
return;
m_isAnimatingKeyboardScrolling = isAnimatingKeyboardScrolling;
startOrStopAnimationCallbacks();
}
void ScrollingEffectsController::contentsSizeChanged()
{
if (m_currentAnimation)
m_currentAnimation->updateScrollExtents();
}
bool ScrollingEffectsController::usesScrollSnap() const
{
return !!m_scrollSnapState;
}
void ScrollingEffectsController::setSnapOffsetsInfo(const LayoutScrollSnapOffsetsInfo& snapOffsetInfo)
{
if (snapOffsetInfo.isEmpty()) {
m_scrollSnapState = nullptr;
return;
}
bool shouldComputeCurrentSnapIndices = !m_scrollSnapState;
if (!m_scrollSnapState)
m_scrollSnapState = makeUnique<ScrollSnapAnimatorState>(*this);
m_scrollSnapState->setSnapOffsetInfo(snapOffsetInfo);
if (shouldComputeCurrentSnapIndices)
updateActiveScrollSnapIndexForClientOffset();
LOG_WITH_STREAM(ScrollSnap, stream << "ScrollingEffectsController " << this << " setSnapOffsetsInfo new state: " << ValueOrNull(m_scrollSnapState.get()));
}
const LayoutScrollSnapOffsetsInfo* ScrollingEffectsController::snapOffsetsInfo() const
{
return m_scrollSnapState ? &m_scrollSnapState->snapOffsetInfo() : nullptr;
}
std::optional<unsigned> ScrollingEffectsController::activeScrollSnapIndexForAxis(ScrollEventAxis axis) const
{
if (!usesScrollSnap())
return std::nullopt;
return m_scrollSnapState->activeSnapIndexForAxis(axis);
}
void ScrollingEffectsController::setActiveScrollSnapIndexForAxis(ScrollEventAxis axis, std::optional<unsigned> index)
{
if (!usesScrollSnap())
return;
m_scrollSnapState->setActiveSnapIndexForAxis(axis, index);
}
float ScrollingEffectsController::adjustedScrollDestination(ScrollEventAxis axis, FloatPoint destinationOffset, float velocity, std::optional<float> originalOffset) const
{
if (!usesScrollSnap())
return axis == ScrollEventAxis::Horizontal ? destinationOffset.x() : destinationOffset.y();
return m_scrollSnapState->adjustedScrollDestination(axis, destinationOffset, velocity, originalOffset, m_client.scrollExtents(), m_client.pageScaleFactor());
}
#if !PLATFORM(MAC)
#if ENABLE(KINETIC_SCROLLING)
bool ScrollingEffectsController::processWheelEventForKineticScrolling(const PlatformWheelEvent& event)
{
if (is<ScrollAnimationKinetic>(m_currentAnimation.get()))
m_currentAnimation->stop();
if (!event.hasPreciseScrollingDeltas()) {
m_scrollHistory.clear();
return false;
}
m_scrollHistory.append(event);
if (!event.isEndOfNonMomentumScroll() && !event.isTransitioningToMomentumScroll())
return false;
m_inScrollGesture = false;
if (m_currentAnimation && !is<ScrollAnimationKinetic>(m_currentAnimation.get())) {
m_currentAnimation->stop();
m_currentAnimation = nullptr;
}
if (usesScrollSnap())
return false;
if (!m_currentAnimation)
m_currentAnimation = makeUnique<ScrollAnimationKinetic>(*this);
auto& kineticAnimation = downcast<ScrollAnimationKinetic>(*m_currentAnimation);
while (!m_scrollHistory.isEmpty())
kineticAnimation.appendToScrollHistory(m_scrollHistory.takeFirst());
if (event.isEndOfNonMomentumScroll()) {
kineticAnimation.startAnimatedScrollWithInitialVelocity(m_client.scrollOffset(), kineticAnimation.computeVelocity(), m_client.allowsHorizontalScrolling(), m_client.allowsVerticalScrolling());
return true;
}
if (event.isTransitioningToMomentumScroll()) {
kineticAnimation.clearScrollHistory();
kineticAnimation.startAnimatedScrollWithInitialVelocity(m_client.scrollOffset(), event.swipeVelocity(), m_client.allowsHorizontalScrolling(), m_client.allowsVerticalScrolling());
return true;
}
ASSERT_NOT_REACHED();
return false;
}
#endif
void ScrollingEffectsController::adjustDeltaForSnappingIfNeeded(float& deltaX, float& deltaY)
{
if (snapOffsetsInfo() && !snapOffsetsInfo()->isEmpty()) {
float scale = m_client.pageScaleFactor();
auto scrollOffset = m_client.scrollOffset();
auto extents = m_client.scrollExtents();
auto originalOffset = LayoutPoint(scrollOffset.x() / scale, scrollOffset.y() / scale);
auto newOffset = LayoutPoint((scrollOffset.x() + deltaX) / scale, (scrollOffset.y() + deltaY) / scale);
auto offsetX = snapOffsetsInfo()->closestSnapOffset(ScrollEventAxis::Horizontal, LayoutSize(extents.contentsSize), newOffset, deltaX, originalOffset.x()).first;
auto offsetY = snapOffsetsInfo()->closestSnapOffset(ScrollEventAxis::Vertical, LayoutSize(extents.contentsSize), newOffset, deltaY, originalOffset.y()).first;
deltaX = (offsetX - originalOffset.x()) * scale;
deltaY = (offsetY - originalOffset.y()) * scale;
}
}
bool ScrollingEffectsController::handleWheelEvent(const PlatformWheelEvent& wheelEvent)
{
#if ENABLE(KINETIC_SCROLLING)
m_inScrollGesture = wheelEvent.hasPreciseScrollingDeltas() && !wheelEvent.isEndOfNonMomentumScroll() && !wheelEvent.isTransitioningToMomentumScroll();
if (processWheelEventForKineticScrolling(wheelEvent))
return true;
#endif
auto scrollOffset = m_client.scrollOffset();
float deltaX = m_client.allowsHorizontalScrolling() ? wheelEvent.deltaX() : 0;
float deltaY = m_client.allowsVerticalScrolling() ? wheelEvent.deltaY() : 0;
auto extents = m_client.scrollExtents();
auto minPosition = extents.minimumScrollOffset();
auto maxPosition = extents.maximumScrollOffset();
if ((deltaX < 0 && scrollOffset.x() >= maxPosition.x())
|| (deltaX > 0 && scrollOffset.x() <= minPosition.x()))
deltaX = 0;
if ((deltaY < 0 && scrollOffset.y() >= maxPosition.y())
|| (deltaY > 0 && scrollOffset.y() <= minPosition.y()))
deltaY = 0;
if (wheelEvent.granularity() == ScrollByPageWheelEvent) {
if (deltaX) {
bool negative = deltaX < 0;
deltaX = Scrollbar::pageStepDelta(extents.contentsSize.width());
if (negative)
deltaX = -deltaX;
}
if (deltaY) {
bool negative = deltaY < 0;
deltaY = Scrollbar::pageStepDelta(extents.contentsSize.height());
if (negative)
deltaY = -deltaY;
}
}
deltaX = -deltaX;
deltaY = -deltaY;
if (!m_inScrollGesture)
adjustDeltaForSnappingIfNeeded(deltaX, deltaY);
if (!deltaX && !deltaY)
return false;
#if ENABLE(SMOOTH_SCROLLING)
if (m_client.scrollAnimationEnabled() && !m_inScrollGesture) {
if (is<ScrollAnimationSmooth>(m_currentAnimation.get())) {
auto lastDestinationOffset = downcast<ScrollAnimationSmooth>(*m_currentAnimation).destinationOffset();
retargetAnimatedScroll(lastDestinationOffset + FloatSize { deltaX, deltaY });
} else
startAnimatedScrollToDestination(scrollOffset, scrollOffset + FloatSize { deltaX, deltaY });
return true;
}
#endif
m_client.immediateScrollBy({ deltaX, deltaY });
return true;
}
bool ScrollingEffectsController::isUserScrollInProgress() const
{
return m_inScrollGesture;
}
bool ScrollingEffectsController::isScrollSnapInProgress() const
{
if (!usesScrollSnap())
return false;
if (m_inScrollGesture || (m_currentAnimation && m_currentAnimation->isActive()))
return true;
return false;
}
#endif
void ScrollingEffectsController::updateActiveScrollSnapIndexForClientOffset()
{
if (!usesScrollSnap())
return;
ScrollOffset offset = roundedIntPoint(m_client.scrollOffset());
if (m_scrollSnapState->setNearestScrollSnapIndexForOffset(offset, m_client.scrollExtents(), m_client.pageScaleFactor()))
m_activeScrollSnapIndexDidChange = true;
}
void ScrollingEffectsController::resnapAfterLayout()
{
if (!usesScrollSnap())
return;
// If we are already snapped in a particular axis, maintain that. Otherwise, snap to the nearest eligible snap point.
ScrollOffset offset = roundedIntPoint(m_client.scrollOffset());
if (m_scrollSnapState->resnapAfterLayout(offset, m_client.scrollExtents(), m_client.pageScaleFactor()))
m_activeScrollSnapIndexDidChange = true;
}
void ScrollingEffectsController::startScrollSnapAnimation()
{
if (m_isAnimatingScrollSnap)
return;
LOG_WITH_STREAM(ScrollSnap, stream << "ScrollingEffectsController " << this << " startScrollSnapAnimation (main thread " << isMainThread() << ")");
#if PLATFORM(MAC)
startDeferringWheelEventTestCompletionDueToScrollSnapping();
#endif
m_client.willStartScrollSnapAnimation();
setIsAnimatingScrollSnap(true);
}
void ScrollingEffectsController::stopScrollSnapAnimation()
{
if (!m_isAnimatingScrollSnap)
return;
LOG_WITH_STREAM(ScrollSnap, stream << "ScrollingEffectsController " << this << " stopScrollSnapAnimation (main thread " << isMainThread() << ")");
#if PLATFORM(MAC)
stopDeferringWheelEventTestCompletionDueToScrollSnapping();
#endif
m_client.didStopScrollSnapAnimation();
setIsAnimatingScrollSnap(false);
}
void ScrollingEffectsController::updateKeyboardScrollingAnimatingState(MonotonicTime currentTime)
{
if (!m_isAnimatingKeyboardScrolling)
return;
m_client.keyboardScrollingAnimator()->updateKeyboardScrollPosition(currentTime);
}
void ScrollingEffectsController::scrollAnimationDidUpdate(ScrollAnimation& animation, const FloatPoint& scrollOffset)
{
LOG_WITH_STREAM(ScrollAnimations, stream << "ScrollingEffectsController " << this << " scrollAnimationDidUpdate " << animation << " (main thread " << isMainThread() << ") scrolling to " << scrollOffset);
auto currentOffset = m_client.scrollOffset();
auto scrollDelta = scrollOffset - currentOffset;
m_client.immediateScrollBy(scrollDelta, animation.clamping());
}
void ScrollingEffectsController::scrollAnimationWillStart(ScrollAnimation& animation)
{
LOG_WITH_STREAM(ScrollAnimations, stream << "ScrollingEffectsController " << this << " scrollAnimationWillStart " << animation);
#if HAVE(RUBBER_BANDING)
if (is<ScrollAnimationRubberBand>(animation))
willStartRubberBandAnimation();
#else
UNUSED_PARAM(animation);
#endif
startOrStopAnimationCallbacks();
}
void ScrollingEffectsController::scrollAnimationDidEnd(ScrollAnimation& animation)
{
LOG_WITH_STREAM(ScrollAnimations, stream << "ScrollingEffectsController " << this << " scrollAnimationDidEnd " << animation);
if (usesScrollSnap() && m_isAnimatingScrollSnap) {
m_scrollSnapState->transitionToDestinationReachedState();
stopScrollSnapAnimation();
}
#if HAVE(RUBBER_BANDING)
if (is<ScrollAnimationRubberBand>(animation))
didStopRubberBandAnimation();
#else
UNUSED_PARAM(animation);
#endif
// FIXME: Need to track state better and only call this when the running animation is for CSS smooth scrolling. Calling should be harmless, though.
m_client.didStopAnimatedScroll();
startOrStopAnimationCallbacks();
}
ScrollExtents ScrollingEffectsController::scrollExtentsForAnimation(ScrollAnimation&)
{
return m_client.scrollExtents();
}
// Currently, only Mac supports momentum srolling-based scrollsnapping and rubber banding
// so all of these methods are a noop on non-Mac platforms.
#if !PLATFORM(MAC)
ScrollingEffectsController::~ScrollingEffectsController()
{
}
void ScrollingEffectsController::stopAllTimers()
{
}
void ScrollingEffectsController::scrollPositionChanged()
{
}
void ScrollingEffectsController::updateRubberBandAnimatingState()
{
}
#endif // PLATFORM(MAC)
} // namespace WebCore