本文整理匯總了PHP中CR3DCQuery::RealTimeGame方法的典型用法代碼示例。如果您正苦於以下問題:PHP CR3DCQuery::RealTimeGame方法的具體用法?PHP CR3DCQuery::RealTimeGame怎麽用?PHP CR3DCQuery::RealTimeGame使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CR3DCQuery
的用法示例。
在下文中一共展示了CR3DCQuery::RealTimeGame方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: list
// Params: action, sid, gameid
////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////
// switchrealtime
// Params: action, sid, gameid
////////////////////////////////////////////////////////////////////////////////////////////
case "switchrealtime":
if (isSessionIDValid($config, $xsid)) {
$session = base64_decode($xsid);
list($uniq, $player_id) = preg_split("/\\|/", $session);
if ($_GET['gameid'] != "") {
//Instantiate theCR3DCQuery Class
$oR3DCQuery = new CR3DCQuery($config);
$isblack = $oR3DCQuery->IsPlayerBlack($config, $_GET['gameid'], $player_id);
if ($isblack) {
$oR3DCQuery->RealTimeGame($config, $_GET['gameid'], "b");
} else {
$oR3DCQuery->RealTimeGame($config, $_GET['gameid'], "w");
}
$oR3DCQuery->Close();
unset($oR3DCQuery);
echo "<RESPONSE>\n";
echo "<SETRT>true</SETRT>\n";
echo "</RESPONSE>\n";
} else {
echo "<RESPONSE>\n";
echo "<SETRT>false</SETRT>\n";
echo "</RESPONSE>\n";
}
} else {
echo "<RESPONSE>\n";
示例2:
$cmdExitRealtime = $_GET['cmdExitRealtime'];
if ($cmdExitRealtime != "") {
$oR3DCQuery->ExitRealTimeGame($config, $gid);
$isexitrealtime = true;
$_SESSION['RealTimeDoOnce'] = 0;
}
$rtend = $_GET['rtend'];
if ($rtend == 1) {
$isexitrealtime = true;
$_SESSION['RealTimeDoOnce'] = 0;
}
$cmdSwitchRealtime = $_GET['cmdSwitchRealtime'];
$oR3DCQuery->ManageRealTimeGame($config, $gid);
if ($cmdSwitchRealtime != "") {
if ($isblack) {
$oR3DCQuery->RealTimeGame($config, $gid, "b");
} else {
$oR3DCQuery->RealTimeGame($config, $gid, "w");
}
}
$isrealtime = $oR3DCQuery->IsRequestRealTime($config, $gid, $isblack);
if ($txtChatMessage != "" && $cmdChat != "") {
if ($_SESSION['CHAT_MESSAGE'] != $txtChatMessage) {
$txtChatMessage = str_replace("\\'", "'", $txtChatMessage);
$txtChatMessage = str_replace("\\`", "'", $txtChatMessage);
$message = "<" . $_SESSION['user'] . "> " . $txtChatMessage;
$oR3DCQuery->SendGChat($ConfigFile, $gid, $message);
$_SESSION['CHAT_MESSAGE'] = $txtChatMessage;
}
}
?>