hanafuda/game.h

79 lines
2.3 KiB
C
Raw Permalink Normal View History

2025-02-26 20:05:31 -05:00
// Copyright 2025 Bill Rossi
//
// This file is part of Hanafuda Hachi-Hachi.
//
// Hanafuda Hachi-Hachi is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
//
// Hanafuda Hachi-Hachi is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along with Hanafuda Hachi-Hachi. If not, see <https://www.gnu.org/licenses/>.
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"
#include "player.h"
2025-02-20 07:09:57 -05:00
#include "dialog.h"
#include "options.h"
2025-02-23 18:07:57 -05:00
#include "title.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,
GAME_STATE_SHOWING_CARD_FROM_DECK,
2025-02-19 06:04:10 -05:00
GAME_STATE_PLAYING_FROM_DECK,
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,
2025-02-22 14:32:09 -05:00
GAME_STATE_NEW_GAME,
2025-02-22 12:01:00 -05:00
GAME_STATE_TITLE_SCREEN,
GAME_STATE_OPTIONS,
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];
2025-02-23 17:28:13 -05:00
Texture2D cards_texture_red, cards_texture_black;
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;
Player player, right, left;
2025-02-25 20:35:50 -05:00
Player *first_sage;
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;
int current_round;
int kan_value;
2025-02-22 12:01:00 -05:00
int number_of_rounds;
bool black_card_backs;
2025-02-23 06:09:57 -05:00
float deal_speed;
Options *options;
2025-02-23 18:07:57 -05:00
Title *title;
2025-02-02 18:13:19 -05:00
};
void initialize_game(Game *g);
void run_until_closing(Game *g);
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