2023-04-05 03:02:49 +08:00
|
|
|
#include "level.h"
|
2023-03-31 08:08:02 +08:00
|
|
|
|
2023-04-05 03:02:49 +08:00
|
|
|
#include "maths.h"
|
|
|
|
|
2023-04-20 09:21:11 +08:00
|
|
|
#define WIDTH 10
|
|
|
|
#define HEIGHT 10
|
2023-03-31 08:08:02 +08:00
|
|
|
|
2023-05-01 07:10:01 +08:00
|
|
|
static float castRay(sf::Vector2f point, float direction, TileData* tileData);
|
2023-04-05 03:02:49 +08:00
|
|
|
static void getGridIndex(sf::Vector2f point, int* x, int* y);
|
|
|
|
|
2023-03-31 08:08:02 +08:00
|
|
|
static unsigned int level[WIDTH * HEIGHT] = {
|
2023-04-20 09:21:11 +08:00
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 1, 0, 0, 0, 0, 0, 1, 1,
|
2023-05-01 07:10:01 +08:00
|
|
|
1, 1, 1, 0, 0, 0, 0, 2, 0, 1,
|
2023-04-20 09:21:11 +08:00
|
|
|
1, 0, 0, 1, 0, 0, 0, 0, 0, 1,
|
2023-05-01 07:10:01 +08:00
|
|
|
1, 0, 0, 1, 0, 0, 0, 3, 0, 1,
|
2023-04-20 09:21:11 +08:00
|
|
|
1, 0, 0, 1, 0, 0, 0, 0, 0, 1,
|
2023-05-01 07:10:01 +08:00
|
|
|
1, 0, 0, 1, 0, 0, 0, 4, 0, 1,
|
2023-04-20 09:21:11 +08:00
|
|
|
1, 0, 0, 0, 0, 0, 0, 0, 0, 1,
|
|
|
|
1, 0, 0, 1, 0, 0, 0, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
2023-03-31 08:08:02 +08:00
|
|
|
};
|
|
|
|
|
2023-04-16 09:17:11 +08:00
|
|
|
int level_init()
|
2023-03-31 08:08:02 +08:00
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2023-04-16 09:17:11 +08:00
|
|
|
void level_update(sf::RenderTarget* renderTarget, unsigned int drawSize)
|
2023-03-31 08:08:02 +08:00
|
|
|
{
|
2023-04-16 09:17:11 +08:00
|
|
|
if (!renderTarget) return;
|
2023-03-31 08:08:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void level_end()
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-05-01 07:10:01 +08:00
|
|
|
float level_rayCast(sf::Vector2f point, float direction, TileData* tileData)
|
2023-04-02 08:21:02 +08:00
|
|
|
{
|
2023-05-01 07:10:01 +08:00
|
|
|
if (!tileData) return -1.f;
|
|
|
|
return castRay(point, direction, tileData);
|
2023-04-02 08:21:02 +08:00
|
|
|
}
|
|
|
|
|
2023-04-16 09:43:05 +08:00
|
|
|
void level_getDimensions(unsigned int* width, unsigned int* height)
|
|
|
|
{
|
|
|
|
*width = WIDTH;
|
|
|
|
*height = HEIGHT;
|
|
|
|
}
|
|
|
|
|
2023-04-20 07:28:17 +08:00
|
|
|
unsigned int level_getGridValue(unsigned int x, unsigned int y)
|
2023-04-01 05:56:26 +08:00
|
|
|
{
|
2023-04-20 07:28:17 +08:00
|
|
|
if (x < 0 || WIDTH <= x) return 0;
|
|
|
|
if (y < 0 || HEIGHT <= y) return 0;
|
2023-04-01 05:56:26 +08:00
|
|
|
|
2023-04-20 07:28:17 +08:00
|
|
|
return level[y * HEIGHT + x];
|
2023-03-31 08:08:02 +08:00
|
|
|
}
|
2023-04-05 03:02:49 +08:00
|
|
|
|
2023-05-01 07:10:01 +08:00
|
|
|
static float castRay(sf::Vector2f point, float direction, TileData* tileData)
|
2023-04-05 03:02:49 +08:00
|
|
|
{
|
|
|
|
int indexX, indexY;
|
|
|
|
getGridIndex(point, &indexX, &indexY);
|
|
|
|
|
2023-04-07 12:34:22 +08:00
|
|
|
// The horizontal* and vertical* variables correspond to variables, that
|
|
|
|
// are used to calculate the horizontal and vertical grid intersection points
|
|
|
|
// respectively. The horizontal and vertical grid intersections are done
|
|
|
|
// separately.
|
|
|
|
//
|
|
|
|
// The *Dy and *Dx variables are the deltas to the nearest grid boundary.
|
|
|
|
//
|
|
|
|
// The *StepX and *StepY variables are the regular x and y steps from the
|
|
|
|
// initial boundary intersection along the ray.
|
|
|
|
//
|
|
|
|
// The *ProjectedX and *ProjectedY variables are projected coordinates of the
|
|
|
|
// grid intersections along the ray.
|
|
|
|
//
|
|
|
|
// The *DistCoeff variables store the coefficient of sin(direction) used to
|
|
|
|
// calculate distance travelled along the ray, without having to do extra
|
|
|
|
// calls to sin(), as the direction doesn't change.
|
|
|
|
direction = maths_modulo(direction, 2.0f*PI); // modulo to keep the angle between 0 and 2 PI radians
|
2023-04-05 03:02:49 +08:00
|
|
|
bool goingDown = direction < PI;
|
|
|
|
int signDown = goingDown? 1 : -1;
|
|
|
|
|
2023-04-16 09:17:11 +08:00
|
|
|
float horizontalDy = (float)(indexY + goingDown) - point.y;
|
2023-04-07 12:34:22 +08:00
|
|
|
float horizontalDx = horizontalDy/tan(direction);
|
2023-04-05 03:02:49 +08:00
|
|
|
|
2023-04-16 09:17:11 +08:00
|
|
|
float horizontalStepX = ((float)signDown * (1.f/tan(direction)));
|
|
|
|
float horizontalStepY = (float)signDown;
|
2023-04-07 12:34:22 +08:00
|
|
|
float horizontalProjectedX = point.x + horizontalDx;
|
2023-04-16 09:17:11 +08:00
|
|
|
float horizontalProjectedY = indexY + goingDown;
|
2023-04-05 03:02:49 +08:00
|
|
|
|
2023-04-07 12:34:22 +08:00
|
|
|
float horizontalDistCoeff = sin(direction);
|
|
|
|
float horizontalRayDist = std::abs(horizontalDy/horizontalDistCoeff);
|
|
|
|
|
|
|
|
direction = maths_modulo(direction + 0.5f*PI, 2.0f*PI); // rotate angle by 90 degrees for ease of calaculation
|
2023-04-05 03:02:49 +08:00
|
|
|
bool goingRight = direction < PI;
|
|
|
|
int signRight = goingRight? 1 : -1;
|
|
|
|
|
2023-04-16 09:17:11 +08:00
|
|
|
float verticalDx = (float)(indexX + goingRight) - point.x;
|
2023-04-07 12:34:22 +08:00
|
|
|
float verticalDy = -verticalDx/tan(direction); // y axis needs to be flipped
|
2023-04-05 03:02:49 +08:00
|
|
|
|
2023-04-16 09:17:11 +08:00
|
|
|
float verticalStepY = -((float)signRight * (1.f/tan(direction))); // y axis also flipped here
|
|
|
|
float verticalStepX = (float)signRight;
|
2023-04-07 12:34:22 +08:00
|
|
|
float verticalProjectedY = point.y + verticalDy;
|
2023-04-16 09:17:11 +08:00
|
|
|
float verticalProjectedX = indexX + goingRight;
|
2023-04-05 03:02:49 +08:00
|
|
|
|
2023-04-07 12:34:22 +08:00
|
|
|
float verticalDistCoeff = sin(direction);
|
|
|
|
float verticalRayDist = std::abs(verticalDx/verticalDistCoeff);
|
2023-04-05 03:02:49 +08:00
|
|
|
|
2023-04-16 09:17:11 +08:00
|
|
|
unsigned int tries = WIDTH * HEIGHT;
|
|
|
|
while (tries--) {
|
2023-04-07 12:34:22 +08:00
|
|
|
int indexX0, indexY0; // store grid indices for horizontal intersections
|
|
|
|
int indexX1, indexY1; // store grid indices for vertical intersections
|
|
|
|
getGridIndex(sf::Vector2f(horizontalProjectedX, horizontalProjectedY), &indexX0, &indexY0);
|
|
|
|
getGridIndex(sf::Vector2f(verticalProjectedX, verticalProjectedY), &indexX1, &indexY1);
|
2023-04-05 03:02:49 +08:00
|
|
|
|
2023-04-07 12:34:22 +08:00
|
|
|
// If the ray going up or to left, the intersection points will give an index
|
|
|
|
// of the cells below or to the right of the cell boundaries. For those cases,
|
|
|
|
// the appropriate indices will be reduced by one.
|
|
|
|
indexY0 -= !goingDown;
|
|
|
|
indexX1 -= !goingRight;
|
2023-04-05 03:02:49 +08:00
|
|
|
|
2023-04-07 12:34:22 +08:00
|
|
|
bool inLevel0 = indexX0 != -1 && indexY0 != -1;
|
|
|
|
bool inLevel1 = indexX1 != -1 && indexY1 != -1;
|
2023-04-05 03:02:49 +08:00
|
|
|
|
2023-04-07 12:34:22 +08:00
|
|
|
if (!(inLevel0 || inLevel1)) break;
|
2023-04-05 03:02:49 +08:00
|
|
|
|
2023-04-07 12:34:22 +08:00
|
|
|
if (horizontalRayDist < verticalRayDist) {
|
2023-05-01 07:10:01 +08:00
|
|
|
unsigned int gridValue = level[indexY0 * WIDTH + indexX0];
|
|
|
|
if (gridValue) {
|
|
|
|
tileData->value = gridValue;
|
|
|
|
tileData->side = goingDown? NORTH : SOUTH;
|
2024-01-15 18:35:35 +08:00
|
|
|
tileData->horizontalUV = 0.f;
|
2023-05-01 07:10:01 +08:00
|
|
|
return horizontalRayDist;
|
|
|
|
}
|
2023-04-05 03:02:49 +08:00
|
|
|
|
2023-04-07 12:34:22 +08:00
|
|
|
horizontalProjectedX += horizontalStepX;
|
|
|
|
horizontalProjectedY += horizontalStepY;
|
|
|
|
|
|
|
|
horizontalRayDist += std::abs(horizontalStepY/horizontalDistCoeff);
|
|
|
|
}
|
|
|
|
else {
|
2023-05-01 07:10:01 +08:00
|
|
|
unsigned int gridValue = level[indexY1 * WIDTH + indexX1];
|
|
|
|
if (gridValue) {
|
|
|
|
tileData->value = gridValue;
|
|
|
|
tileData->side = goingRight? WEST : EAST;
|
2024-01-15 18:35:35 +08:00
|
|
|
tileData->horizontalUV = 0.f;
|
2023-05-01 07:10:01 +08:00
|
|
|
return verticalRayDist;
|
|
|
|
}
|
2023-04-05 03:02:49 +08:00
|
|
|
|
2023-04-07 12:34:22 +08:00
|
|
|
verticalProjectedX += verticalStepX;
|
|
|
|
verticalProjectedY += verticalStepY;
|
2023-04-05 03:02:49 +08:00
|
|
|
|
2023-04-07 12:34:22 +08:00
|
|
|
verticalRayDist += std::abs(verticalStepX/verticalDistCoeff);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return 1000.f;
|
2023-04-05 03:02:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void getGridIndex(sf::Vector2f point, int* x, int* y)
|
|
|
|
{
|
2023-04-16 09:17:11 +08:00
|
|
|
*x = point.x;
|
|
|
|
*y = point.y;
|
2023-04-05 03:02:49 +08:00
|
|
|
|
|
|
|
if (*x < 0 || WIDTH <= *x) *x = -1;
|
|
|
|
if (*y < 0 || HEIGHT <= *y) *y = -1;
|
|
|
|
}
|