示例#1
0
 public static HeroWithSkinHelp Instance()
 {
     if (intance == null)
     {
         intance = new HeroWithSkinHelp();
     }
     return(intance);
 }
示例#2
0
    public ReadBuySkinConfig(string xmlFilePath)
    {
        TextAsset xmlfile = Resources.Load(xmlFilePath) as TextAsset;

        if (!xmlfile)
        {
            Debug.LogError(" error infos: 没有找到指定的xml文件:" + xmlFilePath);
        }

        xmlDoc = new XmlDocument();
        xmlDoc.LoadXml(xmlfile.text);

        XmlNodeList infoNodeList = xmlDoc.SelectSingleNode("SkinsPurchaseCfg").ChildNodes;

        for (int i = 0; i < infoNodeList.Count; i++)//XmlNode xNode in infoNodeList)
        {
            if ((infoNodeList[i] as XmlElement).GetAttributeNode("CommodityID") == null)
            {
                continue;
            }

            string typeName = (infoNodeList[i] as XmlElement).GetAttributeNode("CommodityID").InnerText;

            BuySkinConfigInfo buySkinInfo = new BuySkinConfigInfo();
            buySkinInfo.skinId = Convert.ToInt32(typeName);
            string cost = "", price = "";
            foreach (XmlElement xEle in infoNodeList[i].ChildNodes)
            {
                #region 搜索
                switch (xEle.Name)
                {
                case "UnlockHeroID":
                    buySkinInfo.heroId = Convert.ToInt32(xEle.InnerText);
                    break;

                case "HalfPhotoIcon":
                    buySkinInfo.halfPhotoIcon = Convert.ToString(xEle.InnerText);
                    break;

                case "DefaultSkin":
                    buySkinInfo.isDefaultSkin = Convert.ToInt32(xEle.InnerText) == 1 ? true : false;
                    break;

                case "TexturePick":
                    buySkinInfo.skinTextureName = Convert.ToString(xEle.InnerText);
                    break;
                }

                #endregion
            }
            ConfigReader.buySkinXmlInfoDict.Add(buySkinInfo.skinId, buySkinInfo);
            HeroWithSkinHelp.Instance().LinkHeroWithSkin(buySkinInfo);
        }
    }