Title screen

This commit is contained in:
Bill Rossi 2025-02-23 18:07:57 -05:00
parent feab2ebb1f
commit d500962670
6 changed files with 91 additions and 5 deletions

14
game.c
View File

@ -36,6 +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));
load_options_from_game(g);
init_dialogs(g);
@ -147,7 +148,7 @@ void initialize_game(Game *g) {
}
g->current_round = 0;
g->state = GAME_STATE_OPTIONS;
g->state = GAME_STATE_TITLE_SCREEN;
}
Player *current_player(Game *g) {
@ -172,6 +173,10 @@ void handle_input(Game *g) {
return options_handle_input(g);
}
if (g->state == GAME_STATE_TITLE_SCREEN) {
return title_handle_input(g);
}
if (g->dialog) {
return dialog_handle_input(g->dialog);
}
@ -835,6 +840,7 @@ void run_frame(Game *g) {
run_frame_new_game(g);
break;
case GAME_STATE_OPTIONS:
case GAME_STATE_TITLE_SCREEN:
break;
}
}
@ -878,6 +884,12 @@ void draw_frame(Game *g) {
return;
}
if (g->state == GAME_STATE_TITLE_SCREEN) {
title_draw(g);
EndDrawing();
return;
}
if (g->state == GAME_STATE_DEALING) {
DrawText("Dealing....", 60, 385, 40, BLACK);
} else if (g->field_multiplier) {

2
game.h
View File

@ -13,6 +13,7 @@ typedef struct Game Game;
#include "player.h"
#include "dialog.h"
#include "options.h"
#include "title.h"
typedef enum GameState {
GAME_STATE_INITIALIZING,
@ -56,6 +57,7 @@ struct Game {
bool black_card_backs;
float deal_speed;
Options *options;
Title *title;
};
void initialize_game(Game *g);

2
main.c
View File

@ -8,8 +8,6 @@
#include "game.h"
char *text = "こんにちわ、 世界!";
int main(int argc, char** argv) {
srand(time(NULL));
InitWindow(1400, 900, "Hanafuda Hachi-Hachi");

View File

@ -29,12 +29,12 @@ void save_options_to_game(Game *g) {
void handle_options_save(Game *g) {
save_options_to_game(g);
g->state = GAME_STATE_INITIALIZING;
g->state = GAME_STATE_TITLE_SCREEN;
}
void handle_options_cancel(Game *g) {
load_options_from_game(g);
g->state = GAME_STATE_INITIALIZING;
g->state = GAME_STATE_TITLE_SCREEN;
}
void handle_select_kan(Game *g, int index) {

55
title.c Normal file
View File

@ -0,0 +1,55 @@
#include "title.h"
void title_handle_click_start(Game *g) {
g->state = GAME_STATE_INITIALIZING;
}
void title_handle_click_options(Game *g) {
g->state = GAME_STATE_OPTIONS;
}
void title_handle_click_quit(Game *g) {
g->should_close = true;
}
Vector2 tmp; // stands for "title mouse position"
void title_handle_input(Game *g) {
tmp = GetMousePosition();
Title *t = g->title;
t->hover_start = false;
t->hover_options = false;
t->hover_quit = false;
t->hover_credits = false;
t->hover_rules = false;
int half_start_width = MeasureText("Start", 60) / 2;
if (tmp.x > 700-half_start_width && tmp.x < 700+half_start_width && tmp.y > 350 && tmp.y < 410) {
t->hover_start = true;
if (IsMouseButtonPressed(0)) title_handle_click_start(g);
}
int half_options_width = MeasureText("Options", 60) / 2;
if (tmp.x > 700-half_options_width && tmp.x < 700+half_options_width && tmp.y > 500 && tmp.y < 560) {
t->hover_options = true;
if (IsMouseButtonPressed(0)) title_handle_click_options(g);
}
int half_quit_width = MeasureText("Quit", 60) / 2;
if (tmp.x > 700-half_quit_width && tmp.x < 700+half_quit_width && tmp.y > 650 && tmp.y < 710) {
t->hover_quit = true;
if (IsMouseButtonPressed(0)) title_handle_click_quit(g);
}
int half_credits_width = MeasureText("Credits", 40) / 2;
if (tmp.x > 1100-half_credits_width && tmp.x < 1100+half_credits_width && tmp.y > 600 && tmp.y < 640) t->hover_credits = true;
int half_rules_width = MeasureText("Rules", 40) / 2;
if (tmp.x > 300-half_rules_width && tmp.x < 300+half_rules_width && tmp.y > 600 && tmp.y < 640) t->hover_rules = true;
}
void title_draw(Game *g) {
Title *t = g->title;
DrawTextCentered("Hanafuda Hachi-Hachi", 700, 100, 90, BLACK);
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);
}

19
title.h Normal file
View File

@ -0,0 +1,19 @@
#ifndef _HF_TITLE_
#define _HF_TITLE_
typedef struct Title Title;
#include "game.h"
struct Title {
bool hover_start;
bool hover_options;
bool hover_quit;
bool hover_credits;
bool hover_rules;
};
void title_handle_input(Game *g);
void title_draw(Game *g);
#endif