ConfigManager.cs 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863
  1. using LitJson;
  2. using UnityEngine;
  3. using System;
  4. using System.IO;
  5. using System.Xml;
  6. using System.Text;
  7. using System.Collections;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using System.Security.Cryptography;
  11. using Sfs2X.Entities;
  12. using Sfs2X.Entities.Data;
  13. using UnityEngine.UI;
  14. using Random = UnityEngine.Random;
  15. public class ConfigManager : Regist
  16. {
  17. #region Config
  18. public static XmlNode ConfigRootNode
  19. {
  20. get
  21. {
  22. if (configRootNode == null)
  23. {
  24. configRootNode = ConfigDocument.SelectSingleNode(PlayerConfigLabel.RootNode);
  25. }
  26. return configRootNode;
  27. }
  28. set { configRootNode = value; }
  29. }
  30. public static XmlNode configRootNode;
  31. public static XmlDocument ConfigDocument
  32. {
  33. get
  34. {
  35. if (configDocument == null)
  36. {
  37. LoadConfigDocument();
  38. }
  39. return configDocument;
  40. }
  41. set { configDocument = value; }
  42. }
  43. public static XmlDocument configDocument;
  44. public static float UrlTimer;
  45. public static bool PlayerDocumentDamageFlag;
  46. public static bool IDRequestFlag;
  47. public static bool SerialNumberRequestFlag = true;
  48. public static XmlDocument DefaultConfigDocument = new XmlDocument();
  49. public static int ConfigReplayVersion = -1000;
  50. public static string ConfigPath
  51. {
  52. get
  53. {
  54. if (string.IsNullOrEmpty(configPath))
  55. {
  56. configPath = string.Format("{0}/{1}", Application.persistentDataPath, ResourceLabel.PlayerConfigXml);
  57. }
  58. return configPath;
  59. }
  60. }
  61. public static string configPath;
  62. #endregion
  63. private static string UnvalidConfigMD5 = "";
  64. private static void LoadConfigDocument()
  65. {
  66. //if (!PlayerPrefManager.GetBool(PlayerPrefManager.INTERACT_CONFIG, false))
  67. //{
  68. // Debug.LogWarning("Download Archive : did not interact");
  69. // PlayerDocumentDamageFlag = true;
  70. // SerialNumberRequestFlag = false;
  71. // return;
  72. //}
  73. int defaultVersion;
  74. int nativeVersion;
  75. XmlNode node;
  76. XmlDocument nativeDoc = new XmlDocument();
  77. if (File.Exists(ConfigPath))
  78. {
  79. try
  80. {
  81. StreamReader sr = new StreamReader(ConfigPath);
  82. nativeDoc.LoadXml(sr.ReadToEnd());
  83. sr.Close();
  84. Auxiliary.DecryptXml(nativeDoc);
  85. }
  86. catch (Exception)
  87. {
  88. Debug.LogWarning("Download Archive : MD5 doesn't match");
  89. //ManaDebug.Log("Download Archive");
  90. PlayerDocumentDamageFlag = true;
  91. SerialNumberRequestFlag = false;
  92. return;
  93. }
  94. TextAsset textAsset = ResourceManager.Load<TextAsset>(ResourceLabel.PlayerConfig, Folder.Default);
  95. DefaultConfigDocument.LoadXml(textAsset.text);
  96. defaultVersion = int.Parse(DefaultConfigDocument.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value);
  97. node = nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version);
  98. if (node == null)
  99. {
  100. StreamWriter sw = new StreamWriter(ConfigPath);
  101. sw.Write(DefaultConfigDocument.OuterXml);
  102. sw.Close();
  103. configDocument = DefaultConfigDocument;
  104. }
  105. else
  106. {
  107. nativeVersion = int.Parse(node.Attributes[0].Value);
  108. if (nativeVersion == ConfigReplayVersion)
  109. {
  110. configDocument = DefaultConfigDocument;
  111. int currentReplayVersion = int.Parse(nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.ReplayVersion).Attributes[0].Value);
  112. SaveIntToConfig(PlayerConfigLabel.ReplayVersion, currentReplayVersion + 1);
  113. //Debug.Log(currentReplayVersion);
  114. }
  115. else if (nativeVersion < defaultVersion)
  116. {
  117. byte[] bytes;
  118. MD5 md5 = new MD5CryptoServiceProvider();
  119. if (nativeVersion <= 4)
  120. {
  121. bytes = Encoding.UTF8.GetBytes(nativeDoc.OuterXml);
  122. }
  123. else
  124. {
  125. bytes = File.ReadAllBytes(ConfigPath);
  126. }
  127. if (PlayerPrefs.GetString(Lib.ConfigPrefs) != UnvalidConfigMD5 && PlayerPrefs.GetString(Lib.ConfigPrefs) != Auxiliary.ToString(md5.ComputeHash(bytes)))
  128. {
  129. Debug.LogWarning("Download Archive : MD5 doesn't match");
  130. //ManaDebug.Log("Download Archive");
  131. PlayerDocumentDamageFlag = true;
  132. SerialNumberRequestFlag = false;
  133. return;
  134. }
  135. else
  136. {
  137. configDocument = UpdateConfigDocument(nativeVersion, nativeDoc, DefaultConfigDocument);
  138. //HttpManager.UploadConfig();
  139. }
  140. }
  141. else if (nativeVersion > defaultVersion)
  142. {
  143. configDocument = DefaultConfigDocument;
  144. }
  145. else
  146. {
  147. byte[] bytes = File.ReadAllBytes(ConfigPath);
  148. MD5 md5 = new MD5CryptoServiceProvider();
  149. if (PlayerPrefs.GetString(Lib.ConfigPrefs) != UnvalidConfigMD5 && PlayerPrefs.GetString(Lib.ConfigPrefs) != Auxiliary.ToString(md5.ComputeHash(bytes)))
  150. {
  151. Debug.LogWarning("Download Archive : MD5 doesn't match");
  152. //ManaDebug.Log("Download Archive");
  153. PlayerDocumentDamageFlag = true;
  154. SerialNumberRequestFlag = false;
  155. return;
  156. }
  157. configDocument = nativeDoc;
  158. }
  159. }
  160. }
  161. else
  162. {
  163. TextAsset textAsset = ResourceManager.Load<TextAsset>(ResourceLabel.PlayerConfig, Folder.Default);
  164. DefaultConfigDocument.LoadXml(textAsset.text);
  165. Debug.LogWarning("Download Archive");
  166. //ManaDebug.Log("Download Archive");
  167. PlayerDocumentDamageFlag = true;
  168. SerialNumberRequestFlag = false;
  169. return;
  170. }
  171. }
  172. private float MaxUrlWaitTime = 10;
  173. public void Update()
  174. {
  175. if (PlayerDocumentDamageFlag)
  176. {
  177. UrlTimer += Time.deltaTime;
  178. if (UrlTimer >= MaxUrlWaitTime)
  179. {
  180. PlayerDocumentDamageFlag = false;
  181. TextAsset textAsset = ResourceManager.Load<TextAsset>(ResourceLabel.PlayerConfig, Folder.Default);
  182. configDocument = new XmlDocument();
  183. configDocument.LoadXml(textAsset.text);
  184. return;
  185. }
  186. }
  187. if (!SerialNumberRequestFlag)
  188. {
  189. if (HttpManager.SerialNumber != PlayerConfigLabel.DefaultSerialNumber)
  190. {
  191. SerialNumberRequestFlag = true;
  192. HttpManager.GetConfigBySerialNumber(HttpManager.SerialNumber, RecoveConfigDocument);
  193. }
  194. }
  195. }
  196. public override bool InitAtOnce()
  197. {
  198. if (base.InitAtOnce())
  199. {
  200. return true;
  201. }
  202. enabled = true;
  203. return false;
  204. }
  205. public static void RecoveConfigDocument(JsonData jsonData)
  206. {
  207. if (!PlayerDocumentDamageFlag)
  208. {
  209. return;
  210. }
  211. TextAsset textAsset = ResourceManager.Load<TextAsset>(ResourceLabel.PlayerConfig, Folder.Default);
  212. DefaultConfigDocument.LoadXml(textAsset.text);
  213. //Debug.Log(jsonData.ToJson());
  214. if (jsonData.Inst_Object.Keys.Contains("l"))
  215. {
  216. XmlDocument recoverdDocument = new XmlDocument();
  217. recoverdDocument.LoadXml(jsonData["l"].ToString());
  218. int RecoverdVersion = int.Parse(recoverdDocument.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value);
  219. int DefaultVersion = int.Parse(DefaultConfigDocument.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value);
  220. PlayerDocumentDamageFlag = false;
  221. if (RecoverdVersion <= DefaultVersion)
  222. {
  223. UpdateConfigDocument(RecoverdVersion, recoverdDocument, DefaultConfigDocument);
  224. configDocument = recoverdDocument;
  225. PlayerPrefManager.SaveBool(PlayerPrefManager.INTERACT_CONFIG, true);
  226. }
  227. else if (RecoverdVersion > DefaultVersion)
  228. {
  229. configDocument = DefaultConfigDocument;
  230. }
  231. }
  232. else
  233. {
  234. if (!IDRequestFlag)
  235. {
  236. if (HttpManager.ID != PlayerConfigLabel.DefaultID)
  237. {
  238. IDRequestFlag = true;
  239. Debug.LogWarning("DownloadByID");
  240. HttpManager.GetConfigByID(HttpManager.ID, RecoveConfigDocument);
  241. }
  242. else
  243. {
  244. Debug.LogWarning("Use Default");
  245. configDocument = DefaultConfigDocument;
  246. PlayerDocumentDamageFlag = false;
  247. }
  248. }
  249. else
  250. {
  251. Debug.LogWarning("Use Default");
  252. configDocument = DefaultConfigDocument;
  253. PlayerDocumentDamageFlag = false;
  254. }
  255. }
  256. }
  257. public static void SaveSkillList()
  258. {
  259. if (TutorialManager.NewplayerTutorial || !Manager.Inited)
  260. {
  261. return;
  262. }
  263. XmlNode xmlNode;
  264. XmlAttribute xmlAttribute;
  265. xmlNode = ConfigRootNode.SelectSingleNode(PlayerConfigLabel.SkillList);
  266. xmlNode.RemoveAll();
  267. for (int i = 0; i < Manager.SkillList.Count; i++)
  268. {
  269. if (Manager.SkillList[i].SkillType == SkillType.Skill)
  270. {
  271. #region Skill
  272. Skill skill = (Skill)Manager.SkillList[i];
  273. xmlNode = xmlNode.AppendChild(ConfigDocument.CreateNode(XmlNodeType.Element, PlayerConfigLabel.Skill, ""));
  274. xmlAttribute = xmlNode.Attributes.Append(ConfigDocument.CreateAttribute(PlayerConfigLabel.ID));
  275. xmlAttribute.Value = skill.FullID;
  276. xmlAttribute = xmlNode.Attributes.Append(ConfigDocument.CreateAttribute(PlayerConfigLabel.SkillType));
  277. xmlAttribute.Value = skill.SkillType.ToString();
  278. xmlAttribute = xmlNode.Attributes.Append(ConfigDocument.CreateAttribute(PlayerConfigLabel.ItemStatus));
  279. xmlAttribute.Value = skill.ItemStatus.ToString();
  280. xmlAttribute = xmlNode.Attributes.Append(ConfigDocument.CreateAttribute(PlayerConfigLabel.Level));
  281. xmlAttribute.Value = skill.Level.ToString();
  282. xmlAttribute = xmlNode.Attributes.Append(ConfigDocument.CreateAttribute(PlayerConfigLabel.CoolTimer));
  283. xmlAttribute.Value = skill.CoolTimer.ToString("0");
  284. xmlAttribute = xmlNode.Attributes.Append(ConfigDocument.CreateAttribute(PlayerConfigLabel.UseTimer));
  285. xmlAttribute.Value = skill.UseTimer.ToString("0");
  286. xmlNode = ConfigRootNode.SelectSingleNode(PlayerConfigLabel.SkillList);
  287. #endregion
  288. }
  289. else if (Manager.SkillList[i].SkillType == SkillType.Pack)
  290. {
  291. #region Pack
  292. Pack pack = (Pack)Manager.SkillList[i];
  293. xmlNode = xmlNode.AppendChild(ConfigDocument.CreateNode(XmlNodeType.Element, PlayerConfigLabel.Skill, ""));
  294. xmlAttribute = xmlNode.Attributes.Append(ConfigDocument.CreateAttribute(PlayerConfigLabel.ID));
  295. xmlAttribute.Value = pack.FullID;
  296. xmlAttribute = xmlNode.Attributes.Append(ConfigDocument.CreateAttribute(PlayerConfigLabel.SkillType));
  297. xmlAttribute.Value = pack.SkillType.ToString();
  298. xmlAttribute = xmlNode.Attributes.Append(ConfigDocument.CreateAttribute(PlayerConfigLabel.ItemStatus));
  299. xmlAttribute.Value = pack.ItemStatus.ToString();
  300. xmlAttribute = xmlNode.Attributes.Append(ConfigDocument.CreateAttribute(PlayerConfigLabel.Level));
  301. xmlAttribute.Value = pack.Level.ToString();
  302. xmlNode = ConfigRootNode.SelectSingleNode(PlayerConfigLabel.SkillList);
  303. #endregion
  304. }
  305. else if (Manager.SkillList[i].SkillType == SkillType.Ability)
  306. {
  307. #region Ability
  308. Ability ability = (Ability)Manager.SkillList[i];
  309. xmlNode = xmlNode.AppendChild(ConfigDocument.CreateNode(XmlNodeType.Element, PlayerConfigLabel.Skill, ""));
  310. xmlAttribute = xmlNode.Attributes.Append(ConfigDocument.CreateAttribute(PlayerConfigLabel.ID));
  311. xmlAttribute.Value = ability.FullID;
  312. xmlAttribute = xmlNode.Attributes.Append(ConfigDocument.CreateAttribute(PlayerConfigLabel.SkillType));
  313. xmlAttribute.Value = ability.SkillType.ToString();
  314. xmlAttribute = xmlNode.Attributes.Append(ConfigDocument.CreateAttribute(PlayerConfigLabel.ItemStatus));
  315. xmlAttribute.Value = ability.ItemStatus.ToString();
  316. xmlAttribute = xmlNode.Attributes.Append(ConfigDocument.CreateAttribute(PlayerConfigLabel.Level));
  317. xmlAttribute.Value = ability.Level.ToString();
  318. xmlNode = ConfigRootNode.SelectSingleNode(PlayerConfigLabel.SkillList);
  319. #endregion
  320. }
  321. else if (Manager.SkillList[i].SkillType == SkillType.BigSkill)
  322. {
  323. #region BigSkill
  324. BigSkill bigSkill = (BigSkill)Manager.SkillList[i];
  325. xmlNode = xmlNode.AppendChild(ConfigDocument.CreateNode(XmlNodeType.Element, PlayerConfigLabel.Skill, ""));
  326. xmlAttribute = xmlNode.Attributes.Append(ConfigDocument.CreateAttribute(PlayerConfigLabel.ID));
  327. xmlAttribute.Value = bigSkill.FullID;
  328. xmlAttribute = xmlNode.Attributes.Append(ConfigDocument.CreateAttribute(PlayerConfigLabel.SkillType));
  329. xmlAttribute.Value = bigSkill.SkillType.ToString();
  330. xmlAttribute = xmlNode.Attributes.Append(ConfigDocument.CreateAttribute(PlayerConfigLabel.ItemStatus));
  331. xmlAttribute.Value = bigSkill.ItemStatus.ToString();
  332. xmlAttribute = xmlNode.Attributes.Append(ConfigDocument.CreateAttribute(PlayerConfigLabel.BarStatus));
  333. xmlAttribute.Value = bigSkill.BarStatus.ToString();
  334. xmlAttribute = xmlNode.Attributes.Append(ConfigDocument.CreateAttribute(PlayerConfigLabel.Level));
  335. xmlAttribute.Value = bigSkill.Level.ToString();
  336. xmlAttribute = xmlNode.Attributes.Append(ConfigDocument.CreateAttribute(PlayerConfigLabel.CoolTimer));
  337. xmlAttribute.Value = bigSkill.CoolTimer.ToString("0");
  338. xmlAttribute = xmlNode.Attributes.Append(ConfigDocument.CreateAttribute(PlayerConfigLabel.UseTimer));
  339. xmlAttribute.Value = bigSkill.UseTimer.ToString("0");
  340. xmlNode = ConfigRootNode.SelectSingleNode(PlayerConfigLabel.SkillList);
  341. #endregion
  342. }
  343. }
  344. }
  345. public static void SaveDress()
  346. {
  347. XmlNode xmlNode = ConfigRootNode.SelectSingleNode(PlayerConfigLabel.DressList);
  348. xmlNode.Attributes[0].Value = "";
  349. for (int i = 0; i < PlayerManager.BoughtCloseIDs.Count; i++)
  350. {
  351. xmlNode.Attributes[0].Value += PlayerManager.BoughtCloseIDs[i] + " ";
  352. }
  353. xmlNode.Attributes[0].Value = xmlNode.Attributes[0].Value.TrimEnd(' ');
  354. xmlNode = ConfigRootNode.SelectSingleNode(PlayerConfigLabel.DressData);
  355. for (int i = 0; i < PlayerManager.DressDatas.Count; i++)
  356. {
  357. xmlNode.Attributes[i].Value = PlayerManager.DressDatas[i];
  358. }
  359. }
  360. public static void SaveAchieve()
  361. {
  362. XmlNode xmlNode = ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveList);
  363. xmlNode.Attributes[0].Value = "";
  364. foreach (var kv in AchieveManager.AchieveItemDictionary)
  365. {
  366. if (!kv.Value.Lock)
  367. {
  368. xmlNode.Attributes[0].Value += kv.Value.ID + " ";
  369. }
  370. }
  371. xmlNode.Attributes[0].Value = xmlNode.Attributes[0].Value.TrimEnd(' ');
  372. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[0].Value = Manager.PlayADsAmt.ToString("0");
  373. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[1].Value = Manager.UseSkillAmt.ToString("0");
  374. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[2].Value = Manager.SignAmt.ToString("0");
  375. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[3].Value = Manager.ShareAmt.ToString("0");
  376. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[4].Value = Manager.AllElfLevel.ToString("0");
  377. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[5].Value = Manager.PlayMinigameAmt.ToString("0");
  378. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[6].Value = Manager.TotalFlowerAwardCoin.ToString("0");
  379. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[7].Value = Manager.TotalVisitPerson.ToString("0");
  380. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[8].Value = Manager.TotalSpendDiamond.ToString("0");
  381. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[9].Value = Manager.CreateRoomAmt.ToString("0");
  382. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[10].Value = Manager.CreateChestAmt.ToString("0");
  383. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[11].Value = Manager.CreateLuckyChestAmt.ToString("0");
  384. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[12].Value = Manager.CreateGuessColorChestAmt.ToString("0");
  385. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[13].Value = Manager.CreateGuessNumberChestAmt.ToString("0");
  386. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[14].Value = Manager.GetChestAwardAmt.ToString("0");
  387. }
  388. public static void SavePlantList()
  389. {
  390. if (VisitManager.InVisit || TutorialManager.NewplayerTutorial)
  391. {
  392. return;
  393. }
  394. XmlAttributeCollection attribute = ConfigRootNode.SelectSingleNode(PlayerConfigLabel.PlantList).Attributes;
  395. attribute[0].Value = "";
  396. for (int i = 0; i < GardenManager.PlantSlotList.Count; i++)
  397. {
  398. Slot slot = GardenManager.PlantSlotList[i];
  399. attribute[0].Value += slot.ID + "," + slot.Index + " ";
  400. }
  401. attribute[0].Value = attribute[0].Value.TrimEnd(' ');
  402. }
  403. public static void SaveDatas()
  404. {
  405. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.Coin).Attributes[0].Value = Manager.Coin.ToString("0");
  406. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.Diamond).Attributes[0].Value = Manager.Diamond.ToString("0");
  407. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.SignTime).Attributes[0].Value = SignManager.LastSignTime.ToString();
  408. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.SignIndex).Attributes[0].Value = SignManager.SignIndex.ToString();
  409. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.SignRound).Attributes[0].Value = SignManager.SignRound.ToString();
  410. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.QuitFlag).Attributes[0].Value = HttpManager.IsConnect.ToInt().ToString();
  411. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.QuitTime).Attributes[0].Value = HttpManager.CurrentDateTime.ToString();
  412. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.MiniTimer).Attributes[0].Value = Manager.MinigameCDTimer.ToString("0");
  413. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.CircleTimer).Attributes[0].Value = Manager.IncomeCircleTimer.ToString("0");
  414. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.ID).Attributes[0].Value = HttpManager.ID;
  415. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.SerialNumber).Attributes[0].Value = HttpManager.SerialNumber;
  416. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.Language).Attributes[0].Value = LanguageManager.CurrentLanguage.ToString();
  417. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.MiniGameIndex).Attributes[0].Value = MiniGameManager.MiniGameIndex.ToString();
  418. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.NewplayerTutorial).Attributes[0].Value = TutorialManager.NewplayerTutorial.ToInt().ToString();
  419. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.MemoryMinigameTutorial).Attributes[0].Value = TutorialManager.memoryMinigameTutorial.ToInt().ToString();
  420. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.VisitTutorial).Attributes[0].Value = TutorialManager.visitTutorial.ToInt().ToString();
  421. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.DressroomTutorial).Attributes[0].Value = TutorialManager.dressroomTutorial.ToInt().ToString();
  422. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.FashionShowTutorial).Attributes[0].Value = TutorialManager.fashionShowTutorial.ToInt().ToString();
  423. if (TutorialManager.findSoloMinigameTutorial || TutorialManager.FindSoloMinigameTutorial)
  424. {
  425. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.FindSoloMinigameTutorial).Attributes[0].Value = "1";
  426. }
  427. else
  428. {
  429. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.FindSoloMinigameTutorial).Attributes[0].Value = "0";
  430. }
  431. if (TutorialManager.findMissingMinigameTutorial || TutorialManager.FindMissingMinigameTutorial)
  432. {
  433. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.FindMissingMinigameTutorial).Attributes[0].Value = "1";
  434. }
  435. else
  436. {
  437. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.FindMissingMinigameTutorial).Attributes[0].Value = "0";
  438. }
  439. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.TutorialPlazaRoom).Attributes[0].Value = TutorialManager.plazaRoomTutorial.ToInt().ToString();
  440. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.NewplayerTutorialIndex).Attributes[0].Value = TutorialManager.NewplayerTutorialIndex.ToString();
  441. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.MemoryMinigameTutorialIndex).Attributes[0].Value = TutorialManager.MemoryMinigameTutorialIndex.ToString();
  442. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.VisitTutorialIndex).Attributes[0].Value = TutorialManager.VisitTutorialIndex.ToString();
  443. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.DressroomIndex).Attributes[0].Value = TutorialManager.DressroomTutorialIndex.ToString();
  444. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.FindSoloMinigameTutorialIndex).Attributes[0].Value = TutorialManager.FindSoloMinigameTutorialIndex.ToString();
  445. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.FindMissingMinigameTutorialIndex).Attributes[0].Value = TutorialManager.FindMissingMinigameTutorialIndex.ToString();
  446. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.TutorialIndexPlazaRoom).Attributes[0].Value = TutorialManager.PlazaRoomTutorialIndex.ToString();
  447. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.FashionShowTutorialIndex).Attributes[0].Value = TutorialManager.FashionShowTutorialIndex.ToString();
  448. }
  449. public static void SaveFlowers()
  450. {
  451. XmlAttribute attribute = ConfigRootNode.SelectSingleNode(PlayerConfigLabel.FlowerList).Attributes[0];
  452. XmlAttribute attribute1 = ConfigRootNode.SelectSingleNode(PlayerConfigLabel.FlowerAmtList).Attributes[0];
  453. attribute.Value = "";
  454. attribute1.Value = "";
  455. foreach (var kv in GardenManager.FlowerInfoDictionary)
  456. {
  457. if (kv.Value.Unlock)
  458. {
  459. attribute.Value += kv.Value.ID + " ";
  460. attribute1.Value += kv.Value.Amount + " ";
  461. }
  462. }
  463. attribute.Value = attribute.Value.Trim(' ');
  464. attribute1.Value = attribute1.Value.Trim(' ');
  465. }
  466. public static void SaveConfigDocument()
  467. {
  468. if (Initializer.Inited)
  469. {
  470. SaveSkillList();
  471. SaveAchieve();
  472. SaveDress();
  473. SavePlantList();
  474. SaveDatas();
  475. SaveFlowers();
  476. ChestManager.SaveToConfig();
  477. }
  478. }
  479. public static void SaveConfigDocumentToDisk()
  480. {
  481. if (Initializer.Inited)
  482. {
  483. XmlDocument doc = new XmlDocument();
  484. doc.LoadXml(ConfigDocument.OuterXml);
  485. Auxiliary.EncryptXml(doc);
  486. StreamWriter sw = new StreamWriter(ConfigPath);
  487. sw.Write(doc.OuterXml);
  488. sw.Close();
  489. byte[] bytes = File.ReadAllBytes(ConfigPath);
  490. //byte[] bytes = Encoding.UTF8.GetBytes(PlayerDoc.OuterXml);
  491. MD5 md5 = new MD5CryptoServiceProvider();
  492. PlayerPrefs.SetString(Lib.ConfigPrefs, Auxiliary.ToString(md5.ComputeHash(bytes)));
  493. }
  494. }
  495. public static void ResetConfigDocument()
  496. {
  497. ConfigRootNode.SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = ConfigReplayVersion.ToString();
  498. SaveConfigDocument();
  499. Manager.UploadConfigFlag = true;
  500. Manager.DownloadConfigFlag = true;
  501. SaveConfigDocumentToDisk();
  502. DelayCall.Call
  503. (
  504. 1,
  505. () =>
  506. {
  507. Bubble.Show(null, Language.GetStr(LanguageLabel.UI__La_Lab0), null, null, () => { Application.Quit(); }, null, false);
  508. }
  509. );
  510. }
  511. public static int GetIntFormConfig(string node)
  512. {
  513. return int.Parse(ConfigRootNode.SelectSingleNode(node).Attributes[0].Value);
  514. }
  515. public static bool GetBoolFormConfig(string node)
  516. {
  517. return int.Parse(ConfigRootNode.SelectSingleNode(node).Attributes[0].Value).ToBool();
  518. }
  519. public static float GetFloatFormConfig(string node)
  520. {
  521. return float.Parse(ConfigRootNode.SelectSingleNode(node).Attributes[0].Value);
  522. }
  523. public static string GetStringFormConfig(string node)
  524. {
  525. return ConfigRootNode.SelectSingleNode(node).Attributes[0].Value;
  526. }
  527. public static double GetDoubleFormConfig(string node)
  528. {
  529. return double.Parse(ConfigRootNode.SelectSingleNode(node).Attributes[0].Value);
  530. }
  531. public static void SaveIntToConfig(string node, int value)
  532. {
  533. ConfigRootNode.SelectSingleNode(node).Attributes[0].Value = value.ToString();
  534. }
  535. public static void SaveBoolToConfig(string node, bool value)
  536. {
  537. ConfigRootNode.SelectSingleNode(node).Attributes[0].Value = value.ToInt().ToString();
  538. }
  539. public static void SaveFloatToConfig(string node, float value)
  540. {
  541. ConfigRootNode.SelectSingleNode(node).Attributes[0].Value = value.ToString();
  542. }
  543. public static void SaveStringToConfig(string node, string value)
  544. {
  545. ConfigRootNode.SelectSingleNode(node).Attributes[0].Value = value;
  546. }
  547. public static void SaveDoubleToConfig(string node, double value)
  548. {
  549. ConfigRootNode.SelectSingleNode(node).Attributes[0].Value = value.ToString();
  550. }
  551. public static List<int> GetIntList(char splitChar, string nodeName, List<int> defaultList)
  552. {
  553. return Auxiliary.StringToInts(splitChar, ConfigRootNode.SelectSingleNode(nodeName).Attributes[0].Value, defaultList);
  554. }
  555. public static List<string> GetStringList(char splitChar, string nodeName, List<string> defaultList)
  556. {
  557. return Auxiliary.StringToStrings(splitChar, ConfigRootNode.SelectSingleNode(nodeName).Attributes[0].Value, defaultList);
  558. }
  559. public static List<int> GetDressList()
  560. {
  561. List<int> list = new List<int>();
  562. XmlAttributeCollection attribute = ConfigRootNode.SelectSingleNode(PlayerConfigLabel.DressList).Attributes;
  563. return Auxiliary.StringToInts(' ', attribute[0].Value, list);
  564. }
  565. public static List<int> GetDressDataIDs(Player player)
  566. {
  567. //foreach (var VARIABLE in ManaPlayer.CloseIDDic)
  568. //{
  569. // Debug.LogWarning(VARIABLE.Key);
  570. //}
  571. List<int> dressDataIDs = new List<int>();
  572. dressDataIDs.Add(PlayerManager.CloseIDDictionary[player.Head]);
  573. dressDataIDs.Add(PlayerManager.CloseIDDictionary[player.Dress]);
  574. dressDataIDs.Add(PlayerManager.CloseIDDictionary[player.Shoe]);
  575. dressDataIDs.Add(PlayerManager.CloseIDDictionary[player.HeadWear]);
  576. dressDataIDs.Add(PlayerManager.CloseIDDictionary[player.Top]);
  577. dressDataIDs.Add(PlayerManager.CloseIDDictionary[player.Eye]);
  578. dressDataIDs.Add(PlayerManager.CloseIDDictionary[player.Mouse]);
  579. dressDataIDs.Add(PlayerManager.CloseIDDictionary[player.Wing]);
  580. return dressDataIDs;
  581. }
  582. public static List<int> GetDressDataIDs(List<string> dressdataNames)
  583. {
  584. //foreach (var VARIABLE in ManaPlayer.CloseIDDic)
  585. //{
  586. // Debug.LogWarning(VARIABLE.Key);
  587. //}
  588. List<int> dressDataIDs = new List<int>();
  589. int index = 0;
  590. dressDataIDs.Add(PlayerManager.CloseIDDictionary[dressdataNames[index++]]);
  591. dressDataIDs.Add(PlayerManager.CloseIDDictionary[dressdataNames[index++]]);
  592. dressDataIDs.Add(PlayerManager.CloseIDDictionary[dressdataNames[index++]]);
  593. dressDataIDs.Add(PlayerManager.CloseIDDictionary[dressdataNames[index++]]);
  594. dressDataIDs.Add(PlayerManager.CloseIDDictionary[dressdataNames[index++]]);
  595. dressDataIDs.Add(PlayerManager.CloseIDDictionary[dressdataNames[index++]]);
  596. dressDataIDs.Add(PlayerManager.CloseIDDictionary[dressdataNames[index++]]);
  597. dressDataIDs.Add(PlayerManager.CloseIDDictionary[dressdataNames[index++]]);
  598. return dressDataIDs;
  599. }
  600. public static List<int> GetDressDataIDs(ISFSObject parameter)
  601. {
  602. List<int> ids = parameter.GetIntArray(InfoLabel.Close.GetHashString()).ToList();
  603. return ids;
  604. }
  605. public static List<string> GetDressData(SFSObject parameter)
  606. {
  607. List<int> ids = GetDressDataIDs(parameter);
  608. List<string> dressData = new List<string>();
  609. foreach (var id in ids)
  610. {
  611. dressData.Add(PlayerManager.CloseItemDictionary[id].ArmatureName);
  612. }
  613. return dressData;
  614. }
  615. public static List<string> GetDressData(XmlNode node = null)
  616. {
  617. XmlNode xmlNode;
  618. if (node == null)
  619. {
  620. xmlNode = ConfigRootNode.SelectSingleNode(PlayerConfigLabel.DressData);
  621. }
  622. else
  623. {
  624. xmlNode = node.SelectSingleNode(PlayerConfigLabel.DressData);
  625. }
  626. List<string> dataList = new List<string>();
  627. if (xmlNode != null && xmlNode.Attributes.Count == 12)
  628. {
  629. dataList.Add(xmlNode.Attributes[0].Value);
  630. dataList.Add(xmlNode.Attributes[1].Value);
  631. dataList.Add(xmlNode.Attributes[2].Value);
  632. dataList.Add(xmlNode.Attributes[3].Value);
  633. dataList.Add(xmlNode.Attributes[4].Value);
  634. dataList.Add(xmlNode.Attributes[5].Value);
  635. dataList.Add(xmlNode.Attributes[6].Value);
  636. dataList.Add(xmlNode.Attributes[7].Value);
  637. dataList.Add(xmlNode.Attributes[8].Value);
  638. dataList.Add(xmlNode.Attributes[9].Value);
  639. dataList.Add(xmlNode.Attributes[10].Value);
  640. dataList.Add(xmlNode.Attributes[11].Value);
  641. //dataList[8] = "长袖9左";
  642. //dataList[9] = "Empty";
  643. //dataList[10] = "长袖9右";
  644. //dataList[11] = "Empty";
  645. }
  646. else if(xmlNode != null && xmlNode.Attributes.Count == 8)
  647. {
  648. dataList.Add(xmlNode.Attributes[0].Value);
  649. dataList.Add(xmlNode.Attributes[1].Value);
  650. dataList.Add(xmlNode.Attributes[2].Value);
  651. dataList.Add(xmlNode.Attributes[3].Value);
  652. dataList.Add(xmlNode.Attributes[4].Value);
  653. dataList.Add(xmlNode.Attributes[5].Value);
  654. dataList.Add(xmlNode.Attributes[6].Value);
  655. dataList.Add(xmlNode.Attributes[7].Value);
  656. dataList.AddRange (GetSleeveListByTop(xmlNode.Attributes[4].Value));
  657. }
  658. else
  659. {
  660. float rate = Random.Range(0f, 1f);
  661. if (rate < 0.33f)
  662. {
  663. dataList.Add("脑壳1");
  664. dataList.Add("裙子1");
  665. dataList.Add("鞋子1");
  666. dataList.Add("头饰品1");
  667. dataList.Add("上衣1");
  668. dataList.Add("眼睛1");
  669. dataList.Add("嘴巴1");
  670. dataList.Add("Empty");
  671. dataList.Add("Empty");
  672. dataList.Add("短袖1左");
  673. dataList.Add("Empty");
  674. dataList.Add("短袖1右");
  675. }
  676. else if (rate < 0.66f)
  677. {
  678. dataList.Add("脑壳2");
  679. dataList.Add("裙子2");
  680. dataList.Add("鞋子2");
  681. dataList.Add("头饰品2");
  682. dataList.Add("上衣2");
  683. dataList.Add("眼睛2");
  684. dataList.Add("嘴巴2");
  685. dataList.Add("Empty");
  686. dataList.Add("Empty");
  687. dataList.Add("短袖2左");
  688. dataList.Add("Empty");
  689. dataList.Add("短袖2右");
  690. }
  691. else
  692. {
  693. dataList.Add("脑壳3");
  694. dataList.Add("裙子3");
  695. dataList.Add("鞋子3");
  696. dataList.Add("头饰品3");
  697. dataList.Add("上衣3");
  698. dataList.Add("眼睛3");
  699. dataList.Add("嘴巴3");
  700. dataList.Add("Empty");
  701. dataList.Add("Empty");
  702. dataList.Add("短袖2左");
  703. dataList.Add("Empty");
  704. dataList.Add("短袖2右");
  705. }
  706. }
  707. return dataList;
  708. }
  709. public static List<int> GetFlowerList()
  710. {
  711. List<int> list = new List<int>();
  712. XmlAttributeCollection attribute = ConfigRootNode.SelectSingleNode(PlayerConfigLabel.FlowerList).Attributes;
  713. return Auxiliary.StringToInts(' ', attribute[0].Value, list);
  714. }
  715. public static List<int> GetLockAchieveIDs()
  716. {
  717. return Auxiliary.StringToInts(' ', GetStringFormConfig(PlayerConfigLabel.AchieveList), new List<int>());
  718. }
  719. public static List<double> GetAchieveValues()
  720. {
  721. List<double> dataList = new List<double>();
  722. dataList.Add(double.Parse(ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[0].Value));
  723. dataList.Add(double.Parse(ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[1].Value));
  724. dataList.Add(double.Parse(ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[2].Value));
  725. dataList.Add(double.Parse(ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[3].Value));
  726. dataList.Add(double.Parse(ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[4].Value));
  727. dataList.Add(double.Parse(ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[5].Value));
  728. dataList.Add(double.Parse(ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[6].Value));
  729. dataList.Add(double.Parse(ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[7].Value));
  730. dataList.Add(double.Parse(ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[8].Value));
  731. dataList.Add(double.Parse(ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[9].Value));
  732. dataList.Add(double.Parse(ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[10].Value));
  733. dataList.Add(double.Parse(ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[11].Value));
  734. dataList.Add(double.Parse(ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[12].Value));
  735. dataList.Add(double.Parse(ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[13].Value));
  736. dataList.Add(double.Parse(ConfigRootNode.SelectSingleNode(PlayerConfigLabel.AchieveData).Attributes[14].Value));
  737. return dataList;
  738. }
  739. public static List<KV<int, int>> GetPlantList(XmlNode node = null)
  740. {
  741. List<KV<int, int>> list = new List<KV<int, int>>();
  742. XmlNode xmlNode;
  743. if (node == null)
  744. {
  745. xmlNode = ConfigRootNode.SelectSingleNode(PlayerConfigLabel.PlantList);
  746. }
  747. else
  748. {
  749. xmlNode = node.SelectSingleNode(PlayerConfigLabel.PlantList);
  750. }
  751. if (!string.IsNullOrEmpty(xmlNode.Attributes[0].Value))
  752. {
  753. string[] strings = xmlNode.Attributes[0].Value.Split(' ');
  754. for (int i = 0; i < strings.Length; i++)
  755. {
  756. list.Add(new KV<int, int>(int.Parse(strings[i].Split(',')[0]), int.Parse(strings[i].Split(',')[1])));
  757. }
  758. }
  759. return list;
  760. }
  761. public static List<XmlAttributeCollection> GetSkillList(XmlNode node = null)
  762. {
  763. List<XmlAttributeCollection> attributeList = new List<XmlAttributeCollection>();
  764. XmlNodeList xmlNodeList;
  765. if (node == null)
  766. {
  767. xmlNodeList = ConfigRootNode.SelectSingleNode(PlayerConfigLabel.SkillList).ChildNodes;
  768. }
  769. else
  770. {
  771. xmlNodeList = node.SelectSingleNode(PlayerConfigLabel.SkillList).ChildNodes;
  772. }
  773. for (int i = 0; i < xmlNodeList.Count; i++)
  774. {
  775. attributeList.Add(xmlNodeList[i].Attributes);
  776. }
  777. return attributeList;
  778. }
  779. public static List<string> GetOfflineConfig()
  780. {
  781. TextAsset textAsset = ResourceManager.Load<TextAsset>(ResourceLabel.OfflineConfig, Folder.Config);
  782. XmlDocument xmlDoc = new XmlDocument();
  783. xmlDoc.LoadXml(textAsset.text);
  784. XmlNode xmlNode = xmlDoc.SelectSingleNode(ConfigLabel.RootNode).SelectSingleNode(ConfigLabel.ChildNode);
  785. List<string> strList = new List<string>()
  786. {
  787. xmlNode.Attributes[1].Value,
  788. xmlNode.Attributes[2].Value,
  789. xmlNode.Attributes[3].Value,
  790. };
  791. return strList;
  792. }
  793. public static XmlAttributeCollection GetVisitConfig()
  794. {
  795. TextAsset textAsset = ResourceManager.Load<TextAsset>(ResourceLabel.VisitConfig, Folder.Config);
  796. XmlDocument xmlDoc = new XmlDocument();
  797. xmlDoc.LoadXml(textAsset.text);
  798. XmlNode xmlNode = xmlDoc.SelectSingleNode(ConfigLabel.RootNode).SelectSingleNode(ConfigLabel.ChildNode);
  799. return xmlNode.Attributes;
  800. }
  801. public static XmlAttributeCollection GetPlazaRoomConfig()
  802. {
  803. TextAsset textAsset = ResourceManager.Load<TextAsset>(ResourceLabel.PlazaroomConfig, Folder.Config);
  804. XmlDocument xmlDoc = new XmlDocument();
  805. xmlDoc.LoadXml(textAsset.text);
  806. XmlNode xmlNode = xmlDoc.SelectSingleNode(ConfigLabel.RootNode).SelectSingleNode(ConfigLabel.ChildNode);
  807. return xmlNode.Attributes;
  808. }
  809. public static XmlAttributeCollection GetAwardConfig()
  810. {
  811. TextAsset textAsset = ResourceManager.Load<TextAsset>(ResourceLabel.AwardConfig, Folder.Config);
  812. XmlDocument xmlDoc = new XmlDocument();
  813. xmlDoc.LoadXml(textAsset.text);
  814. XmlNode xmlNode = xmlDoc.SelectSingleNode(ConfigLabel.RootNode).SelectSingleNode(ConfigLabel.ChildNode);
  815. return xmlNode.Attributes;
  816. }
  817. public static List<XmlAttributeCollection> GetIAPConfig()
  818. {
  819. TextAsset textAsset;
  820. XmlNodeList xmlNodeList;
  821. XmlDocument xmlDoc = new XmlDocument();
  822. List<XmlAttributeCollection> attributeList = new List<XmlAttributeCollection>();
  823. textAsset = ResourceManager.Load<TextAsset>(ResourceLabel.IAPConfig, Folder.Config);
  824. xmlDoc.LoadXml(textAsset.text);
  825. xmlNodeList = xmlDoc.SelectSingleNode(ConfigLabel.RootNode).SelectNodes(ConfigLabel.ChildNode);
  826. for (int i = 0; i < xmlNodeList.Count; i++)
  827. {
  828. attributeList.Add(xmlNodeList[i].Attributes);
  829. }
  830. return attributeList;
  831. }
  832. public static List<XmlAttributeCollection> GetSkillConfig()
  833. {
  834. TextAsset textAsset;
  835. XmlDocument xmlDoc = new XmlDocument();
  836. List<XmlNodeList> xmlNodeList = new List<XmlNodeList>();
  837. List<XmlAttributeCollection> attributeList = new List<XmlAttributeCollection>();
  838. textAsset = ResourceManager.Load<TextAsset>(ResourceLabel.PackConfig, Folder.Config);
  839. xmlDoc.LoadXml(textAsset.text);
  840. xmlNodeList.Add(xmlDoc.SelectSingleNode(ConfigLabel.RootNode).SelectNodes(ConfigLabel.ChildNode));
  841. textAsset = ResourceManager.Load<TextAsset>(ResourceLabel.SkillConfig, Folder.Config);
  842. xmlDoc.LoadXml(textAsset.text);
  843. xmlNodeList.Add(xmlDoc.SelectSingleNode(ConfigLabel.RootNode).SelectNodes(ConfigLabel.ChildNode));
  844. textAsset = ResourceManager.Load<TextAsset>(ResourceLabel.AbilityConfig, Folder.Config);
  845. xmlDoc.LoadXml(textAsset.text);
  846. xmlNodeList.Add(xmlDoc.SelectSingleNode(ConfigLabel.RootNode).SelectNodes(ConfigLabel.ChildNode));
  847. for (int i = 0; i < xmlNodeList.Count; i++)
  848. {
  849. for (int j = 0; j < xmlNodeList[i].Count; j++)
  850. {
  851. attributeList.Add(xmlNodeList[i][j].Attributes);
  852. }
  853. }
  854. return attributeList;
  855. }
  856. public static List<XmlAttributeCollection> GetSignConfig()
  857. {
  858. TextAsset textAsset;
  859. XmlNodeList xmlNodeList;
  860. XmlDocument xmlDoc = new XmlDocument();
  861. List<XmlAttributeCollection> attributeList = new List<XmlAttributeCollection>();
  862. textAsset = ResourceManager.Load<TextAsset>(ResourceLabel.SigninConfig, Folder.Config);
  863. xmlDoc.LoadXml(textAsset.text);
  864. xmlNodeList = xmlDoc.SelectSingleNode(ConfigLabel.RootNode).SelectNodes(ConfigLabel.ChildNode);
  865. for (int i = 0; i < xmlNodeList.Count; i++)
  866. {
  867. attributeList.Add(xmlNodeList[i].Attributes);
  868. }
  869. return attributeList;
  870. }
  871. public static List<XmlAttributeCollection> GetFlowerConfig(TextAsset textAsset = null)
  872. {
  873. XmlNodeList xmlNodeList;
  874. XmlDocument xmlDoc = new XmlDocument();
  875. List<XmlAttributeCollection> attributeList = new List<XmlAttributeCollection>();
  876. if (textAsset == null)
  877. {
  878. textAsset = ResourceManager.Load<TextAsset>(ResourceLabel.FlowerConfig, Folder.Config);
  879. }
  880. xmlDoc.LoadXml(textAsset.text);
  881. xmlNodeList = xmlDoc.SelectSingleNode(ConfigLabel.RootNode).SelectNodes(ConfigLabel.ChildNode);
  882. for (int i = 0; i < xmlNodeList.Count; i++)
  883. {
  884. attributeList.Add(xmlNodeList[i].Attributes);
  885. }
  886. return attributeList;
  887. }
  888. public static List<XmlAttributeCollection> GetLotteryConfig()
  889. {
  890. TextAsset textAsset;
  891. XmlNodeList xmlNodeList;
  892. XmlDocument xmlDoc = new XmlDocument();
  893. List<XmlAttributeCollection> attributeList = new List<XmlAttributeCollection>();
  894. textAsset = ResourceManager.Load<TextAsset>(ResourceLabel.LotteryConfig, Folder.Config);
  895. xmlDoc.LoadXml(textAsset.text);
  896. xmlNodeList = xmlDoc.SelectSingleNode(ConfigLabel.RootNode).SelectNodes(ConfigLabel.ChildNode);
  897. for (int i = 0; i < xmlNodeList.Count; i++)
  898. {
  899. attributeList.Add(xmlNodeList[i].Attributes);
  900. }
  901. return attributeList;
  902. }
  903. public static List<XmlAttributeCollection> GetAchieveConfig()
  904. {
  905. TextAsset textAsset;
  906. XmlNodeList xmlNodeList;
  907. XmlDocument xmlDoc = new XmlDocument();
  908. List<XmlAttributeCollection> attributeList = new List<XmlAttributeCollection>();
  909. textAsset = ResourceManager.Load<TextAsset>(ResourceLabel.AchieveConfig, Folder.Config);
  910. xmlDoc.LoadXml(textAsset.text);
  911. xmlNodeList = xmlDoc.SelectSingleNode(ConfigLabel.RootNode).SelectNodes(ConfigLabel.ChildNode);
  912. for (int i = 0; i < xmlNodeList.Count; i++)
  913. {
  914. attributeList.Add(xmlNodeList[i].Attributes);
  915. }
  916. return attributeList;
  917. }
  918. public static List<XmlAttributeCollection> GetDressRoomConfig(TextAsset textAsset = null)
  919. {
  920. XmlNodeList xmlNodeList;
  921. XmlDocument xmlDoc = new XmlDocument();
  922. List<XmlAttributeCollection> attributeList = new List<XmlAttributeCollection>();
  923. if (textAsset == null)
  924. {
  925. textAsset = ResourceManager.Load<TextAsset>(ResourceLabel.DressroomConfig, Folder.Config);
  926. }
  927. xmlDoc.LoadXml(textAsset.text);
  928. xmlNodeList = xmlDoc.SelectSingleNode(ConfigLabel.RootNode).SelectNodes(ConfigLabel.ChildNode);
  929. for (int i = 0; i < xmlNodeList.Count; i++)
  930. {
  931. attributeList.Add(xmlNodeList[i].Attributes);
  932. }
  933. return attributeList;
  934. }
  935. public static int GetGardenLevel(XmlDocument xmlDocument)
  936. {
  937. XmlNodeList nodeList = xmlDocument.SelectNodes(PlayerConfigLabel.RootNode + "/" + PlayerConfigLabel.SkillList + "/" + PlayerConfigLabel.Skill);
  938. for (int i = 0; i < nodeList.Count; i++)
  939. {
  940. if (nodeList[i].Attributes[0].Value == "Ability1")
  941. {
  942. return int.Parse(nodeList[i].Attributes[3].Value);
  943. }
  944. }
  945. return -1;
  946. }
  947. public static int GetConfigVersion(XmlDocument xmlDocument)
  948. {
  949. return int.Parse(xmlDocument.SelectSingleNode(PlayerConfigLabel.RootNode + "/" + PlayerConfigLabel.Version).Attributes[0].Value);
  950. }
  951. public static List<string> GetDefaultDressDatas()
  952. {
  953. List<string> defaultDressDatas = new List<string>();
  954. defaultDressDatas.Add("脑壳1");
  955. defaultDressDatas.Add("裙子1");
  956. defaultDressDatas.Add("鞋子1");
  957. defaultDressDatas.Add("头饰品1");
  958. defaultDressDatas.Add("上衣1");
  959. defaultDressDatas.Add("眼睛1");
  960. defaultDressDatas.Add("嘴巴1");
  961. defaultDressDatas.Add("Empty");
  962. defaultDressDatas.Add("Empty");
  963. defaultDressDatas.Add("短袖2左");
  964. defaultDressDatas.Add("Empty");
  965. defaultDressDatas.Add("短袖2右");
  966. return defaultDressDatas;
  967. }
  968. public static XmlDocument GetXmlDocument(string ConfigName)
  969. {
  970. TextAsset textAsset = ResourceManager.Load<TextAsset>(ConfigName, Folder.Config);
  971. XmlDocument xmlDocument = new XmlDocument();
  972. xmlDocument.LoadXml(textAsset.text);
  973. return xmlDocument;
  974. }
  975. //玩家存档版本大于默认存档版本时需要清空
  976. //玩家存档版本小于默认存档版本时需要更新
  977. //玩家存档版本等于ReplayVersion时需要标记为重玩
  978. public static XmlDocument UpdateConfigDocument(int nativeVersion, XmlDocument nativeDoc, XmlDocument defaultDoc)
  979. {
  980. if (nativeVersion < 0)
  981. {
  982. Debug.LogWarning("UpdateArchive to 0");
  983. ToVersion0(nativeDoc, defaultDoc);
  984. }
  985. if (nativeVersion < 1)
  986. {
  987. Debug.LogWarning("UpdateArchive to 1");
  988. ToVersion1(nativeDoc, defaultDoc);
  989. }
  990. if (nativeVersion < 2)
  991. {
  992. Debug.LogWarning("UpdateArchive to 2");
  993. ToVersion2(nativeDoc, defaultDoc);
  994. }
  995. if (nativeVersion < 3)
  996. {
  997. Debug.LogWarning("UpdateArchive to 3");
  998. ToVersion3(nativeDoc, defaultDoc);
  999. }
  1000. if (nativeVersion < 4)
  1001. {
  1002. Debug.LogWarning("UpdateArchive to 4");
  1003. ToVersion4(nativeDoc, defaultDoc);
  1004. }
  1005. if (nativeVersion < 5)
  1006. {
  1007. Debug.LogWarning("UpdateArchive to 5");
  1008. ToVersion5(nativeDoc, defaultDoc);
  1009. }
  1010. if (nativeVersion < 6)
  1011. {
  1012. Debug.LogWarning("UpdateArchive to 6");
  1013. ToVersion6(nativeDoc, defaultDoc);
  1014. }
  1015. if (nativeVersion < 7)
  1016. {
  1017. Debug.LogWarning("UpdateArchive to 7");
  1018. ToVersion7(nativeDoc, defaultDoc);
  1019. }
  1020. if (nativeVersion < 8)
  1021. {
  1022. Debug.LogWarning("UpdateArchive to 8");
  1023. ToVersion8(nativeDoc, defaultDoc);
  1024. }
  1025. if (nativeVersion < 9)
  1026. {
  1027. Debug.LogWarning("UpdateArchive to 9");
  1028. ToVersion9(nativeDoc, defaultDoc);
  1029. }
  1030. if (nativeVersion < 10)
  1031. {
  1032. Debug.LogWarning("UpdateArchive to 10");
  1033. ToVersion10(nativeDoc, defaultDoc);
  1034. }
  1035. if (nativeVersion < 11)
  1036. {
  1037. Debug.LogWarning("UpdateArchive to 11");
  1038. ToVersion11(nativeDoc, defaultDoc);
  1039. }
  1040. if (nativeVersion < 12)
  1041. {
  1042. Debug.LogWarning("UpdateArchive to 12");
  1043. ToVersion12(nativeDoc, defaultDoc);
  1044. }
  1045. if (nativeVersion < 13)
  1046. {
  1047. Debug.LogWarning("UpdateArchive to 13");
  1048. ToVersion13(nativeDoc, defaultDoc);
  1049. }
  1050. if (nativeVersion < 14)
  1051. {
  1052. Debug.LogWarning("UpdateArchive to 14");
  1053. ToVersion14(nativeDoc, defaultDoc);
  1054. }
  1055. if (nativeVersion < 15)
  1056. {
  1057. Debug.LogWarning("UpdateArchive to 15");
  1058. ToVersion15(nativeDoc, defaultDoc);
  1059. }
  1060. if (nativeVersion < 16)
  1061. {
  1062. Debug.LogWarning("UpdateArchive to 16");
  1063. ToVersion16(nativeDoc, defaultDoc);
  1064. }
  1065. if (nativeVersion < 17)
  1066. {
  1067. Debug.LogWarning("UpdateArchive to 17");
  1068. ToVersion17(nativeDoc, defaultDoc);
  1069. }
  1070. if (nativeVersion < 18)
  1071. {
  1072. Debug.LogWarning("UpdateArchive to 18");
  1073. ToVersion18(nativeDoc, defaultDoc);
  1074. }
  1075. if (nativeVersion < 19)
  1076. {
  1077. Debug.LogWarning("UpdateArchive to 19");
  1078. ToVersion19(nativeDoc, defaultDoc);
  1079. }
  1080. if (nativeVersion < 20)
  1081. {
  1082. Debug.LogWarning("UpdateArchive to 20");
  1083. ToVersion20(nativeDoc, defaultDoc);
  1084. }
  1085. if (nativeVersion < 21)
  1086. {
  1087. Debug.LogWarning("UpdateArchive to 21");
  1088. ToVersion21(nativeDoc, defaultDoc);
  1089. }
  1090. if (nativeVersion < 22)
  1091. {
  1092. Debug.LogWarning("UpdateArchive to 22");
  1093. ToVersion22(nativeDoc, defaultDoc);
  1094. }
  1095. if (nativeVersion < 23)
  1096. {
  1097. Debug.LogWarning("UpdateArchive to 23");
  1098. ToVersion23(nativeDoc, defaultDoc);
  1099. }
  1100. if (nativeVersion < 24)
  1101. {
  1102. Debug.LogWarning("UpdateArchive to 24");
  1103. ToVersion24(nativeDoc, defaultDoc);
  1104. }
  1105. if (nativeVersion < 25)
  1106. {
  1107. Debug.LogWarning("UpdateArchive to 25");
  1108. ToVersion25(nativeDoc, defaultDoc);
  1109. }
  1110. if (nativeVersion < 26)
  1111. {
  1112. Debug.LogWarning("UpdateArchive to 26");
  1113. ToVersion26(nativeDoc, defaultDoc);
  1114. }
  1115. return nativeDoc;
  1116. }
  1117. public static XmlDocument ToVersion0(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1118. {
  1119. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 0.ToString();
  1120. XmlNode xmlNode1 = defaultDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.ADPlayTime);
  1121. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).AppendChild(nativeDoc.ImportNode(xmlNode1, true));
  1122. return nativeDoc;
  1123. }
  1124. public static XmlDocument ToVersion1(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1125. {
  1126. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 1.ToString();
  1127. XmlNode xmlNode1 = defaultDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.SerialNumber);
  1128. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).AppendChild(nativeDoc.ImportNode(xmlNode1, true));
  1129. return nativeDoc;
  1130. }
  1131. public static XmlDocument ToVersion2(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1132. {
  1133. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 2.ToString();
  1134. XmlNode xmlNode1 = defaultDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.NotificationIndex);
  1135. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).AppendChild(nativeDoc.ImportNode(xmlNode1, true));
  1136. return nativeDoc;
  1137. }
  1138. public static XmlDocument ToVersion3(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1139. {
  1140. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 3.ToString();
  1141. XmlNode xmlNode1 = defaultDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.NickName);
  1142. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).AppendChild(nativeDoc.ImportNode(xmlNode1, true));
  1143. return nativeDoc;
  1144. }
  1145. public static XmlDocument ToVersion4(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1146. {
  1147. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 4.ToString();
  1148. XmlNode xmlNode = nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.DressData);
  1149. XmlAttribute attribute = xmlNode.Attributes.Append (nativeDoc.CreateAttribute (PlayerConfigLabel.LeftLongSleeveSlot));
  1150. attribute.Value="Empty";
  1151. attribute = xmlNode.Attributes.Append (nativeDoc.CreateAttribute (PlayerConfigLabel.LeftShortSleeveSlot));
  1152. attribute.Value="Empty";
  1153. attribute = xmlNode.Attributes.Append (nativeDoc.CreateAttribute (PlayerConfigLabel.RightLongSleeveSlot));
  1154. attribute.Value="Empty";
  1155. attribute = xmlNode.Attributes.Append (nativeDoc.CreateAttribute (PlayerConfigLabel.RightShortSleeveSlot));
  1156. attribute.Value="Empty";
  1157. List<string> sleeveList = GetSleeveListByTop (xmlNode.Attributes [4].Value);
  1158. xmlNode.Attributes [8].Value = sleeveList[0];
  1159. xmlNode.Attributes [9].Value = sleeveList[1];
  1160. xmlNode.Attributes [10].Value = sleeveList[2];
  1161. xmlNode.Attributes [11].Value = sleeveList[3];
  1162. return nativeDoc;
  1163. }
  1164. public static List<string> GetSleeveListByTop(string topName)
  1165. {
  1166. List<string> sleeveList = new List<string>() {"Empty", "Empty", "Empty", "Empty"};
  1167. if (topName == "上衣1")
  1168. {
  1169. sleeveList[1] = "短袖1左";
  1170. sleeveList[3] = "短袖1右";
  1171. }
  1172. else if (topName == "上衣2")
  1173. {
  1174. sleeveList[1] = "短袖2左";
  1175. sleeveList[3] = "短袖2右";
  1176. }
  1177. else if (topName == "上衣3")
  1178. {
  1179. sleeveList[1] = "短袖2左";
  1180. sleeveList[3] = "短袖2右";
  1181. }
  1182. else if (topName == "上衣5")
  1183. {
  1184. sleeveList[1] = "短袖2左";
  1185. sleeveList[3] = "短袖2右";
  1186. }
  1187. else if (topName == "上衣6")
  1188. {
  1189. sleeveList[1] = "短袖6左";
  1190. sleeveList[3] = "短袖6右";
  1191. }
  1192. else if (topName == "上衣7")
  1193. {
  1194. sleeveList[1] = "短袖7左";
  1195. sleeveList[3] = "短袖7右";
  1196. }
  1197. else if (topName == "上衣7(粉)")
  1198. {
  1199. sleeveList[1] = "短袖7粉左";
  1200. sleeveList[3] = "短袖7粉右";
  1201. }
  1202. else if (topName == "上衣12")
  1203. {
  1204. sleeveList[1] = "短袖12左";
  1205. sleeveList[3] = "短袖12右";
  1206. }
  1207. else if (topName == "上衣13")
  1208. {
  1209. sleeveList[1] = "短袖13左";
  1210. sleeveList[3] = "短袖13右";
  1211. }
  1212. else if (topName == "上衣13(紫)")
  1213. {
  1214. sleeveList[1] = "短袖13蓝左";
  1215. sleeveList[3] = "短袖13蓝右";
  1216. }
  1217. else
  1218. {
  1219. sleeveList[0] = "长袖9左";
  1220. sleeveList[2] = "长袖9右";
  1221. }
  1222. return sleeveList;
  1223. }
  1224. public static XmlDocument ToVersion5(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1225. {
  1226. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 5.ToString();
  1227. return nativeDoc;
  1228. }
  1229. public static XmlDocument ToVersion6(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1230. {
  1231. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 6.ToString();
  1232. XmlNode xmlNode1 = defaultDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.NewFlowerFlag);
  1233. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).AppendChild(nativeDoc.ImportNode(xmlNode1, true));
  1234. return nativeDoc;
  1235. }
  1236. private static int DefaultFlowerAmt = 1;
  1237. public static XmlDocument ToVersion7(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1238. {
  1239. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 7.ToString();
  1240. XmlNode xmlNode1 = nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.FlowerList);
  1241. string[] flowerIDs= xmlNode1.Attributes[0].Value.Split(' ');
  1242. xmlNode1 = defaultDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.FlowerAmtList);
  1243. xmlNode1.Attributes[0].Value = "";
  1244. foreach (var flowerID in flowerIDs)
  1245. {
  1246. xmlNode1.Attributes[0].Value += " " + DefaultFlowerAmt;
  1247. }
  1248. xmlNode1.Attributes[0].Value = xmlNode1.Attributes[0].Value.TrimStart();
  1249. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).AppendChild(nativeDoc.ImportNode(xmlNode1, true));
  1250. return nativeDoc;
  1251. }
  1252. public static XmlDocument ToVersion8(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1253. {
  1254. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 8.ToString();
  1255. XmlNode xmlNode0 = defaultDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.TutorialPlazaRoom);
  1256. XmlNode xmlNode1 = defaultDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.TutorialIndexPlazaRoom);
  1257. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).AppendChild(nativeDoc.ImportNode(xmlNode0, true));
  1258. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).AppendChild(nativeDoc.ImportNode(xmlNode1, true));
  1259. return nativeDoc;
  1260. }
  1261. private static int DefaultAchieveValue = 0;
  1262. public static XmlDocument ToVersion9(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1263. {
  1264. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 9.ToString();
  1265. XmlNode xmlNode = nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.AchieveData);
  1266. xmlNode.Attributes.Append(nativeDoc.CreateAttribute(PlayerConfigLabel.CreateRoomAmt));
  1267. xmlNode.Attributes.Append(nativeDoc.CreateAttribute(PlayerConfigLabel.CreateChestAmt));
  1268. xmlNode.Attributes.Append(nativeDoc.CreateAttribute(PlayerConfigLabel.CreateLuckyChestAmt));
  1269. xmlNode.Attributes.Append(nativeDoc.CreateAttribute(PlayerConfigLabel.CreateGuessColorChestAmt));
  1270. xmlNode.Attributes.Append(nativeDoc.CreateAttribute(PlayerConfigLabel.CreateGuessNumberChestAmt));
  1271. xmlNode.Attributes.Append(nativeDoc.CreateAttribute(PlayerConfigLabel.GetChestAwardAmt));
  1272. xmlNode.Attributes[9].Value = DefaultAchieveValue.ToString();
  1273. xmlNode.Attributes[10].Value = DefaultAchieveValue.ToString();
  1274. xmlNode.Attributes[11].Value = DefaultAchieveValue.ToString();
  1275. xmlNode.Attributes[12].Value = DefaultAchieveValue.ToString();
  1276. xmlNode.Attributes[13].Value = DefaultAchieveValue.ToString();
  1277. xmlNode.Attributes[14].Value = DefaultAchieveValue.ToString();
  1278. return nativeDoc;
  1279. }
  1280. public static XmlDocument ToVersion10(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1281. {
  1282. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 10.ToString();
  1283. ChestManager.ClearRefundAndOperateData(nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode));
  1284. return nativeDoc;
  1285. }
  1286. public static XmlDocument ToVersion11(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1287. {
  1288. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 11.ToString();
  1289. XmlNode xmlNode = defaultDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.ReplayVersion);
  1290. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).AppendChild(nativeDoc.ImportNode(xmlNode, true));
  1291. return nativeDoc;
  1292. }
  1293. public static XmlDocument ToVersion12(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1294. {
  1295. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 12.ToString();
  1296. XmlNode xmlNode = defaultDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.ExtraSlot);
  1297. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).AppendChild(nativeDoc.ImportNode(xmlNode, true));
  1298. return nativeDoc;
  1299. }
  1300. public static XmlDocument ToVersion13(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1301. {
  1302. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 13.ToString();
  1303. XmlNode xmlNode = defaultDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.CurrentMinigameType);
  1304. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).AppendChild(nativeDoc.ImportNode(xmlNode, true));
  1305. return nativeDoc;
  1306. }
  1307. public static XmlDocument ToVersion14(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1308. {
  1309. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 14.ToString();
  1310. XmlNode xmlNode = defaultDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.LastPrivateMessageDate);
  1311. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).AppendChild(nativeDoc.ImportNode(xmlNode, true));
  1312. return nativeDoc;
  1313. }
  1314. public static XmlDocument ToVersion15(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1315. {
  1316. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 15.ToString();
  1317. XmlNode xmlNode = defaultDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.LastApplicantSerialNumber);
  1318. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).AppendChild(nativeDoc.ImportNode(xmlNode, true));
  1319. return nativeDoc;
  1320. }
  1321. public static XmlDocument ToVersion16(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1322. {
  1323. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 16.ToString();
  1324. XmlNode xmlNode = defaultDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.FindMissingMinigameTutorial);
  1325. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).AppendChild(nativeDoc.ImportNode(xmlNode, true));
  1326. xmlNode = defaultDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.FindMissingMinigameTutorialIndex);
  1327. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).AppendChild(nativeDoc.ImportNode(xmlNode, true));
  1328. return nativeDoc;
  1329. }
  1330. public static XmlDocument ToVersion17(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1331. {
  1332. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 17.ToString();
  1333. return nativeDoc;
  1334. }
  1335. public static XmlDocument ToVersion18(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1336. {
  1337. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 18.ToString();
  1338. string persistentFolderPath = $"{Application.persistentDataPath}{Path.DirectorySeparatorChar}HotUpdate";
  1339. if (Directory.Exists(persistentFolderPath))
  1340. {
  1341. Directory.Delete(persistentFolderPath, true);
  1342. }
  1343. return nativeDoc;
  1344. }
  1345. public static XmlDocument ToVersion19(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1346. {
  1347. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 19.ToString();
  1348. string persistentFolderPath = $"{Application.persistentDataPath}{Path.DirectorySeparatorChar}HotUpdate";
  1349. if (Directory.Exists(persistentFolderPath))
  1350. {
  1351. Directory.Delete(persistentFolderPath, true);
  1352. }
  1353. return nativeDoc;
  1354. }
  1355. public static XmlDocument ToVersion20(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1356. {
  1357. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 20.ToString();
  1358. XmlNode xmlNode = defaultDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.MinigameCoolFlag);
  1359. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).AppendChild(nativeDoc.ImportNode(xmlNode, true));
  1360. return nativeDoc;
  1361. }
  1362. public static XmlDocument ToVersion21(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1363. {
  1364. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 21.ToString();
  1365. string persistentFolderPath = $"{Application.persistentDataPath}{Path.DirectorySeparatorChar}HotUpdate";
  1366. if (Directory.Exists(persistentFolderPath))
  1367. {
  1368. Directory.Delete(persistentFolderPath, true);
  1369. }
  1370. return nativeDoc;
  1371. }
  1372. public static XmlDocument ToVersion22(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1373. {
  1374. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 22.ToString();
  1375. string persistentFolderPath = $"{Application.persistentDataPath}{Path.DirectorySeparatorChar}HotUpdate";
  1376. if (Directory.Exists(persistentFolderPath))
  1377. {
  1378. Directory.Delete(persistentFolderPath, true);
  1379. }
  1380. return nativeDoc;
  1381. }
  1382. public static XmlDocument ToVersion23(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1383. {
  1384. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 23.ToString();
  1385. string persistentFolderPath = $"{Application.persistentDataPath}{Path.DirectorySeparatorChar}HotUpdate";
  1386. if (Directory.Exists(persistentFolderPath))
  1387. {
  1388. Directory.Delete(persistentFolderPath, true);
  1389. }
  1390. return nativeDoc;
  1391. }
  1392. public static XmlDocument ToVersion24(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1393. {
  1394. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 24.ToString();
  1395. string persistentFolderPath = $"{Application.persistentDataPath}{Path.DirectorySeparatorChar}HotUpdate";
  1396. if (Directory.Exists(persistentFolderPath))
  1397. {
  1398. Directory.Delete(persistentFolderPath, true);
  1399. }
  1400. return nativeDoc;
  1401. }
  1402. public static XmlDocument ToVersion25(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1403. {
  1404. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 25.ToString();
  1405. XmlNode xmlNode = defaultDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.FashionShowTutorial);
  1406. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).AppendChild(nativeDoc.ImportNode(xmlNode, true));
  1407. xmlNode = defaultDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.FashionShowTutorialIndex);
  1408. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).AppendChild(nativeDoc.ImportNode(xmlNode, true));
  1409. return nativeDoc;
  1410. }
  1411. public static XmlDocument ToVersion26(XmlDocument nativeDoc, XmlDocument defaultDoc)
  1412. {
  1413. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.Version).Attributes[0].Value = 26.ToString();
  1414. XmlNode xmlNode = defaultDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.FashionShowTutorial);
  1415. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).AppendChild(nativeDoc.ImportNode(xmlNode, true));
  1416. xmlNode = defaultDoc.SelectSingleNode(PlayerConfigLabel.RootNode).SelectSingleNode(PlayerConfigLabel.FashionShowTutorialIndex);
  1417. nativeDoc.SelectSingleNode(PlayerConfigLabel.RootNode).AppendChild(nativeDoc.ImportNode(xmlNode, true));
  1418. return nativeDoc;
  1419. }
  1420. }