Exemple #1
0
        /// <summary>
        /// Fermeture du programme
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void ffs2play_FormClosing(object sender, FormClosingEventArgs e)
        {
            if (!pm.AutoExit)
            {
                DialogResult dialogResult = MessageBox.Show("Etes vous sûr de vouloir quitter ffs2play?", "Confirmation de sortie", MessageBoxButtons.YesNo);
                if (dialogResult == DialogResult.No)
                {
                    e.Cancel = true;
                    return;
                }
            }
            P2P.Init(false);
            // On ferme la connexion avec simconnect
            scm.closeConnection();
            // Sauvegarde du status de la fenêtre seulement normal ou maximised)
            switch (WindowState)
            {
            case FormWindowState.Normal:
            case FormWindowState.Maximized:
                Properties.Settings.Default.WindowState = WindowState;
                break;

            default:
                Properties.Settings.Default.WindowState = FormWindowState.Normal;
                break;
            }
            // Sauvegarde de la configuration
            settings.Save();
            if (pm.IsConnected())
            {
                pm.AutoExit = true;
                e.Cancel    = true;
                pm.Disconnect(PirepManager.Disco_mode.Close);
            }
        }
Exemple #2
0
        /// <summary>
        /// Constructeur de la fenêtre principale
        /// </summary>
        public ffs2play()
        {
            // Définition de la culture par défaut
            Thread.CurrentThread.CurrentUICulture = FrenchCulture;
            // LeResourceManager prend en paramètre : nom_du_namespace.nom_de_la_ressource_principale
            RM = new System.Resources.ResourceManager("Localisation.Form1", typeof(ffs2play).Assembly);
            // Initialisation de contenu de la fenêtre
            InitializeComponent();
#if DEBUG
        #if P3D
            Text = "ffs2play P3D (version Debug)";
        #else
            Text = "ffs2play (version Debug)";
        #endif
#else
        #if P3D
            Text = "ffs2play P3D";
        #else
            Text = "ffs2play";
        #endif
#endif
            pInstance = this;
            // Préparation du bouton de connexion au simulateur
            ILConnexionFS.Images.Add(Resources.plane_red);
            ILConnexionFS.Images.SetKeyName(0, "Déconnecté");
            ILConnexionFS.Images.Add(Resources.plane_green);
            ILConnexionFS.Images.SetKeyName(1, "Connecté");
            btnConnectFS.ImageIndex = 0;

            // Préparation du bouton de connexion au serveur web
            ilServeur.Images.Add(Resources.connect2_R);
            ilServeur.Images.SetKeyName(0, "Déconnecté");
            ilServeur.Images.Add(Resources.connect2_V);
            ilServeur.Images.SetKeyName(1, "Connecté");
            btnConPirep.ImageIndex = 0;

            // Configuration par défaut de la fenêtre
            WindowState   = FormWindowState.Normal;
            StartPosition = FormStartPosition.WindowsDefaultBounds;
            SetAllowUnsafeHeaderParsing20();

            // Copy user settings from previous application version if necessary
            settings = Settings.Default;
            if ((bool)settings["UpgradeRequired"] == true)
            {
                // upgrade the settings to the latest version
                settings.Upgrade();

                // clear the upgrade flag
                settings["UpgradeRequired"] = false;
                settings.Save();
            }
            else
            {
                // the settings are up to date
            }
            // On vérifie des les données de taille et de position de la fenêtre ne sont pas vides
            // Et qu'elles sont toujours valides avec la configuration d'écran actuelle
            // Ceci pour éviter une fenêtre en dehors des limites
            if (Properties.Settings.Default.WindowPosition != Rectangle.Empty &&
                IsVisibleOnAnyScreen(Properties.Settings.Default.WindowPosition))
            {
                // Définition de la position et de la taille de la fenêtre
                StartPosition = FormStartPosition.Manual;
                DesktopBounds = Properties.Settings.Default.WindowPosition;

                // Définition de l'état de la fenêtre pour être maximisée
                // ou réduite selon la sauvegarde
                WindowState = Properties.Settings.Default.WindowState;
            }
            else
            {
                // Réinitialisation de la position à la valeur par défaut
                StartPosition = FormStartPosition.WindowsDefaultLocation;

                // Nous pouvons alors définir la taille enrégistrée si celle ci
                // Existe
                if (Properties.Settings.Default.WindowPosition != Rectangle.Empty)
                {
                    Size = Properties.Settings.Default.WindowPosition.Size;
                }
            }
            // Mise à jour de l'option Météo Automatique
            cbEnaAutoWeather.Checked = Settings.Default.MetarAutoEnable;
            // La fenêtre est configurée
            windowInitialized = true;

            log = Logger.Instance;
            log.LogMessage("ffs2play démarré");

            // Creation du contrôleur d'interface avec le simulateur
            scm = SCManager.Instance;

            // Création du contrôleur de mapping des AI

            m_Mapping = AIMapping.Instance;

            // Création du contrôleur d'inteface avec le serveur web
            pm = PirepManager.Instance;

            // Création du contrôleur d'analyse de vol
            Analyse = AnalyseurManager.Instance;

            // Création du contrôleur de connexion P2P
            P2P = P2PManager.Instance;
            if (Properties.Settings.Default.P2PEnable)
            {
                P2P.Init(true);
            }
            AcceptButton = btnSend;
            string[] arguments = Environment.GetCommandLineArgs();
            scm.openConnection();

            //Vérification de la version
            string CheckVersionURL;
#if P3D
            CheckVersionURL = "http://download.ffsimulateur2.fr/ffs2playp3d.php";
#else
            CheckVersionURL = "http://download.ffsimulateur2.fr/ffs2play.php";
#endif
            if (Properties.Settings.Default.Beta)
            {
                CheckVersionURL += "?beta";
            }
            HTTPRequestThread CheckVersion = new HTTPRequestThread(CheckVersionURL, CheckVersionCallBack);

            CheckVersion.Start();
            if (!Properties.Settings.Default.LogVisible)
            {
                scMainWindow.Panel2Collapsed = true;
                scMainWindow.Panel2.Hide();
            }
        }
