hanafuda/card.c

91 lines
2.4 KiB
C
Raw Normal View History

2025-02-02 18:30:45 -05:00
#include <stdio.h>
#include <stdlib.h>
2025-02-01 05:36:42 -05:00
#include "card.h"
2025-02-01 11:12:07 -05:00
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" };
2025-02-02 05:21:20 -05:00
void draw_card(Card *c, Texture2D *cards_texture) {
int i_vert = c->index % 4;
int i_horiz = c->index / 4;
2025-02-02 10:21:49 -05:00
int pos_vert = i_vert * CARD_HEIGHT;
int pos_horiz = i_horiz * CARD_WIDTH;
2025-02-02 05:21:20 -05:00
2025-02-02 19:07:49 -05:00
if (c->visible) {
DrawTexturePro(
*cards_texture,
(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 },
0.,
RAYWHITE
);
} else {
DrawRectangleRec((Rectangle) { c->position.x, c->position.y, card_size.x, card_size.y }, BLACK);
}
2025-02-02 05:21:20 -05:00
if (c->selected) {
DrawCircle(c->position.x + 10, c->position.y + 10, 10, BLUE);
2025-02-01 07:33:52 -05:00
}
2025-02-01 05:36:42 -05:00
}
2025-02-01 07:51:53 -05:00
bool point_within_card(Card *c, Vector2 point) {
return point.x > c->position.x && point.x < c->position.x + card_size.x &&
point.y > c->position.y && point.y < c->position.y + card_size.y;
}
2025-02-02 18:30:45 -05:00
void shuffle_hand(Hand *h) {
Card *swap;
for (int i = h->count - 1; i >= 0; i--) {
int index = rand() % (i + 1);
swap = h->cards[i];
h->cards[i] = h->cards[index];
h->cards[index] = swap;
}
}
2025-02-02 19:07:49 -05:00
void add_to_hand(Hand *h, Card *c) {
2025-02-05 21:19:05 -05:00
h->cards[h->count] = c;
2025-02-03 20:07:22 -05:00
c->move.position = &c->position;
c->move.origin.x = c->position.x;
c->move.origin.y = c->position.y;
2025-02-05 21:19:05 -05:00
switch (h->display_type) {
case HAND_DISPLAY_ROW:
c->move.destination.x = h->position.x + (h->count * (CARD_WIDTH + 10));
c->move.destination.y = h->position.y;
break;
case HAND_DISPLAY_FIELD:
c->move.destination.x = h->position.x + ((h->count / 2) * (CARD_WIDTH + 10));
c->move.destination.y = h->position.y + (h->count % 2 * (CARD_HEIGHT + 10));
break;
}
2025-02-03 20:07:22 -05:00
c->move.curve = CURVE_EASE_IN_OUT;
c->move.current_time = 0.;
c->move.end_time = 0.1;
2025-02-05 21:19:05 -05:00
h->count++;
2025-02-03 20:07:22 -05:00
}
bool card_done_moving(Card *c) {
return c->move.current_time > c->move.end_time;
2025-02-02 19:07:49 -05:00
}
2025-02-03 20:07:22 -05:00
void deal(Hand *from, Hand *to, int count, bool up) {
2025-02-02 19:07:49 -05:00
for (int i = 0; i < count; i++) {
2025-02-03 20:07:22 -05:00
Card *c = from->cards[from->count - 1];
c->visible = up;
add_to_hand(to, c);
2025-02-02 19:07:49 -05:00
from->count--;
}
}
Rectangle next_card_position(Hand *h) {
return (Rectangle) {
h->position.x + ((h->count / 2) * (CARD_WIDTH + 10)),
h->position.y + (h->count % 2 * (CARD_HEIGHT + 10)),
CARD_WIDTH,
CARD_HEIGHT
};
}