本文整理汇总了PHP中CR3DCQuery::CheckFiftyMoveRule方法的典型用法代码示例。如果您正苦于以下问题:PHP CR3DCQuery::CheckFiftyMoveRule方法的具体用法?PHP CR3DCQuery::CheckFiftyMoveRule怎么用?PHP CR3DCQuery::CheckFiftyMoveRule使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CR3DCQuery
的用法示例。
在下文中一共展示了CR3DCQuery::CheckFiftyMoveRule方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: unset
echo "</RESPONSE>\n";
}
}
$oR3DCQuery->Close();
unset($oR3DCQuery);
} else {
echo "<RESPONSE>\n";
echo "<MOVE>false</MOVE>\n";
echo "</RESPONSE>\n";
}
/////////////////////////////////////////////////////////////////////////////////
//50 move rule
/////////////////////////////////////////////////////////////////////////////////
//Instantiate theCR3DCQuery Class
$oR3DCQuery = new CR3DCQuery($config);
$amoves = $oR3DCQuery->CheckFiftyMoveRule($config, $_GET['gameid']);
if ($amoves[0] == 50 && $amoves[1] == 50 && $_GET['gameid'] != "") {
$initiator = "";
$w_player_id = "";
$b_player_id = "";
$status = "";
$completion_status = "";
$start_time = "";
$next_move = "";
$oR3DCQuery->GetGameInfoByRef($config, $_GET['gameid'], $initiator, $w_player_id, $b_player_id, $status, $completion_status, $start_time, $next_move);
///////////////////////////////////////////////////////////////////////
//ELO Point Calculation
if ($oR3DCQuery->ELOIsActive() && $oR3DCQuery->IsGameRated($_GET['gameid'])) {
$bcurpoints = $oR3DCQuery->ELOGetRating($b_player_id);
$wcurpoints = $oR3DCQuery->ELOGetRating($w_player_id);
//Calculate black player
示例2:
$oR3DCQuery->ELOUpdateRating($w_player_id, $wnewpoints);
}
///////////////////////////////////////////////////////////////////////
$oR3DCQuery->UpdateGameStatus($config, $gid, "C", "D");
$bmove_error = false;
$oR3DCQuery->CachePlayerPointsByPlayerID($b_player_id);
$oR3DCQuery->CachePlayerPointsByPlayerID($w_player_id);
}
}
}
}
}
/////////////////////////////////////////////////////////////////////////////////
//50 move rule
/////////////////////////////////////////////////////////////////////////////////
$amoves = $oR3DCQuery->CheckFiftyMoveRule($config, $gid);
if ($amoves[0] == 50 && $amoves[1] == 50 && $gid != "") {
$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);
///////////////////////////////////////////////////////////////////////
//ELO Point Calculation
if ($oR3DCQuery->ELOIsActive() && $oR3DCQuery->IsGameRated($gid)) {
$bcurpoints = $oR3DCQuery->ELOGetRating($b_player_id);
$wcurpoints = $oR3DCQuery->ELOGetRating($w_player_id);
//Calculate black player