AppStartInitFinish_CreateLoginUI.cs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. using Cysharp.Threading.Tasks;
  2. using FairyGUI;
  3. using Sirenix.Utilities;
  4. using System;
  5. using System.Collections.Generic;
  6. using UnityEngine;
  7. namespace ET.Client
  8. {
  9. [Event(SceneType.Client)]
  10. public class AppStartInitFinish_CreateLoginUI : AEvent<EventType.AppStartInitFinish>
  11. {
  12. private string mIP;
  13. private int mPort;
  14. protected override async ETTask Run(Scene scene, EventType.AppStartInitFinish args)
  15. {
  16. var view = await UIHelper.Create("Login");
  17. InitLogin(scene, view);
  18. var preView = GRoot.inst.GetChildAt(0);
  19. GRoot.inst.RemoveChild(preView, true);
  20. UIPackage.RemovePackage("CheckForResUpdate");
  21. }
  22. private void InitServerList(GComboBox list)
  23. {
  24. var saveip = GameSetting.Instance.GetString(GameSetting.Sets.Server_str);
  25. int select = -1;
  26. List<string> servers = new();
  27. foreach (var info in ServerInfo.ServerList)
  28. {
  29. servers.Add(info.ShowName);
  30. if (select < 0 && !saveip.IsNullOrWhitespace())
  31. {
  32. if (saveip == info.HostStr)
  33. {
  34. select = servers.Count - 1;
  35. }
  36. }
  37. }
  38. if(select < 0 && !saveip.IsNullOrWhitespace())
  39. {
  40. try
  41. {
  42. var ipendpoint = NetworkHelper.ToIPEndPoint(saveip);
  43. servers.Add($"Custom[{saveip}]");
  44. ServerInfo.ServerList.Add(new ServerInfo()
  45. {
  46. ShowName = $"Custom[{saveip}]",
  47. Ip = ipendpoint.Address.ToString(),
  48. Port = ipendpoint.Port,
  49. }) ;
  50. select = servers.Count - 1;
  51. }
  52. catch(Exception)
  53. {
  54. Log.Error($"error save ip: {saveip}");
  55. }
  56. }
  57. if(select < 0)
  58. {
  59. select = 0;
  60. }
  61. var cur = ServerInfo.ServerList[select];
  62. mIP = cur.Ip;
  63. mPort = cur.Port;
  64. list.items = servers.ToArray();
  65. list.selectedIndex = select;
  66. list.onChanged.Set(() =>
  67. {
  68. var info = ServerInfo.ServerList[list.selectedIndex];
  69. GameSetting.Instance.SetString(GameSetting.Sets.Server_str, info.HostStr);
  70. mIP = info.Ip;
  71. mPort = info.Port;
  72. });
  73. }
  74. private void InitResolutionList(GComboBox list)
  75. {
  76. #if UNITY_EDITOR
  77. list.visible = false;
  78. #elif UNITY_STANDALONE
  79. list.visible = true;
  80. int val = GameSetting.Instance.GetInt(GameSetting.Sets.Resolution_int, 0);
  81. int select = -1;
  82. List<string> showlist = new();
  83. foreach (var info in ResolutionInfo.ResolutionList)
  84. {
  85. showlist.Add(info.ShowName);
  86. if (select < 0 && val == info.Y)
  87. {
  88. select = showlist.Count - 1;
  89. }
  90. }
  91. if (select < 0)
  92. {
  93. select = 0;
  94. }
  95. var cur = ResolutionInfo.ResolutionList[select];
  96. Screen.SetResolution(cur.X, cur.Y, false);
  97. Log.Debug($"Default resolution x:{cur.X}, y:{cur.Y}");
  98. list.items = showlist.ToArray();
  99. list.selectedIndex = select;
  100. list.onChanged.Set(() =>
  101. {
  102. var info = ResolutionInfo.ResolutionList[list.selectedIndex];
  103. GameSetting.Instance.SetInt(GameSetting.Sets.Resolution_int, info.Y);
  104. Screen.SetResolution(info.X, info.Y, false);
  105. Log.Debug($"SetResolution x:{info.X}, y:{info.Y}");
  106. });
  107. #endif
  108. }
  109. private void InitLogin(Scene scene, GComponent view)
  110. {
  111. var comp = view.GetChild("comp_login") as GComponent;
  112. var listSvr = view.GetChild("listServer").asComboBox;
  113. var listResolution = comp.GetChild("listResolution").asComboBox;
  114. InitServerList(listSvr);
  115. InitResolutionList(listResolution);
  116. var inputID = comp.GetChild("txtID");
  117. var btn = comp.GetChild("btn_go");
  118. btn.onClick.Add(async () =>
  119. {
  120. var imgtips = comp.GetChild("img_tips");
  121. var tips = comp.GetChild("txt_tips");
  122. tips.visible = false;
  123. imgtips.visible = false;
  124. /*if (account.text.IsNullOrWhitespace() || password.text.IsNullOrWhitespace())
  125. {
  126. tips.visible = true;
  127. tips.text = "用户名或密码为空";
  128. return;
  129. }*/
  130. imgtips.visible = true;
  131. btn.enabled = false;
  132. var ret = await LoginHelper.Login(scene, mIP, mPort, "111", "111");
  133. if (ret != ErrorCode.ERR_Success)
  134. {
  135. imgtips.visible = false;
  136. tips.visible = true;
  137. btn.enabled = true;
  138. if (ret == ErrorCode.ERR_UserNameOrPasswordFormatError ||
  139. ret == ErrorCode.ERR_UserNameOrPasswordError)
  140. {
  141. tips.text = "用户名或密码错误";
  142. }
  143. else
  144. {
  145. tips.text = "连接服务器过程中出现了问题\n" +
  146. "如重试后还是不行,请与客服联系" +
  147. "\n[color=#FF0000]QQ: 2910280670[/color]" +
  148. "\n微信:[color=#FF0000]lvlh117[/color]";
  149. }
  150. }
  151. });
  152. }
  153. }
  154. }