diff --git a/card.c b/card.c index 4f8983a..148b44c 100644 --- a/card.c +++ b/card.c @@ -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) { diff --git a/card.h b/card.h index 7e1844c..f57bfbf 100644 --- a/card.h +++ b/card.h @@ -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); diff --git a/game.c b/game.c index 7bd6a93..73ce60c 100644 --- a/game.c +++ b/game.c @@ -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); } } diff --git a/game.h b/game.h index 8e14999..44ccc15 100644 --- a/game.h +++ b/game.h @@ -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; diff --git a/img/cards.png b/img/cards.png deleted file mode 100644 index 36f65f1..0000000 Binary files a/img/cards.png and /dev/null differ