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
|
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_ANIMATION_PRIMITIVE_INTERPOLATION_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_ANIMATION_PRIMITIVE_INTERPOLATION_H_
#include <cmath>
#include <limits>
#include <memory>
#include <utility>
#include "base/check_op.h"
#include "base/memory/ptr_util.h"
#include "third_party/blink/renderer/core/animation/typed_interpolation_value.h"
#include "third_party/blink/renderer/platform/geometry/blend.h"
#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"
namespace blink {
// Represents an animation's effect between an adjacent pair of
// PropertySpecificKeyframes after converting the keyframes to an internal
// format with respect to the animation environment and underlying values.
class PrimitiveInterpolation : public GarbageCollected<PrimitiveInterpolation> {
public:
PrimitiveInterpolation(const PrimitiveInterpolation&) = delete;
PrimitiveInterpolation& operator=(const PrimitiveInterpolation&) = delete;
virtual ~PrimitiveInterpolation() = default;
virtual void InterpolateValue(
double fraction,
Member<TypedInterpolationValue>& result) const = 0;
virtual double InterpolateUnderlyingFraction(double start,
double end,
double fraction) const = 0;
virtual bool IsFlip() const { return false; }
virtual void Trace(Visitor*) const {}
protected:
PrimitiveInterpolation() = default;
};
// Represents a pair of keyframes that are compatible for "smooth" interpolation
// eg. "0px" and "100px".
class PairwisePrimitiveInterpolation : public PrimitiveInterpolation {
public:
PairwisePrimitiveInterpolation(
const InterpolationType* type,
InterpolableValue* start,
InterpolableValue* end,
const NonInterpolableValue* non_interpolable_value)
: type_(type),
start_(start),
end_(end),
non_interpolable_value_(non_interpolable_value) {
DCHECK(start_);
DCHECK(end_);
}
~PairwisePrimitiveInterpolation() override = default;
const InterpolationType* GetType() const { return type_; }
TypedInterpolationValue* InitialValue() const {
return MakeGarbageCollected<TypedInterpolationValue>(
type_, start_->Clone(), non_interpolable_value_);
}
void Trace(Visitor* v) const override {
PrimitiveInterpolation::Trace(v);
v->Trace(type_);
v->Trace(start_);
v->Trace(end_);
v->Trace(non_interpolable_value_);
}
private:
void InterpolateValue(double fraction,
Member<TypedInterpolationValue>& result) const final {
DCHECK(result);
DCHECK_EQ(result->GetType(), type_);
DCHECK_EQ(result->GetNonInterpolableValue(), non_interpolable_value_.Get());
start_->AssertCanInterpolateWith(*end_);
start_->Interpolate(*end_, fraction,
*result->MutableValue().interpolable_value);
}
double InterpolateUnderlyingFraction(double start,
double end,
double fraction) const final {
return Blend(start, end, fraction);
}
Member<const InterpolationType> type_;
Member<InterpolableValue> start_;
Member<InterpolableValue> end_;
Member<const NonInterpolableValue> non_interpolable_value_;
};
// Represents a pair of incompatible keyframes that fall back to 50% flip
// behaviour eg. "auto" and "0px".
class FlipPrimitiveInterpolation : public PrimitiveInterpolation {
public:
FlipPrimitiveInterpolation(TypedInterpolationValue* start,
TypedInterpolationValue* end)
: start_(start),
end_(end),
last_fraction_(std::numeric_limits<double>::quiet_NaN()) {}
~FlipPrimitiveInterpolation() override = default;
void Trace(Visitor* v) const override {
PrimitiveInterpolation::Trace(v);
v->Trace(start_);
v->Trace(end_);
}
private:
void InterpolateValue(double fraction,
Member<TypedInterpolationValue>& result) const final {
if (!std::isnan(last_fraction_) &&
(fraction < 0.5) == (last_fraction_ < 0.5)) {
return;
}
const TypedInterpolationValue* side =
((fraction < 0.5) ? start_ : end_).Get();
result = side ? side->Clone() : nullptr;
last_fraction_ = fraction;
}
double InterpolateUnderlyingFraction(double start,
double end,
double fraction) const final {
return fraction < 0.5 ? start : end;
}
bool IsFlip() const final { return true; }
Member<TypedInterpolationValue> start_;
Member<TypedInterpolationValue> end_;
mutable double last_fraction_;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_ANIMATION_PRIMITIVE_INTERPOLATION_H_
|