aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/skotty/SkottyAnimator.cpp
blob: d4c5c96c1afe2c78e78717b493ad3e3def17276b (plain)
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
/*
 * Copyright 2017 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "SkottyAnimator.h"

namespace skotty {

namespace {

SkScalar lerp_scalar(SkScalar v0, SkScalar v1, float t) {
    SkASSERT(t >= 0 && t <= 1);
    return v0 * (1 - t) + v1 * t;
}

} // namespace

template <>
void KeyframeInterval<ScalarValue>::lerp(float t, ScalarValue* v) const {
    *v = lerp_scalar(fV0, fV1, t);
}

template <>
void KeyframeInterval<VectorValue>::lerp(float t, VectorValue* v) const {
    SkASSERT(fV0.cardinality() == fV1.cardinality());
    SkASSERT(v->cardinality() == 0);

    v->fVals.reserve(fV0.cardinality());
    for (int i = 0; i < fV0.fVals.count(); ++i) {
        v->fVals.emplace_back(lerp_scalar(fV0.fVals[i], fV1.fVals[i], t));
    }
}

template <>
void KeyframeInterval<ShapeValue>::lerp(float t, ShapeValue* v) const {
    SkASSERT(fV0.cardinality() == fV1.cardinality());
    SkASSERT(v->cardinality() == 0);

    SkAssertResult(fV1.fPath.interpolate(fV0.fPath, t, &v->fPath));
}

float AnimatorBase::ComputeLocalT(float t, float t0, float t1,
                                  const SkPoint& c0, const SkPoint& c1) {
    SkASSERT(t1 > t0);
    auto lt = (t - t0) / (t1 - t0);

    if (c0 != SkPoint({0, 0}) || c1 != SkPoint({1, 1})) {
        // TODO: lt = CubicBezier(lt, c0, c1);
    }

    return SkTPin<float>(lt, 0, 1);
}

} // namespace skotty