Test Flops

This commit is contained in:
2021-10-10 20:54:52 -07:00
parent 60a699954b
commit 8139cc4614
2 changed files with 9 additions and 7 deletions

View File

@ -13,6 +13,7 @@ void _pokerGameActionFlopOnStart(
pokergame_t *game = (pokergame_t *)action->data;
pokerdiscussiondata_t discussion;
queueaction_t *next;
uint8_t nextBetter;
// Prep convo
discussion.poker = game;
@ -20,7 +21,7 @@ void _pokerGameActionFlopOnStart(
// Get how many players are left in the round.
if(pokerInRoundGetCount(game->poker.players) > 1) {// Still more than 1
// Add the actual flop action.
// next = pokerActionNextFlopAdd(queue, &game->poker);
next = pokerActionNextFlopAdd(queue, &game->poker);
// Reset all the players
@ -30,11 +31,12 @@ void _pokerGameActionFlopOnStart(
discussion.reason = POKER_DISCUSSION_REASON_FLOP;
pokerDiscussionQueue(&discussion);
// //TODO: Get the next player here.
// pokerPlayerGetRemainingBetter(&poker);
//TODO: Get the next player here.
nextBetter = pokerPlayerGetRemainingBetter(&game->poker);
// Now, get the count of players left to bet. If "everyone is all in" then
// this will be 0 and no actual betting needs to happen.
// // Now, get the count of players left to bet. If "everyone is all in" then
// // this will be 0 and no actual betting needs to happen.
// if(pokerBetGetRemainingPlayerCount(
// &game->poker.bet, game->poker.players
// ) > 1) {

View File

@ -10,7 +10,7 @@
int main() {
return (
!test_card() &&
!test_poker()
test_card() == 0 &&
test_poker() == 0
);
}