#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; using System.Collections.Generic; using System.Globalization; using System.Text; using CodeImp.DoomBuilder.IO; using CodeImp.DoomBuilder.Data; using System.IO; using System.Diagnostics; using CodeImp.DoomBuilder.Compilers; #endregion namespace CodeImp.DoomBuilder.Config { public sealed class CompilerInfo { #region ================== Constants #endregion #region ================== Variables private string name; private string programfile; private string programinterface; private List files; #endregion #region ================== Properties public string Name { get { return name; } } public string ProgramFile { get { return programfile; } } public string ProgramInterface { get { return programinterface; } } public List Files { get { return files; } } #endregion #region ================== Constructor / Disposer // Constructor internal CompilerInfo(string filename, string name, Configuration cfg) { IDictionary cfgfiles; General.WriteLogLine("Registered compiler configuration '" + name + "' from '" + filename + "'"); // Initialize this.name = name; this.files = new List(); // Read program file and interface this.programfile = cfg.ReadSetting("compilers." + name + ".program", ""); this.programinterface = cfg.ReadSetting("compilers." + name + ".interface", ""); // Make list of files required cfgfiles = cfg.ReadSetting("compilers." + name, new Hashtable()); foreach(DictionaryEntry de in cfgfiles) { if(de.Key.ToString() != "interface") files.Add(de.Value.ToString()); } } #endregion #region ================== Methods // This creates the actual compiler interface internal Compiler Create() { return Compiler.Create(this); } #endregion } }