2011-11-02 19:55:03 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2012-05-21 11:12:37 +00:00
|
|
|
* 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/. */
|
2011-11-02 19:55:03 +00:00
|
|
|
|
|
|
|
#include "PathSkia.h"
|
|
|
|
#include <math.h>
|
|
|
|
#include "DrawTargetSkia.h"
|
|
|
|
#include "Logging.h"
|
|
|
|
#include "HelpersSkia.h"
|
2011-11-02 19:55:03 +00:00
|
|
|
#include "PathHelpers.h"
|
2011-11-02 19:55:03 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
|
|
|
|
PathBuilderSkia::PathBuilderSkia(const Matrix& aTransform, const SkPath& aPath, FillRule aFillRule)
|
|
|
|
: mPath(aPath)
|
|
|
|
{
|
|
|
|
SkMatrix matrix;
|
|
|
|
GfxMatrixToSkiaMatrix(aTransform, matrix);
|
|
|
|
mPath.transform(matrix);
|
|
|
|
SetFillRule(aFillRule);
|
|
|
|
}
|
|
|
|
|
|
|
|
PathBuilderSkia::PathBuilderSkia(FillRule aFillRule)
|
|
|
|
{
|
|
|
|
SetFillRule(aFillRule);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PathBuilderSkia::SetFillRule(FillRule aFillRule)
|
|
|
|
{
|
|
|
|
mFillRule = aFillRule;
|
2014-01-10 19:06:17 +00:00
|
|
|
if (mFillRule == FillRule::FILL_WINDING) {
|
2011-11-02 19:55:03 +00:00
|
|
|
mPath.setFillType(SkPath::kWinding_FillType);
|
|
|
|
} else {
|
|
|
|
mPath.setFillType(SkPath::kEvenOdd_FillType);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PathBuilderSkia::MoveTo(const Point &aPoint)
|
|
|
|
{
|
|
|
|
mPath.moveTo(SkFloatToScalar(aPoint.x), SkFloatToScalar(aPoint.y));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PathBuilderSkia::LineTo(const Point &aPoint)
|
|
|
|
{
|
|
|
|
if (!mPath.countPoints()) {
|
|
|
|
MoveTo(aPoint);
|
|
|
|
} else {
|
|
|
|
mPath.lineTo(SkFloatToScalar(aPoint.x), SkFloatToScalar(aPoint.y));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PathBuilderSkia::BezierTo(const Point &aCP1,
|
|
|
|
const Point &aCP2,
|
|
|
|
const Point &aCP3)
|
|
|
|
{
|
|
|
|
if (!mPath.countPoints()) {
|
|
|
|
MoveTo(aCP1);
|
|
|
|
}
|
|
|
|
mPath.cubicTo(SkFloatToScalar(aCP1.x), SkFloatToScalar(aCP1.y),
|
|
|
|
SkFloatToScalar(aCP2.x), SkFloatToScalar(aCP2.y),
|
|
|
|
SkFloatToScalar(aCP3.x), SkFloatToScalar(aCP3.y));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PathBuilderSkia::QuadraticBezierTo(const Point &aCP1,
|
|
|
|
const Point &aCP2)
|
|
|
|
{
|
|
|
|
if (!mPath.countPoints()) {
|
|
|
|
MoveTo(aCP1);
|
|
|
|
}
|
|
|
|
mPath.quadTo(SkFloatToScalar(aCP1.x), SkFloatToScalar(aCP1.y),
|
|
|
|
SkFloatToScalar(aCP2.x), SkFloatToScalar(aCP2.y));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PathBuilderSkia::Close()
|
|
|
|
{
|
|
|
|
mPath.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PathBuilderSkia::Arc(const Point &aOrigin, float aRadius, float aStartAngle,
|
|
|
|
float aEndAngle, bool aAntiClockwise)
|
2011-11-02 19:55:03 +00:00
|
|
|
{
|
2013-12-13 12:14:36 +00:00
|
|
|
ArcToBezier(this, aOrigin, Size(aRadius, aRadius), aStartAngle, aEndAngle, aAntiClockwise);
|
2011-11-02 19:55:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Point
|
|
|
|
PathBuilderSkia::CurrentPoint() const
|
|
|
|
{
|
|
|
|
int pointCount = mPath.countPoints();
|
|
|
|
if (!pointCount) {
|
|
|
|
return Point(0, 0);
|
|
|
|
}
|
|
|
|
SkPoint point = mPath.getPoint(pointCount - 1);
|
|
|
|
return Point(SkScalarToFloat(point.fX), SkScalarToFloat(point.fY));
|
|
|
|
}
|
|
|
|
|
|
|
|
TemporaryRef<Path>
|
|
|
|
PathBuilderSkia::Finish()
|
|
|
|
{
|
2014-06-13 16:09:23 +00:00
|
|
|
return new PathSkia(mPath, mFillRule);
|
2011-11-02 19:55:03 +00:00
|
|
|
}
|
|
|
|
|
2013-12-12 22:37:00 +00:00
|
|
|
void
|
|
|
|
PathBuilderSkia::AppendPath(const SkPath &aPath)
|
|
|
|
{
|
|
|
|
mPath.addPath(aPath);
|
|
|
|
}
|
|
|
|
|
2011-11-02 19:55:03 +00:00
|
|
|
TemporaryRef<PathBuilder>
|
|
|
|
PathSkia::CopyToBuilder(FillRule aFillRule) const
|
|
|
|
{
|
|
|
|
return TransformedCopyToBuilder(Matrix(), aFillRule);
|
|
|
|
}
|
|
|
|
|
|
|
|
TemporaryRef<PathBuilder>
|
|
|
|
PathSkia::TransformedCopyToBuilder(const Matrix &aTransform, FillRule aFillRule) const
|
|
|
|
{
|
2014-06-13 16:09:23 +00:00
|
|
|
return new PathBuilderSkia(aTransform, mPath, aFillRule);
|
2011-11-02 19:55:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
PathSkia::ContainsPoint(const Point &aPoint, const Matrix &aTransform) const
|
|
|
|
{
|
|
|
|
Matrix inverse = aTransform;
|
|
|
|
inverse.Invert();
|
|
|
|
Point transformed = inverse * aPoint;
|
|
|
|
|
|
|
|
Rect bounds = GetBounds(aTransform);
|
|
|
|
|
|
|
|
if (aPoint.x < bounds.x || aPoint.y < bounds.y ||
|
|
|
|
aPoint.x > bounds.XMost() || aPoint.y > bounds.YMost()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-02-07 21:54:59 +00:00
|
|
|
SkRegion pointRect;
|
2014-08-19 17:08:16 +00:00
|
|
|
pointRect.setRect(int32_t(SkFloatToScalar(transformed.x - 1.f)),
|
|
|
|
int32_t(SkFloatToScalar(transformed.y - 1.f)),
|
|
|
|
int32_t(SkFloatToScalar(transformed.x + 1.f)),
|
|
|
|
int32_t(SkFloatToScalar(transformed.y + 1.f)));
|
2013-02-07 21:54:59 +00:00
|
|
|
|
|
|
|
SkRegion pathRegion;
|
|
|
|
|
|
|
|
return pathRegion.setPath(mPath, pointRect);
|
2011-11-02 19:55:03 +00:00
|
|
|
}
|
|
|
|
|
2012-10-29 15:54:53 +00:00
|
|
|
bool
|
|
|
|
PathSkia::StrokeContainsPoint(const StrokeOptions &aStrokeOptions,
|
|
|
|
const Point &aPoint,
|
|
|
|
const Matrix &aTransform) const
|
|
|
|
{
|
|
|
|
Matrix inverse = aTransform;
|
|
|
|
inverse.Invert();
|
|
|
|
Point transformed = inverse * aPoint;
|
|
|
|
|
|
|
|
SkPaint paint;
|
|
|
|
StrokeOptionsToPaint(paint, aStrokeOptions);
|
|
|
|
|
|
|
|
SkPath strokePath;
|
|
|
|
paint.getFillPath(mPath, &strokePath);
|
|
|
|
|
|
|
|
Rect bounds = aTransform.TransformBounds(SkRectToRect(strokePath.getBounds()));
|
|
|
|
|
|
|
|
if (aPoint.x < bounds.x || aPoint.y < bounds.y ||
|
|
|
|
aPoint.x > bounds.XMost() || aPoint.y > bounds.YMost()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-02-07 21:54:59 +00:00
|
|
|
SkRegion pointRect;
|
2014-08-19 17:08:16 +00:00
|
|
|
pointRect.setRect(int32_t(SkFloatToScalar(transformed.x - 1.f)),
|
|
|
|
int32_t(SkFloatToScalar(transformed.y - 1.f)),
|
|
|
|
int32_t(SkFloatToScalar(transformed.x + 1.f)),
|
|
|
|
int32_t(SkFloatToScalar(transformed.y + 1.f)));
|
2013-02-07 21:54:59 +00:00
|
|
|
|
|
|
|
SkRegion pathRegion;
|
|
|
|
|
|
|
|
return pathRegion.setPath(strokePath, pointRect);
|
2012-10-29 15:54:53 +00:00
|
|
|
}
|
|
|
|
|
2011-11-02 19:55:03 +00:00
|
|
|
Rect
|
|
|
|
PathSkia::GetBounds(const Matrix &aTransform) const
|
|
|
|
{
|
|
|
|
Rect bounds = SkRectToRect(mPath.getBounds());
|
|
|
|
return aTransform.TransformBounds(bounds);
|
|
|
|
}
|
|
|
|
|
|
|
|
Rect
|
|
|
|
PathSkia::GetStrokedBounds(const StrokeOptions &aStrokeOptions,
|
|
|
|
const Matrix &aTransform) const
|
|
|
|
{
|
2011-11-18 04:00:38 +00:00
|
|
|
SkPaint paint;
|
|
|
|
StrokeOptionsToPaint(paint, aStrokeOptions);
|
|
|
|
|
|
|
|
SkPath result;
|
|
|
|
paint.getFillPath(mPath, &result);
|
|
|
|
|
|
|
|
Rect bounds = SkRectToRect(result.getBounds());
|
|
|
|
return aTransform.TransformBounds(bounds);
|
2011-11-02 19:55:03 +00:00
|
|
|
}
|
|
|
|
|
2013-11-07 09:11:48 +00:00
|
|
|
void
|
|
|
|
PathSkia::StreamToSink(PathSink *aSink) const
|
|
|
|
{
|
|
|
|
SkPath::RawIter iter(mPath);
|
|
|
|
|
|
|
|
SkPoint points[4];
|
|
|
|
SkPath::Verb currentVerb;
|
|
|
|
while ((currentVerb = iter.next(points)) != SkPath::kDone_Verb) {
|
|
|
|
switch (currentVerb) {
|
|
|
|
case SkPath::kMove_Verb:
|
|
|
|
aSink->MoveTo(SkPointToPoint(points[0]));
|
|
|
|
break;
|
|
|
|
case SkPath::kLine_Verb:
|
|
|
|
aSink->LineTo(SkPointToPoint(points[1]));
|
|
|
|
break;
|
|
|
|
case SkPath::kCubic_Verb:
|
|
|
|
aSink->BezierTo(SkPointToPoint(points[1]),
|
|
|
|
SkPointToPoint(points[2]),
|
|
|
|
SkPointToPoint(points[3]));
|
|
|
|
break;
|
|
|
|
case SkPath::kQuad_Verb:
|
|
|
|
aSink->QuadraticBezierTo(SkPointToPoint(points[1]),
|
|
|
|
SkPointToPoint(points[2]));
|
|
|
|
break;
|
|
|
|
case SkPath::kClose_Verb:
|
|
|
|
aSink->Close();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
MOZ_ASSERT(false);
|
|
|
|
// Unexpected verb found in path!
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-02 19:55:03 +00:00
|
|
|
}
|
|
|
|
}
|