using System.Collections.Generic;
using System.Linq;
namespace ET.Server
{
///
/// Proto工具类
///
public static class ProtoHelper
{
///
/// 玩家信息转proto
///
///
///
public static PlayerInfo PlayerToProto(Player player)
{
return new PlayerInfo()
{
id = player.Id,
name = player.Name,
sex = player.Sex,
exp = player.Exp,
level = player.Level,
vip = 0
};
}
///
/// 房间信息转proto
///
///
///
/// 当前操作玩家
///
public static RoomInfo RoomToProto(Room room, Player player, Player opPlayer)
{
RoomInfo info = new ();
info.RoomId = room.RoomId;
info.Type = room.Type;
info.OwnerId = room.OwnerId;
HGHuangHuangComponent hgHuangHuangComponent = room.GetComponent();
if (hgHuangHuangComponent != null)
{
info.State = hgHuangHuangComponent.State;
info.Time = hgHuangHuangComponent.Time;
info.Rand1 = hgHuangHuangComponent.Rand[0];
info.Rand2 = hgHuangHuangComponent.Rand[1];
info.CardNum = hgHuangHuangComponent.CardList.Count;
info.OpId = opPlayer?.Id ?? -1;
info.OpPos = opPlayer?.Pos ?? -1;
info.CurDisCard = hgHuangHuangComponent.DisCard;
}
// 本人信息
info.MyInfo = PlayerInfoToProto(room, player, true);
// 其他玩家信息
info.OtherInfo = new List();
foreach (Player p in room.GetAllPlayers().Values.Where(p => p != null && p.Id != player.Id))
{
info.OtherInfo.Add(PlayerInfoToProto(room, p, false));
}
return info;
}
///
/// 房间玩家信息转proto
///
/// 玩家
/// 玩家
/// 是否本人
///
private static PlayerInfo PlayerInfoToProto(Room room, Player player, bool flag)
{
PlayerInfo info = new ();
info.id = player.Id;
info.name = player.Name;
info.sex = player.Sex;
info.exp = player.Exp;
info.level = player.Level;
info.vip = 0;
info.pos = player.Pos;
info.state = player.State;
info.isAuto = player.IsAuto;
info.cardInfo = new CardInfo();
if (flag)
{
info.cardInfo.RemainCards = new List(player.RemainCards);
HGHuangHuangComponent hgHuangHuangComponent = room.GetComponent();
if (hgHuangHuangComponent != null)
{
info.cardInfo.DrawCard = hgHuangHuangComponent.DrawCard;
}
info.cardInfo.Acts = player.Act.ToList();
info.cardInfo.ActInfo = new List();
if (player.ActInfo is { Count: > 0 })
{
foreach (Struct.Kezi kezi in player.ActInfo)
{
info.cardInfo.ActInfo.Add(new ActInfo(){Card = kezi.Card, Type = kezi.Type, PlayerId = kezi.PlayerId});
}
}
}
info.cardInfo.RemainCardsNum = player.RemainCards.Length;
info.cardInfo.DisCards = new List(player.DisCards);
info.cardInfo.UsedInfo = new List();
if (player.KeZi is {Count: > 0})
{
foreach (Struct.Kezi kezi in player.KeZi.Where(kezi => kezi != null))
{
info.cardInfo.UsedInfo.Add(new ActInfo(){Card = kezi.Card, Type = kezi.Type, PlayerId = kezi.PlayerId});
}
}
return info;
}
}
}