|
@@ -211,15 +211,6 @@ namespace ET
|
|
|
|
|
|
}
|
|
|
|
|
|
- [Message(OuterMessage.C2M_Stop)]
|
|
|
- [ProtoContract]
|
|
|
- public partial class C2M_Stop: ProtoObject, IActorLocationMessage
|
|
|
- {
|
|
|
- [ProtoMember(1)]
|
|
|
- public int RpcId { get; set; }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
[Message(OuterMessage.M2C_PathfindingResult)]
|
|
|
[ProtoContract]
|
|
|
public partial class M2C_PathfindingResult: ProtoObject, IActorMessage
|
|
@@ -235,6 +226,15 @@ namespace ET
|
|
|
|
|
|
}
|
|
|
|
|
|
+ [Message(OuterMessage.C2M_Stop)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class C2M_Stop: ProtoObject, IActorLocationMessage
|
|
|
+ {
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
[Message(OuterMessage.M2C_Stop)]
|
|
|
[ProtoContract]
|
|
|
public partial class M2C_Stop: ProtoObject, IActorMessage
|
|
@@ -385,7 +385,78 @@ namespace ET
|
|
|
public string Message { get; set; }
|
|
|
|
|
|
[ProtoMember(4)]
|
|
|
- public ET.Player Player { get; set; }
|
|
|
+ public List<PlayerBasic> Players { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [ResponseType(nameof(G2C_CreatePlayer))]
|
|
|
+ [Message(OuterMessage.C2G_CreatePlayer)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class C2G_CreatePlayer: ProtoObject, IRequest
|
|
|
+ {
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public long UserId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(3)]
|
|
|
+ public string Name { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(4)]
|
|
|
+ public int Pro { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(5)]
|
|
|
+ public int Sex { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterMessage.G2C_CreatePlayer)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class G2C_CreatePlayer: ProtoObject, IResponse
|
|
|
+ {
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public int Error { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(3)]
|
|
|
+ public string Message { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(4)]
|
|
|
+ public Player Player { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [ResponseType(nameof(G2C_BindPlayer))]
|
|
|
+ [Message(OuterMessage.C2G_BindPlayer)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class C2G_BindPlayer: ProtoObject, IRequest
|
|
|
+ {
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public long PlayerId { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterMessage.G2C_BindPlayer)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class G2C_BindPlayer: ProtoObject, IResponse
|
|
|
+ {
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public int Error { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(3)]
|
|
|
+ public string Message { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(4)]
|
|
|
+ public Player Player { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
@@ -479,6 +550,21 @@ namespace ET
|
|
|
|
|
|
}
|
|
|
|
|
|
+ [Message(OuterMessage.R2C_Disconnect)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class R2C_Disconnect: ProtoObject, IActorMessage
|
|
|
+ {
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public int Error { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(3)]
|
|
|
+ public string Message { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
public static class OuterMessage
|
|
|
{
|
|
|
public const ushort HttpGetRouterResponse = 10002;
|
|
@@ -496,8 +582,8 @@ namespace ET
|
|
|
public const ushort M2C_StartSceneChange = 10014;
|
|
|
public const ushort M2C_RemoveUnits = 10015;
|
|
|
public const ushort C2M_PathfindingResult = 10016;
|
|
|
- public const ushort C2M_Stop = 10017;
|
|
|
- public const ushort M2C_PathfindingResult = 10018;
|
|
|
+ public const ushort M2C_PathfindingResult = 10017;
|
|
|
+ public const ushort C2M_Stop = 10018;
|
|
|
public const ushort M2C_Stop = 10019;
|
|
|
public const ushort C2G_Ping = 10020;
|
|
|
public const ushort G2C_Ping = 10021;
|
|
@@ -508,12 +594,17 @@ namespace ET
|
|
|
public const ushort R2C_Login = 10026;
|
|
|
public const ushort C2G_LoginGate = 10027;
|
|
|
public const ushort G2C_LoginGate = 10028;
|
|
|
- public const ushort G2C_TestHotfixMessage = 10029;
|
|
|
- public const ushort C2M_TestRobotCase = 10030;
|
|
|
- public const ushort M2C_TestRobotCase = 10031;
|
|
|
- public const ushort C2M_TransferMap = 10032;
|
|
|
- public const ushort M2C_TransferMap = 10033;
|
|
|
- public const ushort C2G_Benchmark = 10034;
|
|
|
- public const ushort G2C_Benchmark = 10035;
|
|
|
+ public const ushort C2G_CreatePlayer = 10029;
|
|
|
+ public const ushort G2C_CreatePlayer = 10030;
|
|
|
+ public const ushort C2G_BindPlayer = 10031;
|
|
|
+ public const ushort G2C_BindPlayer = 10032;
|
|
|
+ public const ushort G2C_TestHotfixMessage = 10033;
|
|
|
+ public const ushort C2M_TestRobotCase = 10034;
|
|
|
+ public const ushort M2C_TestRobotCase = 10035;
|
|
|
+ public const ushort C2M_TransferMap = 10036;
|
|
|
+ public const ushort M2C_TransferMap = 10037;
|
|
|
+ public const ushort C2G_Benchmark = 10038;
|
|
|
+ public const ushort G2C_Benchmark = 10039;
|
|
|
+ public const ushort R2C_Disconnect = 10040;
|
|
|
}
|
|
|
}
|