blob: 5fe5c399c98f541c3983f4d0d5c142bdd78b5693 [file] [log] [blame]
Torne (Richard Coles)1e202182013-10-18 15:46:42 +01001/*
2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 *
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
13 * distribution.
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#include "config.h"
32#include "core/animation/AnimatableRepeatable.h"
33
34namespace {
35
36size_t greatestCommonDivisor(size_t a, size_t b)
37{
38 return b ? greatestCommonDivisor(b, a % b) : a;
39}
40
41size_t lowestCommonMultiple(size_t a, size_t b)
42{
43 ASSERT(a && b);
44 return a / greatestCommonDivisor(a, b) * b;
45}
46
47} // namespace
48
49namespace WebCore {
50
Torne (Richard Coles)09380292014-02-21 12:17:33 +000051bool AnimatableRepeatable::usesDefaultInterpolationWith(const AnimatableValue* value) const
52{
Ben Murdoch07a852d2014-03-31 11:51:52 +010053 const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& fromValues = m_values;
54 const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& toValues = toAnimatableRepeatable(value)->m_values;
Torne (Richard Coles)09380292014-02-21 12:17:33 +000055 ASSERT(!fromValues.isEmpty() && !toValues.isEmpty());
56 size_t size = lowestCommonMultiple(fromValues.size(), toValues.size());
57 for (size_t i = 0; i < size; ++i) {
58 const AnimatableValue* from = fromValues[i % fromValues.size()].get();
59 const AnimatableValue* to = toValues[i % toValues.size()].get();
60 // Spec: If a pair of values cannot be interpolated, then the lists are not interpolable.
61 if (AnimatableValue::usesDefaultInterpolation(from, to))
62 return true;
63 }
64 return false;
65}
66
Ben Murdoch07a852d2014-03-31 11:51:52 +010067bool AnimatableRepeatable::interpolateLists(const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& fromValues, const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& toValues, double fraction, WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& interpolatedValues)
Torne (Richard Coles)1e202182013-10-18 15:46:42 +010068{
69 // Interpolation behaviour spec: http://www.w3.org/TR/css3-transitions/#animtype-repeatable-list
70 ASSERT(interpolatedValues.isEmpty());
71 ASSERT(!fromValues.isEmpty() && !toValues.isEmpty());
72 size_t size = lowestCommonMultiple(fromValues.size(), toValues.size());
73 for (size_t i = 0; i < size; ++i) {
74 const AnimatableValue* from = fromValues[i % fromValues.size()].get();
75 const AnimatableValue* to = toValues[i % toValues.size()].get();
76 // Spec: If a pair of values cannot be interpolated, then the lists are not interpolable.
Torne (Richard Coles)09380292014-02-21 12:17:33 +000077 if (AnimatableValue::usesDefaultInterpolation(from, to))
Torne (Richard Coles)1e202182013-10-18 15:46:42 +010078 return false;
79 interpolatedValues.append(interpolate(from, to, fraction));
80 }
81 return true;
82}
83
Ben Murdoch07a852d2014-03-31 11:51:52 +010084PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableRepeatable::interpolateTo(const AnimatableValue* value, double fraction) const
Torne (Richard Coles)1e202182013-10-18 15:46:42 +010085{
Ben Murdoch07a852d2014-03-31 11:51:52 +010086 WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> > interpolatedValues;
Torne (Richard Coles)1e202182013-10-18 15:46:42 +010087 bool success = interpolateLists(m_values, toAnimatableRepeatable(value)->m_values, fraction, interpolatedValues);
Ben Murdoch07a852d2014-03-31 11:51:52 +010088 if (success)
89 return create(interpolatedValues);
90 return defaultInterpolateTo(this, value, fraction);
Torne (Richard Coles)1e202182013-10-18 15:46:42 +010091}
92
Ben Murdoch07a852d2014-03-31 11:51:52 +010093PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableRepeatable::addWith(const AnimatableValue* value) const
Torne (Richard Coles)1e202182013-10-18 15:46:42 +010094{
Ben Murdoch07a852d2014-03-31 11:51:52 +010095 const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& otherValues = toAnimatableRepeatable(value)->m_values;
Torne (Richard Coles)1e202182013-10-18 15:46:42 +010096 ASSERT(!m_values.isEmpty() && !otherValues.isEmpty());
Ben Murdoch07a852d2014-03-31 11:51:52 +010097 WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> > addedValues(lowestCommonMultiple(m_values.size(), otherValues.size()));
Torne (Richard Coles)1e202182013-10-18 15:46:42 +010098 for (size_t i = 0; i < addedValues.size(); ++i) {
99 const AnimatableValue* left = m_values[i % m_values.size()].get();
100 const AnimatableValue* right = otherValues[i % otherValues.size()].get();
101 addedValues[i] = add(left, right);
102 }
103 return create(addedValues);
104}
105
106bool AnimatableRepeatable::equalTo(const AnimatableValue* value) const
107{
Ben Murdoch07a852d2014-03-31 11:51:52 +0100108 const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& otherValues = toAnimatableRepeatable(value)->m_values;
Torne (Richard Coles)1e202182013-10-18 15:46:42 +0100109 if (m_values.size() != otherValues.size())
110 return false;
111 for (size_t i = 0; i < m_values.size(); ++i) {
112 if (!m_values[i]->equals(otherValues[i].get()))
113 return false;
114 }
115 return true;
116}
117
Ben Murdoch07a852d2014-03-31 11:51:52 +0100118void AnimatableRepeatable::trace(Visitor* visitor)
119{
120 visitor->trace(m_values);
121}
122
Torne (Richard Coles)1e202182013-10-18 15:46:42 +0100123} // namespace WebCore