Commit 00f03ac
authored
feat: show all hole cards and bot names in hand-history mode (#33)
* feat: show all hole cards and bot names in hand-history mode
Improves hand-history mode for bot testing and debugging by showing all
players' hole cards from the start of each hand, and displaying bot names
instead of IDs throughout.
Changes:
- Add HoleCards field to HandPlayer struct for passing cards to monitors
- Update hand runner to pass hole cards and display names in OnHandStart
- Modify pretty monitor to display all players' hole cards in the
"HOLE CARDS" section
- Use bot.DisplayName() instead of bot.ID for consistent naming
This makes it much easier to understand bot decision-making when reviewing
hands, as you can see what everyone was holding from the start rather than
only at showdown.
Example output:
*** HOLE CARDS ***
Dealt to aragorn-dev Q♣ K♠
Dealt to complex-bot-1 7♣ J♥
Dealt to complex-bot-2 9♦ K♦
All names (aragorn-dev, complex-bot-1, etc.) now appear consistently in
headers, actions, and summary.
* fix: preserve bot ID in HandPlayer.Name for stats tracking
Addresses P1 feedback: using DisplayName as HandPlayer.Name broke stats
tracking because StatsMonitor uses player.Name as the stable key for
indexing bot statistics.
Changes:
- Add DisplayName field to HandPlayer struct for human-readable display
- Keep Name field as bot.ID for stable stats tracking (prevents stats
key mismatches and duplicate display name conflicts)
- Update pretty monitor to use DisplayName for all display purposes
(seat listings, hole cards, actions)
This ensures stats tracking works correctly while still showing friendly
bot names (aragorn-dev, complex-bot-1, etc.) consistently in hand-history
output.
Co-authored-by: chatgpt-codex-connector[bot]1 parent d4cf1a7 commit 00f03ac
3 files changed
+62
-37
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
320 | 320 | | |
321 | 321 | | |
322 | 322 | | |
| 323 | + | |
| 324 | + | |
| 325 | + | |
| 326 | + | |
| 327 | + | |
323 | 328 | | |
324 | | - | |
325 | | - | |
326 | | - | |
| 329 | + | |
| 330 | + | |
| 331 | + | |
| 332 | + | |
| 333 | + | |
| 334 | + | |
| 335 | + | |
| 336 | + | |
327 | 337 | | |
328 | 338 | | |
329 | 339 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
28 | | - | |
29 | | - | |
30 | | - | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
31 | 33 | | |
32 | 34 | | |
33 | 35 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
24 | | - | |
25 | | - | |
26 | | - | |
27 | | - | |
28 | | - | |
29 | | - | |
30 | | - | |
31 | | - | |
32 | | - | |
33 | | - | |
34 | | - | |
35 | | - | |
36 | | - | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
37 | 38 | | |
38 | 39 | | |
39 | 40 | | |
| |||
82 | 83 | | |
83 | 84 | | |
84 | 85 | | |
85 | | - | |
86 | | - | |
87 | | - | |
88 | | - | |
89 | | - | |
90 | | - | |
91 | | - | |
92 | | - | |
93 | | - | |
94 | | - | |
95 | | - | |
96 | | - | |
97 | | - | |
98 | | - | |
99 | | - | |
100 | | - | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
101 | 103 | | |
102 | 104 | | |
| 105 | + | |
103 | 106 | | |
104 | 107 | | |
105 | 108 | | |
| |||
112 | 115 | | |
113 | 116 | | |
114 | 117 | | |
115 | | - | |
| 118 | + | |
116 | 119 | | |
117 | 120 | | |
118 | 121 | | |
| |||
150 | 153 | | |
151 | 154 | | |
152 | 155 | | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | + | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
153 | 166 | | |
154 | 167 | | |
155 | 168 | | |
156 | 169 | | |
157 | 170 | | |
158 | 171 | | |
159 | | - | |
| 172 | + | |
160 | 173 | | |
161 | 174 | | |
162 | 175 | | |
| |||
0 commit comments