From 2a806f515bb5a571a5629f383fa72c4400920682 Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Tue, 4 Mar 2025 20:23:41 -0500 Subject: [PATCH] Use the picture of a plane --- player.c | 15 ++++----------- player.h | 1 + 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/player.c b/player.c index a5411c7..ed38d74 100644 --- a/player.c +++ b/player.c @@ -18,6 +18,9 @@ void initialize_player(Player *p) { p->acceleration = (Vector2) { 0, 0 }; p->pitch = PITCH_NEUTRAL; p->roll = ROLL_NEUTRAL; + Image sprite_img = LoadImage("img/player.png"); + p->spritesheet = LoadTextureFromImage(sprite_img); + UnloadImage(sprite_img); } void handle_player_input(Player *p) { @@ -31,17 +34,7 @@ void handle_player_input(Player *p) { } void draw_player(Player *p) { - Vector2 nose = { p->roll == ROLL_LEFT ? p->position.x - 50 : - p->roll == ROLL_RIGHT ? p->position.x + 50 : - p->position.x, - p->pitch == PITCH_DESCENDING ? p->position.y + 20 : - p->pitch == PITCH_ASCENDING ? p->position.y - 20 : - p->position.y - }; - Vector2 left_wing = { p->position.x - 100, p->position.y + 50 }; - Vector2 right_wing = { p->position.x + 100, p->position.y + 50 }; - - DrawTriangle(nose, left_wing, right_wing, DARKGRAY); + DrawTextureRec(p->spritesheet, (Rectangle) { 128, 128, 128, 128 }, p->position, WHITE); } void move_player(Player *p) { diff --git a/player.h b/player.h index b09141c..62899dc 100644 --- a/player.h +++ b/player.h @@ -39,6 +39,7 @@ typedef struct Player { Vector2 acceleration; PlayerPitch pitch; PlayerRoll roll; + Texture2D spritesheet; } Player; void initialize_player(Player *p);