#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 System.Windows.Forms; using CodeImp.DoomBuilder.Map; #endregion namespace CodeImp.DoomBuilder.Config { internal class ScriptConfiguration { #region ================== Constants #endregion #region ================== Variables // Original configuration private Configuration cfg; // Compiler settings private CompilerInfo compiler; private string parameters; private string resultlump; // Editor settings private bool casesensitive; private int insertcase; private int lexer; private string keywordhelp; // Collections private Dictionary keywords; private List constants; #endregion #region ================== Properties // Compiler settings public CompilerInfo Compiler { get { return compiler; } } public string Parameters { get { return parameters; } } public string ResultLump { get { return resultlump; } } // Editor settings public bool CaseSensitive { get { return casesensitive; } } public int InsertCase { get { return insertcase; } } public int Lexer { get { return lexer; } } public string KeywordHelp { get { return keywordhelp; } } // Collections public Dictionary.KeyCollection Keywords { get { return keywords.Keys; } } public Dictionary.ValueCollection KeywordFunctions { get { return keywords.Values; } } public ICollection Constants { get { return constants; } } #endregion #region ================== Constructor / Disposer // Constructor internal ScriptConfiguration(Configuration cfg) { string compilername; IDictionary dic; // Initialize this.cfg = cfg; this.keywords = new Dictionary(); this.constants = new List(); // Read settings compilername = cfg.ReadSetting("compiler", ""); parameters = cfg.ReadSetting("parameters", ""); resultlump = cfg.ReadSetting("resultlump", ""); casesensitive = cfg.ReadSetting("casesensitive", true); insertcase = cfg.ReadSetting("insertcase", 0); lexer = cfg.ReadSetting("lexer", 0); keywordhelp = cfg.ReadSetting("keywordhelp", ""); // Load keywords dic = cfg.ReadSetting("keywords", new Hashtable()); foreach(DictionaryEntry de in dic) keywords.Add(de.Key.ToString(), de.Value.ToString()); // Load constants dic = cfg.ReadSetting("constants", new Hashtable()); foreach(DictionaryEntry de in dic) constants.Add(de.Key.ToString()); // Compiler specified? if(compilername.Length > 0) { // Find compiler foreach(CompilerInfo c in General.Compilers) { // Compiler name matches? if(c.Name == compilername) { // Apply compiler this.compiler = c; break; } } // No compiler found? if(this.compiler == null) throw new Exception("No such compiler defined: '" + compilername + "'"); } } #endregion #region ================== Methods #endregion } }