blob: f17e5dbc38406f3162873dda966c271fcb510e4c [file] [log] [blame]
caryclark@google.com07393ca2013-04-08 11:47:37 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "SkIntersections.h"
9
caryclark54359292015-03-26 07:52:43 -070010int SkIntersections::closestTo(double rangeStart, double rangeEnd, const SkDPoint& testPt,
11 double* closestDist) const {
12 int closest = -1;
13 *closestDist = SK_ScalarMax;
14 for (int index = 0; index < fUsed; ++index) {
15 if (!between(rangeStart, fT[0][index], rangeEnd)) {
16 continue;
17 }
18 const SkDPoint& iPt = fPt[index];
19 double dist = testPt.distanceSquared(iPt);
20 if (*closestDist > dist) {
21 *closestDist = dist;
22 closest = index;
23 }
caryclark@google.coma2bbc6e2013-11-01 17:36:03 +000024 }
caryclark54359292015-03-26 07:52:43 -070025 return closest;
caryclark@google.coma2bbc6e2013-11-01 17:36:03 +000026}
27
caryclark@google.com07393ca2013-04-08 11:47:37 +000028void SkIntersections::flip() {
29 for (int index = 0; index < fUsed; ++index) {
30 fT[1][index] = 1 - fT[1][index];
31 }
32}
33
caryclark@google.comfa2aeee2013-07-15 13:29:13 +000034int SkIntersections::insert(double one, double two, const SkDPoint& pt) {
caryclark@google.comb3f09212013-04-17 15:49:16 +000035 if (fIsCoincident[0] == 3 && between(fT[0][0], one, fT[0][1])) {
36 // For now, don't allow a mix of coincident and non-coincident intersections
37 return -1;
38 }
caryclark@google.com07393ca2013-04-08 11:47:37 +000039 SkASSERT(fUsed <= 1 || fT[0][0] <= fT[0][1]);
40 int index;
41 for (index = 0; index < fUsed; ++index) {
42 double oldOne = fT[0][index];
43 double oldTwo = fT[1][index];
caryclark@google.comfa2aeee2013-07-15 13:29:13 +000044 if (one == oldOne && two == oldTwo) {
45 return -1;
46 }
47 if (more_roughly_equal(oldOne, one) && more_roughly_equal(oldTwo, two)) {
caryclark@google.com07393ca2013-04-08 11:47:37 +000048 if ((precisely_zero(one) && !precisely_zero(oldOne))
49 || (precisely_equal(one, 1) && !precisely_equal(oldOne, 1))
50 || (precisely_zero(two) && !precisely_zero(oldTwo))
51 || (precisely_equal(two, 1) && !precisely_equal(oldTwo, 1))) {
caryclark65f55312014-11-13 06:58:52 -080052 SkASSERT(one >= 0 && one <= 1);
53 SkASSERT(two >= 0 && two <= 1);
caryclark@google.com07393ca2013-04-08 11:47:37 +000054 fT[0][index] = one;
55 fT[1][index] = two;
caryclark@google.comfa2aeee2013-07-15 13:29:13 +000056 fPt[index] = pt;
caryclark@google.com07393ca2013-04-08 11:47:37 +000057 }
58 return -1;
59 }
60 #if ONE_OFF_DEBUG
61 if (pt.roughlyEqual(fPt[index])) {
62 SkDebugf("%s t=%1.9g pts roughly equal\n", __FUNCTION__, one);
63 }
64 #endif
65 if (fT[0][index] > one) {
66 break;
67 }
68 }
caryclark@google.com7eaa53d2013-10-02 14:49:34 +000069 if (fUsed >= fMax) {
caryclark595ac282016-10-24 08:41:45 -070070 SkOPASSERT(0); // FIXME : this error, if it is to be handled at runtime in release, must
caryclark@google.com7eaa53d2013-10-02 14:49:34 +000071 // be propagated all the way back down to the caller, and return failure.
72 fUsed = 0;
73 return 0;
74 }
caryclark@google.com07393ca2013-04-08 11:47:37 +000075 int remaining = fUsed - index;
76 if (remaining > 0) {
77 memmove(&fPt[index + 1], &fPt[index], sizeof(fPt[0]) * remaining);
78 memmove(&fT[0][index + 1], &fT[0][index], sizeof(fT[0][0]) * remaining);
79 memmove(&fT[1][index + 1], &fT[1][index], sizeof(fT[1][0]) * remaining);
caryclark@google.com570863f2013-09-16 15:55:01 +000080 int clearMask = ~((1 << index) - 1);
81 fIsCoincident[0] += fIsCoincident[0] & clearMask;
82 fIsCoincident[1] += fIsCoincident[1] & clearMask;
caryclark@google.com07393ca2013-04-08 11:47:37 +000083 }
caryclark@google.comfa2aeee2013-07-15 13:29:13 +000084 fPt[index] = pt;
Cary Clark8af026e2017-03-01 14:02:02 -050085 if (one < 0 || one > 1) {
86 return -1;
87 }
88 if (two < 0 || two > 1) {
89 return -1;
90 }
caryclark@google.com07393ca2013-04-08 11:47:37 +000091 fT[0][index] = one;
92 fT[1][index] = two;
93 ++fUsed;
caryclark94c902e2015-08-18 07:12:43 -070094 SkASSERT(fUsed <= SK_ARRAY_COUNT(fPt));
caryclark@google.com07393ca2013-04-08 11:47:37 +000095 return index;
96}
97
caryclarkdac1d172014-06-17 05:15:38 -070098void SkIntersections::insertNear(double one, double two, const SkDPoint& pt1, const SkDPoint& pt2) {
99 SkASSERT(one == 0 || one == 1);
100 SkASSERT(two == 0 || two == 1);
101 SkASSERT(pt1 != pt2);
caryclark54359292015-03-26 07:52:43 -0700102 fNearlySame[one ? 1 : 0] = true;
caryclarkdac1d172014-06-17 05:15:38 -0700103 (void) insert(one, two, pt1);
caryclark54359292015-03-26 07:52:43 -0700104 fPt2[one ? 1 : 0] = pt2;
caryclarkdac1d172014-06-17 05:15:38 -0700105}
106
caryclark54359292015-03-26 07:52:43 -0700107int SkIntersections::insertCoincident(double one, double two, const SkDPoint& pt) {
caryclark@google.com07393ca2013-04-08 11:47:37 +0000108 int index = insertSwap(one, two, pt);
caryclark54359292015-03-26 07:52:43 -0700109 if (index >= 0) {
110 setCoincident(index);
111 }
112 return index;
113}
114
115void SkIntersections::setCoincident(int index) {
116 SkASSERT(index >= 0);
caryclark@google.com07393ca2013-04-08 11:47:37 +0000117 int bit = 1 << index;
118 fIsCoincident[0] |= bit;
119 fIsCoincident[1] |= bit;
120}
121
caryclark54359292015-03-26 07:52:43 -0700122void SkIntersections::merge(const SkIntersections& a, int aIndex, const SkIntersections& b,
123 int bIndex) {
124 this->reset();
125 fT[0][0] = a.fT[0][aIndex];
126 fT[1][0] = b.fT[0][bIndex];
127 fPt[0] = a.fPt[aIndex];
128 fPt2[0] = b.fPt[bIndex];
129 fUsed = 1;
caryclark@google.coma2bbc6e2013-11-01 17:36:03 +0000130}
131
caryclark54359292015-03-26 07:52:43 -0700132int SkIntersections::mostOutside(double rangeStart, double rangeEnd, const SkDPoint& origin) const {
133 int result = -1;
134 for (int index = 0; index < fUsed; ++index) {
135 if (!between(rangeStart, fT[0][index], rangeEnd)) {
136 continue;
137 }
138 if (result < 0) {
139 result = index;
140 continue;
141 }
142 SkDVector best = fPt[result] - origin;
143 SkDVector test = fPt[index] - origin;
144 if (test.crossCheck(best) < 0) {
145 result = index;
146 }
caryclark@google.com07393ca2013-04-08 11:47:37 +0000147 }
caryclark54359292015-03-26 07:52:43 -0700148 return result;
caryclark@google.com07393ca2013-04-08 11:47:37 +0000149}
150
caryclark@google.com07393ca2013-04-08 11:47:37 +0000151void SkIntersections::removeOne(int index) {
152 int remaining = --fUsed - index;
153 if (remaining <= 0) {
154 return;
155 }
156 memmove(&fPt[index], &fPt[index + 1], sizeof(fPt[0]) * remaining);
157 memmove(&fT[0][index], &fT[0][index + 1], sizeof(fT[0][0]) * remaining);
158 memmove(&fT[1][index], &fT[1][index + 1], sizeof(fT[1][0]) * remaining);
caryclark65f55312014-11-13 06:58:52 -0800159// SkASSERT(fIsCoincident[0] == 0);
caryclark@google.com07393ca2013-04-08 11:47:37 +0000160 int coBit = fIsCoincident[0] & (1 << index);
161 fIsCoincident[0] -= ((fIsCoincident[0] >> 1) & ~((1 << index) - 1)) + coBit;
162 SkASSERT(!(coBit ^ (fIsCoincident[1] & (1 << index))));
163 fIsCoincident[1] -= ((fIsCoincident[1] >> 1) & ~((1 << index) - 1)) + coBit;
caryclark@google.com07393ca2013-04-08 11:47:37 +0000164}