hanafuda/main.c

130 lines
3.0 KiB
C
Raw Normal View History

2025-02-01 05:17:27 -05:00
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <raylib.h>
2025-02-01 05:36:42 -05:00
#include "card.h"
2025-02-01 05:58:30 -05:00
#include "move.h"
2025-02-01 06:40:33 -05:00
#include "teyaku.h"
2025-02-01 11:05:46 -05:00
#include "dekiyaku.h"
2025-02-01 05:36:42 -05:00
2025-02-01 05:17:27 -05:00
char *text = "こんにちわ、 世界!";
int main(int argc, char** argv) {
2025-02-01 08:28:52 -05:00
InitWindow(800, 550, "Hanafuda Hachi-Hachi");
2025-02-01 05:17:27 -05:00
SetTargetFPS(60);
2025-02-01 07:33:52 -05:00
/*
2025-02-01 06:40:33 -05:00
Hand h;
2025-02-01 07:04:28 -05:00
h.cards[0] = (Card) { 1, BRIGHT, RIBBON_NONE, NOVEMBER, (Vector2) { 0, 0 } };
h.cards[1] = (Card) { 1, ANIMAL, RIBBON_NONE, NOVEMBER, (Vector2) { 0, 0 } };
h.cards[2] = (Card) { 1, RIBBON, RIBBON_PLAIN, NOVEMBER, (Vector2) { 0, 0 } };
h.cards[3] = (Card) { 1, CHAFF, RIBBON_NONE, NOVEMBER, (Vector2) { 0, 0 } };
h.cards[4] = (Card) { 1, CHAFF, RIBBON_NONE, DECEMBER, (Vector2) { 0, 0 } };
h.cards[5] = (Card) { 1, CHAFF, RIBBON_NONE, DECEMBER, (Vector2) { 0, 0 } };
h.cards[6] = (Card) { 1, CHAFF, RIBBON_NONE, DECEMBER, (Vector2) { 0, 0 } };
2025-02-01 06:40:33 -05:00
h.count = 7;
printf("Teyaku: %d\n", calculate_teyaku(h));
2025-02-01 07:33:52 -05:00
*/
2025-02-01 06:40:33 -05:00
2025-02-01 07:33:52 -05:00
Card cards[48];
for (int i = 0; i < 48; i++) {
CardType t = CHAFF;
RibbonType rt = RIBBON_NONE;
Month month = i / 4;
switch (i) {
case 0:
case 8:
case 28:
case 40:
case 44:
t = BRIGHT; break;
case 1:
case 5:
case 9:
t = RIBBON; rt = RIBBON_POETRY; break;
case 21:
case 33:
case 37:
t = RIBBON; rt = RIBBON_BLUE; break;
case 13:
case 17:
case 25:
case 42:
t = RIBBON; rt = RIBBON_PLAIN; break;
case 4:
case 12:
case 16:
case 20:
case 24:
case 29:
case 32:
case 36:
case 41:
t = ANIMAL; break;
}
2025-02-01 07:51:53 -05:00
cards[i] = (Card) { i, t, rt, month, (Vector2) { month * 65, (i % 4) * 110 }, false };
2025-02-01 07:33:52 -05:00
}
2025-02-01 05:58:30 -05:00
2025-02-01 11:12:07 -05:00
// float delta;
Vector2 mouse_pos;
2025-02-01 11:23:01 -05:00
char teyaku_calculation[400];
strcpy(teyaku_calculation, "");
2025-02-01 11:05:46 -05:00
char dekiyaku_calculation[400];
2025-02-01 11:23:01 -05:00
strcpy(dekiyaku_calculation, "");
2025-02-01 05:58:30 -05:00
2025-02-01 05:17:27 -05:00
while (!WindowShouldClose()) {
2025-02-01 11:12:07 -05:00
// delta = GetFrameTime();
2025-02-01 05:58:30 -05:00
2025-02-01 07:51:53 -05:00
if (IsMouseButtonPressed(0)) {
2025-02-01 11:12:07 -05:00
mouse_pos = GetMousePosition();
2025-02-01 07:51:53 -05:00
for (int i = 0; i < 48; i++) {
if (point_within_card(&cards[i], mouse_pos)) {
cards[i].selected = !cards[i].selected;
2025-02-01 11:23:01 -05:00
strcpy(teyaku_calculation, "");
2025-02-01 07:51:53 -05:00
break;
}
}
}
2025-02-01 05:17:27 -05:00
BeginDrawing();
2025-02-01 05:36:42 -05:00
ClearBackground(RAYWHITE);
2025-02-01 08:28:52 -05:00
int num_selected = 0;
2025-02-01 07:33:52 -05:00
for (int i = 0; i < 48; i++) {
2025-02-01 08:28:52 -05:00
num_selected += cards[i].selected;
2025-02-01 07:33:52 -05:00
draw_card(&cards[i]);
}
2025-02-01 08:28:52 -05:00
2025-02-01 11:05:46 -05:00
if (strlen(teyaku_calculation) == 0) {
2025-02-01 08:28:52 -05:00
Hand h;
h.count = 0;
for (int i = 0; i < 48; i++) {
if (cards[i].selected) memcpy(&h.cards[h.count++], &cards[i], sizeof(Card));
}
2025-02-01 11:05:46 -05:00
if (num_selected == 7) {
2025-02-01 11:23:01 -05:00
Teyaku t;
calculate_teyaku(h, &t);
teyaku_to_string(&t, teyaku_calculation);
2025-02-01 11:05:46 -05:00
} else {
2025-02-01 11:23:01 -05:00
strcpy(teyaku_calculation, "");
2025-02-01 11:05:46 -05:00
}
Dekiyaku d;
calculate_dekiyaku(h, &d);
dekiyaku_to_string(&d, dekiyaku_calculation);
2025-02-01 08:28:52 -05:00
}
2025-02-01 10:19:40 -05:00
2025-02-01 11:05:46 -05:00
DrawText(teyaku_calculation, 10, 450, 25, BLACK);
DrawText(dekiyaku_calculation, 10, 500, 25, BLACK);
2025-02-01 05:17:27 -05:00
EndDrawing();
}
CloseWindow();
return 0;
}