HGHuangHuangComponentSystem.cs 51 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Data;
  4. using System.Linq;
  5. namespace ET.Server
  6. {
  7. [FriendOf(typeof (HGHuangHuangComponent))]
  8. public static class HGHuangHuangComponentSystem
  9. {
  10. [ObjectSystem]
  11. public class HGHuangHuangComponentAwakeSystem: AwakeSystem<HGHuangHuangComponent>
  12. {
  13. protected override void Awake(HGHuangHuangComponent self)
  14. {
  15. Room room = self.GetParent<Room>();
  16. if (room == null)
  17. {
  18. Log.Error($"黄冈晃晃主逻辑组件获取不到主实体...");
  19. return;
  20. }
  21. Log.Info($"创建黄冈晃晃主逻辑组件...");
  22. self.Flag = false;
  23. self.Time = 0;
  24. self.State = 0;
  25. self.Players = new Player[room.MaxNum];
  26. self.CurrentRound = 0;
  27. self.ZhuangPos = 0;
  28. self.Rand = new[] { 0, 0 };
  29. self.GangType = -1;
  30. self.AdmitDefeatList = new List<long>();
  31. self.CanPgIds = new List<long>();
  32. self.GangHuIds = new List<long>();
  33. self.CanHuIds = new List<long>();
  34. self.OperableList = new List<long>();
  35. self.ClickHuIds = new List<long>();
  36. self.HuResult = -1;
  37. self.CardList = new List<int>();
  38. self.UpdateTime = 0;
  39. // 初始化牌库
  40. for (int i = 0; i < 4; i++)
  41. {
  42. foreach (int value in HGHuangHuangConst.Values)
  43. {
  44. self.CardList.Add(value);
  45. }
  46. RandomGenerator.Shuffle(self.CardList);
  47. }
  48. }
  49. }
  50. [ObjectSystem]
  51. public class HGHuangHuangComponentDestroySystem: DestroySystem<HGHuangHuangComponent>
  52. {
  53. protected override void Destroy(HGHuangHuangComponent self)
  54. {
  55. Log.Info($"销毁黄冈晃晃主逻辑组件...");
  56. }
  57. }
  58. [ObjectSystem]
  59. [FriendOf(typeof(Room))]
  60. public class HGHuangHuangComponentUpdateSystem : UpdateSystem<HGHuangHuangComponent>
  61. {
  62. protected override void Update(HGHuangHuangComponent self)
  63. {
  64. long timeNow = TimeHelper.ClientNow();
  65. // 每秒执行一次
  66. if (timeNow - self.UpdateTime <= 1000)
  67. {
  68. return;
  69. }
  70. self.UpdateTime = timeNow;
  71. Room room = self.GetParent<Room>();
  72. if (room == null)
  73. {
  74. Log.Error($"黄冈晃晃主逻辑组件获取不到主实体...");
  75. return;
  76. }
  77. switch (self.State)
  78. {
  79. case 0:
  80. // 等待状态
  81. Log.Debug($"检测: 黄冈晃晃-房间号:{room.RoomId}, 房间人数:{room.Players.Count}, 状态:检测是否可开局...");
  82. if (self.CheckReadyStart(room))
  83. {
  84. self.State = 1;
  85. self.Flag = false;
  86. self.Time = 0;
  87. }
  88. // 120秒未开始直接解散
  89. if (self.Time >= 120)
  90. {
  91. room.Dispose();
  92. }
  93. break;
  94. case 1:
  95. // 开局
  96. if (!self.Flag)
  97. {
  98. if (self.Time >= 3)
  99. {
  100. self.Start(room);
  101. self.Flag = true;
  102. self.Time = 0;
  103. Log.Debug($"检测: 黄冈晃晃-房间号:{room.RoomId}, 房间人数:{room.Players.Count}, 状态:开局...VS动画...");
  104. }
  105. }
  106. else
  107. {
  108. if (self.Time >= 4)
  109. {
  110. self.State = 2;
  111. self.Flag = false;
  112. self.Time = 0;
  113. }
  114. }
  115. break;
  116. case 2:
  117. // 进行中
  118. if (!self.Flag)
  119. {
  120. self.Flag = true;
  121. self.Time = 0;
  122. // 摸牌
  123. self.DrawCard(room);
  124. }
  125. else
  126. {
  127. // 强制操作
  128. // if (self.Time >= 30)
  129. // {
  130. // if (self.DrawCardPlayer.Id == self.CurrentPlayer.Id)
  131. // {
  132. // if (self.OperableList.Count > 0)
  133. // {
  134. // self.Guo(room, self.CurrentPlayer);
  135. // }
  136. // self.DisCard(room, self.CurrentPlayer, 0, true);
  137. // }
  138. // else
  139. // {
  140. // if (self.OperableList.Count > 0)
  141. // {
  142. // self.Guo(room, self.CurrentPlayer);
  143. // }
  144. // }
  145. //
  146. // self.Time = 30;
  147. //
  148. // }
  149. // else
  150. // {
  151. // // todo 自动托管逻辑
  152. // if (self.CurrentPlayer != null && self.CurrentPlayer.State != 3 && self.CurrentPlayer.IsAuto)
  153. // {
  154. //
  155. // }
  156. // }
  157. }
  158. break;
  159. case 3:
  160. // 已结束
  161. if (!self.Flag)
  162. {
  163. self.Flag = true;
  164. self.Time = 0;
  165. Log.Debug($"游戏结束: 黄冈晃晃-房间号:{room.RoomId}, 房间人数:{room.Players.Count}");
  166. }
  167. else
  168. {
  169. // todo 超时删除房间
  170. if (self.Time >= 60)
  171. {
  172. room.Dispose();
  173. }
  174. }
  175. break;
  176. }
  177. self.Time++;
  178. }
  179. }
  180. /// <summary>
  181. /// 检测是否可开始 3秒倒计时开始
  182. /// </summary>
  183. /// <param name="self"></param>
  184. /// <param name="room"></param>
  185. /// <returns></returns>
  186. private static bool CheckReadyStart(this HGHuangHuangComponent self, Room room)
  187. {
  188. if (!room.IsStart() || self.State != 0)
  189. {
  190. return false;
  191. }
  192. // 通知客户端3秒倒计时
  193. foreach (Player player in room.GetAllPlayers().Values.Where(player => player != null))
  194. {
  195. MessageHelper.SendToClient(player, new G2C_HGHHReadyStartPush(){ReadyStartTime = 3});
  196. }
  197. return true;
  198. }
  199. /// <summary>
  200. /// 发牌
  201. /// </summary>
  202. /// <param name="self"></param>
  203. /// <param name="room"></param>
  204. private static void SendCard(this HGHuangHuangComponent self, Room room)
  205. {
  206. foreach (Player player in room.GetAllPlayers().Values.Where(player => player != null))
  207. {
  208. for (int i = 0; i < 13; i++)
  209. {
  210. int card = self.CardList[0];
  211. player.RemainCards = CardHelper.Add(player.RemainCards, card);
  212. self.CardList.RemoveAt(0);
  213. }
  214. }
  215. }
  216. /// <summary>
  217. /// 游戏开局
  218. /// </summary>
  219. /// <param name="self"></param>
  220. /// <param name="room"></param>
  221. private static void Start(this HGHuangHuangComponent self, Room room)
  222. {
  223. self.CurrentRound += 1;
  224. // 摇骰子
  225. int rand1 = RandomGenerator.RandomNumber(1, 7);
  226. int rand2 = RandomGenerator.RandomNumber(1, 7);
  227. self.Rand = new[] { rand1, rand2 };
  228. // 定庄
  229. // self.ZhuangPos = (rand1 + rand2) % 4;
  230. self.ZhuangPos = (rand1 + rand2) % room.MaxNum;
  231. // 设置当前操作玩家
  232. self.CurrentPlayer = self.Players[self.ZhuangPos];
  233. // 设置当前摸牌玩家
  234. self.DrawCardPlayer = self.Players[self.ZhuangPos];
  235. // 发牌
  236. self.SendCard(room);
  237. // 广播
  238. foreach (Player player in room.GetAllPlayers().Values.Where(player => player != null))
  239. {
  240. player.State = 2;
  241. MessageHelper.SendToClient(player, new G2C_HGHHStartPush(){info = ProtoHelper.RoomToProto(room, player, self.CurrentPlayer)});
  242. Log.Info($"游戏开局, 房间id={room.RoomId}, 玩家id={player.Id}, 玩家={player.Name}, 手牌信息={string.Join(", ", player.RemainCards)}");
  243. }
  244. }
  245. /// <summary>
  246. /// 摸牌
  247. /// </summary>
  248. /// <param name="self"></param>
  249. /// <param name="room"></param>
  250. private static void DrawCard(this HGHuangHuangComponent self, Room room)
  251. {
  252. // 2个以上玩家认输或牌库没牌了直接结束
  253. if (self.AdmitDefeatList.Count > 2 || self.CardList.Count <= 0)
  254. {
  255. self.GameOver(room);
  256. return;
  257. }
  258. Player drawCardPlayer = self.DrawCardPlayer;
  259. if (drawCardPlayer == null)
  260. {
  261. Log.Error($"房间id={room.RoomId}, 摸牌玩家为空...");
  262. return;
  263. }
  264. // 摸牌
  265. int card = self.CardList[0];
  266. drawCardPlayer.RemainCards = CardHelper.Add(drawCardPlayer.RemainCards, card);
  267. self.CardList.RemoveAt(0);
  268. // 当前摸的牌
  269. self.DrawCard = card;
  270. // 吃,碰,杠,胡,过
  271. bool hasAct = false;
  272. // 检测摸牌人动作, 校验摸牌是否胡
  273. Struct.HuRes huRes = HGHuangHuangHelper.CheckHu(drawCardPlayer.RemainCards);
  274. if (huRes.Type != HGHuangHuangConst.HU_DEFAULT)
  275. {
  276. hasAct = true;
  277. drawCardPlayer.Act[3] = 1;
  278. self.CanHuIds.Add(drawCardPlayer.Id);
  279. if (!self.OperableList.Contains(drawCardPlayer.Id))
  280. {
  281. self.OperableList.Add(drawCardPlayer.Id);
  282. }
  283. }
  284. // todo 玩家听牌状态不允许杠
  285. // 检测摸牌人动作, 校验摸牌是否杠
  286. List<Struct.Kezi> gang = HGHuangHuangHelper.IsDrawGang(drawCardPlayer);
  287. if (gang is { Count: > 0 })
  288. {
  289. hasAct = true;
  290. drawCardPlayer.Act[2] = 1;
  291. if (!self.OperableList.Contains(drawCardPlayer.Id))
  292. {
  293. self.OperableList.Add(drawCardPlayer.Id);
  294. }
  295. if (!self.CanPgIds.Contains(drawCardPlayer.Id))
  296. {
  297. self.CanPgIds.Add(drawCardPlayer.Id);
  298. }
  299. }
  300. // 过牌
  301. drawCardPlayer.Act[4] = hasAct? 1 : 0;
  302. if (drawCardPlayer.HuCards.Any(_card => _card > 0 && _card == self.DrawCard))
  303. {
  304. drawCardPlayer.Act[4] = 0;
  305. }
  306. // 设置当前操作玩家
  307. self.CurrentPlayer = drawCardPlayer;
  308. Log.Info($"摸牌... 玩家ID:{drawCardPlayer.Id}, 位置:{drawCardPlayer.Pos}, 手牌大小:{drawCardPlayer.RemainCards.Length}, 手牌信息:{string.Join(", ", drawCardPlayer.RemainCards)}, 摸的牌:{card}");
  309. // 推送摸牌广播
  310. foreach (Player player in room.GetAllPlayers().Values.Where(player => player != null))
  311. {
  312. MessageHelper.SendToClient(player, new G2C_HGHHDrawCardPush(){info = ProtoHelper.RoomToProto(room, player, drawCardPlayer)});
  313. }
  314. }
  315. /// <summary>
  316. /// 出牌
  317. /// </summary>
  318. /// <param name="self"></param>
  319. /// <param name="room"></param>
  320. /// <param name="player"></param>
  321. /// <param name="card">出的牌(0.当前摸牌玩家自动出牌 -1.非当前摸牌玩家自动出牌 >0.玩家手动出牌)</param>
  322. /// <param name="flag">是否自动出牌</param>
  323. public static async void DisCard(this HGHuangHuangComponent self, Room room, Player player, int card, bool flag)
  324. {
  325. if (player == null)
  326. {
  327. Log.Error($"出牌错误,player is null.");
  328. return;
  329. }
  330. using (await CoroutineLockComponent.Instance.Wait(CoroutineLockType.PlayerOperation, player.Id))
  331. {
  332. if (self.CurrentPlayer.Id == player.Id && self.DrawCardPlayer.Id == player.Id)
  333. {
  334. Log.Info($"出牌... 玩家ID:{player.Id}, 位置:{player.Pos}, 手牌大小:{player.RemainCards.Length}, 手牌信息: {string.Join(", ", player.RemainCards)}");
  335. // 自动出牌
  336. if (flag)
  337. {
  338. if (self.PengPlayer != null && self.PengPlayer.Id == player.Id)
  339. {
  340. self.PengPlayer = null;
  341. int[] tmpCard = new int[player.RemainCards.Length];
  342. Array.Copy(player.RemainCards, 0, tmpCard, 0, player.RemainCards.Length);
  343. Array.Sort(tmpCard);
  344. card = tmpCard[^1];
  345. }
  346. else
  347. {
  348. card = player.RemainCards[^1];
  349. }
  350. // todo 真人托管状态
  351. }
  352. if (!player.RemainCards.Contains(card))
  353. {
  354. Log.Error($"出牌错误,玩家的牌不在手中...");
  355. return;
  356. }
  357. // 玩家出牌
  358. player.RemainCards = CardHelper.Remove(player.RemainCards, card);
  359. player.DisCards = CardHelper.Add(player.DisCards, card);
  360. player.DiscardCount += 1;
  361. self.DisCard = card;
  362. self.DisCardPlayer = player;
  363. self.PengPlayer = null;
  364. // // 给出牌人广播
  365. // MessageHelper.SendToClient(player, new G2C_HGHHDisCardPush(){info = ProtoHelper.RoomToProto(room, player, player)});
  366. self.CanHuIds.Clear();
  367. self.ClickHuIds.Clear();
  368. self.OperableList.Clear();
  369. self.CanPgIds.Clear();
  370. self.CleanUserAct();
  371. // 检测其它三家的动作
  372. int[] nextPos = room.GetSorcPos(player.Pos);
  373. foreach (int index in nextPos)
  374. {
  375. Player otherPlayer = self.Players[index];
  376. if (otherPlayer != null)
  377. {
  378. // 吃,碰,杠,胡,过
  379. int[] act = new int[5];
  380. List<Struct.Kezi> gangs = new List<Struct.Kezi>();
  381. List<Struct.Kezi> pengs = new List<Struct.Kezi>();
  382. List<Struct.Kezi> chis = new List<Struct.Kezi>();
  383. // todo 玩家听牌状态不允许有动作
  384. // 出牌是否杠
  385. gangs = HGHuangHuangHelper.IsDiscardGang(otherPlayer, card, player.Id);
  386. // 出牌是否碰
  387. pengs = HGHuangHuangHelper.IsDiscardPeng(otherPlayer, card, player.Id);
  388. // 出牌是否吃
  389. if (otherPlayer.Pos == nextPos[0])
  390. {
  391. chis = HGHuangHuangHelper.IsDiscardChi(otherPlayer, card, player.Id);
  392. }
  393. // 游戏中才会动作
  394. if (otherPlayer.State == 2)
  395. {
  396. bool hasAct = false;
  397. int[] tmpCards = new int[otherPlayer.RemainCards.Length];
  398. Array.Copy(otherPlayer.RemainCards, 0, tmpCards, 0, otherPlayer.RemainCards.Length);
  399. tmpCards = CardHelper.Add(tmpCards, card);
  400. // 校验胡牌
  401. Struct.HuRes huType = HGHuangHuangHelper.CheckHu(tmpCards);
  402. if (huType.Type != HGHuangHuangConst.HU_DEFAULT)
  403. {
  404. hasAct = true;
  405. act[3] = 1;
  406. // 放入可胡玩家列表
  407. if (!self.CanHuIds.Contains(otherPlayer.Id))
  408. {
  409. self.CanHuIds.Add(otherPlayer.Id);
  410. }
  411. // 加入可操作玩家list
  412. if (!self.OperableList.Contains(otherPlayer.Id))
  413. {
  414. self.OperableList.Add(otherPlayer.Id);
  415. }
  416. }
  417. // 是否杠
  418. if (gangs.Count > 0)
  419. {
  420. hasAct = true;
  421. act[2] = 1;
  422. foreach (Struct.Kezi kezi in gangs.Where(kezi => kezi is { Card: >= 0 }))
  423. {
  424. otherPlayer.ActInfo.Add(new Struct.Kezi(kezi.Type, kezi.Card, kezi.PlayerId));
  425. }
  426. }
  427. // 是否碰
  428. if (pengs.Count > 0)
  429. {
  430. hasAct = true;
  431. act[1] = 1;
  432. foreach (Struct.Kezi kezi in pengs.Where(kezi => kezi is { Card: >= 0 }))
  433. {
  434. otherPlayer.ActInfo.Add(new Struct.Kezi(kezi.Type, kezi.Card, kezi.PlayerId));
  435. }
  436. }
  437. // 是否吃
  438. if (chis.Count > 0)
  439. {
  440. hasAct = true;
  441. act[0] = 1;
  442. foreach (Struct.Kezi kezi in chis.Where(kezi => kezi is { Card: >= 0 }))
  443. {
  444. otherPlayer.ActInfo.Add(new Struct.Kezi(kezi.Type, kezi.Card, kezi.PlayerId));
  445. }
  446. }
  447. // 是否过
  448. if (hasAct) {
  449. act[4] = 1;
  450. }
  451. if (act[2] == 1 || act[1] == 1) {
  452. // 加入可操作玩家list
  453. if (!self.OperableList.Contains(otherPlayer.Id)) {
  454. self.OperableList.Add(otherPlayer.Id);
  455. }
  456. // 加入可碰杠玩家集合
  457. if (!self.CanPgIds.Contains(otherPlayer.Id)) {
  458. self.CanPgIds.Add(otherPlayer.Id);
  459. }
  460. }
  461. // 设置玩家动作
  462. otherPlayer.Act = act;
  463. }
  464. // // 广播其它三家
  465. // MessageHelper.SendToClient(otherPlayer, new G2C_HGHHDisCardPush(){info = ProtoHelper.RoomToProto(room, otherPlayer, player)});
  466. }
  467. }
  468. if (self.CanHuIds.Count <= 0)
  469. {
  470. self.GangPlayer = null;
  471. }
  472. // 判断是否下家摸牌, 指定下家摸牌
  473. if (self.OperableList.Count == 0)
  474. {
  475. Player nextPlayer = null;
  476. foreach (int index in nextPos)
  477. {
  478. Player tempPlayer = self.Players[index];
  479. if (tempPlayer is { State: 2 } && tempPlayer.Id != player.Id)
  480. {
  481. nextPlayer = tempPlayer;
  482. break;
  483. }
  484. }
  485. // 有三家认输,就会有null
  486. if (nextPlayer == null)
  487. {
  488. self.GameOver(room);
  489. }
  490. else
  491. {
  492. // 设置摸牌玩家
  493. self.DrawCardPlayer = nextPlayer;
  494. // 设置操作玩家
  495. self.CurrentPlayer = nextPlayer;
  496. // 摸牌
  497. self.Flag = false;
  498. }
  499. }
  500. else
  501. {
  502. long id = 0;
  503. if (self.CanHuIds.Count > 0)
  504. {
  505. id = self.CanHuIds.First();
  506. } else if (self.CanPgIds.Count > 0)
  507. {
  508. id = self.CanPgIds.First();
  509. }
  510. else
  511. {
  512. id = self.OperableList.First();
  513. }
  514. Player tmpPlayer = room.GetPlayer(id);
  515. if (tmpPlayer != null)
  516. {
  517. self.CurrentPlayer = self.Players[tmpPlayer.Pos];
  518. }
  519. }
  520. // 给出牌人广播
  521. MessageHelper.SendToClient(player, new G2C_HGHHDisCardPush(){info = ProtoHelper.RoomToProto(room, player, self.CurrentPlayer)});
  522. // 给其他三家广播
  523. foreach (int index in nextPos)
  524. {
  525. Player otherPlayer = self.Players[index];
  526. if (otherPlayer != null)
  527. {
  528. // 广播其它三家
  529. MessageHelper.SendToClient(otherPlayer, new G2C_HGHHDisCardPush(){info = ProtoHelper.RoomToProto(room, otherPlayer, self.CurrentPlayer)});
  530. }
  531. }
  532. }
  533. }
  534. }
  535. /// <summary>
  536. /// 玩家是否可以操作吃
  537. /// </summary>
  538. /// <param name="self"></param>
  539. /// <param name="player"></param>
  540. /// <returns></returns>
  541. private static bool IsCanChi(this HGHuangHuangComponent self, Player player)
  542. {
  543. if (self.ClickHuIds.Count > 0)
  544. {
  545. return false;
  546. }
  547. if (self.CanHuIds.Count > 1)
  548. {
  549. return false;
  550. }
  551. else
  552. {
  553. if (self.CanHuIds.Count == 1)
  554. {
  555. if (self.CanPgIds.Count > 0)
  556. {
  557. if (self.CanPgIds.Any(id => id > 0 && id != player.Id))
  558. {
  559. return false;
  560. }
  561. }
  562. return self.CanHuIds.Contains(player.Id);
  563. }
  564. else
  565. {
  566. if (self.CanPgIds.Count > 0)
  567. {
  568. return self.CanPgIds.Contains(player.Id);
  569. }
  570. else
  571. {
  572. return true;
  573. }
  574. }
  575. }
  576. }
  577. /// <summary>
  578. /// 玩家操作吃
  579. /// </summary>
  580. /// <param name="self"></param>
  581. /// <param name="room"></param>
  582. /// <param name="player"></param>
  583. /// <param name="card"></param>
  584. public static void Chi(this HGHuangHuangComponent self, Room room, Player player, int card)
  585. {
  586. if (self.IsCanChi(player))
  587. {
  588. return;
  589. }
  590. if (self.DisCard >= HGHuangHuangConst.DONG_FENG)
  591. {
  592. return;
  593. }
  594. // 删除出牌人打出的牌堆
  595. self.DisCardPlayer.DisCards = CardHelper.Remove(self.DisCardPlayer.DisCards, self.DisCard);
  596. // 吃牌玩家的手牌
  597. int[] temp = CardHelper.Add(player.RemainCards, self.DisCard);
  598. for (int i = 0; i < 3; i++)
  599. {
  600. temp = CardHelper.Remove(temp, card + i);
  601. }
  602. player.RemainCards = temp;
  603. // 刻子
  604. player.KeZi.Add(new Struct.Kezi((int)HGHuangHuangConst.KeziType.CHI, card, self.DisCardPlayer.Id));
  605. // 重置摸牌人
  606. self.DrawCardPlayer = player;
  607. self.PengPlayer = player;
  608. self.OperableList.Clear();
  609. // 重置时间和流程标记
  610. self.Time = 30;
  611. self.Flag = false;
  612. Log.Info($"玩家吃牌... 玩家ID:{player.Id}, 位置:{player.Pos}, 手牌大小:{player.RemainCards.Length}, 手牌信息:{string.Join(", ", player.RemainCards)}, 吃的牌:{card}");
  613. // 广播
  614. foreach (Player p in room.GetAllPlayers().Values.Where(p => p != null))
  615. {
  616. RoomInfo info = ProtoHelper.RoomToProto(room, p, player);
  617. info.Time = 15;
  618. MessageHelper.SendToClient(p, new G2C_HGHHOperationPush(){info = info, OpType = 1});
  619. }
  620. }
  621. /// <summary>
  622. /// 玩家是否可以操作碰
  623. /// </summary>
  624. /// <param name="self"></param>
  625. /// <param name="player"></param>
  626. /// <returns></returns>
  627. private static bool IsCanPengGang(this HGHuangHuangComponent self, Player player)
  628. {
  629. if (!self.CanPgIds.Contains(player.Id))
  630. {
  631. return false;
  632. }
  633. if (self.ClickHuIds.Count > 0)
  634. {
  635. return false;
  636. }
  637. return self.CanHuIds.Count switch
  638. {
  639. > 1 => false,
  640. 1 => self.CanHuIds.Contains(player.Id),
  641. _ => true
  642. };
  643. }
  644. /// <summary>
  645. /// 玩家操作碰
  646. /// </summary>
  647. /// <param name="self"></param>
  648. /// <param name="room"></param>
  649. /// <param name="player"></param>
  650. public static void Peng(this HGHuangHuangComponent self, Room room, Player player)
  651. {
  652. if (!self.IsCanPengGang(player))
  653. {
  654. return;
  655. }
  656. int num = CardHelper.CountCardNum(player.RemainCards, self.DisCard);
  657. if (num < 2)
  658. {
  659. return;
  660. }
  661. // 删除出牌人打出的牌堆
  662. int[] temp = CardHelper.Remove(self.DisCardPlayer.DisCards, self.DisCard);
  663. self.DisCardPlayer.DisCards = temp;
  664. // 碰牌玩家的手牌
  665. int[] remainCards = player.RemainCards;
  666. for (int i = 0; i < 2; i++)
  667. {
  668. remainCards = CardHelper.Remove(remainCards, self.DisCard);
  669. }
  670. player.RemainCards = remainCards;
  671. // 刻子
  672. player.KeZi.Add(new Struct.Kezi((int)HGHuangHuangConst.KeziType.PENG, self.DisCard, self.DisCardPlayer.Id));
  673. // 重置摸牌人
  674. self.DrawCardPlayer = player;
  675. self.PengPlayer = player;
  676. self.OperableList.Clear();
  677. // 重置时间和流程标记
  678. self.Time = 15;
  679. self.Flag = false;
  680. Log.Info($"玩家碰牌... 玩家ID:{player.Id}, 位置:{player.Pos}, 手牌大小:{player.RemainCards.Length}, 手牌信息:{string.Join(", ", player.RemainCards)}, 碰的牌:{self.DisCard}");
  681. // 广播
  682. foreach (Player p in room.GetAllPlayers().Values.Where(p => p != null))
  683. {
  684. RoomInfo info = ProtoHelper.RoomToProto(room, p, player);
  685. info.Time = 15;
  686. MessageHelper.SendToClient(p, new G2C_HGHHOperationPush(){info = info, OpType = 2});
  687. }
  688. }
  689. /// <summary>
  690. /// 摸牌杠(暗杠或者回杠)
  691. /// </summary>
  692. /// <param name="self"></param>
  693. /// <param name="room"></param>
  694. /// <param name="player"></param>
  695. /// <param name="card"></param>
  696. /// <returns></returns>
  697. private static int GangPaiDraw(this HGHuangHuangComponent self, Room room, Player player, int card)
  698. {
  699. int type = (int)HGHuangHuangConst.KeziType.DEFAULT;
  700. int[] remainCards = player.RemainCards;
  701. int num = CardHelper.CountCardNum(remainCards, card);
  702. if (num == 4)
  703. {
  704. for (int i = 0; i < 4; i++)
  705. {
  706. remainCards = CardHelper.Remove(remainCards, card);
  707. }
  708. player.RemainCards = remainCards;
  709. player.KeZi.Add(new Struct.Kezi((int)HGHuangHuangConst.KeziType.AN_GANG, card, player.Id));
  710. self.GangPlayer = player;
  711. self.GangPai = card;
  712. self.GangType = (int)HGHuangHuangConst.KeziType.AN_GANG;
  713. type = (int)HGHuangHuangConst.KeziType.AN_GANG;
  714. }
  715. else if (num == 1)
  716. {
  717. List<Struct.Kezi> templist = new List<Struct.Kezi>();
  718. if (player.KeZi.Count > 0)
  719. {
  720. templist = player.KeZi;
  721. }
  722. for (int i = 0; i < templist.Count; i++)
  723. {
  724. Struct.Kezi kz = templist[i];
  725. if (kz is not { Type: (int)HGHuangHuangConst.KeziType.PENG } || kz.Card != card)
  726. {
  727. continue;
  728. }
  729. player.KeZi.RemoveAt(i);
  730. remainCards = CardHelper.Remove(remainCards, card);
  731. player.KeZi.Add(new Struct.Kezi((int)HGHuangHuangConst.KeziType.HUI_GANG, card, player.Id));
  732. }
  733. player.RemainCards = remainCards;
  734. self.GangPlayer = player;
  735. self.GangPai = card;
  736. self.GangType = (int)HGHuangHuangConst.KeziType.HUI_GANG;
  737. type = (int)HGHuangHuangConst.KeziType.HUI_GANG;
  738. }
  739. return type;
  740. }
  741. /// <summary>
  742. /// 出牌杠(明杠)
  743. /// </summary>
  744. /// <param name="self"></param>
  745. /// <param name="room"></param>
  746. /// <param name="player"></param>
  747. /// <param name="card"></param>
  748. /// <returns></returns>
  749. private static int GangPaiDisCard(this HGHuangHuangComponent self, Room room, Player player, int card)
  750. {
  751. const int type = (int)HGHuangHuangConst.KeziType.DEFAULT;
  752. if (self.DisCardPlayer == null)
  753. {
  754. return type;
  755. }
  756. self.DisCardPlayer.DisCards = CardHelper.Remove(self.DisCardPlayer.DisCards, self.DisCard);
  757. for (int i = 0; i < 3; i++)
  758. {
  759. player.RemainCards = CardHelper.Remove(player.RemainCards, card);
  760. }
  761. player.KeZi.Add(new Struct.Kezi((int)HGHuangHuangConst.KeziType.MING_GANG, card, self.DisCardPlayer.Id));
  762. self.GangPlayer = player;
  763. self.GangPai = card;
  764. self.GangType = (int)HGHuangHuangConst.KeziType.MING_GANG;
  765. return (int)HGHuangHuangConst.KeziType.MING_GANG;
  766. }
  767. /// <summary>
  768. /// 检测是否有抢杠胡
  769. /// </summary>
  770. /// <param name="self"></param>
  771. /// <param name="room"></param>
  772. /// <param name="player"></param>
  773. /// <param name="card">杠的牌</param>
  774. /// <returns></returns>
  775. private static bool CheckQangGangHu(this HGHuangHuangComponent self, Room room, Player player, int card)
  776. {
  777. bool flag = false;
  778. int[] nextPos = room.GetSorcPos(player.Pos);
  779. foreach (int index in nextPos) {
  780. Player p = self.Players[index];
  781. if (p == null)
  782. {
  783. continue;
  784. }
  785. // 玩家手牌
  786. int[] tmpCards = new int[p.RemainCards.Length];
  787. Array.Copy(p.RemainCards, 0, tmpCards, 0, p.RemainCards.Length);
  788. tmpCards = CardHelper.Add(tmpCards, card);
  789. Struct.HuRes result = HGHuangHuangHelper.CheckHu(tmpCards);
  790. if (result.Type != HGHuangHuangConst.HU_DEFAULT) {
  791. flag = true;
  792. if (!self.CanHuIds.Contains(p.Id)) {
  793. self.CanHuIds.Add(p.Id);
  794. }
  795. if (!self.OperableList.Contains(p.Id)) {
  796. self.OperableList.Add(p.Id);
  797. }
  798. if (!self.GangHuIds.Contains(p.Id)) {
  799. self.GangHuIds.Add(p.Id);
  800. }
  801. p.Act = new [] { 0, 0, 0, 1, 1 };
  802. }
  803. }
  804. return flag;
  805. }
  806. /// <summary>
  807. /// 玩家操作杠
  808. /// </summary>
  809. /// <param name="self"></param>
  810. /// <param name="room"></param>
  811. /// <param name="player"></param>
  812. /// <param name="card"></param>
  813. public static void Gang(this HGHuangHuangComponent self, Room room, Player player, int card)
  814. {
  815. if (card > 0 && self.IsCanPengGang(player))
  816. {
  817. int type = (int)HGHuangHuangConst.KeziType.DEFAULT;
  818. if (self.DrawCardPlayer.Id == player.Id)
  819. {
  820. type = self.GangPaiDraw(room, player, card);
  821. }
  822. else if (self.DrawCardPlayer.Id != player.Id && self.DisCard == card)
  823. {
  824. type = self.GangPaiDisCard(room, player, card);
  825. }
  826. if (type != (int)HGHuangHuangConst.KeziType.DEFAULT)
  827. {
  828. self.OperableList.Clear();
  829. // bool flag = true;
  830. if (self.GangType == (int)HGHuangHuangConst.KeziType.HUI_GANG)
  831. {
  832. if (self.CheckQangGangHu(room, self.GangPlayer, self.GangPai))
  833. {
  834. // 当前操作玩家
  835. Player tmpPlayer = room.GetPlayer(self.CanHuIds.First());
  836. if (tmpPlayer != null)
  837. {
  838. self.CurrentPlayer = self.Players[tmpPlayer.Pos];
  839. }
  840. self.Time = 15;
  841. // flag = false;
  842. }
  843. }
  844. // 广播
  845. foreach (Player p in room.GetAllPlayers().Values.Where(p => p != null))
  846. {
  847. RoomInfo info = ProtoHelper.RoomToProto(room, p, player);
  848. info.Time = 15;
  849. MessageHelper.SendToClient(p, new G2C_HGHHOperationPush(){info = info, OpType = 3});
  850. }
  851. }
  852. }
  853. }
  854. /// <summary>
  855. /// 自摸胡牌(手动/自动)
  856. /// </summary>
  857. /// <param name="self"></param>
  858. /// <param name="room"></param>
  859. /// <param name="player"></param>
  860. private static void ZimoHuPai(this HGHuangHuangComponent self, Room room, Player player)
  861. {
  862. if (self.OperableList.Contains(player.Id) && self.CanHuIds.Contains(player.Id))
  863. {
  864. Struct.HuRes res = HGHuangHuangHelper.CheckHuType(player.KeZi, player.RemainCards, self.DrawCard);
  865. if (res.Type != HGHuangHuangConst.HU_DEFAULT)
  866. {
  867. self.OperableList.Remove(player.Id);
  868. self.CanHuIds.Remove(player.Id);
  869. self.ClickHuIds.Remove(player.Id);
  870. // 将摸的牌从手牌中移除
  871. player.RemainCards = CardHelper.Remove(player.RemainCards, self.DrawCard);
  872. self.HuResult = self.GangPlayer != null && player.Id == self.GangPlayer.Id ? (int)HGHuangHuangConst.Result.GANGKAI : (int)HGHuangHuangConst.Result.ZIMO;
  873. // 广播
  874. foreach (Player p in room.GetAllPlayers().Values.Where(p => p != null))
  875. {
  876. RoomInfo info = ProtoHelper.RoomToProto(room, p, player);
  877. info.Time = 15;
  878. MessageHelper.SendToClient(p, new G2C_HGHHOperationPush(){info = info, OpType = 4});
  879. }
  880. // 自摸胡牌结算
  881. self.SettlementHu();
  882. }
  883. self.GameOver(room);
  884. }
  885. else
  886. {
  887. Log.Error($"自摸胡牌出错, playerId={player.Id}");
  888. }
  889. }
  890. /// <summary>
  891. /// 点炮胡牌广播
  892. /// </summary>
  893. /// <param name="self"></param>
  894. /// <param name="room"></param>
  895. /// <param name="player"></param>
  896. /// <param name="huType">牌型</param>
  897. /// <param name="isGangHu">是否抢杠胡</param>
  898. private static void DianPaoHuPaiBroadcast(this HGHuangHuangComponent self, Room room, Player player, int huType, bool isGangHu)
  899. {
  900. if (isGangHu)
  901. {
  902. // 移除抢杠胡集合玩家
  903. self.GangHuIds.Remove(player.Id);
  904. // 获取杠玩家
  905. Player gangPlayer = self.GangPlayer;
  906. if (gangPlayer == null)
  907. {
  908. return;
  909. }
  910. foreach (Struct.Kezi kezi in gangPlayer.KeZi.Where(kezi => kezi.Card == self.GangPai && kezi.Type == (int)HGHuangHuangConst.KeziType.HUI_GANG))
  911. {
  912. kezi.Type = (int)HGHuangHuangConst.KeziType.PENG;
  913. }
  914. self.HuResult = (int)HGHuangHuangConst.Result.QIANGGANG;
  915. }
  916. else
  917. {
  918. // 将玩家打出的牌从出牌集合中删除
  919. if (self.DisCardPlayer.DisCards.Contains(self.DisCard))
  920. {
  921. self.DisCardPlayer.DisCards = CardHelper.Remove(self.DisCardPlayer.DisCards, self.DisCard);
  922. }
  923. self.HuResult = (int)HGHuangHuangConst.Result.DIANPAO;
  924. }
  925. player.HuCards.Add(self.GangPai);
  926. // 广播
  927. foreach (Player p in room.GetAllPlayers().Values.Where(p => p != null))
  928. {
  929. RoomInfo info = ProtoHelper.RoomToProto(room, p, player);
  930. info.Time = 15;
  931. MessageHelper.SendToClient(p, new G2C_HGHHOperationPush(){info = info, OpType = 4});
  932. }
  933. }
  934. /// <summary>
  935. /// 点炮胡牌(手动/自动)
  936. /// </summary>
  937. /// <param name="self"></param>
  938. /// <param name="room"></param>
  939. /// <param name="player"></param>
  940. private static void DianPaoHuPai(this HGHuangHuangComponent self, Room room, Player player)
  941. {
  942. int card = 0;
  943. bool isGangHU = false;
  944. if (self.GangHuIds.Contains(player.Id))
  945. {
  946. card = self.GangPai;
  947. isGangHU = true;
  948. }
  949. else
  950. {
  951. card = self.DisCard;
  952. }
  953. if (self.CanHuIds.Contains(player.Id))
  954. {
  955. int[] userCards = player.RemainCards;
  956. int[] tmpCards = new int[userCards.Length];
  957. Array.Copy(userCards, 0, tmpCards, 0, userCards.Length);
  958. tmpCards = CardHelper.Add(tmpCards, card);
  959. Struct.HuRes res = HGHuangHuangHelper.CheckHuType(player.KeZi, tmpCards, card);
  960. if (res.Type != HGHuangHuangConst.HU_DEFAULT)
  961. {
  962. if (!self.ClickHuIds.Contains(player.Id))
  963. {
  964. self.ClickHuIds.Add(player.Id);
  965. }
  966. self.CanPgIds.Clear();
  967. self.OperableList.Remove(player.Id);
  968. self.CanHuIds.Remove(player.Id);
  969. // 广播
  970. self.DianPaoHuPaiBroadcast(room, player, res.Type, isGangHU);
  971. if (self.CanHuIds.Count == 0)
  972. {
  973. // 点炮胡结算
  974. self.SettlementHu();
  975. self.GameOver(room);
  976. }
  977. else
  978. {
  979. long id = self.CanHuIds.First();
  980. Player tmpPlayer = room.GetPlayer(id);
  981. if (tmpPlayer != null)
  982. {
  983. self.CurrentPlayer = tmpPlayer;
  984. }
  985. self.Time = 15;
  986. }
  987. }
  988. }
  989. }
  990. /// <summary>
  991. /// 玩家操作胡
  992. /// </summary>
  993. /// <param name="self"></param>
  994. /// <param name="room"></param>
  995. /// <param name="player"></param>
  996. public static void Hu(this HGHuangHuangComponent self, Room room, Player player)
  997. {
  998. int r = player.RemainCards.Length % 3;
  999. switch (r)
  1000. {
  1001. case 2:
  1002. self.ZimoHuPai(room, player);
  1003. break;
  1004. case 1:
  1005. self.DianPaoHuPai(room, player);
  1006. break;
  1007. }
  1008. }
  1009. /// <summary>
  1010. /// 玩家操作过
  1011. /// </summary>
  1012. /// <param name="self"></param>
  1013. /// <param name="room"></param>
  1014. /// <param name="player"></param>
  1015. public static void Guo(this HGHuangHuangComponent self, Room room, Player player)
  1016. {
  1017. // 玩家必须在可操作列表里
  1018. if (!self.OperableList.Contains(player.Id))
  1019. {
  1020. return;
  1021. }
  1022. // 从碰杠集合中移除
  1023. self.CanPgIds.Remove(player.Id);
  1024. // 从可操作玩家集合中移除
  1025. self.OperableList.Remove(player.Id);
  1026. // 不是摸牌人,改time
  1027. if (self.DrawCardPlayer.Id != player.Id)
  1028. {
  1029. if (self.CanHuIds.Contains(player.Id))
  1030. {
  1031. self.CanHuIds.Remove(player.Id);
  1032. }
  1033. if (self.GangHuIds.Count > 0)
  1034. {
  1035. self.GangHuIds.Remove(player.Id);
  1036. if (self.GangHuIds.Count > 0)
  1037. {
  1038. // 设置操作动作玩家
  1039. if (self.CurrentPlayer.Id == player.Id)
  1040. {
  1041. self.CurrentPlayer = room.GetPlayer(self.GangHuIds.First());
  1042. self.Time = 15;
  1043. // 广播过
  1044. foreach (Player p in room.GetAllPlayers().Values.Where(p => p != null))
  1045. {
  1046. RoomInfo info = ProtoHelper.RoomToProto(room, p, player);
  1047. info.Time = 15;
  1048. MessageHelper.SendToClient(p, new G2C_HGHHOperationPush(){info = info, OpType = 5});
  1049. }
  1050. }
  1051. }
  1052. else
  1053. {
  1054. if (self.ClickHuIds.Count == 0)
  1055. {
  1056. self.DrawCardPlayer = self.GangPlayer;
  1057. self.Flag = false;
  1058. }
  1059. else
  1060. {
  1061. // 没有其他人可以胡,且有人点击胡 结算胡 游戏结束
  1062. self.SettlementHu();
  1063. self.GameOver(room);
  1064. }
  1065. }
  1066. }
  1067. else
  1068. {
  1069. if (self.OperableList.Count == 0)
  1070. {
  1071. if (self.ClickHuIds.Count > 0)
  1072. {
  1073. // 没有其他人有胡 且有人点击胡 结算胡 游戏结束
  1074. self.SettlementHu();
  1075. self.GameOver(room);
  1076. }
  1077. else
  1078. {
  1079. self.DrawCardPlayer = self.GetNextPlayer(self.DisCardPlayer.Pos);
  1080. self.Flag = false;
  1081. }
  1082. }
  1083. else
  1084. {
  1085. if (self.CurrentPlayer.Id == player.Id)
  1086. {
  1087. long opId = 0;
  1088. if (self.CanHuIds.Count > 0)
  1089. {
  1090. self.CurrentPlayer = self.Players[room.GetPlayer(self.CanHuIds.First()).Pos];
  1091. opId = self.CanHuIds.First();
  1092. }
  1093. else if (self.CanPgIds.Count > 0)
  1094. {
  1095. self.CurrentPlayer = self.Players[room.GetPlayer(self.CanPgIds.First()).Pos];
  1096. opId = self.CanPgIds.First();
  1097. }
  1098. else
  1099. {
  1100. self.CurrentPlayer = self.Players[room.GetPlayer(self.OperableList.First()).Pos];
  1101. opId = self.OperableList.First();
  1102. }
  1103. self.Time = 15;
  1104. // 广播过
  1105. foreach (Player p in room.GetAllPlayers().Values.Where(p => p != null))
  1106. {
  1107. RoomInfo info = ProtoHelper.RoomToProto(room, p, player);
  1108. info.Time = 15;
  1109. MessageHelper.SendToClient(p, new G2C_HGHHOperationPush(){info = info, OpType = 5});
  1110. }
  1111. }
  1112. }
  1113. if (self.CanHuIds.Count == 0)
  1114. {
  1115. self.GangPlayer = null;
  1116. }
  1117. }
  1118. }
  1119. else
  1120. {
  1121. if (self.CanHuIds.Contains(player.Id))
  1122. {
  1123. // 从胡牌集合中移除
  1124. self.CanHuIds.Remove(player.Id);
  1125. }
  1126. }
  1127. }
  1128. /// <summary>
  1129. /// 获取下个玩家
  1130. /// </summary>
  1131. /// <param name="self"></param>
  1132. /// <param name="curPos">当前玩家位置</param>
  1133. /// <returns></returns>
  1134. private static Player GetNextPlayer(this HGHuangHuangComponent self, int curPos)
  1135. {
  1136. return self.Players[(curPos + 1) % self.GetParent<Room>().MaxNum];
  1137. }
  1138. /// <summary>
  1139. /// 清空玩家可操作动作
  1140. /// </summary>
  1141. /// <param name="self"></param>
  1142. private static void CleanUserAct(this HGHuangHuangComponent self) {
  1143. foreach (Player player in self.Players)
  1144. {
  1145. if (player != null)
  1146. {
  1147. player.Act = new int[5];
  1148. }
  1149. }
  1150. }
  1151. /// <summary>
  1152. /// 胡牌结算
  1153. /// </summary>
  1154. /// <param name="self"></param>
  1155. private static void SettlementHu(this HGHuangHuangComponent self)
  1156. {
  1157. }
  1158. /// <summary>
  1159. /// 结束
  1160. /// </summary>
  1161. /// <param name="self"></param>
  1162. /// <param name="room"></param>
  1163. private static void GameOver(this HGHuangHuangComponent self, Room room)
  1164. {
  1165. self.State = 3;
  1166. self.Time = 60;
  1167. self.Flag = false;
  1168. foreach (Player player in self.Players)
  1169. {
  1170. if (player != null)
  1171. {
  1172. player.State = 3;
  1173. }
  1174. }
  1175. Log.Info($"牌局结束...roomId={room.RoomId}");
  1176. }
  1177. }
  1178. }