Added restack to bet action

This commit is contained in:
2021-08-29 13:09:43 -07:00
parent f3e27dfd76
commit eed9941544
4 changed files with 7 additions and 13 deletions

View File

@ -93,7 +93,9 @@ void _pokerGameActionBetOnEnd(
// Are we waiting on any players? // Are we waiting on any players?
if(playersPending) return; if(playersPending) return;
// Not waiting, restack and do next action.
printf("Not waiting on anything!\n"); printf("Not waiting on anything!\n");
pokerGameActionRestackAdd(game);
// No! Begin the next flop. // No! Begin the next flop.
next = pokerActionNextFlopAdd(queue, &game->poker); next = pokerActionNextFlopAdd(queue, &game->poker);
@ -102,9 +104,9 @@ void _pokerGameActionBetOnEnd(
pokerGameActionBetAdd(game); pokerGameActionBetAdd(game);
return; return;
} }
printf("All betting is done, reveal");
/** Queue a restack */
printf("All betting is done, reveal\n");
} }
queueaction_t * pokerGameActionBetAdd(pokergame_t *game) { queueaction_t * pokerGameActionBetAdd(pokergame_t *game) {

View File

@ -8,6 +8,7 @@
#pragma once #pragma once
#include <dawn/dawn.h> #include <dawn/dawn.h>
#include "action.h" #include "action.h"
#include "restack.h"
#include "../../../poker/turn.h" #include "../../../poker/turn.h"
#include "../../../poker/bet.h" #include "../../../poker/bet.h"
#include "../../../poker/actions/flop.h" #include "../../../poker/actions/flop.h"

View File

@ -10,6 +10,8 @@
void _pokerGameActionRestackOnStart( void _pokerGameActionRestackOnStart(
queue_t *queue, queueaction_t *action, uint8_t i queue_t *queue, queueaction_t *action, uint8_t i
) { ) {
pokergame_t *game = (pokergame_t *)action->data;
printf("Restacking\n");
pokerGameQueueRestack(game); pokerGameQueueRestack(game);
queueNext(queue); queueNext(queue);
} }

View File

@ -15,17 +15,6 @@ void pokerDiscussionGet(
sizeof(uint8_t) * POKER_DISCUSSION_MESSAGE_COUNT_MAX sizeof(uint8_t) * POKER_DISCUSSION_MESSAGE_COUNT_MAX
); );
for(uint8_t i = 0; i < POKER_PLAYER_COUNT; i++) {
char *buffer = malloc(sizeof(char) * 50);
sprintf(buffer, "Player %u", i);
discussion->messages[discussion->count] = buffer;
discussion->emotions[discussion->count] = i * 16;
discussion->players[discussion->count] = i;
discussion->count++;
}
return;
switch(data->reason) { switch(data->reason) {
// Match Start Conversations // Match Start Conversations
case POKER_DISCUSSION_REASON_MATCH_START: case POKER_DISCUSSION_REASON_MATCH_START: