FormLauncher.cs 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. using CommonAI.Zone;
  2. using CommonAI.Zone.ZoneEditor;
  3. using CommonAI.ZoneServer;
  4. using CommonFroms;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.ComponentModel;
  8. using System.Data;
  9. using System.Diagnostics;
  10. using System.Drawing;
  11. using System.IO;
  12. using System.Linq;
  13. using System.Text;
  14. using System.Text.RegularExpressions;
  15. using System.Threading;
  16. using System.Windows.Forms;
  17. namespace CommonAIServer.Connector
  18. {
  19. public partial class FormLauncher : Form
  20. {
  21. public static EditorTemplates Templates { get; set; }
  22. private TestClientLoader mLoader;
  23. private bool mIsUnity;
  24. private Process mUnityProcess;
  25. private bool mIsAutoLaunch;
  26. public FormLauncher(string[] args, TestClientLoader loader, bool unity = false, bool autolaunch = false)
  27. {
  28. InitializeComponent();
  29. this.txt_GameDataRoot.Text = args[0];
  30. this.txt_PlayerUUID.Text = args[1];
  31. this.txt_RoomID.Text = args[2];
  32. this.txt_NetDirver.Text = args[3];
  33. this.txt_ConnectString.Text = args[4];
  34. this.num_IntervalMS.Value = int.Parse(args[5]);
  35. this.num_SyncRange.Value = int.Parse(args[6]);
  36. this.txt_UnitTemplateID.Text = args[7];
  37. this.txt_Force.Text = args[8];
  38. this.txt_SceneID.Text = args[9];
  39. this.mLoader = loader;
  40. this.mIsUnity = unity;
  41. this.mIsAutoLaunch = autolaunch;
  42. }
  43. public FormLauncher(
  44. string data_root,
  45. string player_uuid,
  46. string room_id,
  47. string net_driver,
  48. string connect_string,
  49. int interval_ms,
  50. int sync_range,
  51. int unit_template_id,
  52. int force,
  53. int scene_id,
  54. TestClientLoader loader,
  55. bool unity = false,
  56. bool autolaunch = false) :
  57. this(new string[] {
  58. data_root,
  59. player_uuid,
  60. room_id,
  61. net_driver,
  62. connect_string,
  63. interval_ms.ToString(),
  64. sync_range.ToString(),
  65. unit_template_id.ToString(),
  66. force.ToString(),
  67. scene_id.ToString(), }, loader, unity, autolaunch)
  68. {
  69. }
  70. public string GameDataRoot
  71. {
  72. get { return this.txt_GameDataRoot.Text; }
  73. }
  74. public string PlayerUUID
  75. {
  76. get { return txt_PlayerUUID.Text; }
  77. }
  78. public string RoomID
  79. {
  80. get { return txt_RoomID.Text; }
  81. }
  82. public string NetDirver
  83. {
  84. get { return txt_NetDirver.Text; }
  85. }
  86. public string ConnectString
  87. {
  88. get { return txt_ConnectString.Text; }
  89. }
  90. public int IntervalMS
  91. {
  92. get { return (int)num_IntervalMS.Value; }
  93. }
  94. public int SyncRange
  95. {
  96. get { return (int)num_SyncRange.Value; }
  97. }
  98. public int UnitTemplateID
  99. {
  100. get
  101. {
  102. int result = 0;
  103. int.TryParse(txt_UnitTemplateID.Text, out result);
  104. return result;
  105. }
  106. }
  107. public byte Force
  108. {
  109. get
  110. {
  111. int result = 0;
  112. int.TryParse(txt_Force.Text, out result);
  113. return (byte)result;
  114. }
  115. }
  116. public int SceneID
  117. {
  118. get
  119. {
  120. int result = 0;
  121. int.TryParse(txt_SceneID.Text, out result);
  122. return result;
  123. }
  124. }
  125. public TestClientLoader Loader
  126. {
  127. get { return mLoader; }
  128. }
  129. public bool IsAutoLaunch
  130. {
  131. get { return mIsAutoLaunch; }
  132. set { mIsAutoLaunch = value; }
  133. }
  134. private void FormLauncher_Load(object sender, EventArgs e)
  135. {
  136. txt_UnitTemplateID.Focus();
  137. if (mIsAutoLaunch)
  138. {
  139. if (mIsUnity)
  140. {
  141. launchUnity();
  142. }
  143. else
  144. {
  145. launchWin32();
  146. }
  147. }
  148. }
  149. private void FormLauncher_Shown(object sender, EventArgs e)
  150. {
  151. txt_UnitTemplateID.Focus();
  152. }
  153. private void FormLauncher_FormClosed(object sender, FormClosedEventArgs e)
  154. {
  155. OnLaunchOver = null;
  156. }
  157. private void btn_Connect_Click(object sender, EventArgs e)
  158. {
  159. if (OnLaunchOver != null && OnLaunchOver.Invoke(this))
  160. {
  161. }
  162. else
  163. {
  164. if (mIsUnity)
  165. {
  166. launchUnity();
  167. }
  168. else
  169. {
  170. launchWin32();
  171. }
  172. }
  173. }
  174. //-------------------------------------------------------------------------------
  175. public delegate bool OnLaunchOverHandler(FormLauncher launcher);
  176. public event OnLaunchOverHandler OnLaunchOver;
  177. //-------------------------------------------------------------------------------
  178. #region Launch
  179. private void timer1_Tick(object sender, EventArgs e)
  180. {
  181. if (mUnityProcess != null)
  182. {
  183. if (mUnityProcess.HasExited)
  184. {
  185. this.Show();
  186. Regex regex = new Regex(@"\d{4}-\d{2}-\d{2}_\d*");
  187. FileInfo exefile = new FileInfo(mUnityProcess.StartInfo.FileName);
  188. foreach (DirectoryInfo dir in exefile.Directory.GetDirectories())
  189. {
  190. if (regex.IsMatch(dir.Name))
  191. {
  192. if (File.Exists(dir.FullName + Path.DirectorySeparatorChar + "crash.dmp"))
  193. {
  194. FileSystem.DeleteToRecycleBin(dir.FullName);
  195. }
  196. }
  197. }
  198. mUnityProcess = null;
  199. }
  200. }
  201. }
  202. private void launchUnity()
  203. {
  204. DirectoryInfo root_dir = new DirectoryInfo(txt_GameDataRoot.Text.Replace("file://", ""));
  205. string args = string.Format(
  206. "-CustomArgs:RunPlatform={0};" +
  207. "MapID={1};FolderPath={2};ResPath={3};UserID={4};Plugin={5};" +
  208. "IsNet=1;NetDriver={6};IP={7};UUID={8};Force={9};RoomID={10}",
  209. 0,
  210. int.Parse(txt_SceneID.Text),
  211. root_dir.Parent.FullName + @"\",
  212. root_dir.Parent.FullName,
  213. int.Parse(txt_UnitTemplateID.Text),
  214. mLoader.ZoneFactoryType.FullName,
  215. txt_NetDirver.Text,
  216. txt_ConnectString.Text,
  217. txt_PlayerUUID.Text,
  218. int.Parse(txt_Force.Text),
  219. txt_RoomID.Text
  220. );
  221. FileInfo exefile = new FileInfo(Application.StartupPath + @"\U3DScene\U3DSceneRun.exe");
  222. ProcessStartInfo start = new ProcessStartInfo(exefile.FullName, args);
  223. start.WorkingDirectory = exefile.Directory.FullName;
  224. mUnityProcess = new Process();
  225. mUnityProcess.StartInfo = start;
  226. mUnityProcess.Exited += (object sender, EventArgs arg) =>
  227. {
  228. this.Visible = true;
  229. };
  230. mUnityProcess.Start();
  231. this.Visible = false;
  232. }
  233. private void launchWin32()
  234. {
  235. try
  236. {
  237. CreateUnitInfoR2B unit = mLoader.GenUnitInfoR2B(int.Parse(txt_UnitTemplateID.Text));
  238. {
  239. unit.UnitTemplateID = int.Parse(txt_UnitTemplateID.Text);
  240. unit.Force = int.Parse(txt_Force.Text);
  241. //unit.UnitPropData = prop_data;// (temp.Properties as HerosUnitProperties).ServerData;
  242. }
  243. FormClient form = new FormClient();
  244. form.Init(txt_GameDataRoot.Text,
  245. txt_PlayerUUID.Text,
  246. txt_RoomID.Text,
  247. txt_NetDirver.Text,
  248. txt_ConnectString.Text,
  249. (int)num_IntervalMS.Value,
  250. (int)num_SyncRange.Value,
  251. unit,
  252. chk_IsProxy.Checked,
  253. txt_ProxyConnectString.Text);
  254. form.FormClosed += new FormClosedEventHandler((object sender2, FormClosedEventArgs e2) =>
  255. {
  256. this.Visible = true;
  257. });
  258. form.Shown += new EventHandler((object sender2, EventArgs e2) =>
  259. {
  260. this.Visible = false;
  261. });
  262. form.Show();
  263. }
  264. catch (Exception err)
  265. {
  266. MessageBox.Show(err.Message);
  267. }
  268. }
  269. #endregion
  270. }
  271. }