Пример #1
0
        public static TXmlType Create <TXmlType>(XmlDataFile xmlDataFile) where TXmlType : XmlBaseLoader
        {
            TXmlType xmlType;

            switch (xmlDataFile)
            {
            case XmlDataFile.SecondaryWeapons:
                xmlType = new XmlSecondaryWeapons().Cast <TXmlType>();
                break;

            case XmlDataFile.ShipDescriptions:
                xmlType = new XmlShipDescriptions().Cast <TXmlType>();
                break;

            case XmlDataFile.Credits:
                xmlType = new XmlCredits().Cast <TXmlType>();
                break;

            default:
                throw new NotImplementedException("The specified XmlDataFile type is not implemented.");
            }

            if (!xmlType.LoadXml(xmlDataFile))
            {
                throw new Exception("The data file failed to load.");
            }
            return(xmlType);
        }
Пример #2
0
 protected bool LoadXml(XmlDataFile xmlDataFile)
 {
     try
     {
         _xml = XDocument.Load(String.Format("Xml\\{0}.xml", xmlDataFile.ToString()));
         return(true);
     }
     catch
     {
         //TODO: Handle error
         return(false);
     }
 }