本文整理汇总了C#中GameState.GetCurrentPlayer方法的典型用法代码示例。如果您正苦于以下问题:C# GameState.GetCurrentPlayer方法的具体用法?C# GameState.GetCurrentPlayer怎么用?C# GameState.GetCurrentPlayer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GameState
的用法示例。
在下文中一共展示了GameState.GetCurrentPlayer方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: MakeADecision
/// <summary>
/// Mindig ad vissza valamit
/// </summary>
/// <param name="gameState"></param>
/// <returns></returns>
public int? MakeADecision(GameState gameState)
{
int? bet = null;
int valueToCall = gameState.GetValueToCall();
//ha túl kevés a pénz, akkor dobunk mindig
if (gameState.GetCurrentPlayer().Stack < StackLowerThreshold)
return valueToCall;
int decision = rnd.Next(100);
if (decision < 70)
{
//70% tartom
bet = valueToCall;
}
else
{
//25%
int raise = gameState.MinimumRaise;
bet = valueToCall + raise;
if (bet >= CallThreshold)
{
//ha all in lenne belőle, akkor inkább bedobjuk
bet = valueToCall;
}
}
return bet;
}
示例2: MakeADecision
public int? MakeADecision(GameState gameState)
{
//csak, ha még nincsenek terített lapok
if (gameState.CommunityCards.FirstOrDefault() == null)
{
Card[] myCards = gameState.GetCurrentPlayer().HoleCards.ToArray();
if (myCards[0].Rank == myCards[1].Rank)
return 300;
else return null;
}
else return null;
}