本文整理匯總了C#中Portfish.Position.from_fen方法的典型用法代碼示例。如果您正苦於以下問題:C# Position.from_fen方法的具體用法?C# Position.from_fen怎麽用?C# Position.from_fen使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Portfish.Position
的用法示例。
在下文中一共展示了Position.from_fen方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: set_position
// set_position() is called when engine receives the "position" UCI
// command. The function sets up the position described in the given
// fen string ("fen") or the starting position ("startpos") and then
// makes the moves given in the following move list ("moves").
internal static void set_position(Position pos, Stack<string> stack)
{
Move m;
string token, fen = string.Empty;
token = stack.Pop();
if (token == "startpos")
{
fen = StartFEN;
if (stack.Count > 0) { token = stack.Pop(); } // Consume "moves" token if any
}
else if (token == "fen")
while ((stack.Count > 0) && (token = stack.Pop()) != "moves")
fen += token + " ";
else
return;
pos.from_fen(fen, bool.Parse(OptionMap.Instance["UCI_Chess960"].v), Threads.main_thread());
// Parse move list (if any)
while ((stack.Count > 0) && (m = Utils.move_from_uci(pos, token = stack.Pop())) != MoveC.MOVE_NONE)
{
pos.do_move(m, StateRingBuf[SetupStatePos]);
// Increment pointer to StateRingBuf circular buffer
SetupStatePos = (SetupStatePos + 1) % 102;
}
}