コード例 #1
0
        static void Main(string[] arguments)
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            using (DemolisherForm demolisherForm = new DemolisherForm())
            {
#if !DEBUG
                try
                {
#endif
                CommandLine commandLine = new CommandLine(arguments, '+');

                foreach (var parameter in commandLine)
                {
                    switch (parameter.Name.ToLowerInvariant())
                    {
                    case "+load": LoadModel(demolisherForm, parameter); break;
                    }
                }

                Application.Run(demolisherForm);
#if !DEBUG
            }
            catch (Exception exception)
            {
                MessageBox.Show(String.Format("{0}\n\n{1}", exception.Message, exception.StackTrace), exception.GetType().Name, MessageBoxButtons.OK);
            }
#endif
            }
        }
コード例 #2
0
        static void LoadModel(DemolisherForm form, CommandLineParameter parameter)
        {
            Vector3 t = Vector3.Zero, r = Vector3.Zero, s = Vector3.One;

            if (parameter.Count >= 4)
            {
                t = new Vector3(Single.Parse(parameter[1]), Single.Parse(parameter[2]), Single.Parse(parameter[3]));
            }
            if (parameter.Count >= 7)
            {
                r = new Vector3(Single.Parse(parameter[4]), Single.Parse(parameter[5]), Single.Parse(parameter[6]));
            }
            if (parameter.Count >= 10)
            {
                s = new Vector3(Single.Parse(parameter[7]), Single.Parse(parameter[8]), Single.Parse(parameter[9]));
            }

            form.LoadModel(parameter[0], t, r, s);
        }
コード例 #3
0
ファイル: Program.cs プロジェクト: arookas/Demolisher
        static void LoadModel(DemolisherForm form, CommandLineParameter parameter)
        {
            Vector3 t = Vector3.Zero, r = Vector3.Zero, s = Vector3.One;

            if (parameter.Count >= 4)
            {
                t = new Vector3(Single.Parse(parameter[1]), Single.Parse(parameter[2]), Single.Parse(parameter[3]));
            }
            if (parameter.Count >= 7)
            {
                r = new Vector3(Single.Parse(parameter[4]), Single.Parse(parameter[5]), Single.Parse(parameter[6]));
            }
            if (parameter.Count >= 10)
            {
                s = new Vector3(Single.Parse(parameter[7]), Single.Parse(parameter[8]), Single.Parse(parameter[9]));
            }

            form.LoadModel(parameter[0], t, r, s);
        }
コード例 #4
0
ファイル: Program.cs プロジェクト: arookas/Demolisher
        static void Main(string[] arguments)
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            using (DemolisherForm demolisherForm = new DemolisherForm())
            {
            #if !DEBUG
                try
                {
            #endif
                    CommandLine commandLine = new CommandLine(arguments, '+');

                    foreach (var parameter in commandLine)
                    {
                        switch (parameter.Name.ToLowerInvariant())
                        {
                            case "+load": LoadModel(demolisherForm, parameter); break;
                        }
                    }

                    Application.Run(demolisherForm);
            #if !DEBUG
                }
                catch (Exception exception)
                {
                    MessageBox.Show(String.Format("{0}\n\n{1}", exception.Message, exception.StackTrace), exception.GetType().Name, MessageBoxButtons.OK);
                }
            #endif
            }
        }