Camera won't escape the horiz bounds

This commit is contained in:
Bill Rossi 2025-03-08 10:48:55 -05:00
parent 98ed7634d4
commit 471aed47fb
3 changed files with 14 additions and 4 deletions

View File

@ -20,6 +20,7 @@ void draw_tile(Level *l, int x, int y) {
}
void draw_level(Level *l) {
Camera2D *camera = l->game->camera;
for (int i = 0; i < l->width; i++) {
for (int j = 0; j < l->length; j++) {
draw_tile(l, i, j);

View File

@ -62,6 +62,15 @@ void move_player(Player *p) {
p->position.y += p->velocity.y;
p->game->camera->target = p->position;
p->game->camera->offset.x = 400;
p->game->camera->offset.y = 275;
int level_width_in_pixels = p->game->level->width * 32;
bool too_far_left = p->position.x < 400;
bool too_far_right = level_width_in_pixels - p->position.x < 400;
if (too_far_left) {
p->game->camera->offset.x = p->position.x;
} else if (too_far_right) {
p->game->camera->offset.x = p->position.x - 800;
} else {
p->game->camera->offset.x = 400;
p->game->camera->offset.y = 275;
}
}

View File

@ -12,8 +12,8 @@
#include <raylib.h>
#define ACCEL_X 0.7
#define MAX_VEL_X 5
#define ACCEL_X 1.7
#define MAX_VEL_X 35
#define DAMPING_X 0.85
#define MAX_VEL_Y 20
#define MIN_VEL_Y 1