1
0
Fork 0
mirror of https://git.coom.tech/drummyfish/raycastlib.git synced 2024-11-21 20:29:59 +01:00
raycastlib/test.c

118 lines
2 KiB
C
Raw Normal View History

2018-08-23 09:25:34 +02:00
/**
Tests for raycastlib.
license: CC0
*/
2018-08-23 02:46:40 +02:00
#include <stdio.h>
2018-08-23 03:04:52 +02:00
#include "raycastlib.h"
2018-08-31 10:59:32 +02:00
#include <time.h>
2018-08-23 02:46:40 +02:00
int16_t testArrayFunc(int16_t x, int16_t y)
{
2018-08-23 03:04:52 +02:00
if (x > 12 || y > 12)
return x * y;
2018-08-23 02:46:40 +02:00
return (x < 0 || y < 0 || x > 9 || y > 9) ? 1 : 0;
}
/**
Simple automatic test function.
*/
int testSingleRay(Unit startX, Unit startY, Unit dirX, Unit dirY,
int16_t expectSquareX, int16_t expectSquareY, int16_t expectPointX,
int16_t expectPointY, int16_t tolerateError)
{
Ray r;
r.start.x = startX;
r.start.y = startY;
r.direction.x = dirX;
r.direction.y = dirY;
printf("- casting ray:\n");
logRay(r);
HitResult h = castRay(r,testArrayFunc,20);
printf("- result:\n");
logHitResult(h);
int result =
h.square.x == expectSquareX &&
h.square.y == expectSquareY &&
h.position.x <= expectPointX + tolerateError &&
h.position.x >= expectPointX - tolerateError &&
h.position.y <= expectPointY + tolerateError &&
h.position.y >= expectPointY - tolerateError;
if (result)
2018-08-23 03:04:52 +02:00
printf("\nOK\n\n");
2018-08-23 02:46:40 +02:00
else
2018-08-23 03:04:52 +02:00
printf("\nFAIL\n\n");
2018-08-23 02:46:40 +02:00
return result;
}
int main()
{
printf("Testing raycastlib.\n");
if (!testSingleRay(
3 * UNITS_PER_SQUARE + UNITS_PER_SQUARE / 2,
4 * UNITS_PER_SQUARE + UNITS_PER_SQUARE / 2,
100, 50,
10, 7,
10240, 7936,
16))
return 1;
2018-08-23 03:04:52 +02:00
if (!testSingleRay(
0,
0,
100, 100,
10, 9,
2018-08-31 10:59:32 +02:00
10240, 10240,
2018-08-23 03:04:52 +02:00
16))
return 1;
2018-08-31 10:59:32 +02:00
if (!testSingleRay(
400,
6811,
-629,805,
-1, 7,
-1, 7325,
16))
return 1;
2018-08-23 09:25:34 +02:00
for (Unit i = -UNITS_PER_SQUARE; i <= UNITS_PER_SQUARE; i += 64)
{
Unit v = sinInt(i);
2018-08-23 09:35:10 +02:00
logVector2D(angleToDirection(i));
2018-08-23 09:25:34 +02:00
2018-08-23 09:35:10 +02:00
//for (int j = 0; j < (v + UNITS_PER_SQUARE) / 64; ++j)
// printf(".");
//printf("\n");
2018-08-23 09:25:34 +02:00
}
2018-08-31 10:59:32 +02:00
printf("benchmark:\n");
time_t start,end;
double dif;
time (&start);
for (int i = 0; i < 1000; ++i)
printf("*");
time (&end);
dif = difftime (end,start);
printf ("Your calculations took %.2lf seconds to run.\n", dif );
2018-08-23 02:46:40 +02:00
return 0;
}