C2G_LoginGameHandler.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. using System;
  2. using System.Collections.Generic;
  3. namespace ET.Server
  4. {
  5. /// <summary>
  6. /// 登入游戏服, 获取角色基础信息
  7. /// </summary>
  8. [MessageHandler(SceneType.Game)]
  9. public class C2G_LoginGameHandler : AMRpcHandler<C2G_LoginGame, G2C_LoginGame>
  10. {
  11. protected override async ETTask Run(Session session, C2G_LoginGame request, G2C_LoginGame response, Action reply)
  12. {
  13. if (session.DomainScene().SceneType != SceneType.Game)
  14. {
  15. Log.Error($"Game 请求的Scene错误...SceneType={session.DomainScene().SceneType}");
  16. session.Dispose();
  17. return;
  18. }
  19. if (string.IsNullOrEmpty(request.Key))
  20. {
  21. response.Error = ErrorCore.ERR_ConnectGateKeyError;
  22. response.Message = "Game key验证失败!";
  23. reply();
  24. return;
  25. }
  26. Scene scene = session.DomainScene();
  27. string account = scene.GetComponent<GameSessionKeyComponent>().Get(request.Key);
  28. if (account == null)
  29. {
  30. response.Error = ErrorCore.ERR_ConnectGateKeyError;
  31. response.Message = "Game key验证失败!";
  32. reply();
  33. return;
  34. }
  35. string[] str = request.Key.Split(",");
  36. if (str.Length != 2)
  37. {
  38. response.Error = ErrorCore.ERR_ConnectGateKeyError;
  39. response.Message = "Game key验证失败!";
  40. reply();
  41. return;
  42. }
  43. int channel = int.Parse(str[1]);
  44. if (channel <= 0)
  45. {
  46. response.Error = ErrorCore.ERR_ConnectGateKeyError;
  47. response.Message = "Game key验证失败,渠道号错误";
  48. reply();
  49. return;
  50. }
  51. // 移除session自动超时组件
  52. session.RemoveComponent<SessionAcceptTimeoutComponent>();
  53. Player player = scene.GetComponent<GamePlayerComponent>().AddChild<Player, Session>(session);
  54. player.Channel = channel;
  55. player.Name = "玩家" + player.Id;
  56. player.Diamond = 1000;
  57. // 添加session组件,用于绑定角色
  58. session.AddComponent<SessionPlayerComponent>().PlayerId = player.Id;
  59. session.AddComponent<MailBoxComponent, MailboxType>(MailboxType.GameSession);
  60. response.RoomId = player.RoomId;
  61. response.Player = ProtoHelper.PlayerToProto(player);
  62. // 玩法列表
  63. response.GameplayList = new List<int>();
  64. switch (channel)
  65. {
  66. case 10000:
  67. // 10000:测试渠道 全渠道
  68. response.GameplayList.Add((int)RoomType.HGHH);
  69. response.GameplayList.Add((int)RoomType.EzhouMahjong);
  70. break;
  71. case 10001:
  72. // 10001:黄冈
  73. response.GameplayList.Add((int)RoomType.HGHH);
  74. break;
  75. case 10002:
  76. // 10002:鄂州
  77. response.GameplayList.Add((int)RoomType.EzhouMahjong);
  78. break;
  79. }
  80. reply();
  81. await ETTask.CompletedTask;
  82. }
  83. }
  84. }