Example #1
0
 // acceptopenchallange
 // Params: action, sid, gameid
 ////////////////////////////////////////////////////////////////////////////////////////////
 case "acceptopenchallange":
     if (isSessionIDValid($config, $xsid)) {
         if ($_GET['gameid'] != "") {
             //Instantiate theCR3DCQuery Class
             $oR3DCQuery = new CR3DCQuery($config);
             $session = base64_decode($xsid);
             list($uniq, $player_id) = preg_split("/\\|/", $session);
             //Instantiate theCR3DCQuery Class
             $oR3DCQuery = new CR3DCQuery($config);
             $IsAccepted = $oR3DCQuery->CheckGameAccepted($config, $player_id, $_GET['gameid']);
             list($PlayerType, $status) = explode(" ", $IsAccepted, 2);
             if (($status == "waiting" || $status == "-") && $PlayerType == "o") {
                 $oR3DCQuery->AcceptOCGame($xsid, $_GET['gameid'], $player_id);
                 echo "<RESPONSE>\n";
                 echo "<ACCEPTGAME>";
                 echo "true";
                 echo "</ACCEPTGAME>\n";
                 echo "</RESPONSE>\n";
             } else {
                 echo "<RESPONSE>\n";
                 echo "<ACCEPTGAME>";
                 echo "false";
                 echo "</ACCEPTGAME>\n";
                 echo "</RESPONSE>\n";
             }
             $oR3DCQuery->Close();
             unset($oR3DCQuery);
         } else {
Example #2
0
            $oR3DCQuery->ELOCreateRatings();
        }
        $oR3DCQuery->MangeGameTimeOuts();
    }
}
///////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////
// Check if the game is not playable by the viewer
if (!$oR3DCQuery->IsGameControlsViewableByPlayer($gid, $_SESSION['id'])) {
    header('Location: ./chess_members.php');
}
//////////////////////////////////////////////
//Accept game
if ($cmdAccept != "" && $gid != "") {
    if ($cmdAccept == "OC") {
        $oR3DCQuery->AcceptOCGame($_SESSION['sid'], $gid, $_SESSION['id']);
    } else {
        $oR3DCQuery->AcceptGame($_SESSION['sid'], $gid, $_SESSION['id']);
    }
}
$cmdRevoke = $_GET['cmdRevoke'];
$brevoked = false;
//////////////////////////////////////////////
//Revoke game
if ($cmdRevoke != "" && $gid != "") {
    $oR3DCQuery->RevokeGame($gid, $_SESSION['id']);
    $brevoked = true;
}
$cmdRevokeChlng = $_GET['cmdRevokeChlng'];
if ($cmdRevokeChlng != "" && $gid != "") {
    $oR3DCQuery->RevokeGame2($gid, $_SESSION['id']);