UIStartFightRoomComponentSystem.cs 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using UnityEngine;
  6. using UnityEngine.Experimental.GlobalIllumination;
  7. using UnityEngine.PlayerLoop;
  8. using UnityEngine.UI;
  9. namespace ET.Client
  10. {
  11. #region 定时器 刷新
  12. [Invoke(TimerInvokeType.fightTimeShow)]
  13. public class UIStartFightRoomComponentChecker : ATimer<UIStartFightRoomComponent>
  14. {
  15. protected override void Run(UIStartFightRoomComponent self)
  16. {
  17. try
  18. {
  19. self.Check();
  20. }
  21. catch (Exception e)
  22. {
  23. Log.Error($"idle check error: {self.Id}\n{e}");
  24. }
  25. }
  26. }
  27. [Invoke(TimerInvokeType.startFightTimeCount)]
  28. public class UIStartFightTimeCountChecker : ATimer<UIStartFightRoomComponent>
  29. {
  30. protected override void Run(UIStartFightRoomComponent self)
  31. {
  32. try
  33. {
  34. self.UpdateTimeCount();
  35. }
  36. catch (Exception e)
  37. {
  38. Log.Error($"idle check error: {self.Id}\n{e}");
  39. }
  40. }
  41. }
  42. #endregion
  43. [FriendOf(typeof(UIStartFightRoomComponent))]
  44. public static class UIStartFightRoomComponentSystem
  45. {
  46. public static void Check(this UIStartFightRoomComponent self)
  47. {
  48. self.timeTxt.text = string.Format("{0}:{1}", DateTime.Now.Hour, DateTime.Now.Minute);
  49. }
  50. public static void UpdateTimeCount(this UIStartFightRoomComponent self)
  51. {
  52. if (self.startTimeCount > 0)
  53. {
  54. self.timeCountTxt.text = self.startTimeCount.ToString();
  55. }
  56. else
  57. {
  58. if (self.startTimer > 0)
  59. TimerComponent.Instance?.Remove(ref self.startTimer);
  60. self.timeCountTxt.text = "";
  61. }
  62. self.startTimeCount = self.startTimeCount - 1;
  63. }
  64. [ObjectSystem]
  65. public class UIStartFightRoomComponentAwakeSystem : AwakeSystem<UIStartFightRoomComponent>
  66. {
  67. protected override void Awake(UIStartFightRoomComponent self, params object[] param)
  68. {
  69. ReferenceCollector rc = self.GetParent<UI>().GameObject.GetComponent<ReferenceCollector>();
  70. //头像部分
  71. self.houseIdTxt = rc.Get<GameObject>("houseIdTxt");
  72. self.gameNumTxt = rc.Get<GameObject>("gameNumTxt");
  73. self.curResidueTxt = rc.Get<GameObject>("curResidueTxt");
  74. //右上系统信息部分
  75. self.wifiImage = rc.Get<GameObject>("wifiImage");
  76. self.powerImage = rc.Get<GameObject>("powerImage");
  77. var timeTxt = rc.Get<GameObject>("timeTxt");
  78. self.timeTxt = timeTxt.GetComponent<UnityEngine.UI.Text>();
  79. self.menuBtn = rc.Get<GameObject>("menuBtn");
  80. self.menuBtn.GetComponent<Button>().onClick.AddListener(() => { self.OnMenuBtn(); });
  81. self.faceBtn = rc.Get<GameObject>("faceBtn");
  82. self.faceBtn.GetComponent<Button>().onClick.AddListener(() => { self.OnFaceBtn(); });
  83. self.videoBtn = rc.Get<GameObject>("videoBtn");
  84. self.videoBtn.GetComponent<Button>().onClick.AddListener(() => { self.OnVideoBtn(); });
  85. //菜单
  86. self.menuPanel = rc.Get<GameObject>("menuPanel");
  87. self.menuPanel.SetActive(false);
  88. self.maskBtn = rc.Get<GameObject>("maskBtn");
  89. self.maskBtn.GetComponent<Button>().onClick.AddListener(() => { self.OnMenuPanelClose(); });
  90. self.menuBackBtn = rc.Get<GameObject>("menuBackBtn");
  91. self.menuBackBtn.GetComponent<Button>().onClick.AddListener(() => { self.OnMenuPanelBack(); });
  92. self.menuQuitBtn = rc.Get<GameObject>("menuQuitBtn");
  93. self.menuQuitBtn.GetComponent<Button>().onClick.AddListener(() => { self.OnMenuPanelQuit(); });
  94. self.menuSettingBtn = rc.Get<GameObject>("menuSettingBtn");
  95. self.menuSettingBtn.GetComponent<Button>().onClick.AddListener(() => { self.OnMenuPanelSetting(); });
  96. //表情面板
  97. self.facePanel = rc.Get<GameObject>("facePanel");
  98. self.facePanel.SetActive(false);
  99. self.fastToggleBtn = rc.Get<GameObject>("fastToggleBtn");
  100. self.fastToggleBtn.GetComponent<Button>().onClick.AddListener(() => { self.OnFaceFastToggleBtn(0); });
  101. self.faceToggleBtn = rc.Get<GameObject>("faceToggleBtn");
  102. self.faceToggleBtn.GetComponent<Button>().onClick.AddListener(() => { self.OnFaceFastToggleBtn(1); });
  103. self.faceAndVideoObj = rc.Get<GameObject>("faceAndVideoObj");
  104. self.faceAndVideoObj.SetActive(false);
  105. self.facePanelCloseBtn = rc.Get<GameObject>("facePanelCloseBtn");
  106. self.facePanelCloseBtn.GetComponent<Button>().onClick.AddListener(() => { self.facePanel.SetActive(false); });
  107. //表情列表以及快捷语列表
  108. self.listFastGridBg = rc.Get<GameObject>("listFastGridBg");
  109. self.listFastGridBg.SetActive(false);
  110. self.listFastContent = rc.Get<GameObject>("listFastContent");
  111. self.gridFastItem = rc.Get<GameObject>("gridFastItem");
  112. self.listFaceGridBg = rc.Get<GameObject>("listFaceGridBg");
  113. self.listFaceGridBg.SetActive(false);
  114. self.listFaceContent = rc.Get<GameObject>("listFaceContent");
  115. self.gridFaceItem = rc.Get<GameObject>("gridFaceItem");
  116. self.shakeDiceImage1 = rc.Get<GameObject>("shakeDiceImage1");
  117. self.shakeDiceImage2 = rc.Get<GameObject>("shakeDiceImage2");
  118. self.shakeDiceImage3 = rc.Get<GameObject>("shakeDiceImage3");
  119. self.shakeDiceImage4 = rc.Get<GameObject>("shakeDiceImage4");
  120. self.timeCountTxt = rc.Get<GameObject>("timeCountTxt").GetComponent<UnityEngine.UI.Text>();
  121. //玩
  122. self.readyBtn = rc.Get<GameObject>("readyBtn");
  123. self.readyBtn.GetComponent<Button>().onClick.AddListener(() => { self.OnReadyAndInviteBtn(0); });
  124. self.inviteBtn = rc.Get<GameObject>("inviteBtn");
  125. self.inviteBtn.GetComponent<Button>().onClick.AddListener(() => { self.OnReadyAndInviteBtn(1); });
  126. self.fightCardItem = rc.Get<GameObject>("fightCardItem");
  127. self.fightCardItem.SetActive(false);
  128. GameUtil.Instance.SetCardCloneItem(self.fightCardItem,0);
  129. self.fightCardItem1 = rc.Get<GameObject>("fightCardItem1");
  130. self.fightCardItem1.SetActive(false);
  131. GameUtil.Instance.SetCardCloneItem(self.fightCardItem1, 1);
  132. for (int i = 1;i <= 4;i++)
  133. {
  134. UIStartFightRoomPlayerCom uIStartFightRoomPlayerCom = new UIStartFightRoomPlayerCom();
  135. var playerObj = rc.Get<GameObject>("player" + i);
  136. var playerIconObj = rc.Get<GameObject>("playerIcon" + i);
  137. var readyImage = rc.Get<GameObject>("readyImage" + i);
  138. var playName = rc.Get<GameObject>("playName" + i).GetComponent<Text>();
  139. var playerIconImage = playerIconObj.GetComponent<UnityEngine.UI.Image>();
  140. uIStartFightRoomPlayerCom.playerObj = playerObj;
  141. uIStartFightRoomPlayerCom.readyImage = readyImage;
  142. uIStartFightRoomPlayerCom.playerIcon = playerIconImage;
  143. uIStartFightRoomPlayerCom.playName = playName;
  144. var fightCardContentNode = rc.Get<GameObject>("fightCardContent" + i);
  145. uIStartFightRoomPlayerCom.fightCardNode = fightCardContentNode;
  146. var disCardContentNode = rc.Get<GameObject>("disCardContent" + i);
  147. uIStartFightRoomPlayerCom.disCardsNode = disCardContentNode;
  148. var haveBeenOutContentNode = rc.Get<GameObject>("haveBeenOutContent" + i);
  149. uIStartFightRoomPlayerCom.haveBeenOutContentNode = haveBeenOutContentNode;
  150. self.uIStartFightRoomPlayerComs.Add(uIStartFightRoomPlayerCom);
  151. playerObj.SetActive(false);
  152. var playChatObj = rc.Get<GameObject>("playChatObj" + i);
  153. self.playChatObjList.Add(playChatObj);
  154. }
  155. //操作
  156. self.operatorObj = rc.Get<GameObject>("operatorObj");
  157. self.operatorObj.SetActive(false);
  158. for (int i = 1;i <= 5;i++)
  159. {
  160. int operatorIndex = 1;
  161. var operatorObjBtn = rc.Get<GameObject>("operatorBtn" + i);
  162. var btn = operatorObjBtn.GetComponent<Button>();
  163. operatorIndex = i;
  164. btn.onClick.AddListener(()=>
  165. {
  166. self.OnOperatorBtn(operatorIndex);
  167. });
  168. self.operatorObj_btn.Add(operatorObjBtn);
  169. }
  170. self.Init();
  171. }
  172. }
  173. private static async void Init(this UIStartFightRoomComponent self)
  174. {
  175. self.RepeatedTimer = TimerComponent.Instance.NewRepeatedTimer(ConstValue.fightTimeRefreshTime / 2 + 100, TimerInvokeType.fightTimeShow, self);
  176. var startFightRoomInfo = self.ClientScene().GetComponent<StartFightRoomComponment>().GetStartFightRoomInfo();
  177. CommonBridge.Instance.dispathPush += DispathPush;
  178. self.readyBtn.SetActive(true);
  179. self.inviteBtn.SetActive(true);
  180. self.houseIdTxt.GetComponent<Text>().text = startFightRoomInfo.roomInfo.RoomId.ToString();
  181. self.gameNumTxt.GetComponent<Text>().text = startFightRoomInfo.roomInfo.OwnerId.ToString();
  182. self.curResidueTxt.GetComponent<Text>().text = "0";
  183. await SoundManager.Instance.PlaySound("common_playing", true);
  184. }
  185. private static async void DispathPush(Scene scene, object type)
  186. {
  187. var ui = scene.GetComponent<UIComponent>().Get(UIType.UIStartFightRoom);
  188. var startFightRoomInfo = scene.GetComponent<StartFightRoomComponment>().GetStartFightRoomInfo();
  189. switch (type)
  190. {
  191. case EventType.JoinRoomPush:
  192. {
  193. var startFightRoomComponentUI = ui.GetComponent<UIStartFightRoomComponent>();
  194. //处理其他玩家信息
  195. for (int i = 1; i < startFightRoomComponentUI.uIStartFightRoomPlayerComs.Count; i++)
  196. {
  197. startFightRoomComponentUI.uIStartFightRoomPlayerComs[i].playerObj.SetActive(false);
  198. }
  199. if (startFightRoomInfo.roomInfo.OtherInfo != null && startFightRoomInfo.roomInfo.OtherInfo.Count > 0)
  200. {
  201. for (int i = 0; i < startFightRoomInfo.roomInfo.OtherInfo.Count; i++)
  202. {
  203. var otherPlayInfo = startFightRoomInfo.roomInfo.OtherInfo[i];
  204. if (i >= startFightRoomComponentUI.uIStartFightRoomPlayerComs.Count - 1)
  205. {
  206. startFightRoomComponentUI.uIStartFightRoomPlayerComs[i + 1].playerObj.SetActive(false);
  207. startFightRoomComponentUI.uIStartFightRoomPlayerComs[i + 1].playName.text = "";
  208. }
  209. else
  210. {
  211. startFightRoomComponentUI.uIStartFightRoomPlayerComs[i + 1].playerObj.SetActive(true);
  212. startFightRoomComponentUI.uIStartFightRoomPlayerComs[i + 1].readyImage.SetActive(false);
  213. startFightRoomComponentUI.uIStartFightRoomPlayerComs[i + 1].playName.text = startFightRoomInfo.roomInfo.OtherInfo[i].name;
  214. }
  215. }
  216. }
  217. RefreshOrientation(startFightRoomInfo.roomInfo.OpPos, startFightRoomComponentUI);
  218. break;
  219. }
  220. case EventType.ReadyPush:
  221. {
  222. var startFightRoomComponent = ui.GetComponent<UIStartFightRoomComponent>();
  223. //先处理自己的信息
  224. if (startFightRoomInfo.roomInfo.MyInfo != null)
  225. {
  226. startFightRoomComponent.readyBtn.SetActive(startFightRoomInfo.roomInfo.MyInfo.state == 0);
  227. startFightRoomComponent.inviteBtn.SetActive(startFightRoomInfo.roomInfo.MyInfo.state == 0);
  228. startFightRoomComponent.uIStartFightRoomPlayerComs[0].playerObj.SetActive(true);
  229. startFightRoomComponent.faceAndVideoObj.SetActive(true);
  230. startFightRoomComponent.uIStartFightRoomPlayerComs[0].readyImage.SetActive(startFightRoomInfo.roomInfo.MyInfo.state == 1);
  231. }
  232. //处理其他玩家信息
  233. for (int i = 1;i < startFightRoomComponent.uIStartFightRoomPlayerComs.Count;i++)
  234. {
  235. startFightRoomComponent.uIStartFightRoomPlayerComs[i].playerObj.SetActive(false);
  236. }
  237. if (startFightRoomInfo.roomInfo.OtherInfo != null && startFightRoomInfo.roomInfo.OtherInfo.Count > 0)
  238. {
  239. for (int i = 0; i < startFightRoomInfo.roomInfo.OtherInfo.Count; i++)
  240. {
  241. var otherPlayInfo = startFightRoomInfo.roomInfo.OtherInfo[i];
  242. if (i >= startFightRoomComponent.uIStartFightRoomPlayerComs.Count - 1)
  243. {
  244. startFightRoomComponent.uIStartFightRoomPlayerComs[i + 1].playerObj.SetActive(false);
  245. }
  246. else
  247. {
  248. startFightRoomComponent.uIStartFightRoomPlayerComs[i + 1].playerObj.SetActive(true);
  249. startFightRoomComponent.uIStartFightRoomPlayerComs[i + 1].readyImage.SetActive(otherPlayInfo.state == 1);
  250. }
  251. }
  252. }
  253. break;
  254. }
  255. case EventType.ReadyStartPush:
  256. {
  257. //开始 倒计时
  258. Log.Error("@@@@@ 倒计时: " + startFightRoomInfo.readyStartTimeCount);
  259. var startFightRoomComponentUI = ui.GetComponent<UIStartFightRoomComponent>();
  260. startFightRoomComponentUI.startTimeCount = startFightRoomInfo.readyStartTimeCount;
  261. startFightRoomComponentUI.startTimer = TimerComponent.Instance.NewRepeatedTimer(ConstValue.fightTimeRefreshTime / 2 + 100, TimerInvokeType.startFightTimeCount, startFightRoomComponentUI);
  262. break;
  263. }
  264. case EventType.GameStartPush:
  265. case EventType.GameDrawCardPush:
  266. case EventType.GameOperationPush:
  267. case EventType.KickPush:
  268. {
  269. //正式开始 发牌
  270. var startFightRoomComponentUI = ui.GetComponent<UIStartFightRoomComponent>();
  271. RefreshPlayCardList(scene, startFightRoomInfo, startFightRoomComponentUI);
  272. break;
  273. }
  274. case EventType.GameDisCardPush:
  275. {
  276. //其他玩家出推送,处理自己的操作
  277. var startFightRoomComponentUI = ui.GetComponent<UIStartFightRoomComponent>();
  278. var roomInfo = startFightRoomInfo.roomInfo;
  279. var myCardInfo = roomInfo.MyInfo;
  280. var roleInfo = scene.GetComponent<RoleInfoComponment>().GetRoleInfo();
  281. if (myCardInfo != null && myCardInfo.cardInfo != null && myCardInfo.cardInfo.Acts.Count > 0 && roleInfo.roleId == myCardInfo.id)
  282. {
  283. //处理操作按钮
  284. for (int i = 0;i < startFightRoomComponentUI.operatorObj_btn.Count;i++)
  285. {
  286. startFightRoomComponentUI.operatorObj_btn[i].SetActive(false);
  287. }
  288. for (int i = 0; i < myCardInfo.cardInfo.Acts.Count; i++)
  289. {
  290. if (myCardInfo.cardInfo.Acts[i] == 1)
  291. {
  292. if (!startFightRoomComponentUI.operatorObj.activeInHierarchy)
  293. {
  294. startFightRoomComponentUI.operatorObj.SetActive(true);
  295. }
  296. startFightRoomComponentUI.operatorObj_btn[i].SetActive(true);
  297. }
  298. }
  299. //重置所有牌的状态
  300. var parentNode = startFightRoomComponentUI.uIStartFightRoomPlayerComs[0].fightCardNode;
  301. for (int i = 0;i < parentNode.transform.childCount;i++)
  302. {
  303. StartFightCardItem startFightCardItem = parentNode.transform.GetChild(i).gameObject.GetComponent<StartFightCardItem>();
  304. startFightCardItem.GetDown();
  305. }
  306. GameObjectPool.Instance.ClearRealySelCardList();
  307. //抬起
  308. if (myCardInfo.cardInfo != null && myCardInfo.cardInfo.ActInfo != null && myCardInfo.cardInfo.ActInfo.Count > 0 && roleInfo.roleId == myCardInfo.id)
  309. {
  310. for (int i = 0; i < myCardInfo.cardInfo.ActInfo.Count; i++)
  311. {
  312. //根据服务器信息 弹起响应的牌
  313. DisCardPushWithOperator(parentNode.transform, myCardInfo.cardInfo.ActInfo[i]);
  314. }
  315. }
  316. //记录当前出的牌
  317. GameUtil.Instance.curCardVal = startFightRoomInfo.roomInfo.CurDisCard;
  318. Log.Error("当前出的牌: " + GameUtil.Instance.curCardVal);
  319. }
  320. if (startFightRoomInfo.roomInfo.Time > 0)
  321. {
  322. startFightRoomComponentUI.startTimeCount = startFightRoomInfo.roomInfo.Time;
  323. startFightRoomComponentUI.startTimer = TimerComponent.Instance.NewRepeatedTimer(ConstValue.fightTimeRefreshTime / 2 + 100, TimerInvokeType.startFightTimeCount, startFightRoomComponentUI);
  324. }
  325. else
  326. {
  327. Log.Error("清空回合倒计时");
  328. if (startFightRoomComponentUI.startTimer > 0)
  329. {
  330. startFightRoomComponentUI.timeCountTxt.text = "";
  331. TimerComponent.Instance?.Remove(ref startFightRoomComponentUI.startTimer);
  332. }
  333. }
  334. break;
  335. }
  336. case EventType.HGHHSettlementPush:
  337. {
  338. Log.Error("@#@#@@@@@ " + startFightRoomInfo.settlementInfo.CurRound);
  339. await UIHelper.Create(scene, UIType.UISettle, UILayer.Mid);
  340. break;
  341. }
  342. }
  343. }
  344. #region 右上系统部分
  345. public static void OnMenuBtn(this UIStartFightRoomComponent self)
  346. {
  347. self.menuPanel.SetActive(!self.menuPanel.activeInHierarchy);
  348. }
  349. public static async void OnFaceBtn(this UIStartFightRoomComponent self)
  350. {
  351. await SoundManager.Instance.PlaySound("clickbtnsound");
  352. self.facePanel.SetActive(true);
  353. self.LoadChatData(0);
  354. }
  355. public static void OnVideoBtn(this UIStartFightRoomComponent self)
  356. {
  357. }
  358. #endregion
  359. #region 菜单
  360. public static void OnMenuPanelClose(this UIStartFightRoomComponent self)
  361. {
  362. self.menuPanel.SetActive(false);
  363. }
  364. public static async void OnMenuPanelBack(this UIStartFightRoomComponent self)
  365. {
  366. Action<object> myAction = (param) =>
  367. {
  368. int result = (int)param;
  369. if (result == 1)
  370. {
  371. self.ReturnMainUI().Coroutine();
  372. }
  373. };
  374. Dictionary<string,object> dic = new Dictionary<string, object>()
  375. {
  376. { "callback",myAction},
  377. { "title","提示"},
  378. { "content","返回大厅,你的房间仍会保留。"},
  379. { "yesTxt","确定"},
  380. { "cancelTxt","取消"},
  381. };
  382. await SoundManager.Instance.PlaySound("clickbtnsound");
  383. await UIHelper.Create(self.ClientScene(), UIType.UIAlert, UILayer.High, dic);
  384. }
  385. public static void OnMenuPanelQuit(this UIStartFightRoomComponent self)
  386. {
  387. }
  388. public static void OnMenuPanelSetting(this UIStartFightRoomComponent self)
  389. {
  390. }
  391. #endregion
  392. #region 表情
  393. public static async void OnFaceFastToggleBtn(this UIStartFightRoomComponent self,int index)
  394. {
  395. await SoundManager.Instance.PlaySound("clickbtnsound");
  396. self.LoadChatData(index);
  397. }
  398. static async void LoadChatData(this UIStartFightRoomComponent self, int index)
  399. {
  400. self.listFaceGridBg.SetActive(false);
  401. self.listFastGridBg.SetActive(false);
  402. string[] abName = new string[] { "com_bg1", "com_bg2" };
  403. await ResourcesComponentHelper.Instance.LoadSprite(self.ClientScene(), "commonatlas");
  404. Sprite sprite = ResourcesComponentHelper.Instance.GetSprite("commonatlas", abName[0]);
  405. Sprite sprite1 = ResourcesComponentHelper.Instance.GetSprite("commonatlas", abName[1]);
  406. self.fastToggleBtn.GetComponent<UnityEngine.UI.Image>().sprite = index == 0 ? sprite: sprite1;
  407. self.faceToggleBtn.GetComponent<UnityEngine.UI.Image>().sprite = index == 1 ? sprite : sprite1;
  408. self.CleanChatItem(index);
  409. if (index == 0)
  410. {
  411. self.listFastGridBg.SetActive(true);
  412. var startFightRoomInfo = self.ClientScene().GetComponent<StartFightRoomComponment>().GetStartFightRoomInfo();
  413. int sexType = startFightRoomInfo.roomInfo.MyInfo.sex;
  414. var fightConfig = FightChatConfigCategory.Instance.GetAll();
  415. var achievedDic = fightConfig.Where(kvp => kvp.Value.Type == sexType);
  416. foreach (var item in achievedDic)
  417. {
  418. if (GameObjectPool.Instance.chatFastItemPools.Count > 0)
  419. {
  420. GameObject uiFastItem = GameObjectPool.Instance.chatFastItemPools[0];
  421. GameObjectPool.Instance.chatFastItemPools.RemoveAt(0);
  422. uiFastItem.SetActive(true);
  423. uiFastItem.transform.SetParent(self.listFastContent.transform, false);
  424. var txt = uiFastItem.GetComponentInChildren<UnityEngine.UI.Text>();
  425. txt.text = item.Value.Desc;
  426. var btn = txt.gameObject.GetComponent<Button>();
  427. btn.onClick.RemoveAllListeners();
  428. btn.onClick.AddListener(async () =>
  429. {
  430. Log.Error("btn click1: " + item.Value.Desc + " vedio: " + item.Value.VedioPath);
  431. await SoundManager.Instance.PlaySound(item.Value.VedioPath);
  432. self.facePanel.SetActive(false);
  433. self.playChatObjList[0].SetActive(true);
  434. var playChatTxt = self.playChatObjList[0].GetComponentInChildren<UnityEngine.UI.Text>();
  435. playChatTxt.text = item.Value.Desc;
  436. await TimerComponent.Instance.WaitAsync(3000);
  437. self.playChatObjList[0].SetActive(false);
  438. });
  439. }
  440. else
  441. {
  442. var uiFastItem = GameUtil.Instance.InitializeObj(self.gridFastItem);
  443. uiFastItem.gameObject.SetActive(true);
  444. uiFastItem.transform.SetParent(self.listFastContent.transform, false);
  445. var txt = uiFastItem.GetComponentInChildren<UnityEngine.UI.Text>();
  446. txt.text = item.Value.Desc;
  447. var btn = txt.gameObject.GetComponent<Button>();
  448. btn.onClick.RemoveAllListeners();
  449. btn.onClick.AddListener(async () =>
  450. {
  451. Log.Error("btn click1: " + item.Value.Desc + " vedio: " + item.Value.VedioPath);
  452. await SoundManager.Instance.PlaySound(item.Value.VedioPath);
  453. self.facePanel.SetActive(false);
  454. self.playChatObjList[0].SetActive(true);
  455. var playChatTxt = self.playChatObjList[0].GetComponentInChildren<UnityEngine.UI.Text>();
  456. playChatTxt.text = item.Value.Desc;
  457. await TimerComponent.Instance.WaitAsync(3000);
  458. self.playChatObjList[0].SetActive(false);
  459. });
  460. }
  461. }
  462. }
  463. else
  464. {
  465. }
  466. }
  467. static void CleanChatItem(this UIStartFightRoomComponent self,int index)
  468. {
  469. Transform node = null;
  470. List<GameObject> list = null;
  471. if (index == 0)
  472. {
  473. node = self.listFastContent.transform;
  474. list = GameObjectPool.Instance.chatFastItemPools;
  475. }
  476. else
  477. {
  478. node = self.listFaceContent.transform;
  479. list = GameObjectPool.Instance.chatFaceItemPools;
  480. }
  481. for (int i = 0; i < node.childCount; i++)
  482. {
  483. var child = node.GetChild(i);
  484. list.Add(child.gameObject);
  485. child.gameObject.SetActive(false);
  486. }
  487. }
  488. #endregion
  489. #region 邀请以及准备
  490. public static void OnReadyAndInviteBtn(this UIStartFightRoomComponent self, int index)
  491. {
  492. if (index == 0)
  493. {
  494. self.ReadyRes().Coroutine();
  495. }
  496. else
  497. {
  498. //邀请
  499. }
  500. }
  501. #endregion
  502. public static void SetBattery()
  503. {
  504. //var level = SystemInfo.batteryLevel == -1 ? 1 : SystemInfo.batteryLevel;
  505. //batteryLevelImg.fillAmount = level;
  506. //batteryTxt.text = (level * 100).ToString() + "%";
  507. //var isCharging = SystemInfo.batteryStatus == BatteryStatus.Charging;
  508. //charging.gameObject.SetActive(isCharging);
  509. }
  510. static async ETTask ReturnMainUI(this UIStartFightRoomComponent self)
  511. {
  512. var scene = self.ClientScene();
  513. await UIHelper.Remove(scene, UIType.UIStartFightRoom);
  514. var startFightRoomInfo = scene.GetComponent<StartFightRoomComponment>().GetStartFightRoomInfo();
  515. Dictionary<string, object> dic = new Dictionary<string, object>()
  516. {
  517. { "result",1},
  518. { "roomId",startFightRoomInfo.roomInfo.RoomId.ToString()}
  519. };
  520. await UIHelper.Create(scene, UIType.UIMain, UILayer.Hidden, dic);
  521. }
  522. static async ETTask ReadyRes(this UIStartFightRoomComponent self)
  523. {
  524. //try
  525. {
  526. var scene = self.ClientScene();
  527. var session = scene.GetComponent<SessionComponent>().Session;
  528. if (session != null)
  529. {
  530. G2C_HGHHReady g2Ready = (G2C_HGHHReady)await session.Call(
  531. new C2G_HGHHReady() { });
  532. if (g2Ready.Error != ErrorCode.ERR_Success)
  533. {
  534. Log.Error($"g2Ready错误...errCode={g2Ready.Error}" + " mess: " + g2Ready.Message);
  535. return;
  536. }
  537. }
  538. }
  539. //catch (Exception e)
  540. //{
  541. // Log.Error($"准备出错...{e.Message}");
  542. //}
  543. }
  544. public static async void OnCloseAsync(this UIStartFightRoomComponent self)
  545. {
  546. await UIHelper.Remove(self.ClientScene(),UIType.UIStartFightRoom);
  547. }
  548. //操作请求
  549. public static async void OnOperatorBtn(this UIStartFightRoomComponent self, int operatorIndex)
  550. {
  551. var startFightRoomInfo = GameUtil.Instance.GetSceneComponent().GetComponent<StartFightRoomComponment>().GetStartFightRoomInfo();
  552. int sexType = startFightRoomInfo.roomInfo.MyInfo.sex;
  553. switch (operatorIndex)
  554. {
  555. //1-5 吃碰杠胡过
  556. case 1:
  557. {
  558. //吃
  559. //var list = GameObjectPool.Instance.GetRealySelCardList();
  560. //if (list == null || list.Count <= 0 || list.Count > 3)
  561. //{
  562. // await CommonUtil.Instance.OpenCommonServerMsgPanel("出牌不符合条件,请重新调整 " + string.Join(", ", list));
  563. // return;
  564. //}
  565. //var isSequence = GameUtil.Instance.CheckIsSequence(list);
  566. //if (!isSequence)
  567. //{
  568. // await CommonUtil.Instance.OpenCommonServerMsgPanel("出牌不符合条件,请重新调整 " + string.Join(", ", list));
  569. // return;
  570. //}
  571. int cardVal = GameUtil.Instance.curRequestCardVal;
  572. Log.Error("当前吃牌请求发送的值: " + cardVal);
  573. Dictionary<string, object> dic = new Dictionary<string, object>()
  574. {
  575. { "OpType",operatorIndex},
  576. { "Card",cardVal}
  577. };
  578. await RequestServerUtil.Instance.OpenRequestServer(HGHHMessage.C2G_HGHHOperation, dic,async (messageObj, errorCode) =>
  579. {
  580. if (errorCode != ErrorCode.ERR_Success)
  581. {
  582. await CommonUtil.Instance.OpenCommonServerMsgPanel($"操作失败,errCode={errorCode},operatorType={operatorIndex}");
  583. return;
  584. }
  585. string soundStrType = sexType == 0 ? GameSetting.Instance.disCardBoySoundName : GameSetting.Instance.disCardGirlSoundName;
  586. await SoundManager.Instance.PlaySound(string.Concat(soundStrType, "chi"));
  587. self.operatorObj.SetActive(false);
  588. });
  589. break;
  590. }
  591. case 2:
  592. case 3:
  593. case 5:
  594. {
  595. var cardType = 0;
  596. if (operatorIndex == 2)
  597. {
  598. var list = GameObjectPool.Instance.GetRealySelCardList();
  599. cardType = list[0];
  600. }
  601. //peng 杠 guo
  602. Dictionary<string, object> dic = new Dictionary<string, object>()
  603. {
  604. { "OpType",operatorIndex},
  605. { "Card",cardType}
  606. };
  607. await RequestServerUtil.Instance.OpenRequestServer(HGHHMessage.C2G_HGHHOperation, dic, async (messageObj, errorCode) =>
  608. {
  609. if (errorCode != ErrorCode.ERR_Success)
  610. {
  611. await CommonUtil.Instance.OpenCommonServerMsgPanel($"操作失败,errCode={errorCode},operatorType={operatorIndex}");
  612. return;
  613. }
  614. self.operatorObj.SetActive(false);
  615. if (operatorIndex == 2 || operatorIndex == 3)
  616. {
  617. string soundStrType = sexType == 0 ? GameSetting.Instance.disCardBoySoundName : GameSetting.Instance.disCardGirlSoundName;
  618. string destSoundStr = operatorIndex == 2? "peng": "hu";
  619. await SoundManager.Instance.PlaySound(string.Concat(soundStrType, destSoundStr));
  620. }
  621. });
  622. break;
  623. }
  624. case 4:
  625. {
  626. //胡
  627. int cardVal = GameUtil.Instance.curRequestCardVal;
  628. Log.Error("当前杠牌请求发送的值: " + cardVal);
  629. Dictionary<string, object> dic = new Dictionary<string, object>()
  630. {
  631. { "OpType",operatorIndex},
  632. { "Card",cardVal}
  633. };
  634. await RequestServerUtil.Instance.OpenRequestServer(HGHHMessage.C2G_HGHHOperation, dic, async (messageObj, errorCode) =>
  635. {
  636. if (errorCode != ErrorCode.ERR_Success)
  637. {
  638. await CommonUtil.Instance.OpenCommonServerMsgPanel($"操作失败,errCode={errorCode},operatorType={operatorIndex}");
  639. return;
  640. }
  641. self.operatorObj.SetActive(false);
  642. string soundStrType = sexType == 0 ? GameSetting.Instance.disCardBoySoundName : GameSetting.Instance.disCardGirlSoundName;
  643. await SoundManager.Instance.PlaySound(string.Concat(soundStrType, "gang"));
  644. });
  645. break;
  646. }
  647. }
  648. }
  649. public static async void RefreshPlayCardList(Scene scene,StartFightRoomInfo startFightRoomInfo, UIStartFightRoomComponent startFightRoomComponentUI)
  650. {
  651. var allPos = GetPosList(startFightRoomInfo.roomInfo.MyInfo.pos);
  652. List<PlayerInfo> allPlayerInfo = new List<PlayerInfo>();
  653. allPlayerInfo.Add(startFightRoomInfo.roomInfo.MyInfo);
  654. allPlayerInfo.AddRange(startFightRoomInfo.roomInfo.OtherInfo);
  655. var roleInfo = scene.GetComponent<RoleInfoComponment>().GetRoleInfo();
  656. for (int i = 0; i < allPos.Count; i++)
  657. {
  658. var playInfo = GetOtherPlayInfoByPos(allPlayerInfo, allPos[i]);
  659. if (playInfo == null)
  660. {
  661. startFightRoomComponentUI.uIStartFightRoomPlayerComs[i].playerObj.SetActive(false);
  662. }
  663. else
  664. {
  665. startFightRoomComponentUI.uIStartFightRoomPlayerComs[i].playerObj.SetActive(true);
  666. startFightRoomComponentUI.uIStartFightRoomPlayerComs[i].readyImage.SetActive(false);
  667. //身上的牌列表
  668. var fightCardParentNode = startFightRoomComponentUI.uIStartFightRoomPlayerComs[i].fightCardNode;
  669. //已出过牌的列表
  670. var disCardParentNode = startFightRoomComponentUI.uIStartFightRoomPlayerComs[i].disCardsNode;
  671. //操作过的 如 吃 碰 杠 列表
  672. var haveBeenOutContentNode = startFightRoomComponentUI.uIStartFightRoomPlayerComs[i].haveBeenOutContentNode;
  673. //playInfo.cardInfo.RemainCards
  674. if (roleInfo.roleId == playInfo.id)
  675. {
  676. playInfo.cardInfo.RemainCards.Sort();
  677. Log.Error("@@@@@@### RemainCards: " + string.Join(",", playInfo.cardInfo.RemainCards) + " Count: " + playInfo.cardInfo.RemainCards.Count);
  678. }
  679. int type = i;
  680. if (i == 0 || i == 2)
  681. {
  682. type = 0;
  683. }
  684. CleanCardItemList(fightCardParentNode.transform, 0);
  685. for (int p = 0; p < playInfo.cardInfo.RemainCardsNum; p++)
  686. {
  687. //if (GameObjectPool.Instance.fightCardItemPools.Count > 0 && GameObjectPool.Instance.fightCardItemPools.ContainsKey(type) && GameObjectPool.Instance.fightCardItemPools[type].Count > 0)
  688. //{
  689. // GameObject uifightItem = GameObjectPool.Instance.fightCardItemPools[type][0];
  690. // GameObjectPool.Instance.fightCardItemPools[type].RemoveAt(0);
  691. // uifightItem.gameObject.SetActive(true);
  692. // uifightItem.transform.SetParent(fightCardParentNode.transform, false);
  693. // if (roleInfo.roleId == playInfo.id)
  694. // {
  695. // var value = playInfo.cardInfo.RemainCards[p];
  696. // StartFightCardItem startFightCardItem = uifightItem.GetComponent<StartFightCardItem>();
  697. // if (startFightCardItem == null)
  698. // startFightCardItem = uifightItem.AddComponent<StartFightCardItem>();
  699. // startFightCardItem.Init(uifightItem.GetComponentInChildren<UnityEngine.UI.Image>(), value, (val) =>
  700. // {
  701. // if (playInfo.pos != startFightRoomInfo.roomInfo.OpPos || playInfo.id != startFightRoomInfo.roomInfo.OpId)
  702. // {
  703. // Log.Error($"@@@ 不是自己回合 state: {playInfo.state} ===>opPos: {startFightRoomInfo.roomInfo.OpPos} ===> ID:{playInfo.id} ===> opId: {startFightRoomInfo.roomInfo.OpId}");
  704. // return;
  705. // }
  706. // DisCardRequest(val, startFightRoomComponentUI).Coroutine();
  707. // });
  708. // }
  709. // else
  710. // {
  711. // string spiring = "";
  712. // switch (i)
  713. // {
  714. // case 1:
  715. // {
  716. // //右
  717. // spiring = string.Concat(GameSetting.Instance.otherPlayCardSpiteNameByRight, "0");
  718. // break;
  719. // }
  720. // case 2:
  721. // {
  722. // //shang
  723. // spiring = string.Concat(GameSetting.Instance.selfPlayCardCenterSpiteName, "0");
  724. // break;
  725. // }
  726. // case 3:
  727. // {
  728. // //zuo
  729. // spiring = string.Concat(GameSetting.Instance.otherPlayCardSpiteNameByLeft, "0");
  730. // break;
  731. // }
  732. // }
  733. // var sprite = await GameObjectPool.Instance.AcquireSprite(spiring);
  734. // UnityEngine.UI.Image icon = uifightItem.GetComponentInChildren<UnityEngine.UI.Image>();
  735. // icon.sprite = sprite;
  736. // var btn = icon.gameObject.GetComponent<Button>();
  737. // btn.onClick.RemoveAllListeners();
  738. // //btn.onClick.AddListener(() =>
  739. // //{
  740. // // Log.Error("card Click...");
  741. // //});
  742. // }
  743. //}
  744. //else
  745. {
  746. if (roleInfo.roleId == playInfo.id)
  747. {
  748. var uifightItem = GameUtil.Instance.InitializeObj(GameUtil.Instance.GetCardCloneItem(0));
  749. uifightItem.SetActive(true);
  750. uifightItem.transform.SetParent(fightCardParentNode.transform, false);
  751. var value = playInfo.cardInfo.RemainCards[p];
  752. StartFightCardItem startFightCardItem = uifightItem.GetComponent<StartFightCardItem>();
  753. if (startFightCardItem == null)
  754. startFightCardItem = uifightItem.AddComponent<StartFightCardItem>();
  755. startFightCardItem.Init(uifightItem.GetComponentInChildren<UnityEngine.UI.Image>(), value, (val) =>
  756. {
  757. if (playInfo.pos != startFightRoomInfo.roomInfo.OpPos || playInfo.id != startFightRoomInfo.roomInfo.OpId)
  758. {
  759. Log.Error($"@@@ 不是自己回合 state: {playInfo.state} ===>opPos: {startFightRoomInfo.roomInfo.OpPos} ===> ID:{playInfo.id} ===> opId: {startFightRoomInfo.roomInfo.OpId}");
  760. return;
  761. }
  762. DisCardRequest(val, startFightRoomComponentUI).Coroutine();
  763. });
  764. }
  765. else
  766. {
  767. string spiring = "";
  768. Vector2 sizeDelta = Vector2.zero;
  769. switch (i)
  770. {
  771. case 1:
  772. {
  773. //右
  774. spiring = string.Concat(GameSetting.Instance.otherPlayCardSpiteNameByRight, "0");
  775. sizeDelta = GameUtil.Instance.otherHandCardSize;
  776. break;
  777. }
  778. case 2:
  779. {
  780. //shang
  781. spiring = string.Concat(GameSetting.Instance.selfPlayCardCenterSpiteName, "0");
  782. sizeDelta = new Vector2(GameUtil.Instance.otherHandCardSize.y, GameUtil.Instance.otherHandCardSize.x);
  783. break;
  784. }
  785. case 3:
  786. {
  787. //zuo
  788. spiring = string.Concat(GameSetting.Instance.otherPlayCardSpiteNameByLeft, "0");
  789. sizeDelta = GameUtil.Instance.otherHandCardSize;
  790. break;
  791. }
  792. }
  793. var uifightItem = GameUtil.Instance.InitializeObj(GameUtil.Instance.GetCardCloneItem(1));
  794. uifightItem.SetActive(true);
  795. uifightItem.transform.SetParent(fightCardParentNode.transform, false);
  796. var sprite = await GameObjectPool.Instance.AcquireSprite(spiring);
  797. UnityEngine.UI.Image icon = uifightItem.GetComponentInChildren<UnityEngine.UI.Image>();
  798. icon.sprite = sprite;
  799. var btn = icon.gameObject.GetComponent<Button>();
  800. btn.onClick.RemoveAllListeners();
  801. icon.gameObject.GetComponent<RectTransform>().sizeDelta = sizeDelta;
  802. }
  803. }
  804. startFightRoomComponentUI.uIStartFightRoomPlayerComs[i].playName.text = playInfo.name;
  805. }
  806. //已经出过的牌列表
  807. type = i;
  808. if (i == 0 || i == 2)
  809. {
  810. type = 0;
  811. }
  812. CleanCardItemList(disCardParentNode.transform, 1);
  813. if (playInfo.cardInfo.DisCards != null && playInfo.cardInfo.DisCards.Count > 0)
  814. {
  815. disCardParentNode.transform.parent.gameObject.SetActive(true);
  816. disCardParentNode.SetActive(true);
  817. Log.Error("@@@@@@### disCarsd: " + string.Join(",",playInfo.cardInfo.DisCards));
  818. for (int l = 0; l < playInfo.cardInfo.DisCards.Count; l++)
  819. {
  820. int value = playInfo.cardInfo.DisCards[l];
  821. //if (GameObjectPool.Instance.disCardItemPools.Count > 0 && GameObjectPool.Instance.disCardItemPools.ContainsKey(type) && GameObjectPool.Instance.disCardItemPools[type].Count > 0)
  822. //{
  823. // GameObject uiDisItem = GameObjectPool.Instance.disCardItemPools[type][0];
  824. // GameObjectPool.Instance.disCardItemPools[type].RemoveAt(0);
  825. // uiDisItem.gameObject.SetActive(true);
  826. // uiDisItem.transform.SetParent(disCardParentNode.transform, false);
  827. // string spiring = "";
  828. // Vector2 sizeDelta = Vector2.zero;
  829. // if (roleInfo.roleId == playInfo.id)
  830. // {
  831. // spiring = string.Concat(GameSetting.Instance.selfPlayCardShowSpiteName, value);
  832. // sizeDelta = GameUtil.Instance.myShowCard;
  833. // }
  834. // else
  835. // {
  836. // switch (i)
  837. // {
  838. // case 1:
  839. // {
  840. // //右
  841. // spiring = string.Concat(GameSetting.Instance.otherPlayCardSpiteNameByRight, value);
  842. // break;
  843. // }
  844. // case 2:
  845. // {
  846. // //shang
  847. // spiring = string.Concat(GameSetting.Instance.selfPlayCardCenterSpiteName, value);
  848. // break;
  849. // }
  850. // case 3:
  851. // {
  852. // //zuo
  853. // spiring = string.Concat(GameSetting.Instance.otherPlayCardSpiteNameByLeft, value);
  854. // sizeDelta = GameUtil.Instance.otherLeftCardSize;
  855. // break;
  856. // }
  857. // }
  858. // }
  859. // var sprite = await GameObjectPool.Instance.AcquireSprite(spiring);
  860. // UnityEngine.UI.Image icon = uiDisItem.GetComponentInChildren<UnityEngine.UI.Image>();
  861. // icon.sprite = sprite;
  862. // icon.gameObject.GetComponent<RectTransform>().sizeDelta = sizeDelta;
  863. //}
  864. //else
  865. {
  866. string spiring = "";
  867. Vector2 sizeDelta = Vector2.zero;
  868. if (roleInfo.roleId == playInfo.id)
  869. {
  870. spiring = string.Concat(GameSetting.Instance.selfPlayCardShowSpiteName, value);
  871. sizeDelta = GameUtil.Instance.myShowCard;
  872. }
  873. else
  874. {
  875. switch (i)
  876. {
  877. case 1:
  878. {
  879. //右
  880. spiring = string.Concat(GameSetting.Instance.otherPlayCardSpiteNameByRight, value);
  881. sizeDelta = GameUtil.Instance.otherLeftCardSize;
  882. break;
  883. }
  884. case 2:
  885. {
  886. //shang
  887. spiring = string.Concat(GameSetting.Instance.selfPlayCardCenterSpiteName, value);
  888. sizeDelta = new Vector2(GameUtil.Instance.otherLeftCardSize.y, GameUtil.Instance.otherLeftCardSize.x);
  889. break;
  890. }
  891. case 3:
  892. {
  893. //zuo
  894. spiring = string.Concat(GameSetting.Instance.otherPlayCardSpiteNameByLeft, value);
  895. sizeDelta = GameUtil.Instance.otherLeftCardSize;
  896. break;
  897. }
  898. }
  899. }
  900. var uiDisItem = GameUtil.Instance.InitializeObj(GameUtil.Instance.GetCardCloneItem(roleInfo.roleId == playInfo.id?0:1));
  901. uiDisItem.SetActive(true);
  902. uiDisItem.transform.SetParent(disCardParentNode.transform, false);
  903. var sprite = await GameObjectPool.Instance.AcquireSprite(spiring);
  904. UnityEngine.UI.Image icon = uiDisItem.GetComponentInChildren<UnityEngine.UI.Image>();
  905. icon.sprite = sprite;
  906. icon.gameObject.GetComponent<RectTransform>().sizeDelta = sizeDelta;
  907. }
  908. }
  909. }
  910. //已经操作过 如 碰 吃刚列表
  911. type = i;
  912. if (i == 0 || i == 2)
  913. {
  914. type = 0;
  915. }
  916. CleanCardItemList(haveBeenOutContentNode.transform,2);
  917. if (playInfo.cardInfo.UsedInfo != null && playInfo.cardInfo.UsedInfo.Count > 0)
  918. {
  919. haveBeenOutContentNode.transform.parent.gameObject.SetActive(true);
  920. haveBeenOutContentNode.SetActive(true);
  921. var len = playInfo.cardInfo.UsedInfo.Count;
  922. for (int l = 0;l < playInfo.cardInfo.UsedInfo.Count;l++)
  923. {
  924. //这里只存一张 根据类型 自己去补
  925. ActInfo actInfo = playInfo.cardInfo.UsedInfo[l];
  926. List<int> havCardVals = null;
  927. ActInfoType actInfoType = (ActInfoType)actInfo.Type;
  928. switch (actInfoType)
  929. {
  930. case ActInfoType.LightPole:
  931. case ActInfoType.BackPole:
  932. case ActInfoType.DarkPole:
  933. {
  934. havCardVals = new List<int>() { actInfo.Card, actInfo.Card, actInfo.Card, actInfo.Card};
  935. break;
  936. }
  937. case ActInfoType.Peng:
  938. {
  939. havCardVals = new List<int>() { actInfo.Card, actInfo.Card, actInfo.Card};
  940. break;
  941. }
  942. case ActInfoType.Chi:
  943. {
  944. havCardVals = new List<int>() { actInfo.Card, actInfo.Card + 1, actInfo.Card + 2};
  945. break;
  946. }
  947. }
  948. for (int k = 0;k < havCardVals.Count;k++)
  949. {
  950. Log.Error("##@###@@@@@");
  951. //if (GameObjectPool.Instance.havCardItemPools.Count > 0 && GameObjectPool.Instance.havCardItemPools.ContainsKey(type) && GameObjectPool.Instance.havCardItemPools[type].Count > 0)
  952. //{
  953. // GameObject uiHavItem = GameObjectPool.Instance.havCardItemPools[type][0];
  954. // GameObjectPool.Instance.havCardItemPools[type].RemoveAt(0);
  955. // uiHavItem.gameObject.SetActive(true);
  956. // uiHavItem.transform.SetParent(haveBeenOutContentNode.transform, false);
  957. // string spiring = "";
  958. // if (roleInfo.roleId == playInfo.id)
  959. // {
  960. // spiring = string.Concat(GameSetting.Instance.selfPlayCardShowSpiteName, havCardVals[k]);
  961. // }
  962. // else
  963. // {
  964. // switch (i)
  965. // {
  966. // case 1:
  967. // {
  968. // //右
  969. // spiring = string.Concat(GameSetting.Instance.otherPlayCardSpiteNameByRight, havCardVals[k]);
  970. // break;
  971. // }
  972. // case 2:
  973. // {
  974. // //shang
  975. // spiring = string.Concat(GameSetting.Instance.selfPlayCardCenterSpiteName, havCardVals[k]);
  976. // break;
  977. // }
  978. // case 3:
  979. // {
  980. // //zuo
  981. // spiring = string.Concat(GameSetting.Instance.otherPlayCardSpiteNameByLeft, havCardVals[k]);
  982. // break;
  983. // }
  984. // }
  985. // }
  986. // var sprite = await GameObjectPool.Instance.AcquireSprite(spiring);
  987. // UnityEngine.UI.Image icon = uiHavItem.GetComponentInChildren<UnityEngine.UI.Image>();
  988. // if(icon != null)
  989. // icon.sprite = sprite;
  990. //}
  991. //else
  992. {
  993. string spiring = "";
  994. Vector2 sizeDelta = Vector2.zero;
  995. if (roleInfo.roleId == playInfo.id)
  996. {
  997. spiring = string.Concat(GameSetting.Instance.selfPlayCardShowSpiteName, havCardVals[k]);
  998. sizeDelta = GameUtil.Instance.myShowCard;
  999. }
  1000. else
  1001. {
  1002. switch (i)
  1003. {
  1004. case 1:
  1005. {
  1006. //右
  1007. spiring = string.Concat(GameSetting.Instance.otherPlayCardSpiteNameByRight, havCardVals[k]);
  1008. sizeDelta = GameUtil.Instance.otherLeftCardSize;
  1009. break;
  1010. }
  1011. case 2:
  1012. {
  1013. //shang
  1014. spiring = string.Concat(GameSetting.Instance.selfPlayCardCenterSpiteName, havCardVals[k]);
  1015. sizeDelta = new Vector2(GameUtil.Instance.otherLeftCardSize.y, GameUtil.Instance.otherLeftCardSize.x);
  1016. break;
  1017. }
  1018. case 3:
  1019. {
  1020. //zuo
  1021. spiring = string.Concat(GameSetting.Instance.otherPlayCardSpiteNameByLeft, havCardVals[k]);
  1022. sizeDelta = GameUtil.Instance.otherLeftCardSize;
  1023. break;
  1024. }
  1025. }
  1026. }
  1027. var uiHavItem = GameUtil.Instance.InitializeObj(GameUtil.Instance.GetCardCloneItem(roleInfo.roleId == playInfo.id ? 0 : 1));
  1028. uiHavItem.SetActive(true);
  1029. uiHavItem.transform.SetParent(haveBeenOutContentNode.transform, false);
  1030. var sprite = await GameObjectPool.Instance.AcquireSprite(spiring);
  1031. UnityEngine.UI.Image icon = uiHavItem.GetComponentInChildren<UnityEngine.UI.Image>();
  1032. icon.sprite = sprite;
  1033. icon.gameObject.GetComponent<RectTransform>().sizeDelta = sizeDelta;
  1034. }
  1035. }
  1036. }
  1037. }
  1038. }
  1039. }
  1040. //处理每个回合倒计时
  1041. Log.Error("当前自己回合");
  1042. startFightRoomComponentUI.startTimeCount = startFightRoomInfo.roomInfo.Time;
  1043. if (startFightRoomComponentUI.startTimer > 0)
  1044. {
  1045. startFightRoomComponentUI.timeCountTxt.text = "";
  1046. TimerComponent.Instance?.Remove(ref startFightRoomComponentUI.startTimer);
  1047. }
  1048. startFightRoomComponentUI.startTimer = TimerComponent.Instance.NewRepeatedTimer(ConstValue.fightTimeRefreshTime / 2 + 100, TimerInvokeType.startFightTimeCount, startFightRoomComponentUI);
  1049. //处理当前操作玩家的状态显示
  1050. //RefreshCenterOperationState(startFightRoomInfo.roomInfo.OpPos, startFightRoomComponentUI);
  1051. }
  1052. //刷新中间表示当前操作玩家
  1053. public static async void RefreshCenterOperationState(int OpPos, UIStartFightRoomComponent uIStartFightRoomComponent)
  1054. {
  1055. //await ResourcesComponentHelper.Instance.LoadSprite(GameUtil.Instance.GetSceneComponent(), "fightatlas");
  1056. //string abName = string.Concat("TimePoint",OpPos);
  1057. //Sprite sprite = ResourcesComponentHelper.Instance.GetSprite("fightatlas", abName);
  1058. //uIStartFightRoomComponent.shakeDiceImage.sprite = sprite;
  1059. }
  1060. public static void RefreshOrientation(int opPos,UIStartFightRoomComponent uIStartFightRoomComponent)
  1061. {
  1062. uIStartFightRoomComponent.shakeDiceImage1.SetActive(false);
  1063. uIStartFightRoomComponent.shakeDiceImage2.SetActive(false);
  1064. uIStartFightRoomComponent.shakeDiceImage3.SetActive(false);
  1065. uIStartFightRoomComponent.shakeDiceImage4.SetActive(false);
  1066. switch (opPos)
  1067. {
  1068. case 0:
  1069. uIStartFightRoomComponent.shakeDiceImage1.SetActive(true);
  1070. break;
  1071. case 1:
  1072. uIStartFightRoomComponent.shakeDiceImage2.SetActive(true);
  1073. break;
  1074. case 2:
  1075. uIStartFightRoomComponent.shakeDiceImage3.SetActive(true);
  1076. break;
  1077. case 3:
  1078. uIStartFightRoomComponent.shakeDiceImage4.SetActive(true);
  1079. break;
  1080. }
  1081. }
  1082. public static void RestartPlayGame(this UIStartFightRoomComponent self)
  1083. {
  1084. Log.Error("@@@ 清理 ");
  1085. //清理相关桌面数据
  1086. //身上的牌列表
  1087. for (int i = 0; i < 4; i++)
  1088. {
  1089. var fightCardParentNode = self.uIStartFightRoomPlayerComs[i].fightCardNode;
  1090. //已出过牌的列表
  1091. var disCardParentNode = self.uIStartFightRoomPlayerComs[i].disCardsNode;
  1092. //操作过的 如 吃 碰 杠 列表
  1093. var haveBeenOutContentNode = self.uIStartFightRoomPlayerComs[i].haveBeenOutContentNode;
  1094. CleanCardItemList(fightCardParentNode.transform,0);
  1095. CleanCardItemList(disCardParentNode.transform, 1);
  1096. CleanCardItemList(haveBeenOutContentNode.transform, 2);
  1097. }
  1098. self.Init();
  1099. }
  1100. #region 请求相关
  1101. //操作,chi p hu
  1102. public static async ETTask OperationCardRequest(int operationType,int firstCard)
  1103. {
  1104. try
  1105. {
  1106. var scene = GameUtil.Instance.GetSceneComponent();
  1107. var session = scene.GetComponent<SessionComponent>().Session;
  1108. if (session != null)
  1109. {
  1110. G2C_HGHHOperation g2Operation = (G2C_HGHHOperation)await session.Call(
  1111. new C2G_HGHHOperation() { OpType = operationType , Card = firstCard });
  1112. if (g2Operation.Error != ErrorCode.ERR_Success)
  1113. {
  1114. Log.Error($"操作 {operationType} 出错...errCode={g2Operation.Error}");
  1115. return;
  1116. }
  1117. //之后走推送
  1118. }
  1119. }
  1120. catch (Exception e)
  1121. {
  1122. Log.Error($"操作 {operationType} 出错...{e.Message}");
  1123. }
  1124. }
  1125. //出
  1126. public static async ETTask DisCardRequest(int disCard, UIStartFightRoomComponent startFightRoomComponentUI)
  1127. {
  1128. try
  1129. {
  1130. var scene = GameUtil.Instance.GetSceneComponent();
  1131. var session = scene.GetComponent<SessionComponent>().Session;
  1132. if (session != null)
  1133. {
  1134. G2C_HGHHDisCard g2DisCard = (G2C_HGHHDisCard)await session.Call(
  1135. new C2G_HGHHDisCard() { Card = disCard });
  1136. if (g2DisCard.Error != ErrorCode.ERR_Success)
  1137. {
  1138. await CommonUtil.Instance.OpenCommonServerMsgPanel($"出牌{disCard} 出错...errCode={g2DisCard.Error}");
  1139. return;
  1140. }
  1141. var startFightRoomInfo = GameUtil.Instance.GetSceneComponent().GetComponent<StartFightRoomComponment>().GetStartFightRoomInfo();
  1142. int sexType = startFightRoomInfo.roomInfo.MyInfo.sex;
  1143. string soundStrType = sexType == 0 ? GameSetting.Instance.disCardBoySoundName : GameSetting.Instance.disCardGirlSoundName;
  1144. await SoundManager.Instance.PlaySound(string.Concat(soundStrType, disCard));
  1145. //出牌之后 暂停回合倒计时
  1146. if (startFightRoomComponentUI.startTimer > 0)
  1147. {
  1148. startFightRoomComponentUI.timeCountTxt.text = "";
  1149. TimerComponent.Instance?.Remove(ref startFightRoomComponentUI.startTimer);
  1150. }
  1151. //startFightRoomComponentUI.shakeDiceImage.sprite = null;
  1152. //之后走推送
  1153. }
  1154. }
  1155. catch (Exception e)
  1156. {
  1157. Log.Error($"操作 {disCard} 出错...{e.Message}");
  1158. }
  1159. }
  1160. #endregion
  1161. //type 上下0 右1 左2
  1162. public static void CleanCardItemList(Transform node,int index)
  1163. {
  1164. //Dictionary<int, List<GameObject>> tempList = null;
  1165. //switch (index)
  1166. //{
  1167. // case 0:
  1168. // {
  1169. // tempList = GameObjectPool.Instance.fightCardItemPools;
  1170. // break;
  1171. // }
  1172. // case 1:
  1173. // {
  1174. // tempList = GameObjectPool.Instance.disCardItemPools;
  1175. // break;
  1176. // }
  1177. // case 2:
  1178. // {
  1179. // tempList = GameObjectPool.Instance.havCardItemPools;
  1180. // break;
  1181. // }
  1182. //}
  1183. for (int i = 0;i < node.childCount;i++)
  1184. {
  1185. var child = node.GetChild(i);
  1186. StartFightCardItem startFightCardItem = child.gameObject.GetComponent<StartFightCardItem>();
  1187. if(startFightCardItem != null)
  1188. startFightCardItem.GetDown();
  1189. child.gameObject.SetActive(false);
  1190. }
  1191. }
  1192. public static void DisCardPushWithOperator(Transform node, ActInfo actInfo)
  1193. {
  1194. Log.Error("@@@当前牌: " + actInfo.Card);
  1195. ActInfoType actInfoType = (ActInfoType)actInfo.Type;
  1196. switch (actInfoType)
  1197. {
  1198. case ActInfoType.LightPole:
  1199. case ActInfoType.BackPole:
  1200. case ActInfoType.DarkPole:
  1201. {
  1202. var cardVal = actInfo.Card;
  1203. int loopIndex = 1;
  1204. for (int i = 0; i < node.childCount; i++)
  1205. {
  1206. if (loopIndex >= 3)
  1207. {
  1208. break;
  1209. }
  1210. var child = node.GetChild(i);
  1211. StartFightCardItem startFightCardItem = child.gameObject.GetComponent<StartFightCardItem>();
  1212. if (startFightCardItem.val == cardVal)
  1213. {
  1214. startFightCardItem.StandUp();
  1215. loopIndex++;
  1216. }
  1217. }
  1218. break;
  1219. }
  1220. case ActInfoType.Peng:
  1221. {
  1222. var cardVal = actInfo.Card;
  1223. int loopIndex = 0;
  1224. for (int i = 0; i < node.childCount; i++)
  1225. {
  1226. if (loopIndex >= 2)
  1227. {
  1228. break;
  1229. }
  1230. var child = node.GetChild(i);
  1231. StartFightCardItem startFightCardItem = child.gameObject.GetComponent<StartFightCardItem>();
  1232. if (startFightCardItem.val == cardVal)
  1233. {
  1234. startFightCardItem.StandUp();
  1235. loopIndex++;
  1236. }
  1237. }
  1238. break;
  1239. }
  1240. case ActInfoType.Chi:
  1241. {
  1242. var cardVal = actInfo.Card;
  1243. bool IsExist(List<int> cardVals,int cardVal,out int outCardVal)
  1244. {
  1245. outCardVal = 0;
  1246. for (int i = 0;i < cardVals.Count;i++)
  1247. {
  1248. if (cardVals[i] == cardVal)
  1249. {
  1250. outCardVal = cardVal;
  1251. return true;
  1252. }
  1253. }
  1254. return false;
  1255. }
  1256. List<int> cardVals = new List<int>() { cardVal, cardVal + 1, cardVal + 2};
  1257. List<int> tempCards = new List<int>();
  1258. //发1
  1259. //出2 1233
  1260. for (int i = 0; i < node.childCount; i++)
  1261. {
  1262. var child = node.GetChild(i);
  1263. StartFightCardItem startFightCardItem = child.gameObject.GetComponent<StartFightCardItem>();
  1264. int outCardVal = 0;
  1265. if (IsExist(cardVals, startFightCardItem.val,out outCardVal))
  1266. {
  1267. Log.Error("##### startFightCardItem.val: " + startFightCardItem.val + " outCardVal: " + outCardVal);
  1268. if (outCardVal == GameUtil.Instance.curCardVal || tempCards.Contains(startFightCardItem.val))
  1269. {
  1270. continue;
  1271. }
  1272. startFightCardItem.StandUp();
  1273. tempCards.Add(startFightCardItem.val);
  1274. }
  1275. }
  1276. GameUtil.Instance.curRequestCardVal = cardVal;
  1277. break;
  1278. }
  1279. }
  1280. }
  1281. public static PlayerInfo GetOtherPlayInfoByPos(List<PlayerInfo> allPlayerInfos,int pos)
  1282. {
  1283. for (int i = 0;i < allPlayerInfos.Count;i++)
  1284. {
  1285. if (allPlayerInfos[i].pos == pos)
  1286. {
  1287. return allPlayerInfos[i];
  1288. }
  1289. }
  1290. return null;
  1291. }
  1292. //根据自己位置 确定其他座位
  1293. public static List<int> GetPosList(int myPos)
  1294. {
  1295. List<int> list = null;
  1296. switch (myPos)
  1297. {
  1298. case 0:
  1299. {
  1300. list = new List<int>() { 0,1,2,3};
  1301. break ;
  1302. }
  1303. case 1:
  1304. {
  1305. list = new List<int>() { 1,2,3,0};
  1306. break;
  1307. }
  1308. case 2:
  1309. {
  1310. list = new List<int>() { 2,3,0,1};
  1311. break;
  1312. }
  1313. case 3:
  1314. {
  1315. list = new List<int>() { 3,0,1,2};
  1316. break;
  1317. }
  1318. }
  1319. return list;
  1320. }
  1321. public static void SortList(List<int> list)
  1322. {
  1323. list.Sort();
  1324. }
  1325. [ObjectSystem]
  1326. public class UIStartFightRoomComponentDestroySystem : DestroySystem<UIStartFightRoomComponent>
  1327. {
  1328. protected override void Destroy(UIStartFightRoomComponent self)
  1329. {
  1330. TimerComponent.Instance?.Remove(ref self.RepeatedTimer);
  1331. CommonBridge.Instance.Clear();
  1332. }
  1333. }
  1334. }
  1335. }