OuterMessage_C_10001.proto 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. syntax = "proto3";
  2. package ET;
  3. message HttpGetRouterResponse
  4. {
  5. repeated string Realms = 1;
  6. repeated string Routers = 2;
  7. }
  8. message RouterSync
  9. {
  10. uint32 ConnectId = 1;
  11. string Address = 2;
  12. }
  13. //ResponseType M2C_TestResponse
  14. message C2M_TestRequest // IActorLocationRequest
  15. {
  16. int32 RpcId = 1;
  17. string request = 2;
  18. }
  19. message M2C_TestResponse // IActorLocationResponse
  20. {
  21. int32 RpcId = 1;
  22. int32 Error = 2;
  23. string Message = 3;
  24. string response = 4;
  25. }
  26. //ResponseType Actor_TransferResponse
  27. message Actor_TransferRequest // IActorLocationRequest
  28. {
  29. int32 RpcId = 1;
  30. int32 MapIndex = 2;
  31. }
  32. message Actor_TransferResponse // IActorLocationResponse
  33. {
  34. int32 RpcId = 1;
  35. int32 Error = 2;
  36. string Message = 3;
  37. }
  38. //ResponseType G2C_EnterMap
  39. message C2G_EnterMap // IRequest
  40. {
  41. int32 RpcId = 1;
  42. }
  43. message G2C_EnterMap // IResponse
  44. {
  45. int32 RpcId = 1;
  46. int32 Error = 2;
  47. string Message = 3;
  48. // 自己unitId
  49. int64 MyId = 4;
  50. }
  51. message MoveInfo
  52. {
  53. repeated Unity.Mathematics.float3 Points = 1;
  54. Unity.Mathematics.quaternion Rotation = 2;
  55. int32 TurnSpeed = 3;
  56. }
  57. message IntKV
  58. {
  59. int32 Key = 1;
  60. int64 Value = 2;
  61. }
  62. message UnitInfo
  63. {
  64. int64 UnitId = 1;
  65. int32 ConfigId = 2;
  66. int32 Type = 3;
  67. Unity.Mathematics.float3 Position = 4;
  68. Unity.Mathematics.float3 Forward = 5;
  69. repeated IntKV KV = 6;
  70. MoveInfo MoveInfo = 7;
  71. }
  72. message M2C_CreateUnits // IActorMessage
  73. {
  74. repeated UnitInfo Units = 1;
  75. }
  76. message M2C_CreateMyUnit // IActorMessage
  77. {
  78. UnitInfo Unit = 1;
  79. }
  80. message M2C_StartSceneChange // IActorMessage
  81. {
  82. int64 SceneInstanceId = 1;
  83. string SceneName = 2;
  84. }
  85. message M2C_RemoveUnits // IActorMessage
  86. {
  87. repeated int64 Units = 2;
  88. }
  89. message C2M_PathfindingResult // IActorLocationMessage
  90. {
  91. int32 RpcId = 1;
  92. Unity.Mathematics.float3 Position = 2;
  93. }
  94. message C2M_Stop // IActorLocationMessage
  95. {
  96. int32 RpcId = 1;
  97. }
  98. message M2C_PathfindingResult // IActorMessage
  99. {
  100. int64 Id = 1;
  101. Unity.Mathematics.float3 Position = 2;
  102. repeated Unity.Mathematics.float3 Points = 3;
  103. }
  104. message M2C_Stop // IActorMessage
  105. {
  106. int32 Error = 1;
  107. int64 Id = 2;
  108. Unity.Mathematics.float3 Position = 3;
  109. Unity.Mathematics.quaternion Rotation = 4;
  110. }
  111. //ResponseType G2C_Ping
  112. message C2G_Ping // IRequest
  113. {
  114. int32 RpcId = 1;
  115. }
  116. message G2C_Ping // IResponse
  117. {
  118. int32 RpcId = 1;
  119. int32 Error = 2;
  120. string Message = 3;
  121. int64 Time = 4;
  122. }
  123. message G2C_Test // IMessage
  124. {
  125. }
  126. //ResponseType M2C_Reload
  127. message C2M_Reload // IRequest
  128. {
  129. int32 RpcId = 1;
  130. string Account = 2;
  131. string Password = 3;
  132. }
  133. message M2C_Reload // IResponse
  134. {
  135. int32 RpcId = 1;
  136. int32 Error = 2;
  137. string Message = 3;
  138. }
  139. //ResponseType R2C_Login
  140. message C2R_Login // IRequest
  141. {
  142. int32 RpcId = 1;
  143. string Account = 2; // 帐号
  144. string Password = 3; // 密码
  145. }
  146. message R2C_Login // IResponse
  147. {
  148. int32 RpcId = 1;
  149. int32 Error = 2;
  150. string Message = 3;
  151. string Address = 4;
  152. int64 Key = 5;
  153. int64 GateId = 6;
  154. }
  155. //ResponseType G2C_LoginGate
  156. message C2G_LoginGate // IRequest
  157. {
  158. int32 RpcId = 1;
  159. int64 Key = 2; // 帐号
  160. int64 GateId = 3;
  161. }
  162. message G2C_LoginGate // IResponse
  163. {
  164. int32 RpcId = 1;
  165. int32 Error = 2;
  166. string Message = 3;
  167. int64 PlayerId = 4;
  168. }
  169. message G2C_TestHotfixMessage // IMessage
  170. {
  171. string Info = 1;
  172. }
  173. //ResponseType M2C_TestRobotCase
  174. message C2M_TestRobotCase // IActorLocationRequest
  175. {
  176. int32 RpcId = 1;
  177. int32 N = 2;
  178. }
  179. message M2C_TestRobotCase // IActorLocationResponse
  180. {
  181. int32 RpcId = 1;
  182. int32 Error = 2;
  183. string Message = 3;
  184. int32 N = 4;
  185. }
  186. //ResponseType M2C_TransferMap
  187. message C2M_TransferMap // IActorLocationRequest
  188. {
  189. int32 RpcId = 1;
  190. }
  191. message M2C_TransferMap // IActorLocationResponse
  192. {
  193. int32 RpcId = 1;
  194. int32 Error = 2;
  195. string Message = 3;
  196. }
  197. //ResponseType G2C_Benchmark
  198. message C2G_Benchmark // IRequest
  199. {
  200. int32 RpcId = 1;
  201. }
  202. message G2C_Benchmark // IResponse
  203. {
  204. int32 RpcId = 1;
  205. int32 Error = 2;
  206. string Message = 3;
  207. }