-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHold_Hem.php
430 lines (401 loc) · 11.9 KB
/
Hold_Hem.php
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
<?php
class Hold_Hem
{
// Points values
const HighCard = 1;
const Pair = 2;
const DoublePair = 3;
const ThreeOfAKind = 4;
const Straight = 5;
const Flush = 6;
const FullHouse = 7;
const Poker = 8;
const StraightFlush = 9;
public function __construct($players)
{
$this->createDeck()->shuffle()->createHoleCards($players)->createShowdown()->evaluateHands()->createWinners();
}
public function get()
{
$array = array(
'player_cards' => $this->hole_cards,
'showdown' => $this->showdown,
'winning_hands' => $this->winning_hands,
'winners' => $this->winners
);
return $array;
}
public function getHoleCards()
{
return $this->hole_cards;
}
public function getShowdown()
{
return $this->showdown;
}
public function getWinningHands()
{
return $this->winning_hands;
}
public function getWinners()
{
return $this->winners;
}
protected function createDeck()
{
$numbers = array('A', 2, 3, 4, 5, 6, 7, 8, 9, 'T', 'J', 'Q', 'K');
$suites = array('h', 'd', 'c', 's');
foreach($suites as $suit)
foreach($numbers as $number)
$this->deck[] = $number.$suit;
return $this;
}
protected function shuffle()
{
$times = 3;
while($times--)
shuffle($this->deck);
return $this;
}
protected function createHoleCards($players)
{
$this->hole_cards = array();
$times = 2;
while($times--)
for($i=1;$i<=$players;$i++)
$this->hole_cards[$i][] = array_shift($this->deck);
return $this;
}
protected function createShowdown()
{
$this->fold = array();
$this->showdown = array();
$array_fold = array(1,5,7);
for($i=1;$i<=8;$i++)
{
$card = array_shift($this->deck);
if(in_array($i, $array_fold))
$this->fold[] = $card;
else
$this->showdown[] = $card;
}
return $this;
}
public function decryptHand($hand)
{
$to_change = array('T', 'J', 'Q', 'K', 'A');
$change = array(10, 11, 12, 13, 14);
foreach($hand as &$card)
{
foreach($to_change as $key => $value)
$card = str_replace($value, $change[$key], $card);
}
return $hand;
}
public function cryptHand($hand)
{
$to_change = array(10, 11, 12, 13, 14);
$change = array('T', 'J', 'Q', 'K', 'A');
foreach($hand as &$card)
{
if((int)$card == 1)
{
$card = str_replace(1, "A", $card);
continue;
}
foreach($to_change as $key => $value)
$card = str_replace($value, $change[$key], $card);
}
return $hand;
}
public function onlyNumbers($hand)
{
foreach($hand as &$card)
$card = substr($card, 0, -1);
return $hand;
}
public function onlySuits($hand)
{
foreach($hand as &$card)
$card = substr($card, -1);
return $hand;
}
public function evaluateHand($hand)
{
$hand = $this->decryptHand($hand);
$points = array(
'StraightFlush',
'Poker',
'FullHouse',
'Straight',
'ThreeOfAKind',
'DoublePair',
'Pair',
'HighCard'
);
foreach($points as $point)
{
$point_method = "is".$point;
if($hand_value = $this->$point_method($hand))
return array(
'point' => constant('self::'.$point),
'printable_point' => $point,
'hand_value' => $hand_value
);
}
}
// Points returns an array 'value' & 'hand'
public function isHighCard($hand)
{
// it's highcard mandatory
rsort($hand, SORT_NUMERIC);
$best_hand = $hand;
$number_best_hand = $this->onlyNumbers($best_hand);
return array(
'value' => array_sum($number_best_hand),
'best_hand' => array_slice($hand, 0, 5)
);
}
public function isPair($hand)
{
$numbers = $this->onlyNumbers($hand);
$numbers_count = array_count_values($numbers);
krsort($numbers_count);
if($search_number = array_search(2, $numbers_count))
{
$best_hand = array();
foreach($hand as $key => $card)
{
if($search_number == (int)$card)
{
$best_hand[] = $card;
unset($hand[$key]);
}
}
rsort($hand, SORT_NUMERIC);
$hand_merge = array_slice($hand, 0, 3);
return array(
'value' => $search_number.".".array_sum($this->onlyNumbers($hand_merge)),
'best_hand' => array_merge($best_hand, $hand_merge)
);
}
return false;
}
public function isDoublePair($hand)
{
$numbers = $this->onlyNumbers($hand);
$numbers_count = array_count_values($numbers);
krsort($numbers_count);
foreach($numbers_count as $number => $count)
if($count == 2)
$double_pair[] = $number;
if(count($double_pair) >= 2) // TRICK return first_pair.second_pair
{
if(count($double_pair) == 3) unset($double_pair[2]);
$best_hand = array();
foreach($hand as $key => $card)
{
if(in_array((int)$card, $double_pair))
{
$best_hand[] = $card;
unset($hand[$key]);
}
}
rsort($hand, SORT_NUMERIC);
return array(
'value' => implode(".", array_merge($double_pair, array((int)($hand[0])))),
'best_hand' => array_merge($best_hand, array($hand[0]))
);
}
return false;
}
public function isThreeOfAKind($hand)
{
$numbers = $this->onlyNumbers($hand);
$numbers_count = array_count_values($numbers);
krsort($numbers_count);
if($search_number = array_search(3, $numbers_count))
{
$best_hand = array();
foreach($hand as $key => $card)
{
if($search_number == (int)$card)
{
$best_hand[] = $card;
unset($hand[$key]);
}
}
rsort($hand, SORT_NUMERIC);
return array(
'value' => $search_number,
'best_hand' => array_merge($best_hand, array_slice($hand, 0, 2))
);
}
return false;
}
public function isStraight($hand)
{
rsort($hand, SORT_NUMERIC);
$numbers = $this->onlyNumbers($hand);
if($numbers[0] == 14) // ace problem solved
{
$numbers[] = 1;
$hand[] = str_replace(14, 1, $hand[0]);
}
$numbers = array_unique($numbers);
sort($numbers);
$i = 0;
foreach($numbers as $number)
{
if($old_number+1 == $number)
{
$i++;
$last_number_straight = $number;
}
else
$i = 1;
if($i == 5) break;
$old_number = $number;
}
if($i > 4)
{
$best_hand = array();
$placed_numbers = array();
for($i=$last_number_straight;$i>=$last_number_straight-5;$i--)
{
foreach($hand as $card)
{
if($i == (int)$card && !in_array((int)$card, $placed_numbers))
{
$best_hand[] = $card;
$placed_numbers[] = (int)$card;
}
}
}
rsort($best_hand, SORT_NUMERIC);
return array(
'value' => $last_number_straight,
'best_hand' => array_slice($best_hand, 0, 5)
);
}
return false;
}
public function isFlush($hand)
{
$suits = $this->onlySuits($hand);
$suits_count = array_count_values($suits);
$max = max($suits_count);
if($max < 5) return false;
if($search_suits = array_search($max, $suits_count))
{
$best_hand = array();
foreach($hand as $card)
{
if($search_suits == substr($card, -1))
$best_hand[] = $card;
}
rsort($best_hand, SORT_NUMERIC);
return array(
'value' => (int)$best_hand[0],
'best_hand' => array_slice($best_hand, 0, 5)
);
}
return false;
}
public function isFullHouse($hand)
{
$numbers = $this->onlyNumbers($hand);
$numbers_count = array_count_values($numbers);
krsort($numbers_count);
$pair = array_search(2, $numbers_count);
$set = array_search(3, $numbers_count);
if($pair && $set)
{
$best_hand = array();
foreach($hand as $card)
{
if((int)$card == $pair OR (int)$card == $set)
$best_hand[] = $card;
}
return array(
'value' => $set.".".$pair, // trick
'best_hand' => $best_hand
);
}
return false;
}
public function isPoker($hand)
{
$numbers = $this->onlyNumbers($hand);
$numbers_count = array_count_values($numbers);
krsort($numbers_count);
if($search_number = array_search(4, $numbers_count))
{
$best_hand = array();
foreach($hand as $key => $card)
{
if($search_number == (int)$card)
{
$best_hand[] = $card;
unset($hand[$key]);
}
}
rsort($hand, SORT_NUMERIC);
return array(
'value' => $search_number,
'best_hand' => array_merge($best_hand, array_slice($hand, 0, 1))
);
}
return false;
}
public function isStraightFlush($hand)
{
$suits = $this->onlySuits($hand);
$suits_count = array_count_values($suits);
$max = max($suits_count);
if($max < 5) return false;
if($search_suits = array_search($max, $suits_count))
{
$best_hand = array();
foreach($hand as $card)
{
if($search_suits == substr($card, -1))
$best_hand[] = $card;
}
return $this->isStraight($best_hand);
}
return false;
}
protected function evaluateHands()
{
foreach($this->hole_cards as $player => $hole_card)
{
$hand = array_merge($hole_card, $this->showdown);
$this->player_hand[$player] = $this->evaluateHand($hand);
$this->winning_hands[$player] = $this->cryptHand($this->player_hand[$player]['hand_value']['best_hand']);
$this->players_points[$player] = $this->player_hand[$player]['point'];
}
return $this;
}
protected function createWinners()
{
$max_point = max($this->players_points);
$tmp_winners = array();
foreach($this->players_points as $player => $point)
{
if($point == $max_point)
{
$tmp_winners[] = $player;
$player_hand_value[$player] = $this->player_hand[$player]['hand_value']['value'];
}
}
$this->winners = array();
$max_hand_value = max($player_hand_value);
foreach($tmp_winners as $tmp_winner)
{
if($player_hand_value[$tmp_winner] == $max_hand_value)
$this->winners[] = $tmp_winner;
}
}
}
?>