Exemple #3
0
        private void ApplyChanges()
        {
            if (!Changes)
            {
                return;
            }
            if (cbUPNP.Checked != Properties.Settings.Default.UPNPEnable)
            {
                Properties.Settings.Default.UPNPEnable = cbUPNP.Checked;
            }
            if (cbInfoSim.Checked != Properties.Settings.Default.P2PInfoEnable)
            {
                Properties.Settings.Default.P2PInfoEnable = cbInfoSim.Checked;
            }
#if DEBUG
            if (cbShadow.Checked != Properties.Settings.Default.ShadowEnable)
            {
                Properties.Settings.Default.ShadowEnable = cbShadow.Checked;
            }
#endif
            if (cbDropRateDisp.Checked != Properties.Settings.Default.EnaDropDisp)
            {
                Properties.Settings.Default.EnaDropDisp = cbDropRateDisp.Checked;
            }
            if (cbSendDropRate.Checked != Properties.Settings.Default.EnaDropSend)
            {
                Properties.Settings.Default.EnaDropSend = cbSendDropRate.Checked;
            }
            if (numPort.Value != Properties.Settings.Default.P2PPort)
            {
                Properties.Settings.Default.P2PPort = (ushort)numPort.Value;
            }
            if (numP2PTx.Value != Properties.Settings.Default.P2PRate)
            {
                Properties.Settings.Default.P2PRate = (ushort)numP2PTx.Value;
            }
            if (numAIRayon.Value != Properties.Settings.Default.P2PRadius)
            {
                Properties.Settings.Default.P2PRadius = (ushort)numAIRayon.Value;
            }
            if (numAILimite.Value != Properties.Settings.Default.P2PAILimite)
            {
                Properties.Settings.Default.P2PAILimite = (int)numAILimite.Value;
            }
            if (NeedP2PRestart)
            {
                P2PManager P2P = P2PManager.Instance;
                P2P.Init(false);
                if (Properties.Settings.Default.P2PEnable)
                {
                    P2P.Init(true);
                }
                NeedP2PRestart = false;
            }
            if (NeedDBReload)
            {
                if (FolderList != null)
                {
                    FolderList.Clear();
                    foreach (ListViewItem item in lvItems.Items)
                    {
                        FolderList.Add(item.Text);
                    }
                    //AIM.CleanAIDB();
                    AIM.StartScanSimObject();
                }
            }
            if (cbBeta.Checked != Properties.Settings.Default.Beta)
            {
                Properties.Settings.Default.Beta = cbBeta.Checked;
            }
            Properties.Settings.Default.Save();
            Changes = false;
            btnAppliquer.Enabled   = false;
            btnAppliquer.BackColor = Color.LightGray;
            btnAppliquer.ForeColor = Color.Black;
        }