OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/logging.h" | 5 #include "base/logging.h" |
6 #include "base/memory/scoped_ptr.h" | 6 #include "base/memory/scoped_ptr.h" |
7 #include "cc/animation/timing_function.h" | 7 #include "cc/animation/timing_function.h" |
| 8 #include "cc/base/math_util.h" |
8 | 9 |
9 namespace cc { | 10 namespace cc { |
10 | 11 |
11 TimingFunction::TimingFunction() {} | 12 TimingFunction::TimingFunction() {} |
12 | 13 |
13 TimingFunction::~TimingFunction() {} | 14 TimingFunction::~TimingFunction() {} |
14 | 15 |
15 scoped_ptr<CubicBezierTimingFunction> CubicBezierTimingFunction::Create( | 16 scoped_ptr<CubicBezierTimingFunction> CubicBezierTimingFunction::Create( |
16 double x1, double y1, double x2, double y2) { | 17 double x1, double y1, double x2, double y2) { |
17 return make_scoped_ptr(new CubicBezierTimingFunction(x1, y1, x2, y2)); | 18 return make_scoped_ptr(new CubicBezierTimingFunction(x1, y1, x2, y2)); |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 } | 57 } |
57 | 58 |
58 scoped_ptr<TimingFunction> EaseOutTimingFunction::Create() { | 59 scoped_ptr<TimingFunction> EaseOutTimingFunction::Create() { |
59 return CubicBezierTimingFunction::Create(0.0, 0.0, 0.58, 1.0); | 60 return CubicBezierTimingFunction::Create(0.0, 0.0, 0.58, 1.0); |
60 } | 61 } |
61 | 62 |
62 scoped_ptr<TimingFunction> EaseInOutTimingFunction::Create() { | 63 scoped_ptr<TimingFunction> EaseInOutTimingFunction::Create() { |
63 return CubicBezierTimingFunction::Create(0.42, 0.0, 0.58, 1); | 64 return CubicBezierTimingFunction::Create(0.42, 0.0, 0.58, 1); |
64 } | 65 } |
65 | 66 |
| 67 scoped_ptr<StepsTimingFunction> StepsTimingFunction::Create( |
| 68 int steps, |
| 69 float steps_start_offset) { |
| 70 return make_scoped_ptr(new StepsTimingFunction(steps, steps_start_offset)); |
| 71 } |
| 72 |
| 73 StepsTimingFunction::StepsTimingFunction(int steps, float steps_start_offset) |
| 74 : steps_(steps), steps_start_offset_(steps_start_offset) { |
| 75 // Restrict it to CSS presets: step_start, step_end and step_middle. |
| 76 // See the Web Animations specification, 3.12.4. Timing in discrete steps. |
| 77 DCHECK(steps_start_offset_ == 0 || steps_start_offset_ == 1 || |
| 78 steps_start_offset_ == 0.5); |
| 79 } |
| 80 |
| 81 StepsTimingFunction::~StepsTimingFunction() { |
| 82 } |
| 83 |
| 84 float StepsTimingFunction::GetValue(double t) const { |
| 85 const double steps = static_cast<double>(steps_); |
| 86 const double value = MathUtil::ClampToRange( |
| 87 std::floor((steps * t) + steps_start_offset_) / steps, 0.0, 1.0); |
| 88 return static_cast<float>(value); |
| 89 } |
| 90 |
| 91 scoped_ptr<TimingFunction> StepsTimingFunction::Clone() const { |
| 92 return make_scoped_ptr(new StepsTimingFunction(*this)); |
| 93 } |
| 94 |
| 95 void StepsTimingFunction::Range(float* min, float* max) const { |
| 96 *min = 0.0f; |
| 97 *max = 1.0f; |
| 98 } |
| 99 |
| 100 float StepsTimingFunction::Velocity(double x) const { |
| 101 return 0.0f; |
| 102 } |
| 103 |
66 } // namespace cc | 104 } // namespace cc |
OLD | NEW |