Message.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. using CommonLang.IO.Attribute;
  2. using CommonLang.Protocol;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using CommonLang.IO;
  8. using CommonAI.Zone;
  9. namespace CommonTickBattle.Battle
  10. {
  11. public abstract class TBMessage : IMessage
  12. {
  13. public int MessageID { get; set; }
  14. public abstract void WriteExternal(IOutputStream output);
  15. public abstract void ReadExternal(IInputStream input);
  16. }
  17. /// <summary>
  18. /// Local->Host
  19. /// 想在未来某个时间点执行一个动作
  20. /// </summary>
  21. [MessageType(0xFB01)]
  22. public class TBRequest : TBMessage
  23. {
  24. public ulong send_tick;
  25. public ulong action_tick;
  26. public CommonAI.Zone.Action action;
  27. public override void WriteExternal(IOutputStream output)
  28. {
  29. output.PutVS32(MessageID);
  30. output.PutVU64(send_tick);
  31. output.PutVU64(action_tick);
  32. output.PutExt(action);
  33. }
  34. public override void ReadExternal(IInputStream input)
  35. {
  36. this.MessageID = input.GetVS32();
  37. this.send_tick = input.GetVU64();
  38. this.action_tick = input.GetVU64();
  39. this.action = input.GetExtAny() as ObjectAction;
  40. }
  41. }
  42. /// <summary>
  43. /// Host->Local
  44. /// 对Request做判断是否成功执行
  45. /// </summary>
  46. [MessageType(0xFB02)]
  47. public class TBResponse : TBMessage
  48. {
  49. public enum Result : byte
  50. {
  51. NA = 0,
  52. OK = 1,
  53. TimeOut = 2,
  54. Error = 255,
  55. }
  56. public Result result;
  57. public override void WriteExternal(IOutputStream output)
  58. {
  59. output.PutVS32(MessageID);
  60. output.PutEnum8(result);
  61. }
  62. public override void ReadExternal(IInputStream input)
  63. {
  64. this.MessageID = input.GetVS32();
  65. this.result = input.GetEnum8<Result>();
  66. }
  67. }
  68. /// <summary>
  69. /// Host->Local
  70. /// 成功的Request动作同步给其他玩家
  71. /// </summary>
  72. [MessageType(0xFB03)]
  73. public class TBNotify : TBMessage
  74. {
  75. public string player_uuid;
  76. public ulong action_tick;
  77. public CommonAI.Zone.Action action;
  78. public override void WriteExternal(IOutputStream output)
  79. {
  80. output.PutUTF(player_uuid);
  81. output.PutVU64(action_tick);
  82. output.PutExt(action);
  83. }
  84. public override void ReadExternal(IInputStream input)
  85. {
  86. this.player_uuid = input.GetUTF();
  87. this.action_tick = input.GetVU64();
  88. this.action = input.GetExtAny() as ObjectAction;
  89. }
  90. }
  91. /// <summary>
  92. /// Host->Local
  93. /// 同步帧
  94. /// </summary>
  95. [MessageType(0xFB04)]
  96. public class TBSyncTime : TBMessage
  97. {
  98. public ulong current_tick;
  99. public override void WriteExternal(IOutputStream output)
  100. {
  101. output.PutVU64(current_tick);
  102. }
  103. public override void ReadExternal(IInputStream input)
  104. {
  105. this.current_tick = input.GetVU64();
  106. }
  107. }
  108. /// <summary>
  109. /// Host->Local
  110. /// 同步历史记录,用于断线重连
  111. /// </summary>
  112. [MessageType(0xFB05)]
  113. public class TBSyncHistory : TBMessage
  114. {
  115. public ulong current_tick;
  116. public List<TBNotify> history;
  117. public override void WriteExternal(IOutputStream output)
  118. {
  119. output.PutVU64(current_tick);
  120. output.PutList(history, output.PutExt);
  121. }
  122. public override void ReadExternal(IInputStream input)
  123. {
  124. this.current_tick = input.GetVU64();
  125. this.history = input.GetList<TBNotify>(input.GetExt<TBNotify>);
  126. }
  127. }
  128. }