BattlePushHandler.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. using CommonAI.Zone;
  2. using static CommonAI.ZoneClient.ZoneLayer;
  3. using ET;
  4. using System.IO;
  5. using CommonAI.ZoneClient;
  6. using CommonLang;
  7. namespace ET.Client
  8. {
  9. //处理战斗推送的消息
  10. [MessageHandler(SceneType.Client)]
  11. public class BattlePushHandler : AMHandler<BattleEventPush>
  12. {
  13. protected override async ETTask Run(Session session, BattleEventPush pushdata)
  14. {
  15. //var type = pushdata.key;
  16. //Log.Debug($"<<receive battle push type({type})");
  17. if (!BattleResourceMgr.Instance.BattleMsgDecoder.doDecode(new MemoryStream(pushdata.data), out object data))
  18. {
  19. return;
  20. }
  21. BattleMgr.Instance.Layer.ProcessMessage(data as CommonLang.Protocol.IMessage);
  22. /*if ((ushort)BattlePushCnst.FastStreamPush == type)
  23. {
  24. }
  25. else if ((ushort)BattlePushCnst.BattleClear == type)
  26. {
  27. }
  28. if (msg is PackEvent)
  29. {
  30. PackEvent packEvent = msg as PackEvent;
  31. for (int i = 0; i < packEvent.events.Count; i++)
  32. {
  33. var message = packEvent.events[i];
  34. if (message is Pong)
  35. {
  36. uint num = (uint)CUtils.CurrentTimeMS;
  37. Pong pong = message as Pong;
  38. var TimeDiff = (int)(num - pong.ClientTimeDayOfMS);
  39. Log.Debug($">>battle timediff: {TimeDiff}");
  40. }
  41. else
  42. {
  43. //mSyncMessageQueue.Add(message);
  44. }
  45. }
  46. }
  47. else
  48. {
  49. //mSyncMessageQueue.Add(message);
  50. }*/
  51. await ETTask.CompletedTask;
  52. }
  53. }
  54. }