2025-02-01 05:36:42 -05:00
|
|
|
#ifndef _HF_CARD_
|
|
|
|
#define _HF_CARD_
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <raylib.h>
|
|
|
|
|
|
|
|
typedef struct Card Card;
|
2025-02-01 06:40:33 -05:00
|
|
|
typedef struct Hand Hand;
|
2025-02-01 05:36:42 -05:00
|
|
|
#define CARD_WIDTH 63
|
|
|
|
#define CARD_HEIGHT 105
|
2025-02-01 07:33:52 -05:00
|
|
|
#define CARD_BORDER 5
|
2025-02-01 05:36:42 -05:00
|
|
|
static Vector2 card_size = (Vector2) { CARD_WIDTH, CARD_HEIGHT };
|
|
|
|
|
|
|
|
typedef enum CardType {
|
|
|
|
CHAFF,
|
|
|
|
RIBBON,
|
|
|
|
ANIMAL,
|
|
|
|
BRIGHT,
|
|
|
|
} CardType;
|
|
|
|
|
|
|
|
typedef enum RibbonType {
|
|
|
|
RIBBON_NONE,
|
|
|
|
RIBBON_PLAIN,
|
|
|
|
RIBBON_BLUE,
|
|
|
|
RIBBON_POETRY,
|
|
|
|
} RibbonType;
|
|
|
|
|
2025-02-01 06:40:33 -05:00
|
|
|
typedef enum Month {
|
|
|
|
JANUARY,
|
|
|
|
FEBRUARY,
|
|
|
|
MARCH,
|
|
|
|
APRIL,
|
|
|
|
MAY,
|
|
|
|
JUNE,
|
|
|
|
JULY,
|
|
|
|
AUGUST,
|
|
|
|
SEPTEMBER,
|
|
|
|
OCTOBER,
|
|
|
|
NOVEMBER,
|
|
|
|
DECEMBER
|
|
|
|
} Month;
|
|
|
|
|
2025-02-01 07:33:52 -05:00
|
|
|
static char *month_english_abbr[12] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
|
|
|
|
|
2025-02-01 05:36:42 -05:00
|
|
|
struct Card {
|
|
|
|
int index;
|
|
|
|
CardType type;
|
|
|
|
RibbonType ribbon_type;
|
2025-02-01 06:40:33 -05:00
|
|
|
Month month;
|
2025-02-01 05:36:42 -05:00
|
|
|
Vector2 position;
|
2025-02-01 07:51:53 -05:00
|
|
|
bool selected;
|
2025-02-01 05:36:42 -05:00
|
|
|
};
|
|
|
|
|
2025-02-01 06:40:33 -05:00
|
|
|
struct Hand {
|
2025-02-01 11:05:46 -05:00
|
|
|
Card cards[48];
|
2025-02-01 06:40:33 -05:00
|
|
|
int count;
|
|
|
|
};
|
|
|
|
|
2025-02-01 05:36:42 -05:00
|
|
|
void draw_card(Card *c);
|
|
|
|
|
|
|
|
#endif
|