From ddf4bcdeafaa9afb6c92a432f844da79ac37b5b3 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Wed, 28 Jul 2021 10:01:52 -0700 Subject: [PATCH] Added deal round, removed some logging --- src/game/poker/pokergame.c | 4 +++- src/game/poker/pokergame.h | 1 + src/poker/actions/deal.c | 30 ++++++++++++++++++++++++++++++ src/poker/actions/deal.h | 15 +++++++++++++++ src/vn/conversation/talk.c | 4 ---- 5 files changed, 49 insertions(+), 5 deletions(-) create mode 100644 src/poker/actions/deal.c create mode 100644 src/poker/actions/deal.h diff --git a/src/game/poker/pokergame.c b/src/game/poker/pokergame.c index ea0df7f0..9836a3e4 100644 --- a/src/game/poker/pokergame.c +++ b/src/game/poker/pokergame.c @@ -23,8 +23,10 @@ bool pokerGameInit(game_t *game) { pokerActionMatchAdd(&pokerGame->scene.conversation.actionQueue, &pokerGame->poker); vnConversationTalk(&pokerGame->scene.conversation, "Start Round", NULL); pokerActionRoundAdd(&pokerGame->scene.conversation.actionQueue, &pokerGame->poker); + vnConversationTalk(&pokerGame->scene.conversation, "Deal Round", NULL); + pokerActionDealAdd(&pokerGame->scene.conversation.actionQueue, &pokerGame->poker); vnConversationTalk(&pokerGame->scene.conversation, "Betting Round", NULL); - + // Betting round vnConversationTalk(&pokerGame->scene.conversation, "Flop Round", NULL); pokerActionFlopAdd(&pokerGame->scene.conversation.actionQueue, &pokerGame->poker); diff --git a/src/game/poker/pokergame.h b/src/game/poker/pokergame.h index 27dcf136..21921393 100644 --- a/src/game/poker/pokergame.h +++ b/src/game/poker/pokergame.h @@ -15,6 +15,7 @@ #include "../../poker/actions/match.h" #include "../../poker/actions/round.h" #include "../../poker/actions/flop.h" +#include "../../poker/actions/deal.h" /** * Initializes the game state for the poker game. diff --git a/src/poker/actions/deal.c b/src/poker/actions/deal.c new file mode 100644 index 00000000..c4ffbd16 --- /dev/null +++ b/src/poker/actions/deal.c @@ -0,0 +1,30 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#include "deal.h" + +void _pokerActionDealOnStart(queue_t *queue, queueaction_t *action, uint8_t i) { + poker_t *poker; + poker = (poker_t *)action->data; + + // Shuffle the deck + cardShuffle(poker->dealer.deck, CARD_DECK_SIZE); + + // Deal 2 card to each player + pokerDealerDealAll(poker, POKER_DEAL_CARD_EACH); + + printf("Cards Dealt\n"); + queueNext(queue); +} + +queueaction_t * pokerActionDealAdd(queue_t *queue, poker_t *poker) { + queueaction_t *action; + action = queueAdd(queue); + action->data = (void *)poker; + action->onStart = &_pokerActionDealOnStart; + return action; +} \ No newline at end of file diff --git a/src/poker/actions/deal.h b/src/poker/actions/deal.h new file mode 100644 index 00000000..4017871f --- /dev/null +++ b/src/poker/actions/deal.h @@ -0,0 +1,15 @@ +/** + * Copyright (c) 2021 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#pragma once +#include +#include "../../display/animation/queue.h" +#include "../dealer.h" + +void _pokerActionDealOnStart(queue_t *queue, queueaction_t *action, uint8_t i); + +queueaction_t * pokerActionDealAdd(queue_t *queue, poker_t *poker); \ No newline at end of file diff --git a/src/vn/conversation/talk.c b/src/vn/conversation/talk.c index 7e83d233..467f1681 100644 --- a/src/vn/conversation/talk.c +++ b/src/vn/conversation/talk.c @@ -11,9 +11,6 @@ void _vnConversationTalkStart(queue_t *queue,queueaction_t *action,uint8_t i) { vnconversationitemdata_t *data; data = (vnconversationitemdata_t *)action->data; - printf("Speaking "); - printf(data->text); - printf("\n"); vnTextBoxSetText(&data->conversation->textbox, data->text); if(data->character != NULL) { @@ -26,7 +23,6 @@ void _vnConversationTalkUpdate(queue_t *queue,queueaction_t *action,uint8_t i) { data = (vnconversationitemdata_t *)action->data; if(data->conversation->textbox.state & VN_TEXTBOX_STATE_CLOSED) { - printf("Spoke\n"); if(data->character != NULL) data->character->talking = false; queueNext(queue); }