blob: d048c7d8e850137f778999913090a1d592b9a9ae [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/core/animation/svg_integer_optional_integer_interpolation_type.h"
#include <memory>
#include "third_party/blink/renderer/core/animation/interpolation_environment.h"
#include "third_party/blink/renderer/core/svg/svg_integer_optional_integer.h"
namespace blink {
InterpolationValue
SVGIntegerOptionalIntegerInterpolationType::MaybeConvertNeutral(
const InterpolationValue&,
ConversionCheckers&) const {
std::unique_ptr<InterpolableList> result = InterpolableList::Create(2);
result->Set(0, InterpolableNumber::Create(0));
result->Set(1, InterpolableNumber::Create(0));
return InterpolationValue(std::move(result));
}
InterpolationValue
SVGIntegerOptionalIntegerInterpolationType::MaybeConvertSVGValue(
const SVGPropertyBase& svg_value) const {
if (svg_value.GetType() != kAnimatedIntegerOptionalInteger)
return nullptr;
const SVGIntegerOptionalInteger& integer_optional_integer =
ToSVGIntegerOptionalInteger(svg_value);
std::unique_ptr<InterpolableList> result = InterpolableList::Create(2);
result->Set(0, InterpolableNumber::Create(
integer_optional_integer.FirstInteger()->Value()));
result->Set(1, InterpolableNumber::Create(
integer_optional_integer.SecondInteger()->Value()));
return InterpolationValue(std::move(result));
}
static SVGInteger* ToPositiveInteger(const InterpolableValue* number) {
return SVGInteger::Create(
clampTo<int>(roundf(ToInterpolableNumber(number)->Value()), 1));
}
SVGPropertyBase* SVGIntegerOptionalIntegerInterpolationType::AppliedSVGValue(
const InterpolableValue& interpolable_value,
const NonInterpolableValue*) const {
const InterpolableList& list = ToInterpolableList(interpolable_value);
return SVGIntegerOptionalInteger::Create(ToPositiveInteger(list.Get(0)),
ToPositiveInteger(list.Get(1)));
}
} // namespace blink