From 6b609b3144b4e9a2a8284afd5e34daa12f4f8963 Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Sun, 23 Feb 2025 18:35:11 -0500 Subject: [PATCH] Add credits and rules to title screen --- game.c | 2 +- img/rules_qr.png | Bin 0 -> 406 bytes title.c | 26 ++++++++++++++++++++++++-- title.h | 2 ++ 4 files changed, 27 insertions(+), 3 deletions(-) create mode 100644 img/rules_qr.png diff --git a/game.c b/game.c index 347f301..b7f8096 100644 --- a/game.c +++ b/game.c @@ -36,7 +36,7 @@ void initialize_game(Game *g) { g->black_card_backs = true; g->deal_speed = 0.2; g->options = malloc(sizeof(Options)); - g->title = malloc(sizeof(Title)); + initialize_title(g); load_options_from_game(g); init_dialogs(g); diff --git a/img/rules_qr.png b/img/rules_qr.png new file mode 100644 index 0000000000000000000000000000000000000000..df39fdc6db8ceac3d097b5d69a39f8abac2cfcf0 GIT binary patch literal 406 zcmV;H0crk;P)* z)Ul0)FboFZA5o;^Ef6Vdq{~WS0Uj*Ct&}cnJShv1E=7dT@FeuEiP1HuizxUa0k&fU z`myjoxB*Wx8#G`07*qoM6N<$f-&~4 Ax&QzG literal 0 HcmV?d00001 diff --git a/title.c b/title.c index 9fe8be8..25d1df8 100644 --- a/title.c +++ b/title.c @@ -1,5 +1,12 @@ #include "title.h" +void initialize_title(Game *g) { + g->title = malloc(sizeof(Title)); + Image rules_qr_img = LoadImage("img/rules_qr.png"); + g->title->rules_qr = LoadTextureFromImage(rules_qr_img); + UnloadImage(rules_qr_img); +} + void title_handle_click_start(Game *g) { g->state = GAME_STATE_INITIALIZING; } @@ -50,6 +57,21 @@ void title_draw(Game *g) { DrawTextCentered("Start", 700, 350, 60, t->hover_start ? RED : BLACK); DrawTextCentered("Options", 700, 500, 60, t->hover_options ? RED : BLACK); DrawTextCentered("Quit", 700, 650, 60, t->hover_quit ? RED : BLACK); - DrawTextCentered("Credits", 1100, 600, 40, t->hover_credits ? RED : BLACK); - DrawTextCentered("Rules", 300, 600, 40, t->hover_rules ? RED : BLACK); + DrawTextCentered("Credits", 1100, 600, 40, BLACK); + DrawTextCentered("Rules", 300, 600, 40, BLACK); + + if (t->hover_rules) DrawTextureEx(t->rules_qr, (Vector2) { 135, 250 }, 0., 3., WHITE); + + if (t->hover_credits) { + DrawRectangle(870, 200, 460, 380, BLACK); + DrawRectangle(873, 203, 454, 374, WHITE); + DrawTextCentered("Programmed by bassguitarbill", 1100, 210, 25, BLACK); + DrawTextCentered("https://bassguitarbill.rocks", 1100, 240, 25, BLACK); + DrawTextCentered("Running on raylib", 1100, 310, 25, BLACK); + DrawTextCentered("https://www.raylib.com", 1100, 340, 25, BLACK); + DrawTextCentered("Drawn with Aseprite", 1100, 410, 25, BLACK); + DrawTextCentered("https://www.aseprite.org", 1100, 440, 25, BLACK); + DrawTextCentered("Art adapted from Louiemantia", 1100, 510, 25, BLACK); + DrawTextCentered("https://commons.wikimedia.org/wiki/User:Louiemantia", 1100, 540, 18, BLACK); + } } diff --git a/title.h b/title.h index 97a1e41..6bc73f3 100644 --- a/title.h +++ b/title.h @@ -11,9 +11,11 @@ struct Title { bool hover_quit; bool hover_credits; bool hover_rules; + Texture2D rules_qr; }; void title_handle_input(Game *g); void title_draw(Game *g); +void initialize_title(Game *g); #endif