Address warnings
This commit is contained in:
parent
4dd45c42e8
commit
5e0109a9b6
3
card.c
3
card.c
@ -1,5 +1,8 @@
|
||||
#include "card.h"
|
||||
|
||||
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) {
|
||||
DrawRectangleV(c->position, card_size, c->selected ? RED : BLACK);
|
||||
DrawRectangle(c->position.x + CARD_BORDER, c->position.y + CARD_BORDER, card_size.x - (CARD_BORDER * 2), card_size.y - (CARD_BORDER * 2) , WHITE);
|
||||
|
4
card.h
4
card.h
@ -9,7 +9,6 @@ typedef struct Hand Hand;
|
||||
#define CARD_WIDTH 63
|
||||
#define CARD_HEIGHT 105
|
||||
#define CARD_BORDER 5
|
||||
static Vector2 card_size = (Vector2) { CARD_WIDTH, CARD_HEIGHT };
|
||||
|
||||
typedef enum CardType {
|
||||
CHAFF,
|
||||
@ -40,8 +39,6 @@ typedef enum Month {
|
||||
DECEMBER
|
||||
} Month;
|
||||
|
||||
static char *month_english_abbr[12] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
|
||||
|
||||
struct Card {
|
||||
int index;
|
||||
CardType type;
|
||||
@ -57,5 +54,6 @@ struct Hand {
|
||||
};
|
||||
|
||||
void draw_card(Card *c);
|
||||
bool point_within_card(Card *c, Vector2 v);
|
||||
|
||||
#endif
|
||||
|
@ -1,3 +1,6 @@
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "dekiyaku.h"
|
||||
|
||||
void calculate_dekiyaku(const Hand h, Dekiyaku *d) {
|
||||
@ -12,6 +15,7 @@ void calculate_dekiyaku(const Hand h, Dekiyaku *d) {
|
||||
switch (card.ribbon_type) {
|
||||
case RIBBON_BLUE: blue_ribbons++; break;
|
||||
case RIBBON_POETRY: poetry_ribbons++; break;
|
||||
default: break;
|
||||
}
|
||||
break;
|
||||
case ANIMAL:
|
||||
@ -19,6 +23,7 @@ void calculate_dekiyaku(const Hand h, Dekiyaku *d) {
|
||||
case JUNE: butterflies++; break;
|
||||
case JULY: boar++; break;
|
||||
case OCTOBER: deer++; break;
|
||||
default: break;
|
||||
}
|
||||
break;
|
||||
case CHAFF:
|
||||
@ -67,8 +72,6 @@ void calculate_dekiyaku(const Hand h, Dekiyaku *d) {
|
||||
|
||||
char *meld_name(DekiyakuMeldType d) {
|
||||
switch (d) {
|
||||
case NONE:
|
||||
return "None";
|
||||
case FIVE_BRIGHTS:
|
||||
return "5B";
|
||||
case FOUR_BRIGHTS:
|
||||
@ -81,6 +84,8 @@ char *meld_name(DekiyakuMeldType d) {
|
||||
return "BS";
|
||||
case BOAR_DEER_BUTTERFLIES:
|
||||
return "ISK";
|
||||
default:
|
||||
return "None";
|
||||
}
|
||||
}
|
||||
|
||||
|
8
main.c
8
main.c
@ -69,16 +69,16 @@ int main(int argc, char** argv) {
|
||||
cards[i] = (Card) { i, t, rt, month, (Vector2) { month * 65, (i % 4) * 110 }, false };
|
||||
}
|
||||
|
||||
float delta;
|
||||
Vector2 mouse_position;
|
||||
// float delta;
|
||||
Vector2 mouse_pos;
|
||||
char *teyaku_calculation = "";
|
||||
char dekiyaku_calculation[400];
|
||||
|
||||
while (!WindowShouldClose()) {
|
||||
delta = GetFrameTime();
|
||||
// delta = GetFrameTime();
|
||||
|
||||
if (IsMouseButtonPressed(0)) {
|
||||
Vector2 mouse_pos = GetMousePosition();
|
||||
mouse_pos = GetMousePosition();
|
||||
for (int i = 0; i < 48; i++) {
|
||||
if (point_within_card(&cards[i], mouse_pos)) {
|
||||
cards[i].selected = !cards[i].selected;
|
||||
|
Loading…
Reference in New Issue
Block a user