-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathall_in_expectation.c
219 lines (167 loc) · 4.96 KB
/
all_in_expectation.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/*
Copyright (C) 2014 by the Computer Poker Research Group, University of Alberta
*/
#include <stdlib.h>
#include <stdio.h>
#define __STDC_LIMIT_MACROS
#include <stdint.h>
#include <unistd.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <sys/select.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <getopt.h>
#include "game.h"
#include "net.h"
void getUsedCards( const Game *game,
const State *state,
const int lastRound,
uint8_t *used )
{
int i, p;
/* start with no cards used */
memset( used, 0, sizeof( used[ 0 ] ) * game->numSuits * game->numRanks );
/* collect the player cards */
for( p = 0; p < game->numPlayers; ++p ) {
for( i = 0; i < game->numHoleCards; ++i ) {
used[ state->holeCards[ p ][ i ] ] = 1;
}
}
/* collect the board cards up to lastRound */
p = sumBoardCards( game, lastRound );
for( i = 0; i < p; ++i ) {
used[ state->boardCards[ i ] ] = 1;
}
}
int main( int argc, char **argv )
{
int stateEnd, r, i, p, deckSize, numBoards;
FILE *file;
Game *game;
State state;
uint8_t deck[ MAX_SUITS * MAX_RANKS ];
uint8_t used[ MAX_SUITS * MAX_RANKS ];
double value[ MAX_PLAYERS ];
char line[ 4096 ];
if( argc < 3 ) {
fprintf( stderr, "USAGE: %s game_def log_file\n", argv[ 0 ] );
exit( EXIT_FAILURE );
}
/* get the game definition */
file = fopen( argv[ 1 ], "r" );
if( file == NULL ) {
fprintf( stderr, "ERROR: could not open game definition %s\n", argv[ 1 ] );
exit( EXIT_FAILURE );
}
game = readGame( file );
if( game == NULL ) {
fprintf( stderr, "ERROR: could not read game %s\n", argv[ 1 ] );
exit( EXIT_FAILURE );
}
fclose( file );
/* get the log file */
file = fopen( argv[ 2 ], "r" );
if( file == NULL ) {
fprintf( stderr, "ERROR: could not open log file %s\n", argv[ 2 ] );
exit( EXIT_FAILURE );
}
/* read every line and process all hands */
while( fgets( line, 4096, file ) ) {
stateEnd = readState( line, game, &state );
if( stateEnd < 0 ) {
/* couldn't read a state from the line */
continue;
}
if( numAllIn( game, &state ) == 0
|| numFolded( game, &state ) + 1 >= game->numPlayers ) {
/* no one all in, or game didn't end in a showdown */
printf( "%s", line );
continue;
}
/* find last round where someone made an action */
for( r = state.round; r > 0; --r ) {
if( state.numActions[ r ] ) {
break;
}
}
if( r + 1 == game->numRounds ) {
/* there are no board cards left to roll out on the final round */
printf( "%s", line );
continue;
}
/* initialise values to 0 */
memset( value, 0, sizeof( value ) );
/* set up a deck containing all cards up to round r */
getUsedCards( game, &state, r, used );
deckSize = 0;
for( i = 0; i < game->numSuits * game->numRanks; ++i ) {
if( !used[ i ] ) {
deck[ deckSize ] = i;
++deckSize;
}
}
/* switch to using used[] as the index into deck[]
for the remaining cards used on the board
sort hands in ascending order, start with highest indexed hand */
const int bcStart = sumBoardCards( game, r );
const int numCards = sumBoardCards( game, game->numRounds - 1 ) - bcStart;
for( i = 0; i < numCards; ++i ) {
used[ i ] = deckSize - numCards + i;
state.boardCards[ bcStart + i ] = deck[ used[ i ] ];
}
/* try every possible board */
numBoards = 0;
while( 1 ) {
/* get the values */
for( p = 0; p < game->numPlayers; ++p ) {
value[ p ] += valueOfState( game, &state, p );
}
/* move on to the next board */
++numBoards;
/* find position of first card we can decrement */
i = 0;
while( used[ i ] == i && i < numCards ) {
++ i;
}
if( i == numCards ) {
/* can't decrement any cards, so we're done */
break;
}
/* decrement the card */
--used[ i ];
state.boardCards[ bcStart + i ] = deck[ used[ i ] ];
/* fill in all earlier cards with highest possible index */
while( i > 0 ) {
/* move to previous card, set index to one lower then current card */
--i;
used[ i ] = used[ i + 1 ] - 1;
state.boardCards[ bcStart + i ] = deck[ used[ i ] ];
}
}
/* do the printout - start with the state */
if( line[ stateEnd ] != 0 ) {
if( line[ stateEnd ] != ':' && line[ stateEnd ] != '\n' ) {
fprintf( stderr, "ERROR: expected input of STATE:VALUES:PLAYERS\n" );
exit( EXIT_FAILURE );
}
line[ stateEnd ] = 0;
++stateEnd;
}
printf( "%s:", line );
/* print out the averaged values */
for( p = 0; p < game->numPlayers; ++p ) {
printf( p ? "|%lf" : "%lf", value[ p ] / (double)numBoards );
}
/* find the player names in the state line */
for( i = stateEnd; line[ i ] && line[ i ] != ':'; ++i );
if( line[ i ] == ':' ) {
printf( "%s", &line[ i ] );
} else {
printf( "\n" );
}
}
fclose( file );
exit( EXIT_SUCCESS );
}