本文整理汇总了PHP中CR3DCQuery::ManageRealTimeGame方法的典型用法代码示例。如果您正苦于以下问题:PHP CR3DCQuery::ManageRealTimeGame方法的具体用法?PHP CR3DCQuery::ManageRealTimeGame怎么用?PHP CR3DCQuery::ManageRealTimeGame使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CR3DCQuery
的用法示例。
在下文中一共展示了CR3DCQuery::ManageRealTimeGame方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
}
$isexitrealtime = false;
$isdraw = $oR3DCQuery->IsRequestDraw($config, $gid, $isblack);
$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;
示例2:
<?php
////////////
//Instantiate theCR3DCQuery Class
$oR3DCQuery = new CR3DCQuery($config);
$isblack = $oR3DCQuery->IsPlayerBlack($config, $GID, $_SESSION['id']);
$isdraw = $oR3DCQuery->IsRequestDraw($config, $GID, $isblack);
$initiator = "";
$w_player_id = "";
$b_player_id = "";
$status = "";
$completion_status = "";
$start_time = "";
$next_move = "";
$oR3DCQuery->GetGameInfoByRef($config, $GID, $initiator, $w_player_id, $b_player_id, $status, $completion_status, $start_time, $next_move);
$oR3DCQuery->ManageRealTimeGame($config, $GID);
$isrealtime = $oR3DCQuery->IsRequestRealTime($config, $GID, $isblack);
if ($isrealtime == "IDS_REAL_TIME") {
//Refresh the game board
if ($_SESSION['RefreashGameOnlyOnce'] == "") {
echo "parent.frames['chessboard'].location='./chess_game2.php?gameid=" . $GID . "';";
$_SESSION['RefreashGameOnlyOnce'] = "1";
}
//////////////////
// Update player seconds
if ($oR3DCQuery->IsPlayersTurn($config, $_SESSION['id'], $GID) && $oR3DCQuery->IsTimedGameRestricted($GID)) {
$oR3DCQuery->UpdatePlayerTime($GID, $isblack, 10);
}
if ($completion_status == "I" && $oR3DCQuery->IsTimedGameRestricted($GID)) {
$oR3DCQuery->PlayerTimeConstreached($GID, $w_player_id, $b_player_id);
}