From bc070a2d9ca96abf8d0565eaf0e1388aa2099f84 Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Wed, 26 Feb 2025 20:16:04 -0500 Subject: [PATCH] Fixes --- dialog.c | 8 +++++--- game.c | 5 +++-- license.txt | 9 --------- 3 files changed, 8 insertions(+), 14 deletions(-) delete mode 100644 license.txt diff --git a/dialog.c b/dialog.c index f4ef484..6ae7c6d 100644 --- a/dialog.c +++ b/dialog.c @@ -101,9 +101,11 @@ void init_dialogs(Game *g) { cancel_dialog->options[1].handle = &handle_click_cancel_no; Dialog *shoubu_dialog = &dialogs[1]; - shoubu_dialog->text_count = 1; + shoubu_dialog->text_count = 2; shoubu_dialog->text[0] = malloc(200); - strcpy(shoubu_dialog->text[0], "You have dekiyaku! Sage or shoubu?"); + shoubu_dialog->text[1] = malloc(200); + strcpy(shoubu_dialog->text[0], "You have dekiyaku!"); + strcpy(shoubu_dialog->text[1], "Sage or shoubu?"); shoubu_dialog->text_size = 60; shoubu_dialog->options_count = 2; shoubu_dialog->game = g; @@ -257,7 +259,7 @@ Rectangle dialog_option_inner_rectangle(Dialog *d, int i) { void dialog_draw(Dialog *d) { Vector2 mouse_pos = GetMousePosition(); - DrawText("Hide Dialog", 1225, 850, 30, BLACK); + DrawText("Hide Dialog", 1225, 870, 20, BLACK); if (mouse_pos.x > 1225 && mouse_pos.y > 850) return; int text_width; diff --git a/game.c b/game.c index b591d96..cf98732 100644 --- a/game.c +++ b/game.c @@ -41,9 +41,9 @@ void initialize_game(Game *g) { g->dialog = NULL; g->kan_value = 12; - g->number_of_rounds = 1; + g->number_of_rounds = 3; g->black_card_backs = true; - g->deal_speed = 0.2; + g->deal_speed = 0.4; g->options = malloc(sizeof(Options)); initialize_title(g); load_options_from_game(g); @@ -738,6 +738,7 @@ void calculate_exhausted_dekiyaku_score(Game *g) { void run_frame_calculating_dekiyaku_score(Game *g) { dekiyaku_end_of_round_dialog(g); + strcpy(g->dialog->text[3], ""); if (g->player.dekiyaku_action == DEKIYAKU_ACTION_CANCEL || g->player.dekiyaku_action == DEKIYAKU_ACTION_SHOUBU) { calculate_dekiyaku_score(g, &g->player); } else if (g->right.dekiyaku_action == DEKIYAKU_ACTION_CANCEL || g->right.dekiyaku_action == DEKIYAKU_ACTION_SHOUBU) { diff --git a/license.txt b/license.txt deleted file mode 100644 index e3fda98..0000000 --- a/license.txt +++ /dev/null @@ -1,9 +0,0 @@ -// Copyright 2025 Bill Rossi -// -// This file is part of Hanafuda Hachi-Hachi. -// -// Hanafuda Hachi-Hachi is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. -// -// Hanafuda Hachi-Hachi is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License along with Hanafuda Hachi-Hachi. If not, see .