UltimateZoneBuilder/Source/Windows/ConfigForm.cs

302 lines
8.1 KiB
C#
Raw Normal View History

2007-09-25 05:57:42 +00:00
#region ================== Copyright (c) 2007 Pascal vd Heiden
/*
* Copyright (c) 2007 Pascal vd Heiden, www.codeimp.com
* This program is released under GNU General Public License
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
#endregion
#region ================== Namespaces
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using Microsoft.Win32;
using System.Diagnostics;
using CodeImp.DoomBuilder.Actions;
using CodeImp.DoomBuilder.Data;
using CodeImp.DoomBuilder.Config;
using System.IO;
using CodeImp.DoomBuilder.Controls;
2007-09-25 05:57:42 +00:00
#endregion
namespace CodeImp.DoomBuilder.Windows
2007-09-25 05:57:42 +00:00
{
2008-01-02 21:49:43 +00:00
internal partial class ConfigForm : DelayedForm
2007-09-25 05:57:42 +00:00
{
// Constructor
public ConfigForm()
{
ListViewItem lvi;
2007-09-29 15:43:59 +00:00
2007-09-25 05:57:42 +00:00
// Initialize
InitializeComponent();
2007-09-27 22:55:03 +00:00
// Make list column header full width
columnname.Width = listconfigs.ClientRectangle.Width - SystemInformation.VerticalScrollBarWidth - 2;
2007-09-30 19:37:57 +00:00
2007-09-27 22:55:03 +00:00
// Fill list of configurations
foreach(ConfigurationInfo ci in General.Configs)
{
// Add a copy
lvi = listconfigs.Items.Add(ci.Name);
lvi.Tag = ci.Clone();
// This is the current configuration?
if((General.Map != null) && (General.Map.ConfigSettings.Filename == ci.Filename))
lvi.Selected = true;
2007-09-30 19:37:57 +00:00
}
// TODO: Save and test nodebuilders are allowed to be empty
2007-09-30 19:37:57 +00:00
// Fill comboboxes with nodebuilders
nodebuildersave.Items.AddRange(General.Nodebuilders.ToArray());
nodebuildertest.Items.AddRange(General.Nodebuilders.ToArray());
// Check if a map is loaded
if(General.Map != null)
{
// Show parameters example result
labelresult.Visible = true;
testresult.Visible = true;
noresultlabel.Visible = false;
}
else
{
// Cannot show parameters example result
labelresult.Visible = false;
testresult.Visible = false;
noresultlabel.Visible = true;
}
}
// This shows a specific page
public void ShowTab(int index)
{
tabs.SelectedIndex = index;
2007-09-30 19:37:57 +00:00
}
2007-09-28 08:56:18 +00:00
// Configuration item selected
private void listconfigs_SelectedIndexChanged(object sender, EventArgs e)
{
2007-09-29 15:43:59 +00:00
ConfigurationInfo ci;
NodebuilderInfo ni;
2007-09-28 08:56:18 +00:00
2007-09-29 15:43:59 +00:00
// Item selected?
if(listconfigs.SelectedItems.Count > 0)
2007-09-29 15:43:59 +00:00
{
// Enable panels
tabs.Enabled = true;
2007-09-29 15:43:59 +00:00
// Get config info of selected item
ci = listconfigs.SelectedItems[0].Tag as ConfigurationInfo;
2007-09-29 15:43:59 +00:00
// Fill resources list
2007-10-01 20:53:10 +00:00
configdata.EditResourceLocationList(ci.Resources);
2007-09-29 15:43:59 +00:00
// Go for all nodebuilder save items
nodebuildersave.SelectedIndex = -1;
for(int i = 0; i < nodebuildersave.Items.Count; i++)
{
// Get item
ni = nodebuildersave.Items[i] as NodebuilderInfo;
// Item matches configuration setting?
if(string.Compare(ni.Name, ci.NodebuilderSave, false) == 0)
{
// Select this item
nodebuildersave.SelectedIndex = i;
break;
}
}
// Go for all nodebuilder save items
nodebuildertest.SelectedIndex = -1;
for(int i = 0; i < nodebuildertest.Items.Count; i++)
2007-09-29 15:43:59 +00:00
{
// Get item
ni = nodebuildertest.Items[i] as NodebuilderInfo;
// Item matches configuration setting?
if(string.Compare(ni.Name, ci.NodebuilderTest, false) == 0)
{
// Select this item
nodebuildertest.SelectedIndex = i;
break;
}
}
2007-09-29 15:43:59 +00:00
// Set test application and parameters
testapplication.Text = ci.TestProgram;
testparameters.Text = ci.TestParameters;
}
}
// Key released
private void listconfigs_KeyUp(object sender, KeyEventArgs e)
{
// Nothing selected?
if(listconfigs.SelectedItems.Count == 0)
2007-09-29 15:43:59 +00:00
{
// Disable panels
configdata.FixedResourceLocationList(new DataLocationList());
configdata.EditResourceLocationList(new DataLocationList());
nodebuildersave.SelectedIndex = -1;
nodebuildertest.SelectedIndex = -1;
testapplication.Text = "";
testparameters.Text = "";
tabs.Enabled = false;
2007-09-29 15:43:59 +00:00
}
}
// Mouse released
private void listconfigs_MouseUp(object sender, MouseEventArgs e)
{
listconfigs_KeyUp(sender, new KeyEventArgs(Keys.None));
}
2007-09-29 15:43:59 +00:00
// Resource locations changed
private void resourcelocations_OnContentChanged()
{
ConfigurationInfo ci;
// Leave when no configuration selected
if(listconfigs.SelectedItems.Count == 0) return;
2007-09-29 15:43:59 +00:00
// Apply to selected configuration
ci = listconfigs.SelectedItems[0].Tag as ConfigurationInfo;
2007-09-29 15:43:59 +00:00
ci.Resources.Clear();
2007-10-01 20:53:10 +00:00
ci.Resources.AddRange(configdata.GetResources());
2007-09-29 15:43:59 +00:00
}
// Nodebuilder selection changed
private void nodebuildersave_SelectedIndexChanged(object sender, EventArgs e)
2007-09-29 15:43:59 +00:00
{
ConfigurationInfo ci;
// Leave when no configuration selected
if(listconfigs.SelectedItems.Count == 0) return;
2007-09-29 15:43:59 +00:00
// Apply to selected configuration
ci = listconfigs.SelectedItems[0].Tag as ConfigurationInfo;
if(nodebuildersave.SelectedItem != null)
ci.NodebuilderSave = (nodebuildersave.SelectedItem as NodebuilderInfo).Name;
2007-09-29 15:43:59 +00:00
}
// Nodebuilder selection changed
private void nodebuildertest_SelectedIndexChanged(object sender, EventArgs e)
2007-09-29 15:43:59 +00:00
{
ConfigurationInfo ci;
// Leave when no configuration selected
if(listconfigs.SelectedItems.Count == 0) return;
2007-09-29 15:43:59 +00:00
// Apply to selected configuration
ci = listconfigs.SelectedItems[0].Tag as ConfigurationInfo;
if(nodebuildertest.SelectedItem != null)
ci.NodebuilderTest = (nodebuildertest.SelectedItem as NodebuilderInfo).Name;
2007-09-29 15:43:59 +00:00
}
2007-09-29 15:43:59 +00:00
// Test application changed
private void testapplication_TextChanged(object sender, EventArgs e)
{
ConfigurationInfo ci;
// Leave when no configuration selected
if(listconfigs.SelectedItems.Count == 0) return;
2007-09-29 15:43:59 +00:00
// Apply to selected configuration
ci = listconfigs.SelectedItems[0].Tag as ConfigurationInfo;
2007-09-29 15:43:59 +00:00
ci.TestProgram = testapplication.Text;
}
// Test parameters changed
private void testparameters_TextChanged(object sender, EventArgs e)
{
ConfigurationInfo ci;
// Leave when no configuration selected
if(listconfigs.SelectedItems.Count == 0) return;
2007-09-29 15:43:59 +00:00
// Apply to selected configuration
ci = listconfigs.SelectedItems[0].Tag as ConfigurationInfo;
2007-09-29 15:43:59 +00:00
ci.TestParameters = testparameters.Text;
// Show example result
CreateParametersExample();
}
// This creates a new parameters example
private void CreateParametersExample()
{
// Map loaded?
if(General.Map != null)
{
// Make converted parameters
testresult.Text = General.Map.Launcher.ConvertParameters(testparameters.Text);
}
2007-09-29 15:43:59 +00:00
}
// OK clicked
private void apply_Click(object sender, EventArgs e)
{
ConfigurationInfo ci;
2007-09-30 19:37:57 +00:00
2007-09-29 15:43:59 +00:00
// Apply configuration items
foreach(ListViewItem lvi in listconfigs.Items)
2007-09-29 15:43:59 +00:00
{
// Get configuration item
ci = lvi.Tag as ConfigurationInfo;
2007-09-29 15:43:59 +00:00
// Find same configuration info in originals
foreach(ConfigurationInfo oci in General.Configs)
{
// Apply settings when they match
if(string.Compare(ci.Filename, oci.Filename) == 0) oci.Apply(ci);
}
}
2007-09-30 19:37:57 +00:00
2007-09-29 15:43:59 +00:00
// Close
this.DialogResult = DialogResult.OK;
2007-10-14 21:31:45 +00:00
this.Close();
2007-09-29 15:43:59 +00:00
}
// Cancel clicked
private void cancel_Click(object sender, EventArgs e)
{
// Close
this.DialogResult = DialogResult.Cancel;
2007-10-14 21:31:45 +00:00
this.Close();
2007-09-25 05:57:42 +00:00
}
2007-09-28 08:56:18 +00:00
// Browse test program
private void browsetestprogram_Click(object sender, EventArgs e)
{
// Set initial directory
if(testapplication.Text.Length > 0)
{
try { testprogramdialog.InitialDirectory = Path.GetDirectoryName(testapplication.Text); }
catch(Exception) { }
}
// Browse for test program
if(testprogramdialog.ShowDialog() == DialogResult.OK)
{
// Apply
testapplication.Text = testprogramdialog.FileName;
}
}
2007-09-25 05:57:42 +00:00
}
}