summaryrefslogtreecommitdiffhomepage
path: root/src/main.c
diff options
context:
space:
mode:
authorarngo <[email protected]>2023-05-27 16:19:34 -0400
committerarngo <[email protected]>2023-05-27 16:19:34 -0400
commitb049a32d80aac0012a653c868263d2efc9a27fcc (patch)
tree49833b6e5c904fee9f1aa01859b803033c26c929 /src/main.c
parent1467c004665e9efefd2ea0fa2875ad93374d3e1b (diff)
downloadrodeo_sample_game-b049a32d80aac0012a653c868263d2efc9a27fcc.tar.gz
rodeo_sample_game-b049a32d80aac0012a653c868263d2efc9a27fcc.zip
add walls and player wall collision
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index e1b3f50..7ce77bd 100644
--- a/src/main.c
+++ b/src/main.c
@@ -5,8 +5,13 @@
#include "player.h"
#include "bullet.h"
#include "enemies.h"
+#include "wall.h"
#include "rodeo/collision.h"
+const uint16_t window_width = 640;
+const uint16_t window_height = 480;
+
+
cstr renderer;
float time_var;
@@ -192,6 +197,7 @@ main_loop(void)
draw_enemies();
detect_bullet_enemy_collisions();
detect_player_enemy_collisions();
+ detect_player_wall_collisions();
rodeo_debug_text_draw(
1,
@@ -235,7 +241,7 @@ main(void)
rodeo_logLevel_error,
"Testing error log level... It seems to work!"
);
- mrodeo_window_do(480, 640, cstr_lit("Rodeo Window"))
+ mrodeo_window_do(window_height, window_width, cstr_lit("Rodeo Window"))
{
renderer = rodeo_renderer_name_get();
rodeo_frame_limit_set(60);
@@ -266,10 +272,15 @@ main(void)
init_bullets();
init_player();
init_enemies();
+ init_wall();
spawn_enemy(240, 240);
//spawn_enemy(100, 100);
spawn_enemy(300, 100);
spawn_enemy(200, 330);
+ new_wall(0, -10, window_width, 10);
+ new_wall(0, window_height, window_width, 10);
+ new_wall(-10, 0, 10, window_height);
+ new_wall(window_width, 0, 10, window_height);
rodeo_mainLoop_run(
main_loop