2025-02-02 18:13:19 -05:00
|
|
|
#ifndef _HF_GAME_
|
|
|
|
#define _HF_GAME_
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
typedef struct Game Game;
|
|
|
|
|
|
|
|
#include "card.h"
|
2025-02-04 18:47:56 -05:00
|
|
|
#include "field_multiplier.h"
|
|
|
|
#include "teyaku.h"
|
2025-02-16 20:50:13 -05:00
|
|
|
#include "dekiyaku.h"
|
2025-02-16 09:11:50 -05:00
|
|
|
#include "points.h"
|
2025-02-18 06:26:38 -05:00
|
|
|
#include "player.h"
|
2025-02-20 07:09:57 -05:00
|
|
|
#include "dialog.h"
|
2025-02-02 18:13:19 -05:00
|
|
|
|
2025-02-03 20:07:22 -05:00
|
|
|
typedef enum GameState {
|
|
|
|
GAME_STATE_INITIALIZING,
|
2025-02-04 18:47:56 -05:00
|
|
|
GAME_STATE_DEALING,
|
|
|
|
GAME_STATE_CALCULATING_FIELD_MULTIPLIER,
|
|
|
|
GAME_STATE_CALCULATING_TEYAKU,
|
2025-02-19 06:04:10 -05:00
|
|
|
GAME_STATE_START_OF_TURN,
|
|
|
|
GAME_STATE_CHECKING_FOR_CANCEL,
|
|
|
|
GAME_STATE_CHOOSING_FROM_HAND,
|
|
|
|
GAME_STATE_CHOOSING_TARGET,
|
2025-02-22 10:14:38 -05:00
|
|
|
GAME_STATE_SHOWING_CARD_FROM_DECK,
|
2025-02-19 06:04:10 -05:00
|
|
|
GAME_STATE_PLAYING_FROM_DECK,
|
2025-02-22 10:14:38 -05:00
|
|
|
GAME_STATE_CHOOSING_TARGET_FROM_DECK,
|
2025-02-19 06:04:10 -05:00
|
|
|
GAME_STATE_CHECKING_FOR_NEW_DEKIYAKU,
|
|
|
|
GAME_STATE_SELECTING_DEKIYAKU_ACTION,
|
2025-02-16 09:11:50 -05:00
|
|
|
GAME_STATE_CALCULATING_SCORES,
|
2025-02-16 20:50:13 -05:00
|
|
|
GAME_STATE_CALCULATING_DEKIYAKU_SCORE,
|
2025-02-22 12:01:00 -05:00
|
|
|
GAME_STATE_END_OF_ROUND,
|
|
|
|
GAME_STATE_END_OF_GAME,
|
|
|
|
GAME_STATE_TITLE_SCREEN,
|
2025-02-03 20:07:22 -05:00
|
|
|
} GameState;
|
|
|
|
|
2025-02-02 18:13:19 -05:00
|
|
|
struct Game {
|
2025-02-03 20:07:22 -05:00
|
|
|
GameState state;
|
2025-02-02 18:13:19 -05:00
|
|
|
bool should_close;
|
|
|
|
Card cards[48];
|
|
|
|
Texture2D cards_texture;
|
2025-02-08 08:15:43 -05:00
|
|
|
Hand deck, field;
|
2025-02-04 18:47:56 -05:00
|
|
|
FieldMultiplier *field_multiplier;
|
2025-02-08 08:15:43 -05:00
|
|
|
Card *current_play_from_hand, *current_play_target;
|
2025-02-16 09:37:53 -05:00
|
|
|
int kan_value;
|
2025-02-18 06:26:38 -05:00
|
|
|
Player player, right, left;
|
|
|
|
int temp_points;
|
2025-02-19 06:04:10 -05:00
|
|
|
int turn_number;
|
2025-02-20 07:09:57 -05:00
|
|
|
Dialog *dialog;
|
2025-02-22 07:36:55 -05:00
|
|
|
Player *dealer;
|
2025-02-22 12:01:00 -05:00
|
|
|
int number_of_rounds;
|
|
|
|
int current_round;
|
2025-02-02 18:13:19 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
void initialize_game(Game *g);
|
|
|
|
void run_until_closing(Game *g);
|
2025-02-16 09:37:53 -05:00
|
|
|
void transfer_points(Game *g, int *to, int *from, int amount);
|
|
|
|
void transfer_kan(Game *g, int *to, int *from, int amount);
|
2025-02-02 18:13:19 -05:00
|
|
|
|
|
|
|
#endif
|