UltimateZoneBuilder/Source/Config/ConfigurationInfo.cs

214 lines
7.9 KiB
C#
Raw Normal View History

#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
2007-06-14 23:31:57 +00:00
using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.Text;
2007-09-27 22:55:03 +00:00
using CodeImp.DoomBuilder.IO;
2007-10-01 20:53:10 +00:00
using CodeImp.DoomBuilder.Data;
2007-09-27 22:55:03 +00:00
using System.IO;
using CodeImp.DoomBuilder.Editing;
2007-06-14 23:31:57 +00:00
#endregion
namespace CodeImp.DoomBuilder.Config
2007-06-14 23:31:57 +00:00
{
2008-01-02 21:49:43 +00:00
internal class ConfigurationInfo : IComparable<ConfigurationInfo>
2007-06-14 23:31:57 +00:00
{
2007-09-27 22:55:03 +00:00
#region ================== Variables
private string name;
private string filename;
private string settingskey;
private string defaultlumpname;
private string nodebuildersave;
private string nodebuildertest;
2007-10-01 20:53:10 +00:00
private DataLocationList resources;
2007-09-28 09:55:23 +00:00
private string testprogram;
private string testparameters;
private bool customparameters;
private int testskill;
private List<ThingsFilter> thingsfilters;
2008-10-01 14:17:52 +00:00
private List<DefinedTextureSet> texturesets;
2008-10-01 08:21:10 +00:00
2007-09-27 22:55:03 +00:00
#endregion
#region ================== Properties
public string Name { get { return name; } }
public string Filename { get { return filename; } }
public string DefaultLumpName { get { return defaultlumpname; } }
public string NodebuilderSave { get { return nodebuildersave; } set { nodebuildersave = value; } }
public string NodebuilderTest { get { return nodebuildertest; } set { nodebuildertest = value; } }
2007-10-01 20:53:10 +00:00
public DataLocationList Resources { get { return resources; } }
2007-09-29 15:43:59 +00:00
public string TestProgram { get { return testprogram; } set { testprogram = value; } }
public string TestParameters { get { return testparameters; } set { testparameters = value; } }
public int TestSkill { get { return testskill; } set { testskill = value; } }
public bool CustomParameters { get { return customparameters; } set { customparameters = value; } }
internal ICollection<ThingsFilter> ThingsFilters { get { return thingsfilters; } }
2008-10-01 14:17:52 +00:00
public List<DefinedTextureSet> TextureSets { get { return texturesets; } }
2007-09-27 22:55:03 +00:00
#endregion
#region ================== Constructor / Disposer
2007-06-14 23:31:57 +00:00
// Constructor
public ConfigurationInfo(Configuration cfg, string filename)
2007-06-14 23:31:57 +00:00
{
// Initialize
this.filename = filename;
2007-09-27 22:55:03 +00:00
this.settingskey = Path.GetFileNameWithoutExtension(filename).ToLower();
// Load settings from game configuration
this.name = cfg.ReadSetting("game", "<unnamed game>");
this.defaultlumpname = cfg.ReadSetting("defaultlumpname", "");
2007-09-27 22:55:03 +00:00
// Load settings from program configuration
this.nodebuildersave = General.Settings.ReadSetting("configurations." + settingskey + ".nodebuildersave", "");
this.nodebuildertest = General.Settings.ReadSetting("configurations." + settingskey + ".nodebuildertest", "");
2007-09-28 09:55:23 +00:00
this.testprogram = General.Settings.ReadSetting("configurations." + settingskey + ".testprogram", "");
this.testparameters = General.Settings.ReadSetting("configurations." + settingskey + ".testparameters", "");
this.customparameters = General.Settings.ReadSetting("configurations." + settingskey + ".customparameters", false);
this.testskill = General.Settings.ReadSetting("configurations." + settingskey + ".testskill", 3);
2007-12-01 01:32:56 +00:00
this.resources = new DataLocationList(General.Settings.Config, "configurations." + settingskey + ".resources");
// Make list of things filters
thingsfilters = new List<ThingsFilter>();
IDictionary cfgfilters = General.Settings.ReadSetting("configurations." + settingskey + ".thingsfilters", new Hashtable());
foreach(DictionaryEntry de in cfgfilters)
{
thingsfilters.Add(new ThingsFilter(General.Settings.Config, "configurations." + settingskey + ".thingsfilters." + de.Key));
}
2008-10-01 08:21:10 +00:00
// Make list of texture sets
2008-10-01 14:17:52 +00:00
texturesets = new List<DefinedTextureSet>();
2008-10-01 08:21:10 +00:00
IDictionary sets = General.Settings.ReadSetting("configurations." + settingskey + ".texturesets", new Hashtable());
foreach(DictionaryEntry de in sets)
{
texturesets.Add(new DefinedTextureSet(General.Settings.Config, "configurations." + settingskey + ".texturesets." + de.Key));
}
2007-06-14 23:31:57 +00:00
}
2007-09-27 22:55:03 +00:00
// Constructor
private ConfigurationInfo()
{
}
#endregion
#region ================== Methods
2007-06-14 23:31:57 +00:00
// This compares it to other ConfigurationInfo objects
public int CompareTo(ConfigurationInfo other)
{
// Compare
return name.CompareTo(other.name);
}
2007-09-27 22:55:03 +00:00
// This saves the settings to program configuration
public void SaveSettings()
{
// Write to configuration
General.Settings.WriteSetting("configurations." + settingskey + ".nodebuildersave", nodebuildersave);
General.Settings.WriteSetting("configurations." + settingskey + ".nodebuildertest", nodebuildertest);
2007-09-28 09:55:23 +00:00
General.Settings.WriteSetting("configurations." + settingskey + ".testprogram", testprogram);
General.Settings.WriteSetting("configurations." + settingskey + ".testparameters", testparameters);
General.Settings.WriteSetting("configurations." + settingskey + ".customparameters", customparameters);
General.Settings.WriteSetting("configurations." + settingskey + ".testskill", testskill);
2007-12-01 01:32:56 +00:00
resources.WriteToConfig(General.Settings.Config, "configurations." + settingskey + ".resources");
// Write filters to configuration
for(int i = 0; i < thingsfilters.Count; i++)
{
thingsfilters[i].WriteSettings(General.Settings.Config,
"configurations." + settingskey + ".thingsfilters.filter" + i.ToString(CultureInfo.InvariantCulture));
}
2008-10-01 08:21:10 +00:00
// Write texturesets to configuration
for(int i = 0; i < texturesets.Count; i++)
{
texturesets[i].WriteToConfig(General.Settings.Config,
"configurations." + settingskey + ".texturesets.set" + i.ToString(CultureInfo.InvariantCulture));
}
2007-09-27 22:55:03 +00:00
}
// String representation
public override string ToString()
{
return name;
}
// This clones the object
public ConfigurationInfo Clone()
{
ConfigurationInfo ci = new ConfigurationInfo();
ci.name = this.name;
ci.filename = this.filename;
ci.settingskey = this.settingskey;
ci.nodebuildersave = this.nodebuildersave;
ci.nodebuildertest = this.nodebuildertest;
2007-10-01 20:53:10 +00:00
ci.resources = new DataLocationList();
2007-09-27 22:55:03 +00:00
ci.resources.AddRange(this.resources);
2007-09-28 09:55:23 +00:00
ci.testprogram = this.testprogram;
ci.testparameters = this.testparameters;
ci.customparameters = this.customparameters;
ci.testskill = this.testskill;
2008-10-01 14:17:52 +00:00
ci.texturesets = new List<DefinedTextureSet>();
foreach(DefinedTextureSet s in this.texturesets) ci.texturesets.Add(s.Copy());
2007-09-27 22:55:03 +00:00
return ci;
}
// This applies settings from an object
public void Apply(ConfigurationInfo ci)
{
this.name = ci.name;
this.filename = ci.filename;
this.settingskey = ci.settingskey;
this.nodebuildersave = ci.nodebuildersave;
this.nodebuildertest = ci.nodebuildertest;
2007-10-01 20:53:10 +00:00
this.resources = new DataLocationList();
2007-09-27 22:55:03 +00:00
this.resources.AddRange(ci.resources);
2007-09-28 09:55:23 +00:00
this.testprogram = ci.testprogram;
this.testparameters = ci.testparameters;
this.customparameters = ci.customparameters;
this.testskill = ci.testskill;
2008-10-01 14:17:52 +00:00
this.texturesets = new List<DefinedTextureSet>();
foreach(DefinedTextureSet s in ci.texturesets) this.texturesets.Add(s.Copy());
2008-10-01 08:21:10 +00:00
}
// This applies the defaults
public void ApplyDefaults()
{
// No texture sets?
if(texturesets.Count == 0)
{
// Copy the default texture sets from the game configuration
2008-10-01 14:17:52 +00:00
foreach(DefinedTextureSet s in General.Map.Config.TextureSets)
2008-10-01 08:21:10 +00:00
{
// Add a copy to our list
texturesets.Add(s.Copy());
}
}
2007-09-27 22:55:03 +00:00
}
#endregion
2007-06-14 23:31:57 +00:00
}
}