hanafuda/main.c
2025-02-01 06:40:33 -05:00

63 lines
1.6 KiB
C

#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <raylib.h>
#include "card.h"
#include "move.h"
#include "teyaku.h"
char *text = "こんにちわ、 世界!";
int main(int argc, char** argv) {
InitWindow(800, 450, "Hanafuda Hachi-Hachi");
SetTargetFPS(60);
Hand h;
h.cards[0] = (Card) { 1, CHAFF, RIBBON_NONE, JANUARY, (Vector2) { 0, 0 } };
h.cards[1] = (Card) { 1, CHAFF, RIBBON_NONE, JANUARY, (Vector2) { 0, 0 } };
h.cards[2] = (Card) { 1, CHAFF, RIBBON_NONE, JANUARY, (Vector2) { 0, 0 } };
h.cards[3] = (Card) { 1, ANIMAL, RIBBON_NONE, JANUARY, (Vector2) { 0, 0 } };
h.cards[4] = (Card) { 1, ANIMAL, RIBBON_NONE, MAY, (Vector2) { 0, 0 } };
h.cards[5] = (Card) { 1, CHAFF, RIBBON_BLUE, MAY, (Vector2) { 0, 0 } };
h.cards[6] = (Card) { 1, CHAFF, RIBBON_PLAIN, MAY, (Vector2) { 0, 0 } };
h.count = 7;
printf("Teyaku: %d\n", calculate_teyaku(h));
Card *c = malloc(sizeof(Card));
c->position = (Vector2) { 200, 200 };
Move *m = malloc(sizeof(Move));
m->origin = c->position;
m->destination = c->position;
m->curve = CURVE_EASE_IN_OUT;
float delta;
Vector2 mouse_position;
while (!WindowShouldClose()) {
delta = GetFrameTime();
if (IsMouseButtonPressed(0)) {
mouse_position = GetMousePosition();
m->origin = c->position;
m->destination = mouse_position;
m->current_time = 0.;
m->end_time = 1.;
}
c->position = move_position(m, delta);
BeginDrawing();
ClearBackground(RAYWHITE);
draw_card(c);
EndDrawing();
}
CloseWindow();
return 0;
}