hanafuda/points.c

24 lines
395 B
C
Raw Normal View History

2025-02-16 09:11:50 -05:00
#include "points.h"
int hand_points(Hand *hand) {
int points = 0;
for (int i = 0; i < hand->count; i++) {
Card *c = hand->cards[i];
switch (c->type) {
case CHAFF:
points += 1;
break;
case RIBBON:
points += 5;
break;
case ANIMAL:
points += 10;
break;
case BRIGHT:
points += 20;
break;
}
}
return points - 88;
}