gecko-dev/dom/animation/ComputedTimingFunction.h
Daniel Holbert 408bfa9bf0 Bug 1444481 part 1: Add some needed #includes to ComputedTimingFunction.h and FrameMetrics.h. r=xidorn
(This is a helper patch -- I'm splitting this into its own patch since it's
changing files in other directories, and also so that the main patches here
can be a bit more direct.)

Without this change, the other patches in this series would cause compile
failures in the headers that I'm fixing up here (because the other patches will
be removing #includes from some headers that these files were inadvertently
depending on).

As of this patch, ComputedTimingFunction.h will now be including:
 - nsDebug.h to provide NS_ASSERTION
 - nsStringFwd.h to provide a forward-declaration for "nsAString&"
 - Assertions.h to provide MOZ_ASSERT
 - Maybe.h to provide Maybe<ComputedTimingFunction>
(I think it's been leaning on nsTimingFunction.h's include of nsString.h to
indirectly provide these.)

FrameMetrics.h will now be including:
 - PLDHashTable.h to provide PLDHashNumber
(I think it's been leaning on nsStyleCoord.h/nsStyleConsts.h to indirectly
provide this.)

MozReview-Commit-ID: AoFoEe9GisK

--HG--
extra : rebase_source : 63c69343acaf42511ebdeb0238f4385a0c6345a5
2018-03-09 11:52:02 -08:00

147 lines
4.6 KiB
C++

/* -*- 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 "nsDebug.h"
#include "nsSMILKeySpline.h" // nsSMILKeySpline
#include "nsStringFwd.h"
#include "nsTimingFunction.h"
#include "mozilla/Assertions.h"
#include "mozilla/Maybe.h"
namespace mozilla {
class ComputedTimingFunction
{
public:
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);
// BeforeFlag is used in step timing function.
// https://drafts.csswg.org/css-timing/#before-flag
enum class BeforeFlag {
Unset,
Set
};
double GetValue(double aPortion, BeforeFlag aBeforeFlag) const;
const nsSMILKeySpline* GetFunction() const
{
NS_ASSERTION(HasSpline(), "Type mismatch");
return &mTimingFunction;
}
nsTimingFunction::Type GetType() const { return mType; }
bool HasSpline() const { return nsTimingFunction::IsSplineType(mType); }
uint32_t GetSteps() const
{
MOZ_ASSERT(mType == nsTimingFunction::Type::StepStart ||
mType == nsTimingFunction::Type::StepEnd);
return mStepsOrFrames;
}
uint32_t GetFrames() const
{
MOZ_ASSERT(mType == nsTimingFunction::Type::Frames);
return mStepsOrFrames;
}
bool operator==(const ComputedTimingFunction& aOther) const
{
return mType == aOther.mType &&
(HasSpline() ?
mTimingFunction == aOther.mTimingFunction :
mStepsOrFrames == aOther.mStepsOrFrames);
}
bool operator!=(const ComputedTimingFunction& aOther) const
{
return !(*this == aOther);
}
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);
}
int32_t Compare(const ComputedTimingFunction& aRhs) const;
void AppendToString(nsAString& aResult) const;
static double GetPortion(const Maybe<ComputedTimingFunction>& aFunction,
double aPortion,
BeforeFlag aBeforeFlag)
{
return aFunction ? aFunction->GetValue(aPortion, aBeforeFlag) : aPortion;
}
static int32_t Compare(const Maybe<ComputedTimingFunction>& aLhs,
const Maybe<ComputedTimingFunction>& aRhs);
private:
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;
nsSMILKeySpline mTimingFunction;
uint32_t mStepsOrFrames;
};
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);
}
} // namespace mozilla
#endif // mozilla_ComputedTimingFunction_h