BattleClientProxy.cs 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using CommonNetwork.Sockets;
  5. using CommonLang.Protocol;
  6. using RoomService.Net.BsServer;
  7. using CommonLang.Log;
  8. using RoomService.Net.BsClient;
  9. using CommonAI.ZoneClient;
  10. using CommonAI.Zone;
  11. using CommonLang.IO;
  12. using CommonAI.Zone.ZoneEditor;
  13. using CommonAI.ZoneServer;
  14. using CommonLang.Concurrent;
  15. using CommonNetwork.Net;
  16. using CommonLang.Property;
  17. using CommonAI.Zone.Helper;
  18. using CommonLang;
  19. using CommonAI;
  20. using System.IO;
  21. namespace CommonAIClient.Client
  22. {
  23. public class BattleClientProxy : BattleClient
  24. {
  25. private static Logger log = LoggerFactory.GetLogger("BattleClientProxy");
  26. private INetSession proxy_session;
  27. private enum Status : int
  28. {
  29. ON_LINE, OFF_LINE,
  30. }
  31. private AtomicState<Status> status = new AtomicState<Status>(Status.OFF_LINE);
  32. public override INetSession Session
  33. {
  34. get { return proxy_session; }
  35. }
  36. public BattleClientProxy(
  37. INetSession netSession,
  38. EditorTemplates data_root,
  39. MessageFactoryGenerator msgFactory,
  40. PlayerWillConnectResponseB2R room,
  41. PlayerWillConnectRequestR2B testToken,
  42. string token)
  43. : base(data_root, msgFactory, room, testToken, token)
  44. {
  45. this.proxy_session = netSession;
  46. }
  47. public BattleClientProxy(
  48. ProxyNetSession proxySession,
  49. string proxySessionConnectString,
  50. EditorTemplates data_root,
  51. MessageFactoryGenerator msgFactory,
  52. PlayerWillConnectResponseB2R room,
  53. PlayerWillConnectRequestR2B testToken,
  54. string token)
  55. : base(data_root, msgFactory, room, testToken, token)
  56. {
  57. this.proxy_session = proxySession;
  58. this.proxy_session.Open(proxySessionConnectString, new SynchronizedBattleCodec(DataRoot.Templates), new DirectProxyListener(this));
  59. }
  60. protected override void Disposing()
  61. {
  62. this.Stop();
  63. base.Disposing();
  64. }
  65. public override void Start()
  66. {
  67. if (status.ChangeState(Status.ON_LINE))
  68. {
  69. proxy_session.OnMessageReceived += proxy_session_OnMessageReceived;
  70. proxy_session.OnMessageSent += proxy_session_OnMessageSent;
  71. proxy_session.OnError += proxy_session_OnError;
  72. proxy_session.Send(new ConnectToProxy(room.Room.ClientConnectString));
  73. base.callback_sessionOpened(proxy_session);
  74. }
  75. }
  76. public override void Stop()
  77. {
  78. if (status.ChangeState(Status.OFF_LINE))
  79. {
  80. proxy_session.OnMessageReceived -= proxy_session_OnMessageReceived;
  81. proxy_session.OnMessageSent -= proxy_session_OnMessageSent;
  82. proxy_session.OnError -= proxy_session_OnError;
  83. base.callback_sessionClosed(proxy_session);
  84. }
  85. }
  86. //----------------------------------------------------------------------------------------------------
  87. private void proxy_session_OnMessageReceived(INetSession session, object data)
  88. {
  89. if (data is DisconnectFromProxy)
  90. {
  91. Stop();
  92. }
  93. else
  94. {
  95. base.callback_messageReceived(session, data);
  96. }
  97. }
  98. private void proxy_session_OnMessageSent(INetSession session, object data)
  99. {
  100. base.callback_messageSent(session, data);
  101. }
  102. private void proxy_session_OnError(INetSession session, Exception err)
  103. {
  104. base.callback_onError(session, err);
  105. }
  106. //----------------------------------------------------------------------------------------------------
  107. class DirectProxyListener : INetSessionListener
  108. {
  109. private BattleClientProxy mClient;
  110. public DirectProxyListener(BattleClientProxy client)
  111. {
  112. this.mClient = client;
  113. }
  114. public void sessionOpened(INetSession session)
  115. {
  116. }
  117. public void sessionClosed(INetSession session)
  118. {
  119. }
  120. public void messageReceived(INetSession session, object data)
  121. {
  122. }
  123. public void messageSent(INetSession session, object data)
  124. {
  125. }
  126. public void onError(INetSession session, Exception err)
  127. {
  128. }
  129. }
  130. //----------------------------------------------------------------------------------------------------
  131. /// <summary>
  132. /// 将游戏服和战斗服合并成一个连接,需要连接代理服务器
  133. /// </summary>
  134. public abstract class ProxyNetSession : NetSession
  135. {
  136. public readonly byte TYPE_GS = 1;
  137. public readonly byte TYPE_BS = 2;
  138. public static int DEFAULT_BUFFER_SIZE = 1024;
  139. public ProxyNetSession(byte type_gs_header = 1, byte type_bs_header = 2)
  140. {
  141. this.TYPE_GS = type_gs_header;
  142. this.TYPE_BS = type_bs_header;
  143. }
  144. protected override bool doEncode(Stream output, object message, out int writeBytes)
  145. {
  146. if (IsMessageTypeGS(message))
  147. {
  148. return doEncodeGS(output, message, out writeBytes);
  149. }
  150. else if (message is IMessage)
  151. {
  152. return doEncodeBS(output, message as IMessage, out writeBytes);
  153. }
  154. writeBytes = 0;
  155. return false;
  156. }
  157. protected override bool doDecode(Stream input, out object message, out int readBytes)
  158. {
  159. int b0 = input.ReadByte();
  160. int b1 = input.ReadByte();
  161. int b2 = input.ReadByte();
  162. int ServerID = input.ReadByte();
  163. int BodySize = (int)(b0 | (b1 << 8) | (b2 << 16));
  164. bool ret = false;
  165. object msg = null;
  166. if (ServerID == TYPE_BS)
  167. {
  168. ret = doDecodeBS(input, BodySize, out msg);
  169. }
  170. else if (ServerID == TYPE_GS)
  171. {
  172. ret = doDecodeGS(input, BodySize, out msg);
  173. }
  174. message = msg;
  175. readBytes = BodySize + 4;
  176. return ret;
  177. }
  178. protected virtual bool doDecodeBS(Stream input, int bodysize, out object message)
  179. {
  180. byte[] h_body = IOUtil.ReadExpect(input, bodysize);
  181. using (MemoryStream ms = new MemoryStream(h_body))
  182. {
  183. if (mCodec.doDecode(ms, out message))
  184. {
  185. return true;
  186. }
  187. }
  188. return false;
  189. }
  190. protected virtual bool doEncodeBS(Stream output, IMessage send_msg, out int sendBytes)
  191. {
  192. sendBytes = 0;
  193. using (MemoryStream ms = new MemoryStream(DEFAULT_BUFFER_SIZE))
  194. {
  195. if (mCodec.doEncode(ms, send_msg))
  196. {
  197. byte[] h_body = ms.GetBuffer();
  198. int length = (int)ms.Position;
  199. {
  200. int BodySize = (int)(length);
  201. if (length > 0x00FFFFFF)
  202. {
  203. throw new Exception("Size Overflow");
  204. }
  205. int b0 = ((BodySize & 0x000000FF));
  206. int b1 = ((BodySize & 0x0000FF00) >> 8);
  207. int b2 = ((BodySize & 0x00FF0000) >> 16);
  208. output.WriteByte((byte)b0);
  209. output.WriteByte((byte)b1);
  210. output.WriteByte((byte)b2);
  211. output.WriteByte((byte)TYPE_BS);
  212. }
  213. output.Write(h_body, 0, length);
  214. sendBytes = length + 4;
  215. return true;
  216. }
  217. }
  218. return false;
  219. }
  220. public abstract bool IsMessageTypeGS(object msg);
  221. protected virtual bool doDecodeGS(Stream input, int bodysize, out object message)
  222. {
  223. message = null;
  224. return false;
  225. }
  226. protected virtual bool doEncodeGS(Stream output, object protocol, out int writeBytes)
  227. {
  228. writeBytes = 0;
  229. return false;
  230. }
  231. }
  232. }
  233. }