From 471aed47fb0c7b993392019303bc17b8af7fe13b Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Sat, 8 Mar 2025 10:48:55 -0500 Subject: [PATCH] Camera won't escape the horiz bounds --- level.c | 1 + player.c | 13 +++++++++++-- player.h | 4 ++-- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/level.c b/level.c index 4fa9361..b94168b 100644 --- a/level.c +++ b/level.c @@ -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); diff --git a/player.c b/player.c index 75c1933..233dc3b 100644 --- a/player.c +++ b/player.c @@ -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; + } } diff --git a/player.h b/player.h index ee7bed9..b9375f2 100644 --- a/player.h +++ b/player.h @@ -12,8 +12,8 @@ #include -#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