C2G_HGHHDisCardHandler.cs 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. namespace ET.Server
  5. {
  6. /// <summary>
  7. /// 黄冈晃晃 出牌
  8. /// </summary>
  9. [MessageHandler(SceneType.Game)]
  10. public class C2G_HGHHDisCardHandler : AMRpcHandler<C2G_HGHHDisCard, G2C_HGHHDisCard>
  11. {
  12. protected override async ETTask Run(Session session, C2G_HGHHDisCard request, G2C_HGHHDisCard response, Action reply)
  13. {
  14. Player player = session.GetComponent<SessionPlayerComponent>().GetMyPlayer();
  15. if (player == null)
  16. {
  17. response.Error = ErrorCode.ERR_OperationError;
  18. response.Message = "玩家不存在或离线...";
  19. reply();
  20. return;
  21. }
  22. // 玩家是否进入房间
  23. if (player.RoomId <= 0)
  24. {
  25. response.Error = ErrorCode.ERR_OperationError;
  26. response.Message = "玩家不在房间,不可操作...";
  27. reply();
  28. return;
  29. }
  30. Scene scene = session.DomainScene();
  31. // 房间是否能找到
  32. Room room = scene.GetComponent<GameRoomComponent>().Get(player.RoomId);
  33. if (room == null)
  34. {
  35. response.Error = ErrorCode.ERR_OperationError;
  36. response.Message = "请求的房间不存在或已解散...";
  37. reply();
  38. return;
  39. }
  40. // 玩家房间是否已开始
  41. HGHuangHuangComponent hgHuangHuangComponent = room.GetComponent<HGHuangHuangComponent>();
  42. if (hgHuangHuangComponent != null && hgHuangHuangComponent.State != 2)
  43. {
  44. response.Error = ErrorCode.ERR_OperationError;
  45. response.Message = "房间不在游戏中,不可出牌...";
  46. reply();
  47. return;
  48. }
  49. // 玩家状态
  50. if (player.State != 2)
  51. {
  52. response.Error = ErrorCode.ERR_OperationError;
  53. response.Message = "玩家不在游戏中,不可出牌...";
  54. reply();
  55. return;
  56. }
  57. if (request.Card <= 0 || !HGHHConst.Values.Contains(request.Card))
  58. {
  59. response.Error = ErrorCode.ERR_OperationError;
  60. response.Message = "出牌错误...";
  61. reply();
  62. return;
  63. }
  64. // 判断玩家是否可出牌
  65. if (hgHuangHuangComponent.CurrentPlayer.Id != player.Id)
  66. {
  67. response.Error = ErrorCode.ERR_OperationError;
  68. response.Message = "不是当前操作玩家,出牌错误...";
  69. reply();
  70. return;
  71. }
  72. // 是否有动作,有动作无法出牌
  73. if (player.ActInfo is { Count: > 0 })
  74. {
  75. response.Error = ErrorCode.ERR_OperationError;
  76. response.Message = "有动作,请先操作动作,出牌错误...";
  77. reply();
  78. return;
  79. }
  80. // 出牌
  81. hgHuangHuangComponent.DisCard(room, player, request.Card, false);
  82. // 返回
  83. reply();
  84. await ETTask.CompletedTask;
  85. }
  86. }
  87. }