2015-11-02 00:41:00 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_ComputedTimingFunction_h
|
|
|
|
#define mozilla_ComputedTimingFunction_h
|
|
|
|
|
|
|
|
#include "nsSMILKeySpline.h" // nsSMILKeySpline
|
|
|
|
#include "nsStyleStruct.h" // nsTimingFunction
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
class ComputedTimingFunction
|
|
|
|
{
|
|
|
|
public:
|
2017-03-17 11:37:49 +03:00
|
|
|
static ComputedTimingFunction
|
|
|
|
CubicBezier(double x1, double y1, double x2, double y2)
|
|
|
|
{
|
|
|
|
return ComputedTimingFunction(x1, y1, x2, y2);
|
|
|
|
}
|
|
|
|
static ComputedTimingFunction
|
|
|
|
Steps(nsTimingFunction::Type aType, uint32_t aSteps)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aType == nsTimingFunction::Type::StepStart ||
|
|
|
|
aType == nsTimingFunction::Type::StepEnd,
|
|
|
|
"The type of timing function should be either step-start or "
|
|
|
|
"step-end");
|
|
|
|
MOZ_ASSERT(aSteps > 0, "The number of steps should be 1 or more");
|
|
|
|
return ComputedTimingFunction(aType, aSteps);
|
|
|
|
}
|
|
|
|
static ComputedTimingFunction
|
|
|
|
Frames(uint32_t aFrames)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aFrames > 1, "The number of frames should be 2 or more");
|
|
|
|
return ComputedTimingFunction(nsTimingFunction::Type::Frames, aFrames);
|
|
|
|
}
|
|
|
|
|
|
|
|
ComputedTimingFunction() = default;
|
|
|
|
explicit ComputedTimingFunction(const nsTimingFunction& aFunction)
|
|
|
|
{
|
|
|
|
Init(aFunction);
|
|
|
|
}
|
|
|
|
void Init(const nsTimingFunction& aFunction);
|
|
|
|
|
2016-04-01 08:00:57 +03:00
|
|
|
// BeforeFlag is used in step timing function.
|
2017-12-15 23:55:08 +03:00
|
|
|
// https://drafts.csswg.org/css-timing/#before-flag
|
2016-04-01 08:00:57 +03:00
|
|
|
enum class BeforeFlag {
|
|
|
|
Unset,
|
|
|
|
Set
|
|
|
|
};
|
|
|
|
double GetValue(double aPortion, BeforeFlag aBeforeFlag) const;
|
2015-11-02 00:41:00 +03:00
|
|
|
const nsSMILKeySpline* GetFunction() const
|
|
|
|
{
|
|
|
|
NS_ASSERTION(HasSpline(), "Type mismatch");
|
|
|
|
return &mTimingFunction;
|
|
|
|
}
|
|
|
|
nsTimingFunction::Type GetType() const { return mType; }
|
|
|
|
bool HasSpline() const { return nsTimingFunction::IsSplineType(mType); }
|
2017-02-24 11:59:02 +03:00
|
|
|
uint32_t GetSteps() const
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mType == nsTimingFunction::Type::StepStart ||
|
|
|
|
mType == nsTimingFunction::Type::StepEnd);
|
|
|
|
return mStepsOrFrames;
|
|
|
|
}
|
2017-02-26 10:34:02 +03:00
|
|
|
uint32_t GetFrames() const
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mType == nsTimingFunction::Type::Frames);
|
|
|
|
return mStepsOrFrames;
|
|
|
|
}
|
2015-11-02 00:41:00 +03:00
|
|
|
bool operator==(const ComputedTimingFunction& aOther) const
|
|
|
|
{
|
|
|
|
return mType == aOther.mType &&
|
|
|
|
(HasSpline() ?
|
|
|
|
mTimingFunction == aOther.mTimingFunction :
|
2017-02-24 11:59:02 +03:00
|
|
|
mStepsOrFrames == aOther.mStepsOrFrames);
|
2015-11-02 00:41:00 +03:00
|
|
|
}
|
|
|
|
bool operator!=(const ComputedTimingFunction& aOther) const
|
|
|
|
{
|
|
|
|
return !(*this == aOther);
|
|
|
|
}
|
2017-05-13 10:34:38 +03:00
|
|
|
bool operator==(const nsTimingFunction& aOther) const
|
|
|
|
{
|
|
|
|
return mType == aOther.mType &&
|
|
|
|
(HasSpline()
|
|
|
|
? mTimingFunction.X1() == aOther.mFunc.mX1 &&
|
|
|
|
mTimingFunction.Y1() == aOther.mFunc.mY1 &&
|
|
|
|
mTimingFunction.X2() == aOther.mFunc.mX2 &&
|
|
|
|
mTimingFunction.Y2() == aOther.mFunc.mY2
|
|
|
|
: mStepsOrFrames == aOther.mStepsOrFrames);
|
|
|
|
}
|
|
|
|
bool operator!=(const nsTimingFunction& aOther) const
|
|
|
|
{
|
|
|
|
return !(*this == aOther);
|
|
|
|
}
|
2015-11-02 00:41:00 +03:00
|
|
|
int32_t Compare(const ComputedTimingFunction& aRhs) const;
|
|
|
|
void AppendToString(nsAString& aResult) const;
|
|
|
|
|
2016-01-29 16:44:00 +03:00
|
|
|
static double GetPortion(const Maybe<ComputedTimingFunction>& aFunction,
|
2016-04-01 08:00:57 +03:00
|
|
|
double aPortion,
|
|
|
|
BeforeFlag aBeforeFlag)
|
2016-01-29 16:44:00 +03:00
|
|
|
{
|
2016-04-01 08:00:57 +03:00
|
|
|
return aFunction ? aFunction->GetValue(aPortion, aBeforeFlag) : aPortion;
|
2016-01-29 16:44:00 +03:00
|
|
|
}
|
2016-01-29 16:47:00 +03:00
|
|
|
static int32_t Compare(const Maybe<ComputedTimingFunction>& aLhs,
|
|
|
|
const Maybe<ComputedTimingFunction>& aRhs);
|
2016-01-29 16:44:00 +03:00
|
|
|
|
2015-11-02 00:41:00 +03:00
|
|
|
private:
|
2017-03-17 11:37:49 +03:00
|
|
|
ComputedTimingFunction(double x1, double y1, double x2, double y2)
|
|
|
|
: mType(nsTimingFunction::Type::CubicBezier)
|
|
|
|
, mTimingFunction(x1, y1, x2, y2) { }
|
|
|
|
ComputedTimingFunction(nsTimingFunction::Type aType, uint32_t aStepsOrFrames)
|
|
|
|
: mType(aType)
|
|
|
|
, mStepsOrFrames(aStepsOrFrames) { }
|
|
|
|
|
|
|
|
nsTimingFunction::Type mType = nsTimingFunction::Type::Linear;
|
2015-11-02 00:41:00 +03:00
|
|
|
nsSMILKeySpline mTimingFunction;
|
2017-02-24 11:59:02 +03:00
|
|
|
uint32_t mStepsOrFrames;
|
2015-11-02 00:41:00 +03:00
|
|
|
};
|
|
|
|
|
2017-05-13 10:34:38 +03:00
|
|
|
inline bool
|
|
|
|
operator==(const Maybe<ComputedTimingFunction>& aLHS,
|
|
|
|
const nsTimingFunction& aRHS)
|
|
|
|
{
|
|
|
|
if (aLHS.isNothing()) {
|
|
|
|
return aRHS.mType == nsTimingFunction::Type::Linear;
|
|
|
|
}
|
|
|
|
return aLHS.value() == aRHS;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool
|
|
|
|
operator!=(const Maybe<ComputedTimingFunction>& aLHS,
|
|
|
|
const nsTimingFunction& aRHS)
|
|
|
|
{
|
|
|
|
return !(aLHS == aRHS);
|
|
|
|
}
|
|
|
|
|
2015-11-02 00:41:00 +03:00
|
|
|
} // namespace mozilla
|
|
|
|
|
2016-01-13 20:37:00 +03:00
|
|
|
#endif // mozilla_ComputedTimingFunction_h
|