123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- using CommonAI.Zone;
- using CommonAI.Zone.ZoneEditor;
- using CommonAI.ZoneServer;
- using CommonFroms;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Diagnostics;
- using System.Drawing;
- using System.IO;
- using System.Linq;
- using System.Text;
- using System.Text.RegularExpressions;
- using System.Threading;
- using System.Windows.Forms;
- namespace CommonAIServer.Connector
- {
- public partial class FormLauncher : Form
- {
- public static EditorTemplates Templates { get; set; }
- private TestClientLoader mLoader;
- private bool mIsUnity;
- private Process mUnityProcess;
- private bool mIsAutoLaunch;
- public FormLauncher(string[] args, TestClientLoader loader, bool unity = false, bool autolaunch = false)
- {
- InitializeComponent();
- this.txt_GameDataRoot.Text = args[0];
- this.txt_PlayerUUID.Text = args[1];
- this.txt_RoomID.Text = args[2];
- this.txt_NetDirver.Text = args[3];
- this.txt_ConnectString.Text = args[4];
- this.num_IntervalMS.Value = int.Parse(args[5]);
- this.num_SyncRange.Value = int.Parse(args[6]);
- this.txt_UnitTemplateID.Text = args[7];
- this.txt_Force.Text = args[8];
- this.txt_SceneID.Text = args[9];
- this.mLoader = loader;
- this.mIsUnity = unity;
- this.mIsAutoLaunch = autolaunch;
- }
- public FormLauncher(
- string data_root,
- string player_uuid,
- string room_id,
- string net_driver,
- string connect_string,
- int interval_ms,
- int sync_range,
- int unit_template_id,
- int force,
- int scene_id,
- TestClientLoader loader,
- bool unity = false,
- bool autolaunch = false) :
- this(new string[] {
- data_root,
- player_uuid,
- room_id,
- net_driver,
- connect_string,
- interval_ms.ToString(),
- sync_range.ToString(),
- unit_template_id.ToString(),
- force.ToString(),
- scene_id.ToString(), }, loader, unity, autolaunch)
- {
- }
- public string GameDataRoot
- {
- get { return this.txt_GameDataRoot.Text; }
- }
- public string PlayerUUID
- {
- get { return txt_PlayerUUID.Text; }
- }
- public string RoomID
- {
- get { return txt_RoomID.Text; }
- }
- public string NetDirver
- {
- get { return txt_NetDirver.Text; }
- }
- public string ConnectString
- {
- get { return txt_ConnectString.Text; }
- }
- public int IntervalMS
- {
- get { return (int)num_IntervalMS.Value; }
- }
- public int SyncRange
- {
- get { return (int)num_SyncRange.Value; }
- }
- public int UnitTemplateID
- {
- get
- {
- int result = 0;
- int.TryParse(txt_UnitTemplateID.Text, out result);
- return result;
- }
- }
- public byte Force
- {
- get
- {
- int result = 0;
- int.TryParse(txt_Force.Text, out result);
- return (byte)result;
- }
- }
- public int SceneID
- {
- get
- {
- int result = 0;
- int.TryParse(txt_SceneID.Text, out result);
- return result;
- }
- }
- public TestClientLoader Loader
- {
- get { return mLoader; }
- }
- public bool IsAutoLaunch
- {
- get { return mIsAutoLaunch; }
- set { mIsAutoLaunch = value; }
- }
- private void FormLauncher_Load(object sender, EventArgs e)
- {
- txt_UnitTemplateID.Focus();
- if (mIsAutoLaunch)
- {
- if (mIsUnity)
- {
- launchUnity();
- }
- else
- {
- launchWin32();
- }
- }
- }
- private void FormLauncher_Shown(object sender, EventArgs e)
- {
- txt_UnitTemplateID.Focus();
- }
- private void FormLauncher_FormClosed(object sender, FormClosedEventArgs e)
- {
- OnLaunchOver = null;
- }
- private void btn_Connect_Click(object sender, EventArgs e)
- {
- if (OnLaunchOver != null && OnLaunchOver.Invoke(this))
- {
- }
- else
- {
- if (mIsUnity)
- {
- launchUnity();
- }
- else
- {
- launchWin32();
- }
- }
- }
- //-------------------------------------------------------------------------------
- public delegate bool OnLaunchOverHandler(FormLauncher launcher);
- public event OnLaunchOverHandler OnLaunchOver;
- //-------------------------------------------------------------------------------
- #region Launch
- private void timer1_Tick(object sender, EventArgs e)
- {
- if (mUnityProcess != null)
- {
- if (mUnityProcess.HasExited)
- {
- this.Show();
- Regex regex = new Regex(@"\d{4}-\d{2}-\d{2}_\d*");
- FileInfo exefile = new FileInfo(mUnityProcess.StartInfo.FileName);
- foreach (DirectoryInfo dir in exefile.Directory.GetDirectories())
- {
- if (regex.IsMatch(dir.Name))
- {
- if (File.Exists(dir.FullName + Path.DirectorySeparatorChar + "crash.dmp"))
- {
- FileSystem.DeleteToRecycleBin(dir.FullName);
- }
- }
- }
- mUnityProcess = null;
- }
- }
- }
- private void launchUnity()
- {
- DirectoryInfo root_dir = new DirectoryInfo(txt_GameDataRoot.Text.Replace("file://", ""));
- string args = string.Format(
- "-CustomArgs:RunPlatform={0};" +
- "MapID={1};FolderPath={2};ResPath={3};UserID={4};Plugin={5};" +
- "IsNet=1;NetDriver={6};IP={7};UUID={8};Force={9};RoomID={10}",
- 0,
- int.Parse(txt_SceneID.Text),
- root_dir.Parent.FullName + @"\",
- root_dir.Parent.FullName,
- int.Parse(txt_UnitTemplateID.Text),
- mLoader.ZoneFactoryType.FullName,
- txt_NetDirver.Text,
- txt_ConnectString.Text,
- txt_PlayerUUID.Text,
- int.Parse(txt_Force.Text),
- txt_RoomID.Text
- );
- FileInfo exefile = new FileInfo(Application.StartupPath + @"\U3DScene\U3DSceneRun.exe");
- ProcessStartInfo start = new ProcessStartInfo(exefile.FullName, args);
- start.WorkingDirectory = exefile.Directory.FullName;
- mUnityProcess = new Process();
- mUnityProcess.StartInfo = start;
- mUnityProcess.Exited += (object sender, EventArgs arg) =>
- {
- this.Visible = true;
- };
- mUnityProcess.Start();
- this.Visible = false;
- }
- private void launchWin32()
- {
- try
- {
- CreateUnitInfoR2B unit = mLoader.GenUnitInfoR2B(int.Parse(txt_UnitTemplateID.Text));
- {
- unit.UnitTemplateID = int.Parse(txt_UnitTemplateID.Text);
- unit.Force = int.Parse(txt_Force.Text);
- //unit.UnitPropData = prop_data;// (temp.Properties as HerosUnitProperties).ServerData;
- }
- FormClient form = new FormClient();
- form.Init(txt_GameDataRoot.Text,
- txt_PlayerUUID.Text,
- txt_RoomID.Text,
- txt_NetDirver.Text,
- txt_ConnectString.Text,
- (int)num_IntervalMS.Value,
- (int)num_SyncRange.Value,
- unit,
- chk_IsProxy.Checked,
- txt_ProxyConnectString.Text);
- form.FormClosed += new FormClosedEventHandler((object sender2, FormClosedEventArgs e2) =>
- {
- this.Visible = true;
- });
- form.Shown += new EventHandler((object sender2, EventArgs e2) =>
- {
- this.Visible = false;
- });
- form.Show();
- }
- catch (Exception err)
- {
- MessageBox.Show(err.Message);
- }
- }
- #endregion
- }
- }
|