|
@@ -401,6 +401,15 @@ namespace ET
|
|
|
|
|
|
}
|
|
|
|
|
|
+ [Message(OuterMessage.G2C_ReadyPush)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class G2C_ReadyPush: ProtoObject, IActorMessage
|
|
|
+ {
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public RoomInfo info { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
[ResponseType(nameof(G2C_Kick))]
|
|
|
[Message(OuterMessage.C2G_Kick)]
|
|
|
[ProtoContract]
|
|
@@ -432,15 +441,182 @@ namespace ET
|
|
|
|
|
|
}
|
|
|
|
|
|
- [Message(OuterMessage.G2C_ReadySatrt)]
|
|
|
+ [Message(OuterMessage.G2C_ReadySatrtPush)]
|
|
|
[ProtoContract]
|
|
|
- public partial class G2C_ReadySatrt: ProtoObject, IActorMessage
|
|
|
+ public partial class G2C_ReadySatrtPush: ProtoObject, IActorMessage
|
|
|
{
|
|
|
[ProtoMember(1)]
|
|
|
public long ReadySatrtTime { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
+ [Message(OuterMessage.G2C_SatrtPush)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class G2C_SatrtPush: ProtoObject, IActorMessage
|
|
|
+ {
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public RoomInfo info { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterMessage.G2C_DrawCardPush)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class G2C_DrawCardPush: ProtoObject, IActorMessage
|
|
|
+ {
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public long PlayerId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public int DrawCardPos { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(3)]
|
|
|
+ public List<int> Acts { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(4)]
|
|
|
+ public List<ActInfo> ActInfo { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(5)]
|
|
|
+ public int DrawCardsNum { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(6)]
|
|
|
+ public int CardNum { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(7)]
|
|
|
+ public int DrawCard { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(8)]
|
|
|
+ public int Time { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [ResponseType(nameof(G2C_DisCard))]
|
|
|
+ [Message(OuterMessage.C2G_DisCard)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class C2G_DisCard: ProtoObject, IRequest
|
|
|
+ {
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterMessage.G2C_DisCard)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class G2C_DisCard: ProtoObject, IResponse
|
|
|
+ {
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public int Error { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(3)]
|
|
|
+ public string Message { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterMessage.G2C_DisCardPush)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class G2C_DisCardPush: ProtoObject, IActorMessage
|
|
|
+ {
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public long PlayerId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public int DisCardPos { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(3)]
|
|
|
+ public List<int> Acts { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(4)]
|
|
|
+ public List<ActInfo> ActInfo { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(5)]
|
|
|
+ public int DisCardsNum { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(6)]
|
|
|
+ public int DisCard { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(7)]
|
|
|
+ public int Time { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [ResponseType(nameof(G2C_Operation))]
|
|
|
+ [Message(OuterMessage.C2G_Operation)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class C2G_Operation: ProtoObject, IRequest
|
|
|
+ {
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public int OpType { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterMessage.G2C_Operation)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class G2C_Operation: ProtoObject, IResponse
|
|
|
+ {
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public int Error { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(3)]
|
|
|
+ public string Message { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterMessage.G2C_OperationPush)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class G2C_OperationPush: ProtoObject, IActorMessage
|
|
|
+ {
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public int OpType { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public long DisPlayerId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(3)]
|
|
|
+ public int Card { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(4)]
|
|
|
+ public int GangType { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(5)]
|
|
|
+ public long OpPlayerId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(6)]
|
|
|
+ public int OpPos { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(7)]
|
|
|
+ public int DisCardPos { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(8)]
|
|
|
+ public List<int> OpRemainCards { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(9)]
|
|
|
+ public int OpRemainCardsNum { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(10)]
|
|
|
+ public List<long> ClickHuId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(11)]
|
|
|
+ public List<int> Acts { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(12)]
|
|
|
+ public List<ActInfo> ActInfo { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(13)]
|
|
|
+ public int HuType { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(14)]
|
|
|
+ public int Time { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
[Message(OuterMessage.G2C_TestHotfixMessage)]
|
|
|
[ProtoContract]
|
|
|
public partial class G2C_TestHotfixMessage: ProtoObject, IMessage
|
|
@@ -530,13 +706,22 @@ namespace ET
|
|
|
public const ushort G2C_JoinRoom = 30027;
|
|
|
public const ushort C2G_Ready = 30028;
|
|
|
public const ushort G2C_Ready = 30029;
|
|
|
- public const ushort C2G_Kick = 30030;
|
|
|
- public const ushort G2C_Kick = 30031;
|
|
|
- public const ushort G2C_ReadySatrt = 30032;
|
|
|
- public const ushort G2C_TestHotfixMessage = 30033;
|
|
|
- public const ushort C2M_TransferMap = 30034;
|
|
|
- public const ushort M2C_TransferMap = 30035;
|
|
|
- public const ushort C2G_Benchmark = 30036;
|
|
|
- public const ushort G2C_Benchmark = 30037;
|
|
|
+ public const ushort G2C_ReadyPush = 30030;
|
|
|
+ public const ushort C2G_Kick = 30031;
|
|
|
+ public const ushort G2C_Kick = 30032;
|
|
|
+ public const ushort G2C_ReadySatrtPush = 30033;
|
|
|
+ public const ushort G2C_SatrtPush = 30034;
|
|
|
+ public const ushort G2C_DrawCardPush = 30035;
|
|
|
+ public const ushort C2G_DisCard = 30036;
|
|
|
+ public const ushort G2C_DisCard = 30037;
|
|
|
+ public const ushort G2C_DisCardPush = 30038;
|
|
|
+ public const ushort C2G_Operation = 30039;
|
|
|
+ public const ushort G2C_Operation = 30040;
|
|
|
+ public const ushort G2C_OperationPush = 30041;
|
|
|
+ public const ushort G2C_TestHotfixMessage = 30042;
|
|
|
+ public const ushort C2M_TransferMap = 30043;
|
|
|
+ public const ushort M2C_TransferMap = 30044;
|
|
|
+ public const ushort C2G_Benchmark = 30045;
|
|
|
+ public const ushort G2C_Benchmark = 30046;
|
|
|
}
|
|
|
}
|