Switch card colors

This commit is contained in:
Bill Rossi 2025-02-23 09:54:46 -05:00
parent f4d2dd954b
commit 6529ff0f09
5 changed files with 20 additions and 12 deletions

9
card.c
View File

@ -5,15 +5,18 @@
static Vector2 card_size = (Vector2) { CARD_WIDTH, CARD_HEIGHT };
static char *month_english_abbr[12] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
void draw_card(Card *c, Texture2D *cards_texture) {
Color BRICKRED = (Color) { 136, 12, 2, 255 };
void draw_card(Card *c, Texture2D **cards_texture, int index) {
int i_vert = c->index % 4;
int i_horiz = c->index / 4;
int pos_vert = i_vert * CARD_HEIGHT;
int pos_horiz = i_horiz * CARD_WIDTH;
Color color = index == 1 ? BLACK : BRICKRED;
if (c->visible) {
DrawTexturePro(
*cards_texture,
*cards_texture[index ? 1 : 0],
(Rectangle) { pos_horiz, pos_vert, CARD_WIDTH, CARD_HEIGHT },
(Rectangle) { c->position.x, c->position.y, card_size.x, card_size.y },
(Vector2) { 0, 0 },
@ -21,7 +24,7 @@ void draw_card(Card *c, Texture2D *cards_texture) {
RAYWHITE
);
} else {
DrawRectangleRec((Rectangle) { c->position.x, c->position.y, card_size.x, card_size.y }, BLACK);
DrawRectangleRec((Rectangle) { c->position.x, c->position.y, card_size.x, card_size.y }, color);
}
if (c->selected) {

2
card.h
View File

@ -73,7 +73,7 @@ struct Hand {
HandDisplayType display_type;
};
void draw_card(Card *c, Texture2D *cards_texture);
void draw_card(Card *c, Texture2D **cards_texture, int index);
bool point_within_card(Card *c, Vector2 v);
void shuffle_hand(Hand *h);
void deal(Hand *from, Hand *to, int count, bool up, float deal_speed);

19
game.c
View File

@ -15,9 +15,14 @@ Vector2 mouse_pos;
char teyaku_calculation[400];
void initialize_game(Game *g) {
Image cards_image = LoadImage("img/cards.png");
g->cards_texture = LoadTextureFromImage(cards_image);
UnloadImage(cards_image);
g->cards_texture = malloc(2 * sizeof(Texture));
Image cards_image_red = LoadImage("img/cards_red.png");
g->cards_texture[0] = LoadTextureFromImage(cards_image_red);
UnloadImage(cards_image_red);
Image cards_image_black = LoadImage("img/cards_black.png");
g->cards_texture[1] = LoadTextureFromImage(cards_image_black);
UnloadImage(cards_image_black);
g->deck.count = 0;
g->deck.position = (Vector2) { 500, 300 };
@ -837,11 +842,11 @@ void run_frame(Game *g) {
void draw_player_cards(Game *g, Player *p) {
for (int i = 0; i < p->hand.count; i++) {
draw_card(p->hand.cards[i], &g->cards_texture);
draw_card(p->hand.cards[i], &g->cards_texture, g->black_card_backs);
}
for (int i = 0; i < p->scored.count; i++) {
draw_card(p->scored.cards[i], &g->cards_texture);
draw_card(p->scored.cards[i], &g->cards_texture, g->black_card_backs);
}
}
@ -850,11 +855,11 @@ void draw_cards(Game *g) {
draw_player_cards(g, &g->right);
draw_player_cards(g, &g->left);
for (int i = 0; i < g->field.count; i++) {
draw_card(g->field.cards[i], &g->cards_texture);
draw_card(g->field.cards[i], &g->cards_texture, g->black_card_backs);
}
for (int i = 0; i < g->deck.count; i++) {
draw_card(g->deck.cards[i], &g->cards_texture);
draw_card(g->deck.cards[i], &g->cards_texture, g->black_card_backs);
}
}

2
game.h
View File

@ -41,7 +41,7 @@ struct Game {
GameState state;
bool should_close;
Card cards[48];
Texture2D cards_texture;
Texture2D *cards_texture;
Hand deck, field;
FieldMultiplier *field_multiplier;
Card *current_play_from_hand, *current_play_target;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 248 KiB