summaryrefslogtreecommitdiffstats
path: root/dom/svg/SVGMotionSMILPathUtils.cpp
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /dom/svg/SVGMotionSMILPathUtils.cpp
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/svg/SVGMotionSMILPathUtils.cpp')
-rw-r--r--dom/svg/SVGMotionSMILPathUtils.cpp152
1 files changed, 152 insertions, 0 deletions
diff --git a/dom/svg/SVGMotionSMILPathUtils.cpp b/dom/svg/SVGMotionSMILPathUtils.cpp
new file mode 100644
index 000000000..e31c6a386
--- /dev/null
+++ b/dom/svg/SVGMotionSMILPathUtils.cpp
@@ -0,0 +1,152 @@
+/* -*- 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/. */
+
+#include "SVGMotionSMILPathUtils.h"
+
+#include "nsCharSeparatedTokenizer.h"
+#include "nsContentUtils.h" // for NS_ENSURE_FINITE2
+#include "SVGContentUtils.h"
+#include "SVGLength.h"
+
+using namespace mozilla::gfx;
+
+namespace mozilla {
+
+//----------------------------------------------------------------------
+// PathGenerator methods
+
+// For the dummy 'from' value used in pure by-animation & to-animation
+void
+SVGMotionSMILPathUtils::PathGenerator::
+ MoveToOrigin()
+{
+ MOZ_ASSERT(!mHaveReceivedCommands,
+ "Not expecting requests for mid-path MoveTo commands");
+ mHaveReceivedCommands = true;
+ mPathBuilder->MoveTo(Point(0, 0));
+}
+
+// For 'from' and the first entry in 'values'.
+bool
+SVGMotionSMILPathUtils::PathGenerator::
+ MoveToAbsolute(const nsAString& aCoordPairStr)
+{
+ MOZ_ASSERT(!mHaveReceivedCommands,
+ "Not expecting requests for mid-path MoveTo commands");
+ mHaveReceivedCommands = true;
+
+ float xVal, yVal;
+ if (!ParseCoordinatePair(aCoordPairStr, xVal, yVal)) {
+ return false;
+ }
+ mPathBuilder->MoveTo(Point(xVal, yVal));
+ return true;
+}
+
+// For 'to' and every entry in 'values' except the first.
+bool
+SVGMotionSMILPathUtils::PathGenerator::
+ LineToAbsolute(const nsAString& aCoordPairStr, double& aSegmentDistance)
+{
+ mHaveReceivedCommands = true;
+
+ float xVal, yVal;
+ if (!ParseCoordinatePair(aCoordPairStr, xVal, yVal)) {
+ return false;
+ }
+ Point initialPoint = mPathBuilder->CurrentPoint();
+
+ mPathBuilder->LineTo(Point(xVal, yVal));
+ aSegmentDistance = NS_hypot(initialPoint.x - xVal, initialPoint.y -yVal);
+ return true;
+}
+
+// For 'by'.
+bool
+SVGMotionSMILPathUtils::PathGenerator::
+ LineToRelative(const nsAString& aCoordPairStr, double& aSegmentDistance)
+{
+ mHaveReceivedCommands = true;
+
+ float xVal, yVal;
+ if (!ParseCoordinatePair(aCoordPairStr, xVal, yVal)) {
+ return false;
+ }
+ mPathBuilder->LineTo(mPathBuilder->CurrentPoint() + Point(xVal, yVal));
+ aSegmentDistance = NS_hypot(xVal, yVal);
+ return true;
+}
+
+already_AddRefed<Path>
+SVGMotionSMILPathUtils::PathGenerator::GetResultingPath()
+{
+ return mPathBuilder->Finish();
+}
+
+//----------------------------------------------------------------------
+// Helper / protected methods
+
+bool
+SVGMotionSMILPathUtils::PathGenerator::
+ ParseCoordinatePair(const nsAString& aCoordPairStr,
+ float& aXVal, float& aYVal)
+{
+ nsCharSeparatedTokenizerTemplate<IsSVGWhitespace>
+ tokenizer(aCoordPairStr, ',',
+ nsCharSeparatedTokenizer::SEPARATOR_OPTIONAL);
+
+ SVGLength x, y;
+
+ if (!tokenizer.hasMoreTokens() ||
+ !x.SetValueFromString(tokenizer.nextToken())) {
+ return false;
+ }
+
+ if (!tokenizer.hasMoreTokens() ||
+ !y.SetValueFromString(tokenizer.nextToken())) {
+ return false;
+ }
+
+ if (tokenizer.separatorAfterCurrentToken() || // Trailing comma.
+ tokenizer.hasMoreTokens()) { // More text remains
+ return false;
+ }
+
+ float xRes = x.GetValueInUserUnits(mSVGElement, SVGContentUtils::X);
+ float yRes = y.GetValueInUserUnits(mSVGElement, SVGContentUtils::Y);
+
+ NS_ENSURE_FINITE2(xRes, yRes, false);
+
+ aXVal = xRes;
+ aYVal = yRes;
+ return true;
+}
+
+//----------------------------------------------------------------------
+// MotionValueParser methods
+bool
+SVGMotionSMILPathUtils::MotionValueParser::
+ Parse(const nsAString& aValueStr)
+{
+ bool success;
+ if (!mPathGenerator->HaveReceivedCommands()) {
+ // Interpret first value in "values" attribute as the path's initial MoveTo
+ success = mPathGenerator->MoveToAbsolute(aValueStr);
+ if (success) {
+ success = !!mPointDistances->AppendElement(0.0, fallible);
+ }
+ } else {
+ double dist;
+ success = mPathGenerator->LineToAbsolute(aValueStr, dist);
+ if (success) {
+ mDistanceSoFar += dist;
+ success = !!mPointDistances->AppendElement(mDistanceSoFar, fallible);
+ }
+ }
+ return success;
+}
+
+} // namespace mozilla