Quellcode durchsuchen

【增加】提交一下协议和枚举

johnclot69 vor 2 Jahren
Ursprung
Commit
f2b4b1c0b1

+ 2 - 1
Config/Proto/BattleServerMsg_CS_40001.proto

@@ -1,11 +1,12 @@
 syntax = "proto3";
+package ET;
 
 //战斗服发给游戏服后,游戏服推送给客户端
 message BattleEventPush // IActorMessage
 {
   uint16 key = 1;
   bytes data = 2;
-} 
+}
 
 //客户端发送消息给战斗服,由游戏服转发
 message BattleEventPushToServer // IMessage

+ 46 - 6
Config/Proto/OuterMessage_C_10001.proto

@@ -104,11 +104,6 @@ message C2M_PathfindingResult // IActorLocationMessage
 	Unity.Mathematics.float3 Position = 2;
 }
 
-message C2M_Stop // IActorLocationMessage
-{
-	int32 RpcId = 1;
-}
-
 message M2C_PathfindingResult // IActorMessage
 {
 	int64 Id = 1;
@@ -116,6 +111,11 @@ message M2C_PathfindingResult // IActorMessage
 	repeated Unity.Mathematics.float3 Points = 3;
 }
 
+message C2M_Stop // IActorLocationMessage
+{
+	int32 RpcId = 1;
+}
+
 message M2C_Stop // IActorMessage
 {
 	int32 Error = 1;
@@ -188,7 +188,40 @@ message G2C_LoginGate // IResponse
 	int32 RpcId = 1;
 	int32 Error = 2;
 	string Message = 3;
-	ET.Player Player = 4;
+	repeated PlayerBasic Players = 4;	// 角色列表
+}
+
+//ResponseType G2C_CreatePlayer
+message C2G_CreatePlayer // IRequest
+{
+	int32 RpcId = 1;
+	int64 UserId = 2;
+	string Name = 3;  // 角色名称
+	int32 Pro = 4;	// 职业
+	int32 Sex = 5;	// 性别
+}
+
+message G2C_CreatePlayer // IResponse
+{
+	int32 RpcId = 1;
+	int32 Error = 2;
+	string Message = 3;
+	Player Player = 4;
+}
+
+//ResponseType G2C_BindPlayer
+message C2G_BindPlayer // IRequest
+{
+	int32 RpcId = 1;
+	int64 PlayerId = 2;
+}
+
+message G2C_BindPlayer // IResponse
+{
+	int32 RpcId = 1;
+	int32 Error = 2;
+	string Message = 3;
+	Player Player = 4;
 }
 
 message G2C_TestHotfixMessage // IMessage
@@ -236,3 +269,10 @@ message G2C_Benchmark // IResponse
 	int32 Error = 2;
 	string Message = 3;
 }
+
+message R2C_Disconnect // IActorMessage
+{
+	int32 RpcId = 1;
+	int32 Error = 2;
+	string Message = 3;
+}

+ 11 - 1
Config/Proto/PlayerProto_CS_30001.proto

@@ -1,7 +1,17 @@
 syntax = "proto3";
 package ET;
 
-message Player  
+message PlayerBasic
+{
+  string id = 1;
+  string uid = 2;
+  string name = 3;
+  int32 level = 4;
+  int64 exp = 5;
+  int64 gold = 6;
+}
+
+message Player
 {
   string id = 1;
   string uid = 2;

+ 110 - 19
DotNet/Model/Generate/Message/OuterMessage_C_10001.cs

@@ -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;
 	}
 }

+ 26 - 1
DotNet/Model/Generate/Message/PlayerProto_CS_30001.cs

@@ -3,6 +3,30 @@ using ProtoBuf;
 using System.Collections.Generic;
 namespace ET
 {
+	[Message(PlayerProto.PlayerBasic)]
+	[ProtoContract]
+	public partial class PlayerBasic: ProtoObject
+	{
+		[ProtoMember(1)]
+		public string id { get; set; }
+
+		[ProtoMember(2)]
+		public string uid { get; set; }
+
+		[ProtoMember(3)]
+		public string name { get; set; }
+
+		[ProtoMember(4)]
+		public int level { get; set; }
+
+		[ProtoMember(5)]
+		public long exp { get; set; }
+
+		[ProtoMember(6)]
+		public long gold { get; set; }
+
+	}
+
 	[Message(PlayerProto.Player)]
 	[ProtoContract]
 	public partial class Player: ProtoObject
@@ -47,6 +71,7 @@ namespace ET
 
 	public static class PlayerProto
 	{
-		 public const ushort Player = 30002;
+		 public const ushort PlayerBasic = 30002;
+		 public const ushort Player = 30003;
 	}
 }

+ 110 - 19
Unity/Assets/Scripts/Codes/Model/Client/Generate/Message/OuterMessage_C_10001.cs

@@ -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;
 	}
 }

+ 26 - 1
Unity/Assets/Scripts/Codes/Model/Client/Generate/Message/PlayerProto_CS_30001.cs

@@ -3,6 +3,30 @@ using ProtoBuf;
 using System.Collections.Generic;
 namespace ET
 {
+	[Message(PlayerProto.PlayerBasic)]
+	[ProtoContract]
+	public partial class PlayerBasic: ProtoObject
+	{
+		[ProtoMember(1)]
+		public string id { get; set; }
+
+		[ProtoMember(2)]
+		public string uid { get; set; }
+
+		[ProtoMember(3)]
+		public string name { get; set; }
+
+		[ProtoMember(4)]
+		public int level { get; set; }
+
+		[ProtoMember(5)]
+		public long exp { get; set; }
+
+		[ProtoMember(6)]
+		public long gold { get; set; }
+
+	}
+
 	[Message(PlayerProto.Player)]
 	[ProtoContract]
 	public partial class Player: ProtoObject
@@ -47,6 +71,7 @@ namespace ET
 
 	public static class PlayerProto
 	{
-		 public const ushort Player = 30002;
+		 public const ushort PlayerBasic = 30002;
+		 public const ushort Player = 30003;
 	}
 }

+ 23 - 0
Unity/Assets/Scripts/Codes/Model/Share/Const/PlayerProType.cs

@@ -0,0 +1,23 @@
+namespace ET
+{
+    /// <summary>
+    /// 职业类型
+    /// </summary>
+    public enum PlayerProType: byte
+    {
+        /** ALL **/
+        ALL = 0,
+        /** 通用 **/
+        COMMON = 0,
+        /** 苍刃 **/
+        CANG_LANG = 1,
+        /** 御剑 **/
+        YU_JIAN = 2,
+        /** 剑仙 **/
+        YI_XIAN = 3,
+        /** 神剑 **/
+        SHEN_JIAN = 4,
+        /** 道灵 **/
+        LI_NHU = 5,
+    }
+}

+ 11 - 0
Unity/Assets/Scripts/Codes/Model/Share/Const/SexType.cs

@@ -0,0 +1,11 @@
+namespace ET
+{
+    /// <summary>
+    /// 性别类型
+    /// </summary>
+    public enum SexType: byte
+    {
+        Man = 0,
+        Woman = 1,
+    }
+}