本文整理汇总了C#中ZyGames.Doudizhu.Model.TableData类的典型用法代码示例。如果您正苦于以下问题:C# TableData类的具体用法?C# TableData怎么用?C# TableData使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TableData类属于ZyGames.Doudizhu.Model命名空间,在下文中一共展示了TableData类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。
示例1: GetUserList
/// <summary>
/// 通知玩家,机器人不通知
/// </summary>
/// <param name="tableData"></param>
/// <param name="ignoreUserId"></param>
/// <param name="ignoreAI"></param>
/// <returns></returns>
public static List<GameUser> GetUserList(TableData tableData, int ignoreUserId = 0, bool ignoreAI = true)
{
var userList = new List<GameUser>();
var cacheSet = new GameDataCacheSet<GameUser>();
foreach (var pos in tableData.Positions)
{
if (ignoreAI && pos.IsAI && pos.UserId < 1000)
{
continue;
}
GameUser user = cacheSet.FindKey(pos.UserId.ToString());
if (user != null && user.UserId != ignoreUserId)
{
userList.Add(user);
}
}
return userList;
}
开发者ID:qiuhe,项目名称:Scut,代码行数:25,代码来源:ClientNotifier.cs
示例2: SetTablePosition
/// <summary>
/// 桌子占位
/// </summary>
/// <param name="table"></param>
/// <param name="pos"></param>
/// <param name="user"></param>
/// <param name="roomId"></param>
private static void SetTablePosition(int roomId, TableData table, PositionData pos, GameUser user)
{
pos.Init(user);
user.Property.InitTablePos(roomId, table.TableId, pos.Id);
}
开发者ID:kehaoran74,项目名称:Scut,代码行数:12,代码来源:GameTable.cs
示例3: SyncNotifyAction
public void SyncNotifyAction(int actionId, TableData table, Parameters parameters, Action<int> callback)
{
SyncNotifyAction(actionId, ClientNotifier.GetUserList(table), parameters, callback);
}
开发者ID:kehaoran74,项目名称:Scut,代码行数:4,代码来源:GameTable.cs
示例4: ShowCard
/// <summary>
/// 明牌
/// </summary>
/// <param name="user"></param>
/// <param name="tableData"></param>
public void ShowCard(GameUser user, TableData tableData)
{
var pos = GetUserPosition(user, tableData);
if (pos != null && pos.IsLandlord && !tableData.IsShow)
{
tableData.DoDouble();
pos.IsShow = true;
tableData.IsShow = true;
SyncNotifyAction(ActionIDDefine.Cst_Action2008, tableData, null, null);
TraceLog.WriteComplement("桌子:{0}玩家{1}明牌通知成功", tableData.TableId, user.UserId);
}
}
开发者ID:kehaoran74,项目名称:Scut,代码行数:18,代码来源:GameTable.cs
示例5: SetBackCard
/// <summary>
/// 设置最后三张为底牌
/// </summary>
/// <param name="tableData"></param>
/// <param name="backNum">底牌数</param>
private void SetBackCard(TableData tableData, int backNum)
{
int index = tableData.CardData.Count - backNum;
var list = tableData.CardData.GetRange(index, backNum);
if (list.Count > 0)
{
tableData.BackCardData.AddRange(list);
}
}
开发者ID:kehaoran74,项目名称:Scut,代码行数:14,代码来源:GameTable.cs
示例6: CallCard
/// <summary>
/// 叫地主
/// </summary>
/// <param name="positionId"></param>
/// <param name="tableData"></param>
/// <param name="isCall">true:叫,false:不叫</param>
public void CallCard(int positionId, TableData tableData, bool isCall)
{
if (positionId != tableData.CallLandlordPos)
{
TraceLog.WriteComplement("桌子:{0}未轮到位置{1}叫地主", tableData.TableId, positionId);
return;
}
if (tableData.CallTimes < tableData.CallOperation.Length)
{
if (isCall)
{
tableData.DoDouble();
TraceLog.WriteComplement("桌子:{0}叫地主加倍{1}", tableData.TableId, tableData.MultipleNum);
}
tableData.CallOperation[tableData.CallTimes] = isCall;
tableData.CallTimes++;
}
if (tableData.CallTimes > tableData.PlayerNum - 1 &&
!Array.Exists(tableData.CallOperation, op => op))
{
//都不叫时重新发牌接口
TraceLog.WriteComplement("桌子:{0}重新发牌,CallTimes:{1},Log:{2}", tableData.TableId, tableData.CallTimes, string.Join(",", tableData.CallOperation));
CheckStart(tableData);
return;
}
int noCallNum = 0;
int calledNum = 0;
int preCallIndex = 0;//上次操作的索引
//计算叫地主记录中,不叫次数
int endIndex = tableData.CallTimes - 1;
for (int i = endIndex; i >= 0; i--)
{
bool called = tableData.CallOperation[i];
if (!called)
{
noCallNum++;
}
else
{
calledNum++;
}
if (called && calledNum == 1)
{
preCallIndex = i;
}
}
TraceLog.WriteComplement("桌子:{0}位置:{1},前一个:{2},最后一个:{3}叫地主", tableData.TableId, positionId, preCallIndex, endIndex);
if ((tableData.CallTimes == tableData.PlayerNum && noCallNum == tableData.PlayerNum - 1) ||
tableData.CallTimes > tableData.PlayerNum)
{
int index = endIndex - preCallIndex;
index = (positionId + tableData.PlayerNum - index) % tableData.PlayerNum;
PositionData pos = index >= 0 && index < tableData.Positions.Length ? tableData.Positions[index] : null;
if (pos != null)
{
//确定地主
pos.IsLandlord = true;
tableData.LandlordPos = pos.Id;
tableData.LandlordId = pos.UserId;
tableData.IsCallEnd = true;
tableData.OutCardPos = pos.Id;
tableData.OutCardUserId = pos.UserId;
//增加底牌
pos.CardData.AddRange(tableData.BackCardData);
_cardRole.SortCard(pos.CardData);
}
}
else
{
//取下个叫地主玩家
int nextPos = (positionId + 1) % tableData.PlayerNum;
PositionData pos = tableData.Positions[nextPos];
if (pos != null)
{
tableData.CallLandlordPos = pos.Id;
tableData.CallLandlordId = pos.UserId;
tableData.CallLandlordName = pos.NickName;
}
}
var param = new Parameters();
param.Add("IsCall", isCall ? 1 : 0);
param.Add("IsRob", (calledNum == 1 && isCall) || calledNum == 0 ? 0 : 1);
SyncNotifyAction(ActionIDDefine.Cst_Action2006, tableData, param, null);
TraceLog.WriteComplement("桌子:{0}叫地主通知成功,地主是:{1},是否结束{2}",
tableData.TableId,
tableData.IsCallEnd ? (tableData.LandlordId + "") : (tableData.CallLandlordId + tableData.CallLandlordName),
tableData.IsCallEnd);
}
开发者ID:kehaoran74,项目名称:Scut,代码行数:96,代码来源:GameTable.cs
示例7: DoOutCardEnd
/// <summary>
/// 出牌结束,并结算积分
/// </summary>
/// <param name="tableData"></param>
private void DoOutCardEnd(TableData tableData)
{
int count = (tableData.CardData.Count - TableData.CardBackNum) / tableData.PlayerNum;
int landCount = count + TableData.CardBackNum - 1;//地主只出一张
int[] cardNums = new int[tableData.Positions.Length];
int landIndex = 0;
int index = 0;
int noOutNum = 0;
List<PositionData> posList = new List<PositionData>();
foreach (PositionData position in tableData.Positions)
{
if (position.IsLandlord)
{
landIndex = index;
}
else
{
posList.Add(position);
}
if (position.CardData.Count == count)
{
noOutNum++;
}
cardNums[index] = position.CardData.Count;
index++;
}
//春天判断
if ((tableData.IsLandlordWin && noOutNum == 2) ||
(!tableData.IsLandlordWin && cardNums[landIndex] == landCount))
{
tableData.DoDouble();
}
var pos = tableData.Positions[landIndex];
DoSettlement(tableData, tableData.IsLandlordWin, pos, posList);
}
开发者ID:kehaoran74,项目名称:Scut,代码行数:39,代码来源:GameTable.cs
示例8: CreateCardData
/// <summary>
/// 创建一副牌数据
/// </summary>
/// <param name="tableData"></param>
/// <param name="pokers"></param>
private void CreateCardData(TableData tableData, List<PokerInfo> pokers)
{
if (pokers == null) throw new ArgumentNullException("pokers");
foreach (var pokerInfo in pokers)
{
tableData.CardData.Add(pokerInfo.Id);
}
}
开发者ID:kehaoran74,项目名称:Scut,代码行数:13,代码来源:GameTable.cs
示例9: GetUserPosition
public PositionData GetUserPosition(int positionId, TableData tableData)
{
if (positionId < tableData.Positions.Length)
{
PositionData pos = tableData.Positions[positionId];
return pos;
}
return null;
}
开发者ID:kehaoran74,项目名称:Scut,代码行数:9,代码来源:GameTable.cs
示例10: GetUserCardData
/// <summary>
/// 获取玩家手上的牌,并自动整理牌从大到小排列
/// </summary>
/// <returns></returns>
public List<int> GetUserCardData(GameUser user, TableData tableData, bool isSort = true)
{
var list = new List<int>();
var pos = GetUserPosition(user, tableData);
if (pos != null)
{
if (pos.CardData.Count > 0)
{
list.AddRange(pos.CardData);
if (isSort)
{
_cardRole.SortCard(pos.CardData);
}
}
}
return list;
}
开发者ID:kehaoran74,项目名称:Scut,代码行数:21,代码来源:GameTable.cs
示例11: GetLandlordCardData
public List<int> GetLandlordCardData(TableData tableData)
{
int postionId = tableData.LandlordPos;
var list = new List<int>();
var pos = GetUserPosition(postionId, tableData);
if (pos != null)
{
if (pos.CardData.Count > 0)
{
list.AddRange(pos.CardData);
_cardRole.SortCard(pos.CardData);
}
}
return list;
}
开发者ID:kehaoran74,项目名称:Scut,代码行数:15,代码来源:GameTable.cs
示例12: ExitTablePosition
/// <summary>
/// 离开桌位
/// </summary>
/// <param name="user"></param>
/// <param name="table"></param>
public void ExitTablePosition(GameUser user, TableData table)
{
if (table.IsFlee)
{
return;
}
foreach (var pos in table.Positions)
{
if (pos.Id == user.Property.PositionId)
{
CheckFlee(user, table, pos);
break;
}
}
}
开发者ID:kehaoran74,项目名称:Scut,代码行数:20,代码来源:GameTable.cs
示例13: DoOutCard
/// <summary>
/// 出牌
/// </summary>
/// <param name="userId"></param>
/// <param name="positionId"></param>
/// <param name="tableData"></param>
/// <param name="cardsStr"></param>
/// <param name="errorCode">0:正常,1:不合规则,2:不存在牌,3:离开桌位</param>
public bool DoOutCard(int userId, int positionId, TableData tableData, string cardsStr, out int errorCode)
{
errorCode = 0;
int[] cards = new int[0];
if (!string.IsNullOrEmpty(cardsStr.Trim()))
{
string[] tempArray = cardsStr.Split(new char[] { ',' });
List<int> tempList = new List<int>();
for (int i = 0; i < tempArray.Length; i++)
{
if (!string.IsNullOrEmpty(tempArray[i]))
{
tempList.Add(tempArray[i].ToInt());
}
}
cards = tempList.ToArray();
}
var pos = GetUserPosition(positionId, tableData);
if (pos == null)
{
errorCode = 3;
return false;
}
if (!CheckCardEffective(pos.CardData, cards))
{
errorCode = 2;
TraceLog.WriteComplement("桌子:{0}玩家{0}出牌{1}不在手中的牌内", tableData.TableId, userId, cardsStr);
return false;
}
int cardSize;
var cardType = _cardRole.GetCardType(cards, out cardSize);
if (cardType == DeckType.Error)
{
errorCode = 1;
TraceLog.WriteComplement("桌子:{0}玩家{0}出牌{1}不合规则", tableData.TableId, userId, cardsStr);
return false;
}
if (cardType == DeckType.None && CheckOutCardNoneType(tableData))
{
//多次循环不出牌,则结束
tableData.StopTimer();
var param = new Parameters();
param.Add("FleeUserId", 0);
SyncNotifyAction(ActionIDDefine.Cst_Action2013, tableData, param,
c =>
{
//Console.WriteLine("Table:{0} is stop", tableData.TableId);
DoComplatedSettlement(tableData);
TraceLog.WriteError("桌子{0}多次连续不出牌并强制退出桌位", tableData.TableId);
});
errorCode = 3;
return true;
}
CardData cardData = new CardData(userId, positionId);
cardData.Cards = cards;
cardData.Type = cardType;
cardData.CardSize = cardSize;
if (tableData.PreCardData != null)
{
//压牌
CardData tempData = tableData.PreCardData;
if (cardData.Type != DeckType.None &&
tempData.Type != DeckType.None &&
tempData.UserId != cardData.UserId &&
!_cardRole.EqualsCard(cardData, tempData))
{
errorCode = 1;
return false;
}
}
foreach (var card in cardData.Cards)
{
pos.CardData.Remove(card);
}
tableData.OutCardList.Add(cardData);
if (cardData.Type != DeckType.None)
{
tableData.PreCardData = cardData;
}
if (cardData.Type == DeckType.Bomb ||
cardData.Type == DeckType.WangBomb)
{
tableData.DoDouble();
}
if (pos.CardData.Count > 0)
{
int index = (pos.Id + 1) % tableData.PlayerNum;
var nextPos = tableData.Positions[index];
tableData.OutCardPos = nextPos.Id;
//.........这里部分代码省略.........
开发者ID:kehaoran74,项目名称:Scut,代码行数:101,代码来源:GameTable.cs
示例14: CheckStart
/// <summary>
/// 检查是否开始
/// </summary>
/// <param name="tableData"></param>
public void CheckStart(TableData tableData)
{
bool started = !Array.Exists(tableData.Positions, pos => !pos.IsAI && pos.UserId == 0);
if (started)
{
TraceLog.WriteComplement("房间:{0},桌:{1}开始发牌...", tableData.RoomId, tableData.TableId);
foreach (var p in tableData.Positions)
{
p.ReSendCard();
}
tableData.Init();
//随机第一个开始叫地主
int index = RandomUtils.GetRandom(0, tableData.Positions.Length);
var pos = tableData.Positions[index];
tableData.CallLandlordPos = pos.Id;
tableData.CallLandlordId = pos.UserId;
tableData.CallLandlordName = pos.NickName;
TraceLog.WriteComplement("房间:{0},桌:{1}第一个开始叫地主{2}", tableData.RoomId, tableData.TableId, pos.Id + pos.NickName);
SendCard(tableData, TableData.CardBackNum);
SyncNotifyAction(ActionIDDefine.Cst_Action2004, tableData, null,
t =>
{
TraceLog.WriteComplement("桌子:{0}底牌:{1}", tableData.TableId, string.Join(",", tableData.BackCardData));
foreach (var p in tableData.Positions)
{
_cardRole.SortCard(p.CardData);
TraceLog.WriteComplement("桌子:{0}玩家{1}-{2}牌:{3}",
tableData.TableId, p.UserId, p.NickName, string.Join(",", p.CardData));
}
TraceLog.WriteComplement("房间:{0},桌:{1}发牌结束", tableData.RoomId, tableData.TableId);
});
}
}
开发者ID:kehaoran74,项目名称:Scut,代码行数:39,代码来源:GameTable.cs
示例15: CheckFlee
/// <summary>
/// 检查逃跑,并结束当局游戏,扣分两家平分
/// </summary>
/// <param name="user"></param>
/// <param name="table"></param>
/// <param name="userPos"></param>
private void CheckFlee(GameUser user, TableData table, PositionData userPos)
{
table.IsClosed = true;
if (table.IsStarting)
{
int multipleMinNum = ConfigEnvSet.GetInt("Game.FleeMultipleNum", 10);
PositionData pos = null;
List<PositionData> posList = new List<PositionData>();
//计算炸弹数量
foreach (PositionData position in table.Positions)
{
if (position.UserId == user.UserId)
{
pos = position;
}
else
{
posList.Add(position);
}
var obj = _cardRole.ParseCardGroup(position.CardData.ToArray());
for (int i = 0; i < obj.Count; i++)
{
var item = obj.GetSame(i);
if (item.Length == 4 || (item.Length == 2 && _cardRole.GetCardSize(item[0]) > (int)CardSize.C_2))
{
table.DoDouble();
}
}
}
table.IsFlee = true;
if (table.MultipleNum < multipleMinNum)
{
table.SetDouble(multipleMinNum);
}
DoSettlement(table, false, pos, posList);
var param = new Parameters();
param.Add("FleeUserId", user.UserId);
var userList = ClientNotifier.GetUserList(table, user.UserId);
SyncNotifyAction(ActionIDDefine.Cst_Action2013, userList, param,
c =>
{
DoComplatedSettlement(table);
//
TraceLog.WriteComplement("桌子:{0}玩家{1}逃跑通知", table.TableId, user.UserId);
});
NotifyUserChange(user.UserId);
}
else
{
//还没有开始时,可以离开位置等待新玩家
user.Property.InitTablePos();
userPos.Init();
table.IsClosed = false;
int periodAiStart = ConfigEnvSet.GetInt("Game.Table.AIIntoTime", 5000);
table.ReStartTimer(periodAiStart);
var userList = ClientNotifier.GetUserList(table, user.UserId);
SyncNotifyAction(ActionIDDefine.Cst_Action2003, userList, null, null);
}
}
开发者ID:kehaoran74,项目名称:Scut,代码行数:66,代码来源:GameTable.cs
示例16: CheckOutCardNoneType
private bool CheckOutCardNoneType(TableData tableData)
{
if (tableData.OutCardList.Count > tableData.PlayerNum)
{
int noneNum = 0;
var list = tableData.OutCardList;
int count = tableData.OutCardList.Count - 1;
for (int i = 0; i <= tableData.PlayerNum; i++)
{
if (list[count - i].Type == DeckType.None)
{
noneNum++;
}
else
{
noneNum = 0;
}
}
return noneNum > tableData.PlayerNum;
}
return false;
}
开发者ID:kehaoran74,项目名称:Scut,代码行数:22,代码来源:GameTable.cs
示例17: OutCard
public bool OutCard(int userId, int positionId, TableData tableData, string cardsStr)
{
int errorCode;
return DoOutCard(userId, positionId, tableData, cardsStr, out errorCode);
}
开发者ID:kehaoran74,项目名称:Scut,代码行数:5,代码来源:GameTable.cs
示例18: DoComplatedSettlement
/// <summary>
/// 完成结算
/// </summary>
/// <param name="tableData"></param>
private void DoComplatedSettlement(TableData tableData)
{
//放入空桌池中RoomData roomData;
RoomData roomData = GetRoomData(tableData.RoomId);
if (roomData != null)
{
foreach (PositionData position in tableData.Positions)
{
var user = GetUser(position.UserId);
if (user != null)
{
user.Property.InitTablePos();
}
position.Init();
}
tableData.Init();
if (roomData.Tables.Remove(tableData.TableId))
{
//Console.WriteLine("Table:{0} is init", tableData.TableId);
int minTableCount = ConfigEnvSet.GetInt("Game.Table.MinTableCount", 10);
if (roomData.TablePool.Count < minTableCount)
{
roomData.TablePool.Enqueue(tableData);
}
else
{
tableData.Dispose();
}
return;
}
}
TraceLog.WriteError("TableData object {1} in {0} room has be disposed error.", tableData.RoomId, tableData.TableId);
}
开发者ID:kehaoran74,项目名称:Scut,代码行数:37,代码来源:GameTable.cs
示例19: ReStarTableTimer
/// <summary>
/// 出牌和叫地主时重置桌子定时
/// </summary>
public void ReStarTableTimer(TableData table)
{
int outcardPeroid = ConfigEnvSet.GetInt("Game.Table.AIOutCardTime", 5000);
table.ReStartTimer(outcardPeroid);
}
开发者ID:kehaoran74,项目名称:Scut,代码行数:8,代码来源:GameTable.cs
示例20: DoSettlement
/// <summary>
/// 结算积分
/// </summary>
/// <param name="tableData"></param>
/// <param name="isLandlordWin"></param>
/// <param name="landPos"></param>
/// <param name="posList"></param>
private void DoSettlement(TableData tableData, bool isLandlordWin, PositionData landPos, List<PositionData> posList)
{
//都有加积分
GameUser user;
if (isLandlordWin)
{
foreach (PositionData pos in posList)
{
user = GetUser(pos.UserId);
if (user != null)
{
pos.CoinNum = tableData.AnteNum / 2;
pos.ScoreNum = tableData.MultipleNum / 2;
pos.CoinNum = user.GameCoin > pos.CoinNum ? pos.CoinNum : user.GameCoin;
landPos.CoinNum += pos.CoinNum;
landPos.ScoreNum += pos.ScoreNum;
pos.ScoreNum = user.ScoreNum > pos.ScoreNum ? pos.ScoreNum : user.ScoreNum;
TraceLog.WriteComplement("桌子:{0}玩家(农):{1}败,结算:-{2}金豆,-{3}积分,之前剩余:{4}-{5}",
tableData.TableId, user.UserId, pos.CoinNum, pos.ScoreNum, user.GameCoin, user.ScoreNum);
user.GameCoin = MathUtils.Subtraction(user.GameCoin, pos.CoinNum);
user.ScoreNum = MathUtils.Subtraction(user.ScoreNum, pos.ScoreNum);
user.FailNum = MathUtils.Addition(user.FailNum, 1);
}
else
{
landPos.CoinNum += tableData.AnteNum / 2;
landPos.ScoreNum += tableData.MultipleNum / 2;
}
}
user = GetUser(landPos.UserId);
if (user != null)
{
TraceLog.WriteComplement("桌子:{0}玩家(主):{1}胜,结算:+{2}金豆,+{3}积分,之前剩余:{4}-{5}",
tableData.TableId, user.UserId, landPos.CoinNum, landPos.ScoreNum, user.GameCoin, user.ScoreNum);
user.GameCoin = MathUtils.Addition(user.GameCoin, landPos.CoinNum);
user.ScoreNum = MathUtils.Addition(user.ScoreNum, landPos.ScoreNum);
user.WinNum = MathUtils.Addition(user.WinNum, 1);
AchieveTask.SaveUserTask(user.UserId.ToString(), TaskClass.HuanLe, 1);
AchieveTask.SaveUserTask(user.UserId.ToString(), TaskClass.HuanLeJiFen, landPos.ScoreNum);
}
}
else
{
user = GetUser(landPos.UserId);
if (user != null)
{
landPos.CoinNum = user.GameCoin > tableData.AnteNum ? tableData.AnteNum : user.GameCoin;
landPos.ScoreNum = tableData.MultipleNum;
TraceLog.WriteComplement("桌子:{0}玩家(主):{1}败,结算:-{2}金豆,-{3}积分,之前剩余:{4}-{5}",
tableData.TableId, user.UserId, landPos.CoinNum, landPos.ScoreNum, user.GameCoin, user.ScoreNum);
user.GameCoin = MathUtils.Subtraction(user.GameCoin, landPos.CoinNum);
user.ScoreNum = MathUtils.Subtraction(user.ScoreNum, user.ScoreNum > tableData.MultipleNum ? tableData.MultipleNum : user.ScoreNum);
user.FailNum = MathUtils.Addition(user.FailNum, 1);
}
else
{
landPos.CoinNum += tableData.AnteNum;
landPos.ScoreNum += tableData.MultipleNum;
}
foreach (PositionData pos in posList)
{
user = GetUser(pos.UserId);
if (user != null)
{
pos.CoinNum = landPos.CoinNum / 2;
pos.ScoreNum = landPos.ScoreNum / 2;
TraceLog.WriteComplement("桌子:{0}玩家(农):{1}胜,结算:+{2}金豆,+{3}积分,之前剩余:{4}-{5}",
tableData.TableId, user.UserId, pos.CoinNum, pos.ScoreNum, user.GameCoin, user.ScoreNum);
user.GameCoin = MathUtils.Addition(user.GameCoin, pos.CoinNum);
user.ScoreNum = MathUtils.Addition(user.ScoreNum, pos.ScoreNum);
user.WinNum = MathUtils.Addition(user.WinNum, 1);
AchieveTask.SaveUserTask(user.UserId.ToString(), TaskClass.HuanLe, 1);
AchieveTask.SaveUserTask(user.UserId.ToString(), TaskClass.HuanLeJiFen, pos.ScoreNum);
}
}
}
_userCacheSet.Update();
tableData.IsSettlemented = true;
//出牌记录
StringBuilder sb = new StringBuilder();
foreach (var card in tableData.OutCardList)
{
sb.AppendLine();
sb.AppendFormat("User:{0}\t->{1}", card.UserId, string.Join(",", card.Cards));
}
TraceLog.WriteComplement("房间:{0}桌子:{1}出牌记录:{2}", tableData.RoomId, tableData.TableId, sb);
}
开发者ID:kehaoran74,项目名称:Scut,代码行数:99,代码来源:GameTable.cs
注:本文中的ZyGames.Doudizhu.Model.TableData类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论