2011-12-14 23:34:58 -04:00
|
|
|
//
|
2011-12-19 05:52:59 -04:00
|
|
|
// Unit tests for the AP_Math polygon code
|
2011-12-14 23:34:58 -04:00
|
|
|
//
|
|
|
|
|
2015-08-11 03:28:44 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2015-10-19 16:30:26 -03:00
|
|
|
#include <AP_Math/AP_Math.h>
|
2011-12-14 23:34:58 -04:00
|
|
|
|
2017-04-13 08:31:52 -03:00
|
|
|
void setup();
|
|
|
|
void loop();
|
|
|
|
|
2015-10-16 17:22:11 -03:00
|
|
|
const AP_HAL::HAL& hal = AP_HAL::get_HAL();
|
2011-12-14 23:34:58 -04:00
|
|
|
|
|
|
|
/*
|
2012-08-17 03:20:14 -03:00
|
|
|
* this is the boundary of the 2010 outback challenge
|
|
|
|
* Note that the last point must be the same as the first for the
|
|
|
|
* Polygon_outside() algorithm
|
2011-12-14 23:34:58 -04:00
|
|
|
*/
|
2011-12-15 22:48:15 -04:00
|
|
|
static const Vector2l OBC_boundary[] = {
|
|
|
|
Vector2l(-265695640, 1518373730),
|
|
|
|
Vector2l(-265699560, 1518394050),
|
|
|
|
Vector2l(-265768230, 1518411420),
|
|
|
|
Vector2l(-265773080, 1518403440),
|
|
|
|
Vector2l(-265815110, 1518419500),
|
|
|
|
Vector2l(-265784860, 1518474690),
|
|
|
|
Vector2l(-265994890, 1518528860),
|
|
|
|
Vector2l(-266092110, 1518747420),
|
|
|
|
Vector2l(-266454780, 1518820530),
|
|
|
|
Vector2l(-266435720, 1518303500),
|
|
|
|
Vector2l(-265875990, 1518344050),
|
|
|
|
Vector2l(-265695640, 1518373730)
|
2011-12-14 23:34:58 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct {
|
2011-12-15 22:48:15 -04:00
|
|
|
Vector2l point;
|
|
|
|
bool outside;
|
2011-12-14 23:34:58 -04:00
|
|
|
} test_points[] = {
|
2011-12-15 22:48:15 -04:00
|
|
|
{ Vector2l(-266398870, 1518220000), true },
|
|
|
|
{ Vector2l(-266418700, 1518709260), false },
|
|
|
|
{ Vector2l(-350000000, 1490000000), true },
|
|
|
|
{ Vector2l(0, 0), true },
|
|
|
|
{ Vector2l(-265768150, 1518408250), false },
|
|
|
|
{ Vector2l(-265774060, 1518405860), true },
|
|
|
|
{ Vector2l(-266435630, 1518303440), true },
|
|
|
|
{ Vector2l(-266435650, 1518313540), false },
|
|
|
|
{ Vector2l(-266435690, 1518303530), false },
|
|
|
|
{ Vector2l(-266435690, 1518303490), true },
|
2011-12-19 03:51:13 -04:00
|
|
|
{ Vector2l(-265875990, 1518344049), true },
|
|
|
|
{ Vector2l(-265875990, 1518344051), false },
|
|
|
|
{ Vector2l(-266454781, 1518820530), true },
|
|
|
|
{ Vector2l(-266454779, 1518820530), true },
|
|
|
|
{ Vector2l(-266092109, 1518747420), true },
|
|
|
|
{ Vector2l(-266092111, 1518747420), false },
|
|
|
|
{ Vector2l(-266092110, 1518747421), true },
|
|
|
|
{ Vector2l(-266092110, 1518747419), false },
|
|
|
|
{ Vector2l(-266092111, 1518747421), true },
|
|
|
|
{ Vector2l(-266092109, 1518747421), true },
|
|
|
|
{ Vector2l(-266092111, 1518747419), false },
|
2011-12-14 23:34:58 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
2012-08-17 03:20:14 -03:00
|
|
|
* polygon tests
|
2011-12-14 23:34:58 -04:00
|
|
|
*/
|
|
|
|
void setup(void)
|
|
|
|
{
|
2017-04-13 08:31:52 -03:00
|
|
|
uint32_t count;
|
2011-12-14 23:34:58 -04:00
|
|
|
bool all_passed = true;
|
|
|
|
uint32_t start_time;
|
|
|
|
|
2017-01-21 00:42:36 -04:00
|
|
|
hal.console->printf("polygon unit tests\n\n");
|
2011-12-14 23:34:58 -04:00
|
|
|
|
2015-07-17 13:38:43 -03:00
|
|
|
if (!Polygon_complete(OBC_boundary, ARRAY_SIZE(OBC_boundary))) {
|
2017-01-21 00:42:36 -04:00
|
|
|
hal.console->printf("OBC boundary is not complete!\n");
|
2011-12-14 23:42:34 -04:00
|
|
|
all_passed = false;
|
|
|
|
}
|
|
|
|
|
2015-07-17 13:38:43 -03:00
|
|
|
if (Polygon_complete(OBC_boundary, ARRAY_SIZE(OBC_boundary)-1)) {
|
2017-01-21 00:42:36 -04:00
|
|
|
hal.console->printf("Polygon_complete test failed\n");
|
2011-12-14 23:42:34 -04:00
|
|
|
all_passed = false;
|
|
|
|
}
|
|
|
|
|
2017-04-13 08:31:52 -03:00
|
|
|
for (uint32_t i = 0; i < ARRAY_SIZE(test_points); i++) {
|
|
|
|
bool result = Polygon_outside(test_points[i].point,
|
2015-07-17 13:38:43 -03:00
|
|
|
OBC_boundary, ARRAY_SIZE(OBC_boundary));
|
2015-10-25 17:10:41 -03:00
|
|
|
hal.console->printf("%10f,%10f %s %s\n",
|
2017-04-13 08:31:52 -03:00
|
|
|
(double)(1.0e-7f * test_points[i].point.x),
|
|
|
|
(double)(1.0e-7f * test_points[i].point.y),
|
2012-08-17 03:20:14 -03:00
|
|
|
result ? "OUTSIDE" : "INSIDE ",
|
|
|
|
result == test_points[i].outside ? "PASS" : "FAIL");
|
2011-12-14 23:34:58 -04:00
|
|
|
if (result != test_points[i].outside) {
|
|
|
|
all_passed = false;
|
|
|
|
}
|
|
|
|
}
|
2017-01-21 00:42:36 -04:00
|
|
|
hal.console->printf("%s\n", all_passed ? "TEST PASSED" : "TEST FAILED");
|
2011-12-14 23:34:58 -04:00
|
|
|
|
2017-01-21 00:42:36 -04:00
|
|
|
hal.console->printf("Speed test:\n");
|
2015-11-19 23:12:15 -04:00
|
|
|
start_time = AP_HAL::micros();
|
2017-04-13 08:31:52 -03:00
|
|
|
for (count = 0; count < 1000; count++) {
|
|
|
|
for (uint32_t i = 0; i < ARRAY_SIZE(test_points); i++) {
|
|
|
|
bool result = Polygon_outside(test_points[i].point,
|
2015-07-17 13:38:43 -03:00
|
|
|
OBC_boundary, ARRAY_SIZE(OBC_boundary));
|
2011-12-14 23:34:58 -04:00
|
|
|
if (result != test_points[i].outside) {
|
|
|
|
all_passed = false;
|
|
|
|
}
|
|
|
|
}
|
2012-08-17 03:20:14 -03:00
|
|
|
}
|
2015-11-19 23:12:15 -04:00
|
|
|
hal.console->printf("%u usec/call\n", (unsigned)((AP_HAL::micros()
|
2017-04-13 08:31:52 -03:00
|
|
|
- start_time)/(count * ARRAY_SIZE(test_points))));
|
2017-01-21 00:42:36 -04:00
|
|
|
hal.console->printf("%s\n", all_passed ? "ALL TESTS PASSED" : "TEST FAILED");
|
2011-12-14 23:34:58 -04:00
|
|
|
}
|
|
|
|
|
2012-09-18 15:08:18 -03:00
|
|
|
void loop(void){}
|
|
|
|
|
|
|
|
AP_HAL_MAIN();
|