本文整理汇总了C#中System.Text.RegularExpressions.Group.FindNextFreeSlot方法的典型用法代码示例。如果您正苦于以下问题:C# Group.FindNextFreeSlot方法的具体用法?C# Group.FindNextFreeSlot怎么用?C# Group.FindNextFreeSlot使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Text.RegularExpressions.Group
的用法示例。
在下文中一共展示了Group.FindNextFreeSlot方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Shuffled
public void Shuffled(Group group, int[] card, short[] pos)
{
// Check the args
if (card.Length != pos.Length)
{
Program.TraceWarning("[Shuffled] Cards and positions lengths don't match.");
return;
}
group.filledShuffleSlots += card.Length;
if (group.filledShuffleSlots > group.Count)
{
Program.TraceWarning("[Shuffled] Too many card positions received.");
return;
}
// If it's the first packet we receive for this shuffle, clear all Types
if (!group.hasReceivedFirstShuffledMessage)
foreach (Card c in group) c.Type = null;
group.hasReceivedFirstShuffledMessage = true;
// Check that the server didn't change our positions
if (card[0] >> 16 == Player.LocalPlayer.Id && group.myShufflePos != null)
{
for (int i = 0; i < pos.Length; i++)
if (pos[i] != group.myShufflePos[i])
{
Program.TraceWarning("[Shuffled] The server has changed the order of the cards.");
break;
}
group.myShufflePos = null;
}
// Insert the cards
for (int j = 0; j < card.Length; j++)
{
// Get the wished position
int i = pos[j];
// Get the card
CardIdentity ci = CardIdentity.Find(card[j]);
if (ci == null)
{
Program.TraceWarning("[Shuffled] Card not found.");
continue;
}
// Check if the slot is free, otherwise choose the first free one
if (group[i].Type != null) i = group.FindNextFreeSlot(i);
// Set the type
group[i].Type = ci;
group[i].SetVisibility(ci.visible ? GroupVisibility.Everybody : GroupVisibility.Nobody, null);
}
if (group.filledShuffleSlots == group.Count)
group.OnShuffled();
}