DataC2B.cs 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. using System;
  2. using System.Collections.Generic;
  3. using CommonLang.IO;
  4. using CommonLang.IO.Attribute;
  5. using RoomService.Net.BsClient;
  6. using CommonLang.Protocol;
  7. using CommonAI.ZoneServer;
  8. namespace RoomService.Net.BsServer
  9. {
  10. /// <summary>
  11. /// 客户端进入房间请求
  12. /// </summary>
  13. [MessageType(0x00020000)]
  14. public class EnterRoomRequestC2B : NetMessage
  15. {
  16. public string PlayerUUID;
  17. public string Token;
  18. public string RoomID;
  19. /// <summary>
  20. /// 测试数据,模拟战斗管理服报文
  21. /// </summary>
  22. public PlayerWillConnectRequestR2B TestToken;
  23. public override void WriteExternal(IOutputStream output)
  24. {
  25. output.PutS32(MessageID);
  26. output.PutUTF(PlayerUUID);
  27. output.PutUTF(Token);
  28. output.PutUTF(RoomID);
  29. output.PutExt(TestToken);
  30. }
  31. public override void ReadExternal(IInputStream input)
  32. {
  33. this.MessageID = input.GetS32();
  34. this.PlayerUUID = input.GetUTF();
  35. this.Token = input.GetUTF();
  36. this.RoomID = input.GetUTF();
  37. this.TestToken = input.GetExt<PlayerWillConnectRequestR2B>();
  38. }
  39. }
  40. /// <summary>
  41. /// 客户端进入房间回馈
  42. /// </summary>
  43. [MessageType(0x00020001)]
  44. public class EnterRoomResponseB2C : NetMessage
  45. {
  46. public const byte RESULT_OK = 1;
  47. public const byte RESULT_FAILE = 2;
  48. public byte Result;
  49. /// <summary>
  50. /// 创建房间的扩展属性(用于游戏逻辑)
  51. /// </summary>
  52. public CreateRoomInfoR2B RoomData;
  53. /// <summary>
  54. /// 角色的扩展属性(用于游戏逻辑)
  55. /// </summary>
  56. public CreateUnitInfoR2B PlayerData;
  57. public override void WriteExternal(IOutputStream output)
  58. {
  59. output.PutS32(MessageID);
  60. output.PutU8(Result);
  61. if (Result == RESULT_OK)
  62. {
  63. output.PutExt(RoomData);
  64. output.PutExt(PlayerData);
  65. }
  66. }
  67. public override void ReadExternal(IInputStream input)
  68. {
  69. this.MessageID = input.GetS32();
  70. this.Result = input.GetU8();
  71. if (Result == RESULT_OK)
  72. {
  73. this.RoomData = (CreateRoomInfoR2B)input.GetExtAny();
  74. this.PlayerData = (CreateUnitInfoR2B)input.GetExtAny();
  75. }
  76. }
  77. }
  78. /// <summary>
  79. /// 客户端离开房间请求
  80. /// </summary>
  81. [MessageType(0x00020002)]
  82. public class LeaveRoomRequestC2B : NetMessage
  83. {
  84. public override void WriteExternal(IOutputStream output)
  85. {
  86. }
  87. public override void ReadExternal(IInputStream input)
  88. {
  89. }
  90. }
  91. /// <summary>
  92. /// 被服务端踢掉
  93. /// </summary>
  94. [MessageType(0x00020003)]
  95. public class KickedByServerNotifyB2C : NetMessage
  96. {
  97. public string message;
  98. public override void WriteExternal(IOutputStream output)
  99. {
  100. output.PutUTF(message);
  101. }
  102. public override void ReadExternal(IInputStream input)
  103. {
  104. this.message = input.GetUTF();
  105. }
  106. }
  107. }