Added deal round, removed some logging

This commit is contained in:
2021-07-28 10:01:52 -07:00
parent b89f27f3ec
commit ddf4bcdeaf
5 changed files with 49 additions and 5 deletions

View File

@ -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);

View File

@ -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.