当前位置:首页 > PHP教程 > php高级应用 > 列表

PHP实现扎金花游戏之大小比赛的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-15 22:38:47 浏览: 评论:0 

这篇文章主要介绍了PHP实现扎金花游戏之大小比赛的方法,实例分析了扎金花游戏的实现原理与相关算法技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了PHP实现扎金花游戏之大小比赛的方法。分享给大家供大家参考。具体分析如下:

程序离不开算法,前面讨论过寻路的算法。不过,当时的示例图中,可选的路径是唯一的。我们挑选一个算法,就是说要把这个唯一的路径选出来,怎么选呢?

还记得上初中的时候经常下午放学就躲在路边扎金花来赌*钱,貌似还上瘾了,现在过年的时候还经常一起扎金花赌*钱,但运气不啥好,每次都是输啊。

今天阳光明媚,由于清明节才出去玩了,所以今天没有去哪。闲着没事就想了下怎么用程序实现金花中两幅牌的大小比较,现在把它实现了,有些方法还是蛮重要的,因此就记下来。

好了,不废话了。

扎金花两副牌的比较规则就不说了,注明一下是顺子的时候 : JQK < A23 < QKA

思路:扎金花

1. 随机生成两幅牌,每副牌结构为:

  1. array(  
  2.     array('Spade','K'),  
  3.     array('Club','6'),  
  4.     array('Spade','J'),  
  5.  
  6. array(  
  7.     array('Spade','K'),  
  8.     array('Club','6'),  
  9.     array('Spade','J'),  

2. 计算每副牌的分值:每副牌有个原始大小(即排除对子,顺子,金花,顺金,筒子的大小),再每张牌的分值为一个2位数,不足2位的补前导0,例如'A':14,‘10':10,'2‘:'02‘,'k‘:13,'7‘:07

将3张牌按点数大小排序(从大到小),凑成一个6位数。例如'A27':140702,‘829':090802,‘JK8':131108,‘2A10':141002

例外,对于对子要将对子的位数放在前两位(后面会看到为什么这么做)。例如‘779':070709,‘7A7':070714,‘A33':030314

现在的分值是一个6位数,将对子设为一个原始值加上10*100000的值,现在为一个7位数。例如‘779':1070709,‘7A7':1070714,‘A33':1030314

对于顺子,将结果加上20*100000.。例如‘345':2050403,‘QKA':2141312,‘23A':2140302

对于金花,将结果加上30*100000。例如‘Spade K,Spade 6,Spade J':3131106

因为顺金的时候其实是金花和顺子的和,所以顺金应该是50*10000。 例如‘Spade 7,Spade 6,Spade 8':5080706

对于筒子,将结果加上60*100000。例如'666‘:6060606,'JJJ‘:6111111

3. 比较两幅牌的大小(用所计算的分值来比较)

就这么简单!!

代码如下(PHP):

  1. <?php  
  2. class PlayCards  
  3. {  
  4.     public $suits = array('Spade''Heart''Diamond''Club');  
  5.     public $figures = array('2''3''4''5''6''7''8''9''10''J''Q''K''A');  
  6.     public $cards = array();  
  7.     public function __construct()  
  8.     {  
  9.         $cards = array();  
  10.         foreach($this->suits as $suit){  
  11.             foreach($this->figures as $figure){  
  12.                 $cards[] = array($suit,$figure);  
  13.             }  
  14.         }  
  15.         $this->cards = $cards;  
  16.     }  
  17.     public function getCard()  
  18.     {  
  19.         shuffle($this->cards);  
  20.         //生成3张牌  
  21.         return array(array_pop($this->cards), array_pop($this->cards), array_pop($this->cards));     
  22.     }  
  23.     public function compareCards($card1,$card2)  
  24.     {  
  25.         $score1 = $this->ownScore($card1);  
  26.         $score2 = $this->ownScore($card2);  
  27.         if($score1 > $score2return 1;  
  28.         elseif($score1 < $score2return -1;  
  29.         return 0;         
  30.     }  
  31.     private function ownScore($card)  
  32.     {  
  33.         $suit = $figure = array();  
  34.         foreach($card as $v){  
  35.             $suit[] = $v[0];  
  36.             $figure[] = array_search($v[1],$this->figures)+2;  
  37.         }  
  38.         //补齐前导0  
  39.         for($i = 0; $i < 3; $i++){  
  40.             $figure[$i] = str_pad($figure[$i],2,'0',STR_PAD_LEFT);  
  41.         }  
  42.         rsort($figure);  
  43.         //对于对子做特殊处理  
  44.         if($figure[1] == $figure[2]){  
  45.             $temp = $figure[0];  
  46.             $figure[0] = $figure[2];  
  47.             $figure[2] = $temp;  
  48.         }  
  49.         $score = $figure[0].$figure[1].$figure[2];  
  50.         //筒子 60*100000  
  51.         if($figure[0] == $figure[1] && $figure[0] == $figure[2]){  
  52.             $score += 60*100000;  
  53.         }  
  54.         //金花 30*100000  
  55.         if($suit[0] == $suit[1] && $suit[0] == $suit[2]){  
  56.             $score += 30*100000;  
  57.         }  
  58.         //顺子 20*100000  
  59.         if($figure[0] == $figure[1]+1 && $figure[1] == $figure[2]+1 || implode($figure) =='140302'){  
  60.             $score += 20*100000;  
  61.         }  
  62.         //对子 10*100000  
  63.         if($figure[0] == $figure[1] && $figure[1] != $figure[2]){  
  64.  
  65.             $score += 10*100000;  
  66.         }  
  67.         return $score;  
  68.     }  
  69. }  
  70.  
  71. //test  
  72. $playCard = new PlayCards();  
  73. $card1 = $playCard->getCard();  
  74. $card2 = $playCard->getCard();  
  75. $result = $playCard->compareCards($card1,$card2);  
  76. echo 'card1 is ',printCard($card1),'<br/>';  
  77. echo 'card2 is ',printCard($card2),'<br/>';  
  78. $str = 'card1 equit card2';  
  79. if($result == 1) $str =  'card1 is larger than card2';  
  80. elseif($result == -1) $str = 'card1 is smaller than card2';  
  81. echo $str;  
  82. function printCard($card)  
  83. {  
  84.     $str = '(';  
  85.     foreach($card as $v){  
  86.         $str .= $v[0].$v[1].',';  
  87.     }  
  88.     return trim($str,',').')';  
  89.  
  90. <?php   
  91. class PlayCards  
  92. {  
  93.     public $suits = array('Spade''Heart''Diamond''Club');  
  94.     public $figures = array('2''3''4''5''6''7''8''9''10''J''Q''K''A');  
  95.     public $cards = array();  
  96.     public function __construct()  
  97.     {  
  98.         $cards = array();  
  99.         foreach($this->suits as $suit){  
  100.             foreach($this->figures as $figure){  
  101.                 $cards[] = array($suit,$figure);  
  102.             }  
  103.         }  
  104.         $this->cards = $cards;  
  105.     }  
  106.     public function getCard()  
  107.     {  
  108.         shuffle($this->cards);  
  109.         //生成3张牌  
  110.         return array(array_pop($this->cards), array_pop($this->cards), array_pop($this->cards));     
  111.     }  
  112.     public function compareCards($card1,$card2)  
  113.     {  
  114.         $score1 = $this->ownScore($card1);  
  115.         $score2 = $this->ownScore($card2);  
  116.         if($score1 > $score2return 1;  
  117.         elseif($score1 < $score2return -1;  
  118.         return 0;         
  119.     }  
  120.     private function ownScore($card)  
  121.     {  
  122.         $suit = $figure = array();  
  123.         foreach($card as $v){  
  124.             $suit[] = $v[0];  
  125.             $figure[] = array_search($v[1],$this->figures)+2;  
  126.         }  
  127.         //补齐前导0  
  128.         for($i = 0; $i < 3; $i++){  
  129.             $figure[$i] = str_pad($figure[$i],2,'0',STR_PAD_LEFT);  
  130.         }  
  131.         rsort($figure);  
  132.         //对于对子做特殊处理  
  133.         if($figure[1] == $figure[2]){  
  134.             $temp = $figure[0];  
  135.             $figure[0] = $figure[2];  
  136.             $figure[2] = $temp;  
  137.         }  
  138.         $score = $figure[0].$figure[1].$figure[2];  
  139.         //筒子 60*100000  
  140.         if($figure[0] == $figure[1] && $figure[0] == $figure[2]){  
  141.             $score += 60*100000;  
  142.         }  
  143.         //金花 30*100000  
  144.         if($suit[0] == $suit[1] && $suit[0] == $suit[2]){  
  145.             $score += 30*100000;  
  146.         }  
  147.         //顺子 20*100000  
  148.         if($figure[0] == $figure[1]+1 && $figure[1] == $figure[2]+1 || implode($figure) =='140302'){  
  149.             $score += 20*100000;  
  150.         }  
  151.         //对子 10*100000  
  152.         if($figure[0] == $figure[1] && $figure[1] != $figure[2]){  
  153.  
  154.             $score += 10*100000;  
  155.         }  
  156.         return $score;  
  157.     }  
  158. }  
  159.  
  160. //test  
  161. $playCard = new PlayCards();  
  162. $card1 = $playCard->getCard();  
  163. $card2 = $playCard->getCard();  
  164. $result = $playCard->compareCards($card1,$card2);  
  165. echo 'card1 is ',printCard($card1),'<br/>';  
  166. echo 'card2 is ',printCard($card2),'<br/>';  
  167. $str = 'card1 equit card2';  
  168. if($result == 1) $str =  'card1 is larger than card2';  
  169. elseif($result == -1) $str = 'card1 is smaller than card2';  
  170. echo $str;  
  171.  
  172. function printCard($card)  
  173. {  
  174.     $str = '(';  
  175.     foreach($card as $v){  
  176.         $str .= $v[0].$v[1].',';  
  177.     }  
  178.     return trim($str,',').')';  

希望本文所述对大家的php程序设计有所帮助。

Tags: PHP扎金花游戏 PHP大小比赛

分享到: