#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; #endregion namespace CodeImp.DoomBuilder.Config { internal class CompilerInfo { #region ================== Constants #endregion #region ================== Variables private string name; private string programfile; private List files; #endregion #region ================== Properties public string Name { get { return name; } } public string ProgramFile { get { return programfile; } } public List Files { get { return files; } } #endregion #region ================== Constructor / Disposer // Constructor public 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 this.programfile = cfg.ReadSetting("compilers." + name + ".program", ""); // Make list of files required cfgfiles = cfg.ReadSetting("compilers." + name, new Hashtable()); foreach(DictionaryEntry de in cfgfiles) files.Add(de.Value.ToString()); } #endregion #region ================== Methods // This copies all compiler files to a given destination public void CopyRequiredFiles(string targetpath) { // Copy files foreach(string f in files) File.Copy(Path.Combine(General.CompilersPath, f), Path.Combine(targetpath, f), true); } #endregion } }