caryclark@google.com | 9166dcb | 2013-04-08 11:50:00 +0000 | [diff] [blame] | 1 | /* |
| 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 | #include "PathOpsExtendedTest.h" |
caryclark@google.com | 8d0a524 | 2013-07-16 16:11:16 +0000 | [diff] [blame] | 8 | #include "PathOpsTestCommon.h" |
caryclark@google.com | 9166dcb | 2013-04-08 11:50:00 +0000 | [diff] [blame] | 9 | #include "SkIntersections.h" |
| 10 | #include "SkPathOpsLine.h" |
| 11 | #include "SkPathOpsQuad.h" |
| 12 | #include "SkReduceOrder.h" |
| 13 | #include "Test.h" |
| 14 | |
| 15 | static struct lineQuad { |
| 16 | SkDQuad quad; |
| 17 | SkDLine line; |
| 18 | int result; |
| 19 | SkDPoint expected[2]; |
| 20 | } lineQuadTests[] = { |
| 21 | // quad line results |
| 22 | {{{{1, 1}, {2, 1}, {0, 2}}}, {{{0, 0}, {1, 1}}}, 1, {{1, 1}, {0, 0}} }, |
| 23 | {{{{0, 0}, {1, 1}, {3, 1}}}, {{{0, 0}, {3, 1}}}, 2, {{0, 0}, {3, 1}} }, |
| 24 | {{{{2, 0}, {1, 1}, {2, 2}}}, {{{0, 0}, {0, 2}}}, 0, {{0, 0}, {0, 0}} }, |
| 25 | {{{{4, 0}, {0, 1}, {4, 2}}}, {{{3, 1}, {4, 1}}}, 0, {{0, 0}, {0, 0}} }, |
| 26 | {{{{0, 0}, {0, 1}, {1, 1}}}, {{{0, 1}, {1, 0}}}, 1, {{.25, .75}, {0, 0}} }, |
| 27 | }; |
| 28 | |
caryclark@google.com | ad65a3e | 2013-04-15 19:13:59 +0000 | [diff] [blame] | 29 | static size_t lineQuadTests_count = SK_ARRAY_COUNT(lineQuadTests); |
caryclark@google.com | 9166dcb | 2013-04-08 11:50:00 +0000 | [diff] [blame] | 30 | |
| 31 | static int doIntersect(SkIntersections& intersections, const SkDQuad& quad, const SkDLine& line, |
| 32 | bool& flipped) { |
| 33 | int result; |
| 34 | flipped = false; |
| 35 | if (line[0].fX == line[1].fX) { |
| 36 | double top = line[0].fY; |
| 37 | double bottom = line[1].fY; |
| 38 | flipped = top > bottom; |
| 39 | if (flipped) { |
| 40 | SkTSwap<double>(top, bottom); |
| 41 | } |
| 42 | result = intersections.vertical(quad, top, bottom, line[0].fX, flipped); |
| 43 | } else if (line[0].fY == line[1].fY) { |
| 44 | double left = line[0].fX; |
| 45 | double right = line[1].fX; |
| 46 | flipped = left > right; |
| 47 | if (flipped) { |
| 48 | SkTSwap<double>(left, right); |
| 49 | } |
| 50 | result = intersections.horizontal(quad, left, right, line[0].fY, flipped); |
| 51 | } else { |
| 52 | intersections.intersect(quad, line); |
| 53 | result = intersections.used(); |
| 54 | } |
| 55 | return result; |
| 56 | } |
| 57 | |
| 58 | static struct oneLineQuad { |
| 59 | SkDQuad quad; |
| 60 | SkDLine line; |
| 61 | } oneOffs[] = { |
caryclark@google.com | fa2aeee | 2013-07-15 13:29:13 +0000 | [diff] [blame] | 62 | {{{{1101, 10}, {1101, 8.3431453704833984}, {1099.828857421875, 7.1711997985839844}}}, |
| 63 | {{{1099.828857421875,7.1711711883544922}, {1099.121337890625,7.8786783218383789}}}}, |
caryclark@google.com | a5e5592 | 2013-05-07 18:51:31 +0000 | [diff] [blame] | 64 | {{{{973, 507}, {973, 508.24264526367187}, {972.12158203125, 509.12161254882812}}}, |
| 65 | {{{930, 467}, {973, 510}}}}, |
caryclark@google.com | 9166dcb | 2013-04-08 11:50:00 +0000 | [diff] [blame] | 66 | {{{{369.848602, 145.680267}, {382.360413, 121.298294}, {406.207703, 121.298294}}}, |
caryclark@google.com | fa2aeee | 2013-07-15 13:29:13 +0000 | [diff] [blame] | 67 | {{{406.207703, 121.298294}, {348.781738, 123.864815}}}}, |
| 68 | }; |
caryclark@google.com | 9166dcb | 2013-04-08 11:50:00 +0000 | [diff] [blame] | 69 | |
caryclark@google.com | ad65a3e | 2013-04-15 19:13:59 +0000 | [diff] [blame] | 70 | static size_t oneOffs_count = SK_ARRAY_COUNT(oneOffs); |
caryclark@google.com | 9166dcb | 2013-04-08 11:50:00 +0000 | [diff] [blame] | 71 | |
| 72 | static void testOneOffs(skiatest::Reporter* reporter) { |
caryclark@google.com | 9166dcb | 2013-04-08 11:50:00 +0000 | [diff] [blame] | 73 | bool flipped = false; |
| 74 | for (size_t index = 0; index < oneOffs_count; ++index) { |
| 75 | const SkDQuad& quad = oneOffs[index].quad; |
caryclark@google.com | 8d0a524 | 2013-07-16 16:11:16 +0000 | [diff] [blame] | 76 | SkASSERT(ValidQuad(quad)); |
caryclark@google.com | 9166dcb | 2013-04-08 11:50:00 +0000 | [diff] [blame] | 77 | const SkDLine& line = oneOffs[index].line; |
caryclark@google.com | 8d0a524 | 2013-07-16 16:11:16 +0000 | [diff] [blame] | 78 | SkASSERT(ValidLine(line)); |
caryclark@google.com | a5e5592 | 2013-05-07 18:51:31 +0000 | [diff] [blame] | 79 | SkIntersections intersections; |
caryclark@google.com | 9166dcb | 2013-04-08 11:50:00 +0000 | [diff] [blame] | 80 | int result = doIntersect(intersections, quad, line, flipped); |
| 81 | for (int inner = 0; inner < result; ++inner) { |
| 82 | double quadT = intersections[0][inner]; |
caryclark@google.com | 4fdbb22 | 2013-07-23 15:27:41 +0000 | [diff] [blame] | 83 | SkDPoint quadXY = quad.ptAtT(quadT); |
caryclark@google.com | 9166dcb | 2013-04-08 11:50:00 +0000 | [diff] [blame] | 84 | double lineT = intersections[1][inner]; |
caryclark@google.com | 4fdbb22 | 2013-07-23 15:27:41 +0000 | [diff] [blame] | 85 | SkDPoint lineXY = line.ptAtT(lineT); |
caryclark@google.com | 9166dcb | 2013-04-08 11:50:00 +0000 | [diff] [blame] | 86 | REPORTER_ASSERT(reporter, quadXY.approximatelyEqual(lineXY)); |
| 87 | } |
| 88 | } |
| 89 | } |
| 90 | |
caryclark@google.com | fa2aeee | 2013-07-15 13:29:13 +0000 | [diff] [blame] | 91 | static void PathOpsQuadLineIntersectionTestOne(skiatest::Reporter* reporter) { |
caryclark@google.com | 9166dcb | 2013-04-08 11:50:00 +0000 | [diff] [blame] | 92 | testOneOffs(reporter); |
caryclark@google.com | fa2aeee | 2013-07-15 13:29:13 +0000 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | static void PathOpsQuadLineIntersectionTest(skiatest::Reporter* reporter) { |
caryclark@google.com | 9166dcb | 2013-04-08 11:50:00 +0000 | [diff] [blame] | 96 | for (size_t index = 0; index < lineQuadTests_count; ++index) { |
| 97 | int iIndex = static_cast<int>(index); |
| 98 | const SkDQuad& quad = lineQuadTests[index].quad; |
caryclark@google.com | 8d0a524 | 2013-07-16 16:11:16 +0000 | [diff] [blame] | 99 | SkASSERT(ValidQuad(quad)); |
caryclark@google.com | 9166dcb | 2013-04-08 11:50:00 +0000 | [diff] [blame] | 100 | const SkDLine& line = lineQuadTests[index].line; |
caryclark@google.com | 8d0a524 | 2013-07-16 16:11:16 +0000 | [diff] [blame] | 101 | SkASSERT(ValidLine(line)); |
caryclark@google.com | 9166dcb | 2013-04-08 11:50:00 +0000 | [diff] [blame] | 102 | SkReduceOrder reducer1, reducer2; |
| 103 | int order1 = reducer1.reduce(quad, SkReduceOrder::kFill_Style); |
| 104 | int order2 = reducer2.reduce(line); |
| 105 | if (order1 < 3) { |
| 106 | SkDebugf("%s [%d] quad order=%d\n", __FUNCTION__, iIndex, order1); |
| 107 | REPORTER_ASSERT(reporter, 0); |
| 108 | } |
| 109 | if (order2 < 2) { |
| 110 | SkDebugf("%s [%d] line order=%d\n", __FUNCTION__, iIndex, order2); |
| 111 | REPORTER_ASSERT(reporter, 0); |
| 112 | } |
| 113 | SkIntersections intersections; |
| 114 | bool flipped = false; |
| 115 | int result = doIntersect(intersections, quad, line, flipped); |
| 116 | REPORTER_ASSERT(reporter, result == lineQuadTests[index].result); |
| 117 | if (intersections.used() <= 0) { |
| 118 | continue; |
| 119 | } |
| 120 | for (int pt = 0; pt < result; ++pt) { |
| 121 | double tt1 = intersections[0][pt]; |
| 122 | REPORTER_ASSERT(reporter, tt1 >= 0 && tt1 <= 1); |
caryclark@google.com | 4fdbb22 | 2013-07-23 15:27:41 +0000 | [diff] [blame] | 123 | SkDPoint t1 = quad.ptAtT(tt1); |
caryclark@google.com | 9166dcb | 2013-04-08 11:50:00 +0000 | [diff] [blame] | 124 | double tt2 = intersections[1][pt]; |
| 125 | REPORTER_ASSERT(reporter, tt2 >= 0 && tt2 <= 1); |
caryclark@google.com | 4fdbb22 | 2013-07-23 15:27:41 +0000 | [diff] [blame] | 126 | SkDPoint t2 = line.ptAtT(tt2); |
caryclark@google.com | 9166dcb | 2013-04-08 11:50:00 +0000 | [diff] [blame] | 127 | if (!t1.approximatelyEqual(t2)) { |
| 128 | SkDebugf("%s [%d,%d] x!= t1=%1.9g (%1.9g,%1.9g) t2=%1.9g (%1.9g,%1.9g)\n", |
| 129 | __FUNCTION__, iIndex, pt, tt1, t1.fX, t1.fY, tt2, t2.fX, t2.fY); |
| 130 | REPORTER_ASSERT(reporter, 0); |
| 131 | } |
| 132 | if (!t1.approximatelyEqual(lineQuadTests[index].expected[0]) |
| 133 | && (lineQuadTests[index].result == 1 |
| 134 | || !t1.approximatelyEqual(lineQuadTests[index].expected[1]))) { |
| 135 | SkDebugf("%s t1=(%1.9g,%1.9g)\n", __FUNCTION__, t1.fX, t1.fY); |
| 136 | REPORTER_ASSERT(reporter, 0); |
| 137 | } |
| 138 | } |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | #include "TestClassDef.h" |
caryclark@google.com | ad65a3e | 2013-04-15 19:13:59 +0000 | [diff] [blame] | 143 | DEFINE_TESTCLASS_SHORT(PathOpsQuadLineIntersectionTest) |
caryclark@google.com | fa2aeee | 2013-07-15 13:29:13 +0000 | [diff] [blame] | 144 | |
| 145 | DEFINE_TESTCLASS_SHORT(PathOpsQuadLineIntersectionTestOne) |