本文整理汇总了C#中GameState.isEndofGame方法的典型用法代码示例。如果您正苦于以下问题:C# GameState.isEndofGame方法的具体用法?C# GameState.isEndofGame怎么用?C# GameState.isEndofGame使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GameState
的用法示例。
在下文中一共展示了GameState.isEndofGame方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: minimax
public static int minimax(GameState gameState, int depth)
{
if ( gameState.isEndofGame() || depth == 0)
{
return evaluate(gameState);
}
else {
int v;
List<GameState> successors = gameState.getSuccessors();
bool isMaxNode = successors[0].maxNode;
if (isMaxNode) // Max Mode
{
v = Int32.MinValue;
foreach ( GameState successor in successors )
{
v = Math.Max (v , minimax(successor,depth-1));
}
}
else // Min Mode
{
v = Int32.MaxValue;
foreach ( GameState successor in successors )
{
v = Math.Min (v , minimax(successor,depth-1));
}
}
return v;
}
}
示例2: minimaxWithPruning
public static int minimaxWithPruning(GameState gameState, int depth, int alpha, int beta)
{
if ( gameState.isEndofGame() || depth == 0)
{
return evaluate(gameState);
}
else
{
int v;
List<GameState> successors = gameState.getSuccessors();
bool isMaxNode = successors[0].maxNode;
if (isMaxNode) // Max Mode
{
v = Int32.MinValue;
foreach(GameState successor in successors)
{
v = Int32.MinValue;
alpha = Math.Max( v , minimaxWithPruning(successor, depth-1, alpha, beta));
if(beta <= alpha)
{break;}
}
}
else // min node
{
v = Int32.MaxValue;
foreach(GameState successor in successors)
{
v = Int32.MaxValue;
beta = Math.Min( v , minimaxWithPruning(successor, depth-1, alpha, beta));
if(beta <= alpha)
{break;}
}
}
return v;
}
}
示例3: moveGeneric
public GameState moveGeneric(Coordinate src, Coordinate direction)
{
GameState newState=null;
int player = getCell(src);
Coordinate dst = move(src,direction,player,false);
//Debug.Log (" ------------------ Move Generic :: Cell - "+ player + " line:" + src.getLine() + " , column:"+src.getColumn()+" , dst: " + dst);
if ( dst != null )
{
newState = new GameState( (Board) this );
newState.turn = this.turn;
newState.switchMaxNode();
if (!newState.moveStone(src,dst,player) )
return null;
newState.setEndGame( newState.isEndofGame() );
//Debug.Log(newState.ToString());
}
return newState;
}