Add credits and rules to title screen

This commit is contained in:
Bill Rossi 2025-02-23 18:35:11 -05:00
parent d500962670
commit 6b609b3144
4 changed files with 27 additions and 3 deletions

2
game.c
View File

@ -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);

BIN
img/rules_qr.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 406 B

26
title.c
View File

@ -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);
}
}

View File

@ -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