コード例 #1
0
ファイル: MainForm.cs プロジェクト: paladin74/Dapple
        protected override void WndProc(ref System.Windows.Forms.Message m)
        {
            if (m.Msg == OpenViewMessage)
            {
                try
                {
                    Segment s = new Segment("Dapple.OpenView", SharedMemoryCreationFlag.Attach, 0);

                    string[] strData = (string[])s.GetData();

                    string strView = strData[0];
                    string strGeoTiff = strData[1];
                    string strGeoTiffName = strData[2];
                    bool bGeotiffTmp = strData[3] == "YES";
                    this.lastView = strData[4];
                    bool bKmlTmp = strData[5] == "YES";
                    string strKmlName = strData[6];
                    string strKmlFile = strData[7];

                    if (strView.Length > 0)
                        OpenView(strView, strGeoTiff.Length == 0, true);
                    if (strGeoTiff.Length > 0)
                        AddGeoTiff(strGeoTiff, strGeoTiffName, bGeotiffTmp, true);
                    if (strKmlName.Length > 0 && strKmlFile.Length > 0)
                        AddKML(strKmlFile, strKmlName, bKmlTmp, false, null);
                }
                catch
                {
                }
            }
            base.WndProc(ref m);
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: paladin74/Dapple
        static void Main(string[] args)
        {
            #if !DEBUG
            Application.ThreadException += new ThreadExceptionEventHandler(Application_ThreadException);
            AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
            #endif
            WorldWindow.VideoMemoryExhausted += ReportVideoMemoryExhaustion;

            #if !DEBUG
            bool aborting = false;
            #endif

            #if DEBUG
            System.Text.StringBuilder oTemp = new System.Text.StringBuilder();
             foreach (String arg in args)
             {
            oTemp.Append(arg);
            oTemp.Append(Environment.NewLine);
             }
            if (!System.Diagnostics.Debugger.IsAttached)
            {
                ShowMessageBox(
                    "Dapple is being invoked with the following command-line parameters:" + Environment.NewLine + oTemp.ToString() + Environment.NewLine + Environment.NewLine + "Attach debugger if desired, then press OK to continue.",
                    "Dapple Startup",
                    MessageBoxButtons.OK,
                    MessageBoxDefaultButton.Button1,
                    MessageBoxIcon.Information);
            }
            #endif

            MontajRemote.RemoteInterface oRemoteInterface = null;
            IpcChannel oClientChannel = null;

            // Command line parsing
            CommandLineArguments cmdl = new CommandLineArguments(args);

            try
            {
                bool blSelectPersonalDAP = false;
                bool bAbort = false;
                string strView = "", strGeoTiff = "", strGeoTiffName = "", strLastView = "", strMapFileName = string.Empty;
                bool bGeotiffTmp = false;
                String strKMLFile = String.Empty, strKMLName = String.Empty;
                bool blKMLTmp = false;

                GeographicBoundingBox oAoi = null;
                string strAoiCoordinateSystem = string.Empty;
                Dapple.Extract.Options.Client.ClientType eClientType = Dapple.Extract.Options.Client.ClientType.None;

                if (cmdl["h"] != null)
                {
                    PrintUsage();
                    return;
                }

                SetDCAvailability(cmdl);

                if (cmdl["callerprocid"] != null)
                {
                    g_iCallerProcID = Int32.Parse(cmdl["callerprocid"], CultureInfo.InvariantCulture);
                }

                if (cmdl[0] != null)
                {
                    if (String.Compare(cmdl[0], "ABORT") == 0 && cmdl[1] != null)
                        bAbort = true;
                    else
                    {
                        strView = Path.GetFullPath(cmdl[0]);
                        if (String.Compare(Path.GetExtension(strView), MainForm.ViewExt, true) != 0 || !File.Exists(strView))
                        {
                            PrintUsage();
                            return;
                        }
                    }
                }

                if (cmdl["geotiff"] != null)
                {
                    strGeoTiff = Path.GetFullPath(cmdl["geotiff"]);
                    if (!(String.Compare(Path.GetExtension(strGeoTiff), ".tiff", true) == 0 || String.Compare(Path.GetExtension(strGeoTiff), ".tif", true) == 0) || !File.Exists(strGeoTiff))
                    {
                        PrintUsage();
                        return;
                    }
                }

            #if !DEBUG
                if (cmdl["noaborttool"] != null)
                {
                    g_blTestingMode = true;
                }
            #endif
                if (cmdl["personaldap"] != null)
                {
                    blSelectPersonalDAP = true;
                }

                if (cmdl["geotifftmp"] != null)
                {
                    string strGeoTiffTmpVar = cmdl["geotifftmp"];
                    int iIndex = strGeoTiffTmpVar.IndexOf(":");
                    if (iIndex == -1)
                    {
                        PrintUsage();
                        return;
                    }

                    strGeoTiff = Path.GetFullPath(strGeoTiffTmpVar.Substring(iIndex + 1));
                    strGeoTiffName = strGeoTiffTmpVar.Substring(0, iIndex);
                    bGeotiffTmp = true;
                    if (strGeoTiffName.Length == 0 || !(String.Compare(Path.GetExtension(strGeoTiff), ".tiff", true) == 0 || String.Compare(Path.GetExtension(strGeoTiff), ".tif", true) == 0) || !File.Exists(strGeoTiff))
                    {
                        PrintUsage();
                        return;
                    }
                }

                if (cmdl["kmltmp"] != null)
                {
                    string strKMLTmpVar = cmdl["kmltmp"];
                    int iIndex = strKMLTmpVar.IndexOf(":");
                    if (iIndex == -1)
                    {
                        PrintUsage();
                        return;
                    }

                    strKMLFile = Path.GetFullPath(strKMLTmpVar.Substring(iIndex + 1));
                    strKMLName = strKMLTmpVar.Substring(0, iIndex);
                    blKMLTmp = true;
                    if (strKMLName.Length == 0 || !(String.Compare(Path.GetExtension(strKMLFile), ".kmz", true) == 0 || String.Compare(Path.GetExtension(strKMLFile), ".kml", true) == 0) || !File.Exists(strKMLFile))
                    {
                        PrintUsage();
                        return;
                    }
                }

                if (cmdl["exitview"] != null)
                    strLastView = Path.GetFullPath(cmdl["exitview"]);

                if (cmdl["montajport"] != null)
                {
                    int iMontajPort = int.Parse(cmdl["montajport"], NumberStyles.Any, CultureInfo.InvariantCulture);

                    if (cmdl["dummyserver"] != null)
                    {
                        oClientChannel = new IpcChannel(String.Format(CultureInfo.InvariantCulture, "localhost:{0}", iMontajPort));
                        ChannelServices.RegisterChannel(oClientChannel, true);
                        RemotingConfiguration.RegisterWellKnownServiceType(typeof(MontajRemote.RemoteInterface), "MontajRemote", System.Runtime.Remoting.WellKnownObjectMode.Singleton);
                    }
                    else
                    {
                        oClientChannel = new IpcChannel();
                        ChannelServices.RegisterChannel(oClientChannel, true);
                    }

                    oRemoteInterface = (MontajRemote.RemoteInterface)Activator.GetObject(typeof(MontajRemote.RemoteInterface), String.Format(CultureInfo.InvariantCulture, "ipc://localhost:{0}/MontajRemote", iMontajPort));
                }

                if (cmdl["aoi"] != null)
                {
                    String[] strValues = cmdl["aoi"].Split(new char[] { ',' });
                    if (strValues.Length != 4)
                    {
                        ShowMessageBox(
                            "The -aoi command line argument has incorrect number of components.",
                            "Dapple Startup",
                            MessageBoxButtons.OK,
                            MessageBoxDefaultButton.Button1,
                            MessageBoxIcon.Error);
                        return;
                    }
                    double dMinX = 180, dMinY = 90, dMaxX = -180, dMaxY = -90;

                    bool bAoiArgument = double.TryParse(strValues[0], out dMinX);

                    if (bAoiArgument)
                        bAoiArgument = double.TryParse(strValues[1], out dMinY);

                    if (bAoiArgument)
                        bAoiArgument = double.TryParse(strValues[2], out dMaxX);

                    if (bAoiArgument)
                        bAoiArgument = double.TryParse(strValues[3], out dMaxY);

                    if (bAoiArgument)
                    {
                        oAoi = new GeographicBoundingBox(dMaxY, dMinY, dMinX, dMaxX);
                    }
                    else
                    {
                        ShowMessageBox(
                            "The -aoi command line argument has incorrectly-formatted component(s).",
                            "Dapple Startup",
                            MessageBoxButtons.OK,
                            MessageBoxDefaultButton.Button1,
                            MessageBoxIcon.Error);
                        return;
                    }

                    if (oAoi.North < oAoi.South || oAoi.East < oAoi.West)
                    {
                        ShowMessageBox(
                            "The -aoi command line argument specifies an incorrect bounding box.",
                            "Dapple Startup",
                            MessageBoxButtons.OK,
                            MessageBoxDefaultButton.Button1,
                            MessageBoxIcon.Error);
                        return;
                    }

                    if (cmdl["aoi_cs"] != null)
                    {
                        strAoiCoordinateSystem = cmdl["aoi_cs"];
                    }

                    if (string.IsNullOrEmpty(strAoiCoordinateSystem))
                    {
                        ShowMessageBox(
                            "The -aoi_cs command line parameter must be present when using -aoi parameter.",
                            "Dapple Startup",
                            MessageBoxButtons.OK,
                            MessageBoxDefaultButton.Button1,
                            MessageBoxIcon.Error);
                        return;
                    }

                    if (cmdl["filename_map"] != null)
                    {
                        strMapFileName = cmdl["filename_map"];
                    }
                }

                if (cmdl["client"] != null)
                {
                    try
                    {
                        eClientType = (Dapple.Extract.Options.Client.ClientType)Enum.Parse(eClientType.GetType(), cmdl["client"], true);
                    }
                    catch
                    {
                        ShowMessageBox(
                            "The -client command line is invalid.",
                            "Dapple Startup",
                            MessageBoxButtons.OK,
                            MessageBoxDefaultButton.Button1,
                            MessageBoxIcon.Error);
                        return;
                    }
                }

                // From now on in own path please and free the console
                Directory.SetCurrentDirectory(Path.GetDirectoryName(Application.ExecutablePath));
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);
                if (bAbort)
                {
                    string strErrors = File.ReadAllText(args[1]);
            #if !DEBUG
                    aborting = true;
            #endif
                    ErrorDisplay errorDialog = new ErrorDisplay();
                    errorDialog.errorMessages(strErrors);
                    Application.Run(errorDialog);
                }
                else
                {
                    if (GetSystemMetrics(SM_REMOTESESSION) != 0)
                    {
                        ShowMessageBox(
                            "Dapple cannot be run over a remote connection.",
                            "Dapple Startup",
                            MessageBoxButtons.OK,
                            MessageBoxDefaultButton.Button1,
                            MessageBoxIcon.Error);
                        return;
                    }

                    Process instance = RunningInstance();

                    if (instance == null)
                    {
                        try
                        {
                            MainForm oForm = new MainForm(strView, strGeoTiff, strGeoTiffName, bGeotiffTmp, strKMLFile, strKMLName, blKMLTmp, strLastView, eClientType, oRemoteInterface, oAoi, strAoiCoordinateSystem, strMapFileName);
                            oForm.SetSelectPersonalDAPOnStartup(blSelectPersonalDAP);
                            Application.Run(oForm);
                        }
                        catch (Microsoft.DirectX.DirectXException)
                        {
                            if (g_blTestingMode == true)
                            {
                                throw;
                            }
                            else
                            {
                                ShowMessageBox(
                                    "Dapple was unable to locate a compatible graphics adapter. Make sure you are running the latest version of DirectX.",
                                    "Dapple Startup",
                                    MessageBoxButtons.OK,
                                    MessageBoxDefaultButton.Button1,
                                    MessageBoxIcon.Error);
                                return;
                            }
                        }
                        catch (System.Runtime.Remoting.RemotingException)
                        {
                            if (g_blTestingMode == true)
                            {
                                throw;
                            }
                            else
                            {
                                ShowMessageBox(
                                    "Dapple has experienced an error attempting to connect to " + EnumUtils.GetDescription(eClientType) + ". Restarting the application or your computer may fix this problem.",
                                    "Dapple Startup",
                                    MessageBoxButtons.OK,
                                    MessageBoxDefaultButton.Button1,
                                    MessageBoxIcon.Error);
                            }
                        }
                        catch (System.ComponentModel.Win32Exception)
                        {
                            if (g_blTestingMode == true)
                            {
                                throw;
                            }
                            else
                            {
                                ShowMessageBox(
                                    "Dapple has encountered an internal Win32 error during startup." + Environment.NewLine +
                                    "If this error persists, and you have a Logitech webcam installed, you may be able to resolve the error" + Environment.NewLine +
                                    "by disabling the 'Process Monitor' and 'LvSrvLauncher' services on your computer.",
                                    "Dapple Startup",
                                    MessageBoxButtons.OK,
                                    MessageBoxDefaultButton.Button1,
                                    MessageBoxIcon.Error);
                            }
                        }
                    }
                    else
                    {
                        HandleRunningInstance(instance);
                        if (strView.Length > 0 || strGeoTiff.Length > 0 || (strKMLName.Length > 0 && strKMLFile.Length > 0))
                        {
                            try
                            {
                                using (Segment s = new Segment("Dapple.OpenView", SharedMemoryCreationFlag.Create, 10000))
                                {
                                    string[] strData = new string[8];
                                    strData[0] = strView;
                                    strData[1] = strGeoTiff;
                                    strData[2] = strGeoTiffName;
                                    strData[3] = bGeotiffTmp ? "YES" : "NO";
                                    strData[4] = strLastView;
                                    strData[5] = blKMLTmp ? "YES" : "NO";
                                    strData[6] = strKMLName;
                                    strData[7] = strKMLFile;

                                    s.SetData(strData);
                                    SendMessage(instance.MainWindowHandle, MainForm.OpenViewMessage, IntPtr.Zero, IntPtr.Zero);
                                }
                            }
                            catch
                            {
                            }
                        }
                    }
                }
            }
            #if !DEBUG
            catch (Exception caught)
            {
                if (g_blTestingMode)
                {
                    throw;
                }
                else
                {
                    if (!aborting)
                        Utility.AbortUtility.Abort(caught, Thread.CurrentThread);
                }
            }
            #endif
            finally
            {
                if (oRemoteInterface != null)
                {
                    try
                    {
                        oRemoteInterface.EndConnection();
                    }
                    catch (System.Runtime.Remoting.RemotingException) { } // Ignore these, they most likely mean that OM was closed before Dapple was.
                }
                if (oClientChannel != null)
                {
                    try
                    {
                        ChannelServices.UnregisterChannel(oClientChannel);
                    }
                    catch (System.Runtime.Remoting.RemotingException) { } // Ignore these, they most likely mean that OM was closed before Dapple was.
                }
            }
        }