staticconstchar* skip_sep(constchar str[]) { if (!str) { return nullptr;
} while (is_sep(*str))
str++; return str;
}
// If unable to read count points from str into value, this will return nullptr // to signal the failure. Otherwise, it will return the next offset to read from. staticconstchar* find_points(constchar str[], SkPoint value[], int count, bool isRelative, SkPoint* relative) {
str = SkParse::FindScalars(str, &value[0].fX, count * 2); if (isRelative) { for (int index = 0; index < count; index++) {
value[index].fX += relative->fX;
value[index].fY += relative->fY;
}
} return str;
}
// If unable to read a scalar from str into value, this will return nullptr // to signal the failure. Otherwise, it will return the next offset to read from. staticconstchar* find_scalar(constchar str[], SkScalar* value, bool isRelative, SkScalar relative) {
str = SkParse::FindScalar(str, value); if (!str) { return nullptr;
} if (isRelative) {
*value += relative;
}
str = skip_sep(str); return str;
}
std::optional<SkPath> SkParsePath::FromSVGString(constchar data[]) { // We will write all data to this local path and only write it // to result if the whole parsing succeeds.
SkPathBuilder builder;
SkPoint first = {0, 0};
SkPoint c = {0, 0};
SkPoint lastc = {0, 0}; // We will use find_points and find_scalar to read into these. // There might not be enough data to fill them, so to avoid // MSAN warnings about using uninitialized bytes, we initialize // them there.
SkPoint points[3] = {};
SkScalar scratch = 0; char op = '\0'; char previousOp = '\0'; bool relative = false; for (;;) { if (!data) { // Truncated data return {};
}
data = skip_ws(data); if (data[0] == '\0') { break;
} char ch = data[0]; if (is_digit(ch) || ch == '-' || ch == '+' || ch == '.') { if (op == '\0' || op == 'Z') { return {};
}
} elseif (is_sep(ch)) {
data = skip_sep(data);
} else {
op = ch;
relative = false; if (is_lower(op)) {
op = (char) to_upper(op);
relative = true;
}
data++;
data = skip_sep(data);
} switch (op) { case'M': // Move
data = find_points(data, points, 1, relative, &c); // find_points might have failed, so this might be the // previous point. However, data will be set to nullptr // if it failed, so we will check this at the top of the loop.
builder.moveTo(points[0]);
previousOp = '\0';
op = 'L';
c = points[0]; break; case'L': // Line
data = find_points(data, points, 1, relative, &c);
builder.lineTo(points[0]);
c = points[0]; break; case'H': // Horizontal Line
data = find_scalar(data, &scratch, relative, c.fX); // Similarly, if there wasn't a scalar to read, data will // be set to nullptr and this lineTo is bogus but will // be ultimately ignored when the next time through the loop // detects that and bails out.
builder.lineTo(scratch, c.fY);
c.fX = scratch; break; case'V': // Vertical Line
data = find_scalar(data, &scratch, relative, c.fY);
builder.lineTo(c.fX, scratch);
c.fY = scratch; break; case'C': // Cubic Bezier Curve
data = find_points(data, points, 3, relative, &c); goto cubicCommon; case'S': // Continued "Smooth" Cubic Bezier Curve
data = find_points(data, &points[1], 2, relative, &c);
points[0] = c; if (previousOp == 'C' || previousOp == 'S') {
points[0].fX -= lastc.fX - c.fX;
points[0].fY -= lastc.fY - c.fY;
}
cubicCommon:
builder.cubicTo(points[0], points[1], points[2]);
lastc = points[1];
c = points[2]; break; case'Q': // Quadratic Bezier Curve
data = find_points(data, points, 2, relative, &c); goto quadraticCommon; case'T': // Continued Quadratic Bezier Curve
data = find_points(data, &points[1], 1, relative, &c);
points[0] = c; if (previousOp == 'Q' || previousOp == 'T') {
points[0].fX -= lastc.fX - c.fX;
points[0].fY -= lastc.fY - c.fY;
}
quadraticCommon:
builder.quadTo(points[0], points[1]);
lastc = points[0];
c = points[1]; break; case'A': { // Arc (Elliptical)
SkPoint radii;
SkScalar angle; bool largeArc, sweep; if ((data = find_points(data, &radii, 1, false, nullptr))
&& (data = skip_sep(data))
&& (data = find_scalar(data, &angle, false, 0))
&& (data = skip_sep(data))
&& (data = find_flag(data, &largeArc))
&& (data = skip_sep(data))
&& (data = find_flag(data, &sweep))
&& (data = skip_sep(data))
&& (data = find_points(data, &points[0], 1, relative, &c))) {
builder.arcTo(radii, angle, (SkPathBuilder::ArcSize) largeArc,
(SkPathDirection) !sweep, points[0]);
c = builder.points().back();
}
} break; case'Z': // Close Path
builder.close();
c = first; break; default: return {};
} if (previousOp == 0) {
first = c;
}
previousOp = op;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.