91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php如何實現中秋博餅游戲之擲骰子并輸出結果功能

發布時間:2021-06-22 15:24:01 來源:億速云 閱讀:90 作者:小新 欄目:開發技術

這篇文章主要介紹php如何實現中秋博餅游戲之擲骰子并輸出結果功能,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

具體如下:

前面講述了php實現的中秋博餅游戲之繪制骰子圖案功能,純php實現,就要用php來生成圖案,第一步就先繪制骰子圖案。下面就是編碼實現業務邏輯,具體代碼如下:

<?php
class roll
{
  private $_defRank = 'lk';
  public function lottery()
  {
    $dice   = $this->rollDice();
    $format  = $this->formatDice($dice);
    $rank   = $this->getRank($format);
    $rankName = $this->getName($rank);
    return [
      'dice'   => $dice,
      //'format'  => $format,
      'rank'   => $rank,
      'rankName' => $rankName,
    ];
  }
  /**
   * 獲取篩子排名結果
   * @param $dice
   * @return array
   */
  public function getRes($dice)
  {
    $format  = $this->formatDice($dice);
    $rank   = $this->getRank($format);
    $rankName = $this->getName($rank);
    return [
      'dice'   => $dice,
      'format'  => $format,
      'rank'   => $rank,
      'rankName' => $rankName,
    ];
  }
  /**
   * 擲骰子
   * @return array
   */
  public function rollDice()
  {
    $res = [];
    for ($i = 0; $i < 6; $i++) {
      $res[] = mt_rand(1, 6);
    }
    return $res;
  }
  /**
   * 格式化擲骰子結果
   * @param array $list
   * @return array
   */
  public function formatDice($list = [])
  {
    $data = [];
    if (count($list) != 6) {
      return $data;
    }
    $data = [
      1 => 0,
      2 => 0,
      3 => 0,
      4 => 0,
      5 => 0,
      6 => 0,
    ];
    foreach ($list as $val) {
      if (isset($data[$val])) {
        $data[$val] += 1;
      }
    }
    foreach ($data as $key => $val) {
      if ($val == 0) {
        unset($data[$key]);
      }
    }
    return $data;
  }
  /**
   * 判斷篩子結果的大小
   * @param $list
   * @return int|string
   */
  public function getRank($list)
  {
    $ruleList = $this->_getRule();
    $res   = $this->_defRank;
    if (!empty($ruleList)) {
      foreach ($ruleList as $rank => $rankRules) {
        foreach ($rankRules as $rule) {
          foreach ($rule as $dian => $num) {
            if (isset($list[$dian])) {
              if ($list[$dian] == $num) {
                $res = $rank;
              } else {
                //規則中只要有一條不滿足就跳出當前規則驗證
                $res = $this->_defRank;
                break;
              }
            } else {
              //規則中只要有一條不滿足就跳出當前規則驗證
              $res = $this->_defRank;
              break;
            }
          }
          //有一條規則匹配,跳出循環,
          if ($res != $this->_defRank) {
            break;
          }
        }
        //有一條規則匹配,跳出循環,
        if ($res != $this->_defRank) {
          break;
        }
      }
    }
    return $res;
  }
  /**
   * 根據排序獲取擲骰子結果名稱
   * @param int $rank
   * @return array
   */
  public function getName($rank = NULL)
  {
    $list = [
      'cjh'  => '狀元插金花',
      'lbh'  => '六杯紅',
      'bdj'  => '遍地錦',
      'ww'  => '五王',
      'wzdyx' => '五子帶一秀',
      'wzdk' => '五子登科',
      'zy'  => '狀元',
      'by'  => '榜眼',
      'sh'  => '三紅',
      'sj'  => '四進',
      'eq'  => '二舉',
      'yx'  => '一秀',
      'lk'  => '輪空',
    ];
    if (!empty($rank)) {
      $rankName = '';
      if (isset($list[$rank])) {
        $rankName = $list[$rank];
      }
      return $rankName;
    }
    return $list;
  }
  /**
   * 返回規則
   * @return array
   */
  private function _getRule()
  {
    return [
      'cjh'  => [
        [2 => 2, 4 => 4]
      ],
      'lbh'  => [
        [4 => 6]
      ],
      'bdj'  => [
        [1 => 6],
        [2 => 6],
        [3 => 6],
        [5 => 6],
        [6 => 6],
      ],
      'ww'  => [
        [4 => 5],
      ],
      'wzdyx' => [
        [1 => 5, 4 => 1],
        [2 => 5, 4 => 1],
        [3 => 5, 4 => 1],
        [5 => 5, 4 => 1],
        [6 => 5, 4 => 1],
      ],
      'wzdk' => [
        [1 => 5],
        [2 => 5],
        [3 => 5],
        [5 => 5],
        [6 => 5],
      ],
      'zy'  => [
        [4 => 4]
      ],
      'by'  => [
        [1 => 1, 2 => 1, 3 => 1, 4 => 1, 5 => 1, 6 => 1]
      ],
      'sh'  => [
        [4 => 3]
      ],
      'sj'  => [
        [1 => 4],
        [2 => 4],
        [3 => 4],
        [5 => 4],
        [6 => 4],
      ],
      'eq'  => [
        [4 => 2]
      ],
      'yx'  => [
        [4 => 1]
      ],
    ];
  }
}
$roll = new roll();
$res = $roll->lottery();
echo '<h3>骰子點數:</h3>';
echo '<p>';
foreach($res['dice'] as $val){
  echo '<img src="img.php?num='.$val.'" >';
}
echo '</p>';
echo '<h3>結果:</h3>';
echo '<h3 >'.$res['rankName'].'</h3>';

