Use the picture of a plane

This commit is contained in:
Bill Rossi 2025-03-04 20:23:41 -05:00
parent 5219c1ac53
commit 2a806f515b
2 changed files with 5 additions and 11 deletions

View File

@ -18,6 +18,9 @@ void initialize_player(Player *p) {
p->acceleration = (Vector2) { 0, 0 }; p->acceleration = (Vector2) { 0, 0 };
p->pitch = PITCH_NEUTRAL; p->pitch = PITCH_NEUTRAL;
p->roll = ROLL_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) { void handle_player_input(Player *p) {
@ -31,17 +34,7 @@ void handle_player_input(Player *p) {
} }
void draw_player(Player *p) { void draw_player(Player *p) {
Vector2 nose = { p->roll == ROLL_LEFT ? p->position.x - 50 : DrawTextureRec(p->spritesheet, (Rectangle) { 128, 128, 128, 128 }, p->position, WHITE);
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);
} }
void move_player(Player *p) { void move_player(Player *p) {

View File

@ -39,6 +39,7 @@ typedef struct Player {
Vector2 acceleration; Vector2 acceleration;
PlayerPitch pitch; PlayerPitch pitch;
PlayerRoll roll; PlayerRoll roll;
Texture2D spritesheet;
} Player; } Player;
void initialize_player(Player *p); void initialize_player(Player *p);