diff options
author | P. J. McDermott <pj@pehjota.net> | 2021-03-25 16:34:15 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2021-03-25 17:29:47 (EDT) |
commit | 9389cc62a79a534bf248f620eb495d8584465d27 (patch) | |
tree | f5ff16b80c6d0c667c701b25f1188f918d827266 | |
parent | ffc5cdc5bb5fa09f51edf34a4857cb7d8b6599e4 (diff) | |
download | dodge-balls-9389cc62a79a534bf248f620eb495d8584465d27.zip dodge-balls-9389cc62a79a534bf248f620eb495d8584465d27.tar.gz dodge-balls-9389cc62a79a534bf248f620eb495d8584465d27.tar.bz2 |
ball: Add spin direction and radius
-rw-r--r-- | src/ball.c | 17 | ||||
-rw-r--r-- | src/ball.h | 2 |
2 files changed, 12 insertions, 7 deletions
@@ -27,12 +27,15 @@ struct db_ball { int y; int r; int a; + int d; + double sr; int s; struct db_ball *next; }; struct db_ball * -db_ball_new(int x, int y, int r, int a, int s, struct db_ball *prev) +db_ball_new(int x, int y, int r, int a, int d, double sr, int s, + struct db_ball *prev) { struct db_ball *ball; @@ -42,11 +45,13 @@ db_ball_new(int x, int y, int r, int a, int s, struct db_ball *prev) return NULL; } - ball->x = x; - ball->y = y; - ball->r = r; - ball->a = a; - ball->s = s; + ball->x = x; + ball->y = y; + ball->r = r; + ball->a = a; + ball->d = d; + ball->sr = sr; + ball->s = s; if (prev != NULL) { prev->next = ball; @@ -22,7 +22,7 @@ struct db_ball; -struct db_ball *db_ball_new(int x, int y, int r, int a, int s, +struct db_ball *db_ball_new(int x, int y, int r, int a, int d, double sr, int s, struct db_ball *prev); void db_balls_collisions(struct db_ball *ball_head); int db_balls_player_collisions(struct db_ball *ball_head, |