其中img.php是使用php生成圖片的文件,參數num是點數,然后輸出相應點數的圖片,代碼如下:

<?php
class imgDock
{
  public function getImg($num = 0)
  {
    if(!empty($num)){
      header('Content-Type:image/png');
      $img  = imagecreatetruecolor(200, 200);
      $white = imagecolorallocate($img, 255, 255, 255);
      $grey = imagecolorallocate($img, 100, 100, 100);
      $blue = imagecolorallocate($img, 0, 102, 255);
      $red  = imagecolorallocate($img, 255, 0, 0);
      imagefill($img, 0, 0, $white);
      imageline($img, 10, 20, 10, 180, $grey);
      imageline($img, 10, 180, 20, 190, $grey);
      imageline($img, 20, 190, 180, 190, $grey);
      imageline($img, 180, 190, 190, 180, $grey);
      imageline($img, 190, 180, 190, 20, $grey);
      imageline($img, 190, 20, 180, 10, $grey);
      imageline($img, 180, 10, 20, 10, $grey);
      imageline($img, 20, 10, 10, 20, $grey);
      //1/2/3/4/5/6
      switch($num){
        case 1:
          imagefilledarc($img, 100, 100, 50, 50, 0, 0, $blue, IMG_ARC_PIE);
          break;
        case 2:
          imagefilledarc($img, 60, 100, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          imagefilledarc($img, 140, 100, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          break;
        case 3:
          imagefilledarc($img, 50, 50, 40, 40, 0, 0 , $blue, IMG_ARC_PIE);
          imagefilledarc($img, 100, 100, 40, 40, 0, 0 , $blue, IMG_ARC_PIE);
          imagefilledarc($img, 150, 150, 40, 40, 0, 0 , $blue, IMG_ARC_PIE);
          break;
        case 4:
          imagefilledarc($img, 50, 50, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          imagefilledarc($img, 50, 150, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          imagefilledarc($img, 150, 150, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          imagefilledarc($img, 150, 50, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          break;
        case 5:
          imagefilledarc($img, 50, 50, 40, 40, 0, 0 , $blue, IMG_ARC_PIE);
          imagefilledarc($img, 50, 150, 40, 40, 0, 0 , $blue, IMG_ARC_PIE);
          imagefilledarc($img, 100, 100, 40, 40, 0, 0 , $blue, IMG_ARC_PIE);
          imagefilledarc($img, 150, 150, 40, 40, 0, 0 , $blue, IMG_ARC_PIE);
          imagefilledarc($img, 150, 50, 40, 40, 0, 0 , $blue, IMG_ARC_PIE);
          break;
        case 6:
          imagefilledarc($img, 50, 50, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          imagefilledarc($img, 50, 150, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          imagefilledarc($img, 100, 50, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          imagefilledarc($img, 100, 150, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          imagefilledarc($img, 150, 150, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          imagefilledarc($img, 150, 50, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          break;
        default:
          break;
      }
      imagepng($img);
      imagedestroy($img);
    }
  }
}
$num = 0;
if(isset($_GET['num'])){
  $num = intval($_GET['num']);
}
$imgDock = new imgDock();
$imgDock->getImg($num);

下面是我抽中狀元的效果圖,O(∩_∩)O哈哈~

php如何實現中秋博餅游戲之擲骰子并輸出結果功能

以上是“php如何實現中秋博餅游戲之擲骰子并輸出結果功能”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

玛多县| 手游| 聂拉木县| 肃宁县| 南汇区| 辽宁省| 桦川县| 青冈县| 左权县| 大荔县| 平原县| 饶阳县| 荣昌县| 出国| 泾阳县| 池州市| 凯里市| 东丽区| 玉树县| 科技| 措勤县| 颍上县| 汝州市| 祁连县| 乌海市| 双鸭山市| 集贤县| 黑龙江省| 济源市| 平舆县| 肇州县| 任丘市| 改则县| 隆回县| 古交市| 水富县| 永州市| 兰溪市| 邻水| 东乌珠穆沁旗| 宜川县|