-2

PHPで三目並べゲームを作成しています。

次のようなグリッド内の整数位置としてユーザーから値を取得します-

1 | 2 | 3
---|---|---
 4 | 5 | 6
---|---|---
 7 | 8 | 9

ユーザーが入力した値を CVS としてセッションに保存します。ユーザーが Ist 行 IInd 列と IInd 行 IInd 列に X を作成した場合と同様に、セッションの値は 2,5 になります。

ここでの主な問題は、コンピューターの O を 1 から 9 の間のランダムな位置として作成したい場合で、2 と 5 を含めないでください。

ユーザーが入力した値 (CVS 文字列としてセッション変数に保存されている) を含まない 1 から 9 までの乱数を作成するにはどうすればよいですか?

これまでのスクリプトは次のとおりです。

<?php
session_start();
?>
<html>
<head>
<title> Hello! </title>
<meta http-equiv='Content-Type' content='text/html; charset=UTF-8' />
<meta name='txtweb-appkey' content ='1205be63-8293-4c02-82ce-17c500075e80' />
</head>
<body>
<?php
if(!empty($_GET['user'])){
    $user=$_GET['user'];
    if($user=='x'||$user=='X'){$com='O';}
    if($user=='o'||$user=='O'||$user=='0'){$user='O';$com='X';}
    $user=strtoupper($user);
    echo 'U choose to play with ',$user;
    if(empty($_GET['move'])){
        echo '<br />Take ur keypad as grid & start playing by replying with grid number<br />E.g.: 4 for 2 row 1 column<br />';
    }
    $grid=array();
    $grid[0]=array('   ','   ','   ');
    $grid[1]=array('   ','   ','   ');
    $grid[2]=array('   ','   ','   ');
    if(!empty($_GET['move'])){
        $usermove=$_GET['move'];
        $s=$_SESSION['usermove'];
        $pos=strpos($usermove,$s);
        if(!($pos===false)){echo 'This position is not empty!!';exit();}
        $s=$_SESSION['commove'];
        $pos=strpos($usermove,$s);
        if(!($pos===false)){echo 'This position is not empty!!';exit();}
        if(!empty($_SESSION['usermove'])){$_SESSION['usermove']=$_SESSION['usermove'].','.$usermove;}
        else{$_SESSION['usermove']=$usermove;}
        $moves=explode(',',$_SESSION['usermove']);
        foreach($moves as $value){
            switch($value){
                case '1':$grid[0][0]=' '.$user.' ';
                    break;
                case '2':$grid[0][1]=' '.$user.' ';
                    break;
                case '3':$grid[0][2]=' '.$user.' ';
                    break;
                case '4':$grid[1][0]=' '.$user.' ';
                    break;
                case '5':$grid[1][1]=' '.$user.' ';
                    break;
                case '6':$grid[1][2]=' '.$user.' ';
                    break;
                case '7':$grid[2][0]=' '.$user.' ';
                    break;
                case '8':$grid[2][1]=' '.$user.' ';
                    break;
                case '9':$grid[2][2]=' '.$user.' ';
                    break;
            }
        }
        if(strlen($moves)==1){
            $ran=rand(2,9);
            if($ran==$moves[0]){
                $ran=$ran-1;
            }
        }
        else{
            $ran=rand(1,9);
            $i=0;
            while(in_array($ran,$_SESSION['usermove'])){
                $ran=rand(1,9);
                $i++;
                if($i>=9){$ran=12;break;}
            }
        }
        if(!empty($_SESSION['commove'])){$_SESSION['commove']=$_SESSION['commove'].','.$ran;}
        else{$_SESSION['commove']=$ran;}
        $cmoves=explode(',',$_SESSION['commove']);
        foreach($cmoves as $value){
            switch($value){
                case '1':$grid[0][0]=' '.$com.' ';
                    break;
                case '2':$grid[0][1]=' '.$com.' ';
                    break;
                case '3':$grid[0][2]=' '.$com.' ';
                    break;
                case '4':$grid[1][0]=' '.$com.' ';
                    break;
                case '5':$grid[1][1]=' '.$com.' ';
                    break;
                case '6':$grid[1][2]=' '.$com.' ';
                    break;
                case '7':$grid[2][0]=' '.$com.' ';
                    break;
                case '8':$grid[2][1]=' '.$com.' ';
                    break;
                case '9':$grid[2][2]=' '.$com.' ';
                    break;
            }
        }
    }
    echo '<br /><pre>';
    echo $grid[0][0],'|',$grid[0][1],'|',$grid[0][2],'<br />';
    echo '---|---|---<br />';
    echo $grid[1][0],'|',$grid[1][1],'|',$grid[1][2],'<br/>';
    echo '---|---|---<br />';
    echo $grid[2][0],'|',$grid[2][1],'|',$grid[2][2],'</pre><br />';
    echo '<form action="',$_SERVER['PHP_SELF'],'" method="get" class="txtweb-form">';
    echo 'Your option<input type="text" name="move" />';
    echo '<input type="hidden" name="user" value="',$user,'" />';
    echo '<input type="submit" value="send" /></form>';
    echo '</body></html>';
    exit();
}
$_SESSION['usermove']='';
$_SESSION['commove']='';
echo 'Wellcome, choose X or O<br/>';
echo '<form action="'.$_SERVER['PHP_SELF'].'" method="get" class="txtweb-form">';
echo 'X or O<input type="text" name="user" />';
echo '<input type="submit" value="choose" /></form>';
?>
</body>
</html>
4

2 に答える 2

2

すべての正当な位置 (この場合は 1,3,4,6,7,8,9) を含む配列を作成し、rand() を使用して、作成された配列内のランダムなインデックスを選択します。

于 2012-08-06T15:12:24.893 に答える
1

まず、値を (CSV 文字列ではなく) 配列に格納します。

$selected = array(2, 5);

値を CSV 文字列に格納する必要がある場合は、配列に変換します。

$selected = explode(',', $_SESSION['selected']);

次に、利用可能な選択肢の配列を作成します

$ticTacToe = array(1,2,3,4,5,6,7,8,9);
$available = array_diff($selected, $ticTacToe);

その中からランダムに選ぶ$available

$selected[] = $available[rand(0, count($available) - 1)];

最後に$selectedCSV、セッションで を更新します

$_SESSION['selected'] = implode(",", $selected);
于 2012-08-06T15:17:09.433 に答える