starship/level.c

76 lines
2.1 KiB
C
Raw Permalink Normal View History

2025-03-08 13:22:05 -05:00
#include <string.h>
#include <stdio.h>
2025-03-08 10:08:44 -05:00
#include "level.h"
2025-03-08 13:22:05 -05:00
void init_level(Game *g, Level *l, char *filepath) {
char *file_text = LoadFileText(filepath);
l->data = malloc(strlen(file_text));
char *line = NULL, *other_guy = NULL;
char *first_line = strtok_r(file_text, "\n", &line);
char* datum = strtok_r(first_line, ",", &other_guy);
l->data_size = 0;
do {
l->data[l->data_size++] = atoi(datum);
2025-03-08 13:36:05 -05:00
} while ((datum = strtok_r(NULL, ",", &other_guy)));
2025-03-08 13:22:05 -05:00
l->width = l->data_size;
2025-03-08 13:36:05 -05:00
while ((first_line = strtok_r(NULL, "\n", &line))) {
2025-03-08 13:22:05 -05:00
datum = strtok_r(first_line, ",", &other_guy);
do {
l->data[l->data_size++] = (char)atoi(datum);
2025-03-08 13:36:05 -05:00
} while ((datum = strtok_r(NULL, ",", &other_guy)));
2025-03-08 10:08:44 -05:00
}
2025-03-08 13:22:05 -05:00
l->length = l->data_size / l->width;
2025-03-08 13:36:05 -05:00
printf(
"Loaded level from '%s': %dx%d = %zd total bytes\n",
filepath,
l->length,
l->width,
l->data_size);
2025-03-08 13:22:05 -05:00
UnloadFileText(file_text);
2025-03-08 13:36:05 -05:00
2025-03-08 10:08:44 -05:00
l->game = g;
}
2025-03-09 10:49:50 -04:00
size_t level_tile_index_from_position(Level *l, Vector2 p) {
2025-03-09 10:17:30 -04:00
size_t x_tile = p.x / 32;
size_t y_tile = p.y / 32;
return ((y_tile * l->width) + x_tile) % l->data_size;
}
FourIndices rect_corners(Level *l, Rectangle r) {
return (FourIndices) {
2025-03-09 10:49:50 -04:00
level_tile_index_from_position(l, (Vector2) { r.x, r.y }),
level_tile_index_from_position(l, (Vector2) { r.x + r.width, r.y }),
level_tile_index_from_position(l, (Vector2) { r.x, r.y + r.height }),
level_tile_index_from_position(l, (Vector2) { r.x + r.width, r.y + r.height}),
2025-03-09 10:17:30 -04:00
};
}
2025-03-08 10:08:44 -05:00
Color COLORS[4] = {BLACK, DARKGRAY, GRAY, LIGHTGRAY};
2025-03-08 19:27:02 -05:00
void draw_tile(Level *l, float x, float y) {
size_t index = (size_t)(x + (y * l->width)) % l->data_size;
size_t data = l->data[index];
2025-03-08 10:08:44 -05:00
Color c = COLORS[data];
2025-03-09 10:17:30 -04:00
FourIndices fi = rect_corners(l, l->game->player->bbox);
if (fi.index[0] == index) c = RED;
if (fi.index[1] == index) c = RED;
if (fi.index[2] == index) c = RED;
if (fi.index[3] == index) c = RED;
2025-03-08 13:38:45 -05:00
DrawRectangle(x * 32, y * 32, 32, 32, c);
2025-03-08 10:08:44 -05:00
}
void draw_level(Level *l) {
2025-03-08 19:27:02 -05:00
float y = l->game->player->position.y;
y /= 32;
2025-03-08 10:08:44 -05:00
for (int i = 0; i < l->width; i++) {
2025-03-08 19:27:02 -05:00
for (int j = y - 15; j < y + 15; j++) {
2025-03-08 10:08:44 -05:00
draw_tile(l, i, j);
}
}
}