/// <summary> /// Deletes the selected profile /// </summary> private void DelProfileBtn_Click(object sender, EventArgs e) { // Always confirm if (MessageBox.Show("Are you sure you want to delete this medal data profile?", "Confirm", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { // Make my typing easier in the future string Profile = ProfileSelector.SelectedItem.ToString(); this.Enabled = false; try { // Delete medal data files File.Delete(Path.Combine(PythonPath, "medal_data_" + Profile + ".py")); // Set current selected profile to null in the Bf2sConfig if (StatsPython.Config.MedalDataProfile == Profile) { // Unselect this as the default profile ActiveProfile = null; StatsPython.Config.MedalDataProfile = ""; StatsPython.Config.Save(); } // Update form ActivateProfileBtn.Text = "Set as Server Profile"; ActivateProfileBtn.BackgroundImage = Resources.power; } catch (Exception ex) { Notify.Show("Unable to Delete Profile Medaldata Files!", "Error: " + ex.Message, AlertType.Warning); this.Enabled = true; return; } // Suppress repainting the TreeView until all the objects have been created. AwardConditionsTree.Nodes.Clear(); AwardTree.BeginUpdate(); // Remove old medal data if applicable for (int i = 0; i < 4; i++) { AwardTree.Nodes[i].Nodes.Clear(); AwardTree.Nodes[i].ForeColor = Color.Black; } AwardTree.EndUpdate(); // Disable some form controls AwardTree.Enabled = false; AwardConditionsTree.Enabled = false; DelProfileBtn.Enabled = false; ActivateProfileBtn.Enabled = false; SaveBtn.Enabled = false; // Reset controls AwardNameBox.Text = null; AwardTypeBox.Text = null; AwardPictureBox.Image = null; ProfileSelector.SelectedIndex = -1; LastSelectedProfile = null; LoadProfiles(); this.Enabled = true; // Notify User Notify.Show("Medal Data Profile Deleted Successfully.", "Operation Successful", AlertType.Success); } }
/// <summary> /// This method is called upon selecting a new Medal Data Profile. /// It loads the new medal data, and calls the parser to parse it. /// </summary> private void ProfileSelector_SelectedIndexChanged(object sender, EventArgs e) { // Make sure we have an index! Also make sure we didnt select the same profile again if (ProfileSelector.SelectedIndex == -1 || ProfileSelector.SelectedItem.ToString() == LastSelectedProfile) { return; } // Get current profile string Profile = ProfileSelector.SelectedItem.ToString(); // Make sure the user wants to commit without saving changes if (ChangesMade && MessageBox.Show("Some changes have not been saved. Are you sure you want to continue?", "Confirm", MessageBoxButtons.YesNo) != DialogResult.Yes) { ProfileSelector.SelectedIndex = Profiles.IndexOf(LastSelectedProfile.ToLower()); return; } // Disable the form to prevent errors. Show loading screen this.Enabled = false; LoadingForm.ShowScreen(this); // Suppress repainting the TreeView until all the objects have been created. AwardConditionsTree.Nodes.Clear(); AwardTree.BeginUpdate(); // Remove old medal data if applicable for (int i = 0; i < 4; i++) { AwardTree.Nodes[i].Nodes.Clear(); AwardTree.Nodes[i].ForeColor = Color.Black; } // Get Medal Data try { MedalDataParser.LoadMedalDataFile(Path.Combine(PythonPath, "medal_data_" + Profile + ".py")); } catch (Exception ex) { AwardTree.EndUpdate(); MessageBox.Show(ex.Message, "Medal Data Parse Error"); ProfileSelector.SelectedIndex = -1; this.Enabled = true; LoadingForm.CloseForm(); return; } // Iterator for badges int itr = -1; // Add all awards to the corresponding Node foreach (Award A in AwardCache.GetBadges()) { if (Award.GetBadgeLevel(A.Id) == BadgeLevel.Bronze) { AwardTree.Nodes[0].Nodes.Add(A.Id, A.Name.Replace("Basic ", "")); ++itr; } AwardTree.Nodes[0].Nodes[itr].Nodes.Add(A.Id, A.Name.Split(' ')[0]); } foreach (Award A in AwardCache.GetMedals()) { AwardTree.Nodes[1].Nodes.Add(A.Id, A.Name); } foreach (Award A in AwardCache.GetRibbons()) { AwardTree.Nodes[2].Nodes.Add(A.Id, A.Name); } foreach (Rank R in AwardCache.GetRanks()) { AwardTree.Nodes[3].Nodes.Add(R.Id.ToString(), R.Name); } // Begin repainting the TreeView. AwardTree.CollapseAll(); AwardTree.EndUpdate(); // Reset current award data AwardNameBox.Text = null; AwardTypeBox.Text = null; AwardPictureBox.Image = null; // Process Active profile button if (Profile == ActiveProfile) { ActivateProfileBtn.Text = "Current Server Profile"; ActivateProfileBtn.BackgroundImage = Resources.check; } else { ActivateProfileBtn.Text = "Set as Server Profile"; ActivateProfileBtn.BackgroundImage = Resources.power; } // Apply inital highlighting of condition nodes ValidateConditions(); // Enable form controls AwardTree.Enabled = true; AwardConditionsTree.Enabled = true; DelProfileBtn.Enabled = true; ActivateProfileBtn.Enabled = true; SaveBtn.Enabled = true; this.Enabled = true; LoadingForm.CloseForm(); // Set this profile as the last selected profile LastSelectedProfile = Profile; ChangesMade = false; }