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 0000000..df39fdc Binary files /dev/null and b/img/rules_qr.png differ 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