This source file includes following definitions.
- operationsMatch
- blendByMatchingOperations
- blendByUsingMatrixInterpolation
- blend
- add
#include "config.h"
#include "platform/transforms/TransformOperations.h"
#include "platform/transforms/IdentityTransformOperation.h"
#include "platform/transforms/InterpolatedTransformOperation.h"
#include <algorithm>
using namespace std;
namespace WebCore {
TransformOperations::TransformOperations(bool makeIdentity)
{
if (makeIdentity)
m_operations.append(IdentityTransformOperation::create());
}
bool TransformOperations::operator==(const TransformOperations& o) const
{
if (m_operations.size() != o.m_operations.size())
return false;
unsigned s = m_operations.size();
for (unsigned i = 0; i < s; i++) {
if (*m_operations[i] != *o.m_operations[i])
return false;
}
return true;
}
bool TransformOperations::operationsMatch(const TransformOperations& other) const
{
size_t numOperations = operations().size();
if (numOperations != other.operations().size())
return false;
for (size_t i = 0; i < numOperations; ++i) {
if (!operations()[i]->isSameType(*other.operations()[i]))
return false;
}
return true;
}
TransformOperations TransformOperations::blendByMatchingOperations(const TransformOperations& from, const double& progress) const
{
TransformOperations result;
unsigned fromSize = from.operations().size();
unsigned toSize = operations().size();
unsigned size = max(fromSize, toSize);
for (unsigned i = 0; i < size; i++) {
RefPtr<TransformOperation> fromOperation = (i < fromSize) ? from.operations()[i].get() : 0;
RefPtr<TransformOperation> toOperation = (i < toSize) ? operations()[i].get() : 0;
RefPtr<TransformOperation> blendedOperation = toOperation ? toOperation->blend(fromOperation.get(), progress) : (fromOperation ? fromOperation->blend(0, progress, true) : nullptr);
if (blendedOperation)
result.operations().append(blendedOperation);
else {
RefPtr<TransformOperation> identityOperation = IdentityTransformOperation::create();
if (progress > 0.5)
result.operations().append(toOperation ? toOperation : identityOperation);
else
result.operations().append(fromOperation ? fromOperation : identityOperation);
}
}
return result;
}
TransformOperations TransformOperations::blendByUsingMatrixInterpolation(const TransformOperations& from, double progress) const
{
TransformOperations result;
result.operations().append(InterpolatedTransformOperation::create(from, *this, progress));
return result;
}
TransformOperations TransformOperations::blend(const TransformOperations& from, double progress) const
{
if (from == *this || (!from.size() && !size()))
return *this;
if (!from.size() || !size() || from.operationsMatch(*this))
return blendByMatchingOperations(from, progress);
return blendByUsingMatrixInterpolation(from, progress);
}
TransformOperations TransformOperations::add(const TransformOperations& addend) const
{
TransformOperations result;
result.m_operations = operations();
result.m_operations.appendVector(addend.operations());
return result;
}
}