60 lines
784 B
C
60 lines
784 B
C
#ifndef _HF_CARD_
|
|
#define _HF_CARD_
|
|
|
|
#include <stdbool.h>
|
|
#include <raylib.h>
|
|
|
|
typedef struct Card Card;
|
|
typedef struct Hand Hand;
|
|
#define CARD_WIDTH 63
|
|
#define CARD_HEIGHT 105
|
|
#define CARD_BORDER 5
|
|
|
|
typedef enum CardType {
|
|
CHAFF,
|
|
RIBBON,
|
|
ANIMAL,
|
|
BRIGHT,
|
|
} CardType;
|
|
|
|
typedef enum RibbonType {
|
|
RIBBON_NONE,
|
|
RIBBON_PLAIN,
|
|
RIBBON_BLUE,
|
|
RIBBON_POETRY,
|
|
} RibbonType;
|
|
|
|
typedef enum Month {
|
|
JANUARY,
|
|
FEBRUARY,
|
|
MARCH,
|
|
APRIL,
|
|
MAY,
|
|
JUNE,
|
|
JULY,
|
|
AUGUST,
|
|
SEPTEMBER,
|
|
OCTOBER,
|
|
NOVEMBER,
|
|
DECEMBER
|
|
} Month;
|
|
|
|
struct Card {
|
|
int index;
|
|
CardType type;
|
|
RibbonType ribbon_type;
|
|
Month month;
|
|
Vector2 position;
|
|
bool selected;
|
|
};
|
|
|
|
struct Hand {
|
|
Card cards[48];
|
|
int count;
|
|
};
|
|
|
|
void draw_card(Card *c);
|
|
bool point_within_card(Card *c, Vector2 v);
|
|
|
|
#endif
|