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 09:11:50 -05:00
|
|
|
#include "points.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-06 19:44:48 -05:00
|
|
|
GAME_STATE_PLAYER_CHOOSING_FROM_HAND,
|
|
|
|
GAME_STATE_PLAYER_CHOOSING_TARGET,
|
2025-02-10 17:27:02 -05:00
|
|
|
GAME_STATE_PLAYER_FROM_DECK,
|
2025-02-15 15:10:26 -05:00
|
|
|
GAME_STATE_RIGHT_PLAYING,
|
|
|
|
GAME_STATE_RIGHT_FROM_DECK,
|
|
|
|
GAME_STATE_LEFT_PLAYING,
|
|
|
|
GAME_STATE_LEFT_FROM_DECK,
|
2025-02-16 09:11:50 -05:00
|
|
|
GAME_STATE_CALCULATING_SCORES,
|
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 player_hand, left_hand, right_hand;
|
|
|
|
Hand deck, field;
|
|
|
|
Hand player_scored, left_scored, right_scored;
|
2025-02-04 18:47:56 -05:00
|
|
|
FieldMultiplier *field_multiplier;
|
|
|
|
Teyaku player_teyaku, left_teyaku, right_teyaku;
|
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 player_points, right_points, left_points, temp_points;
|
|
|
|
int kan_value;
|
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
|