Maid.cs 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.IO;
  5. using System.Linq;
  6. using MaidStatus;
  7. using UnityEngine;
  8. using XVI.AniLipSync;
  9. public class Maid : MonoBehaviour
  10. {
  11. public bool Visible
  12. {
  13. get
  14. {
  15. return this.m_visible;
  16. }
  17. set
  18. {
  19. GameObject gameObject = base.gameObject;
  20. this.m_visible = value;
  21. gameObject.SetActive(value);
  22. }
  23. }
  24. public MaidParts Parts
  25. {
  26. get
  27. {
  28. return this.m_Parts;
  29. }
  30. }
  31. public Status status
  32. {
  33. get
  34. {
  35. return this.m_Status;
  36. }
  37. }
  38. public AudioSourceMgr AudioMan
  39. {
  40. get
  41. {
  42. return (!(this.body0 != null)) ? null : this.body0.AudioMan;
  43. }
  44. }
  45. public bool IsBusy
  46. {
  47. get
  48. {
  49. return this.IsAllProcPropBusy && this.Visible;
  50. }
  51. }
  52. public bool IsAllProcPropBusy
  53. {
  54. get
  55. {
  56. return this.boAllProcPropBUSY;
  57. }
  58. }
  59. public FullBodyIKCtrl IKCtrl
  60. {
  61. get
  62. {
  63. return this.body0.IKCtrl;
  64. }
  65. }
  66. public int ActiveSlotNo
  67. {
  68. get
  69. {
  70. return this.m_nActiveSlotNo;
  71. }
  72. set
  73. {
  74. this.m_nActiveSlotNo = value;
  75. }
  76. }
  77. public Color ManColor
  78. {
  79. get
  80. {
  81. return this.m_colMan;
  82. }
  83. set
  84. {
  85. this.m_colMan = value;
  86. }
  87. }
  88. public int VoicePitch
  89. {
  90. get
  91. {
  92. return this.m_nVoicePitch;
  93. }
  94. set
  95. {
  96. if (this.body0 != null)
  97. {
  98. TBody tbody = this.body0;
  99. this.m_nVoicePitch = value;
  100. tbody.SetVoicePitch(value);
  101. }
  102. }
  103. }
  104. public static void UpdateMaidRanking()
  105. {
  106. if (!GameMain.Instance.CharacterMgr.status.isAvailableRanking)
  107. {
  108. Debug.Log("メイドランキングは未開放なので更新されませんでした");
  109. return;
  110. }
  111. List<KeyValuePair<long, Maid>> list = new List<KeyValuePair<long, Maid>>();
  112. CharacterMgr characterMgr = GameMain.Instance.CharacterMgr;
  113. for (int i = 0; i < characterMgr.GetStockMaidCount(); i++)
  114. {
  115. Maid stockMaid = characterMgr.GetStockMaid(i);
  116. if (!(stockMaid == null))
  117. {
  118. stockMaid.status.popularRank = 0;
  119. long key = (long)stockMaid.status.evaluation + stockMaid.status.sales;
  120. list.Add(new KeyValuePair<long, Maid>(key, stockMaid));
  121. }
  122. }
  123. list.Sort(delegate(KeyValuePair<long, Maid> a, KeyValuePair<long, Maid> b)
  124. {
  125. long num3 = b.Key - a.Key;
  126. return (num3 != 0L) ? ((0L >= num3) ? -1 : 1) : 0;
  127. });
  128. long num = -1L;
  129. int num2 = 0;
  130. foreach (KeyValuePair<long, Maid> keyValuePair in list)
  131. {
  132. if (keyValuePair.Key == 0L)
  133. {
  134. break;
  135. }
  136. if (keyValuePair.Key != num)
  137. {
  138. num2++;
  139. }
  140. keyValuePair.Value.status.popularRank = num2;
  141. num = keyValuePair.Key;
  142. }
  143. }
  144. private void Awake()
  145. {
  146. }
  147. public void OnMouseUp()
  148. {
  149. if (this.IsBusy || this.body0 == null || this.onMouseUpEvent == null)
  150. {
  151. return;
  152. }
  153. this.onMouseUpEvent(this);
  154. }
  155. public void Initialize(string f_strTypeName, bool f_bMan)
  156. {
  157. this.m_Parts = base.gameObject.AddComponent<MaidParts>();
  158. this.m_goOffset = new GameObject("Offset");
  159. this.m_goOffset.transform.parent = base.gameObject.transform;
  160. this.TypeName = f_strTypeName;
  161. this.boMAN = f_bMan;
  162. this.boOffsetY = true;
  163. this.body0 = base.gameObject.AddComponent<TBody>();
  164. this.body0.Init(this, f_bMan);
  165. int length = Enum.GetValues(typeof(MPN)).Length;
  166. this.m_aryMaidProp = new MaidProp[length];
  167. List<MaidProp> list = Maid.CreateInitMaidPropList();
  168. foreach (MaidProp mp in list)
  169. {
  170. this.AddProp(mp);
  171. }
  172. this.InitializeStatus();
  173. this.m_Parts.Initialize(base.gameObject, this);
  174. this.DelPrefabAll();
  175. if (this.boMAN)
  176. {
  177. this.SetUpModel("_I_man.menu");
  178. }
  179. else
  180. {
  181. this.SetUpModel("_I_default.menu");
  182. }
  183. }
  184. public void InitializeStatus()
  185. {
  186. if (this.m_Status == null)
  187. {
  188. this.m_Status = new Status();
  189. this.m_Status.Initialize(this);
  190. }
  191. }
  192. public static List<MaidProp> CreateInitMaidPropList()
  193. {
  194. return new List<MaidProp>
  195. {
  196. Maid.CreateProp(0, int.MaxValue, 0, MPN.null_mpn, 0),
  197. Maid.CreateProp(0, 130, 10, MPN.MuneL, 1),
  198. Maid.CreateProp(0, 100, 0, MPN.MuneS, 1),
  199. Maid.CreateProp(0, 130, 10, MPN.MuneTare, 1),
  200. Maid.CreateProp(0, 100, 40, MPN.RegFat, 1),
  201. Maid.CreateProp(0, 100, 20, MPN.ArmL, 1),
  202. Maid.CreateProp(0, 100, 20, MPN.Hara, 1),
  203. Maid.CreateProp(0, 100, 40, MPN.RegMeet, 1),
  204. Maid.CreateProp(20, 80, 50, MPN.KubiScl, 2),
  205. Maid.CreateProp(0, 100, 50, MPN.UdeScl, 2),
  206. Maid.CreateProp(0, 100, 50, MPN.EyeScl, 2),
  207. Maid.CreateProp(0, 100, 50, MPN.EyeSclX, 2),
  208. Maid.CreateProp(0, 100, 50, MPN.EyeSclY, 2),
  209. Maid.CreateProp(0, 100, 50, MPN.EyePosX, 2),
  210. Maid.CreateProp(0, 100, 50, MPN.EyePosY, 2),
  211. Maid.CreateProp(0, 100, 0, MPN.EyeClose, 2),
  212. Maid.CreateProp(0, 100, 50, MPN.EyeBallPosX, 2),
  213. Maid.CreateProp(0, 100, 50, MPN.EyeBallPosY, 2),
  214. Maid.CreateProp(0, 100, 50, MPN.EyeBallSclX, 2),
  215. Maid.CreateProp(0, 100, 50, MPN.EyeBallSclY, 2),
  216. Maid.CreateProp(0, 100, 0, MPN.FaceShape, 2),
  217. Maid.CreateProp(0, 100, 50, MPN.MayuX, 2),
  218. Maid.CreateProp(0, 100, 50, MPN.MayuY, 2),
  219. Maid.CreateProp(0, 100, 50, MPN.HeadX, 2),
  220. Maid.CreateProp(0, 100, 50, MPN.HeadY, 2),
  221. Maid.CreateProp(20, 80, 50, MPN.DouPer, 2),
  222. Maid.CreateProp(20, 80, 50, MPN.sintyou, 2),
  223. Maid.CreateProp(0, 100, 50, MPN.koshi, 2),
  224. Maid.CreateProp(0, 100, 50, MPN.kata, 2),
  225. Maid.CreateProp(0, 100, 50, MPN.west, 2),
  226. Maid.CreateProp(0, 100, 10, MPN.MuneUpDown, 2),
  227. Maid.CreateProp(0, 100, 40, MPN.MuneYori, 2),
  228. Maid.CreateProp(0, 100, 50, MPN.MuneYawaraka, 2),
  229. Maid.CreateProp(string.Empty, MPN.body, 3),
  230. Maid.CreateProp(string.Empty, MPN.head, 3),
  231. Maid.CreateProp(string.Empty, MPN.hairf, 3),
  232. Maid.CreateProp(string.Empty, MPN.hairr, 3),
  233. Maid.CreateProp(string.Empty, MPN.hairt, 3),
  234. Maid.CreateProp(string.Empty, MPN.hairs, 3),
  235. Maid.CreateProp(string.Empty, MPN.wear, 3),
  236. Maid.CreateProp(string.Empty, MPN.skirt, 3),
  237. Maid.CreateProp(string.Empty, MPN.mizugi, 3),
  238. Maid.CreateProp(string.Empty, MPN.bra, 3),
  239. Maid.CreateProp(string.Empty, MPN.panz, 3),
  240. Maid.CreateProp(string.Empty, MPN.stkg, 3),
  241. Maid.CreateProp(string.Empty, MPN.shoes, 3),
  242. Maid.CreateProp(string.Empty, MPN.headset, 3),
  243. Maid.CreateProp(string.Empty, MPN.glove, 3),
  244. Maid.CreateProp(string.Empty, MPN.acchead, 3),
  245. Maid.CreateProp(string.Empty, MPN.hairaho, 3),
  246. Maid.CreateProp(string.Empty, MPN.accha, 3),
  247. Maid.CreateProp(string.Empty, MPN.acchana, 3),
  248. Maid.CreateProp(string.Empty, MPN.acckamisub, 3),
  249. Maid.CreateProp(string.Empty, MPN.acckami, 3),
  250. Maid.CreateProp(string.Empty, MPN.accmimi, 3),
  251. Maid.CreateProp(string.Empty, MPN.accnip, 3),
  252. Maid.CreateProp(string.Empty, MPN.acckubi, 3),
  253. Maid.CreateProp(string.Empty, MPN.acckubiwa, 3),
  254. Maid.CreateProp(string.Empty, MPN.accheso, 3),
  255. Maid.CreateProp(string.Empty, MPN.accude, 3),
  256. Maid.CreateProp(string.Empty, MPN.accashi, 3),
  257. Maid.CreateProp(string.Empty, MPN.accsenaka, 3),
  258. Maid.CreateProp(string.Empty, MPN.accshippo, 3),
  259. Maid.CreateProp(string.Empty, MPN.accanl, 3),
  260. Maid.CreateProp(string.Empty, MPN.accvag, 3),
  261. Maid.CreateProp(string.Empty, MPN.megane, 3),
  262. Maid.CreateProp(string.Empty, MPN.accxxx, 3),
  263. Maid.CreateProp(string.Empty, MPN.handitem, 3),
  264. Maid.CreateProp(string.Empty, MPN.acchat, 3),
  265. Maid.CreateProp(string.Empty, MPN.haircolor, 3),
  266. Maid.CreateProp(string.Empty, MPN.skin, 3),
  267. Maid.CreateProp(string.Empty, MPN.acctatoo, 3),
  268. Maid.CreateProp(string.Empty, MPN.accnail, 3),
  269. Maid.CreateProp(string.Empty, MPN.underhair, 3),
  270. Maid.CreateProp(string.Empty, MPN.hokuro, 3),
  271. Maid.CreateProp(string.Empty, MPN.mayu, 3),
  272. Maid.CreateProp(string.Empty, MPN.lip, 3),
  273. Maid.CreateProp(string.Empty, MPN.eye, 3),
  274. Maid.CreateProp(string.Empty, MPN.eye_hi, 3),
  275. Maid.CreateProp(string.Empty, MPN.chikubi, 3),
  276. Maid.CreateProp(string.Empty, MPN.chikubicolor, 3),
  277. Maid.CreateProp(string.Empty, MPN.moza, 3),
  278. Maid.CreateProp(string.Empty, MPN.onepiece, 3),
  279. Maid.CreateProp(string.Empty, MPN.set_maidwear, 3),
  280. Maid.CreateProp(string.Empty, MPN.set_mywear, 3),
  281. Maid.CreateProp(string.Empty, MPN.set_underwear, 3),
  282. Maid.CreateProp(string.Empty, MPN.set_body, 3),
  283. Maid.CreateProp(string.Empty, MPN.folder_eye, 3),
  284. Maid.CreateProp(string.Empty, MPN.folder_mayu, 3),
  285. Maid.CreateProp(string.Empty, MPN.folder_underhair, 3),
  286. Maid.CreateProp(string.Empty, MPN.folder_skin, 3),
  287. Maid.CreateProp(string.Empty, MPN.kousoku_upper, 3),
  288. Maid.CreateProp(string.Empty, MPN.kousoku_lower, 3),
  289. Maid.CreateProp(string.Empty, MPN.seieki_naka, 3),
  290. Maid.CreateProp(string.Empty, MPN.seieki_hara, 3),
  291. Maid.CreateProp(string.Empty, MPN.seieki_face, 3),
  292. Maid.CreateProp(string.Empty, MPN.seieki_mune, 3),
  293. Maid.CreateProp(string.Empty, MPN.seieki_hip, 3),
  294. Maid.CreateProp(string.Empty, MPN.seieki_ude, 3),
  295. Maid.CreateProp(string.Empty, MPN.seieki_ashi, 3)
  296. };
  297. }
  298. public void Uninit()
  299. {
  300. this.Visible = false;
  301. this.boOffsetY = true;
  302. this.DelPrefabAll();
  303. Debug.Log("Uninit " + this.status.firstName);
  304. this.body0.UnInit();
  305. }
  306. private void OnDestroy()
  307. {
  308. this.DelPrefabAll();
  309. this.Uninit();
  310. }
  311. public void ManColorUpdate()
  312. {
  313. if (this.body0 != null)
  314. {
  315. this.body0.ManColorUpdate();
  316. }
  317. }
  318. public void ClearPropValueDefault()
  319. {
  320. foreach (MaidProp maidProp in this.m_aryMaidProp)
  321. {
  322. if (!(maidProp.name == "body"))
  323. {
  324. maidProp.temp_value = (maidProp.value = maidProp.value_Default);
  325. }
  326. }
  327. }
  328. public MaidProp GetProp(string tag)
  329. {
  330. return this.m_dicMaidProp[tag];
  331. }
  332. public MaidProp GetPropLower(string tagLower)
  333. {
  334. return (MaidProp)this.m_hashMaidPropLower[tagLower];
  335. }
  336. public MaidProp GetProp(MPN mpn)
  337. {
  338. return this.m_aryMaidProp[(int)mpn];
  339. }
  340. public static MaidProp CreateProp(string f_strDefFileName, MPN mpn, int type)
  341. {
  342. NDebug.Assert(type == 3, "プロパティオブジェクトのタイプが不正です。");
  343. MaidProp maidProp = new MaidProp();
  344. maidProp.name = mpn.ToString();
  345. maidProp.type = type;
  346. maidProp.listSubProp = null;
  347. maidProp.strFileName = f_strDefFileName;
  348. if (string.IsNullOrEmpty(maidProp.strFileName))
  349. {
  350. string strFileName = maidProp.strFileName;
  351. if (CM3.dicDelItem.TryGetValue(mpn, out strFileName))
  352. {
  353. maidProp.strFileName = strFileName;
  354. }
  355. }
  356. maidProp.nFileNameRID = maidProp.strFileName.ToLower().GetHashCode();
  357. maidProp.boDut = true;
  358. maidProp.boTempDut = false;
  359. maidProp.idx = (int)mpn;
  360. return maidProp;
  361. }
  362. public static MaidProp CreateProp(int minval, int maxval, int defval, MPN mpn, int type)
  363. {
  364. NDebug.Assert(type == 0 || type == 1 || type == 2, "プロパティオブジェクトのタイプが不正です。");
  365. MaidProp maidProp = new MaidProp();
  366. maidProp.name = mpn.ToString();
  367. maidProp.type = type;
  368. maidProp.min = minval;
  369. maidProp.max = maxval;
  370. if (defval < minval)
  371. {
  372. defval = minval;
  373. }
  374. if (defval > maxval)
  375. {
  376. defval = maxval;
  377. }
  378. maidProp.value_Default = defval;
  379. maidProp.listSubProp = null;
  380. maidProp.strFileName = string.Empty;
  381. maidProp.temp_value = (maidProp.value = defval);
  382. maidProp.idx = (int)mpn;
  383. maidProp.boDut = true;
  384. maidProp.boTempDut = false;
  385. return maidProp;
  386. }
  387. private void AddProp(MaidProp mp)
  388. {
  389. MPN idx = (MPN)mp.idx;
  390. this.m_dicMaidProp[idx.ToString()] = mp;
  391. this.m_aryMaidProp[(int)idx] = mp;
  392. this.m_hashMaidPropLower[idx.ToString().ToLower()] = mp;
  393. }
  394. private void AddProp(string f_strDefFileName, MPN mpn, int type)
  395. {
  396. this.AddProp(Maid.CreateProp(f_strDefFileName, mpn, type));
  397. }
  398. private void AddProp(int minval, int maxval, int defval, MPN mpn, int type)
  399. {
  400. this.AddProp(Maid.CreateProp(minval, maxval, defval, mpn, type));
  401. }
  402. public void Prop_AddValue(string tag, int val)
  403. {
  404. NDebug.Assert(this.m_dicMaidProp.ContainsKey(tag), "指定されたプロパティ名がありません。");
  405. this.Prop_AddValue(this.m_dicMaidProp[tag].idx, val);
  406. }
  407. public void Prop_AddValue(int idx, int val)
  408. {
  409. val += this.m_aryMaidProp[idx].value;
  410. if (this.m_aryMaidProp[idx].min > val)
  411. {
  412. val = this.m_aryMaidProp[idx].min;
  413. }
  414. if (this.m_aryMaidProp[idx].max < val)
  415. {
  416. val = this.m_aryMaidProp[idx].max;
  417. }
  418. if (this.m_aryMaidProp[idx].value_LinkMAX != 0 && this.m_aryMaidProp[this.m_aryMaidProp[idx].value_LinkMAX].value < val)
  419. {
  420. val = this.m_aryMaidProp[this.m_aryMaidProp[idx].value_LinkMAX].value;
  421. }
  422. if (this.m_aryMaidProp[idx].value != val)
  423. {
  424. this.m_aryMaidProp[idx].value = val;
  425. }
  426. this.m_aryMaidProp[idx].boDut = true;
  427. this.m_aryMaidProp[idx].boTempDut = false;
  428. }
  429. public void SetProp(string tag, int val, bool f_bTemp = false)
  430. {
  431. MPN idx = MPN.null_mpn;
  432. try
  433. {
  434. idx = (MPN)Enum.Parse(typeof(MPN), tag);
  435. }
  436. catch
  437. {
  438. NDebug.Assert("指定されたプロパティ名がありません。" + tag, false);
  439. }
  440. this.SetProp(idx, val, f_bTemp);
  441. }
  442. public void SetProp(MPN idx, int val, bool f_bTemp = false)
  443. {
  444. NDebug.Assert(idx != MPN.null_mpn, "指定されたプロパティ名がありません。" + base.tag);
  445. MaidProp maidProp = this.m_aryMaidProp[(int)idx];
  446. if (maidProp.min > val)
  447. {
  448. val = maidProp.min;
  449. }
  450. if (maidProp.max < val)
  451. {
  452. val = maidProp.max;
  453. }
  454. if (f_bTemp)
  455. {
  456. maidProp.temp_value = val;
  457. maidProp.boTempDut = true;
  458. }
  459. else
  460. {
  461. maidProp.value = val;
  462. maidProp.boDut = true;
  463. maidProp.boTempDut = false;
  464. }
  465. }
  466. public void SetProp(string tag, string filename, int f_nFileNameRID, bool f_bTemp = false, bool f_bNoScale = false)
  467. {
  468. NDebug.Assert(this.m_dicMaidProp.ContainsKey(tag), "指定されたプロパティ名がありません。" + tag);
  469. MaidProp mp = this.m_dicMaidProp[tag];
  470. this.SetProp(mp, filename, f_nFileNameRID, f_bTemp, f_bNoScale);
  471. }
  472. public void SetProp(MPN idx, string filename, int f_nFileNameRID, bool f_bTemp = false, bool f_bNoScale = false)
  473. {
  474. MaidProp mp = this.m_aryMaidProp[(int)idx];
  475. this.SetProp(mp, filename, f_nFileNameRID, f_bTemp, f_bNoScale);
  476. }
  477. public void SetProp(MaidProp mps)
  478. {
  479. bool flag = false;
  480. bool flag2 = false;
  481. bool flag3 = false;
  482. MaidProp prop = this.GetProp((MPN)mps.idx);
  483. bool flag4 = prop.m_dicTBodySkinPos.Count != 0;
  484. flag = (prop.m_dicTBodyAttachPos.Count != 0);
  485. flag2 = (prop.m_dicMaterialProp.Count != 0);
  486. flag3 = (prop.m_dicBoneLength.Count != 0);
  487. if (mps.idx != 33)
  488. {
  489. this.SetProp((MPN)mps.idx, mps.strFileName, mps.nFileNameRID, false, false);
  490. }
  491. if (flag4 || mps.m_dicTBodySkinPos.Count != 0)
  492. {
  493. MaidProp prop2 = this.GetProp((MPN)mps.idx);
  494. prop2.m_dicTBodySkinPos.Clear();
  495. foreach (KeyValuePair<TBody.SlotID, KeyValuePair<int, BoneAttachPos>> keyValuePair in mps.m_dicTBodySkinPos)
  496. {
  497. prop2.m_dicTBodySkinPos[keyValuePair.Key] = new KeyValuePair<int, BoneAttachPos>(keyValuePair.Value.Key, new BoneAttachPos(keyValuePair.Value.Value));
  498. }
  499. if (mps.idx != 33)
  500. {
  501. prop2.boDut = true;
  502. }
  503. prop2.boAdjustDut = true;
  504. }
  505. if (flag || mps.m_dicTBodyAttachPos.Count != 0)
  506. {
  507. MaidProp prop3 = this.GetProp((MPN)mps.idx);
  508. prop3.m_dicTBodyAttachPos.Clear();
  509. foreach (KeyValuePair<TBody.SlotID, Dictionary<string, KeyValuePair<int, VtxAttachPos>>> keyValuePair2 in mps.m_dicTBodyAttachPos)
  510. {
  511. Dictionary<string, KeyValuePair<int, VtxAttachPos>> dictionary = new Dictionary<string, KeyValuePair<int, VtxAttachPos>>();
  512. foreach (KeyValuePair<string, KeyValuePair<int, VtxAttachPos>> keyValuePair3 in keyValuePair2.Value)
  513. {
  514. dictionary[keyValuePair3.Key] = new KeyValuePair<int, VtxAttachPos>(keyValuePair3.Value.Key, new VtxAttachPos(keyValuePair3.Value.Value));
  515. }
  516. prop3.m_dicTBodyAttachPos[keyValuePair2.Key] = dictionary;
  517. }
  518. if (mps.idx != 33)
  519. {
  520. prop3.boDut = true;
  521. }
  522. prop3.boAdjustDut = true;
  523. }
  524. if (flag2 || mps.m_dicMaterialProp.Count != 0)
  525. {
  526. MaidProp prop4 = this.GetProp((MPN)mps.idx);
  527. prop4.m_dicMaterialProp.Clear();
  528. foreach (KeyValuePair<TBody.SlotID, KeyValuePair<int, MatPropSave>> keyValuePair4 in mps.m_dicMaterialProp)
  529. {
  530. prop4.m_dicMaterialProp[keyValuePair4.Key] = new KeyValuePair<int, MatPropSave>(keyValuePair4.Value.Key, new MatPropSave(keyValuePair4.Value.Value));
  531. }
  532. if (mps.idx != 33)
  533. {
  534. prop4.boDut = true;
  535. }
  536. prop4.boAdjustDut = true;
  537. }
  538. if (flag3 || mps.m_dicBoneLength.Count != 0)
  539. {
  540. MaidProp prop5 = this.GetProp((MPN)mps.idx);
  541. prop5.m_dicBoneLength.Clear();
  542. foreach (KeyValuePair<TBody.SlotID, KeyValuePair<int, Dictionary<string, float>>> keyValuePair5 in mps.m_dicBoneLength)
  543. {
  544. Dictionary<string, float> dictionary2 = new Dictionary<string, float>();
  545. foreach (KeyValuePair<string, float> keyValuePair6 in keyValuePair5.Value.Value)
  546. {
  547. dictionary2[keyValuePair6.Key] = keyValuePair6.Value;
  548. }
  549. prop5.m_dicBoneLength[keyValuePair5.Key] = new KeyValuePair<int, Dictionary<string, float>>(keyValuePair5.Value.Key, dictionary2);
  550. }
  551. if (mps.idx != 33)
  552. {
  553. prop5.boDut = true;
  554. }
  555. prop5.boAdjustDut = true;
  556. }
  557. }
  558. private void SetProp(MaidProp mp, string filename, int f_nFileNameRID, bool f_bTemp, bool f_bNoScale = false)
  559. {
  560. if (f_bTemp)
  561. {
  562. if (filename != mp.strTempFileName)
  563. {
  564. mp.boTempDut = true;
  565. mp.strTempFileName = filename;
  566. mp.bNoScale = f_bNoScale;
  567. if (f_nFileNameRID == 0)
  568. {
  569. mp.nTempFileNameRID = filename.ToLower().GetHashCode();
  570. }
  571. else
  572. {
  573. mp.nTempFileNameRID = f_nFileNameRID;
  574. }
  575. }
  576. }
  577. else
  578. {
  579. if (mp.strFileName != filename || mp.bSubDut || (83 <= mp.idx && mp.idx <= 86))
  580. {
  581. mp.boDut = true;
  582. }
  583. mp.strFileName = filename;
  584. mp.bNoScale = f_bNoScale;
  585. if (f_nFileNameRID == 0)
  586. {
  587. mp.nFileNameRID = filename.ToLower().GetHashCode();
  588. }
  589. else
  590. {
  591. mp.nFileNameRID = f_nFileNameRID;
  592. }
  593. mp.strTempFileName = string.Empty;
  594. mp.nTempFileNameRID = 0;
  595. if (mp.listSubProp != null)
  596. {
  597. mp.listSubProp.Clear();
  598. }
  599. mp.bSubDut = false;
  600. mp.m_dicTBodySkinPos.Clear();
  601. mp.m_dicTBodyAttachPos.Clear();
  602. mp.m_dicMaterialProp.Clear();
  603. mp.m_dicBoneLength.Clear();
  604. }
  605. if (mp.boTempDut && mp.boDut)
  606. {
  607. string[] array = new string[6];
  608. array[0] = "SetProp:本元とTempのどうちらにも更新フラグが付いています。";
  609. int num = 1;
  610. MPN idx = (MPN)mp.idx;
  611. array[num] = idx.ToString();
  612. array[2] = " 元=";
  613. array[3] = mp.strFileName;
  614. array[4] = " Temp=";
  615. array[5] = mp.strTempFileName;
  616. Debug.LogWarning(string.Concat(array));
  617. }
  618. }
  619. public bool DelProp(MPN idx, bool f_bTemp = false)
  620. {
  621. string empty = string.Empty;
  622. if (CM3.dicDelItem.TryGetValue(idx, out empty))
  623. {
  624. this.SetProp(idx, empty, 0, f_bTemp, false);
  625. return true;
  626. }
  627. return false;
  628. }
  629. public void SetSubProp(MPN idx, int subno, string filename, int f_nFileNameRID = 0)
  630. {
  631. MaidProp maidProp = this.m_aryMaidProp[(int)idx];
  632. if (maidProp.listSubProp == null)
  633. {
  634. maidProp.listSubProp = new List<SubProp>();
  635. }
  636. if (maidProp.listSubProp.Count<SubProp>() < subno + 1)
  637. {
  638. int num = maidProp.listSubProp.Count<SubProp>();
  639. for (int i = num; i < subno + 1; i++)
  640. {
  641. maidProp.listSubProp.Add(null);
  642. }
  643. }
  644. SubProp subProp = maidProp.listSubProp[subno];
  645. if (subProp == null)
  646. {
  647. SubProp subProp2 = new SubProp();
  648. maidProp.listSubProp[subno] = subProp2;
  649. subProp = subProp2;
  650. }
  651. subProp.bDut = true;
  652. subProp.strFileName = filename;
  653. if (f_nFileNameRID == 0)
  654. {
  655. subProp.nFileNameRID = filename.ToLower().GetHashCode();
  656. }
  657. else
  658. {
  659. subProp.nFileNameRID = f_nFileNameRID;
  660. }
  661. maidProp.bSubDut = true;
  662. }
  663. public SubProp GetSubProp(MPN idx, int subno)
  664. {
  665. MaidProp maidProp = this.m_aryMaidProp[(int)idx];
  666. SubProp result = null;
  667. if (maidProp.listSubProp != null && subno < maidProp.listSubProp.Count)
  668. {
  669. result = maidProp.listSubProp[subno];
  670. }
  671. return result;
  672. }
  673. public void DelSubProp(MPN idx, int subno = -1)
  674. {
  675. MaidProp maidProp = this.m_aryMaidProp[(int)idx];
  676. if (maidProp.listSubProp != null)
  677. {
  678. if (subno == -1)
  679. {
  680. maidProp.listSubProp.Clear();
  681. }
  682. else if (maidProp.listSubProp.Count > subno)
  683. {
  684. SubProp subProp = maidProp.listSubProp[subno];
  685. if (subProp != null)
  686. {
  687. subProp.strFileName = string.Empty;
  688. subProp.nFileNameRID = 0;
  689. subProp.bDut = false;
  690. }
  691. }
  692. }
  693. maidProp.bSubDut = true;
  694. }
  695. public void ResetProp(string mpn, bool force_reset = false)
  696. {
  697. NDebug.Assert(this.m_dicMaidProp.ContainsKey(mpn), "指定されたプロパティ名がありません。" + base.tag);
  698. MaidProp mp = this.m_dicMaidProp[mpn];
  699. this.ResetProp(mp, force_reset);
  700. }
  701. public void ResetProp(MPN idx, bool force_reset = false)
  702. {
  703. MaidProp mp = this.m_aryMaidProp[(int)idx];
  704. this.ResetProp(mp, force_reset);
  705. }
  706. public void ResetProp(MaidProp mp, bool force_reset = false)
  707. {
  708. if ((mp.nTempFileNameRID != 0 && mp.nFileNameRID != mp.nTempFileNameRID) || mp.temp_value != mp.value || force_reset)
  709. {
  710. mp.boDut = true;
  711. mp.strTempFileName = string.Empty;
  712. mp.nTempFileNameRID = 0;
  713. mp.temp_value = 0;
  714. mp.boTempDut = false;
  715. }
  716. }
  717. public void ItemChangeTemp(string mpn, string name)
  718. {
  719. MaidProp prop = this.GetProp(mpn);
  720. SortedDictionary<string, string> sortedDictionary;
  721. string filename;
  722. if (prop.nFileNameRID != 0 && Menu.m_dicResourceRef.TryGetValue(prop.nFileNameRID, out sortedDictionary) && sortedDictionary.TryGetValue(name, out filename))
  723. {
  724. this.SetProp(mpn, filename, 0, true, false);
  725. }
  726. }
  727. public bool IsItemChange(string mpn, string name)
  728. {
  729. MaidProp prop = this.GetProp(mpn);
  730. return prop.nFileNameRID != 0 && Menu.m_dicResourceRef.ContainsKey(prop.nFileNameRID) && Menu.m_dicResourceRef[prop.nFileNameRID].ContainsKey(name) && this.GetProp(mpn).strTempFileName == Menu.m_dicResourceRef[prop.nFileNameRID][name];
  731. }
  732. public bool IsItemChangeEnabled(string mpn, string name)
  733. {
  734. MaidProp prop = this.GetProp(mpn);
  735. return prop.nFileNameRID != 0 && Menu.m_dicResourceRef.ContainsKey(prop.nFileNameRID) && Menu.m_dicResourceRef[prop.nFileNameRID].ContainsKey(name);
  736. }
  737. public void DutPropAll()
  738. {
  739. for (int i = 0; i < this.m_aryMaidProp.Length; i++)
  740. {
  741. MaidProp maidProp = this.m_aryMaidProp[i];
  742. maidProp.boDut = true;
  743. if (maidProp.listSubProp != null)
  744. {
  745. for (int j = 0; j < maidProp.listSubProp.Count; j++)
  746. {
  747. if (maidProp.listSubProp[j] != null)
  748. {
  749. maidProp.listSubProp[j].bDut = true;
  750. }
  751. }
  752. }
  753. }
  754. }
  755. public void SetUpModel(string f_strPresetMenuFileName)
  756. {
  757. Menu.ProcScript(this, f_strPresetMenuFileName, false, null);
  758. this.body0.FixMaskFlag();
  759. this.body0.FixVisibleFlag(false);
  760. this.AllProcPropSeqStart();
  761. if (!this.boMAN)
  762. {
  763. }
  764. }
  765. public void AllProcPropSeqStart()
  766. {
  767. this.boAllProcPropBUSY = true;
  768. this.boModelChg = false;
  769. this.AllProcProp2Fase = 0;
  770. this.AllProcProp2Cnt = 0;
  771. }
  772. private void AllProcPropSeq()
  773. {
  774. if (this.AllProcProp2Fase == 0)
  775. {
  776. while (this.AllProcProp2Fase == 0)
  777. {
  778. MaidProp maidProp = this.m_aryMaidProp[this.AllProcProp2Cnt];
  779. this.AllProcProp2Cnt++;
  780. if (this.m_aryMaidProp.Length == this.AllProcProp2Cnt)
  781. {
  782. this.AllProcProp2Cnt = 0;
  783. if (Array.Find<MaidProp>(this.m_aryMaidProp, (MaidProp m) => m.type == 3 && (m.boDut || m.boTempDut)) == null)
  784. {
  785. this.AllProcProp2Fase++;
  786. }
  787. }
  788. if (maidProp == null)
  789. {
  790. string str = "AllProcProp2_Proc MPNがNULLです。";
  791. MPN allProcProp2Cnt = (MPN)this.AllProcProp2Cnt;
  792. NDebug.Assert(str + allProcProp2Cnt.ToString(), false);
  793. }
  794. if (maidProp.type == 3 && this.ProcItem(this.m_dicMaidProp[maidProp.name]))
  795. {
  796. if (!this.boModelChg)
  797. {
  798. this.body0.FixVisibleFlag(true);
  799. this.boModelChg = true;
  800. }
  801. if (this.boMAN && maidProp.idx == 33)
  802. {
  803. for (int i = 34; i <= 86; i++)
  804. {
  805. this.GetProp((MPN)i).boDut = true;
  806. }
  807. this.GetProp(MPN.moza).boDut = true;
  808. }
  809. else if (maidProp.idx == 40 || maidProp.idx == 36 || maidProp.idx == 37 || maidProp.idx == 39 || maidProp.idx == 38)
  810. {
  811. this.GetProp(MPN.haircolor).boDut = true;
  812. }
  813. else if (maidProp.idx == 35)
  814. {
  815. this.GetProp(MPN.skin).boDut = true;
  816. this.GetProp(MPN.eye).boDut = true;
  817. this.GetProp(MPN.mayu).boDut = true;
  818. this.GetProp(MPN.eye_hi).boDut = true;
  819. this.GetProp(MPN.EyeClose).boDut = true;
  820. this.GetProp(MPN.FaceShape).boDut = true;
  821. this.GetProp(MPN.MayuX).boDut = true;
  822. this.GetProp(MPN.MayuY).boDut = true;
  823. }
  824. else if (maidProp.idx == 42)
  825. {
  826. MaidProp prop = this.GetProp(MPN.acctatoo);
  827. prop.boDut = true;
  828. if (prop.listSubProp != null)
  829. {
  830. for (int j = 0; j < prop.listSubProp.Count; j++)
  831. {
  832. if (prop.listSubProp[j] != null)
  833. {
  834. prop.listSubProp[j].bDut = true;
  835. }
  836. }
  837. }
  838. prop = this.GetProp(MPN.hokuro);
  839. prop.boDut = true;
  840. if (prop.listSubProp != null)
  841. {
  842. for (int k = 0; k < prop.listSubProp.Count; k++)
  843. {
  844. if (prop.listSubProp[k] != null)
  845. {
  846. prop.listSubProp[k].bDut = true;
  847. }
  848. }
  849. }
  850. this.GetProp(MPN.lip).boDut = true;
  851. }
  852. break;
  853. }
  854. }
  855. }
  856. else if (this.AllProcProp2Fase == 1)
  857. {
  858. this.AllProcProp2Fase++;
  859. }
  860. else if (this.AllProcProp2Fase == 2)
  861. {
  862. bool flag = false;
  863. foreach (MaidProp maidProp2 in this.m_dicMaidProp.Values)
  864. {
  865. if (maidProp2.type != 3)
  866. {
  867. flag |= this.ProcItem(maidProp2);
  868. }
  869. }
  870. if (flag)
  871. {
  872. this.body0.ItemScaleReset();
  873. }
  874. this.AllProcProp2Fase++;
  875. }
  876. else if (this.AllProcProp2Fase == 3)
  877. {
  878. if (this.boModelChg)
  879. {
  880. this.body0.MulTexProc();
  881. this.body0.FixMaskFlag();
  882. this.body0.FixVisibleFlag(false);
  883. }
  884. this.AllProcProp2Fase++;
  885. }
  886. else if (this.AllProcProp2Fase == 4)
  887. {
  888. this.ProcSSParam();
  889. this.AllProcProp2Fase++;
  890. }
  891. else if (this.AllProcProp2Fase == 5)
  892. {
  893. this.boAllProcPropBUSY = false;
  894. }
  895. }
  896. public void AllProcProp()
  897. {
  898. this.boModelChg = false;
  899. float realtimeSinceStartup = Time.realtimeSinceStartup;
  900. for (;;)
  901. {
  902. if (Array.Find<MaidProp>(this.m_aryMaidProp, (MaidProp m) => m.type == 3 && (m.boDut || m.boTempDut)) == null)
  903. {
  904. break;
  905. }
  906. for (int i = 0; i < this.m_aryMaidProp.Length; i++)
  907. {
  908. MaidProp maidProp = this.m_aryMaidProp[i];
  909. string name = maidProp.name;
  910. if (maidProp.type == 3 && this.ProcItem(this.m_dicMaidProp[name]))
  911. {
  912. if (!this.boModelChg)
  913. {
  914. this.body0.FixVisibleFlag(true);
  915. this.boModelChg = true;
  916. }
  917. if (this.boMAN && maidProp.idx == 33)
  918. {
  919. for (int j = 34; j <= 86; j++)
  920. {
  921. this.GetProp((MPN)j).boDut = true;
  922. }
  923. this.GetProp(MPN.moza).boDut = true;
  924. }
  925. else if (maidProp.idx == 40 || maidProp.idx == 36 || maidProp.idx == 37 || maidProp.idx == 39 || maidProp.idx == 38)
  926. {
  927. this.GetProp(MPN.haircolor).boDut = true;
  928. }
  929. else if (maidProp.idx == 35)
  930. {
  931. this.GetProp(MPN.skin).boDut = true;
  932. this.GetProp(MPN.eye).boDut = true;
  933. this.GetProp(MPN.mayu).boDut = true;
  934. this.GetProp(MPN.eye_hi).boDut = true;
  935. this.GetProp(MPN.EyeClose).boDut = true;
  936. this.GetProp(MPN.FaceShape).boDut = true;
  937. this.GetProp(MPN.MayuX).boDut = true;
  938. this.GetProp(MPN.MayuY).boDut = true;
  939. }
  940. else if (maidProp.idx == 42)
  941. {
  942. MaidProp prop = this.GetProp(MPN.acctatoo);
  943. prop.boDut = true;
  944. if (prop.listSubProp != null)
  945. {
  946. for (int k = 0; k < prop.listSubProp.Count; k++)
  947. {
  948. if (prop.listSubProp[k] != null)
  949. {
  950. prop.listSubProp[k].bDut = true;
  951. }
  952. }
  953. }
  954. prop = this.GetProp(MPN.hokuro);
  955. prop.boDut = true;
  956. if (prop.listSubProp != null)
  957. {
  958. for (int l = 0; l < prop.listSubProp.Count; l++)
  959. {
  960. if (prop.listSubProp[l] != null)
  961. {
  962. prop.listSubProp[l].bDut = true;
  963. }
  964. }
  965. }
  966. this.GetProp(MPN.lip).boDut = true;
  967. }
  968. }
  969. }
  970. }
  971. realtimeSinceStartup = Time.realtimeSinceStartup;
  972. bool flag = false;
  973. foreach (MaidProp maidProp2 in this.m_dicMaidProp.Values)
  974. {
  975. if (maidProp2.type != 3)
  976. {
  977. flag |= this.ProcItem(maidProp2);
  978. }
  979. }
  980. if (flag)
  981. {
  982. this.body0.ItemScaleReset();
  983. }
  984. realtimeSinceStartup = Time.realtimeSinceStartup;
  985. if (this.boModelChg)
  986. {
  987. this.body0.MulTexProc();
  988. this.body0.FixMaskFlag();
  989. this.body0.FixVisibleFlag(false);
  990. }
  991. realtimeSinceStartup = Time.realtimeSinceStartup;
  992. this.ProcSSParam();
  993. }
  994. private bool ProcItem(MaidProp mp)
  995. {
  996. bool result = false;
  997. string name = mp.name;
  998. if (mp.type == 1)
  999. {
  1000. if (mp.boTempDut)
  1001. {
  1002. mp.boTempDut = false;
  1003. this.body0.VertexMorph_FromProcItem(name, (float)mp.temp_value / 100f);
  1004. result = true;
  1005. }
  1006. if (mp.boDut)
  1007. {
  1008. mp.boDut = false;
  1009. this.body0.VertexMorph_FromProcItem(name, (float)mp.value / 100f);
  1010. result = true;
  1011. }
  1012. }
  1013. else if (mp.type == 2)
  1014. {
  1015. if (mp.boTempDut)
  1016. {
  1017. mp.boTempDut = false;
  1018. this.body0.BoneMorph_FromProcItem(name, (float)mp.temp_value / 100f);
  1019. result = true;
  1020. }
  1021. if (mp.boDut)
  1022. {
  1023. mp.boDut = false;
  1024. this.body0.BoneMorph_FromProcItem(name, (float)mp.value / 100f);
  1025. result = true;
  1026. }
  1027. }
  1028. else if (mp.type == 3)
  1029. {
  1030. if (mp.boTempDut && mp.boDut)
  1031. {
  1032. string[] array = new string[6];
  1033. array[0] = "Item実行を、本元とTempを同時に更新しようとしました。";
  1034. int num = 1;
  1035. MPN idx = (MPN)mp.idx;
  1036. array[num] = idx.ToString();
  1037. array[2] = " 元=";
  1038. array[3] = mp.strFileName;
  1039. array[4] = " Temp=";
  1040. array[5] = mp.strTempFileName;
  1041. Debug.LogWarning(string.Concat(array));
  1042. }
  1043. if (mp.boTempDut)
  1044. {
  1045. if (!string.IsNullOrEmpty(mp.strTempFileName) && !Menu.ProcScript(this, mp.strTempFileName, true, null))
  1046. {
  1047. Debug.LogWarning("メニューファイル " + mp.strFileName + " が開けませんでした。");
  1048. mp.nTempFileNameRID = 0;
  1049. mp.strTempFileName = string.Empty;
  1050. }
  1051. result = true;
  1052. mp.boTempDut = false;
  1053. if (83 <= mp.idx && mp.idx <= 86)
  1054. {
  1055. mp.nTempFileNameRID = 0;
  1056. mp.strTempFileName = string.Empty;
  1057. }
  1058. }
  1059. if (mp.boDut)
  1060. {
  1061. if (!string.IsNullOrEmpty(mp.strFileName) && !Menu.ProcScript(this, mp.strFileName, false, null))
  1062. {
  1063. Debug.LogWarning("メニューファイル " + mp.strFileName + " が開けませんでした。");
  1064. if (this.DelProp((MPN)mp.idx, false))
  1065. {
  1066. Menu.ProcScript(this, mp.strFileName, false, null);
  1067. }
  1068. }
  1069. result = true;
  1070. mp.boDut = false;
  1071. if (83 <= mp.idx && mp.idx <= 86)
  1072. {
  1073. mp.nFileNameRID = 0;
  1074. mp.strFileName = string.Empty;
  1075. }
  1076. }
  1077. if (mp.listSubProp != null)
  1078. {
  1079. for (int i = 0; i < mp.listSubProp.Count; i++)
  1080. {
  1081. SubProp subProp = mp.listSubProp[i];
  1082. if (subProp != null && subProp.bDut)
  1083. {
  1084. if (!Menu.ProcScript(this, subProp.strFileName, false, subProp))
  1085. {
  1086. Debug.LogWarning("サブメニューファイル " + subProp.strFileName + " が開けませんでした。");
  1087. mp.listSubProp[i] = null;
  1088. }
  1089. result = true;
  1090. subProp.bDut = false;
  1091. }
  1092. }
  1093. }
  1094. if (mp.boAdjustDut)
  1095. {
  1096. if (this.body0.isLoadedBody)
  1097. {
  1098. foreach (KeyValuePair<TBody.SlotID, Dictionary<string, KeyValuePair<int, VtxAttachPos>>> keyValuePair in mp.m_dicTBodyAttachPos)
  1099. {
  1100. TBodySkin tbodySkin = this.body0.goSlot[(int)keyValuePair.Key];
  1101. if (tbodySkin.morph != null)
  1102. {
  1103. foreach (KeyValuePair<string, KeyValuePair<int, VtxAttachPos>> keyValuePair2 in keyValuePair.Value)
  1104. {
  1105. tbodySkin.morph.SetAttachPointOffsetLocal(keyValuePair2.Key, keyValuePair2.Value.Value);
  1106. result = true;
  1107. }
  1108. }
  1109. }
  1110. }
  1111. mp.boAdjustDut = false;
  1112. }
  1113. }
  1114. return result;
  1115. }
  1116. public bool MayuDrawPriority
  1117. {
  1118. get
  1119. {
  1120. string materialProperty = this.body0.GetMaterialProperty("head", 3, "_ZTest2", "AUTO");
  1121. if (!string.IsNullOrEmpty(materialProperty))
  1122. {
  1123. float num = 0f;
  1124. if (float.TryParse(materialProperty, out num))
  1125. {
  1126. if ((int)(num + 0.5f) == 1)
  1127. {
  1128. return false;
  1129. }
  1130. if ((int)(num + 0.5f) == 7)
  1131. {
  1132. return true;
  1133. }
  1134. }
  1135. }
  1136. return false;
  1137. }
  1138. set
  1139. {
  1140. this.body0.SetMaterialProperty("mayu", "head", 3, "_ZTest2", "UnityEngine.Rendering.CompareFunction", (!value) ? "1" : "7", true);
  1141. }
  1142. }
  1143. public void SubPropAlpha(MPN f_mpn, int f_nSubNo, float f_fTexMulAlpha)
  1144. {
  1145. MaidProp maidProp = this.m_aryMaidProp[(int)f_mpn];
  1146. if (maidProp.listSubProp.Count <= f_nSubNo)
  1147. {
  1148. Debug.LogError("listSubProp の範囲を超えています。");
  1149. return;
  1150. }
  1151. SubProp subProp = maidProp.listSubProp[f_nSubNo];
  1152. if (subProp == null)
  1153. {
  1154. Debug.LogError("listSubProp に " + f_nSubNo + " 番はありません。");
  1155. return;
  1156. }
  1157. subProp.fTexMulAlpha = f_fTexMulAlpha;
  1158. }
  1159. public bool SerializeProp(BinaryWriter f_bwWrite)
  1160. {
  1161. f_bwWrite.Write("CM3D2_MPROP_LIST");
  1162. f_bwWrite.Write(1200);
  1163. f_bwWrite.Write(this.m_dicMaidProp.Count);
  1164. foreach (KeyValuePair<string, MaidProp> keyValuePair in this.m_dicMaidProp)
  1165. {
  1166. f_bwWrite.Write(keyValuePair.Key);
  1167. keyValuePair.Value.Serialize(f_bwWrite);
  1168. }
  1169. return true;
  1170. }
  1171. public bool SerializePropLowCapacity(BinaryWriter writer)
  1172. {
  1173. NDebug.Assert(this.m_dicMaidProp.Count < 65535, "容量over");
  1174. writer.Write((char)this.m_dicMaidProp.Count);
  1175. NDebug.Assert(true, "MPN容量over");
  1176. foreach (KeyValuePair<string, MaidProp> keyValuePair in this.m_dicMaidProp)
  1177. {
  1178. MPN mpn = (MPN)Enum.Parse(typeof(MPN), keyValuePair.Key);
  1179. writer.Write((char)mpn);
  1180. keyValuePair.Value.SerializeLowCapacity(writer);
  1181. }
  1182. return true;
  1183. }
  1184. public bool SerializeMultiColor(BinaryWriter f_bwWrite)
  1185. {
  1186. return this.m_Parts.Serialize(f_bwWrite);
  1187. }
  1188. public bool SerializeMisc(BinaryWriter f_bwWrite)
  1189. {
  1190. f_bwWrite.Write("CM3D2_MAID_MISC");
  1191. f_bwWrite.Write(1200);
  1192. f_bwWrite.Write(this.m_nActiveSlotNo);
  1193. if (this.m_texIcon != null)
  1194. {
  1195. byte[] array = this.m_texIcon.EncodeToPNG();
  1196. f_bwWrite.Write(array.Length);
  1197. f_bwWrite.Write(array);
  1198. }
  1199. else
  1200. {
  1201. f_bwWrite.Write(0);
  1202. }
  1203. f_bwWrite.Write(this.m_strThumCardTime);
  1204. f_bwWrite.Write(this.m_colMan.r);
  1205. f_bwWrite.Write(this.m_colMan.g);
  1206. f_bwWrite.Write(this.m_colMan.b);
  1207. f_bwWrite.Write(this.m_colMan.a);
  1208. f_bwWrite.Write(this.m_nVoicePitch);
  1209. this.FixThumCard();
  1210. return true;
  1211. }
  1212. public bool SerializeBody(BinaryWriter f_bwWrite)
  1213. {
  1214. f_bwWrite.Write("CM3D2_MAID_BODY");
  1215. f_bwWrite.Write(1200);
  1216. return true;
  1217. }
  1218. public bool DeserializeProp(BinaryReader f_brRead)
  1219. {
  1220. string a = f_brRead.ReadString();
  1221. NDebug.Assert(a == "CM3D2_MPROP_LIST", "メイドプロパティリストのヘッダーが不正です。");
  1222. int num = f_brRead.ReadInt32();
  1223. int num2 = f_brRead.ReadInt32();
  1224. for (int i = 0; i < num2; i++)
  1225. {
  1226. string tag = f_brRead.ReadString();
  1227. MaidProp prop = this.GetProp(tag);
  1228. prop.Deserialize(f_brRead);
  1229. if (num <= 135 && prop.idx == 69 && Path.GetFileNameWithoutExtension(prop.strFileName.ToLower()) == "acckubi007_i_")
  1230. {
  1231. prop.boDut = true;
  1232. prop.strFileName = CM3.dicDelItem[MPN.acckubi];
  1233. prop.nFileNameRID = prop.strFileName.ToLower().GetHashCode();
  1234. prop.strTempFileName = string.Empty;
  1235. prop.nTempFileNameRID = 0;
  1236. }
  1237. }
  1238. if (num <= 110)
  1239. {
  1240. MaidProp prop2 = this.GetProp(MPN.EyeScl);
  1241. MaidProp prop3 = this.GetProp(MPN.EyeSclX);
  1242. prop3.value = prop2.value;
  1243. MaidProp prop4 = this.GetProp(MPN.EyeSclY);
  1244. prop4.value = prop2.value;
  1245. }
  1246. this.AllProcPropSeqStart();
  1247. return true;
  1248. }
  1249. public void DeserializeOldData(OldDataConverter.MaidData data, bool statusOnly = false)
  1250. {
  1251. NDebug.AssertNull(data != null);
  1252. this.status.Deserialize(data.statusReader, true);
  1253. using (MemoryStream memoryStream = new MemoryStream(data.ReadAppearanceByte()))
  1254. {
  1255. using (BinaryReader binaryReader = new BinaryReader(memoryStream))
  1256. {
  1257. this.DeserializeProp(binaryReader);
  1258. this.DeserializeMultiColor(binaryReader);
  1259. }
  1260. }
  1261. if (!statusOnly)
  1262. {
  1263. Texture2D texture2D = new Texture2D(1, 1, TextureFormat.ARGB32, false);
  1264. texture2D.LoadImage(data.ReadThumbnailByte());
  1265. byte[] array = data.ReadAppearanceByte();
  1266. this.SetThumIcon(texture2D);
  1267. string text = GameMain.Instance.CMSystem.CM3D2Path + "\\Thumb\\" + this.status.guid + ".png";
  1268. if (File.Exists(text))
  1269. {
  1270. string text2 = Path.GetFullPath(".\\") + "Thumb\\" + this.status.guid + ".png";
  1271. if (!File.Exists(text2))
  1272. {
  1273. File.Copy(text, text2);
  1274. }
  1275. }
  1276. }
  1277. }
  1278. public static List<MaidProp> DeserializePropPre(BinaryReader f_brRead)
  1279. {
  1280. List<MaidProp> list = new List<MaidProp>();
  1281. string a = f_brRead.ReadString();
  1282. NDebug.Assert(a == "CM3D2_MPROP_LIST", "メイドプロパティリストのヘッダーが不正です。");
  1283. int num = f_brRead.ReadInt32();
  1284. int num2 = f_brRead.ReadInt32();
  1285. for (int i = 0; i < num2; i++)
  1286. {
  1287. if (4 <= num)
  1288. {
  1289. string text = f_brRead.ReadString();
  1290. }
  1291. MaidProp maidProp = new MaidProp();
  1292. maidProp.Deserialize(f_brRead);
  1293. list.Add(maidProp);
  1294. if (num <= 110 && maidProp.idx == 10)
  1295. {
  1296. list.Add(new MaidProp
  1297. {
  1298. type = maidProp.type,
  1299. idx = 11,
  1300. name = MPN.EyeSclX.ToString(),
  1301. value = maidProp.value,
  1302. min = maidProp.min,
  1303. max = maidProp.max,
  1304. boDut = true
  1305. });
  1306. list.Add(new MaidProp
  1307. {
  1308. type = maidProp.type,
  1309. idx = 12,
  1310. name = MPN.EyeSclY.ToString(),
  1311. value = maidProp.value,
  1312. min = maidProp.min,
  1313. max = maidProp.max,
  1314. boDut = true
  1315. });
  1316. }
  1317. }
  1318. if (num < 200)
  1319. {
  1320. list.Add(Maid.CreateProp(0, 100, 0, MPN.EyeClose, 2));
  1321. list.Add(Maid.CreateProp(0, 100, 0, MPN.FaceShape, 2));
  1322. list.Add(Maid.CreateProp(0, 100, 50, MPN.MayuX, 2));
  1323. list.Add(Maid.CreateProp(0, 100, 50, MPN.MayuY, 2));
  1324. }
  1325. if (num < 210)
  1326. {
  1327. list.Add(Maid.CreateProp(0, 100, 50, MPN.EyeBallPosX, 2));
  1328. list.Add(Maid.CreateProp(0, 100, 50, MPN.EyeBallPosY, 2));
  1329. list.Add(Maid.CreateProp(0, 100, 50, MPN.EyeBallSclX, 2));
  1330. list.Add(Maid.CreateProp(0, 100, 50, MPN.EyeBallSclY, 2));
  1331. }
  1332. return list;
  1333. }
  1334. public static List<MaidProp> DeserializePropLowCapacity(BinaryReader reader)
  1335. {
  1336. List<MaidProp> list = Maid.CreateInitMaidPropList();
  1337. Dictionary<int, MaidProp> dictionary = new Dictionary<int, MaidProp>();
  1338. for (int i = 0; i < list.Count; i++)
  1339. {
  1340. dictionary.Add(list[i].idx, list[i]);
  1341. }
  1342. int num = (int)reader.ReadChar();
  1343. for (int j = 0; j < num; j++)
  1344. {
  1345. int key = (int)reader.ReadChar();
  1346. MaidProp maidProp = dictionary[key];
  1347. maidProp.DeserializeLowCapacity(reader);
  1348. }
  1349. return list;
  1350. }
  1351. public static MaidParts.PartsColor[] DeserializeMultiColorPre(BinaryReader f_brRead)
  1352. {
  1353. return MaidParts.DeserializePre(f_brRead);
  1354. }
  1355. public bool DeserializeMultiColor(BinaryReader f_brRead)
  1356. {
  1357. MaidParts.PartsColor[] array = MaidParts.DeserializePre(f_brRead);
  1358. for (int i = 0; i < array.Length; i++)
  1359. {
  1360. this.Parts.SetPartsColor((MaidParts.PARTS_COLOR)i, array[i]);
  1361. }
  1362. return true;
  1363. }
  1364. public bool DeserializeMisc(BinaryReader f_brRead)
  1365. {
  1366. string a = f_brRead.ReadString();
  1367. NDebug.Assert(a == "CM3D2_MAID_MISC", "メイドその他のヘッダーが不正です。");
  1368. int num = f_brRead.ReadInt32();
  1369. this.m_nActiveSlotNo = f_brRead.ReadInt32();
  1370. int num2 = f_brRead.ReadInt32();
  1371. if (num2 != 0)
  1372. {
  1373. byte[] data = f_brRead.ReadBytes(num2);
  1374. UnityEngine.Object.Destroy(this.m_texIcon);
  1375. this.m_texIcon = new Texture2D(1, 1, TextureFormat.ARGB32, false);
  1376. this.m_texIcon.LoadImage(data);
  1377. }
  1378. if (8 <= num)
  1379. {
  1380. this.m_strThumCardTime = f_brRead.ReadString();
  1381. }
  1382. this.m_colMan.r = f_brRead.ReadSingle();
  1383. this.m_colMan.g = f_brRead.ReadSingle();
  1384. this.m_colMan.b = f_brRead.ReadSingle();
  1385. this.m_colMan.a = f_brRead.ReadSingle();
  1386. if (202 <= num)
  1387. {
  1388. this.m_nVoicePitch = f_brRead.ReadInt32();
  1389. }
  1390. this.CheckOldThumCard();
  1391. return true;
  1392. }
  1393. public static bool DeserializeBodyPre(BinaryReader f_brRead)
  1394. {
  1395. return Maid.DeserializeBodyRead(f_brRead);
  1396. }
  1397. public bool DeserializeBody(BinaryReader f_brRead)
  1398. {
  1399. return Maid.DeserializeBodyRead(f_brRead);
  1400. }
  1401. public static bool DeserializeBodyRead(BinaryReader f_brRead)
  1402. {
  1403. string a = f_brRead.ReadString();
  1404. NDebug.Assert(a == "CM3D2_MAID_BODY", "メイドBodyヘッダーが不正です。");
  1405. int num = f_brRead.ReadInt32();
  1406. return true;
  1407. }
  1408. public void SetTBodySkinPos(MPN m_mpn, TBody.SlotID f_slot, Vector3 f_vPosLocal, Quaternion f_qRotLocal, Vector3 f_vScaleRate, bool f_bEnable)
  1409. {
  1410. MaidProp prop = this.GetProp(m_mpn);
  1411. BoneAttachPos boneAttachPos = new BoneAttachPos();
  1412. boneAttachPos.bEnable = f_bEnable;
  1413. boneAttachPos.pss.position = f_vPosLocal;
  1414. boneAttachPos.pss.rotation = f_qRotLocal;
  1415. boneAttachPos.pss.scale = f_vScaleRate;
  1416. prop.m_dicTBodySkinPos[f_slot] = new KeyValuePair<int, BoneAttachPos>(prop.nFileNameRID, boneAttachPos);
  1417. }
  1418. public BoneAttachPos GetTBodySkinPos(MPN m_mpn, TBody.SlotID f_slot)
  1419. {
  1420. BoneAttachPos result = null;
  1421. MaidProp prop = this.GetProp(m_mpn);
  1422. KeyValuePair<int, BoneAttachPos> keyValuePair;
  1423. if (prop.m_dicTBodySkinPos.TryGetValue(f_slot, out keyValuePair) && keyValuePair.Key == prop.nFileNameRID)
  1424. {
  1425. result = keyValuePair.Value;
  1426. }
  1427. return result;
  1428. }
  1429. public void ClearTBodySkinPos(MPN m_mpn, TBody.SlotID f_slot)
  1430. {
  1431. MaidProp prop = this.GetProp(m_mpn);
  1432. prop.m_dicTBodySkinPos.Remove(f_slot);
  1433. }
  1434. public void SetAttachPointPos(MPN m_mpn, TBody.SlotID f_slot, int f_vtxcount, string f_apname, int f_vidx, Vector3 f_vPosLocal, Quaternion f_qRotLocal, Vector3 f_vScaleRate, bool f_bEnable)
  1435. {
  1436. MaidProp prop = this.GetProp(m_mpn);
  1437. Dictionary<string, KeyValuePair<int, VtxAttachPos>> dictionary;
  1438. if (!prop.m_dicTBodyAttachPos.TryGetValue(f_slot, out dictionary))
  1439. {
  1440. dictionary = (prop.m_dicTBodyAttachPos[f_slot] = new Dictionary<string, KeyValuePair<int, VtxAttachPos>>());
  1441. }
  1442. VtxAttachPos vtxAttachPos = new VtxAttachPos();
  1443. vtxAttachPos.vtxcount = f_vtxcount;
  1444. vtxAttachPos.vidx = f_vidx;
  1445. vtxAttachPos.prs.position = f_vPosLocal;
  1446. vtxAttachPos.prs.rotation = f_qRotLocal;
  1447. vtxAttachPos.prs.scale = f_vScaleRate;
  1448. vtxAttachPos.bEnable = f_bEnable;
  1449. dictionary[f_apname] = new KeyValuePair<int, VtxAttachPos>(prop.nFileNameRID, vtxAttachPos);
  1450. }
  1451. public VtxAttachPos GetAttachPointPos(MPN m_mpn, TBody.SlotID f_slot, int f_vtxcount, string f_apname)
  1452. {
  1453. VtxAttachPos result = null;
  1454. MaidProp prop = this.GetProp(m_mpn);
  1455. Dictionary<string, KeyValuePair<int, VtxAttachPos>> dictionary;
  1456. KeyValuePair<int, VtxAttachPos> keyValuePair;
  1457. if (prop.m_dicTBodyAttachPos.TryGetValue(f_slot, out dictionary) && dictionary.TryGetValue(f_apname, out keyValuePair) && keyValuePair.Key == prop.nFileNameRID && keyValuePair.Value.vtxcount == f_vtxcount)
  1458. {
  1459. result = keyValuePair.Value;
  1460. }
  1461. return result;
  1462. }
  1463. public void ClearAttachPointPos(MPN m_mpn, TBody.SlotID f_slot, string f_apname)
  1464. {
  1465. MaidProp prop = this.GetProp(m_mpn);
  1466. Dictionary<string, KeyValuePair<int, VtxAttachPos>> dictionary;
  1467. if (prop.m_dicTBodyAttachPos.TryGetValue(f_slot, out dictionary))
  1468. {
  1469. dictionary.Remove(f_apname);
  1470. }
  1471. }
  1472. public void SetMaterialProperty(MPN m_mpn, TBody.SlotID f_slot, int f_nMatNo, string f_strPropName, string f_strTypeName, string f_strValue)
  1473. {
  1474. MaidProp prop = this.GetProp(m_mpn);
  1475. prop.m_dicMaterialProp[f_slot] = new KeyValuePair<int, MatPropSave>(prop.nFileNameRID, new MatPropSave(f_nMatNo, f_strPropName, f_strTypeName, f_strValue));
  1476. }
  1477. public MatPropSave GetMaterialProperty(MPN m_mpn, TBody.SlotID f_slot)
  1478. {
  1479. MaidProp prop = this.GetProp(m_mpn);
  1480. KeyValuePair<int, MatPropSave> keyValuePair;
  1481. if (prop.m_dicMaterialProp.TryGetValue(f_slot, out keyValuePair) && keyValuePair.Key == prop.nFileNameRID)
  1482. {
  1483. return keyValuePair.Value;
  1484. }
  1485. return null;
  1486. }
  1487. public void SetHairLengthSaveToMP(MPN f_mpn, TBody.SlotID f_slot, string f_strName, float f_fValue)
  1488. {
  1489. MaidProp prop = this.GetProp(f_mpn);
  1490. KeyValuePair<int, Dictionary<string, float>> value;
  1491. if (!prop.m_dicBoneLength.TryGetValue(f_slot, out value))
  1492. {
  1493. Dictionary<TBody.SlotID, KeyValuePair<int, Dictionary<string, float>>> dicBoneLength = prop.m_dicBoneLength;
  1494. value = new KeyValuePair<int, Dictionary<string, float>>(prop.nFileNameRID, new Dictionary<string, float>());
  1495. dicBoneLength[f_slot] = value;
  1496. }
  1497. value.Value[f_strName] = f_fValue;
  1498. }
  1499. public bool GetHairLengthFromMP(MPN f_mpn, TBody.SlotID f_slot, string f_strName, out float f_fOutValue)
  1500. {
  1501. MaidProp prop = this.GetProp(f_mpn);
  1502. KeyValuePair<int, Dictionary<string, float>> keyValuePair;
  1503. if (prop.m_dicBoneLength.TryGetValue(f_slot, out keyValuePair) && keyValuePair.Key == prop.nFileNameRID && keyValuePair.Value.TryGetValue(f_strName, out f_fOutValue))
  1504. {
  1505. return true;
  1506. }
  1507. f_fOutValue = 0.5f;
  1508. return false;
  1509. }
  1510. public void ClearHairLengthMP(MPN f_mpn, TBody.SlotID f_slot)
  1511. {
  1512. MaidProp prop = this.GetProp(f_mpn);
  1513. if (prop.m_dicBoneLength != null && prop.m_dicBoneLength.ContainsKey(f_slot))
  1514. {
  1515. prop.m_dicBoneLength.Remove(f_slot);
  1516. }
  1517. }
  1518. public bool NotExistThenClearHairLengthMP(MPN f_mpn, TBody.SlotID f_slot)
  1519. {
  1520. MaidProp prop = this.GetProp(f_mpn);
  1521. KeyValuePair<int, Dictionary<string, float>> keyValuePair;
  1522. if (prop.m_dicBoneLength.TryGetValue(f_slot, out keyValuePair) && keyValuePair.Key != prop.nFileNameRID)
  1523. {
  1524. prop.m_dicBoneLength.Remove(f_slot);
  1525. return true;
  1526. }
  1527. return false;
  1528. }
  1529. public void ThumShotCamMove()
  1530. {
  1531. GameMain.Instance.ThumCamera.GetComponent<ThumShot>().MoveTargetCard(this);
  1532. GameMain.Instance.ThumCamera.GetComponent<ThumShot>().MoveTargetThum(this);
  1533. }
  1534. public void ThumShot()
  1535. {
  1536. UnityEngine.Object.Destroy(this.m_texIcon);
  1537. this.m_texIcon = GameMain.Instance.ThumCamera.GetComponent<ThumShot>().ShotThumIcon(this);
  1538. this.SetThumCard(GameMain.Instance.ThumCamera.GetComponent<ThumShot>().ShotThumCard(this));
  1539. }
  1540. public void ThumShotCustom(string saveFileName, bool adjustmentCameraTransform)
  1541. {
  1542. ThumShot component = GameMain.Instance.ThumCamera.GetComponent<ThumShot>();
  1543. Texture2D texture2D;
  1544. if (adjustmentCameraTransform)
  1545. {
  1546. texture2D = component.ShotThumCard(this);
  1547. }
  1548. else
  1549. {
  1550. texture2D = component.ShotThumCardOriginal();
  1551. }
  1552. string fullPath = Path.GetFullPath(".\\");
  1553. string text = fullPath + "Thumb";
  1554. if (!Directory.Exists(text))
  1555. {
  1556. Directory.CreateDirectory(text);
  1557. }
  1558. text = text + "/" + saveFileName;
  1559. UTY.SaveImage(texture2D, text);
  1560. UnityEngine.Object.Destroy(texture2D);
  1561. }
  1562. public void SetThumCard(Texture2D tex)
  1563. {
  1564. string fullPath = Path.GetFullPath(".\\");
  1565. string text = fullPath + "Thumb";
  1566. if (!Directory.Exists(text))
  1567. {
  1568. Directory.CreateDirectory(text);
  1569. }
  1570. string f_strFileName = string.Empty;
  1571. this.m_strThumCardTime = DateTime.Now.ToString("yyyyMMddHHmmssfff");
  1572. f_strFileName = text + "/_tmp_thum_" + this.status.guid + ".png";
  1573. UTY.SaveImage(tex, f_strFileName);
  1574. UnityEngine.Object.Destroy(tex);
  1575. Texture2D thumIcon = this.GetThumIcon();
  1576. f_strFileName = text + "/icon_thum_" + this.status.guid + ".png";
  1577. UTY.SaveImage(thumIcon, f_strFileName);
  1578. }
  1579. public void SetThumIcon(Texture2D icon_tex)
  1580. {
  1581. this.m_texIcon = icon_tex;
  1582. }
  1583. public Texture2D GetThumIcon()
  1584. {
  1585. return this.m_texIcon;
  1586. }
  1587. public Texture2D GetThumCard()
  1588. {
  1589. Texture2D result = null;
  1590. string fullPath = Path.GetFullPath(".\\");
  1591. string text = fullPath + "Thumb";
  1592. if (!Directory.Exists(text))
  1593. {
  1594. Directory.CreateDirectory(text);
  1595. }
  1596. string text2 = text + "/_tmp_thum_" + this.status.guid + ".png";
  1597. if (File.Exists(text2))
  1598. {
  1599. result = UTY.LoadTexture(text2);
  1600. }
  1601. else
  1602. {
  1603. text2 = text + "/" + this.status.guid + ".png";
  1604. if (File.Exists(text2))
  1605. {
  1606. result = UTY.LoadTexture(text2);
  1607. }
  1608. }
  1609. return result;
  1610. }
  1611. public static void DeletedTmpThumCards()
  1612. {
  1613. string fullPath = Path.GetFullPath(".\\");
  1614. string text = fullPath + "Thumb";
  1615. if (!Directory.Exists(text))
  1616. {
  1617. return;
  1618. }
  1619. string[] files = Directory.GetFiles(text, "*", SearchOption.TopDirectoryOnly);
  1620. for (int i = 0; i < files.Length; i++)
  1621. {
  1622. string text2 = text + "\\";
  1623. int num = files[i].IndexOf(text2);
  1624. if (num != 0)
  1625. {
  1626. files[i] = string.Empty;
  1627. }
  1628. else
  1629. {
  1630. string text3 = string.Empty;
  1631. try
  1632. {
  1633. text3 = files[i].Substring(text2.Length, files[i].Length - text2.Length);
  1634. }
  1635. catch
  1636. {
  1637. }
  1638. if (string.IsNullOrEmpty(text3))
  1639. {
  1640. files[i] = string.Empty;
  1641. }
  1642. else if (0 > text3.IndexOf(".png") || text3.IndexOf("_tmp_thum_") != 0)
  1643. {
  1644. files[i] = string.Empty;
  1645. }
  1646. }
  1647. }
  1648. for (int j = 0; j < files.Length; j++)
  1649. {
  1650. if (!string.IsNullOrEmpty(files[j]))
  1651. {
  1652. try
  1653. {
  1654. File.Delete(files[j]);
  1655. }
  1656. catch
  1657. {
  1658. }
  1659. }
  1660. }
  1661. }
  1662. private void FixThumCard()
  1663. {
  1664. string fullPath = Path.GetFullPath(".\\");
  1665. string text = fullPath + "Thumb";
  1666. if (!Directory.Exists(text))
  1667. {
  1668. return;
  1669. }
  1670. string text2 = text + "/_tmp_thum_" + this.status.guid + ".png";
  1671. if (!File.Exists(text2))
  1672. {
  1673. return;
  1674. }
  1675. string text3 = text + "/" + this.status.guid + ".png";
  1676. try
  1677. {
  1678. if (File.Exists(text3))
  1679. {
  1680. File.Delete(text3);
  1681. }
  1682. File.Move(text2, text3);
  1683. }
  1684. catch
  1685. {
  1686. }
  1687. }
  1688. private void CheckOldThumCard()
  1689. {
  1690. string fullPath = Path.GetFullPath(".\\");
  1691. string text = fullPath + "Thumb";
  1692. if (!Directory.Exists(text))
  1693. {
  1694. return;
  1695. }
  1696. string text2 = string.Concat(new string[]
  1697. {
  1698. text,
  1699. "/",
  1700. this.status.guid,
  1701. this.m_strThumCardTime,
  1702. ".png"
  1703. });
  1704. if (!File.Exists(text2))
  1705. {
  1706. return;
  1707. }
  1708. File.Move(text2, text + "/" + this.status.guid + ".png");
  1709. }
  1710. public void ProcSSParam()
  1711. {
  1712. this.boBallGAG = (this.body0.GetSlotUserParam("accHa", "口枷") > 0);
  1713. this.boNoseFook = (this.body0.GetSlotUserParam("accHana", "鼻フック") > 0);
  1714. }
  1715. public void StopAnime(string fn = "")
  1716. {
  1717. this.body0.StopAnime(fn);
  1718. }
  1719. public string CrossFade(string fn, bool additive = false, bool loop = false, bool boAddQue = false, float val = 0.5f, float weight = 1f)
  1720. {
  1721. return this.CrossFade(fn, GameUty.FileSystem, additive, loop, boAddQue, val, weight);
  1722. }
  1723. public string CrossFade(string fn, AFileSystemBase fileSystem, bool additive = false, bool loop = false, bool boAddQue = false, float val = 0.5f, float weight = 1f)
  1724. {
  1725. return this.body0.CrossFade(fn, fileSystem, additive, loop, boAddQue, val, weight);
  1726. }
  1727. public string CrossFadeAbsolute(string fn, bool additive = false, bool loop = false, bool boAddQue = false, float val = 0.5f, float weight = 1f)
  1728. {
  1729. return this.CrossFadeAbsolute(fn, GameUty.FileSystem, additive, loop, boAddQue, val, weight);
  1730. }
  1731. public string CrossFadeAbsolute(string fn, AFileSystemBase fileSystem, bool additive = false, bool loop = false, bool boAddQue = false, float val = 0.5f, float weight = 1f)
  1732. {
  1733. return this.body0.CrossFadeAbsolute(fn, fileSystem, additive, loop, boAddQue, val, weight);
  1734. }
  1735. public Animation GetAnimation()
  1736. {
  1737. return this.body0.GetAnimation();
  1738. }
  1739. private void Start()
  1740. {
  1741. }
  1742. public void ResetAll()
  1743. {
  1744. this.FaceAnime("通常", 0f, 0);
  1745. this.FaceBlend("無し");
  1746. this.OpenMouth(false);
  1747. this.EyeToReset(0f);
  1748. this.DelPrefabAll();
  1749. string[] array = new string[]
  1750. {
  1751. "handitem",
  1752. "kousoku_upper",
  1753. "kousoku_lower",
  1754. "eye_hi",
  1755. "skirt",
  1756. "panz",
  1757. "mizugi",
  1758. "onepiece",
  1759. "accanl",
  1760. "accvag",
  1761. "KubiScl",
  1762. "UdeScl",
  1763. "DouPer",
  1764. "sintyou",
  1765. "kata",
  1766. "seieki_naka"
  1767. };
  1768. for (int i = 0; i < array.Length; i++)
  1769. {
  1770. this.ResetProp(array[i], false);
  1771. }
  1772. if (this.body0 != null && this.body0.isLoadedBody)
  1773. {
  1774. this.body0.SetMaskMode(TBody.MaskMode.None);
  1775. for (int j = 10; j <= 20; j++)
  1776. {
  1777. this.body0.MulTexRemove("body", 0, "_MainTex", j);
  1778. this.body0.MulTexRemove("body", 0, "_ShadowTex", j);
  1779. this.body0.MulTexRemove("head", 5, "_MainTex", j);
  1780. this.body0.MulTexRemove("head", 5, "_ShadowTex", j);
  1781. }
  1782. this.body0.MulTexProc("body");
  1783. this.body0.MulTexProc("head");
  1784. this.SetModeHairR(TBody.ModeHirR.Normal);
  1785. if (this.body0.isLoadedBody)
  1786. {
  1787. this.body0.MuneYureL(1f);
  1788. this.body0.MuneYureR(1f);
  1789. this.IKTargetToBone("左手", null, "無し", Vector3.zero, IKCtrlData.IKAttachType.Point, false, false, false);
  1790. this.IKTargetToBone("右手", null, "無し", Vector3.zero, IKCtrlData.IKAttachType.Point, false, false, false);
  1791. }
  1792. }
  1793. }
  1794. public void Lipsync(bool f_bEnable)
  1795. {
  1796. this.boLipsync = f_bEnable;
  1797. }
  1798. public void LipSyncEnabled(bool enabled)
  1799. {
  1800. this.lipSyncEnabled = enabled;
  1801. }
  1802. public bool MicLipSync
  1803. {
  1804. get
  1805. {
  1806. return this.m_MicLipSync;
  1807. }
  1808. }
  1809. public void SetMicLipSync(bool is_start)
  1810. {
  1811. if (!this.AudioMan)
  1812. {
  1813. Debug.LogError("AudioManが見つかりません");
  1814. return;
  1815. }
  1816. this.m_MicLipSync = is_start;
  1817. this.m_bFoceKuchipakuSelfUpdateTime = is_start;
  1818. if (is_start)
  1819. {
  1820. if (!this.MicLipData.Context)
  1821. {
  1822. this.MicLipData.Context = this.AudioMan.gameObject.AddComponent<LowLatencyLipSyncContext>();
  1823. }
  1824. if (!this.MicLipData.MorphTarget)
  1825. {
  1826. this.MicLipData.MorphTarget = this.AudioMan.gameObject.AddComponent<OVRLipSyncContextMorphTarget>();
  1827. }
  1828. if (!this.MicLipData.MicInput)
  1829. {
  1830. this.MicLipData.MicInput = this.AudioMan.gameObject.AddComponent<OVRLipSyncMicInput>();
  1831. }
  1832. this.MicLipData.Context.Init();
  1833. this.MicLipData.MorphTarget.Init(this);
  1834. this.MicLipData.MicInput.Init(this);
  1835. this.MicLipData.MicInput.StartMicrophone();
  1836. }
  1837. else
  1838. {
  1839. if (this.MicLipData.MicInput)
  1840. {
  1841. this.MicLipData.MicInput.StopMicrophone();
  1842. }
  1843. this.AudioMan.audiosource.clip = null;
  1844. UnityEngine.Object.Destroy(this.MicLipData.Context);
  1845. UnityEngine.Object.Destroy(this.MicLipData.MorphTarget);
  1846. UnityEngine.Object.Destroy(this.MicLipData.MicInput);
  1847. }
  1848. }
  1849. public void StartKuchipakuPattern(float f_fOffsetTime, string f_strPattern, bool f_bSelfUpdateTime = false)
  1850. {
  1851. this.m_fKuchipakuPatternOffsetTime = f_fOffsetTime;
  1852. this.m_baKuchipakuPattern = Convert.FromBase64String(f_strPattern);
  1853. this.m_bFoceKuchipakuSelfUpdateTime = f_bSelfUpdateTime;
  1854. }
  1855. public void StopKuchipakuPattern()
  1856. {
  1857. this.m_fKuchipakuPatternOffsetTime = 0f;
  1858. this.m_baKuchipakuPattern = null;
  1859. this.m_bFoceKuchipakuSelfUpdateTime = false;
  1860. }
  1861. public void IKTargetToAttachPoint(string tag, Maid tgt_maid, string tgt_name, string attachpoint_name, Vector3 f_vecOffset, IKCtrlData.IKAttachType attach_type = IKCtrlData.IKAttachType.Point, string axisbone = "", bool do_animation = false, bool is_next = false)
  1862. {
  1863. IKCtrlData ikdata = this.body0.IKCtrl.GetIKData(tag, true);
  1864. Transform axis_bone = null;
  1865. if (attach_type != IKCtrlData.IKAttachType.Rotate && !string.IsNullOrEmpty(axisbone))
  1866. {
  1867. axis_bone = CMT.SearchObjName(tgt_maid.body0.m_trBones, axisbone, true);
  1868. }
  1869. ikdata.SetIKSetting(attach_type, is_next, tgt_maid, this.body0.GetSlotNo(tgt_name), attachpoint_name, axis_bone, f_vecOffset, do_animation);
  1870. }
  1871. public void IKTargetToBone(string tag, Maid tgt_maid, string tgtbone_name, Vector3 f_vecOffset, IKCtrlData.IKAttachType attach_type = IKCtrlData.IKAttachType.Point, bool search_sm = false, bool do_animation = false, bool is_next = false)
  1872. {
  1873. IKCtrlData ikdata = this.IKCtrl.GetIKData(tag, true);
  1874. if (tgtbone_name != "無し")
  1875. {
  1876. Transform target;
  1877. if (!search_sm)
  1878. {
  1879. target = CMT.SearchObjName(tgt_maid.body0.m_trBones, tgtbone_name, true);
  1880. }
  1881. else
  1882. {
  1883. target = CMT.SearchObjName(tgt_maid.body0.SmBody, tgtbone_name, false);
  1884. }
  1885. ikdata.SetIKSetting(attach_type, is_next, tgt_maid, target, f_vecOffset, do_animation);
  1886. }
  1887. else
  1888. {
  1889. ikdata.Detach(IKCtrlData.IKAttachType.NewPoint);
  1890. ikdata.Detach(IKCtrlData.IKAttachType.Rotate);
  1891. }
  1892. }
  1893. public void IKTargetToOdogu(string tag, string odogu_name, string tgt_name, Vector3 f_vecOffset, IKCtrlData.IKAttachType attach_type = IKCtrlData.IKAttachType.Point, bool do_animation = false, bool is_next = false)
  1894. {
  1895. Transform transform = null;
  1896. GameObject prefabFromBg = GameMain.Instance.BgMgr.GetPrefabFromBg(odogu_name);
  1897. if (!prefabFromBg)
  1898. {
  1899. Debug.LogErrorFormat("現在の背景に大道具「{0}」は存在しません", new object[]
  1900. {
  1901. odogu_name
  1902. });
  1903. }
  1904. else if (prefabFromBg.transform.childCount == 0 || string.IsNullOrEmpty(tgt_name))
  1905. {
  1906. transform = prefabFromBg.transform;
  1907. }
  1908. else
  1909. {
  1910. for (int i = 0; i < prefabFromBg.transform.childCount; i++)
  1911. {
  1912. Transform child = prefabFromBg.transform.GetChild(i);
  1913. if (child && !(child.name != tgt_name))
  1914. {
  1915. transform = prefabFromBg.transform.GetChild(i);
  1916. break;
  1917. }
  1918. }
  1919. if (!transform)
  1920. {
  1921. Debug.LogErrorFormat("大道具「{0}」にターゲット「{1}」は存在しません", new object[]
  1922. {
  1923. odogu_name,
  1924. tgt_name
  1925. });
  1926. }
  1927. }
  1928. IKCtrlData ikdata = this.IKCtrl.GetIKData(tag, true);
  1929. ikdata.SetIKSetting(attach_type, is_next, transform, f_vecOffset, do_animation);
  1930. }
  1931. public void IKTargetToIKBone(string my_tag, Maid f_maidTarget, string bone_name, Vector3 f_vecOffset, IKCtrlData.IKAttachType attach_type = IKCtrlData.IKAttachType.Point, bool do_animation = false, bool is_next = false)
  1932. {
  1933. IKCtrlData ikdata = f_maidTarget.IKCtrl.GetIKData(bone_name, true);
  1934. if (!ikdata)
  1935. {
  1936. return;
  1937. }
  1938. Transform targetBone = ikdata.TargetBone;
  1939. IKCtrlData ikdata2 = this.IKCtrl.GetIKData(my_tag, true);
  1940. ikdata2.SetIKSetting(attach_type, is_next, f_maidTarget, bone_name, targetBone, f_vecOffset, do_animation);
  1941. }
  1942. public void IKDetach(string name)
  1943. {
  1944. this.IKTargetToBone(name, null, "無し", Vector3.zero, IKCtrlData.IKAttachType.Point, false, false, false);
  1945. }
  1946. public void AllIKDetach(float blendtime = 0f)
  1947. {
  1948. this.IKCtrl.BlendTime = blendtime;
  1949. this.IKCtrl.IKActive = (blendtime > 0f);
  1950. this.IKCtrl.AllForceIK = false;
  1951. foreach (string tag in this.IKCtrl.strIKDataPair.Keys)
  1952. {
  1953. this.IKTargetToBone(tag, null, "無し", Vector3.zero, IKCtrlData.IKAttachType.Point, false, false, false);
  1954. }
  1955. }
  1956. public void OpenMouth(bool f_bOpen)
  1957. {
  1958. this.boMouthOpen = f_bOpen;
  1959. }
  1960. public void OpenMouthLookTooth(bool f_bOpen)
  1961. {
  1962. this.boLookTooth = f_bOpen;
  1963. }
  1964. public void EyeToPosition(Vector3 f_vecTargetPos, float f_fFadeTime = 0f)
  1965. {
  1966. if (f_fFadeTime <= 0f)
  1967. {
  1968. f_fFadeTime = 0.001f;
  1969. }
  1970. this.body0.HeadToCamFadeSpeed = 1f / f_fFadeTime;
  1971. this.body0.trsLookTarget = null;
  1972. this.body0.offsetLookTarget = f_vecTargetPos;
  1973. this.body0.boHeadToCam = true;
  1974. this.body0.boEyeToCam = true;
  1975. this.body0.boEyeSorashi = false;
  1976. }
  1977. public void EyeToTargetObject(Transform target_trans, float f_fFadeTime = 0f)
  1978. {
  1979. this.body0.trsLookTarget = target_trans;
  1980. if (this.body0.trsLookTarget == null)
  1981. {
  1982. this.body0.offsetLookTarget = new Vector3(0f, 1f, 0f);
  1983. }
  1984. if (f_fFadeTime <= 0f)
  1985. {
  1986. f_fFadeTime = 0.001f;
  1987. }
  1988. this.body0.HeadToCamFadeSpeed = 1f / f_fFadeTime;
  1989. this.body0.boHeadToCam = true;
  1990. this.body0.boEyeToCam = true;
  1991. this.body0.boEyeSorashi = false;
  1992. }
  1993. public void EyeToTarget(Maid f_maidTarget, float f_fFadeTime = 0f, string f_strBoneName = "Bip01 Head")
  1994. {
  1995. Transform transform = CMT.SearchObjName(f_maidTarget.body0.m_trBones, f_strBoneName, true);
  1996. this.body0.trsLookTarget = transform;
  1997. if (transform == null)
  1998. {
  1999. this.body0.offsetLookTarget = new Vector3(0f, 1f, 0f);
  2000. }
  2001. if (f_fFadeTime <= 0f)
  2002. {
  2003. f_fFadeTime = 0.001f;
  2004. }
  2005. this.body0.HeadToCamFadeSpeed = 1f / f_fFadeTime;
  2006. this.body0.boHeadToCam = true;
  2007. this.body0.boEyeToCam = true;
  2008. this.body0.boEyeSorashi = false;
  2009. }
  2010. public void EyeToCamera(Maid.EyeMoveType f_eType, float f_fFadeTime = 0f)
  2011. {
  2012. this.body0.boHeadToCam = false;
  2013. this.body0.boEyeToCam = true;
  2014. this.body0.boEyeSorashi = false;
  2015. if (f_fFadeTime <= 0f)
  2016. {
  2017. f_fFadeTime = 0.001f;
  2018. }
  2019. this.body0.HeadToCamFadeSpeed = 1f / f_fFadeTime;
  2020. if (GameMain.Instance.VRMode)
  2021. {
  2022. if (GameMain.Instance.OvrMgr != null)
  2023. {
  2024. this.body0.trsLookTarget = GameMain.Instance.OvrMgr.EyeAnchor;
  2025. }
  2026. if (GameMain.Instance.OvrIK != null && OvrIK.IsVRIKMode && GameMain.Instance.OvrIK.NowMaid == this)
  2027. {
  2028. this.body0.trsLookTarget = GameMain.Instance.OvrIK.EyeTargetTrs;
  2029. }
  2030. }
  2031. else if (GameMain.Instance.MainCamera != null)
  2032. {
  2033. this.body0.trsLookTarget = GameMain.Instance.MainCamera.transform;
  2034. }
  2035. if (f_eType == Maid.EyeMoveType.無し)
  2036. {
  2037. this.body0.boEyeToCam = false;
  2038. }
  2039. if (f_eType == Maid.EyeMoveType.無視する)
  2040. {
  2041. this.body0.boEyeToCam = false;
  2042. }
  2043. if (f_eType == Maid.EyeMoveType.顔を向ける)
  2044. {
  2045. this.body0.boHeadToCam = true;
  2046. }
  2047. if (f_eType == Maid.EyeMoveType.顔だけ動かす)
  2048. {
  2049. this.body0.boHeadToCam = true;
  2050. this.body0.boEyeToCam = false;
  2051. }
  2052. if (f_eType == Maid.EyeMoveType.顔をそらす)
  2053. {
  2054. this.body0.trsLookTarget = null;
  2055. this.body0.boEyeSorashi = true;
  2056. this.body0.boEyeToCam = true;
  2057. this.body0.boHeadToCam = true;
  2058. }
  2059. if (f_eType == Maid.EyeMoveType.目と顔を向ける)
  2060. {
  2061. this.body0.boHeadToCam = true;
  2062. this.body0.boEyeToCam = true;
  2063. }
  2064. if (f_eType == Maid.EyeMoveType.目だけ向ける)
  2065. {
  2066. this.body0.boHeadToCam = false;
  2067. this.body0.boEyeToCam = true;
  2068. }
  2069. if (f_eType == Maid.EyeMoveType.目だけそらす)
  2070. {
  2071. this.body0.trsLookTarget = null;
  2072. this.body0.boEyeSorashi = true;
  2073. this.body0.boEyeToCam = true;
  2074. this.body0.boHeadToCam = false;
  2075. }
  2076. }
  2077. public void EyeToReset(float f_fFadeTime = 0f)
  2078. {
  2079. this.EyeToCamera(Maid.EyeMoveType.無し, f_fFadeTime);
  2080. }
  2081. public void LockHeadAndEye(bool toLock)
  2082. {
  2083. this.body0.boLockHeadAndEye = toLock;
  2084. }
  2085. public bool GetLockHeadAndEye()
  2086. {
  2087. return this.body0.boLockHeadAndEye;
  2088. }
  2089. public void SetModeHairR(TBody.ModeHirR f_eMode)
  2090. {
  2091. this.body0.Mode_HairR = f_eMode;
  2092. }
  2093. public void SetAutoTwist(Maid.AutoTwist f_eType, bool f_bEnable)
  2094. {
  2095. switch (f_eType)
  2096. {
  2097. case Maid.AutoTwist.ShoulderL:
  2098. this.body0.boAutoTwistShoulderL = f_bEnable;
  2099. break;
  2100. case Maid.AutoTwist.ShoulderR:
  2101. this.body0.boAutoTwistShoulderR = f_bEnable;
  2102. break;
  2103. case Maid.AutoTwist.WristL:
  2104. this.body0.boAutoTwistWristL = f_bEnable;
  2105. break;
  2106. case Maid.AutoTwist.WristR:
  2107. this.body0.boAutoTwistWristR = f_bEnable;
  2108. break;
  2109. case Maid.AutoTwist.ThighL:
  2110. this.body0.boAutoTwistThighL = f_bEnable;
  2111. break;
  2112. case Maid.AutoTwist.ThighR:
  2113. this.body0.boAutoTwistThighR = f_bEnable;
  2114. break;
  2115. }
  2116. }
  2117. public void SetAutoTwistAll(bool f_bEnable)
  2118. {
  2119. this.body0.boAutoTwistShoulderL = f_bEnable;
  2120. this.body0.boAutoTwistShoulderR = f_bEnable;
  2121. this.body0.boAutoTwistWristL = f_bEnable;
  2122. this.body0.boAutoTwistWristR = f_bEnable;
  2123. this.body0.boAutoTwistThighL = f_bEnable;
  2124. this.body0.boAutoTwistThighR = f_bEnable;
  2125. }
  2126. public void FaceAnime(string tag, float t = 1f, int chkcode = 0)
  2127. {
  2128. this.FaceAnimeChkCode = chkcode;
  2129. this.ActiveFace = tag;
  2130. if (this.body0 != null && this.body0.Face != null && this.body0.Face.morph != null && this.body0.Face.morph.dicBlendSet != null && this.body0.Face.morph.dicBlendSet.ContainsKey(tag + "〓通常"))
  2131. {
  2132. tag += "〓通常";
  2133. }
  2134. if (t == 0f)
  2135. {
  2136. this.boFaceAnime = false;
  2137. this.FaceName = tag;
  2138. this.FaceName2 = string.Empty;
  2139. return;
  2140. }
  2141. this.boFaceAnime = true;
  2142. if (this.FaceName2 != string.Empty)
  2143. {
  2144. this.FaceName = this.FaceName2;
  2145. this.FaceName2 = string.Empty;
  2146. }
  2147. if (this.FaceName == string.Empty)
  2148. {
  2149. this.FaceName = "デフォ";
  2150. }
  2151. this.FaceName2 = tag;
  2152. this.FacePlus = 1f / t;
  2153. this.FaceTime = this.FacePlus * 0.0166666675f;
  2154. }
  2155. public void FaceBlend(string tag)
  2156. {
  2157. if (this.body0 == null)
  2158. {
  2159. Debug.LogError("Bodyが読み込まれる前に、表情ブレンドが呼ばれました。" + tag);
  2160. return;
  2161. }
  2162. if (tag == "無し")
  2163. {
  2164. tag = string.Empty;
  2165. }
  2166. this.FaceName3 = tag;
  2167. }
  2168. public void ChangeAutoFace(bool bo)
  2169. {
  2170. if (this.boAutoFace != bo)
  2171. {
  2172. this.AutoFaceLV_old = 0;
  2173. this.Hazukashi = 0f;
  2174. }
  2175. this.boAutoFace = bo;
  2176. }
  2177. public void AddPrefab(string f_strPrefab, string f_strName, string f_strDestBone, Vector3 f_vOffsetLocalPos, Vector3 f_vOffsetLocalRot)
  2178. {
  2179. UnityEngine.Object @object = Resources.Load("Prefab/" + f_strPrefab);
  2180. if (@object != null)
  2181. {
  2182. Transform transform = null;
  2183. if (this.body0 != null && this.body0.isLoadedBody)
  2184. {
  2185. transform = CMT.SearchObjName(this.body0.m_trBones, f_strDestBone, true);
  2186. }
  2187. if (transform != null)
  2188. {
  2189. GameObject goItem = UnityEngine.Object.Instantiate(@object) as GameObject;
  2190. goItem.AddComponent<AttachPrefab>();
  2191. goItem.name = goItem.name.Replace("(Clone)", string.Empty);
  2192. if (!string.IsNullOrEmpty(f_strName))
  2193. {
  2194. goItem.name = f_strName;
  2195. }
  2196. AttachPrefab[] componentsInChildren = this.body0.m_Bones.GetComponentsInChildren<AttachPrefab>(true);
  2197. AttachPrefab[] array = (from a in componentsInChildren
  2198. where a.name == goItem.name
  2199. select a).ToArray<AttachPrefab>();
  2200. for (int i = 0; i < array.Length; i++)
  2201. {
  2202. UnityEngine.Object.DestroyImmediate(array[i].gameObject);
  2203. }
  2204. goItem.transform.SetParent(transform, false);
  2205. goItem.transform.localPosition = f_vOffsetLocalPos;
  2206. goItem.transform.localRotation = Quaternion.Euler(f_vOffsetLocalRot);
  2207. }
  2208. else
  2209. {
  2210. Debug.LogError("人物にプレハブ追加で、ボーン名が見つかりません。" + f_strDestBone);
  2211. }
  2212. }
  2213. else
  2214. {
  2215. Debug.LogError("人物にプレハブ追加で、プレハブが見つかりません。Prefab/" + f_strPrefab);
  2216. }
  2217. }
  2218. public void DelPrefab(string f_strName)
  2219. {
  2220. if (this.body0 == null || !this.body0.isLoadedBody)
  2221. {
  2222. return;
  2223. }
  2224. AttachPrefab[] componentsInChildren = this.body0.m_Bones.GetComponentsInChildren<AttachPrefab>(true);
  2225. AttachPrefab[] array = (from a in componentsInChildren
  2226. where a.name == f_strName
  2227. select a).ToArray<AttachPrefab>();
  2228. for (int i = 0; i < array.Length; i++)
  2229. {
  2230. UnityEngine.Object.DestroyImmediate(array[i].gameObject);
  2231. }
  2232. }
  2233. public void DelPrefabAll()
  2234. {
  2235. if (this.body0 == null || !this.body0.isLoadedBody)
  2236. {
  2237. return;
  2238. }
  2239. AttachPrefab[] componentsInChildren = this.body0.m_Bones.GetComponentsInChildren<AttachPrefab>(true);
  2240. for (int i = 0; i < componentsInChildren.Length; i++)
  2241. {
  2242. UnityEngine.Object.DestroyImmediate(componentsInChildren[i].gameObject);
  2243. }
  2244. }
  2245. public GameObject GetPrefab(string f_strName)
  2246. {
  2247. if (this.body0 == null || !this.body0.isLoadedBody)
  2248. {
  2249. return null;
  2250. }
  2251. AttachPrefab[] componentsInChildren = this.body0.m_Bones.GetComponentsInChildren<AttachPrefab>(true);
  2252. AttachPrefab[] array = (from a in componentsInChildren
  2253. where a.name == f_strName
  2254. select a).ToArray<AttachPrefab>();
  2255. return (0 >= array.Length) ? null : array[0].gameObject;
  2256. }
  2257. public void AnimationObject(string f_strName, string f_strAnimName, bool f_bNowPlay, bool f_bLoop)
  2258. {
  2259. Transform transform;
  2260. if ((transform = CMT.SearchObjName(this.body0.m_trBones, f_strName, false)) != null)
  2261. {
  2262. Animation animation = transform.gameObject.GetComponent<Animation>();
  2263. if (animation == null)
  2264. {
  2265. animation = transform.gameObject.AddComponent<Animation>();
  2266. }
  2267. AnimationClip animationClip = ImportCM.LoadAniClipNative(GameUty.FileSystem, f_strAnimName, true, true, true);
  2268. if (animationClip == null)
  2269. {
  2270. NDebug.Assert("アニメーション " + f_strAnimName + " が見つかりません。", false);
  2271. }
  2272. animation.AddClip(animationClip, f_strAnimName);
  2273. animation.clip = animationClip;
  2274. animation.playAutomatically = true;
  2275. animation.wrapMode = ((!f_bLoop) ? WrapMode.Once : WrapMode.Loop);
  2276. if (f_bNowPlay)
  2277. {
  2278. animation.PlayQueued(f_strAnimName, QueueMode.PlayNow);
  2279. }
  2280. this.m_goTestAnim = transform.gameObject;
  2281. }
  2282. else
  2283. {
  2284. NDebug.Assert("人物に追加した " + f_strName + " は見つかりませんでした。", false);
  2285. }
  2286. }
  2287. public void SetPos(Vector3 f_vecLocalPos)
  2288. {
  2289. base.gameObject.transform.localPosition = f_vecLocalPos;
  2290. }
  2291. public void SetRot(Vector3 f_vecLocalRot)
  2292. {
  2293. base.gameObject.transform.localRotation = Quaternion.Euler(f_vecLocalRot);
  2294. }
  2295. public Vector3 GetPos()
  2296. {
  2297. return base.gameObject.transform.localPosition;
  2298. }
  2299. public Vector3 GetRot()
  2300. {
  2301. return base.gameObject.transform.localRotation.eulerAngles;
  2302. }
  2303. public Vector3 GetWorldRot()
  2304. {
  2305. return base.gameObject.transform.rotation.eulerAngles;
  2306. }
  2307. public void SetPosOffset(Vector3 f_vecLocalPos)
  2308. {
  2309. this.m_vOffsetPostion = f_vecLocalPos;
  2310. }
  2311. public void SetPosOffsetFromUdeSclX(string category, float val)
  2312. {
  2313. this.m_vOffsetPostion.x = ((float)this.GetProp(category).value - 50f) * (val / 50f);
  2314. }
  2315. public void SetPosOffsetFromUdeSclY(string category, float val)
  2316. {
  2317. this.m_vOffsetPostion.y = ((float)this.GetProp(category).value - 50f) * (val / 50f);
  2318. }
  2319. public void SetPosOffsetFromUdeSclZ(string category, float val)
  2320. {
  2321. this.m_vOffsetPostion.z = ((float)this.GetProp(category).value - 50f) * (val / 50f);
  2322. }
  2323. public void ExportModBaseMenu(MPN f_mpn)
  2324. {
  2325. MaidProp prop = this.GetProp(f_mpn);
  2326. if (string.IsNullOrEmpty(prop.strFileName))
  2327. {
  2328. NUty.WinMessageBox(NUty.GetWindowHandle(), "現在このスロットにはパーツが設定されていません。", "MOD Export Error", 0);
  2329. return;
  2330. }
  2331. Menu.ExportModScript(this, prop.strFileName, false);
  2332. }
  2333. public void ExportModBaseMqo(MPN f_mpn, string f_strOutFileName)
  2334. {
  2335. MaidProp prop = this.GetProp(f_mpn);
  2336. if (string.IsNullOrEmpty(prop.strFileName))
  2337. {
  2338. NUty.WinMessageBox(NUty.GetWindowHandle(), "現在このスロットにはパーツが設定されていません。", "MQO Export Error", 0);
  2339. return;
  2340. }
  2341. }
  2342. public void FoceKuchipakuUpdate(float f_fNowTime)
  2343. {
  2344. if (this.m_baKuchipakuPattern != null)
  2345. {
  2346. int num = (int)((this.m_fKuchipakuPatternOffsetTime + f_fNowTime) * 30f);
  2347. int num2 = this.m_baKuchipakuPattern.Length / 3;
  2348. if (0 < num && num < num2)
  2349. {
  2350. this.body0.Face.morph.boLipSync = true;
  2351. this.body0.Face.morph.LipSync1 = this.body0.Face.morph.LipSync1 * 0.15f + (float)this.m_baKuchipakuPattern[num * 3] / 255f * 0.85f * 3f;
  2352. this.body0.Face.morph.LipSync2 = this.body0.Face.morph.LipSync2 * 0.15f + (float)this.m_baKuchipakuPattern[num * 3 + 1] / 255f * 0.85f * 3f;
  2353. this.body0.Face.morph.LipSync3 = this.body0.Face.morph.LipSync3 * 0.15f + (float)this.m_baKuchipakuPattern[num * 3 + 2] / 255f * 0.85f * 3f;
  2354. }
  2355. else
  2356. {
  2357. this.body0.Face.morph.boLipSync = false;
  2358. }
  2359. }
  2360. }
  2361. private void Update()
  2362. {
  2363. if (this.boAllProcPropBUSY)
  2364. {
  2365. this.AllProcPropSeq();
  2366. return;
  2367. }
  2368. if (this.boMAN)
  2369. {
  2370. this.m_goOffset.transform.localPosition = this.m_vOffsetPostion;
  2371. return;
  2372. }
  2373. if (!this.body0.isLoadedBody)
  2374. {
  2375. return;
  2376. }
  2377. if (this.boOffsetY)
  2378. {
  2379. float num = this.body0.ToeL.position.y;
  2380. if (this.body0.ToeR.position.y < num)
  2381. {
  2382. num = this.body0.ToeR.position.y;
  2383. }
  2384. num = this.body0.CenterBone.position.y;
  2385. num *= 0.8f;
  2386. float num2 = this.body0.Pelvis.position.y - this.body0.CenterBone.position.y;
  2387. this.m_goOffset.transform.localPosition = new Vector3(0f, -num2 + num2 * this.body0.bonemorph.SnityouOutScale, 0f) + this.m_vOffsetPostion;
  2388. }
  2389. this.body0.Face.morph.boLookTooth = this.boLookTooth;
  2390. this.body0.Face.morph.boBallGAG = (this.boBallGAG | this.boMouthOpen);
  2391. this.body0.Face.morph.boNoseFook = this.boNoseFook;
  2392. if (this.AudioMan != null && !this.m_bFoceKuchipakuSelfUpdateTime)
  2393. {
  2394. this.body0.Face.morph.boLipSync = this.AudioMan.audiosource.isPlaying;
  2395. if (!this.lipSyncEnabled)
  2396. {
  2397. this.body0.Face.morph.boLipSync = false;
  2398. }
  2399. float voicePara_ = this.VoicePara_1;
  2400. float voicePara_2 = this.VoicePara_3;
  2401. float vol = this.AudioMan.GetVol();
  2402. this.voice_avg1 = this.voice_avg1 * (1f - voicePara_) + vol * voicePara_;
  2403. this.voice_avg2 = this.voice_avg2 * (1f - voicePara_) + this.AudioMan.VAvgMax * voicePara_;
  2404. this.voice_avg1D = this.voice_avg1D * (1f - voicePara_2) + (vol - this.voice_avg1_old) * voicePara_2;
  2405. this.voice_avg2D = this.voice_avg2D * (1f - voicePara_2) + (this.AudioMan.VAvgMax - this.voice_avg2_old) * voicePara_2;
  2406. this.voice_avg1_old = vol;
  2407. this.voice_avg2_old = this.AudioMan.VAvgMax;
  2408. this.voice_ao_time -= Time.deltaTime;
  2409. if (this.voice_ao_time < 0f && this.voice_avg1D > 0f && this.voice_ao_chk0 < -0.05f && this.voice_ao_chk1 > 0.1f)
  2410. {
  2411. this.voice_ao_time = 0.05f;
  2412. this.voice_ao = (this.voice_ao + 1) % 8;
  2413. this.voice_ao_chk0 = 0f;
  2414. this.voice_ao_chk1 = 0f;
  2415. }
  2416. if (this.voice_ao_chk1 < this.voice_avg1D)
  2417. {
  2418. this.voice_ao_chk1 = this.voice_avg1D;
  2419. }
  2420. if (0.1f < this.voice_avg1D)
  2421. {
  2422. this.voice_ao_chk0 = 0f;
  2423. }
  2424. if (this.voice_ao_chk0 > this.voice_avg1D)
  2425. {
  2426. this.voice_ao_chk0 = this.voice_avg1D;
  2427. }
  2428. float num3 = Mathf.Pow(this.voice_avg1, 1f) * 10f * this.VoicePara_2;
  2429. if (this.voice_ao % 2 == 0)
  2430. {
  2431. this.voice_ao_f *= 0.5f;
  2432. }
  2433. else
  2434. {
  2435. this.voice_ao_f = this.voice_ao_f * 0.5f + 0.5f;
  2436. }
  2437. this.voice_lf2 = num3 * this.voice_ao_f;
  2438. this.voice_lf3 = num3 * (1f - this.voice_ao_f);
  2439. this.body0.Face.morph.LipSync2 = this.voice_lf2;
  2440. this.body0.Face.morph.LipSync3 = this.voice_lf3;
  2441. float num4 = Mathf.Pow(this.voice_avg2, 0.5f) * (this.voice_avg2D * 30f * this.VoicePara_4 + 0.5f);
  2442. this.voice_lf1 = num4;
  2443. this.body0.Face.morph.LipSync1 = this.voice_lf1;
  2444. if (this.voice_ao % 4 < 2)
  2445. {
  2446. this.voice_ao_f2 *= 0.5f;
  2447. }
  2448. else
  2449. {
  2450. this.voice_ao_f2 = this.voice_ao_f2 * 0.5f + 0.5f;
  2451. }
  2452. this.body0.Face.morph.LipSync1 *= this.voice_ao_f2;
  2453. this.body0.Face.morph.LipSync2 *= 1f - this.voice_ao_f2;
  2454. this.body0.Face.morph.LipSync3 *= 1f - this.voice_ao_f2;
  2455. this.body0.Face.morph.LipSync1 = Mathf.Clamp01(this.body0.Face.morph.LipSync1 * 0.5f);
  2456. this.body0.Face.morph.LipSync2 = Mathf.Clamp01(this.body0.Face.morph.LipSync2 * 0.5f);
  2457. this.body0.Face.morph.LipSync3 = Mathf.Clamp01(this.body0.Face.morph.LipSync3 * 0.5f);
  2458. }
  2459. if (this.m_baKuchipakuPattern != null && this.lipSyncEnabled && !this.m_bFoceKuchipakuSelfUpdateTime && this.AudioMan != null)
  2460. {
  2461. this.FoceKuchipakuUpdate(this.AudioMan.audiosource.time);
  2462. }
  2463. if (this.boLipsync && this.lipSyncEnabled)
  2464. {
  2465. this.body0.Face.morph.boLipSync = true;
  2466. this.LipsyncT1 += Mathf.Sin(Time.time * 10f) * 0.5f + Mathf.Cos(Time.time * 5.55f) * 0.1f * 0.2f;
  2467. this.LipsyncT2 += Mathf.Sin(Time.time * 5f) * 0.1f + Mathf.Cos(Time.time * 5.55f) * 0.1f * 0.2f;
  2468. float num5 = (1f + Mathf.Sin(Time.time * 4f + this.LipsyncT1)) * 0.5f * 0.98f + 0.1f;
  2469. float num6 = (Mathf.Sin(this.LipsyncT1) + 1f) * 0.5f;
  2470. float num7 = (Mathf.Sin(this.LipsyncT2) + 1f) * 0.5f;
  2471. this.body0.Face.morph.LipSync1 = num5 * num6 * num7 * 0.5f;
  2472. this.body0.Face.morph.LipSync3 = num5 * (1f - num6) * num7 * 0.5f;
  2473. this.body0.Face.morph.LipSync2 = num5 * (1f - num7) * 0.5f;
  2474. }
  2475. else if (this.boLipsync_old)
  2476. {
  2477. this.body0.Face.morph.LipSync1 = 0f;
  2478. this.body0.Face.morph.LipSync3 = 0f;
  2479. this.body0.Face.morph.LipSync2 = 0f;
  2480. }
  2481. this.boLipsync_old = this.boLipsync;
  2482. if (this.boMabataki)
  2483. {
  2484. this.body0.Face.morph.ClearBlendValues();
  2485. if (this.FaceName != string.Empty)
  2486. {
  2487. this.body0.Face.morph.MulBlendValues(this.FaceName, 1f);
  2488. }
  2489. if (this.FaceName2 != string.Empty)
  2490. {
  2491. this.body0.Face.morph.MulBlendValues(this.FaceName2, UTY.COSS2(Mathf.Pow(this.FaceTime, 0.4f), 4f));
  2492. this.FaceTime += Time.deltaTime * this.FacePlus;
  2493. if (this.FaceTime >= 1f)
  2494. {
  2495. this.boFaceAnime = false;
  2496. this.FaceName = this.FaceName2;
  2497. this.FaceName2 = string.Empty;
  2498. }
  2499. }
  2500. if (this.FaceName3 != string.Empty)
  2501. {
  2502. this.body0.Face.morph.AddBlendValues(this.FaceName3, 1f);
  2503. }
  2504. if (this.MabatakiVal > 0f)
  2505. {
  2506. float num8 = this.MabatakiVal * this.MabatakiVal;
  2507. num8 = Mathf.Sin(num8 * 3.14159274f);
  2508. this.body0.Face.morph.EyeMabataki = num8;
  2509. }
  2510. else
  2511. {
  2512. this.body0.Face.morph.EyeMabataki = 0f;
  2513. }
  2514. if (!this.MabatakiUpdateStop)
  2515. {
  2516. this.MabatakiVal -= Time.deltaTime * 2f;
  2517. }
  2518. this.body0.Face.morph.FixBlendValues_Face();
  2519. if (!this.boFaceAnime && this.NextMabatakiTime < Time.time && !this.MabatakiUpdateStop)
  2520. {
  2521. float num9 = 0.5f + (float)UTY.GetRnd(80) * 0.1f;
  2522. this.NextMabatakiTime = Time.time + num9;
  2523. this.MabatakiVal = 1f;
  2524. }
  2525. }
  2526. else if (this.FaceName2 != string.Empty)
  2527. {
  2528. this.body0.Face.morph.ClearBlendValues();
  2529. if (this.FaceName != string.Empty)
  2530. {
  2531. this.body0.Face.morph.MulBlendValues(this.FaceName, 1f);
  2532. }
  2533. this.body0.Face.morph.MulBlendValues(this.FaceName2, UTY.COSS2(Mathf.Pow(this.FaceTime, 0.4f), 4f));
  2534. this.FaceTime += Time.deltaTime * this.FacePlus;
  2535. if (this.FaceTime >= 1f)
  2536. {
  2537. this.boFaceAnime = false;
  2538. this.FaceName = this.FaceName2;
  2539. this.FaceName2 = string.Empty;
  2540. }
  2541. this.MabatakiVal = 0f;
  2542. this.body0.Face.morph.FixBlendValues_Face();
  2543. }
  2544. }
  2545. private void LateUpdate()
  2546. {
  2547. if (this.boAllProcPropBUSY)
  2548. {
  2549. return;
  2550. }
  2551. if (!this.body0.isLoadedBody)
  2552. {
  2553. return;
  2554. }
  2555. if (this.m_MotionLoad == 1)
  2556. {
  2557. this.m_MotionLoad = 0;
  2558. if (!this.boMAN)
  2559. {
  2560. this.CrossFade("maid_stand01.anm", false, true, false, 0.5f, 1f);
  2561. this.FaceAnime("通常", 1f, 0);
  2562. if (GameMain.Instance.VRMode)
  2563. {
  2564. if (GameMain.Instance.OvrMgr != null)
  2565. {
  2566. this.body0.trsLookTarget = GameMain.Instance.OvrMgr.EyeAnchor;
  2567. }
  2568. }
  2569. else if (GameMain.Instance.MainCamera != null)
  2570. {
  2571. this.body0.trsLookTarget = GameMain.Instance.MainCamera.transform;
  2572. }
  2573. }
  2574. }
  2575. }
  2576. public GameObject m_goOffset;
  2577. private Status m_Status;
  2578. private MaidParts m_Parts;
  2579. private bool m_visible;
  2580. public Action<Maid> onMouseUpEvent;
  2581. public string TypeName = string.Empty;
  2582. public TBody body0;
  2583. public bool boMAN;
  2584. public bool boNPC;
  2585. public bool boOffsetY = true;
  2586. private Dictionary<string, MaidProp> m_dicMaidProp = new Dictionary<string, MaidProp>();
  2587. private MaidProp[] m_aryMaidProp;
  2588. private Hashtable m_hashMaidPropLower = new Hashtable();
  2589. private int m_nActiveSlotNo = -1;
  2590. private string m_strThumCardTime = string.Empty;
  2591. private Texture2D m_texIcon;
  2592. private Color m_colMan = new Color(0f, 0.09f, 1f, 1f);
  2593. private int m_nVoicePitch = 50;
  2594. private bool boModelChg;
  2595. public bool boAllProcPropBUSY;
  2596. private int AllProcProp2Fase;
  2597. private int AllProcProp2Cnt;
  2598. public bool boLookTooth;
  2599. public bool boBallGAG;
  2600. public bool boMouthOpen;
  2601. public bool boNoseFook;
  2602. private float m_fKuchipakuPatternOffsetTime;
  2603. public byte[] m_baKuchipakuPattern;
  2604. private bool m_bFoceKuchipakuSelfUpdateTime;
  2605. [Header("音声入力用コンポーネント")]
  2606. public Maid.LipSyncComp MicLipData = new Maid.LipSyncComp();
  2607. private bool m_MicLipSync;
  2608. private bool boAutoFace;
  2609. private float NextMabatakiTime;
  2610. private float MabatakiVal;
  2611. private string FaceName = string.Empty;
  2612. private string FaceName2 = string.Empty;
  2613. public string FaceName3 = string.Empty;
  2614. private float FaceTime;
  2615. private float FacePlus;
  2616. public string ActiveFace = string.Empty;
  2617. public int FaceAnimeChkCode;
  2618. public bool boFaceAnime;
  2619. public int OldFaceAtr;
  2620. public bool boShitakaraNozoku;
  2621. public bool boVisibleBottom;
  2622. public int AutoFaceLV_old;
  2623. public float Hazukashi;
  2624. public bool boChkEye_old;
  2625. public GameObject m_goTestAnim;
  2626. public float voice_time;
  2627. public float voice_avg1;
  2628. public float voice_avg2;
  2629. public float voice_avg1_old;
  2630. public float voice_avg2_old;
  2631. public float voice_avg1D;
  2632. public float voice_avg2D;
  2633. public int voice_ao;
  2634. public float voice_ao_f;
  2635. public float voice_ao_f2;
  2636. public float voice_ao_time;
  2637. public float voice_ao_chk0;
  2638. public float voice_ao_chk1;
  2639. public float voice_lf1;
  2640. public float voice_lf2;
  2641. public float voice_lf3;
  2642. public float VoicePara_1 = 0.5f;
  2643. public float VoicePara_2 = 0.074f;
  2644. public float VoicePara_3 = 0.5f;
  2645. public float VoicePara_4 = 0.05f;
  2646. private bool lipSyncEnabled = true;
  2647. private bool boLipsync;
  2648. private bool boLipsync_old;
  2649. private float LipsyncT1;
  2650. private float LipsyncT2;
  2651. public bool boMabataki = true;
  2652. public bool MabatakiUpdateStop;
  2653. private Vector3 m_vOffsetPostion = Vector3.zero;
  2654. public static int changetest;
  2655. private int m_MotionLoad = 1;
  2656. [Serializable]
  2657. public class LipSyncComp
  2658. {
  2659. [HideInInspector]
  2660. public bool IsInit = true;
  2661. public LowLatencyLipSyncContext Context;
  2662. public OVRLipSyncContextMorphTarget MorphTarget;
  2663. public OVRLipSyncMicInput MicInput;
  2664. }
  2665. public enum EyeMoveType
  2666. {
  2667. 無し,
  2668. 無視する,
  2669. 顔を向ける,
  2670. 顔だけ動かす,
  2671. 顔をそらす,
  2672. 目と顔を向ける,
  2673. 目だけ向ける,
  2674. 目だけそらす
  2675. }
  2676. public enum AutoTwist
  2677. {
  2678. ShoulderL,
  2679. ShoulderR,
  2680. WristL,
  2681. WristR,
  2682. ThighL,
  2683. ThighR
  2684. }
  2685. }