Menu.cs 44 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.IO;
  5. using System.Linq;
  6. using System.Runtime.CompilerServices;
  7. using System.Text;
  8. using System.Text.RegularExpressions;
  9. using UnityEngine;
  10. public class Menu : MonoBehaviour
  11. {
  12. public static string[] GetModFiles()
  13. {
  14. string fullPath = Path.GetFullPath(".\\");
  15. string path = fullPath + "Mod";
  16. if (!Directory.Exists(path))
  17. {
  18. return null;
  19. }
  20. return Directory.GetFiles(path, "mod_*.mod", SearchOption.AllDirectories);
  21. }
  22. public static string GetModPathFileName(string f_strMenuFileName)
  23. {
  24. string[] modFiles = Menu.GetModFiles();
  25. if (modFiles == null)
  26. {
  27. NDebug.MessageBox("MODエラー", "MODフォルダが無いか、MODフォルダにMODファイルが1つもありません。\n" + f_strMenuFileName);
  28. return string.Empty;
  29. }
  30. string text = Array.Find<string>(modFiles, (string a) => Path.GetFileName(a).ToLower() == f_strMenuFileName.ToLower());
  31. if (string.IsNullOrEmpty(text))
  32. {
  33. NDebug.MessageBox("MODエラー", "MODフォルダにMODファイルが見つかりません。\n" + f_strMenuFileName);
  34. return string.Empty;
  35. }
  36. return text;
  37. }
  38. public static bool ProcScript(Maid maid, string filename, bool f_bTemp = false, SubProp f_SubProp = null)
  39. {
  40. return Menu.ProcScript(maid, new MaidProp
  41. {
  42. strFileName = filename,
  43. strTempFileName = filename
  44. }, f_bTemp, f_SubProp);
  45. }
  46. public static bool ProcScript(Maid maid, MaidProp mp, bool f_bTemp = false, SubProp f_SubProp = null)
  47. {
  48. string text;
  49. if (f_bTemp)
  50. {
  51. text = mp.strTempFileName;
  52. }
  53. else
  54. {
  55. text = mp.strFileName;
  56. }
  57. bool flag = false;
  58. string text2 = string.Empty;
  59. byte[] array = null;
  60. if (text.IndexOf("mod_") == 0)
  61. {
  62. flag = true;
  63. text2 = Menu.GetModPathFileName(text);
  64. if (string.IsNullOrEmpty(text2))
  65. {
  66. return false;
  67. }
  68. text = Menu.GetBaseItemFromMod(text2);
  69. try
  70. {
  71. using (FileStream fileStream = new FileStream(text2, FileMode.Open))
  72. {
  73. if (fileStream == null)
  74. {
  75. Debug.LogWarning("MODアイテムメニューファイルが見つかりません。" + text);
  76. return false;
  77. }
  78. array = new byte[fileStream.Length];
  79. fileStream.Read(array, 0, (int)fileStream.Length);
  80. }
  81. }
  82. catch (Exception ex)
  83. {
  84. Debug.LogError("ProcScript MODアイテムメニューファイルが読み込めませんでした。 : " + text + " : " + ex.Message);
  85. return false;
  86. }
  87. }
  88. byte[] cd = null;
  89. try
  90. {
  91. using (AFileBase afileBase = GameUty.FileOpen(text, null))
  92. {
  93. if (afileBase == null || !afileBase.IsValid())
  94. {
  95. Debug.LogError("アイテムメニューファイルが見つかりません。" + text);
  96. return false;
  97. }
  98. cd = afileBase.ReadAll();
  99. }
  100. }
  101. catch (Exception ex2)
  102. {
  103. Debug.LogError("ProcScript アイテムメニューファイルが読み込めませんでした。 : " + text + " : " + ex2.Message);
  104. return false;
  105. }
  106. Menu.ProcScriptBin(maid, cd, mp, f_bTemp, f_SubProp);
  107. if (flag)
  108. {
  109. Menu.ProcModScriptBin(maid, array, text2, mp, false);
  110. }
  111. return true;
  112. }
  113. private static void ProcScriptBin(Maid maid, byte[] cd, string filename, bool f_bTemp = false, SubProp f_SubProp = null)
  114. {
  115. Menu.ProcScriptBin(maid, cd, new MaidProp
  116. {
  117. strFileName = filename,
  118. strTempFileName = filename
  119. }, f_bTemp, f_SubProp);
  120. }
  121. private static void ProcScriptBin(Maid maid, byte[] cd, MaidProp mp, bool f_bTemp = false, SubProp f_SubProp = null)
  122. {
  123. string text;
  124. if (f_bTemp)
  125. {
  126. text = mp.strTempFileName;
  127. }
  128. else
  129. {
  130. text = mp.strFileName;
  131. }
  132. TBody body = maid.body0;
  133. if (mp.idx == 61 || mp.idx == 64 || mp.idx == 65 || mp.idx == 66)
  134. {
  135. TBodySkin slot = body.GetSlot(1);
  136. if (slot.PartsVersion < 110)
  137. {
  138. return;
  139. }
  140. }
  141. List<Menu.LastParam> list = new List<Menu.LastParam>();
  142. BinaryReader binaryReader = new BinaryReader(new MemoryStream(cd), Encoding.UTF8);
  143. string text2 = binaryReader.ReadString();
  144. NDebug.Assert(text2 == "CM3D2_MENU", "ProcScriptBin 例外 : ヘッダーファイルが不正です。" + text2);
  145. int num = binaryReader.ReadInt32();
  146. string text3 = binaryReader.ReadString();
  147. string text4 = binaryReader.ReadString();
  148. string text5 = binaryReader.ReadString();
  149. string text6 = binaryReader.ReadString();
  150. long num2 = (long)binaryReader.ReadInt32();
  151. bool flag = false;
  152. string text7 = string.Empty;
  153. string text8 = string.Empty;
  154. string text9 = string.Empty;
  155. string slotname = string.Empty;
  156. int version = 100;
  157. bool flag2 = false;
  158. bool flag3 = false;
  159. for (;;)
  160. {
  161. try
  162. {
  163. for (;;)
  164. {
  165. IL_108:
  166. int num3 = (int)binaryReader.ReadByte();
  167. text8 = text7;
  168. text7 = string.Empty;
  169. if (num3 == 0)
  170. {
  171. break;
  172. }
  173. for (int i = 0; i < num3; i++)
  174. {
  175. text7 = text7 + "\"" + binaryReader.ReadString() + "\" ";
  176. }
  177. if (!(text7 == string.Empty))
  178. {
  179. goto IL_16F;
  180. }
  181. }
  182. break;
  183. IL_16F:
  184. string stringCom = UTY.GetStringCom(text7);
  185. string[] stringList = UTY.GetStringList(text7);
  186. if (stringCom == "end")
  187. {
  188. break;
  189. }
  190. if (stringCom == "name")
  191. {
  192. goto IL_14B9;
  193. }
  194. if (stringCom == "ver")
  195. {
  196. TBodySkin slot2 = body.GetSlot(stringList[1]);
  197. version = int.Parse(stringList[2]);
  198. goto IL_14B9;
  199. }
  200. if (stringCom == "アイテム")
  201. {
  202. Menu.SetMaidItemTemp(maid, stringList[1], f_bTemp);
  203. goto IL_14B9;
  204. }
  205. if (stringCom == "アイテム条件")
  206. {
  207. string slotname2 = stringList[1];
  208. if (stringList[2] == "に何か")
  209. {
  210. bool flag4 = false;
  211. TBodySkin slot3 = body.GetSlot(slotname2);
  212. if (stringList[3] == "有る")
  213. {
  214. if (slot3.obj != null)
  215. {
  216. flag4 = true;
  217. }
  218. }
  219. else if (stringList[3] == "無い")
  220. {
  221. if (slot3.obj == null)
  222. {
  223. flag4 = true;
  224. }
  225. }
  226. else
  227. {
  228. NDebug.Assert("アイテム条件が不正です。「有る」か「無い」かを指定してください。\n" + text7, false);
  229. }
  230. if (stringList[4] == "なら")
  231. {
  232. if (flag4)
  233. {
  234. Menu.SetMaidItemTemp(maid, stringList[5], f_bTemp);
  235. goto IL_2C9;
  236. }
  237. goto IL_2C9;
  238. IL_2C9:
  239. goto IL_2E0;
  240. }
  241. NDebug.Assert("アイテム条件が不正です。「なら」が必要です。\n" + text7, false);
  242. goto IL_2E0;
  243. IL_2E0:
  244. goto IL_414;
  245. }
  246. if (stringList[2] == "が")
  247. {
  248. bool flag5 = false;
  249. TBodySkin slot4 = body.GetSlot(slotname2);
  250. if (slot4.m_strModelFileName == stringList[3])
  251. {
  252. flag5 = true;
  253. }
  254. if (stringList[4] == "なら")
  255. {
  256. if (flag5)
  257. {
  258. Menu.SetMaidItemTemp(maid, stringList[5], f_bTemp);
  259. goto IL_345;
  260. }
  261. goto IL_345;
  262. IL_345:
  263. goto IL_35C;
  264. }
  265. NDebug.Assert("アイテム条件が不正です。「なら」が必要です。\n" + text7, false);
  266. goto IL_35C;
  267. IL_35C:
  268. goto IL_414;
  269. }
  270. if (!(stringList[2] == "のアイテムパラメータの"))
  271. {
  272. goto IL_414;
  273. }
  274. bool flag6 = false;
  275. TBodySkin slot5 = body.GetSlot(slotname2);
  276. string param = slot5.GetParam(stringList[3].ToLower());
  277. if (stringList[4] == "が")
  278. {
  279. if (stringList[5].ToLower() == param)
  280. {
  281. flag6 = true;
  282. }
  283. }
  284. else
  285. {
  286. NDebug.Assert("アイテム条件が不正です。「が」が必要です。\n" + text7, false);
  287. }
  288. if (stringList[6] == "なら")
  289. {
  290. if (flag6)
  291. {
  292. Menu.SetMaidItemTemp(maid, stringList[7], f_bTemp);
  293. goto IL_3FD;
  294. }
  295. goto IL_3FD;
  296. IL_3FD:
  297. goto IL_414;
  298. }
  299. NDebug.Assert("アイテム条件が不正です。「なら」が必要です。\n" + text7, false);
  300. goto IL_414;
  301. IL_414:
  302. goto IL_14B9;
  303. }
  304. if (stringCom == "if")
  305. {
  306. if (stringList[1].IndexOf("maidprop[") != 0)
  307. {
  308. goto IL_594;
  309. }
  310. string value = stringList[1].Substring(9, stringList[1].Length - 9 - 1);
  311. MPN mpn = (MPN)Enum.Parse(typeof(MPN), value, false);
  312. MaidProp prop = maid.GetProp(mpn);
  313. if (!(stringList[2] == "==") || !(stringList[3] == "nothing") || prop.nFileNameRID != 0 || !(stringList[4] == "?") || stringList[5].IndexOf("setprop[") != 0)
  314. {
  315. goto IL_594;
  316. }
  317. string value2 = stringList[5].Substring(8, stringList[5].Length - 8 - 1);
  318. MPN idx = (MPN)Enum.Parse(typeof(MPN), value2, false);
  319. if (!(stringList[6] == "="))
  320. {
  321. goto IL_594;
  322. }
  323. string text10;
  324. if (stringList[7].IndexOf("getprop[") == 0)
  325. {
  326. string value3 = stringList[7].Substring(8, stringList[7].Length - 8 - 1);
  327. MPN mpn2 = (MPN)Enum.Parse(typeof(MPN), value3, false);
  328. MaidProp prop2 = maid.GetProp(mpn2);
  329. text10 = prop2.strFileName;
  330. }
  331. else
  332. {
  333. text10 = stringList[7];
  334. }
  335. if (!string.IsNullOrEmpty(text10))
  336. {
  337. maid.SetProp(idx, text10, 0, false, false);
  338. goto IL_594;
  339. }
  340. goto IL_594;
  341. IL_594:
  342. goto IL_14B9;
  343. }
  344. if (stringCom == "アイテムパラメータ")
  345. {
  346. if (stringList.Length == 4)
  347. {
  348. string text11 = stringList[1];
  349. string text12 = stringList[2].ToLower();
  350. string text13 = stringList[3].ToLower();
  351. list.Add(new Menu.LastParam(0, stringCom, new string[]
  352. {
  353. text11,
  354. text12,
  355. text13
  356. }));
  357. goto IL_609;
  358. }
  359. Debug.LogError("アイテムパラメータ 命令の引数が不正です。SlotNameを明示的に指定しする必要があります。アイテムパラメータ <スロット名> <変数名> <値> の順です。" + text7);
  360. goto IL_609;
  361. IL_609:
  362. goto IL_14B9;
  363. }
  364. if (stringCom == "半脱ぎ" || stringCom == "リソース参照")
  365. {
  366. string key;
  367. string value4;
  368. if (stringCom == "半脱ぎ")
  369. {
  370. key = "半脱ぎ";
  371. value4 = stringList[1];
  372. }
  373. else
  374. {
  375. key = stringList[1];
  376. value4 = stringList[2];
  377. }
  378. int hashCode = Path.GetFileName(text.ToLower()).ToLower().GetHashCode();
  379. SortedDictionary<string, string> sortedDictionary;
  380. if (Menu.m_dicResourceRef.TryGetValue(hashCode, out sortedDictionary))
  381. {
  382. string empty = string.Empty;
  383. if (sortedDictionary.TryGetValue(key, out empty))
  384. {
  385. sortedDictionary[key] = value4;
  386. goto IL_6BB;
  387. }
  388. sortedDictionary.Add(key, value4);
  389. goto IL_6BB;
  390. IL_6BB:
  391. goto IL_6E0;
  392. }
  393. sortedDictionary = new SortedDictionary<string, string>();
  394. sortedDictionary.Add(key, value4);
  395. Menu.m_dicResourceRef.Add(hashCode, sortedDictionary);
  396. goto IL_6E0;
  397. IL_6E0:
  398. goto IL_14B9;
  399. }
  400. if (stringCom == "set")
  401. {
  402. goto IL_14B9;
  403. }
  404. if (stringCom == "setname")
  405. {
  406. goto IL_14B9;
  407. }
  408. if (stringCom == "setslotitem")
  409. {
  410. string tag = stringList[1];
  411. uint val = uint.Parse(stringList[2]);
  412. maid.SetProp(tag, (int)val, false);
  413. goto IL_14B9;
  414. }
  415. if (stringCom == "additem")
  416. {
  417. string text14 = text9;
  418. if (stringList.Length > 1)
  419. {
  420. text14 = stringList[2];
  421. }
  422. slotname = text14;
  423. if (text14 == "body")
  424. {
  425. body.LoadBody_R(stringList[1], maid);
  426. }
  427. string attachSlot = string.Empty;
  428. string attachName = string.Empty;
  429. if (stringList.Length == 6)
  430. {
  431. if (stringList[3] == "アタッチ")
  432. {
  433. attachSlot = stringList[4];
  434. attachName = stringList[5];
  435. }
  436. }
  437. else if (stringList.Length == 5 && stringList[3] == "ボーンにアタッチ")
  438. {
  439. attachSlot = "ボーンにアタッチ";
  440. attachName = stringList[4];
  441. }
  442. if (text14 == "handitemr")
  443. {
  444. attachSlot = "ボーンにアタッチ";
  445. attachName = "_IK_handR";
  446. }
  447. if (text14 == "handiteml")
  448. {
  449. attachSlot = "ボーンにアタッチ";
  450. attachName = "_IK_handL";
  451. }
  452. body.AddItem((MPN)Enum.Parse(typeof(MPN), text9, true), text14, stringList[1], attachSlot, attachName, f_bTemp, version);
  453. body.SetVisibleNodeSlot(text14, true, "_ALL_");
  454. goto IL_14B9;
  455. }
  456. if (stringCom == "nofloory")
  457. {
  458. TBody.SlotID index = (TBody.SlotID)Enum.Parse(typeof(TBody.SlotID), stringList[1], true);
  459. body.goSlot[(int)index].m_bHitFloorY = false;
  460. goto IL_14B9;
  461. }
  462. if (stringCom == "saveitem")
  463. {
  464. text5 = stringList[1];
  465. goto IL_14B9;
  466. }
  467. if (stringCom == "category")
  468. {
  469. text9 = stringList[1];
  470. flag2 = (text9 == "skin");
  471. flag3 = (text9 == "haircolor");
  472. goto IL_14B9;
  473. }
  474. if (stringCom == "maskitem")
  475. {
  476. if (stringList.Length > 1)
  477. {
  478. string maskslot = stringList[1];
  479. body.AddMask(text9, maskslot);
  480. goto IL_92C;
  481. }
  482. goto IL_92C;
  483. IL_92C:
  484. goto IL_14B9;
  485. }
  486. if (stringCom == "delitem")
  487. {
  488. string slotname3 = text9;
  489. if (stringList.Length > 1)
  490. {
  491. slotname3 = stringList[1];
  492. }
  493. body.DelItem((MPN)Enum.Parse(typeof(MPN), text9, true), slotname3);
  494. goto IL_14B9;
  495. }
  496. if (stringCom == "node消去")
  497. {
  498. body.SetVisibleNodeSlot(text9, false, stringList[1]);
  499. goto IL_14B9;
  500. }
  501. if (stringCom == "node表示")
  502. {
  503. body.SetVisibleNodeSlot(text9, true, stringList[1]);
  504. goto IL_14B9;
  505. }
  506. if (stringCom == "パーツnode消去")
  507. {
  508. body.SetVisibleNodeSlotParts(text9, stringList[1], false, stringList[2]);
  509. goto IL_14B9;
  510. }
  511. if (stringCom == "パーツnode表示")
  512. {
  513. body.SetVisibleNodeSlotParts(text9, stringList[1], true, stringList[2]);
  514. goto IL_14B9;
  515. }
  516. if (stringCom == "color")
  517. {
  518. string name = stringList[1];
  519. int matno = int.Parse(stringList[2]);
  520. string prop_name = stringList[3];
  521. Color col = new Color(float.Parse(stringList[4]) / 255f, float.Parse(stringList[5]) / 255f, float.Parse(stringList[6]) / 255f, float.Parse(stringList[7]) / 255f);
  522. body.ChangeCol(name, matno, prop_name, col);
  523. goto IL_14B9;
  524. }
  525. if (stringCom == "mancolor")
  526. {
  527. Color manColor = new Color(float.Parse(stringList[1]) / 255f, float.Parse(stringList[2]) / 255f, float.Parse(stringList[3]) / 255f, 1f);
  528. maid.ManColor = manColor;
  529. maid.ManColorUpdate();
  530. goto IL_14B9;
  531. }
  532. if (stringCom == "tex" || stringCom == "テクスチャ変更")
  533. {
  534. string text15 = stringList[1];
  535. int num4 = int.Parse(stringList[2]);
  536. string text16 = stringList[3];
  537. string filename = stringList[4];
  538. MaidParts.PARTS_COLOR parts_COLOR = MaidParts.PARTS_COLOR.NONE;
  539. if (stringList.Length == 6)
  540. {
  541. string text17 = stringList[5];
  542. try
  543. {
  544. parts_COLOR = (MaidParts.PARTS_COLOR)Enum.Parse(typeof(MaidParts.PARTS_COLOR), text17.ToUpper());
  545. }
  546. catch
  547. {
  548. NDebug.Assert("無限色IDがありません。" + text17, false);
  549. }
  550. }
  551. if (mp.idx == 61)
  552. {
  553. num4 = 7;
  554. }
  555. if (flag2 && parts_COLOR == MaidParts.PARTS_COLOR.SKIN)
  556. {
  557. if (text15 == "body" && num4 == 0 && text16.ToLower() == "_maintex")
  558. {
  559. body.ChangeShader(text15, num4, "CM3D2_Toony_Lighted_Outline_Tex");
  560. flag = true;
  561. body.ChangeTex(text15, num4, "_OutlineTex", filename, null, MaidParts.PARTS_COLOR.SKIN_OUTLINE);
  562. body.ChangeTex(text15, num4, "_OutlineToonRamp", "toonBlackA1.tex", null, MaidParts.PARTS_COLOR.SKIN_OUTLINE);
  563. }
  564. else if (text15 == "head" && num4 == 5 && text16.ToLower() == "_maintex")
  565. {
  566. body.ChangeShader(text15, num4, "CM3D2_Toony_Lighted_Outline_Tex");
  567. flag = true;
  568. body.ChangeTex(text15, num4, "_OutlineTex", filename, null, MaidParts.PARTS_COLOR.SKIN_OUTLINE);
  569. body.ChangeTex(text15, num4, "_OutlineToonRamp", "toonBlackA1.tex", null, MaidParts.PARTS_COLOR.SKIN_OUTLINE);
  570. }
  571. }
  572. body.ChangeTex(text15, num4, text16, filename, null, parts_COLOR);
  573. if (parts_COLOR != MaidParts.PARTS_COLOR.NONE)
  574. {
  575. maid.Parts.SetPartsColor(parts_COLOR, maid.Parts.GetPartsColor(parts_COLOR));
  576. }
  577. if ((flag2 || flag3) && !flag)
  578. {
  579. body.RestoreShader(text15);
  580. goto IL_CBC;
  581. }
  582. goto IL_CBC;
  583. IL_CBC:
  584. goto IL_14B9;
  585. }
  586. if (stringCom == "prop")
  587. {
  588. string tag2 = stringList[1];
  589. string s = stringList[2];
  590. maid.SetProp(tag2, int.Parse(s), false);
  591. goto IL_14B9;
  592. }
  593. if (stringCom == "テクスチャ乗算")
  594. {
  595. goto IL_14B9;
  596. }
  597. if (stringCom == "テクスチャ合成")
  598. {
  599. if (stringList.Length != 7)
  600. {
  601. NDebug.Assert("テクスチャ合成 の引数が不正です。" + stringList.Length, false);
  602. }
  603. if ((text9 == "accTatoo" || text9 == "hokuro") && !text.Contains("_del"))
  604. {
  605. body.MulTexSet(stringList[1], int.Parse(stringList[2]), stringList[3], int.Parse(stringList[4]), stringList[5], (GameUty.SystemMaterial)Enum.Parse(typeof(GameUty.SystemMaterial), stringList[6]), true, 0, 0, 0f, 0f, true, f_SubProp, 1f, 1024);
  606. goto IL_E1F;
  607. }
  608. body.MulTexSet(stringList[1], int.Parse(stringList[2]), stringList[3], int.Parse(stringList[4]), stringList[5], (GameUty.SystemMaterial)Enum.Parse(typeof(GameUty.SystemMaterial), stringList[6]), false, 0, 0, 0f, 0f, false, null, 1f, 1024);
  609. goto IL_E1F;
  610. IL_E1F:
  611. goto IL_14B9;
  612. }
  613. if (stringCom == "テクスチャセット合成")
  614. {
  615. if (stringList.Length != 7)
  616. {
  617. NDebug.Assert("テクスチャセット合成 の引数が不正です。" + stringList.Length, false);
  618. }
  619. body.MulTexSet(stringList[1], int.Parse(stringList[2]), stringList[3], int.Parse(stringList[4]), stringList[5], (GameUty.SystemMaterial)Enum.Parse(typeof(GameUty.SystemMaterial), stringList[6]), true, 0, 0, 0f, 0f, true, null, 1f, 1024);
  620. goto IL_14B9;
  621. }
  622. if (stringCom == "マテリアル変更")
  623. {
  624. string f_strSlotName = stringList[1];
  625. int f_nMatNo = int.Parse(stringList[2]);
  626. string f_strFileName = stringList[3];
  627. body.ChangeMaterial(f_strSlotName, f_nMatNo, f_strFileName);
  628. goto IL_14B9;
  629. }
  630. if (stringCom == "shader")
  631. {
  632. string f_strSlotName2 = stringList[1];
  633. int f_nMatNo2 = int.Parse(stringList[2]);
  634. string f_strShaderFileName = stringList[3];
  635. body.ChangeShader(f_strSlotName2, f_nMatNo2, f_strShaderFileName);
  636. flag = true;
  637. goto IL_14B9;
  638. }
  639. if (stringCom == "アタッチポイントの設定")
  640. {
  641. if (stringList.Length < 5)
  642. {
  643. Debug.LogError("アタッチポイントの設定引数の数が不正です。 " + text7 + " " + text3);
  644. goto IL_FE2;
  645. }
  646. Vector3 v = new Vector3(float.Parse(stringList[2]), float.Parse(stringList[3]), float.Parse(stringList[4]));
  647. Quaternion q = Quaternion.identity;
  648. if (stringList.Length == 8)
  649. {
  650. q = Quaternion.Euler(float.Parse(stringList[5]), float.Parse(stringList[6]), float.Parse(stringList[7]));
  651. }
  652. else
  653. {
  654. Debug.LogError("アタッチポイントの設定引数に角度指定がありません。 " + text7 + " " + text3);
  655. }
  656. body.SetAttachPoint(slotname, stringList[1], v, q, f_bTemp);
  657. goto IL_FE2;
  658. IL_FE2:
  659. goto IL_14B9;
  660. }
  661. if (stringCom == "blendset")
  662. {
  663. string blendSetName = stringList[1];
  664. int num5 = (stringList.Length - 2) / 2;
  665. body.Face.morph.NewBlendSet(blendSetName);
  666. for (int j = 0; j < num5; j++)
  667. {
  668. string tag3 = stringList[2 + j * 2].ToLower();
  669. float val2 = float.Parse(stringList[3 + j * 2]);
  670. body.Face.morph.SetValueBlendSet(blendSetName, tag3, val2);
  671. }
  672. goto IL_14B9;
  673. }
  674. if (stringCom == "paramset")
  675. {
  676. body.Face.NewParamSet(text7);
  677. goto IL_14B9;
  678. }
  679. if (stringCom == "commenttype")
  680. {
  681. if (!maid.status.partsDic.ContainsKey(stringList[1]))
  682. {
  683. maid.status.partsDic.Add(stringList[1], string.Empty);
  684. }
  685. maid.status.partsDic[stringList[1]] = stringList[2];
  686. goto IL_14B9;
  687. }
  688. if (stringCom == "useredit")
  689. {
  690. if (stringList[2].ToLower() == "material")
  691. {
  692. body.SetMaterialProperty(text9, stringList[3], int.Parse(stringList[4]), stringList[5], stringList[6], stringList[7], false);
  693. goto IL_113A;
  694. }
  695. goto IL_113A;
  696. IL_113A:
  697. goto IL_14B9;
  698. }
  699. if (stringCom == "bonemorph")
  700. {
  701. if (9 > stringList.Length || stringList.Length > 10)
  702. {
  703. Debug.LogError("BoneMorpの設定引数の数が不正です。 " + text7 + " " + text3);
  704. }
  705. if (stringList.Length == 9)
  706. {
  707. body.bonemorph.ChangeMorphPosValue(stringList[1], stringList[2], new Vector3(float.Parse(stringList[3]), float.Parse(stringList[4]), float.Parse(stringList[5])), new Vector3(float.Parse(stringList[6]), float.Parse(stringList[7]), float.Parse(stringList[8])));
  708. goto IL_1300;
  709. }
  710. string text18 = stringList[1].ToLower();
  711. string strPropName = stringList[2];
  712. string f_strBoneName = stringList[3];
  713. Vector3 f_fAddMin = new Vector3(float.Parse(stringList[4]), float.Parse(stringList[5]), float.Parse(stringList[6]));
  714. Vector3 f_fAddMax = new Vector3(float.Parse(stringList[7]), float.Parse(stringList[8]), float.Parse(stringList[9]));
  715. if (text18 != null)
  716. {
  717. if (text18 == "pos")
  718. {
  719. body.bonemorph.ChangeMorphPosValue(strPropName, f_strBoneName, f_fAddMin, f_fAddMax);
  720. goto IL_1300;
  721. }
  722. if (text18 == "rot")
  723. {
  724. body.bonemorph.ChangeMorphRotatioValue(strPropName, f_strBoneName, f_fAddMin, f_fAddMax);
  725. goto IL_1300;
  726. }
  727. if (text18 == "scl")
  728. {
  729. body.bonemorph.ChangeMorphSclValue(strPropName, f_strBoneName, f_fAddMin, f_fAddMax);
  730. goto IL_1300;
  731. }
  732. }
  733. Debug.LogError(string.Concat(new string[]
  734. {
  735. "BoneMorpのタイプ指定が不正です[",
  736. text18,
  737. "]\n",
  738. text7,
  739. " ",
  740. text3
  741. }));
  742. goto IL_1300;
  743. IL_1300:
  744. goto IL_14B9;
  745. }
  746. if (stringCom == "length")
  747. {
  748. if (stringList.Length != 11)
  749. {
  750. Debug.LogError("lengthの設定引数の数が不正です。 " + text7 + " " + text3);
  751. }
  752. body.SetHairLengthDataList(stringList[1], stringList[2], stringList[3], stringList[4], new Vector3(float.Parse(stringList[5]), float.Parse(stringList[6]), float.Parse(stringList[7])), new Vector3(float.Parse(stringList[8]), float.Parse(stringList[9]), float.Parse(stringList[10])));
  753. goto IL_14B9;
  754. }
  755. if (stringCom == "anime")
  756. {
  757. if (stringList.Length < 3)
  758. {
  759. Debug.LogError("animeの設定引数の数が不正です。 " + text7 + " " + text3);
  760. }
  761. TBody.SlotID f_slot = (TBody.SlotID)Enum.Parse(typeof(TBody.SlotID), stringList[1], true);
  762. body.ItemAnimationLoad(f_slot, stringList[2]);
  763. bool f_bLoop = false;
  764. if (3 < stringList.Length)
  765. {
  766. f_bLoop = (stringList[3] == "loop");
  767. }
  768. body.ItemAnimationPlay(f_slot, stringList[2], f_bLoop);
  769. goto IL_14B9;
  770. }
  771. if (stringCom == "param2")
  772. {
  773. if (stringList.Length == 4)
  774. {
  775. string slotname4 = stringList[1];
  776. body.GetSlot(slotname4).SetParam2(stringList[2], stringList[3]);
  777. goto IL_1473;
  778. }
  779. Debug.LogError("param2の設定引数の数が不正です。 " + text7 + " " + text3);
  780. goto IL_1473;
  781. IL_1473:
  782. goto IL_14B9;
  783. }
  784. if (stringCom == "animematerial")
  785. {
  786. TBody.SlotID f_slot2 = (TBody.SlotID)Enum.Parse(typeof(TBody.SlotID), stringList[1], true);
  787. string s2 = stringList[2];
  788. body.MaterialAnimatorAdd(f_slot2, int.Parse(s2));
  789. goto IL_14B9;
  790. }
  791. goto IL_14B9;
  792. IL_14B9:
  793. goto IL_153C;
  794. }
  795. catch (Exception ex)
  796. {
  797. Debug.LogError(string.Concat(new string[]
  798. {
  799. "Exception ",
  800. Path.GetFileName(text),
  801. " 現在処理中だった行 = ",
  802. text7,
  803. " 以前の行 = ",
  804. text8,
  805. " ",
  806. ex.Message,
  807. "StackTrace:\n",
  808. ex.StackTrace
  809. }));
  810. NDebug.Assert("メニューファイル処理中にエラーが発生しました。" + Path.GetFileName(text), true);
  811. goto IL_153C;
  812. }
  813. IL_153C:
  814. goto IL_108;
  815. }
  816. list.Sort((Menu.LastParam a, Menu.LastParam b) => a.nOrder - a.nOrder);
  817. for (int k = 0; k < list.Count; k++)
  818. {
  819. Menu.LastParam lastParam = list[k];
  820. if (lastParam.strComm == "アイテムパラメータ")
  821. {
  822. TBodySkin slot6 = body.GetSlot(lastParam.aryArgs[0]);
  823. slot6.SetParam(lastParam.aryArgs[1], lastParam.aryArgs[2]);
  824. }
  825. }
  826. binaryReader.Close();
  827. binaryReader = null;
  828. }
  829. public static void SetMaidItemTemp(Maid maid, string filename, bool f_bTemp = false)
  830. {
  831. byte[] buffer = null;
  832. try
  833. {
  834. if (!GameUty.IsExistFile(filename, null))
  835. {
  836. return;
  837. }
  838. using (AFileBase afileBase = GameUty.FileOpen(filename, null))
  839. {
  840. if (!afileBase.IsValid())
  841. {
  842. NDebug.Assert("メニューファイルが見つかりません。" + filename, false);
  843. }
  844. buffer = afileBase.ReadAll();
  845. }
  846. }
  847. catch (Exception ex)
  848. {
  849. Debug.LogError("ProcScriptBin/SetMaidItemTemp アイテムメニューファイルが読み込めませんでした。 : " + filename + " : " + ex.Message);
  850. }
  851. BinaryReader binaryReader = new BinaryReader(new MemoryStream(buffer), Encoding.UTF8);
  852. string text = binaryReader.ReadString();
  853. NDebug.Assert(text == "CM3D2_MENU", "ProcScriptBin/SetMaidItemTemp 例外 : " + filename + " のヘッダーが不正です。" + text);
  854. int num = binaryReader.ReadInt32();
  855. string text2 = binaryReader.ReadString();
  856. string text3 = binaryReader.ReadString();
  857. string text4 = binaryReader.ReadString();
  858. if (text4 == "acctatoo")
  859. {
  860. maid.DelProp(MPN.acctatoo, false);
  861. maid.SetSubProp(MPN.acctatoo, 0, filename, 0);
  862. }
  863. else if (text4 == "hokuro")
  864. {
  865. maid.DelProp(MPN.hokuro, false);
  866. maid.SetSubProp(MPN.hokuro, 0, filename, 0);
  867. }
  868. else
  869. {
  870. maid.SetProp(text4, filename, 0, f_bTemp, false);
  871. }
  872. }
  873. public static bool ExportModScript(Maid maid, string filename, bool f_bTemp = false)
  874. {
  875. byte[] cd = null;
  876. try
  877. {
  878. using (AFileBase afileBase = GameUty.FileSystem.FileOpen(filename))
  879. {
  880. if (!afileBase.IsValid())
  881. {
  882. Debug.LogWarning("アイテムメニューファイルが見つかりません。" + filename);
  883. return false;
  884. }
  885. cd = afileBase.ReadAll();
  886. }
  887. }
  888. catch (Exception ex)
  889. {
  890. Debug.LogError("ExportModScript アイテムメニューファイルが読み込めませんでした。 : " + filename + " : " + ex.Message);
  891. }
  892. string fullPath = Path.GetFullPath(".\\");
  893. string text = fullPath + "ModExport";
  894. if (!Directory.Exists(text))
  895. {
  896. Directory.CreateDirectory(text);
  897. }
  898. string text2 = "mod_" + Path.GetFileNameWithoutExtension(filename);
  899. text2 = text2.Trim();
  900. text = text + "\\" + text2;
  901. if (!Directory.Exists(text))
  902. {
  903. Directory.CreateDirectory(text);
  904. }
  905. StreamWriter streamWriter = new StreamWriter(text + "\\" + text2 + ".txt", false, Encoding.UTF8);
  906. streamWriter.WriteLine("出力バージョン\t" + 1300);
  907. streamWriter.WriteLine("基本アイテム\t" + filename.Replace(" ", ":"));
  908. try
  909. {
  910. Menu.ExportModScript(maid, cd, streamWriter, text + "\\" + text2, f_bTemp);
  911. NUty.WinMessageBox(NUty.GetWindowHandle(), string.Concat(new string[]
  912. {
  913. "MODテンプレート出力完了\n",
  914. text,
  915. "\\",
  916. text2,
  917. ".txt"
  918. }), "MOD Compile Completed", 0);
  919. }
  920. catch (Exception ex2)
  921. {
  922. Debug.LogError("ExportModScript 例外 : " + filename + " : " + ex2.Message);
  923. }
  924. finally
  925. {
  926. streamWriter.Close();
  927. streamWriter.Dispose();
  928. streamWriter = null;
  929. }
  930. return true;
  931. }
  932. public static void ExportModScript(Maid maid, byte[] cd, StreamWriter sw, string filename, bool f_bTemp = false)
  933. {
  934. TBody body = maid.body0;
  935. List<Menu.LastParam> list = new List<Menu.LastParam>();
  936. BinaryReader binaryReader = new BinaryReader(new MemoryStream(cd), Encoding.UTF8);
  937. string text = binaryReader.ReadString();
  938. NDebug.Assert(text == "CM3D2_MENU", "ExportModScript 例外 : ヘッダーファイルが不正です。" + text);
  939. int num = binaryReader.ReadInt32();
  940. string path = binaryReader.ReadString();
  941. string str = binaryReader.ReadString();
  942. sw.WriteLine("アイテム名\t" + str);
  943. string str2 = binaryReader.ReadString();
  944. sw.WriteLine("カテゴリ名\t" + str2);
  945. string text2 = binaryReader.ReadString();
  946. sw.WriteLine("説明\t" + text2.Replace("\n", "《改行》"));
  947. sw.WriteLine("アイコン\t" + Path.GetFileName(filename + ".png"));
  948. long num2 = (long)binaryReader.ReadInt32();
  949. bool flag = false;
  950. List<string> list2 = new List<string>();
  951. string text3 = string.Empty;
  952. string text4 = string.Empty;
  953. string empty = string.Empty;
  954. string empty2 = string.Empty;
  955. try
  956. {
  957. for (;;)
  958. {
  959. int num3 = (int)binaryReader.ReadByte();
  960. text4 = text3;
  961. text3 = string.Empty;
  962. if (num3 == 0)
  963. {
  964. break;
  965. }
  966. for (int i = 0; i < num3; i++)
  967. {
  968. text3 = text3 + "\"" + binaryReader.ReadString() + "\" ";
  969. }
  970. if (!(text3 == string.Empty))
  971. {
  972. string stringCom = UTY.GetStringCom(text3);
  973. string[] stringList = UTY.GetStringList(text3);
  974. if (stringCom == "end")
  975. {
  976. break;
  977. }
  978. if (!(stringCom == "name"))
  979. {
  980. if (stringCom == "icon" || stringCom == "icons")
  981. {
  982. string f_strFileName = stringList[1];
  983. Texture2D texture2D = ImportCM.CreateTexture(f_strFileName);
  984. if (texture2D != null)
  985. {
  986. UTY.SaveImage(texture2D, filename + ".png");
  987. }
  988. }
  989. else if (stringCom == "additem")
  990. {
  991. sw.WriteLine("アイテム変更");
  992. string text5 = empty;
  993. if (stringList.Length > 1)
  994. {
  995. text5 = stringList[2];
  996. }
  997. list2.Add(text5);
  998. sw.WriteLine("\tスロット名\t" + text5);
  999. TBodySkin slot = maid.body0.GetSlot(text5);
  1000. foreach (Transform transform in slot.obj.GetComponentsInChildren<Transform>(true))
  1001. {
  1002. Renderer component = transform.GetComponent<Renderer>();
  1003. if (!(component == null) && component.materials != null)
  1004. {
  1005. Material[] materials = component.materials;
  1006. for (int k = 0; k < materials.Length; k++)
  1007. {
  1008. Material f_mat = materials[k];
  1009. sw.WriteLine("\t\tマテリアル番号\t" + k);
  1010. Menu.ModMaterial(f_mat, sw);
  1011. }
  1012. }
  1013. }
  1014. }
  1015. else if (!(stringCom == "color"))
  1016. {
  1017. if (stringCom == "tex" || stringCom == "テクスチャ変更")
  1018. {
  1019. string text6 = stringList[1];
  1020. int num4 = int.Parse(stringList[2]);
  1021. string str3 = stringList[3];
  1022. string text7 = stringList[4];
  1023. string text8 = (6 > stringList.Length) ? null : stringList[5];
  1024. if (!list2.Contains(text6))
  1025. {
  1026. string text9 = "テクスチャ変更";
  1027. text9 = text9 + "\t" + text6;
  1028. text9 = text9 + "\t" + num4;
  1029. text9 = text9 + "\t" + str3;
  1030. text9 = text9 + "\t" + text7;
  1031. if (!string.IsNullOrEmpty(text8))
  1032. {
  1033. text9 = text9 + "\t" + text8;
  1034. }
  1035. if (text7.Contains("*"))
  1036. {
  1037. string text10 = string.Empty;
  1038. TBodySkin slot2 = maid.body0.GetSlot(text6);
  1039. if (slot2 != null)
  1040. {
  1041. text10 += "参考)出力時のモデル名は ";
  1042. text10 += Path.GetFileNameWithoutExtension(slot2.m_strModelFileName);
  1043. text10 += " です。";
  1044. }
  1045. sw.WriteLine("// * の部分は現在装着されているモデル名に置換されます。" + text10);
  1046. }
  1047. if (!string.IsNullOrEmpty(text8) && !flag)
  1048. {
  1049. string text11 = "// 無限色ID群 ";
  1050. IEnumerator enumerator = Enum.GetValues(typeof(MaidParts.PARTS_COLOR)).GetEnumerator();
  1051. try
  1052. {
  1053. while (enumerator.MoveNext())
  1054. {
  1055. object obj = enumerator.Current;
  1056. text11 = text11 + ((MaidParts.PARTS_COLOR)obj).ToString() + " ";
  1057. }
  1058. }
  1059. finally
  1060. {
  1061. IDisposable disposable;
  1062. if ((disposable = (enumerator as IDisposable)) != null)
  1063. {
  1064. disposable.Dispose();
  1065. }
  1066. }
  1067. sw.WriteLine(text11);
  1068. flag = true;
  1069. }
  1070. sw.WriteLine(text9);
  1071. }
  1072. }
  1073. else if (stringCom == "テクスチャ合成")
  1074. {
  1075. string item = stringList[1];
  1076. int num5 = int.Parse(stringList[2]);
  1077. string text12 = stringList[3];
  1078. string text13 = stringList[4];
  1079. if (!list2.Contains(item))
  1080. {
  1081. }
  1082. }
  1083. else if (stringCom == "マテリアル変更")
  1084. {
  1085. string text14 = stringList[1];
  1086. int num6 = int.Parse(stringList[2]);
  1087. string text15 = stringList[3];
  1088. if (!list2.Contains(text14))
  1089. {
  1090. sw.WriteLine("マテリアル変更");
  1091. sw.WriteLine("\tスロット名\t" + text14);
  1092. TBodySkin slot3 = maid.body0.GetSlot(text14);
  1093. foreach (Transform transform2 in slot3.obj.GetComponentsInChildren<Transform>(true))
  1094. {
  1095. Renderer component2 = transform2.GetComponent<Renderer>();
  1096. if (!(component2 == null) && component2.materials != null)
  1097. {
  1098. Material[] materials2 = component2.materials;
  1099. for (int m = 0; m < materials2.Length; m++)
  1100. {
  1101. Material f_mat2 = materials2[m];
  1102. sw.WriteLine("\t\tマテリアル番号\t" + m);
  1103. Menu.ModMaterial(f_mat2, sw);
  1104. }
  1105. }
  1106. }
  1107. }
  1108. }
  1109. else if (stringCom == "color_set")
  1110. {
  1111. if (stringList.Length >= 3)
  1112. {
  1113. string text16 = stringList[2];
  1114. text16 = "mod_" + Path.GetFileNameWithoutExtension(text16) + ".mod";
  1115. sw.WriteLine("色セット\t" + stringList[1] + "\t" + text16);
  1116. }
  1117. else
  1118. {
  1119. sw.WriteLine("色セット\t" + stringList[1]);
  1120. }
  1121. MPN f_mpn = (MPN)Enum.Parse(typeof(MPN), stringList[1].ToLower());
  1122. maid.ExportModBaseMenu(f_mpn);
  1123. }
  1124. }
  1125. }
  1126. }
  1127. }
  1128. }
  1129. catch (Exception ex)
  1130. {
  1131. Debug.LogError(string.Concat(new string[]
  1132. {
  1133. "Exception ",
  1134. Path.GetFileName(path),
  1135. " 現在処理中だった行 = ",
  1136. text3,
  1137. " 以前の行 = ",
  1138. text4,
  1139. " ",
  1140. ex.Message,
  1141. "StackTrace:\n",
  1142. ex.StackTrace
  1143. }));
  1144. NDebug.Assert("メニューファイル処理中にエラーが発生しました。" + Path.GetFileName(path), false);
  1145. if (binaryReader != null)
  1146. {
  1147. binaryReader.Close();
  1148. binaryReader = null;
  1149. }
  1150. throw ex;
  1151. }
  1152. if (binaryReader != null)
  1153. {
  1154. binaryReader.Close();
  1155. binaryReader = null;
  1156. }
  1157. }
  1158. public static string[] NeedTextureWildCard(string f_strTexName)
  1159. {
  1160. string[] array;
  1161. if (f_strTexName.Contains("*"))
  1162. {
  1163. string strTexName = f_strTexName;
  1164. strTexName = strTexName.Replace("*", ".*");
  1165. if (Menu.m_strAllTexInFileSys == null)
  1166. {
  1167. Menu.m_strAllTexInFileSys = GameUty.FileSystem.GetList(string.Empty, AFileSystemBase.ListType.AllFile);
  1168. }
  1169. array = Array.FindAll<string>(Menu.m_strAllTexInFileSys, (string i) => new Regex(strTexName).IsMatch(i));
  1170. array = Array.FindAll<string>(array, (string i) => new Regex("^((?!_i_).)*$").IsMatch(i));
  1171. IEnumerable<string> source = array;
  1172. if (Menu.<>f__mg$cache0 == null)
  1173. {
  1174. Menu.<>f__mg$cache0 = new Func<string, string>(Path.GetFileName);
  1175. }
  1176. array = source.Select(Menu.<>f__mg$cache0).ToArray<string>();
  1177. string strMatchGroup = strTexName.Replace(".*", "(?<WILD>.*)");
  1178. array = array.Select(delegate(string i)
  1179. {
  1180. Match match = new Regex(strMatchGroup).Match(i);
  1181. if (match.Success)
  1182. {
  1183. return match.Groups["WILD"].Value;
  1184. }
  1185. return i;
  1186. }).ToArray<string>();
  1187. }
  1188. else
  1189. {
  1190. array = new string[]
  1191. {
  1192. Path.GetFileName(f_strTexName)
  1193. };
  1194. }
  1195. return array;
  1196. }
  1197. private static void ModMaterial(Material f_mat, StreamWriter f_sw)
  1198. {
  1199. for (int i = 0; i < Menu.material_properties.GetLength(0); i++)
  1200. {
  1201. if (f_mat.HasProperty(Menu.material_properties[i, 0]))
  1202. {
  1203. if (Menu.material_properties[i, 1] == "tex")
  1204. {
  1205. Texture texture = f_mat.GetTexture(Menu.material_properties[i, 0]);
  1206. f_sw.WriteLine("\t\t\tテクスチャ設定\t" + Menu.material_properties[i, 0] + "\t" + texture.name);
  1207. }
  1208. else if (Menu.material_properties[i, 1] == "col")
  1209. {
  1210. Color color = f_mat.GetColor(Menu.material_properties[i, 0]);
  1211. f_sw.WriteLine(string.Concat(new object[]
  1212. {
  1213. "\t\t\t色設定\t",
  1214. Menu.material_properties[i, 0],
  1215. "\t",
  1216. (int)(255f * color.r),
  1217. "\t",
  1218. (int)(255f * color.g),
  1219. "\t",
  1220. (int)(255f * color.b),
  1221. "\t",
  1222. (int)(255f * color.a)
  1223. }));
  1224. }
  1225. else if (Menu.material_properties[i, 1] == "f")
  1226. {
  1227. float @float = f_mat.GetFloat(Menu.material_properties[i, 0]);
  1228. f_sw.WriteLine(string.Concat(new object[]
  1229. {
  1230. "\t\t\t数値設定\t",
  1231. Menu.material_properties[i, 0],
  1232. "\t",
  1233. @float
  1234. }));
  1235. }
  1236. }
  1237. }
  1238. }
  1239. private static string GetBaseItemFromMod(string f_strModMenu)
  1240. {
  1241. string empty = string.Empty;
  1242. FileStream fileStream = new FileStream(f_strModMenu, FileMode.Open);
  1243. if (fileStream == null)
  1244. {
  1245. return string.Empty;
  1246. }
  1247. BinaryReader binaryReader = new BinaryReader(fileStream);
  1248. string a = binaryReader.ReadString();
  1249. NDebug.Assert(a == "CM3D2_MOD", "セーブデータファイルのヘッダーが不正です。_MOD");
  1250. int num = binaryReader.ReadInt32();
  1251. string text = binaryReader.ReadString();
  1252. string text2 = binaryReader.ReadString();
  1253. text2 = text2.Replace(":", " ");
  1254. string text3 = binaryReader.ReadString();
  1255. string text4 = binaryReader.ReadString();
  1256. string text5 = binaryReader.ReadString();
  1257. binaryReader.Close();
  1258. fileStream.Close();
  1259. fileStream.Dispose();
  1260. return text2;
  1261. }
  1262. private static void ProcModScriptBin(Maid maid, byte[] cd, string filename, bool f_bTemp = false)
  1263. {
  1264. Menu.ProcModScriptBin(maid, cd, filename, null, f_bTemp);
  1265. }
  1266. private static void ProcModScriptBin(Maid maid, byte[] cd, string filename, MaidProp mp, bool f_bTemp = false)
  1267. {
  1268. if (mp != null && maid.body0 != null && (mp.idx == 61 || mp.idx == 64 || mp.idx == 65 || mp.idx == 66))
  1269. {
  1270. TBodySkin slot = maid.body0.GetSlot(1);
  1271. if (slot.PartsVersion < 110)
  1272. {
  1273. return;
  1274. }
  1275. }
  1276. BinaryReader binaryReader = new BinaryReader(new MemoryStream(cd), Encoding.UTF8);
  1277. string text = binaryReader.ReadString();
  1278. NDebug.Assert(text == "CM3D2_MOD", "ProcModScriptBin 例外 : ヘッダーファイルが不正です。" + text);
  1279. int num = binaryReader.ReadInt32();
  1280. string text2 = binaryReader.ReadString();
  1281. string text3 = binaryReader.ReadString();
  1282. string text4 = binaryReader.ReadString();
  1283. string text5 = binaryReader.ReadString();
  1284. string text6 = binaryReader.ReadString();
  1285. string text7 = binaryReader.ReadString();
  1286. MPN mpn = MPN.null_mpn;
  1287. try
  1288. {
  1289. mpn = (MPN)Enum.Parse(typeof(MPN), text7);
  1290. }
  1291. catch
  1292. {
  1293. NDebug.Assert("カテゴリがありません。" + text7, false);
  1294. }
  1295. string text8 = string.Empty;
  1296. if (mpn != MPN.null_mpn)
  1297. {
  1298. text8 = binaryReader.ReadString();
  1299. }
  1300. string s = binaryReader.ReadString();
  1301. int num2 = binaryReader.ReadInt32();
  1302. Dictionary<string, byte[]> dictionary = new Dictionary<string, byte[]>();
  1303. for (int i = 0; i < num2; i++)
  1304. {
  1305. string key = binaryReader.ReadString();
  1306. int count = binaryReader.ReadInt32();
  1307. byte[] value = binaryReader.ReadBytes(count);
  1308. dictionary.Add(key, value);
  1309. }
  1310. binaryReader.Close();
  1311. binaryReader = null;
  1312. using (StringReader stringReader = new StringReader(s))
  1313. {
  1314. Menu.IMode mode = Menu.IMode.Non;
  1315. string slotname = string.Empty;
  1316. TBodySkin tbodySkin = null;
  1317. Material material = null;
  1318. int num3 = 0;
  1319. string text9;
  1320. while ((text9 = stringReader.ReadLine()) != null)
  1321. {
  1322. string[] array = text9.Split(new char[]
  1323. {
  1324. '\t',
  1325. ' '
  1326. }, StringSplitOptions.RemoveEmptyEntries);
  1327. if (array[0] == "アイテム変更" || array[0] == "マテリアル変更")
  1328. {
  1329. mode = Menu.IMode.ItemChange;
  1330. }
  1331. else if (array[0] == "テクスチャ変更")
  1332. {
  1333. mode = Menu.IMode.TexChange;
  1334. }
  1335. if (mode == Menu.IMode.ItemChange)
  1336. {
  1337. if (array[0] == "スロット名")
  1338. {
  1339. slotname = array[1];
  1340. tbodySkin = maid.body0.GetSlot(slotname);
  1341. }
  1342. if (tbodySkin != null)
  1343. {
  1344. if (array[0] == "マテリアル番号")
  1345. {
  1346. num3 = int.Parse(array[1]);
  1347. foreach (Transform transform in tbodySkin.obj.GetComponentsInChildren<Transform>(true))
  1348. {
  1349. Renderer component = transform.GetComponent<Renderer>();
  1350. if (!(component == null) && component.materials != null)
  1351. {
  1352. Material[] materials = component.materials;
  1353. for (int k = 0; k < materials.Length; k++)
  1354. {
  1355. if (k == num3)
  1356. {
  1357. material = materials[k];
  1358. break;
  1359. }
  1360. }
  1361. }
  1362. }
  1363. }
  1364. if (material != null)
  1365. {
  1366. if (array[0] == "テクスチャ設定")
  1367. {
  1368. maid.body0.ChangeTex(slotname, num3, array[1], array[2].ToLower(), dictionary, MaidParts.PARTS_COLOR.NONE);
  1369. }
  1370. else if (array[0] == "色設定")
  1371. {
  1372. material.SetColor(array[1], new Color(float.Parse(array[2]) / 255f, float.Parse(array[3]) / 255f, float.Parse(array[4]) / 255f, float.Parse(array[5]) / 255f));
  1373. }
  1374. else if (array[0] == "数値設定")
  1375. {
  1376. material.SetFloat(array[1], float.Parse(array[2]));
  1377. }
  1378. }
  1379. }
  1380. }
  1381. else if (mode == Menu.IMode.TexChange)
  1382. {
  1383. MaidParts.PARTS_COLOR parts_COLOR = MaidParts.PARTS_COLOR.NONE;
  1384. if (array.Length == 6)
  1385. {
  1386. string text10 = array[5];
  1387. try
  1388. {
  1389. parts_COLOR = (MaidParts.PARTS_COLOR)Enum.Parse(typeof(MaidParts.PARTS_COLOR), text10.ToUpper());
  1390. }
  1391. catch
  1392. {
  1393. NDebug.Assert("無限色IDがありません。" + text10, false);
  1394. }
  1395. }
  1396. int matno = int.Parse(array[2]);
  1397. if (mp != null && mp.idx == 61)
  1398. {
  1399. matno = 7;
  1400. }
  1401. maid.body0.ChangeTex(array[1], matno, array[3], array[4].ToLower(), dictionary, parts_COLOR);
  1402. if (parts_COLOR != MaidParts.PARTS_COLOR.NONE)
  1403. {
  1404. maid.Parts.SetPartsColor(parts_COLOR, maid.Parts.GetPartsColor(parts_COLOR));
  1405. }
  1406. }
  1407. }
  1408. }
  1409. }
  1410. // Note: this type is marked as 'beforefieldinit'.
  1411. static Menu()
  1412. {
  1413. string[,] array = new string[31, 2];
  1414. array[0, 0] = "_MainTex";
  1415. array[0, 1] = "tex";
  1416. array[1, 0] = "_BumpMap";
  1417. array[1, 1] = "tex";
  1418. array[2, 0] = "_ToonRamp";
  1419. array[2, 1] = "tex";
  1420. array[3, 0] = "_ShadowTex";
  1421. array[3, 1] = "tex";
  1422. array[4, 0] = "_ShadowRateToon";
  1423. array[4, 1] = "tex";
  1424. array[5, 0] = "_SpecularTex";
  1425. array[5, 1] = "tex";
  1426. array[6, 0] = "_AnisoTex";
  1427. array[6, 1] = "tex";
  1428. array[7, 0] = "_RenderTex";
  1429. array[7, 1] = "tex";
  1430. array[8, 0] = "_HiTex";
  1431. array[8, 1] = "tex";
  1432. array[9, 0] = "_OutlineTex";
  1433. array[9, 1] = "tex";
  1434. array[10, 0] = "_OutlineToonRamp";
  1435. array[10, 1] = "tex";
  1436. array[11, 0] = "_Color";
  1437. array[11, 1] = "col";
  1438. array[12, 0] = "_ShadowColor";
  1439. array[12, 1] = "col";
  1440. array[13, 0] = "_RimColor";
  1441. array[13, 1] = "col";
  1442. array[14, 0] = "_SpecColor";
  1443. array[14, 1] = "col";
  1444. array[15, 0] = "_Emission";
  1445. array[15, 1] = "col";
  1446. array[16, 0] = "_ReflectColor";
  1447. array[16, 1] = "col";
  1448. array[17, 0] = "_OutlineColor";
  1449. array[17, 1] = "col";
  1450. array[18, 0] = "_MyLightColor0";
  1451. array[18, 1] = "col";
  1452. array[19, 0] = "_MyLightColor1";
  1453. array[19, 1] = "col";
  1454. array[20, 0] = "_TintColor";
  1455. array[20, 1] = "col";
  1456. array[21, 0] = "_ShadowColor";
  1457. array[21, 1] = "col";
  1458. array[22, 0] = "_Shininess";
  1459. array[22, 1] = "f";
  1460. array[23, 0] = "_FurLength";
  1461. array[23, 1] = "f";
  1462. array[24, 0] = "_OutlineWidth";
  1463. array[24, 1] = "f";
  1464. array[25, 0] = "_Cutoff";
  1465. array[25, 1] = "f";
  1466. array[26, 0] = "_AnisoOffset";
  1467. array[26, 1] = "f";
  1468. array[27, 0] = "_RimPower";
  1469. array[27, 1] = "f";
  1470. array[28, 0] = "_RimShift";
  1471. array[28, 1] = "f";
  1472. array[29, 0] = "_HiRate";
  1473. array[29, 1] = "f";
  1474. array[30, 0] = "_HiPow";
  1475. array[30, 1] = "f";
  1476. Menu.material_properties = array;
  1477. }
  1478. public static SortedDictionary<int, SortedDictionary<string, string>> m_dicResourceRef = new SortedDictionary<int, SortedDictionary<string, string>>();
  1479. private static string[] m_strAllTexInFileSys = null;
  1480. private static string[,] material_properties;
  1481. [CompilerGenerated]
  1482. private static Func<string, string> <>f__mg$cache0;
  1483. private class LastParam
  1484. {
  1485. public LastParam(int f_nOrder, string f_strComm, params string[] f_argArgs)
  1486. {
  1487. this.nOrder = f_nOrder;
  1488. this.strComm = f_strComm;
  1489. this.aryArgs = new string[f_argArgs.Length];
  1490. f_argArgs.CopyTo(this.aryArgs, 0);
  1491. }
  1492. public int nOrder;
  1493. public string strComm = string.Empty;
  1494. public string[] aryArgs;
  1495. }
  1496. private enum IMode
  1497. {
  1498. Non,
  1499. ItemChange,
  1500. TexChange
  1501. }
  1502. }