Added restack to bet action

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

View File

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

View File

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

View File

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

View File

@ -15,17 +15,6 @@ void pokerDiscussionGet(
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) {
// Match Start Conversations
case POKER_DISCUSSION_REASON_MATCH_START: