2025-02-18 06:26:38 -05:00
|
|
|
#ifndef _HF_PLAYER_
|
|
|
|
#define _HF_PLAYER_
|
|
|
|
|
|
|
|
typedef struct Player Player;
|
|
|
|
typedef enum PlayerSeat {
|
|
|
|
PLAYER,
|
|
|
|
RIGHT,
|
|
|
|
LEFT
|
|
|
|
} PlayerSeat;
|
|
|
|
|
|
|
|
#include "card.h"
|
|
|
|
|
|
|
|
struct Player {
|
|
|
|
PlayerSeat seat;
|
2025-02-22 13:44:18 -05:00
|
|
|
char *name;
|
2025-02-20 19:21:03 -05:00
|
|
|
Hand hand, scored;
|
2025-02-18 06:26:38 -05:00
|
|
|
Teyaku teyaku;
|
|
|
|
Dekiyaku dekiyaku;
|
|
|
|
DekiyakuAction dekiyaku_action;
|
|
|
|
int dekiyaku_score;
|
|
|
|
int points;
|
2025-02-26 19:47:18 -05:00
|
|
|
int last_round_points;
|
2025-02-18 06:26:38 -05:00
|
|
|
char points_string[20];
|
2025-02-23 05:10:42 -05:00
|
|
|
char teyaku_string[50];
|
2025-02-18 06:26:38 -05:00
|
|
|
bool ai;
|
|
|
|
bool dealer;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|