summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTycho <work.tycho+git@gmail.com>2014-02-05 20:06:57 +0100
committerTycho <work.tycho+git@gmail.com>2014-02-05 20:06:57 +0100
commitaeb877f76a77d7f12b6aea5264a1b9b976e4f3ac (patch)
tree28705293fac991dc761af51875af94cd857cc67e
parentSimplified shutdown (diff)
downloadcuberite-aeb877f76a77d7f12b6aea5264a1b9b976e4f3ac.tar
cuberite-aeb877f76a77d7f12b6aea5264a1b9b976e4f3ac.tar.gz
cuberite-aeb877f76a77d7f12b6aea5264a1b9b976e4f3ac.tar.bz2
cuberite-aeb877f76a77d7f12b6aea5264a1b9b976e4f3ac.tar.lz
cuberite-aeb877f76a77d7f12b6aea5264a1b9b976e4f3ac.tar.xz
cuberite-aeb877f76a77d7f12b6aea5264a1b9b976e4f3ac.tar.zst
cuberite-aeb877f76a77d7f12b6aea5264a1b9b976e4f3ac.zip
-rw-r--r--src/BoundingBox.cpp33
1 files changed, 26 insertions, 7 deletions
diff --git a/src/BoundingBox.cpp b/src/BoundingBox.cpp
index 86d4546c7..94a22465c 100644
--- a/src/BoundingBox.cpp
+++ b/src/BoundingBox.cpp
@@ -11,7 +11,7 @@
-#if 0
+#if SELF_TEST
/// A simple self-test that is executed on program start, used to verify bbox functionality
class SelfTest
@@ -30,18 +30,37 @@ public:
Vector3d(1.999, 0, 1.5), Vector3d(1.999, 4, 1.5), // Should intersect at 0.25, face 0 (YM)
Vector3d(2.001, 0, 1.5), Vector3d(2.001, 4, 1.5), // Should not intersect
} ;
+ bool Results[] = {true,true,true,false,true,false};
+ double LineCoeffs[] = {2,0.25,0.5,0,0.25,0};
+
for (size_t i = 0; i < ARRAYCOUNT(LineDefs) / 2; i++)
{
double LineCoeff;
- char Face;
+ eBlockFace Face;
Vector3d Line1 = LineDefs[2 * i];
Vector3d Line2 = LineDefs[2 * i + 1];
bool res = cBoundingBox::CalcLineIntersection(Min, Max, Line1, Line2, LineCoeff, Face);
- printf("LineIntersection({%.02f, %.02f, %.02f}, {%.02f, %.02f, %.02f}) -> %d, %.05f, %d\n",
- Line1.x, Line1.y, Line1.z,
- Line2.x, Line2.y, Line2.z,
- res ? 1 : 0, LineCoeff, Face
- );
+ if (res != Results[i])
+ {
+ printf("LineIntersection({%.02f, %.02f, %.02f}, {%.02f, %.02f, %.02f}) -> %d, %.05f, %d\n",
+ Line1.x, Line1.y, Line1.z,
+ Line2.x, Line2.y, Line2.z,
+ res ? 1 : 0, LineCoeff, Face
+ );
+ abort();
+ }
+ if (res)
+ {
+ if (LineCoeff != LineCoeffs[i])
+ {
+ printf("LineIntersection({%.02f, %.02f, %.02f}, {%.02f, %.02f, %.02f}) -> %d, %.05f, %d\n",
+ Line1.x, Line1.y, Line1.z,
+ Line2.x, Line2.y, Line2.z,
+ res ? 1 : 0, LineCoeff, Face
+ );
+ abort();
+ }
+ }
} // for i - LineDefs[]
printf("BoundingBox selftest complete.");
}