-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathScrollAnimatorNone.cpp
651 lines (559 loc) · 22.6 KB
/
ScrollAnimatorNone.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
/*
* Copyright (c) 2011, Google 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:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * 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.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 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 THE COPYRIGHT
* OWNER OR 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"
#if ENABLE(SMOOTH_SCROLLING)
#include "ScrollAnimatorNone.h"
#include "FloatPoint.h"
#include "NotImplemented.h"
#include <wtf/OwnArrayPtr.h>
#include "PlatformGestureEvent.h"
#include "ScrollableArea.h"
#include "ScrollbarTheme.h"
#include <algorithm>
#include <wtf/CurrentTime.h>
#include <wtf/PassOwnPtr.h>
#if ENABLE(GESTURE_ANIMATION)
#include "ActivePlatformGestureAnimation.h"
#include "TouchFlingPlatformGestureCurve.h"
#endif
#if PLATFORM(CHROMIUM)
#include "TraceEvent.h"
#endif
using namespace std;
namespace WebCore {
const double kFrameRate = 60;
const double kTickTime = 1 / kFrameRate;
const double kMinimumTimerInterval = .001;
const double kZoomTicks = 11;
#if !(PLATFORM(BLACKBERRY))
PassOwnPtr<ScrollAnimator> ScrollAnimator::create(ScrollableArea* scrollableArea)
{
if (scrollableArea && scrollableArea->scrollAnimatorEnabled())
return adoptPtr(new ScrollAnimatorNone(scrollableArea));
return adoptPtr(new ScrollAnimator(scrollableArea));
}
#endif
ScrollAnimatorNone::Parameters::Parameters()
: m_isEnabled(false)
{
}
ScrollAnimatorNone::Parameters::Parameters(bool isEnabled, double animationTime, double repeatMinimumSustainTime, Curve attackCurve, double attackTime, Curve releaseCurve, double releaseTime, Curve coastTimeCurve, double maximumCoastTime)
: m_isEnabled(isEnabled)
, m_animationTime(animationTime)
, m_repeatMinimumSustainTime(repeatMinimumSustainTime)
, m_attackCurve(attackCurve)
, m_attackTime(attackTime)
, m_releaseCurve(releaseCurve)
, m_releaseTime(releaseTime)
, m_coastTimeCurve(coastTimeCurve)
, m_maximumCoastTime(maximumCoastTime)
{
}
double ScrollAnimatorNone::PerAxisData::curveAt(Curve curve, double t)
{
switch (curve) {
case Linear:
return t;
case Quadratic:
return t * t;
case Cubic:
return t * t * t;
case Quartic:
return t * t * t * t;
case Bounce:
// Time base is chosen to keep the bounce points simpler:
// 1 (half bounce coming in) + 1 + .5 + .25
const double kTimeBase = 2.75;
const double kTimeBaseSquared = kTimeBase * kTimeBase;
if (t < 1 / kTimeBase)
return kTimeBaseSquared * t * t;
if (t < 2 / kTimeBase) {
// Invert a [-.5,.5] quadratic parabola, center it in [1,2].
double t1 = t - 1.5 / kTimeBase;
const double kParabolaAtEdge = 1 - .5 * .5;
return kTimeBaseSquared * t1 * t1 + kParabolaAtEdge;
}
if (t < 2.5 / kTimeBase) {
// Invert a [-.25,.25] quadratic parabola, center it in [2,2.5].
double t2 = t - 2.25 / kTimeBase;
const double kParabolaAtEdge = 1 - .25 * .25;
return kTimeBaseSquared * t2 * t2 + kParabolaAtEdge;
}
// Invert a [-.125,.125] quadratic parabola, center it in [2.5,2.75].
const double kParabolaAtEdge = 1 - .125 * .125;
t -= 2.625 / kTimeBase;
return kTimeBaseSquared * t * t + kParabolaAtEdge;
}
ASSERT_NOT_REACHED();
return 0;
}
double ScrollAnimatorNone::PerAxisData::attackCurve(Curve curve, double deltaTime, double curveT, double startPosition, double attackPosition)
{
double t = deltaTime / curveT;
double positionFactor = curveAt(curve, t);
return startPosition + positionFactor * (attackPosition - startPosition);
}
double ScrollAnimatorNone::PerAxisData::releaseCurve(Curve curve, double deltaTime, double curveT, double releasePosition, double desiredPosition)
{
double t = deltaTime / curveT;
double positionFactor = 1 - curveAt(curve, 1 - t);
return releasePosition + (positionFactor * (desiredPosition - releasePosition));
}
double ScrollAnimatorNone::PerAxisData::coastCurve(Curve curve, double factor)
{
return 1 - curveAt(curve, 1 - factor);
}
double ScrollAnimatorNone::PerAxisData::curveIntegralAt(Curve curve, double t)
{
switch (curve) {
case Linear:
return t * t / 2;
case Quadratic:
return t * t * t / 3;
case Cubic:
return t * t * t * t / 4;
case Quartic:
return t * t * t * t * t / 5;
case Bounce:
const double kTimeBase = 2.75;
const double kTimeBaseSquared = kTimeBase * kTimeBase;
const double kTimeBaseSquaredOverThree = kTimeBaseSquared / 3;
double area;
double t1 = min(t, 1 / kTimeBase);
area = kTimeBaseSquaredOverThree * t1 * t1 * t1;
if (t < 1 / kTimeBase)
return area;
t1 = min(t - 1 / kTimeBase, 1 / kTimeBase);
// The integral of kTimeBaseSquared * (t1 - .5 / kTimeBase) * (t1 - .5 / kTimeBase) + kParabolaAtEdge
const double kSecondInnerOffset = kTimeBaseSquared * .5 / kTimeBase;
double bounceArea = t1 * (t1 * (kTimeBaseSquaredOverThree * t1 - kSecondInnerOffset) + 1);
area += bounceArea;
if (t < 2 / kTimeBase)
return area;
t1 = min(t - 2 / kTimeBase, 0.5 / kTimeBase);
// The integral of kTimeBaseSquared * (t1 - .25 / kTimeBase) * (t1 - .25 / kTimeBase) + kParabolaAtEdge
const double kThirdInnerOffset = kTimeBaseSquared * .25 / kTimeBase;
bounceArea = t1 * (t1 * (kTimeBaseSquaredOverThree * t1 - kThirdInnerOffset) + 1);
area += bounceArea;
if (t < 2.5 / kTimeBase)
return area;
t1 = t - 2.5 / kTimeBase;
// The integral of kTimeBaseSquared * (t1 - .125 / kTimeBase) * (t1 - .125 / kTimeBase) + kParabolaAtEdge
const double kFourthInnerOffset = kTimeBaseSquared * .125 / kTimeBase;
bounceArea = t1 * (t1 * (kTimeBaseSquaredOverThree * t1 - kFourthInnerOffset) + 1);
area += bounceArea;
return area;
}
ASSERT_NOT_REACHED();
return 0;
}
double ScrollAnimatorNone::PerAxisData::attackArea(Curve curve, double startT, double endT)
{
double startValue = curveIntegralAt(curve, startT);
double endValue = curveIntegralAt(curve, endT);
return endValue - startValue;
}
double ScrollAnimatorNone::PerAxisData::releaseArea(Curve curve, double startT, double endT)
{
double startValue = curveIntegralAt(curve, 1 - endT);
double endValue = curveIntegralAt(curve, 1 - startT);
return endValue - startValue;
}
ScrollAnimatorNone::PerAxisData::PerAxisData(ScrollAnimatorNone* parent, float* currentPosition, int visibleLength)
: m_currentPosition(currentPosition)
, m_visibleLength(visibleLength)
{
reset();
}
void ScrollAnimatorNone::PerAxisData::reset()
{
m_currentVelocity = 0;
m_desiredPosition = 0;
m_desiredVelocity = 0;
m_startPosition = 0;
m_startTime = 0;
m_startVelocity = 0;
m_animationTime = 0;
m_lastAnimationTime = 0;
m_attackPosition = 0;
m_attackTime = 0;
m_attackCurve = Quadratic;
m_releasePosition = 0;
m_releaseTime = 0;
m_releaseCurve = Quadratic;
}
bool ScrollAnimatorNone::PerAxisData::updateDataFromParameters(float step, float multiplier, float scrollableSize, double currentTime, Parameters* parameters)
{
float delta = step * multiplier;
if (!m_startTime || !delta || (delta < 0) != (m_desiredPosition - *m_currentPosition < 0)) {
m_desiredPosition = *m_currentPosition;
m_startTime = 0;
}
float newPosition = m_desiredPosition + delta;
if (newPosition < 0 || newPosition > scrollableSize)
newPosition = max(min(newPosition, scrollableSize), 0.0f);
if (newPosition == m_desiredPosition)
return false;
m_desiredPosition = newPosition;
if (!m_startTime) {
m_attackTime = parameters->m_attackTime;
m_attackCurve = parameters->m_attackCurve;
}
m_animationTime = parameters->m_animationTime;
m_releaseTime = parameters->m_releaseTime;
m_releaseCurve = parameters->m_releaseCurve;
// Prioritize our way out of over constraint.
if (m_attackTime + m_releaseTime > m_animationTime) {
if (m_releaseTime > m_animationTime)
m_releaseTime = m_animationTime;
m_attackTime = m_animationTime - m_releaseTime;
}
if (!m_startTime) {
// FIXME: This should be the time from the event that got us here.
m_startTime = currentTime - kTickTime / 2;
m_startPosition = *m_currentPosition;
m_lastAnimationTime = m_startTime;
}
m_startVelocity = m_currentVelocity;
double remainingDelta = m_desiredPosition - *m_currentPosition;
double attackAreaLeft = 0;
double deltaTime = m_lastAnimationTime - m_startTime;
double attackTimeLeft = max(0., m_attackTime - deltaTime);
double timeLeft = m_animationTime - deltaTime;
double minTimeLeft = m_releaseTime + min(parameters->m_repeatMinimumSustainTime, m_animationTime - m_releaseTime - attackTimeLeft);
if (timeLeft < minTimeLeft) {
m_animationTime = deltaTime + minTimeLeft;
timeLeft = minTimeLeft;
}
if (parameters->m_maximumCoastTime > (parameters->m_repeatMinimumSustainTime + parameters->m_releaseTime)) {
double targetMaxCoastVelocity = m_visibleLength * .25 * kFrameRate;
// This needs to be as minimal as possible while not being intrusive to page up/down.
double minCoastDelta = m_visibleLength;
if (fabs(remainingDelta) > minCoastDelta) {
double maxCoastDelta = parameters->m_maximumCoastTime * targetMaxCoastVelocity;
double coastFactor = min(1., (fabs(remainingDelta) - minCoastDelta) / (maxCoastDelta - minCoastDelta));
// We could play with the curve here - linear seems a little soft. Initial testing makes me want to feed into the sustain time more aggressively.
double coastMinTimeLeft = min(parameters->m_maximumCoastTime, minTimeLeft + coastCurve(parameters->m_coastTimeCurve, coastFactor) * (parameters->m_maximumCoastTime - minTimeLeft));
double additionalTime = max(0., coastMinTimeLeft - minTimeLeft);
if (additionalTime) {
double additionalReleaseTime = min(additionalTime, parameters->m_releaseTime / (parameters->m_releaseTime + parameters->m_repeatMinimumSustainTime) * additionalTime);
m_releaseTime = parameters->m_releaseTime + additionalReleaseTime;
m_animationTime = deltaTime + coastMinTimeLeft;
timeLeft = coastMinTimeLeft;
}
}
}
double releaseTimeLeft = min(timeLeft, m_releaseTime);
double sustainTimeLeft = max(0., timeLeft - releaseTimeLeft - attackTimeLeft);
if (attackTimeLeft) {
double attackSpot = deltaTime / m_attackTime;
attackAreaLeft = attackArea(m_attackCurve, attackSpot, 1) * m_attackTime;
}
double releaseSpot = (m_releaseTime - releaseTimeLeft) / m_releaseTime;
double releaseAreaLeft = releaseArea(m_releaseCurve, releaseSpot, 1) * m_releaseTime;
m_desiredVelocity = remainingDelta / (attackAreaLeft + sustainTimeLeft + releaseAreaLeft);
m_releasePosition = m_desiredPosition - m_desiredVelocity * releaseAreaLeft;
if (attackAreaLeft)
m_attackPosition = m_startPosition + m_desiredVelocity * attackAreaLeft;
else
m_attackPosition = m_releasePosition - (m_animationTime - m_releaseTime - m_attackTime) * m_desiredVelocity;
if (sustainTimeLeft) {
double roundOff = m_releasePosition - ((attackAreaLeft ? m_attackPosition : *m_currentPosition) + m_desiredVelocity * sustainTimeLeft);
m_desiredVelocity += roundOff / sustainTimeLeft;
}
return true;
}
// FIXME: Add in jank detection trace events into this function.
bool ScrollAnimatorNone::PerAxisData::animateScroll(double currentTime)
{
double lastScrollInterval = currentTime - m_lastAnimationTime;
if (lastScrollInterval < kMinimumTimerInterval)
return true;
m_lastAnimationTime = currentTime;
double deltaTime = currentTime - m_startTime;
double newPosition = *m_currentPosition;
if (deltaTime > m_animationTime) {
*m_currentPosition = m_desiredPosition;
reset();
return false;
}
if (deltaTime < m_attackTime)
newPosition = attackCurve(m_attackCurve, deltaTime, m_attackTime, m_startPosition, m_attackPosition);
else if (deltaTime < (m_animationTime - m_releaseTime))
newPosition = m_attackPosition + (deltaTime - m_attackTime) * m_desiredVelocity;
else {
// release is based on targeting the exact final position.
double releaseDeltaT = deltaTime - (m_animationTime - m_releaseTime);
newPosition = releaseCurve(m_releaseCurve, releaseDeltaT, m_releaseTime, m_releasePosition, m_desiredPosition);
}
// Normalize velocity to a per second amount. Could be used to check for jank.
if (lastScrollInterval > 0)
m_currentVelocity = (newPosition - *m_currentPosition) / lastScrollInterval;
*m_currentPosition = newPosition;
return true;
}
void ScrollAnimatorNone::PerAxisData::updateVisibleLength(int visibleLength)
{
m_visibleLength = visibleLength;
}
ScrollAnimatorNone::ScrollAnimatorNone(ScrollableArea* scrollableArea)
: ScrollAnimator(scrollableArea)
, m_horizontalData(this, &m_currentPosX, scrollableArea->visibleWidth())
, m_verticalData(this, &m_currentPosY, scrollableArea->visibleHeight())
, m_startTime(0)
#if USE(REQUEST_ANIMATION_FRAME_TIMER)
, m_animationTimer(this, &ScrollAnimatorNone::animationTimerFired)
#else
, m_animationActive(false)
#endif
, m_firstVelocity(0)
, m_firstVelocitySet(false)
, m_firstVelocityIsVertical(false)
{
}
ScrollAnimatorNone::~ScrollAnimatorNone()
{
stopAnimationTimerIfNeeded();
}
void ScrollAnimatorNone::fireUpAnAnimation(FloatPoint fp)
{
#if ENABLE(GESTURE_ANIMATION)
if (m_gestureAnimation)
m_gestureAnimation.clear();
m_gestureAnimation = ActivePlatformGestureAnimation::create(TouchFlingPlatformGestureCurve::createForTouchPad(fp), this);
#endif
#if USE(REQUEST_ANIMATION_FRAME_TIMER)
startNextTimer(0);
#else
startNextTimer();
#endif
}
ScrollAnimatorNone::Parameters ScrollAnimatorNone::parametersForScrollGranularity(ScrollGranularity granularity) const
{
#if !PLATFORM(QT)
switch (granularity) {
case ScrollByDocument:
return Parameters(true, 20 * kTickTime, 10 * kTickTime, Cubic, 10 * kTickTime, Cubic, 10 * kTickTime, Linear, 1);
case ScrollByLine:
return Parameters(true, 10 * kTickTime, 7 * kTickTime, Cubic, 3 * kTickTime, Cubic, 3 * kTickTime, Linear, 1);
case ScrollByPage:
return Parameters(true, 15 * kTickTime, 10 * kTickTime, Cubic, 5 * kTickTime, Cubic, 5 * kTickTime, Linear, 1);
case ScrollByPixel:
return Parameters(true, 11 * kTickTime, 2 * kTickTime, Cubic, 3 * kTickTime, Cubic, 3 * kTickTime, Quadratic, 1.25);
default:
ASSERT_NOT_REACHED();
}
#else
// This is a slightly different strategy for the animation with a steep attack curve and natural release curve.
// The fast acceleration makes the animation look more responsive to user input.
switch (granularity) {
case ScrollByDocument:
return Parameters(true, 20 * kTickTime, 10 * kTickTime, Cubic, 6 * kTickTime, Quadratic, 10 * kTickTime, Quadratic, 22 * kTickTime);
case ScrollByLine:
return Parameters(true, 6 * kTickTime, 5 * kTickTime, Cubic, 1 * kTickTime, Quadratic, 4 * kTickTime, Linear, 1);
case ScrollByPage:
return Parameters(true, 12 * kTickTime, 10 * kTickTime, Cubic, 3 * kTickTime, Quadratic, 6 * kTickTime, Linear, 1);
case ScrollByPixel:
return Parameters(true, 8 * kTickTime, 3 * kTickTime, Cubic, 2 * kTickTime, Quadratic, 5 * kTickTime, Quadratic, 1.25);
default:
ASSERT_NOT_REACHED();
}
#endif
return Parameters();
}
bool ScrollAnimatorNone::scroll(ScrollbarOrientation orientation, ScrollGranularity granularity, float step, float multiplier)
{
if (!m_scrollableArea->scrollAnimatorEnabled())
return ScrollAnimator::scroll(orientation, granularity, step, multiplier);
#if PLATFORM(CHROMIUM)
TRACE_EVENT0("webkit", "ScrollAnimatorNone::scroll");
#endif
// FIXME: get the type passed in. MouseWheel could also be by line, but should still have different
// animation parameters than the keyboard.
Parameters parameters;
switch (granularity) {
case ScrollByDocument:
case ScrollByLine:
case ScrollByPage:
case ScrollByPixel:
parameters = parametersForScrollGranularity(granularity);
break;
case ScrollByPrecisePixel:
return ScrollAnimator::scroll(orientation, granularity, step, multiplier);
case ScrollByPixelVelocity:
// FIXME: Generalize the scroll interface to support a richer set of parameters.
if (m_firstVelocitySet) {
float x = m_firstVelocityIsVertical ? multiplier : m_firstVelocity;
float y = m_firstVelocityIsVertical ? m_firstVelocity : multiplier;
FloatPoint fp(x, y);
fireUpAnAnimation(fp);
m_firstVelocitySet = false;
m_firstVelocityIsVertical = false;
} else {
m_firstVelocitySet = true;
m_firstVelocityIsVertical = orientation == VerticalScrollbar;
m_firstVelocity = multiplier;
}
return true;
}
// If the individual input setting is disabled, bail.
if (!parameters.m_isEnabled)
return ScrollAnimator::scroll(orientation, granularity, step, multiplier);
// This is an animatable scroll. Set the animation in motion using the appropriate parameters.
float scrollableSize = static_cast<float>(m_scrollableArea->scrollSize(orientation));
PerAxisData& data = (orientation == VerticalScrollbar) ? m_verticalData : m_horizontalData;
bool needToScroll = data.updateDataFromParameters(step, multiplier, scrollableSize, WTF::monotonicallyIncreasingTime(), ¶meters);
if (needToScroll && !animationTimerActive()) {
m_startTime = data.m_startTime;
animationWillStart();
animationTimerFired();
}
return needToScroll;
}
void ScrollAnimatorNone::scrollToOffsetWithoutAnimation(const FloatPoint& offset)
{
stopAnimationTimerIfNeeded();
m_horizontalData.reset();
*m_horizontalData.m_currentPosition = offset.x();
m_horizontalData.m_desiredPosition = offset.x();
m_verticalData.reset();
*m_verticalData.m_currentPosition = offset.y();
m_verticalData.m_desiredPosition = offset.y();
notifyPositionChanged();
}
#if !USE(REQUEST_ANIMATION_FRAME_TIMER)
void ScrollAnimatorNone::cancelAnimations()
{
m_animationActive = false;
#if ENABLE(GESTURE_ANIMATION)
m_gestureAnimation.clear();
#endif
}
void ScrollAnimatorNone::serviceScrollAnimations()
{
if (m_animationActive)
animationTimerFired();
}
#endif
void ScrollAnimatorNone::willEndLiveResize()
{
updateVisibleLengths();
}
void ScrollAnimatorNone::didAddVerticalScrollbar(Scrollbar*)
{
updateVisibleLengths();
}
void ScrollAnimatorNone::didAddHorizontalScrollbar(Scrollbar*)
{
updateVisibleLengths();
}
void ScrollAnimatorNone::updateVisibleLengths()
{
m_horizontalData.updateVisibleLength(scrollableArea()->visibleWidth());
m_verticalData.updateVisibleLength(scrollableArea()->visibleHeight());
}
#if USE(REQUEST_ANIMATION_FRAME_TIMER)
void ScrollAnimatorNone::animationTimerFired(Timer<ScrollAnimatorNone>* timer)
{
animationTimerFired();
}
#endif
void ScrollAnimatorNone::animationTimerFired()
{
#if PLATFORM(CHROMIUM)
TRACE_EVENT0("webkit", "ScrollAnimatorNone::animationTimerFired");
#endif
double currentTime = WTF::monotonicallyIncreasingTime();
double deltaToNextFrame = ceil((currentTime - m_startTime) * kFrameRate) / kFrameRate - (currentTime - m_startTime);
currentTime += deltaToNextFrame;
bool continueAnimation = false;
if (m_horizontalData.m_startTime && m_horizontalData.animateScroll(currentTime))
continueAnimation = true;
if (m_verticalData.m_startTime && m_verticalData.animateScroll(currentTime))
continueAnimation = true;
#if ENABLE(GESTURE_ANIMATION)
if (m_gestureAnimation) {
if (m_gestureAnimation->animate(currentTime))
continueAnimation = true;
else
m_gestureAnimation.clear();
}
#endif
if (continueAnimation)
#if USE(REQUEST_ANIMATION_FRAME_TIMER)
startNextTimer(max(kMinimumTimerInterval, deltaToNextFrame));
#else
startNextTimer();
else
m_animationActive = false;
#endif
#if PLATFORM(CHROMIUM)
TRACE_EVENT0("webkit", "ScrollAnimatorNone::notifyPositionChanged");
#endif
notifyPositionChanged();
if (!continueAnimation)
animationDidFinish();
}
#if USE(REQUEST_ANIMATION_FRAME_TIMER)
void ScrollAnimatorNone::startNextTimer(double delay)
{
m_animationTimer.startOneShot(delay);
}
#else
void ScrollAnimatorNone::startNextTimer()
{
if (scrollableArea()->scheduleAnimation())
m_animationActive = true;
}
#endif
bool ScrollAnimatorNone::animationTimerActive()
{
#if USE(REQUEST_ANIMATION_FRAME_TIMER)
return m_animationTimer.isActive();
#else
return m_animationActive;
#endif
}
void ScrollAnimatorNone::stopAnimationTimerIfNeeded()
{
if (animationTimerActive())
#if USE(REQUEST_ANIMATION_FRAME_TIMER)
m_animationTimer.stop();
#else
m_animationActive = false;
#endif
}
void ScrollAnimatorNone::scrollBy(const IntPoint& location)
{
m_currentPosX += location.x();
m_currentPosY += location.y();
}
} // namespace WebCore
#endif // ENABLE(SMOOTH_SCROLLING)