1
0

MultipleMaids.Update.cs 449 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573
  1. using ExIni;
  2. using System;
  3. using System.Collections;
  4. using System.Collections.Generic;
  5. using System.IO;
  6. using System.Linq;
  7. using UnityEngine;
  8. using UnityEngine.PostProcessing;
  9. using UnityEngine.Rendering;
  10. using Object = UnityEngine.Object;
  11. namespace CM3D2.MultipleMaids.Plugin
  12. {
  13. public partial class MultipleMaids
  14. {
  15. public void Update()
  16. {
  17. if (!isInit)
  18. {
  19. return;
  20. }
  21. if (bGui)
  22. {
  23. if (Input.mouseScrollDelta.y != 0f)
  24. {
  25. if (rectWin.Contains(Event.current.mousePosition)
  26. || (sceneFlg && sceneManagerRect.Contains(Event.current.mousePosition))
  27. || (manageSceneFlag && sceneModalRect.Contains(Event.current.mousePosition)))
  28. {
  29. GameMain.Instance.MainCamera.SetControl(false);
  30. Input.ResetInputAxes();
  31. }
  32. }
  33. }
  34. if (allowUpdate)
  35. {
  36. MaidUpdate();
  37. if (isFadeOut)
  38. {
  39. bool flag = false;
  40. for (int index = 0; index < maxMaidCnt; ++index)
  41. {
  42. if (maidArray[index] && maidArray[index].Visible && maidArray[index].IsAllProcPropBusy)
  43. {
  44. flag = true;
  45. }
  46. }
  47. if (!flag)
  48. {
  49. if (!isBusyInit)
  50. {
  51. isBusyInit = true;
  52. }
  53. else
  54. {
  55. for (int index1 = 0; index1 < maxMaidCnt; ++index1)
  56. {
  57. if (!isLock[index1] && maidArray[index1] != null)
  58. {
  59. maidArray[index1].CrossFade(poseArray[0] + ".anm", false, true, false, 0.0f, 1f);
  60. maidArray[index1].SetAutoTwistAll(true);
  61. }
  62. poseCount[index1] = 30;
  63. if (maidArray[index1] && maidArray[index1].Visible)
  64. {
  65. maidArray[index1].body0.BoneHitHeightY = -10f;
  66. if (selectList.Count > index1 && goSlot[(int)selectList[index1]] == null)
  67. {
  68. maidArray[index1].CrossFade(poseArray[0] + ".anm", false, true, false, 0.0f, 1f);
  69. maidArray[index1].SetAutoTwistAll(true);
  70. goSlot[(int)selectList[index1]] =
  71. new List<TBodySkin>(maidArray[index1].body0.goSlot);
  72. bodyHit[(int)selectList[index1]] = new List<TBodyHit>();
  73. for (int index2 = 0; index2 < goSlot[(int)selectList[index1]].Count; ++index2)
  74. {
  75. TBodyHit tbodyHit = new TBodyHit();
  76. TBodyHit bodyhit = maidArray[index1].body0.goSlot[index2].bonehair.bodyhit;
  77. if (bodyhit != null)
  78. {
  79. tbodyHit.spherelist = new List<THitSphere>(bodyhit.spherelist);
  80. tbodyHit.m_listHandHitL =
  81. new List<THitSphere>(bodyhit.m_listHandHitL);
  82. tbodyHit.m_listHandHitR =
  83. new List<THitSphere>(bodyhit.m_listHandHitR);
  84. tbodyHit.RotOffset = bodyhit.RotOffset;
  85. tbodyHit.tRoot = bodyhit.tRoot;
  86. tbodyHit.skrt_R1 = bodyhit.skrt_R1;
  87. tbodyHit.skrt_R2 = bodyhit.skrt_R2;
  88. tbodyHit.skrt_R3 = bodyhit.skrt_R3;
  89. tbodyHit.skrt_L1 = bodyhit.skrt_L1;
  90. tbodyHit.skrt_L2 = bodyhit.skrt_L2;
  91. tbodyHit.skrt_L3 = bodyhit.skrt_L3;
  92. tbodyHit.MOMO_FUTO = bodyhit.MOMO_FUTO;
  93. tbodyHit.HARA_FUTO = bodyhit.HARA_FUTO;
  94. tbodyHit.KOSHI_SCL = bodyhit.KOSHI_SCL;
  95. tbodyHit.KOSHI_SVAL = bodyhit.KOSHI_SVAL;
  96. tbodyHit.BodySkinTAG = bodyhit.BodySkinTAG;
  97. tbodyHit.SkirtFT = bodyhit.SkirtFT;
  98. tbodyHit.MST = bodyhit.MST;
  99. tbodyHit.MST_v = bodyhit.MST_v;
  100. }
  101. bodyHit[(int)selectList[index1]].Add(tbodyHit);
  102. }
  103. if (!isVR)
  104. {
  105. try
  106. {
  107. shodaiFlg[(int)selectList[index1]] = false;
  108. TMorph morph = maidArray[index1].body0.Face.morph;
  109. float num =
  110. GetFieldValue<TMorph, float[]>(morph, "BlendValues")
  111. [(int)morph.hash["tangopen"]];
  112. }
  113. catch
  114. {
  115. shodaiFlg[(int)selectList[index1]] = true;
  116. }
  117. if (!isVR)
  118. {
  119. eyeL[(int)selectList[index1]] = maidArray[index1].body0.quaDefEyeL.eulerAngles;
  120. eyeR[(int)selectList[index1]] = maidArray[index1].body0.quaDefEyeR.eulerAngles;
  121. }
  122. }
  123. if (isKamiyure)
  124. {
  125. for (int index2 = 0; index2 < maidArray[index1].body0.goSlot.Count; ++index2)
  126. {
  127. if (index2 >= 3 && index2 <= 6
  128. && maidArray[index1].body0.goSlot[index2].obj != null)
  129. {
  130. DynamicBone component = maidArray[index1]
  131. .body0.goSlot[index2].obj.GetComponent<DynamicBone>();
  132. if (component != null)
  133. {
  134. component.m_Damping = kamiyure2;
  135. component.m_Elasticity = kamiyure3;
  136. if (index2 == 5)
  137. {
  138. component.m_Elasticity = kamiyure3 / 20f;
  139. }
  140. component.m_Radius = kamiyure4;
  141. component.UpdateParameters();
  142. }
  143. }
  144. }
  145. }
  146. }
  147. }
  148. }
  149. isBusyInit = false;
  150. GameMain.Instance.MainCamera.FadeIn(1f, false, null, true, true, new Color());
  151. isFadeOut = false;
  152. bGui = true;
  153. }
  154. }
  155. }
  156. }
  157. if (isVR && isVRScroll && !getModKeyPressing(modKey.Ctrl) && !getModKeyPressing(modKey.Alt)
  158. && !Input.GetKey(KeyCode.Space) && !Input.GetKey(KeyCode.Z)
  159. && !Input.GetKey(KeyCode.X) && !Input.GetKey(KeyCode.W)
  160. && !Input.GetKey(KeyCode.Q)
  161. && !Input.GetKey(KeyCode.R)
  162. && !Input.GetKey(KeyCode.E) && !Input.GetKey(KeyCode.Y)
  163. && !Input.GetKey(KeyCode.V)
  164. && !Input.GetKey(KeyCode.C)
  165. && !Input.GetKey(KeyCode.D)
  166. && !Input.GetKey(KeyCode.S))
  167. {
  168. string VRCamera;
  169. GameMain.VRFamilyType VRFamily = GameMain.Instance.VRFamily;
  170. if (VRFamily == GameMain.VRFamilyType.Oculus) VRCamera = "TrackingSpace/CenterEyeAnchor";
  171. else if (VRFamily == GameMain.VRFamilyType.FOVE) VRCamera = "Fove Interface";
  172. else VRCamera = "Main Camera (eye)"; // implies VRFamilyType.HTC and VRFamilyType.NON
  173. Vector3 maid = GetFieldValue<OvrCamera, Vector3>(GameMain.Instance.OvrMgr.OvrCamera, "v")
  174. + UTY.GetChildObject(mainCamera.gameObject, VRCamera, false).transform.rotation
  175. * Vector3.forward
  176. * (Input.GetAxis("Mouse ScrollWheel") * (float)(5.0 * Time.deltaTime * 2.0 * 5.0));
  177. SetFieldValue3<OvrCamera, Vector3>(GameMain.Instance.OvrMgr.OvrCamera, "v", maid);
  178. Transform fieldValue = GetFieldValue<OvrCamera, Transform>(GameMain.Instance.OvrMgr.OvrCamera, "m_trBaseHead");
  179. fieldValue.position = maid;
  180. SetFieldValue4<OvrCamera, Transform>(GameMain.Instance.OvrMgr.OvrCamera, "m_trBaseHead", fieldValue);
  181. }
  182. if (isMekure1a || isMekure2a || isZurasia)
  183. {
  184. mekureCount = 10;
  185. for (int index = 0; index < maidCnt; ++index)
  186. {
  187. if (maidArray[index] && maidArray[index].Visible)
  188. {
  189. if (isMekure1a)
  190. {
  191. if (isMekure1)
  192. {
  193. maidArray[index].ItemChangeTemp("skirt", "めくれスカート");
  194. maidArray[index].ItemChangeTemp("onepiece", "めくれスカート");
  195. }
  196. else
  197. {
  198. ResetProp(maidArray[index], MPN.skirt);
  199. ResetProp(maidArray[index], MPN.onepiece);
  200. }
  201. maidArray[index].AllProcPropSeqStart();
  202. }
  203. if (isMekure2a)
  204. {
  205. if (isMekure2)
  206. {
  207. maidArray[index].ItemChangeTemp("skirt", "めくれスカート後ろ");
  208. maidArray[index].ItemChangeTemp("onepiece", "めくれスカート後ろ");
  209. }
  210. else
  211. {
  212. ResetProp(maidArray[index], MPN.skirt);
  213. ResetProp(maidArray[index], MPN.onepiece);
  214. }
  215. maidArray[index].AllProcPropSeqStart();
  216. }
  217. if (isZurasia)
  218. {
  219. if (isZurasi)
  220. {
  221. maidArray[index].ItemChangeTemp("panz", "パンツずらし");
  222. maidArray[index].ItemChangeTemp("mizugi", "パンツずらし");
  223. }
  224. else
  225. {
  226. ResetProp(maidArray[index], MPN.panz);
  227. ResetProp(maidArray[index], MPN.mizugi);
  228. }
  229. maidArray[index].AllProcPropSeqStart();
  230. }
  231. }
  232. }
  233. isMekure1a = false;
  234. isMekure2a = false;
  235. isZurasia = false;
  236. }
  237. if (mekureCount > 0)
  238. {
  239. --mekureCount;
  240. for (int index1 = 0; index1 < maidCnt; ++index1)
  241. {
  242. if (maidArray[index1] && maidArray[index1].Visible && goSlot[(int)selectList[index1]] != null)
  243. {
  244. maidArray[index1].body0.goSlot = new List<TBodySkin>(goSlot[(int)selectList[index1]]);
  245. for (int index2 = 0; index2 < bodyHit[(int)selectList[index1]].Count; ++index2)
  246. {
  247. maidArray[index1].body0.goSlot[index2].bonehair.bodyhit = bodyHit[(int)selectList[index1]][index2];
  248. }
  249. }
  250. }
  251. }
  252. if (isKamiyure)
  253. {
  254. int num = maidCnt;
  255. if (num == 0)
  256. {
  257. num = 3;
  258. }
  259. for (int index1 = 0; index1 < num; ++index1)
  260. {
  261. if (maidArray[index1] && maidArray[index1].Visible)
  262. {
  263. Maid maid = maidArray[index1];
  264. for (int index2 = 0; index2 < maid.body0.goSlot.Count; ++index2)
  265. {
  266. if (index2 >= 3 && index2 <= 6 && maid.body0.goSlot[index2].obj != null)
  267. {
  268. DynamicBone component = maid.body0.goSlot[index2].obj.GetComponent<DynamicBone>();
  269. if (component != null
  270. && (component.m_Damping != (double)kamiyure2
  271. || component.m_Elasticity != (double)kamiyure3
  272. || component.m_Radius != (double)kamiyure4)
  273. && (index2 != 5 || component.m_Damping != (double)kamiyure2
  274. || component.m_Elasticity != kamiyure3 / 20.0
  275. || component.m_Radius != (double)kamiyure4))
  276. {
  277. component.m_Damping = kamiyure2;
  278. component.m_Elasticity = kamiyure3;
  279. if (index2 == 5)
  280. {
  281. component.m_Elasticity = kamiyure3 / 20f;
  282. }
  283. component.m_Radius = kamiyure4;
  284. component.UpdateParameters();
  285. }
  286. }
  287. }
  288. }
  289. }
  290. }
  291. if (isSkirtyure)
  292. {
  293. int num = maidCnt;
  294. if (num == 0)
  295. {
  296. num = 3;
  297. }
  298. for (int index1 = 0; index1 < num; ++index1)
  299. {
  300. if (maidArray[index1] && maidArray[index1].Visible)
  301. {
  302. for (int index2 = 0; index2 < maidArray[index1].body0.goSlot.Count; ++index2)
  303. {
  304. if (maidArray[index1].body0.goSlot[index2].obj != null)
  305. {
  306. DynamicSkirtBone fieldValue =
  307. GetFieldValue<BoneHair3, DynamicSkirtBone>(maidArray[index1].body0.goSlot[index2].bonehair3,
  308. "m_SkirtBone");
  309. if (fieldValue != null)
  310. {
  311. fieldValue.m_vGravity = new Vector3(0.5f, 0.5f, 0.5f);
  312. if (fieldValue.m_fPanierForce != (double)skirtyure3
  313. || fieldValue.m_fPanierForceDistanceThreshold != (double)skirtyure2
  314. || fieldValue.m_fRegDefaultRadius != (double)skirtyure4)
  315. {
  316. fieldValue.m_fPanierForce = skirtyure3;
  317. fieldValue.m_fPanierForceDistanceThreshold = skirtyure2;
  318. fieldValue.m_fRegDefaultRadius = skirtyure4;
  319. }
  320. }
  321. }
  322. }
  323. }
  324. }
  325. }
  326. if ((!Input.GetKey(KeyCode.KeypadEnter) && Input.GetKeyDown(KeyCode.Keypad1)
  327. || Input.GetKeyDown(KeyCode.Keypad2) || Input.GetKeyDown(KeyCode.Keypad3)
  328. || Input.GetKeyDown(KeyCode.Keypad4) || Input.GetKeyDown(KeyCode.Keypad5)
  329. || Input.GetKeyDown(KeyCode.Keypad6) || Input.GetKeyDown(KeyCode.Keypad7)
  330. || Input.GetKeyDown(KeyCode.Keypad8) || Input.GetKeyDown(KeyCode.Keypad9)
  331. || Input.GetKeyDown(KeyCode.Keypad0) || Input.GetKeyDown(KeyCode.KeypadDivide)
  332. || Input.GetKeyDown(KeyCode.KeypadMultiply)
  333. || Input.GetKeyDown(KeyCode.KeypadMinus)) && (Input.GetKey(KeyCode.H) || isVR))
  334. {
  335. if (Input.GetKeyDown(KeyCode.Keypad1))
  336. {
  337. isWear = !isWear;
  338. }
  339. if (Input.GetKeyDown(KeyCode.Keypad2))
  340. {
  341. isSkirt = !isSkirt;
  342. }
  343. if (Input.GetKeyDown(KeyCode.Keypad3))
  344. {
  345. isBra = !isBra;
  346. }
  347. if (Input.GetKeyDown(KeyCode.Keypad4))
  348. {
  349. isPanz = !isPanz;
  350. }
  351. if (Input.GetKeyDown(KeyCode.Keypad5))
  352. {
  353. isHeadset = !isHeadset;
  354. }
  355. if (Input.GetKeyDown(KeyCode.Keypad6))
  356. {
  357. isAccUde = !isAccUde;
  358. }
  359. if (Input.GetKeyDown(KeyCode.Keypad7))
  360. {
  361. isGlove = !isGlove;
  362. }
  363. if (Input.GetKeyDown(KeyCode.Keypad8))
  364. {
  365. isStkg = !isStkg;
  366. }
  367. if (Input.GetKeyDown(KeyCode.Keypad9))
  368. {
  369. isShoes = !isShoes;
  370. }
  371. if (Input.GetKeyDown(KeyCode.Keypad0))
  372. {
  373. isAccSenaka = !isAccSenaka;
  374. }
  375. if (Input.GetKeyDown(KeyCode.KeypadDivide))
  376. {
  377. isMekure1 = !isMekure1;
  378. }
  379. if (Input.GetKeyDown(KeyCode.KeypadMultiply))
  380. {
  381. isMekure2 = !isMekure2;
  382. }
  383. if (Input.GetKeyDown(KeyCode.KeypadMinus))
  384. {
  385. isZurasi = !isZurasi;
  386. }
  387. h2Flg = true;
  388. if (sceneLevel != 3 && sceneLevel != 5)
  389. {
  390. maidArray[0] = GameMain.Instance.CharacterMgr.GetMaid(0);
  391. maidArray[1] = GameMain.Instance.CharacterMgr.GetMaid(1);
  392. maidArray[2] = GameMain.Instance.CharacterMgr.GetMaid(2);
  393. maidArray[3] = GameMain.Instance.CharacterMgr.GetMaid(3);
  394. maidCnt = 4;
  395. }
  396. for (int index1 = 0; index1 < maidCnt; ++index1)
  397. {
  398. if (maidArray[index1] && maidArray[index1].Visible)
  399. {
  400. if (Input.GetKeyDown(KeyCode.KeypadDivide) || Input.GetKeyDown(KeyCode.KeypadMultiply)
  401. || Input.GetKeyDown(KeyCode.KeypadMinus))
  402. {
  403. if (sceneLevel == 3 || sceneLevel == 5)
  404. {
  405. if (!isVR && goSlot[(int)selectList[index1]] != null)
  406. {
  407. maidArray[index1].body0.goSlot =
  408. new List<TBodySkin>(goSlot[(int)selectList[index1]]);
  409. for (int index2 = 0; index2 < bodyHit[(int)selectList[index1]].Count; ++index2)
  410. {
  411. maidArray[index1].body0.goSlot[index2].bonehair.bodyhit = bodyHit[(int)selectList[index1]][index2];
  412. }
  413. }
  414. if (Input.GetKeyDown(KeyCode.KeypadDivide))
  415. {
  416. isMekure1a = true;
  417. }
  418. if (Input.GetKeyDown(KeyCode.KeypadMultiply))
  419. {
  420. isMekure2a = true;
  421. }
  422. if (Input.GetKeyDown(KeyCode.KeypadMinus))
  423. {
  424. isZurasia = true;
  425. }
  426. }
  427. else
  428. {
  429. if (Input.GetKeyDown(KeyCode.KeypadDivide))
  430. {
  431. if (isMekure1)
  432. {
  433. maidArray[index1].ItemChangeTemp("skirt", "めくれスカート");
  434. maidArray[index1].ItemChangeTemp("onepiece", "めくれスカート");
  435. }
  436. else
  437. {
  438. ResetProp(maidArray[index1], MPN.skirt);
  439. ResetProp(maidArray[index1], MPN.onepiece);
  440. }
  441. maidArray[index1].AllProcPropSeqStart();
  442. }
  443. if (Input.GetKeyDown(KeyCode.KeypadMultiply))
  444. {
  445. if (isMekure2)
  446. {
  447. maidArray[index1].ItemChangeTemp("skirt", "めくれスカート後ろ");
  448. maidArray[index1].ItemChangeTemp("onepiece", "めくれスカート後ろ");
  449. }
  450. else
  451. {
  452. ResetProp(maidArray[index1], MPN.skirt);
  453. ResetProp(maidArray[index1], MPN.onepiece);
  454. }
  455. maidArray[index1].AllProcPropSeqStart();
  456. }
  457. if (Input.GetKeyDown(KeyCode.KeypadMinus))
  458. {
  459. if (isZurasi)
  460. {
  461. maidArray[index1].ItemChangeTemp("panz", "パンツずらし");
  462. maidArray[index1].ItemChangeTemp("mizugi", "パンツずらし");
  463. }
  464. else
  465. {
  466. ResetProp(maidArray[index1], MPN.panz);
  467. ResetProp(maidArray[index1], MPN.mizugi);
  468. }
  469. maidArray[index1].AllProcPropSeqStart();
  470. }
  471. }
  472. }
  473. else
  474. {
  475. Hashtable fieldValue = GetFieldValue<TBody, Hashtable>(maidArray[index1].body0, "m_hFoceHide");
  476. if (Input.GetKeyDown(KeyCode.Keypad1))
  477. {
  478. fieldValue[TBody.SlotID.wear] = isWear;
  479. fieldValue[TBody.SlotID.onepiece] = isWear;
  480. fieldValue[TBody.SlotID.mizugi] = isWear;
  481. }
  482. if (Input.GetKeyDown(KeyCode.Keypad2))
  483. {
  484. fieldValue[TBody.SlotID.skirt] = isSkirt;
  485. }
  486. if (Input.GetKeyDown(KeyCode.Keypad3))
  487. {
  488. fieldValue[TBody.SlotID.bra] = isBra;
  489. }
  490. if (Input.GetKeyDown(KeyCode.Keypad4))
  491. {
  492. fieldValue[TBody.SlotID.panz] = isPanz;
  493. }
  494. if (Input.GetKeyDown(KeyCode.Keypad5))
  495. {
  496. fieldValue[TBody.SlotID.headset] = isHeadset;
  497. fieldValue[TBody.SlotID.accHat] = isHeadset;
  498. }
  499. if (Input.GetKeyDown(KeyCode.Keypad6))
  500. {
  501. fieldValue[TBody.SlotID.accUde] = isAccUde;
  502. }
  503. if (Input.GetKeyDown(KeyCode.Keypad7))
  504. {
  505. fieldValue[TBody.SlotID.glove] = isGlove;
  506. }
  507. if (Input.GetKeyDown(KeyCode.Keypad8))
  508. {
  509. fieldValue[TBody.SlotID.stkg] = isStkg;
  510. }
  511. if (Input.GetKeyDown(KeyCode.Keypad9))
  512. {
  513. fieldValue[TBody.SlotID.shoes] = isShoes;
  514. }
  515. if (Input.GetKeyDown(KeyCode.Keypad0))
  516. {
  517. fieldValue[TBody.SlotID.accSenaka] = isAccSenaka;
  518. }
  519. SetFieldValue6<TBody, Hashtable>(maidArray[index1].body0, "m_hFoceHide", fieldValue);
  520. maidArray[index1].body0.FixMaskFlag();
  521. maidArray[index1].body0.FixVisibleFlag(false);
  522. }
  523. }
  524. }
  525. }
  526. Vector3 vector3_1;
  527. Quaternion rotation;
  528. if (!yotogiFlg && (sceneLevel == 14 || sceneLevel == 24))
  529. {
  530. Maid maid = maidArray[0];
  531. Vector3 vector3_2 = mainCameraTransform.TransformDirection(Vector3.forward);
  532. Vector3 vector3_3 = mainCameraTransform.TransformDirection(Vector3.right);
  533. vector3_1 = mainCameraTransform.TransformDirection(Vector3.up);
  534. if (Input.GetKeyDown(KeyCode.LeftBracket) || Input.GetKeyDown(KeyCode.BackQuote) && getModKeyPressing(modKey.Alt))
  535. {
  536. for (int index = 0; index < 10; ++index)
  537. {
  538. Transform transform1 = maid.transform;
  539. Vector3 position1 = maid.transform.position;
  540. Vector3 right = Vector3.right;
  541. rotation = maid.transform.rotation;
  542. double num1 = -rotation.eulerAngles.x;
  543. transform1.RotateAround(position1, right, (float)num1);
  544. Transform transform2 = maid.transform;
  545. Vector3 position2 = maid.transform.position;
  546. Vector3 forward = Vector3.forward;
  547. rotation = maid.transform.rotation;
  548. double num2 = -rotation.eulerAngles.z;
  549. transform2.RotateAround(position2, forward, (float)num2);
  550. }
  551. }
  552. else if (Input.GetKey(KeyCode.Minus) && getModKeyPressing(modKey.Shift)
  553. || Input.GetKey(KeyCode.I) && getModKeyPressing(modKey.Alt))
  554. {
  555. maid.transform.RotateAround(maid.transform.position, new Vector3(vector3_3.x, 0.0f, vector3_3.z), 0.4f);
  556. }
  557. else if (Input.GetKey(KeyCode.Quote) && getModKeyPressing(modKey.Shift)
  558. || Input.GetKey(KeyCode.K) && getModKeyPressing(modKey.Alt))
  559. {
  560. maid.transform.RotateAround(maid.transform.position, new Vector3(vector3_3.x, 0.0f, vector3_3.z), -0.4f);
  561. }
  562. else if (Input.GetKey(KeyCode.Minus) || Input.GetKey(KeyCode.J) && getModKeyPressing(modKey.Alt))
  563. {
  564. maid.transform.RotateAround(maid.transform.position, new Vector3(vector3_2.x, 0.0f, vector3_2.z), 0.4f);
  565. }
  566. else if (Input.GetKey(KeyCode.Quote) || Input.GetKey(KeyCode.L) && getModKeyPressing(modKey.Alt))
  567. {
  568. maid.transform.RotateAround(maid.transform.position, new Vector3(vector3_2.x, 0.0f, vector3_2.z), -0.4f);
  569. }
  570. if (Input.GetKeyUp(KeyCode.H) && !hFlg)
  571. {
  572. if (h2Flg)
  573. {
  574. h2Flg = false;
  575. }
  576. else
  577. {
  578. if (isVR)
  579. {
  580. isF6 = true;
  581. }
  582. if (!maidArray[0])
  583. {
  584. maidArray[0] = GameMain.Instance.CharacterMgr.GetMaid(0);
  585. }
  586. string str = "";
  587. if (wearIndex == 0)
  588. {
  589. str = "Underwear";
  590. wearIndex = 1;
  591. isWear = false;
  592. isSkirt = false;
  593. isBra = true;
  594. isPanz = true;
  595. isHeadset = false;
  596. isGlove = false;
  597. isStkg = true;
  598. isShoes = false;
  599. }
  600. else if (wearIndex == 1)
  601. {
  602. str = "Nude";
  603. wearIndex = 2;
  604. isWear = false;
  605. isSkirt = false;
  606. isBra = false;
  607. isPanz = false;
  608. isHeadset = false;
  609. isGlove = false;
  610. isStkg = false;
  611. isShoes = false;
  612. }
  613. else if (wearIndex == 2)
  614. {
  615. str = "None";
  616. wearIndex = 0;
  617. isWear = true;
  618. isSkirt = true;
  619. isBra = true;
  620. isPanz = true;
  621. isHeadset = true;
  622. isGlove = true;
  623. isStkg = true;
  624. isShoes = true;
  625. }
  626. TBody.MaskMode f_eMode = (TBody.MaskMode)Enum.Parse(typeof(TBody.MaskMode), str);
  627. for (int index1 = 0; index1 < maidCnt; ++index1)
  628. {
  629. if (maidArray[index1] && maidArray[index1].Visible)
  630. {
  631. if (!isVR && goSlot[(int)selectList[index1]] != null)
  632. {
  633. maidArray[index1].body0.goSlot =
  634. new List<TBodySkin>(goSlot[(int)selectList[index1]]);
  635. for (int index2 = 0; index2 < bodyHit[(int)selectList[index1]].Count; ++index2)
  636. {
  637. maidArray[index1].body0.goSlot[index2].bonehair.bodyhit = bodyHit[(int)selectList[index1]][index2];
  638. }
  639. }
  640. maidArray[index1].body0.SetMaskMode(f_eMode);
  641. }
  642. }
  643. }
  644. }
  645. }
  646. if (isVR)
  647. {
  648. if (Input.GetKey(KeyCode.F7) && Input.GetKeyDown(KeyCode.Alpha1))
  649. {
  650. string bgName = GameMain.Instance.BgMgr.GetBGName();
  651. int num = 0;
  652. foreach (string bg in bgArray)
  653. {
  654. if (bg == bgName)
  655. {
  656. bgIndex = num;
  657. bgIndex6 = num;
  658. break;
  659. }
  660. ++num;
  661. }
  662. lightX[0] = GameMain.Instance.MainLight.transform.eulerAngles.x;
  663. lightY[0] = GameMain.Instance.MainLight.transform.eulerAngles.y;
  664. lightX6 = lightX[0];
  665. lightY6 = lightY[0];
  666. loadScene = 10000;
  667. kankyoLoadFlg = true;
  668. GameMain.Instance.SoundMgr.PlaySe("se002.ogg", false);
  669. }
  670. if (Input.GetKey(KeyCode.F7) && Input.GetKeyDown(KeyCode.Alpha2))
  671. {
  672. string bgName = GameMain.Instance.BgMgr.GetBGName();
  673. int num = 0;
  674. foreach (string bg in bgArray)
  675. {
  676. if (bg == bgName)
  677. {
  678. bgIndex = num;
  679. bgIndex6 = num;
  680. break;
  681. }
  682. ++num;
  683. }
  684. lightX[0] = GameMain.Instance.MainLight.transform.eulerAngles.x;
  685. lightY[0] = GameMain.Instance.MainLight.transform.eulerAngles.y;
  686. lightX6 = lightX[0];
  687. lightY6 = lightY[0];
  688. loadScene = 10001;
  689. kankyoLoadFlg = true;
  690. GameMain.Instance.SoundMgr.PlaySe("se002.ogg", false);
  691. }
  692. if (Input.GetKey(KeyCode.F7) && Input.GetKeyDown(KeyCode.Alpha3))
  693. {
  694. string bgName = GameMain.Instance.BgMgr.GetBGName();
  695. int num = 0;
  696. foreach (string bg in bgArray)
  697. {
  698. if (bg == bgName)
  699. {
  700. bgIndex = num;
  701. bgIndex6 = num;
  702. break;
  703. }
  704. ++num;
  705. }
  706. lightX[0] = GameMain.Instance.MainLight.transform.eulerAngles.x;
  707. lightY[0] = GameMain.Instance.MainLight.transform.eulerAngles.y;
  708. lightX6 = lightX[0];
  709. lightY6 = lightY[0];
  710. loadScene = 10002;
  711. kankyoLoadFlg = true;
  712. GameMain.Instance.SoundMgr.PlaySe("se002.ogg", false);
  713. }
  714. if (Input.GetKey(KeyCode.F7) && Input.GetKeyDown(KeyCode.Alpha4))
  715. {
  716. string bgName = GameMain.Instance.BgMgr.GetBGName();
  717. int num = 0;
  718. foreach (string bg in bgArray)
  719. {
  720. if (bg == bgName)
  721. {
  722. bgIndex = num;
  723. bgIndex6 = num;
  724. break;
  725. }
  726. ++num;
  727. }
  728. lightX[0] = GameMain.Instance.MainLight.transform.eulerAngles.x;
  729. lightY[0] = GameMain.Instance.MainLight.transform.eulerAngles.y;
  730. lightX6 = lightX[0];
  731. lightY6 = lightY[0];
  732. loadScene = 10003;
  733. kankyoLoadFlg = true;
  734. GameMain.Instance.SoundMgr.PlaySe("se002.ogg", false);
  735. }
  736. if (Input.GetKey(KeyCode.F7) && Input.GetKeyDown(KeyCode.Alpha5))
  737. {
  738. string bgName = GameMain.Instance.BgMgr.GetBGName();
  739. int num = 0;
  740. foreach (string bg in bgArray)
  741. {
  742. if (bg == bgName)
  743. {
  744. bgIndex = num;
  745. bgIndex6 = num;
  746. break;
  747. }
  748. ++num;
  749. }
  750. lightX[0] = GameMain.Instance.MainLight.transform.eulerAngles.x;
  751. lightY[0] = GameMain.Instance.MainLight.transform.eulerAngles.y;
  752. lightX6 = lightX[0];
  753. lightY6 = lightY[0];
  754. loadScene = 10004;
  755. kankyoLoadFlg = true;
  756. GameMain.Instance.SoundMgr.PlaySe("se002.ogg", false);
  757. }
  758. if (Input.GetKey(KeyCode.F7) && Input.GetKeyDown(KeyCode.Alpha6))
  759. {
  760. string bgName = GameMain.Instance.BgMgr.GetBGName();
  761. int num = 0;
  762. foreach (string bg in bgArray)
  763. {
  764. if (bg == bgName)
  765. {
  766. bgIndex = num;
  767. bgIndex6 = num;
  768. break;
  769. }
  770. ++num;
  771. }
  772. lightX[0] = GameMain.Instance.MainLight.transform.eulerAngles.x;
  773. lightY[0] = GameMain.Instance.MainLight.transform.eulerAngles.y;
  774. lightX6 = lightX[0];
  775. lightY6 = lightY[0];
  776. loadScene = 10005;
  777. kankyoLoadFlg = true;
  778. GameMain.Instance.SoundMgr.PlaySe("se002.ogg", false);
  779. }
  780. if (Input.GetKey(KeyCode.F7) && Input.GetKeyDown(KeyCode.Alpha7))
  781. {
  782. string bgName = GameMain.Instance.BgMgr.GetBGName();
  783. int num = 0;
  784. foreach (string bg in bgArray)
  785. {
  786. if (bg == bgName)
  787. {
  788. bgIndex = num;
  789. bgIndex6 = num;
  790. break;
  791. }
  792. ++num;
  793. }
  794. lightX[0] = GameMain.Instance.MainLight.transform.eulerAngles.x;
  795. lightY[0] = GameMain.Instance.MainLight.transform.eulerAngles.y;
  796. lightX6 = lightX[0];
  797. lightY6 = lightY[0];
  798. loadScene = 10006;
  799. kankyoLoadFlg = true;
  800. GameMain.Instance.SoundMgr.PlaySe("se002.ogg", false);
  801. }
  802. if (Input.GetKey(KeyCode.F7) && Input.GetKeyDown(KeyCode.Alpha8))
  803. {
  804. string bgName = GameMain.Instance.BgMgr.GetBGName();
  805. int num = 0;
  806. foreach (string bg in bgArray)
  807. {
  808. if (bg == bgName)
  809. {
  810. bgIndex = num;
  811. bgIndex6 = num;
  812. break;
  813. }
  814. ++num;
  815. }
  816. lightX[0] = GameMain.Instance.MainLight.transform.eulerAngles.x;
  817. lightY[0] = GameMain.Instance.MainLight.transform.eulerAngles.y;
  818. lightX6 = lightX[0];
  819. lightY6 = lightY[0];
  820. loadScene = 10007;
  821. kankyoLoadFlg = true;
  822. GameMain.Instance.SoundMgr.PlaySe("se002.ogg", false);
  823. }
  824. if (Input.GetKey(KeyCode.F7) && Input.GetKeyDown(KeyCode.Alpha9))
  825. {
  826. string bgName = GameMain.Instance.BgMgr.GetBGName();
  827. int num = 0;
  828. foreach (string bg in bgArray)
  829. {
  830. if (bg == bgName)
  831. {
  832. bgIndex = num;
  833. bgIndex6 = num;
  834. break;
  835. }
  836. ++num;
  837. }
  838. lightX[0] = GameMain.Instance.MainLight.transform.eulerAngles.x;
  839. lightY[0] = GameMain.Instance.MainLight.transform.eulerAngles.y;
  840. lightX6 = lightX[0];
  841. lightY6 = lightY[0];
  842. loadScene = 10008;
  843. kankyoLoadFlg = true;
  844. GameMain.Instance.SoundMgr.PlaySe("se002.ogg", false);
  845. }
  846. if (Input.GetKey(KeyCode.F7) && Input.GetKeyDown(KeyCode.Alpha0))
  847. {
  848. string bgName = GameMain.Instance.BgMgr.GetBGName();
  849. int num = 0;
  850. foreach (string bg in bgArray)
  851. {
  852. if (bg == bgName)
  853. {
  854. bgIndex = num;
  855. bgIndex6 = num;
  856. break;
  857. }
  858. ++num;
  859. }
  860. lightX[0] = GameMain.Instance.MainLight.transform.eulerAngles.x;
  861. lightY[0] = GameMain.Instance.MainLight.transform.eulerAngles.y;
  862. lightX6 = lightX[0];
  863. lightY6 = lightY[0];
  864. loadScene = 10009;
  865. kankyoLoadFlg = true;
  866. GameMain.Instance.SoundMgr.PlaySe("se002.ogg", false);
  867. }
  868. }
  869. if (isSavePose4)
  870. {
  871. isSavePose4 = false;
  872. Maid maid = maidArray[selectMaidIndex];
  873. Vector3 localEulerAngles = maid.transform.localEulerAngles;
  874. maid.transform.localEulerAngles = new Vector3(0.0f, 0.0f, 0.0f);
  875. Vector3 position = maid.transform.position;
  876. maid.transform.position = new Vector3(0.0f, 0.0f, 0.0f);
  877. Transform transform = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01", true);
  878. transform.eulerAngles = bipRotation;
  879. transform.position = bipPosition;
  880. maid.transform.localEulerAngles = localEulerAngles;
  881. maid.transform.position = position;
  882. CacheBoneDataArray cacheBoneDataArray = maid.gameObject.AddComponent<CacheBoneDataArray>();
  883. cacheBoneDataArray.CreateCache(maid.body0.GetBone("Bip01"));
  884. byte[] anmBinary = cacheBoneDataArray.GetAnmBinary(true, true);
  885. string path1 = Path.GetFullPath(".\\") + "Mod\\MultipleMaidsPose\\" + inName3 + ".anm";
  886. for (int index = 0; index < 100 && File.Exists(path1); ++index)
  887. {
  888. inName3 += "_";
  889. path1 = Path.GetFullPath(".\\") + "Mod\\MultipleMaidsPose\\" + inName3 + ".anm";
  890. }
  891. File.WriteAllBytes(path1, anmBinary);
  892. strList2 = new List<string>();
  893. strListE = new List<string>();
  894. strListE2 = new List<string>();
  895. strListS = new List<string>();
  896. strListD = new List<string>();
  897. strS = "";
  898. List<string> stringList1 = new List<string>(350 + poseArray2.Length);
  899. stringList1.AddRange(poseArray2);
  900. List<string> stringList2 = new List<string>();
  901. for (int index = 11; index < 200; ++index)
  902. {
  903. if (index < 100)
  904. {
  905. using (AFileBase afileBase = GameUty.FileSystem.FileOpen("edit_pose_0" + index + "_f.anm"))
  906. {
  907. if (afileBase.IsValid())
  908. {
  909. stringList2.Add("edit_pose_0" + index + "_f");
  910. }
  911. }
  912. }
  913. else
  914. {
  915. using (AFileBase afileBase = GameUty.FileSystem.FileOpen("edit_pose_" + index + "_f.anm"))
  916. {
  917. if (afileBase.IsValid())
  918. {
  919. stringList2.Add("edit_pose_" + index + "_f");
  920. }
  921. }
  922. }
  923. }
  924. for (int index1 = 15; index1 < 25; ++index1)
  925. {
  926. for (int index2 = 0; index2 < 2; ++index2)
  927. {
  928. string str = "s";
  929. if (index2 == 1)
  930. {
  931. str = "w";
  932. }
  933. for (int index3 = 1; index3 < 20; ++index3)
  934. {
  935. if (index3 < 10)
  936. {
  937. using (AFileBase afileBase =
  938. GameUty.FileSystem.FileOpen("edit_pose_dg" + index1 + str + "_00" + index3
  939. + "_f.anm"))
  940. {
  941. if (afileBase.IsValid())
  942. {
  943. stringList2.Add("edit_pose_dg" + index1 + str + "_00" + index3 + "_f");
  944. }
  945. }
  946. }
  947. else
  948. {
  949. using (AFileBase afileBase =
  950. GameUty.FileSystem.FileOpen("edit_pose_dg" + index1 + str + "_0" + index3
  951. + "_f.anm"))
  952. {
  953. if (afileBase.IsValid())
  954. {
  955. stringList2.Add("edit_pose_dg" + index1 + str + "_0" + index3 + "_f");
  956. }
  957. }
  958. }
  959. }
  960. }
  961. }
  962. if (stringList2.Count > 0)
  963. {
  964. stringList1.AddRange(stringList2.ToArray());
  965. }
  966. stringList1.AddRange(poseArrayVP2);
  967. stringList1.AddRange(poseArrayFB);
  968. stringList1.AddRange(poseArray4);
  969. stringList1.AddRange(poseArray5);
  970. stringList1.AddRange(poseArray6);
  971. poseArray = stringList1.ToArray();
  972. ((Action<string, List<string>>)((path, result_list) =>
  973. {
  974. string[] files = Directory.GetFiles(path);
  975. countS = 0;
  976. for (int index = 0; index < files.Length; ++index)
  977. {
  978. if (Path.GetExtension(files[index]) == ".anm")
  979. {
  980. strListS.Add(files[index].Split('\\')[files[index].Split('\\').Length - 1]
  981. .Split('.')[0] + "                    /"
  982. + files[index]);
  983. ++countS;
  984. }
  985. }
  986. }))(Path.GetFullPath(".\\") + "Mod\\MultipleMaidsPose", new List<string>());
  987. string[] list = GameUty.FileSystem.GetList("motion", AFileSystemBase.ListType.AllFile);
  988. int num1 = 0;
  989. List<string> stringList3 = new List<string>();
  990. foreach (string path2 in list)
  991. {
  992. string withoutExtension = Path.GetFileNameWithoutExtension(path2);
  993. string directoryName = Path.GetDirectoryName(path2);
  994. if (!withoutExtension.StartsWith("maid_motion_") && !withoutExtension.StartsWith("work_00")
  995. && !withoutExtension.EndsWith("_3_")
  996. && !withoutExtension.EndsWith("_5_")
  997. && !withoutExtension.StartsWith("ck_")
  998. && !withoutExtension.StartsWith("vr_")
  999. && !withoutExtension.StartsWith("dance_mc")
  1000. && !withoutExtension.Contains("a01_")
  1001. && !withoutExtension.StartsWith("j_")
  1002. && !withoutExtension.StartsWith("k_")
  1003. && !withoutExtension.StartsWith("t_")
  1004. && !withoutExtension.StartsWith("cbl_")
  1005. && !withoutExtension.Contains("b01_")
  1006. && !withoutExtension.Contains("b02_")
  1007. && !withoutExtension.Contains("_kubi_")
  1008. && !withoutExtension.EndsWith("_m2")
  1009. && !withoutExtension.EndsWith("_m3")
  1010. && !withoutExtension.Contains("_m2_once")
  1011. && !withoutExtension.Contains("_m3_once")
  1012. && !withoutExtension.StartsWith("h_")
  1013. && !withoutExtension.StartsWith("event_")
  1014. && !withoutExtension.StartsWith("man_")
  1015. && !withoutExtension.EndsWith("_m")
  1016. && !withoutExtension.Contains("_m_")
  1017. && !withoutExtension.Contains("_man")
  1018. && !(withoutExtension == "dance_cm3d2_001_zoukin")
  1019. && !(withoutExtension == "dance_cm3d2_001_mop")
  1020. && !(withoutExtension == "maid_motion")
  1021. && !(withoutExtension == "aruki_1_idougo_f")
  1022. && !(withoutExtension == "sleep2")
  1023. && !(withoutExtension == "stand_akire2")
  1024. && !(withoutExtension == "ero_scene_001")
  1025. && !(withoutExtension == "ero_scenefm_001")
  1026. && !(withoutExtension == "training_001")
  1027. && !(withoutExtension == "workff_001")
  1028. && !(withoutExtension == "workfm_001")
  1029. && !(withoutExtension == "dance_cm3d21_005_moe_mset")
  1030. && !(withoutExtension == "hinpyoukai_001"))
  1031. {
  1032. if (!directoryName.Contains("\\sex\\"))
  1033. {
  1034. if (!withoutExtension.StartsWith("sex_"))
  1035. {
  1036. if (withoutExtension.StartsWith("dance_test"))
  1037. {
  1038. strListD.Add(withoutExtension);
  1039. }
  1040. else
  1041. {
  1042. bool flag = false;
  1043. foreach (string str1 in strListS)
  1044. {
  1045. char[] chArray = new char[1] { '/' };
  1046. string str2 = str1.Split(chArray)[0].Replace("                    ", "");
  1047. if (withoutExtension == str2)
  1048. {
  1049. flag = true;
  1050. break;
  1051. }
  1052. }
  1053. if (!flag)
  1054. {
  1055. stringList3.Add(withoutExtension);
  1056. }
  1057. }
  1058. }
  1059. }
  1060. else if (!withoutExtension.StartsWith("pose_"))
  1061. {
  1062. strListE.Add(withoutExtension);
  1063. }
  1064. }
  1065. }
  1066. foreach (string str in stringList3)
  1067. {
  1068. bool flag = false;
  1069. for (int index = 0; index < poseArray.Length; ++index)
  1070. {
  1071. if (str == poseArray[index])
  1072. {
  1073. flag = true;
  1074. }
  1075. }
  1076. if (!flag && str.StartsWith("edit_"))
  1077. {
  1078. strList2.Add(str);
  1079. }
  1080. }
  1081. foreach (string str in stringList3)
  1082. {
  1083. bool flag = false;
  1084. for (int index = 0; index < poseArray.Length; ++index)
  1085. {
  1086. if (str == poseArray[index])
  1087. {
  1088. flag = true;
  1089. }
  1090. }
  1091. if (!flag && str.StartsWith("pose_"))
  1092. {
  1093. strList2.Add(str);
  1094. }
  1095. }
  1096. foreach (string str in stringList3)
  1097. {
  1098. bool flag = false;
  1099. for (int index = 0; index < poseArray.Length; ++index)
  1100. {
  1101. if (str == poseArray[index])
  1102. {
  1103. flag = true;
  1104. }
  1105. }
  1106. if (!flag && !str.StartsWith("edit_") && !str.StartsWith("pose_"))
  1107. {
  1108. strList2.Add(str);
  1109. }
  1110. }
  1111. foreach (string str in strListE)
  1112. {
  1113. bool flag = false;
  1114. for (int index = 0; index < poseArray.Length; ++index)
  1115. {
  1116. if (str == poseArray[index])
  1117. {
  1118. flag = true;
  1119. }
  1120. }
  1121. if (!flag)
  1122. {
  1123. strListE2.Add(str);
  1124. ++num1;
  1125. }
  1126. }
  1127. stringList1.AddRange(strList2.ToArray());
  1128. stringList1.AddRange(strListE2.ToArray());
  1129. existPose = false;
  1130. poseIniStr = "";
  1131. foreach (IniKey key in Preferences["pose"].Keys)
  1132. {
  1133. IniKey iniKey = Preferences["pose"][key.Key];
  1134. if (iniKey.Value != null && iniKey.Value.ToString() != "" && iniKey.Value.ToString() != "del")
  1135. {
  1136. stringList1.AddRange(new string[1] { key.Key });
  1137. existPose = true;
  1138. if (poseIniStr == "")
  1139. {
  1140. poseIniStr = key.Key;
  1141. }
  1142. }
  1143. }
  1144. stringList1.AddRange(strListS.ToArray());
  1145. poseArray = stringList1.ToArray();
  1146. List<string> stringList4 = new List<string>(50 + poseGroupArray2.Length);
  1147. stringList4.AddRange(poseGroupArray2);
  1148. stringList4.AddRange(poseGroupArrayVP);
  1149. stringList4.AddRange(poseGroupArrayFB);
  1150. stringList4.AddRange(poseGroupArray3);
  1151. stringList4.Add(poseArray5[0]);
  1152. stringList4.Add(poseArray6[0]);
  1153. stringList4.Add(strList2[0]);
  1154. stringList4.Add(strListE2[0]);
  1155. existPose = true;
  1156. if (strListS.Count > 0 && poseIniStr == "")
  1157. {
  1158. stringList4.Add(strListS[0]);
  1159. }
  1160. if (poseIniStr != "")
  1161. {
  1162. stringList4.Add(poseIniStr);
  1163. }
  1164. poseGroupArray = stringList4.ToArray();
  1165. groupList = new ArrayList();
  1166. for (int index1 = 0; index1 < poseArray.Length; ++index1)
  1167. {
  1168. for (int index2 = 0; index2 < poseGroupArray.Length; ++index2)
  1169. {
  1170. if (poseGroupArray[index2] == poseArray[index1])
  1171. {
  1172. groupList.Add(index1);
  1173. if (poseGroupArray[index2] == strList2[0])
  1174. {
  1175. sPoseCount = index1;
  1176. }
  1177. }
  1178. }
  1179. }
  1180. poseGroupComboList = new GUIContent[poseGroupArray.Length + 1];
  1181. poseGroupComboList[0] = new GUIContent("1:通常");
  1182. for (int index = 0; index < poseGroupArray.Length; ++index)
  1183. {
  1184. if (poseGroupArray[index] == "maid_dressroom01")
  1185. {
  1186. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":立ち");
  1187. }
  1188. if (poseGroupArray[index] == "tennis_kamae_f")
  1189. {
  1190. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":中腰");
  1191. }
  1192. if (poseGroupArray[index] == "senakanagasi_f")
  1193. {
  1194. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":膝をつく");
  1195. }
  1196. if (poseGroupArray[index] == "work_hansei")
  1197. {
  1198. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":座り");
  1199. }
  1200. if (poseGroupArray[index] == "inu_taiki_f")
  1201. {
  1202. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":四つん這い");
  1203. }
  1204. if (poseGroupArray[index] == "syagami_pose_f")
  1205. {
  1206. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":床座り");
  1207. }
  1208. if (poseGroupArray[index] == "densyasuwari_taiki_f")
  1209. {
  1210. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":椅子座り");
  1211. }
  1212. if (poseGroupArray[index] == "work_kaiwa")
  1213. {
  1214. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":ソファー座り");
  1215. }
  1216. if (poseGroupArray[index] == "dance_cm3d2_001_f1,14.14")
  1217. {
  1218. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":ドキドキ☆Fallin' Love");
  1219. }
  1220. if (poseGroupArray[index] == "dance_cm3d_001_f1,39.25")
  1221. {
  1222. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":entrance to you");
  1223. }
  1224. if (poseGroupArray[index] == "dance_cm3d_002_end_f1,50.71")
  1225. {
  1226. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":scarlet leap");
  1227. }
  1228. if (poseGroupArray[index] == "dance_cm3d2_002_smt_f,7.76,")
  1229. {
  1230. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":stellar my tears");
  1231. }
  1232. if (poseGroupArray[index] == "dance_cm3d_003_sp2_f1,90.15")
  1233. {
  1234. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":rhythmix to you");
  1235. }
  1236. if (poseGroupArray[index] == "dance_cm3d2_003_hs_f1,0.01,")
  1237. {
  1238. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":happy!happy!スキャンダル!!");
  1239. }
  1240. if (poseGroupArray[index] == "dance_cm3d_004_kano_f1,124.93")
  1241. {
  1242. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":Can Know Two Close");
  1243. }
  1244. if (poseGroupArray[index] == "dance_cm3d2_004_sse_f1,0.01")
  1245. {
  1246. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":sweet sweet everyday");
  1247. }
  1248. if (poseGroupArray[index] == "turusi_sex_in_taiki_f")
  1249. {
  1250. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":拘束");
  1251. }
  1252. if (poseGroupArray[index] == "rosyutu_pose01_f")
  1253. {
  1254. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":エロ");
  1255. }
  1256. if (poseGroupArray[index] == "rosyutu_aruki_f_once_,1.37")
  1257. {
  1258. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":歩き");
  1259. }
  1260. if (poseGroupArray[index] == "stand_desk1")
  1261. {
  1262. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":その他");
  1263. }
  1264. if (poseGroupArray[index] == poseArray5[0])
  1265. {
  1266. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":ダンスMC");
  1267. }
  1268. if (poseGroupArray[index] == poseArray6[0])
  1269. {
  1270. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":ダンス");
  1271. }
  1272. if (index == poseGroupArray.Length - 3)
  1273. {
  1274. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":通常2");
  1275. }
  1276. if (index == poseGroupArray.Length - 2)
  1277. {
  1278. poseGroupComboList[index + 1] = new GUIContent((index + 2).ToString() + ":エロ2");
  1279. }
  1280. if (index == poseGroupArray.Length - 1)
  1281. {
  1282. poseGroupComboList[index + 1] = new GUIContent("99:登録ポーズ");
  1283. }
  1284. }
  1285. int index4 = -1;
  1286. for (int index1 = 0; index1 < groupList.Count; ++index1)
  1287. {
  1288. if (poseIndex[selectMaidIndex] < (int)groupList[index1])
  1289. {
  1290. index4 = index1;
  1291. break;
  1292. }
  1293. }
  1294. int length = (int)groupList[0];
  1295. int num2 = 0;
  1296. if (index4 > 0)
  1297. {
  1298. length = (int)groupList[index4] - (int)groupList[index4 - 1];
  1299. num2 = (int)groupList[index4 - 1];
  1300. }
  1301. if (index4 < 0)
  1302. {
  1303. index4 = groupList.Count;
  1304. length = poseArray.Length - (int)groupList[index4 - 1];
  1305. num2 = (int)groupList[index4 - 1];
  1306. }
  1307. poseComboList = new GUIContent[length];
  1308. int index5 = 0;
  1309. for (int index1 = num2; index1 < num2 + length; ++index1)
  1310. {
  1311. bool flag = false;
  1312. foreach (IniKey key in Preferences["pose"].Keys)
  1313. {
  1314. if (poseArray[index1] == key.Key)
  1315. {
  1316. IniKey iniKey = Preferences["pose"][key.Key];
  1317. if (iniKey.Value != null && iniKey.Value.ToString() != "" && iniKey.Value.ToString() != "del")
  1318. {
  1319. poseComboList[index5] =
  1320. new GUIContent((index5 + 1).ToString() + ":" + iniKey.Value.Split('_')[0] + "                    "
  1321. + key.Key);
  1322. flag = true;
  1323. }
  1324. }
  1325. }
  1326. if (!flag)
  1327. {
  1328. poseComboList[index5] = new GUIContent((index5 + 1).ToString() + ":" + poseArray[index1]);
  1329. }
  1330. ++index5;
  1331. }
  1332. poseGroupCombo.selectedItemIndex = index4;
  1333. poseGroupIndex = index4;
  1334. poseCombo.selectedItemIndex = 0;
  1335. for (int group = (int)groupList[groupList.Count - 1]; group < poseArray.Length; ++group)
  1336. {
  1337. if (poseArray[group].Split('/')[0].Replace("                    ", "") == inName3)
  1338. {
  1339. poseIndex[selectMaidIndex] = group;
  1340. string path2 = poseArray[group].Split('/')[1];
  1341. byte[] numArray = new byte[0];
  1342. try
  1343. {
  1344. using (FileStream fileStream = new FileStream(path2, FileMode.Open, FileAccess.Read))
  1345. {
  1346. numArray = new byte[fileStream.Length];
  1347. fileStream.Read(numArray, 0, numArray.Length);
  1348. }
  1349. }
  1350. catch { }
  1351. if (0 < numArray.Length)
  1352. {
  1353. long hashCode = Path.GetFileName(path2).GetHashCode();
  1354. maid.body0.CrossFade(hashCode.ToString(), numArray, false, false, false, 0.0f, 1f);
  1355. Maid.AutoTwist[] autoTwistArray = new Maid.AutoTwist[6]
  1356. {
  1357. Maid.AutoTwist.ShoulderL, Maid.AutoTwist.ShoulderR, Maid.AutoTwist.WristL, Maid.AutoTwist.WristR,
  1358. Maid.AutoTwist.ThighL, Maid.AutoTwist.ThighR
  1359. };
  1360. foreach (Maid.AutoTwist f_eType in autoTwistArray)
  1361. {
  1362. maid.SetAutoTwist(f_eType, true);
  1363. }
  1364. break;
  1365. }
  1366. break;
  1367. }
  1368. }
  1369. isLock[selectMaidIndex] = false;
  1370. inName3 = "";
  1371. isSavePose = false;
  1372. }
  1373. if (isSavePose3)
  1374. {
  1375. Maid maid = maidArray[selectMaidIndex];
  1376. isSavePose3 = false;
  1377. isSavePose4 = true;
  1378. Transform transform = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01", true);
  1379. transform.eulerAngles = bipRotation;
  1380. transform.position = bipPosition;
  1381. }
  1382. if (isSavePose2)
  1383. {
  1384. Maid maid = maidArray[selectMaidIndex];
  1385. isSavePose2 = false;
  1386. isSavePose3 = true;
  1387. Transform transform = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01", true);
  1388. transform.eulerAngles = bipRotation;
  1389. transform.position = bipPosition;
  1390. }
  1391. if (isSavePose)
  1392. {
  1393. Maid maid = maidArray[selectMaidIndex];
  1394. Transform transform = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01", true);
  1395. bipPosition = new Vector3(transform.position.x - maid.transform.position.x,
  1396. transform.position.y,
  1397. transform.position.z - maid.transform.position.z);
  1398. bipRotation = transform.eulerAngles;
  1399. maid.transform.localEulerAngles = new Vector3(0.0f, 0.0f, 0.0f);
  1400. maid.transform.position = new Vector3(maid.transform.position.x, 0.0f, maid.transform.position.z);
  1401. isSavePose = false;
  1402. isSavePose2 = true;
  1403. isStop[selectMaidIndex] = true;
  1404. }
  1405. if (quickSaveFlag)
  1406. {
  1407. string serializedScene = SerializeScene();
  1408. if (quickSaveFlag)
  1409. {
  1410. Preferences["scene"]["s9999"].Value = serializedScene;
  1411. SaveConfig();
  1412. quickSaveFlag = false;
  1413. }
  1414. }
  1415. for (int index = 0; index < maidCnt; ++index)
  1416. {
  1417. if (haraCount[index] > 0)
  1418. {
  1419. --haraCount[index];
  1420. CMT.SearchObjName(maidArray[index].body0.m_Bones.transform, "Bip01", true).position = haraPosition[index];
  1421. }
  1422. if (isLoadFace[index])
  1423. {
  1424. isLoadFace[index] = false;
  1425. TMorph morph = maidArray[index].body0.Face.morph;
  1426. float[] fieldValue = GetFieldValue<TMorph, float[]>(morph, "BlendValues");
  1427. fieldValue[(int)morph.hash["mouthuphalf"]] = fieldValue[(int)morph.hash["mouthuphalf"]] - 0.01f;
  1428. maidArray[index].body0.Face.morph.FixBlendValues_Face();
  1429. }
  1430. }
  1431. if (isScene)
  1432. {
  1433. isScene = false;
  1434. string[] strArray1 = sceneData.Split('_');
  1435. string[] strArray2 = strArray1[1].Split(';');
  1436. string[] strArray3 = strArray1[0].Split(',');
  1437. string[] strArray4 = null;
  1438. string[] strArray5 = null;
  1439. string[] strArray6 = null;
  1440. string[] strArray7 = null;
  1441. if (strArray1.Length >= 5)
  1442. {
  1443. strArray4 = strArray1[2].Split(',');
  1444. strArray5 = strArray1[3].Split(';');
  1445. strArray6 = strArray1[4].Split(';');
  1446. }
  1447. if (strArray1.Length >= 6)
  1448. {
  1449. strArray7 = strArray1[5].Split(';');
  1450. }
  1451. if (!int.TryParse(strArray3[2], out bgIndex))
  1452. {
  1453. string str = strArray3[2].Replace(" ", "_");
  1454. for (int index = 0; index < bgArray.Length; ++index)
  1455. {
  1456. if (str == bgArray[index])
  1457. {
  1458. bgIndex = index;
  1459. break;
  1460. }
  1461. }
  1462. }
  1463. if (bgArray[bgIndex].Length == 36)
  1464. {
  1465. GameMain.Instance.BgMgr.ChangeBgMyRoom(bgArray[bgIndex]);
  1466. }
  1467. else
  1468. {
  1469. GameMain.Instance.BgMgr.ChangeBg(bgArray[bgIndex]);
  1470. }
  1471. bgCombo.selectedItemIndex = bgIndex;
  1472. bg.localEulerAngles = new Vector3(float.Parse(strArray3[3]), float.Parse(strArray3[4]), float.Parse(strArray3[5]));
  1473. bg.position = new Vector3(float.Parse(strArray3[6]), float.Parse(strArray3[7]), float.Parse(strArray3[8]));
  1474. bg.localScale = new Vector3(float.Parse(strArray3[9]), float.Parse(strArray3[10]), float.Parse(strArray3[11]));
  1475. softG = new Vector3(float.Parse(strArray3[12]), float.Parse(strArray3[13]), float.Parse(strArray3[14]));
  1476. for (int index1 = 0; index1 < maidCnt; ++index1)
  1477. {
  1478. Maid maid = maidArray[index1];
  1479. delCount[index1] = 20;
  1480. if (!isVR && goSlot[(int)selectList[index1]] != null)
  1481. {
  1482. maidArray[index1].body0.goSlot = new List<TBodySkin>(goSlot[(int)selectList[index1]]);
  1483. for (int index2 = 0; index2 < bodyHit[(int)selectList[index1]].Count; ++index2)
  1484. {
  1485. maidArray[index1].body0.goSlot[index2].bonehair.bodyhit = bodyHit[(int)selectList[index1]][index2];
  1486. }
  1487. }
  1488. for (int index2 = 0; index2 < maid.body0.goSlot.Count; ++index2)
  1489. {
  1490. if (maid.body0.goSlot[index2].obj != null)
  1491. {
  1492. DynamicBone component = maid.body0.goSlot[index2].obj.GetComponent<DynamicBone>();
  1493. if (component != null && component.enabled)
  1494. {
  1495. component.m_Gravity = new Vector3(softG.x * 5f, softG.y * 5f + kamiyure, softG.z * 5f);
  1496. }
  1497. }
  1498. List<THair1> fieldValue = GetFieldValue<TBoneHair_, List<THair1>>(maid.body0.goSlot[index2].bonehair, "hair1list");
  1499. for (int index3 = 0; index3 < fieldValue.Count; ++index3)
  1500. {
  1501. fieldValue[index3].SoftG = new Vector3(softG.x, softG.y + kamiyure, softG.z);
  1502. }
  1503. }
  1504. }
  1505. if (!kankyoLoadFlg)
  1506. {
  1507. int bgmIndex = this.bgmIndex;
  1508. this.bgmIndex = int.Parse(strArray3[15]);
  1509. if (bgmIndex != this.bgmIndex)
  1510. {
  1511. GameMain.Instance.SoundMgr.PlayBGM(bgmArray[this.bgmIndex] + ".ogg", 0.0f, true);
  1512. bgmCombo.selectedItemIndex = this.bgmIndex;
  1513. }
  1514. }
  1515. if (doguObject.Count > 0 && doguObject[doguSelectIndex] != null)
  1516. {
  1517. GraphicsUtils.Destroy(doguObject[doguSelectIndex]);
  1518. doguObject.RemoveAt(doguSelectIndex);
  1519. doguIndex.RemoveAt(doguSelectIndex);
  1520. }
  1521. doguSelectIndex = 0;
  1522. if (strArray3.Length > 16)
  1523. {
  1524. effectIndex = int.Parse(strArray3[16]);
  1525. if (!isVR)
  1526. {
  1527. Vignetting component = GameMain.Instance.MainCamera.gameObject.GetComponent<Vignetting>();
  1528. component.mode = Vignetting.AberrationMode.Simple;
  1529. component.intensity = -3.98f;
  1530. component.chromaticAberration = -0.75f;
  1531. component.axialAberration = 1.18f;
  1532. component.blurSpread = 4.19f;
  1533. component.luminanceDependency = 0.494f;
  1534. component.blurDistance = 1.71f;
  1535. component.enabled = false;
  1536. if (kami)
  1537. {
  1538. kami.SetActive(false);
  1539. }
  1540. if (effectIndex == 0)
  1541. {
  1542. component.enabled = false;
  1543. }
  1544. if (effectIndex == 1)
  1545. {
  1546. component.mode = Vignetting.AberrationMode.Simple;
  1547. component.intensity = -1f;
  1548. component.chromaticAberration = 0.0f;
  1549. component.axialAberration = 0.0f;
  1550. component.blurSpread = 5f;
  1551. component.luminanceDependency = 0.0f;
  1552. component.blurDistance = 0.0f;
  1553. component.enabled = true;
  1554. }
  1555. if (effectIndex == 2)
  1556. {
  1557. component.enabled = true;
  1558. }
  1559. if (effectIndex == 3)
  1560. {
  1561. component.mode = Vignetting.AberrationMode.Simple;
  1562. component.intensity = 9f;
  1563. component.chromaticAberration = 0.0f;
  1564. component.axialAberration = 0.0f;
  1565. component.blurSpread = 5f;
  1566. component.luminanceDependency = 0.0f;
  1567. component.blurDistance = 0.0f;
  1568. component.enabled = true;
  1569. }
  1570. if (effectIndex == 4)
  1571. {
  1572. kami = (GameObject)Instantiate(Resources.Load("Prefab/p_kamihubuki_photo_ver"));
  1573. Vector3 localPosition = kami.transform.localPosition;
  1574. localPosition.y = 3.5f;
  1575. kami.transform.localPosition = localPosition;
  1576. }
  1577. if (effectIndex == 5)
  1578. {
  1579. kami = (GameObject)Instantiate(Resources.Load("Prefab/p_kamihubuki_photo_ver"));
  1580. Vector3 localPosition = kami.transform.localPosition;
  1581. localPosition.y = 3.5f;
  1582. kami.transform.localPosition = localPosition;
  1583. component.enabled = true;
  1584. component.mode = Vignetting.AberrationMode.Simple;
  1585. component.intensity = -2.5f;
  1586. component.chromaticAberration = -0.3f;
  1587. component.axialAberration = 0.5f;
  1588. component.blurSpread = 4.5f;
  1589. component.luminanceDependency = 0.2f;
  1590. component.blurDistance = 0.8f;
  1591. component.enabled = true;
  1592. }
  1593. Vector3 localPosition1;
  1594. if (effectIndex == 6)
  1595. {
  1596. kami.SetActive(false);
  1597. kami = (GameObject)Instantiate(Resources.Load("Prefab/p_powder_snow_photo_ver"));
  1598. localPosition1 = kami.transform.localPosition;
  1599. localPosition1.y = 3.5f;
  1600. kami.transform.localPosition = localPosition1;
  1601. }
  1602. if (effectIndex == 7)
  1603. {
  1604. kami.SetActive(false);
  1605. kami = (GameObject)Instantiate(Resources.Load("Prefab/p_powder_snow_photo_ver"));
  1606. localPosition1 = kami.transform.localPosition;
  1607. localPosition1.y = 3.5f;
  1608. kami.transform.localPosition = localPosition1;
  1609. component.enabled = true;
  1610. component.mode = Vignetting.AberrationMode.Simple;
  1611. component.intensity = -2.5f;
  1612. component.chromaticAberration = -0.3f;
  1613. component.axialAberration = 0.5f;
  1614. component.blurSpread = 4.5f;
  1615. component.luminanceDependency = 0.2f;
  1616. component.blurDistance = 0.8f;
  1617. component.enabled = true;
  1618. }
  1619. if (effectIndex == 8)
  1620. {
  1621. kami.SetActive(false);
  1622. kami = (GameObject)Instantiate(Resources.Load("Prefab/p_powder_snow_photo_ver"));
  1623. localPosition1 = kami.transform.localPosition;
  1624. localPosition1.y = 3.5f;
  1625. kami.transform.localPosition = localPosition1;
  1626. component.mode = Vignetting.AberrationMode.Simple;
  1627. component.intensity = 8f;
  1628. component.chromaticAberration = 0.0f;
  1629. component.axialAberration = 0.0f;
  1630. component.blurSpread = 5f;
  1631. component.luminanceDependency = 0.0f;
  1632. component.blurDistance = 0.0f;
  1633. component.enabled = true;
  1634. }
  1635. }
  1636. for (int index = 1; index < lightList.Count; ++index)
  1637. {
  1638. GraphicsUtils.Destroy(lightList[index]);
  1639. }
  1640. lightIndex = new List<int>
  1641. {
  1642. 0
  1643. };
  1644. lightColorR = new List<float>
  1645. {
  1646. 1f
  1647. };
  1648. lightColorG = new List<float>
  1649. {
  1650. 1f
  1651. };
  1652. lightColorB = new List<float>
  1653. {
  1654. 1f
  1655. };
  1656. lightX = new List<float>
  1657. {
  1658. 40f
  1659. };
  1660. lightY = new List<float>
  1661. {
  1662. 180f
  1663. };
  1664. lightAkarusa = new List<float>
  1665. {
  1666. 0.95f
  1667. };
  1668. lightKage = new List<float>
  1669. {
  1670. 0.098f
  1671. };
  1672. lightRange = new List<float>
  1673. {
  1674. 50f
  1675. };
  1676. lightCombo.selectedItemIndex = 0;
  1677. lightList = new List<GameObject>
  1678. {
  1679. GameMain.Instance.MainLight.gameObject
  1680. };
  1681. lightComboList = new GUIContent[lightList.Count];
  1682. for (int index = 0; index < lightList.Count; ++index)
  1683. {
  1684. lightComboList[index] = index != 0 ? new GUIContent("追加" + index) : new GUIContent("メイン");
  1685. }
  1686. selectLightIndex = 0;
  1687. GameMain.Instance.MainLight.Reset();
  1688. GameMain.Instance.MainLight.SetIntensity(0.95f);
  1689. GameMain.Instance.MainLight.GetComponent<Light>().spotAngle = 50f;
  1690. GameMain.Instance.MainLight.GetComponent<Light>().range = 10f;
  1691. GameMain.Instance.MainLight.gameObject.transform.position = new Vector3(0.0f, 2f, 0.0f);
  1692. GameMain.Instance.MainLight.GetComponent<Light>().type = LightType.Directional;
  1693. bgObject.SetActive(true);
  1694. mainCamera.GetComponent<Camera>().backgroundColor = new Color(0.0f, 0.0f, 0.0f);
  1695. isIdx1 = false;
  1696. isIdx2 = false;
  1697. isIdx3 = false;
  1698. isIdx4 = false;
  1699. lightIndex[0] = int.Parse(strArray3[17]);
  1700. lightColorR[0] = float.Parse(strArray3[18]);
  1701. lightColorG[0] = float.Parse(strArray3[19]);
  1702. lightColorB[0] = float.Parse(strArray3[20]);
  1703. GameMain.Instance.MainLight.Reset();
  1704. GameMain.Instance.MainLight.SetIntensity(0.95f);
  1705. GameMain.Instance.MainLight.GetComponent<Light>().spotAngle = 50f;
  1706. GameMain.Instance.MainLight.GetComponent<Light>().range = 10f;
  1707. GameMain.Instance.MainLight.gameObject.transform.position = new Vector3(0.0f, 2f, 0.0f);
  1708. if (lightIndex[0] == 0)
  1709. {
  1710. GameMain.Instance.MainLight.GetComponent<Light>().type = LightType.Directional;
  1711. }
  1712. else if (lightIndex[0] == 1)
  1713. {
  1714. GameMain.Instance.MainLight.transform.eulerAngles += Vector3.right * 40f;
  1715. GameMain.Instance.MainLight.GetComponent<Light>().type = LightType.Spot;
  1716. }
  1717. else if (lightIndex[0] == 2)
  1718. {
  1719. GameMain.Instance.MainLight.GetComponent<Light>().type = LightType.Point;
  1720. }
  1721. else if (lightIndex[0] == 3)
  1722. {
  1723. GameMain.Instance.MainLight.GetComponent<Light>().type = LightType.Directional;
  1724. bgObject.SetActive(false);
  1725. }
  1726. if (lightIndex[0] != 3)
  1727. {
  1728. GameMain.Instance.MainLight.GetComponent<Light>().color = new Color(lightColorR[0], lightColorG[0], lightColorB[0]);
  1729. bgObject.SetActive(true);
  1730. mainCamera.GetComponent<Camera>().backgroundColor = new Color(0.0f, 0.0f, 0.0f);
  1731. }
  1732. else
  1733. {
  1734. mainCamera.GetComponent<Camera>().backgroundColor = new Color(lightColorR[0], lightColorG[0], lightColorB[0]);
  1735. }
  1736. GameMain.Instance.MainLight.transform.eulerAngles =
  1737. new Vector3(float.Parse(strArray3[21]), float.Parse(strArray3[22]), float.Parse(strArray3[23]));
  1738. GameMain.Instance.MainLight.GetComponent<Light>().intensity = float.Parse(strArray3[24]);
  1739. GameMain.Instance.MainLight.GetComponent<Light>().spotAngle = float.Parse(strArray3[25]);
  1740. GameMain.Instance.MainLight.GetComponent<Light>().range = float.Parse(strArray3[26]);
  1741. lightX = new List<float>
  1742. {
  1743. float.Parse(strArray3[21])
  1744. };
  1745. lightY = new List<float>
  1746. {
  1747. float.Parse(strArray3[22])
  1748. };
  1749. lightAkarusa = new List<float>
  1750. {
  1751. float.Parse(strArray3[24])
  1752. };
  1753. lightKage = new List<float>
  1754. {
  1755. 0.098f
  1756. };
  1757. lightRange = new List<float>
  1758. {
  1759. float.Parse(strArray3[25])
  1760. };
  1761. selectLightIndex = 0;
  1762. isIdx1 = false;
  1763. isIdx2 = false;
  1764. isIdx3 = false;
  1765. isIdx4 = false;
  1766. if (!kankyoLoadFlg && !isVR)
  1767. {
  1768. mainCamera.SetTargetPos(new Vector3(float.Parse(strArray3[27]),
  1769. float.Parse(strArray3[28]),
  1770. float.Parse(strArray3[29])),
  1771. true);
  1772. mainCamera.SetDistance(float.Parse(strArray3[30]), true);
  1773. mainCamera.transform.eulerAngles = new Vector3(float.Parse(strArray3[31]), float.Parse(strArray3[32]), float.Parse(strArray3[33]));
  1774. if (int.Parse(strArray3[34]) == 1)
  1775. {
  1776. inName = strArray3[35];
  1777. inText = strArray3[36];
  1778. inText = inText.Replace("&kaigyo", "\n");
  1779. isMessage = true;
  1780. bGuiMessage = false;
  1781. GameObject gameObject =
  1782. GameObject.Find("__GameMain__/SystemUI Root").transform.Find("MessageWindowPanel").gameObject;
  1783. MessageWindowMgr messageWindowMgr = GameMain.Instance.ScriptMgr.adv_kag.MessageWindowMgr;
  1784. messageWindowMgr.OpenMessageWindowPanel();
  1785. MessageClass messageClass = new MessageClass(gameObject, messageWindowMgr);
  1786. messageClass.SetText(inName, inText, "", 0, AudioSourceMgr.Type.System);
  1787. messageClass.FinishChAnime();
  1788. }
  1789. else if (isMessage)
  1790. {
  1791. isMessage = false;
  1792. GameObject gameObject =
  1793. GameObject.Find("__GameMain__/SystemUI Root").transform.Find("MessageWindowPanel").gameObject;
  1794. GameMain.Instance.ScriptMgr.adv_kag.MessageWindowMgr.CloseMessageWindowPanel();
  1795. }
  1796. }
  1797. }
  1798. if (strArray3.Length > 37 && strArray3[37] != "")
  1799. {
  1800. if (doguSelectIndex == doguObject.Count)
  1801. {
  1802. doguIndex.Add(0);
  1803. }
  1804. else if (doguObject.Count > 0 && doguObject[doguSelectIndex] != null)
  1805. {
  1806. GraphicsUtils.Destroy(doguObject[doguSelectIndex]);
  1807. doguObject.RemoveAt(doguSelectIndex);
  1808. }
  1809. else
  1810. {
  1811. doguIndex.Add(0);
  1812. doguSelectIndex = doguIndex.Count - 1;
  1813. }
  1814. string str = strArray3[37].Replace(" ", "_");
  1815. for (int index = 0; index < doguArray.Length; ++index)
  1816. {
  1817. if (str == doguArray[index])
  1818. {
  1819. doguIndex[doguSelectIndex] = index;
  1820. break;
  1821. }
  1822. }
  1823. if (!doguArray[doguIndex[doguSelectIndex]].StartsWith("mirror"))
  1824. {
  1825. Object original = null;
  1826. for (int index = 0; index < 5; ++index)
  1827. {
  1828. original = Resources.Load("Prefab/" + doguArray[doguIndex[doguSelectIndex]]);
  1829. if (original == null)
  1830. {
  1831. List<int> doguIndex;
  1832. int doguSelectIndex;
  1833. (doguIndex = this.doguIndex)[doguSelectIndex = this.doguSelectIndex] = doguIndex[doguSelectIndex] + 1;
  1834. }
  1835. else
  1836. {
  1837. break;
  1838. }
  1839. }
  1840. doguObject.Add(Instantiate(original) as GameObject);
  1841. }
  1842. else
  1843. {
  1844. Material material = new Material(Shader.Find("Mirror"));
  1845. GameObject primitive = GameObject.CreatePrimitive(PrimitiveType.Plane);
  1846. primitive.transform.localScale = new Vector3(0.3f, 1f, 0.3f);
  1847. primitive.GetComponent<Renderer>().material = material;
  1848. primitive.AddComponent<MirrorReflection2>();
  1849. MirrorReflection2 component = primitive.GetComponent<MirrorReflection2>();
  1850. component.m_TextureSize = 2048;
  1851. component.m_ClipPlaneOffset = 0.0f;
  1852. primitive.GetComponent<Renderer>().enabled = true;
  1853. doguObject.Add(primitive);
  1854. }
  1855. Vector3 zero1 = Vector3.zero;
  1856. Vector3 zero2 = Vector3.zero;
  1857. zero2.x = -90f;
  1858. switch (doguIndex[doguSelectIndex])
  1859. {
  1860. case 1:
  1861. zero1.z = -0.5f;
  1862. break;
  1863. case 2:
  1864. zero1.z = -0.5f;
  1865. break;
  1866. case 3:
  1867. zero1.z = 0.5f;
  1868. zero2.z = 90f;
  1869. break;
  1870. case 4:
  1871. zero1.z = 0.9f;
  1872. break;
  1873. case 5:
  1874. zero1.z = 0.9f;
  1875. break;
  1876. case 6:
  1877. zero1.z = 0.6f;
  1878. zero2.x = 0.0f;
  1879. doguObject[doguSelectIndex].transform.localScale = new Vector3(4.5f, 4.5f, 4.5f);
  1880. break;
  1881. case 7:
  1882. zero1.z = 0.6f;
  1883. doguObject[doguSelectIndex].transform.localScale = new Vector3(3.5f, 3.5f, 3.5f);
  1884. break;
  1885. case 8:
  1886. zero1.z = 0.5f;
  1887. zero2.x = 0.0f;
  1888. break;
  1889. case 9:
  1890. zero1.z = 0.32f;
  1891. zero2.z = 180f;
  1892. break;
  1893. case 10:
  1894. zero1.z = 0.6f;
  1895. break;
  1896. case 11:
  1897. zero1.z = 0.6f;
  1898. break;
  1899. case 12:
  1900. zero1.z = 0.5f;
  1901. zero2.z = 180f;
  1902. break;
  1903. case 13:
  1904. zero1.z = 0.7f;
  1905. zero2.z = 180f;
  1906. break;
  1907. case 14:
  1908. zero1.z = -0.4f;
  1909. break;
  1910. case 15:
  1911. zero1.z = -0.4f;
  1912. break;
  1913. case 16:
  1914. zero1.z = -0.4f;
  1915. zero2.z = 180f;
  1916. break;
  1917. case 17:
  1918. zero1.z = -0.4f;
  1919. break;
  1920. case 18:
  1921. zero1.z = -0.2f;
  1922. break;
  1923. case 19:
  1924. zero1.z = 0.0f;
  1925. break;
  1926. case 20:
  1927. zero1.z = 3.4f;
  1928. zero1.x = -1f;
  1929. break;
  1930. case 21:
  1931. zero1.z = 3.4f;
  1932. zero1.x = -1f;
  1933. break;
  1934. case 22:
  1935. zero1.z = 3.4f;
  1936. zero1.y = 0.3f;
  1937. zero1.x = -1f;
  1938. break;
  1939. case 23:
  1940. zero1.z = 2.7f;
  1941. zero1.x = 0.77f;
  1942. zero2.z = 90f;
  1943. break;
  1944. case 25:
  1945. zero1.z = 0.5f;
  1946. zero1.y = 0.9f;
  1947. zero2.z = 180f;
  1948. break;
  1949. case 26:
  1950. zero1.z = 0.5f;
  1951. zero1.y = 0.9f;
  1952. zero2.z = 180f;
  1953. break;
  1954. case 29:
  1955. zero1.z = 0.5f;
  1956. zero1.x = -1.05f;
  1957. break;
  1958. case 30:
  1959. zero1.z = 0.0f;
  1960. zero2.z = 0.0f;
  1961. doguObject[doguSelectIndex].transform.localScale = new Vector3(0.75f, 0.75f, 0.75f);
  1962. break;
  1963. case 31:
  1964. zero1.z = -0.6f;
  1965. zero1.y = 0.96f;
  1966. zero2.z = 180f;
  1967. doguObject[doguSelectIndex].transform.localScale = new Vector3(0.2f, 0.4f, 0.2f);
  1968. break;
  1969. case 32:
  1970. zero1.z = -0.6f;
  1971. zero1.y = 0.96f;
  1972. zero2.z = 180f;
  1973. doguObject[doguSelectIndex].transform.localScale = new Vector3(0.1f, 0.4f, 0.2f);
  1974. break;
  1975. case 33:
  1976. zero1.z = -0.6f;
  1977. zero1.y = 0.85f;
  1978. zero2.z = 180f;
  1979. doguObject[doguSelectIndex].transform.localScale = new Vector3(0.03f, 0.18f, 0.124f);
  1980. break;
  1981. default:
  1982. zero1.z = 0.5f;
  1983. break;
  1984. }
  1985. doguObject[doguSelectIndex].transform.localPosition = zero1;
  1986. doguObject[doguSelectIndex].transform.localRotation = Quaternion.Euler(zero2);
  1987. doguObject[doguSelectIndex].transform.localEulerAngles =
  1988. new Vector3(float.Parse(strArray3[38]), float.Parse(strArray3[39]), float.Parse(strArray3[40]));
  1989. doguObject[doguSelectIndex].transform.position =
  1990. new Vector3(float.Parse(strArray3[41]), float.Parse(strArray3[42]), float.Parse(strArray3[43]));
  1991. doguObject[doguSelectIndex].transform.localScale =
  1992. new Vector3(float.Parse(strArray3[44]), float.Parse(strArray3[45]), float.Parse(strArray3[46]));
  1993. }
  1994. if (!kankyoLoadFlg)
  1995. {
  1996. for (int i = 0; i < strArray2.Length && maidCnt > i; ++i)
  1997. {
  1998. Maid maid = maidArray[i];
  1999. if (maid && maid.Visible)
  2000. {
  2001. SetIK(maid, i);
  2002. Transform transform1 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01", true);
  2003. Transform transform2 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe0", true);
  2004. Transform transform3 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe0", true);
  2005. Transform transform4 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe01", true);
  2006. Transform transform5 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe01", true);
  2007. Transform transform6 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe0Nub", true);
  2008. Transform transform7 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe0Nub", true);
  2009. Transform transform8 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe1", true);
  2010. Transform transform9 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe1", true);
  2011. Transform transform10 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe11", true);
  2012. Transform transform11 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe11", true);
  2013. Transform transform12 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe1Nub", true);
  2014. Transform transform13 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe1Nub", true);
  2015. Transform transform14 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe2", true);
  2016. Transform transform15 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe2", true);
  2017. Transform transform16 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe21", true);
  2018. Transform transform17 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe21", true);
  2019. Transform transform18 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe2Nub", true);
  2020. Transform transform19 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe2Nub", true);
  2021. string[] strArray8 = strArray2[i].Split(':');
  2022. for (int index = 0; index < 40; ++index)
  2023. {
  2024. string[] strArray9 = strArray8[index].Split(',');
  2025. Finger[i, index].localEulerAngles =
  2026. new Vector3(float.Parse(strArray9[0]), float.Parse(strArray9[1]), float.Parse(strArray9[2]));
  2027. }
  2028. bool flag1 = false;
  2029. if (strArray8.Length == 64)
  2030. {
  2031. flag1 = true;
  2032. }
  2033. if (!isVR)
  2034. {
  2035. maid.body0.quaDefEyeL.eulerAngles = eyeL[(int)selectList[i]];
  2036. maid.body0.quaDefEyeR.eulerAngles = eyeR[(int)selectList[i]];
  2037. }
  2038. for (int index1 = 0; index1 < 3; ++index1)
  2039. {
  2040. for (int index2 = 40; index2 < strArray8.Length; ++index2)
  2041. {
  2042. string[] strArray9 = strArray8[index2].Split(',');
  2043. switch (index2)
  2044. {
  2045. case 40:
  2046. if (flag1)
  2047. {
  2048. Spine.localEulerAngles =
  2049. new Vector3(float.Parse(strArray9[0]),
  2050. float.Parse(strArray9[1]),
  2051. float.Parse(strArray9[2]));
  2052. }
  2053. if (!flag1)
  2054. {
  2055. Spine.eulerAngles = new Vector3(float.Parse(strArray9[0]),
  2056. float.Parse(strArray9[1]),
  2057. float.Parse(strArray9[2]));
  2058. break;
  2059. }
  2060. break;
  2061. case 41:
  2062. if (flag1)
  2063. {
  2064. Spine0a.localEulerAngles =
  2065. new Vector3(float.Parse(strArray9[0]),
  2066. float.Parse(strArray9[1]),
  2067. float.Parse(strArray9[2]));
  2068. }
  2069. if (!flag1)
  2070. {
  2071. Spine0a.eulerAngles =
  2072. new Vector3(float.Parse(strArray9[0]),
  2073. float.Parse(strArray9[1]),
  2074. float.Parse(strArray9[2]));
  2075. break;
  2076. }
  2077. break;
  2078. case 42:
  2079. if (flag1)
  2080. {
  2081. Spine1.localEulerAngles =
  2082. new Vector3(float.Parse(strArray9[0]),
  2083. float.Parse(strArray9[1]),
  2084. float.Parse(strArray9[2]));
  2085. }
  2086. if (!flag1)
  2087. {
  2088. Spine1.eulerAngles = new Vector3(float.Parse(strArray9[0]),
  2089. float.Parse(strArray9[1]),
  2090. float.Parse(strArray9[2]));
  2091. break;
  2092. }
  2093. break;
  2094. case 43:
  2095. if (flag1)
  2096. {
  2097. Spine1a.localEulerAngles =
  2098. new Vector3(float.Parse(strArray9[0]),
  2099. float.Parse(strArray9[1]),
  2100. float.Parse(strArray9[2]));
  2101. }
  2102. if (!flag1)
  2103. {
  2104. Spine1a.eulerAngles =
  2105. new Vector3(float.Parse(strArray9[0]),
  2106. float.Parse(strArray9[1]),
  2107. float.Parse(strArray9[2]));
  2108. break;
  2109. }
  2110. break;
  2111. case 44:
  2112. if (flag1)
  2113. {
  2114. Pelvis.localEulerAngles =
  2115. new Vector3(float.Parse(strArray9[0]),
  2116. float.Parse(strArray9[1]),
  2117. float.Parse(strArray9[2]));
  2118. }
  2119. if (!flag1)
  2120. {
  2121. Pelvis.eulerAngles = new Vector3(float.Parse(strArray9[0]),
  2122. float.Parse(strArray9[1]),
  2123. float.Parse(strArray9[2]));
  2124. break;
  2125. }
  2126. break;
  2127. case 45:
  2128. HandL1[i].localEulerAngles =
  2129. new Vector3(float.Parse(strArray9[0]),
  2130. float.Parse(strArray9[1]),
  2131. float.Parse(strArray9[2]));
  2132. break;
  2133. case 46:
  2134. if (flag1)
  2135. {
  2136. UpperArmL1[i].localEulerAngles =
  2137. new Vector3(float.Parse(strArray9[0]),
  2138. float.Parse(strArray9[1]),
  2139. float.Parse(strArray9[2]));
  2140. }
  2141. if (!flag1)
  2142. {
  2143. UpperArmL1[i].eulerAngles =
  2144. new Vector3(float.Parse(strArray9[0]),
  2145. float.Parse(strArray9[1]),
  2146. float.Parse(strArray9[2]));
  2147. break;
  2148. }
  2149. break;
  2150. case 47:
  2151. if (flag1)
  2152. {
  2153. ForearmL1[i].localEulerAngles =
  2154. new Vector3(float.Parse(strArray9[0]),
  2155. float.Parse(strArray9[1]),
  2156. float.Parse(strArray9[2]));
  2157. }
  2158. if (!flag1)
  2159. {
  2160. ForearmL1[i].eulerAngles =
  2161. new Vector3(float.Parse(strArray9[0]),
  2162. float.Parse(strArray9[1]),
  2163. float.Parse(strArray9[2]));
  2164. break;
  2165. }
  2166. break;
  2167. case 48:
  2168. HandR1[i].localEulerAngles =
  2169. new Vector3(float.Parse(strArray9[0]),
  2170. float.Parse(strArray9[1]),
  2171. float.Parse(strArray9[2]));
  2172. break;
  2173. case 49:
  2174. if (flag1)
  2175. {
  2176. UpperArmR1[i].localEulerAngles =
  2177. new Vector3(float.Parse(strArray9[0]),
  2178. float.Parse(strArray9[1]),
  2179. float.Parse(strArray9[2]));
  2180. }
  2181. if (!flag1)
  2182. {
  2183. UpperArmR1[i].eulerAngles =
  2184. new Vector3(float.Parse(strArray9[0]),
  2185. float.Parse(strArray9[1]),
  2186. float.Parse(strArray9[2]));
  2187. break;
  2188. }
  2189. break;
  2190. case 50:
  2191. if (flag1)
  2192. {
  2193. ForearmR1[i].localEulerAngles =
  2194. new Vector3(float.Parse(strArray9[0]),
  2195. float.Parse(strArray9[1]),
  2196. float.Parse(strArray9[2]));
  2197. }
  2198. if (!flag1)
  2199. {
  2200. ForearmR1[i].eulerAngles =
  2201. new Vector3(float.Parse(strArray9[0]),
  2202. float.Parse(strArray9[1]),
  2203. float.Parse(strArray9[2]));
  2204. break;
  2205. }
  2206. break;
  2207. case 51:
  2208. HandL2[i].localEulerAngles =
  2209. new Vector3(float.Parse(strArray9[0]),
  2210. float.Parse(strArray9[1]),
  2211. float.Parse(strArray9[2]));
  2212. break;
  2213. case 52:
  2214. if (flag1)
  2215. {
  2216. UpperArmL2[i].localEulerAngles =
  2217. new Vector3(float.Parse(strArray9[0]),
  2218. float.Parse(strArray9[1]),
  2219. float.Parse(strArray9[2]));
  2220. }
  2221. if (!flag1)
  2222. {
  2223. UpperArmL2[i].eulerAngles =
  2224. new Vector3(float.Parse(strArray9[0]),
  2225. float.Parse(strArray9[1]),
  2226. float.Parse(strArray9[2]));
  2227. break;
  2228. }
  2229. break;
  2230. case 53:
  2231. if (flag1)
  2232. {
  2233. ForearmL2[i].localEulerAngles =
  2234. new Vector3(float.Parse(strArray9[0]),
  2235. float.Parse(strArray9[1]),
  2236. float.Parse(strArray9[2]));
  2237. }
  2238. if (!flag1)
  2239. {
  2240. ForearmL2[i].eulerAngles =
  2241. new Vector3(float.Parse(strArray9[0]),
  2242. float.Parse(strArray9[1]),
  2243. float.Parse(strArray9[2]));
  2244. break;
  2245. }
  2246. break;
  2247. case 54:
  2248. HandR2[i].localEulerAngles =
  2249. new Vector3(float.Parse(strArray9[0]),
  2250. float.Parse(strArray9[1]),
  2251. float.Parse(strArray9[2]));
  2252. break;
  2253. case 55:
  2254. if (flag1)
  2255. {
  2256. UpperArmR2[i].localEulerAngles =
  2257. new Vector3(float.Parse(strArray9[0]),
  2258. float.Parse(strArray9[1]),
  2259. float.Parse(strArray9[2]));
  2260. }
  2261. if (!flag1)
  2262. {
  2263. UpperArmR2[i].eulerAngles =
  2264. new Vector3(float.Parse(strArray9[0]),
  2265. float.Parse(strArray9[1]),
  2266. float.Parse(strArray9[2]));
  2267. break;
  2268. }
  2269. break;
  2270. case 56:
  2271. if (flag1)
  2272. {
  2273. ForearmR2[i].localEulerAngles =
  2274. new Vector3(float.Parse(strArray9[0]),
  2275. float.Parse(strArray9[1]),
  2276. float.Parse(strArray9[2]));
  2277. }
  2278. if (!flag1)
  2279. {
  2280. ForearmR2[i].eulerAngles =
  2281. new Vector3(float.Parse(strArray9[0]),
  2282. float.Parse(strArray9[1]),
  2283. float.Parse(strArray9[2]));
  2284. break;
  2285. }
  2286. break;
  2287. case 57:
  2288. if (flag1)
  2289. {
  2290. Head.localEulerAngles =
  2291. new Vector3(float.Parse(strArray9[0]),
  2292. float.Parse(strArray9[1]),
  2293. float.Parse(strArray9[2]));
  2294. }
  2295. if (!flag1)
  2296. {
  2297. Head.eulerAngles = new Vector3(float.Parse(strArray9[0]),
  2298. float.Parse(strArray9[1]),
  2299. float.Parse(strArray9[2]));
  2300. break;
  2301. }
  2302. break;
  2303. case 58:
  2304. maid.transform.localEulerAngles =
  2305. new Vector3(float.Parse(strArray9[0]),
  2306. float.Parse(strArray9[1]),
  2307. float.Parse(strArray9[2]));
  2308. break;
  2309. case 59:
  2310. maid.transform.position =
  2311. new Vector3(float.Parse(strArray9[0]),
  2312. float.Parse(strArray9[1]),
  2313. float.Parse(strArray9[2]));
  2314. break;
  2315. case 60:
  2316. maid.transform.localScale =
  2317. new Vector3(float.Parse(strArray9[0]),
  2318. float.Parse(strArray9[1]),
  2319. float.Parse(strArray9[2]));
  2320. break;
  2321. case 63:
  2322. if (index1 <= 0)
  2323. {
  2324. hanten[i] = false;
  2325. hantenn[i] = false;
  2326. TMorph morph = maid.body0.Face.morph;
  2327. float[] fieldValue1 = GetFieldValue<TMorph, float[]>(morph, "BlendValues");
  2328. float[] fieldValue2 = GetFieldValue<TMorph, float[]>(morph, "BlendValuesBackup");
  2329. if (!isVR)
  2330. {
  2331. maid.boMabataki = false;
  2332. }
  2333. fieldValue2[(int)morph.hash["eyeclose"]] = float.Parse(strArray9[0]);
  2334. fieldValue2[(int)morph.hash["eyeclose2"]] = float.Parse(strArray9[1]);
  2335. fieldValue2[(int)morph.hash["eyeclose3"]] = float.Parse(strArray9[2]);
  2336. fieldValue2[(int)morph.hash["eyeclose6"]] = float.Parse(strArray9[3]);
  2337. fieldValue1[(int)morph.hash["hitomih"]] = float.Parse(strArray9[4]);
  2338. fieldValue1[(int)morph.hash["hitomis"]] = float.Parse(strArray9[5]);
  2339. fieldValue1[(int)morph.hash["mayuha"]] = float.Parse(strArray9[6]);
  2340. fieldValue1[(int)morph.hash["mayuup"]] = float.Parse(strArray9[7]);
  2341. fieldValue1[(int)morph.hash["mayuv"]] = float.Parse(strArray9[8]);
  2342. fieldValue1[(int)morph.hash["mayuvhalf"]] = float.Parse(strArray9[9]);
  2343. fieldValue1[(int)morph.hash["moutha"]] = float.Parse(strArray9[10]);
  2344. fieldValue1[(int)morph.hash["mouths"]] = float.Parse(strArray9[11]);
  2345. fieldValue1[(int)morph.hash["mouthdw"]] = float.Parse(strArray9[12]);
  2346. fieldValue1[(int)morph.hash["mouthup"]] = float.Parse(strArray9[13]);
  2347. fieldValue1[(int)morph.hash["tangout"]] = float.Parse(strArray9[14]);
  2348. fieldValue1[(int)morph.hash["tangup"]] = float.Parse(strArray9[15]);
  2349. fieldValue1[(int)morph.hash["eyebig"]] = float.Parse(strArray9[16]);
  2350. fieldValue2[(int)morph.hash["eyeclose5"]] = float.Parse(strArray9[17]);
  2351. fieldValue1[(int)morph.hash["mayuw"]] = float.Parse(strArray9[18]);
  2352. fieldValue1[(int)morph.hash["mouthhe"]] = float.Parse(strArray9[19]);
  2353. fieldValue1[(int)morph.hash["mouthc"]] = float.Parse(strArray9[20]);
  2354. fieldValue1[(int)morph.hash["mouthi"]] = float.Parse(strArray9[21]);
  2355. fieldValue1[(int)morph.hash["mouthuphalf"]] = float.Parse(strArray9[22]) + 0.01f;
  2356. isLoadFace[i] = true;
  2357. try
  2358. {
  2359. fieldValue1[(int)morph.hash["tangopen"]] = float.Parse(strArray9[23]);
  2360. }
  2361. catch { }
  2362. if (float.Parse(strArray9[24]) == 1.0)
  2363. {
  2364. fieldValue1[(int)morph.hash["namida"]] = 1f;
  2365. }
  2366. else
  2367. {
  2368. fieldValue1[(int)morph.hash["namida"]] = 0.0f;
  2369. }
  2370. if (float.Parse(strArray9[25]) == 1.0)
  2371. {
  2372. fieldValue1[(int)morph.hash["tear1"]] = 1f;
  2373. }
  2374. else
  2375. {
  2376. fieldValue1[(int)morph.hash["tear1"]] = 0.0f;
  2377. }
  2378. if (float.Parse(strArray9[26]) == 1.0)
  2379. {
  2380. fieldValue1[(int)morph.hash["tear2"]] = 1f;
  2381. }
  2382. else
  2383. {
  2384. fieldValue1[(int)morph.hash["tear2"]] = 0.0f;
  2385. }
  2386. if (float.Parse(strArray9[27]) == 1.0)
  2387. {
  2388. fieldValue1[(int)morph.hash["tear3"]] = 1f;
  2389. }
  2390. else
  2391. {
  2392. fieldValue1[(int)morph.hash["tear3"]] = 0.0f;
  2393. }
  2394. if (float.Parse(strArray9[28]) == 1.0)
  2395. {
  2396. fieldValue1[(int)morph.hash["shock"]] = 1f;
  2397. }
  2398. else
  2399. {
  2400. fieldValue1[(int)morph.hash["shock"]] = 0.0f;
  2401. }
  2402. if (float.Parse(strArray9[29]) == 1.0)
  2403. {
  2404. fieldValue1[(int)morph.hash["yodare"]] = 1f;
  2405. }
  2406. else
  2407. {
  2408. fieldValue1[(int)morph.hash["yodare"]] = 0.0f;
  2409. }
  2410. if (float.Parse(strArray9[30]) == 1.0)
  2411. {
  2412. fieldValue1[(int)morph.hash["hoho"]] = 0.5f;
  2413. }
  2414. else
  2415. {
  2416. fieldValue1[(int)morph.hash["hoho"]] = 0.0f;
  2417. }
  2418. if (float.Parse(strArray9[31]) == 1.0)
  2419. {
  2420. fieldValue1[(int)morph.hash["hoho2"]] = 0.5f;
  2421. }
  2422. else
  2423. {
  2424. fieldValue1[(int)morph.hash["hoho2"]] = 0.0f;
  2425. }
  2426. if (float.Parse(strArray9[32]) == 1.0)
  2427. {
  2428. fieldValue1[(int)morph.hash["hohos"]] = 1f;
  2429. }
  2430. else
  2431. {
  2432. fieldValue1[(int)morph.hash["hohos"]] = 0.0f;
  2433. }
  2434. if (float.Parse(strArray9[33]) == 1.0)
  2435. {
  2436. fieldValue1[(int)morph.hash["hohol"]] = 1f;
  2437. }
  2438. else
  2439. {
  2440. fieldValue1[(int)morph.hash["hohol"]] = 0.0f;
  2441. }
  2442. if (float.Parse(strArray9[34]) == 1.0)
  2443. {
  2444. fieldValue1[(int)morph.hash["toothoff"]] = 1f;
  2445. }
  2446. else
  2447. {
  2448. fieldValue1[(int)morph.hash["toothoff"]] = 0.0f;
  2449. }
  2450. if (strArray9.Length > 35)
  2451. {
  2452. morph.boNoseFook = float.Parse(strArray9[35]) == 1.0;
  2453. }
  2454. isFace[i] = true;
  2455. isFaceInit = true;
  2456. break;
  2457. }
  2458. break;
  2459. case 64:
  2460. if (index1 <= 0 && !isVR)
  2461. {
  2462. if (int.Parse(strArray9[0]) == 1)
  2463. {
  2464. isLook[i] = true;
  2465. lookX[i] = float.Parse(strArray9[1]);
  2466. lookY[i] = float.Parse(strArray9[2]);
  2467. if (maid.body0.offsetLookTarget.x != (double)lookY[i])
  2468. {
  2469. int num = !isLock[i] ? 1 : (lookY[i] >= 0.0 ? 1 : 0);
  2470. maid.body0.offsetLookTarget =
  2471. num != 0
  2472. ? new Vector3(lookY[i], 1f, lookX[i])
  2473. : new Vector3(lookY[i] * 0.6f, 1f, lookX[i]);
  2474. }
  2475. if (lookX[i] != (double)lookXn[i])
  2476. {
  2477. lookXn[i] = lookX[i];
  2478. maid.body0.offsetLookTarget = new Vector3(lookY[i], 1f, lookX[i]);
  2479. }
  2480. if (lookY[i] != (double)lookYn[i])
  2481. {
  2482. lookYn[i] = lookY[i];
  2483. int num = !isLock[i] ? 1 : (lookY[i] >= 0.0 ? 1 : 0);
  2484. maid.body0.offsetLookTarget =
  2485. num != 0
  2486. ? new Vector3(lookY[i], 1f, lookX[i])
  2487. : new Vector3(lookY[i] * 0.6f, 1f, lookX[i]);
  2488. }
  2489. }
  2490. else
  2491. {
  2492. isLook[i] = false;
  2493. }
  2494. if (isLook[i])
  2495. {
  2496. maid.body0.trsLookTarget = GameMain.Instance.MainCamera.transform;
  2497. maid.body0.boHeadToCam = true;
  2498. maid.body0.boEyeToCam = true;
  2499. maid.body0.trsLookTarget = null;
  2500. }
  2501. else
  2502. {
  2503. maid.body0.trsLookTarget = GameMain.Instance.MainCamera.transform;
  2504. maid.body0.boHeadToCam = true;
  2505. maid.body0.boEyeToCam = true;
  2506. }
  2507. break;
  2508. }
  2509. break;
  2510. case 65:
  2511. if (index1 <= 0)
  2512. {
  2513. if (itemIndex[i] != int.Parse(strArray9[0]))
  2514. {
  2515. itemIndex[i] = int.Parse(strArray9[0]);
  2516. if (itemIndex[i] == itemArray.Length - 1)
  2517. {
  2518. itemIndex[i] = 0;
  2519. }
  2520. string[] strArray10 = new string[2];
  2521. string[] strArray11 = itemArray[itemIndex[i]].Split(',');
  2522. if (itemIndex[i] > 13)
  2523. {
  2524. strArray11 = itemArray[itemIndex[i] + 1].Split(',');
  2525. }
  2526. maid.DelProp(MPN.handitem, true);
  2527. maid.DelProp(MPN.accvag, true);
  2528. maid.DelProp(MPN.accanl, true);
  2529. bool flag2 = false;
  2530. if (itemIndex[i] == 12 || itemIndex[i] == 13)
  2531. {
  2532. flag2 = true;
  2533. }
  2534. if (!flag2)
  2535. {
  2536. maid.DelProp(MPN.kousoku_upper, true);
  2537. maid.DelProp(MPN.kousoku_lower, true);
  2538. }
  2539. if (strArray11[0] != "")
  2540. {
  2541. maid.SetProp(strArray11[0], strArray11[1], 0, true, false);
  2542. }
  2543. if (itemIndex[i] == 12)
  2544. {
  2545. string[] strArray12 = itemArray[itemIndex[i] - 1].Split(',');
  2546. maid.SetProp(strArray12[0], strArray12[1], 0, true, false);
  2547. }
  2548. if (itemIndex[i] == 13)
  2549. {
  2550. string[] strArray12 = itemArray[itemIndex[i] + 1].Split(',');
  2551. maid.SetProp(strArray12[0], strArray12[1], 0, true, false);
  2552. }
  2553. if (itemIndex[i] == 23)
  2554. {
  2555. string[] strArray12 = itemArray[itemIndex[i]].Split(',');
  2556. maid.SetProp(strArray12[0], strArray12[1], 0, true, false);
  2557. cafeFlg[i] = true;
  2558. }
  2559. maid.AllProcPropSeqStart();
  2560. }
  2561. IK_hand = CMT.SearchObjName(maid.body0.m_Bones.transform, "_IK_handL", true);
  2562. break;
  2563. }
  2564. break;
  2565. case 66:
  2566. CMT.SearchObjName(maid.body0.m_Bones.transform, "_IK_handL", true).localEulerAngles =
  2567. new Vector3(float.Parse(strArray9[0]),
  2568. float.Parse(strArray9[1]),
  2569. float.Parse(strArray9[2]));
  2570. break;
  2571. case 67:
  2572. CMT.SearchObjName(maid.body0.m_Bones.transform, "_IK_handR", true).localEulerAngles =
  2573. new Vector3(float.Parse(strArray9[0]),
  2574. float.Parse(strArray9[1]),
  2575. float.Parse(strArray9[2]));
  2576. break;
  2577. case 68:
  2578. if (strArray9.Length >= 2)
  2579. {
  2580. ClavicleL1[i].eulerAngles =
  2581. new Vector3(float.Parse(strArray9[0]),
  2582. float.Parse(strArray9[1]),
  2583. float.Parse(strArray9[2]));
  2584. break;
  2585. }
  2586. break;
  2587. case 69:
  2588. ClavicleR1[i].eulerAngles =
  2589. new Vector3(float.Parse(strArray9[0]),
  2590. float.Parse(strArray9[1]),
  2591. float.Parse(strArray9[2]));
  2592. break;
  2593. case 70:
  2594. if (int.Parse(strArray9[0]) == 1)
  2595. {
  2596. hanten[i] = true;
  2597. hantenn[i] = true;
  2598. break;
  2599. }
  2600. break;
  2601. case 71:
  2602. transform1.eulerAngles =
  2603. new Vector3(float.Parse(strArray9[0]),
  2604. float.Parse(strArray9[1]),
  2605. float.Parse(strArray9[2]));
  2606. break;
  2607. case 72:
  2608. transform2.localEulerAngles =
  2609. new Vector3(float.Parse(strArray9[0]),
  2610. float.Parse(strArray9[1]),
  2611. float.Parse(strArray9[2]));
  2612. break;
  2613. case 73:
  2614. transform3.localEulerAngles =
  2615. new Vector3(float.Parse(strArray9[0]),
  2616. float.Parse(strArray9[1]),
  2617. float.Parse(strArray9[2]));
  2618. break;
  2619. case 74:
  2620. transform4.localEulerAngles =
  2621. new Vector3(float.Parse(strArray9[0]),
  2622. float.Parse(strArray9[1]),
  2623. float.Parse(strArray9[2]));
  2624. break;
  2625. case 75:
  2626. transform5.localEulerAngles =
  2627. new Vector3(float.Parse(strArray9[0]),
  2628. float.Parse(strArray9[1]),
  2629. float.Parse(strArray9[2]));
  2630. break;
  2631. case 76:
  2632. transform6.localEulerAngles =
  2633. new Vector3(float.Parse(strArray9[0]),
  2634. float.Parse(strArray9[1]),
  2635. float.Parse(strArray9[2]));
  2636. break;
  2637. case 77:
  2638. transform7.localEulerAngles =
  2639. new Vector3(float.Parse(strArray9[0]),
  2640. float.Parse(strArray9[1]),
  2641. float.Parse(strArray9[2]));
  2642. break;
  2643. case 78:
  2644. transform8.localEulerAngles =
  2645. new Vector3(float.Parse(strArray9[0]),
  2646. float.Parse(strArray9[1]),
  2647. float.Parse(strArray9[2]));
  2648. break;
  2649. case 79:
  2650. transform9.localEulerAngles =
  2651. new Vector3(float.Parse(strArray9[0]),
  2652. float.Parse(strArray9[1]),
  2653. float.Parse(strArray9[2]));
  2654. break;
  2655. case 80:
  2656. transform10.localEulerAngles =
  2657. new Vector3(float.Parse(strArray9[0]),
  2658. float.Parse(strArray9[1]),
  2659. float.Parse(strArray9[2]));
  2660. break;
  2661. case 81:
  2662. transform11.localEulerAngles =
  2663. new Vector3(float.Parse(strArray9[0]),
  2664. float.Parse(strArray9[1]),
  2665. float.Parse(strArray9[2]));
  2666. break;
  2667. case 82:
  2668. transform12.localEulerAngles =
  2669. new Vector3(float.Parse(strArray9[0]),
  2670. float.Parse(strArray9[1]),
  2671. float.Parse(strArray9[2]));
  2672. break;
  2673. case 83:
  2674. transform13.localEulerAngles =
  2675. new Vector3(float.Parse(strArray9[0]),
  2676. float.Parse(strArray9[1]),
  2677. float.Parse(strArray9[2]));
  2678. break;
  2679. case 84:
  2680. transform14.localEulerAngles =
  2681. new Vector3(float.Parse(strArray9[0]),
  2682. float.Parse(strArray9[1]),
  2683. float.Parse(strArray9[2]));
  2684. break;
  2685. case 85:
  2686. transform15.localEulerAngles =
  2687. new Vector3(float.Parse(strArray9[0]),
  2688. float.Parse(strArray9[1]),
  2689. float.Parse(strArray9[2]));
  2690. break;
  2691. case 86:
  2692. transform16.localEulerAngles =
  2693. new Vector3(float.Parse(strArray9[0]),
  2694. float.Parse(strArray9[1]),
  2695. float.Parse(strArray9[2]));
  2696. break;
  2697. case 87:
  2698. transform17.localEulerAngles =
  2699. new Vector3(float.Parse(strArray9[0]),
  2700. float.Parse(strArray9[1]),
  2701. float.Parse(strArray9[2]));
  2702. break;
  2703. case 88:
  2704. transform18.localEulerAngles =
  2705. new Vector3(float.Parse(strArray9[0]),
  2706. float.Parse(strArray9[1]),
  2707. float.Parse(strArray9[2]));
  2708. break;
  2709. case 89:
  2710. transform19.localEulerAngles =
  2711. new Vector3(float.Parse(strArray9[0]),
  2712. float.Parse(strArray9[1]),
  2713. float.Parse(strArray9[2]));
  2714. break;
  2715. case 90:
  2716. if (!isVR)
  2717. {
  2718. maid.body0.quaDefEyeL.eulerAngles =
  2719. new Vector3(float.Parse(strArray9[0]),
  2720. float.Parse(strArray9[1]),
  2721. float.Parse(strArray9[2]));
  2722. break;
  2723. }
  2724. break;
  2725. case 91:
  2726. if (!isVR)
  2727. {
  2728. maid.body0.quaDefEyeR.eulerAngles =
  2729. new Vector3(float.Parse(strArray9[0]),
  2730. float.Parse(strArray9[1]),
  2731. float.Parse(strArray9[2]));
  2732. break;
  2733. }
  2734. break;
  2735. case 92:
  2736. vIKMuneL[i] = new Vector3(float.Parse(strArray9[0]),
  2737. float.Parse(strArray9[1]),
  2738. float.Parse(strArray9[2]));
  2739. muneIKL[i] = true;
  2740. break;
  2741. case 93:
  2742. vIKMuneLSub[i] = new Vector3(float.Parse(strArray9[0]),
  2743. float.Parse(strArray9[1]),
  2744. float.Parse(strArray9[2]));
  2745. break;
  2746. case 94:
  2747. vIKMuneR[i] = new Vector3(float.Parse(strArray9[0]),
  2748. float.Parse(strArray9[1]),
  2749. float.Parse(strArray9[2]));
  2750. muneIKR[i] = true;
  2751. break;
  2752. case 95:
  2753. vIKMuneRSub[i] = new Vector3(float.Parse(strArray9[0]),
  2754. float.Parse(strArray9[1]),
  2755. float.Parse(strArray9[2]));
  2756. break;
  2757. case 96:
  2758. haraCount[i] = 2;
  2759. haraPosition[i] = new Vector3(float.Parse(strArray9[0]),
  2760. float.Parse(strArray9[1]),
  2761. float.Parse(strArray9[2]));
  2762. transform1.position = new Vector3(float.Parse(strArray9[0]),
  2763. float.Parse(strArray9[1]),
  2764. float.Parse(strArray9[2]));
  2765. break;
  2766. }
  2767. }
  2768. }
  2769. isStop[i] = true;
  2770. isLock[i] = true;
  2771. }
  2772. }
  2773. }
  2774. isBloom = false;
  2775. bloom1 = 2.85f;
  2776. bloom2 = 3f;
  2777. bloom3 = 0.0f;
  2778. bloom4 = 0.0f;
  2779. bloom5 = 0.0f;
  2780. isBloomA = false;
  2781. isBlur = false;
  2782. blur1 = -3.98f;
  2783. blur4 = -0.75f;
  2784. blur2 = 0.9f;
  2785. blur3 = 4.19f;
  2786. bokashi = 0.0f;
  2787. kamiyure = 0.0f;
  2788. isDepth = false;
  2789. isDepthA = false;
  2790. depth1 = 3f;
  2791. depth2 = 0.1f;
  2792. depth3 = 15f;
  2793. depth4 = 3f;
  2794. isFog = false;
  2795. fog1 = 4f;
  2796. fog2 = 1f;
  2797. fog3 = 1f;
  2798. fog4 = 0.0f;
  2799. fog5 = 1f;
  2800. fog6 = 1f;
  2801. fog7 = 1f;
  2802. isSepia = false;
  2803. if (strArray4 != null)
  2804. {
  2805. lightKage[0] = float.Parse(strArray4[0]);
  2806. if (int.Parse(strArray4[1]) == 1)
  2807. {
  2808. isBloom = true;
  2809. bloom1 = float.Parse(strArray4[2]);
  2810. bloom2 = float.Parse(strArray4[3]);
  2811. bloom3 = float.Parse(strArray4[4]);
  2812. bloom4 = float.Parse(strArray4[5]);
  2813. bloom5 = float.Parse(strArray4[6]);
  2814. if (int.Parse(strArray4[7]) == 1)
  2815. {
  2816. isBloomA = true;
  2817. }
  2818. }
  2819. if (int.Parse(strArray4[8]) == 1)
  2820. {
  2821. isBlur = true;
  2822. blur1 = float.Parse(strArray4[9]);
  2823. blur2 = float.Parse(strArray4[10]);
  2824. blur3 = float.Parse(strArray4[11]);
  2825. blur4 = float.Parse(strArray4[12]);
  2826. }
  2827. bokashi = float.Parse(strArray4[13]);
  2828. kamiyure = float.Parse(strArray4[14]);
  2829. if (strArray4.Length > 15)
  2830. {
  2831. if (int.Parse(strArray4[15]) == 1)
  2832. {
  2833. isDepth = true;
  2834. depth1 = float.Parse(strArray4[16]);
  2835. depth2 = float.Parse(strArray4[17]);
  2836. depth3 = float.Parse(strArray4[18]);
  2837. depth4 = float.Parse(strArray4[19]);
  2838. if (int.Parse(strArray4[20]) == 1)
  2839. {
  2840. isDepthA = true;
  2841. }
  2842. }
  2843. if (int.Parse(strArray4[21]) == 1)
  2844. {
  2845. isFog = true;
  2846. fog1 = float.Parse(strArray4[22]);
  2847. fog2 = float.Parse(strArray4[23]);
  2848. fog3 = float.Parse(strArray4[24]);
  2849. fog4 = float.Parse(strArray4[25]);
  2850. fog5 = float.Parse(strArray4[26]);
  2851. fog6 = float.Parse(strArray4[27]);
  2852. fog7 = float.Parse(strArray4[28]);
  2853. }
  2854. if (int.Parse(strArray4[29]) == 1)
  2855. {
  2856. isSepia = true;
  2857. }
  2858. }
  2859. }
  2860. if (strArray5 != null)
  2861. {
  2862. for (int index1 = 0; index1 < strArray5.Length - 1; ++index1)
  2863. {
  2864. string[] strArray8 = strArray5[index1].Split(',');
  2865. GameObject gameObject = new GameObject("Light");
  2866. gameObject.AddComponent<Light>();
  2867. lightList.Add(gameObject);
  2868. lightIndex.Add(int.Parse(strArray8[0]));
  2869. lightColorR.Add(float.Parse(strArray8[1]));
  2870. lightColorG.Add(float.Parse(strArray8[2]));
  2871. lightColorB.Add(float.Parse(strArray8[3]));
  2872. lightX.Add(float.Parse(strArray8[4]));
  2873. lightY.Add(float.Parse(strArray8[5]));
  2874. lightAkarusa.Add(float.Parse(strArray8[6]));
  2875. lightRange.Add(float.Parse(strArray8[7]));
  2876. lightKage.Add(0.098f);
  2877. gameObject.transform.position = GameMain.Instance.MainLight.transform.position;
  2878. selectLightIndex = lightList.Count - 1;
  2879. lightComboList = new GUIContent[lightList.Count];
  2880. for (int index2 = 0; index2 < lightList.Count; ++index2)
  2881. {
  2882. lightComboList[index2] = index2 != 0 ? new GUIContent("追加" + index2) : new GUIContent("メイン");
  2883. }
  2884. lightCombo.selectedItemIndex = selectLightIndex;
  2885. gameObject.GetComponent<Light>().intensity = lightAkarusa[index1];
  2886. gameObject.GetComponent<Light>().spotAngle = lightRange[index1];
  2887. gameObject.GetComponent<Light>().range = lightRange[index1] / 5f;
  2888. if (lightIndex[selectLightIndex] == 0)
  2889. {
  2890. lightList[selectLightIndex].GetComponent<Light>().type = LightType.Directional;
  2891. }
  2892. else if (lightIndex[selectLightIndex] == 1)
  2893. {
  2894. lightList[selectLightIndex].GetComponent<Light>().type = LightType.Spot;
  2895. }
  2896. else if (lightIndex[selectLightIndex] == 2)
  2897. {
  2898. lightList[selectLightIndex].GetComponent<Light>().type = LightType.Point;
  2899. }
  2900. else if (lightIndex[selectLightIndex] == 3)
  2901. {
  2902. lightList[selectLightIndex].GetComponent<Light>().type = LightType.Directional;
  2903. lightList[selectLightIndex].SetActive(false);
  2904. }
  2905. }
  2906. }
  2907. if (strArray7 != null)
  2908. {
  2909. for (int index = 0; index < lightList.Count; ++index)
  2910. {
  2911. string[] strArray8 = strArray7[index].Split(',');
  2912. lightList[index].transform.position =
  2913. new Vector3(float.Parse(strArray8[0]), float.Parse(strArray8[1]), float.Parse(strArray8[2]));
  2914. if (gLight[index] == null)
  2915. {
  2916. gLight[index] = GameObject.CreatePrimitive(PrimitiveType.Cube);
  2917. gLight[index].GetComponent<Renderer>().material =
  2918. new Material(Shader.Find("Transparent/Diffuse")) { color = new Color(0.5f, 0.5f, 1f, 0.8f) };
  2919. gLight[index].layer = 8;
  2920. gLight[index].GetComponent<Renderer>().enabled = false;
  2921. gLight[index].SetActive(false);
  2922. gLight[index].transform.position = lightList[index].transform.position;
  2923. mLight[index] = gLight[index].AddComponent<MouseDrag6>();
  2924. mLight[index].obj = gLight[index];
  2925. mLight[index].maid = lightList[index].gameObject;
  2926. mLight[index].angles = lightList[index].transform.eulerAngles;
  2927. gLight[index].transform.localScale = new Vector3(0.12f, 0.12f, 0.12f);
  2928. mLight[index].ido = 1;
  2929. mLight[index].isScale = false;
  2930. }
  2931. }
  2932. }
  2933. if (strArray6 != null)
  2934. {
  2935. for (int index = 0; index < doguBObject.Count; ++index)
  2936. {
  2937. GraphicsUtils.Destroy(doguBObject[index]);
  2938. }
  2939. doguBObject = new List<GameObject>();
  2940. Dictionary<string, string> modFiles = null;
  2941. for (int index1 = 0; index1 < strArray6.Length - 1; ++index1)
  2942. {
  2943. string[] strArray8 = strArray6[index1].Split(',');
  2944. string str1 = strArray8[0].Replace(" ", "_");
  2945. GameObject original1 = null;
  2946. bool flag1 = true;
  2947. if (str1.Contains(".menu"))
  2948. {
  2949. string mainMenu = str1;
  2950. string modMenu = null;
  2951. int modMenuPos = str1.IndexOf("#");
  2952. if (modMenuPos >= 0)
  2953. {
  2954. if (modFiles == null)
  2955. {
  2956. modFiles = new Dictionary<string, string>();
  2957. foreach (string filePath in Menu.GetModFiles())
  2958. {
  2959. string filename = Path.GetFileName(filePath).ToLowerInvariant();
  2960. if (!modFiles.ContainsKey(filename)) modFiles.Add(filename, filePath);
  2961. }
  2962. }
  2963. string modFilename = strArray8[0].Substring(modMenuPos + 1).Replace(" ", "_").ToLowerInvariant();
  2964. modMenu = modFiles[modFilename];
  2965. mainMenu = str1.Substring(0, modMenuPos);
  2966. }
  2967. byte[] modBuf = null;
  2968. if (!string.IsNullOrEmpty(modMenu))
  2969. {
  2970. using (FileStream fileStream = new FileStream(modMenu, FileMode.Open))
  2971. {
  2972. if (fileStream != null)
  2973. {
  2974. modBuf = new byte[fileStream.Length];
  2975. fileStream.Read(modBuf, 0, (int)fileStream.Length);
  2976. }
  2977. else
  2978. {
  2979. flag1 = false;
  2980. }
  2981. }
  2982. }
  2983. byte[] menuBuf = null;
  2984. using (AFileBase afileBase = GameUty.FileOpen(mainMenu, null))
  2985. {
  2986. if (flag1 = afileBase.IsValid())
  2987. {
  2988. menuBuf = afileBase.ReadAll();
  2989. }
  2990. }
  2991. if (flag1)
  2992. {
  2993. string[] meshInfo = ProcScriptBin(menuBuf);
  2994. original1 = ImportCM2.LoadSkinMesh_R(meshInfo[0], meshInfo, 1);
  2995. original1.name = mainMenu;
  2996. if (modBuf != null)
  2997. {
  2998. original1.name += $"#{Path.GetFileName(modMenu)}";
  2999. ProcModScriptBin(modBuf, original1);
  3000. }
  3001. doguBObject.Add(original1);
  3002. Vector3 zero1 = Vector3.zero;
  3003. Vector3 zero2 = Vector3.zero;
  3004. zero1.z = 0.4f;
  3005. if (str1.Contains("HandItem"))
  3006. {
  3007. switch (str1)
  3008. {
  3009. case "HandItemR_WineGlass_I_.menu":
  3010. zero2.z = 90f;
  3011. zero1.y = 0.04f;
  3012. goto case "HandItemL_Dance_Hataki_I_.menu";
  3013. case "HandItemR_WineBottle_I_.menu":
  3014. zero2.z = 90f;
  3015. goto case "HandItemL_Dance_Hataki_I_.menu";
  3016. case "HandItemR_Mop_I_.menu":
  3017. zero2.x = 90f;
  3018. goto case "HandItemL_Dance_Hataki_I_.menu";
  3019. case "HandItemL_Dance_Hataki_I_.menu":
  3020. case "HandItemL_Dance_Mop_I_.menu": break;
  3021. default:
  3022. zero2.x = -90f;
  3023. goto case "HandItemL_Dance_Hataki_I_.menu";
  3024. }
  3025. }
  3026. original1.transform.localPosition = zero1;
  3027. original1.transform.localRotation = Quaternion.Euler(zero2);
  3028. }
  3029. }
  3030. else
  3031. {
  3032. try
  3033. {
  3034. bool flag2 = false;
  3035. bool flag3 = false;
  3036. if (str1.StartsWith("creative_"))
  3037. {
  3038. string asset = str1.Replace("creative_", "");
  3039. Object original2 = GameMain.Instance.BgMgr.CreateAssetBundle(asset);
  3040. if (original2 == null)
  3041. {
  3042. original2 = Resources.Load($"SceneCreativeRoom/Debug/Prefab/{asset}");
  3043. }
  3044. original1 = Instantiate(original2) as GameObject;
  3045. doguBObject.Add(original1);
  3046. }
  3047. else if (str1.StartsWith("BG_"))
  3048. {
  3049. Object original2 = GameMain.Instance.BgMgr.CreateAssetBundle(str1.Replace("BG_", ""));
  3050. if (original2 == null)
  3051. {
  3052. original2 = Resources.Load(str1.Replace("BG_", "BG/"));
  3053. }
  3054. original1 = Instantiate(original2) as GameObject;
  3055. doguBObject.Add(original1);
  3056. }
  3057. else if (str1.Contains("#"))
  3058. {
  3059. original1 = GameMain.Instance.BgMgr.CreateAssetBundle(str1.Split('#')[1]);
  3060. if (original1 != null)
  3061. {
  3062. original1 = Instantiate(original1);
  3063. MeshRenderer[] componentsInChildren = original1.GetComponentsInChildren<MeshRenderer>();
  3064. for (int index2 = 0; index2 < componentsInChildren.Length; ++index2)
  3065. {
  3066. if (componentsInChildren[index2] != null)
  3067. {
  3068. componentsInChildren[index2].shadowCastingMode = ShadowCastingMode.Off;
  3069. }
  3070. }
  3071. }
  3072. flag2 = true;
  3073. if (!parArray[parIndex].Contains("Odogu_"))
  3074. {
  3075. flag3 = true;
  3076. }
  3077. doguBObject.Add(original1);
  3078. }
  3079. else if (!str1.StartsWith("mirror") && str1.IndexOf(":") < 0)
  3080. {
  3081. Object original2;
  3082. bool isBG = str1.StartsWith("BG");
  3083. string name = isBG ? str1.Replace("BG", "") : str1;
  3084. original2 = GameMain.Instance.BgMgr.CreateAssetBundle(name);
  3085. if (original2 == null)
  3086. {
  3087. original2 = Resources.Load((isBG ? "BG/" : "Prefab/") + name);
  3088. }
  3089. original1 = Instantiate(original2) as GameObject;
  3090. doguBObject.Add(original1);
  3091. }
  3092. else if (str1.StartsWith("mirror"))
  3093. {
  3094. Material material = new Material(Shader.Find("Mirror"));
  3095. GameObject primitive = GameObject.CreatePrimitive(PrimitiveType.Plane);
  3096. primitive.transform.localScale = new Vector3(0.3f, 1f, 0.3f);
  3097. primitive.GetComponent<Renderer>().material = material;
  3098. primitive.AddComponent<MirrorReflection2>();
  3099. MirrorReflection2 component = primitive.GetComponent<MirrorReflection2>();
  3100. component.m_TextureSize = 2048;
  3101. component.m_ClipPlaneOffset = 0.0f;
  3102. primitive.GetComponent<Renderer>().enabled = true;
  3103. original1 = primitive;
  3104. doguBObject.Add(original1);
  3105. }
  3106. else
  3107. {
  3108. string[] strArray9 = str1.Split(':');
  3109. Object original2 = GameMain.Instance.BgMgr.CreateAssetBundle(strArray9[0]);
  3110. if (original2 == null)
  3111. {
  3112. original2 = Resources.Load("BG/" + strArray9[0]);
  3113. }
  3114. GameObject gameObject = Instantiate(original2) as GameObject;
  3115. int num = 0;
  3116. int.TryParse(strArray9[1], out int result);
  3117. foreach (Transform transform in gameObject.transform)
  3118. {
  3119. if (result == num)
  3120. {
  3121. original1 = transform.gameObject;
  3122. break;
  3123. }
  3124. ++num;
  3125. }
  3126. doguBObject.Add(original1);
  3127. original1.transform.parent = null;
  3128. GraphicsUtils.Destroy(gameObject);
  3129. gameObject.SetActive(false);
  3130. }
  3131. original1.name = str1;
  3132. Vector3 zero1 = Vector3.zero;
  3133. Vector3 zero2 = Vector3.zero;
  3134. if (str1.StartsWith("BG_"))
  3135. {
  3136. original1.transform.localScale = new Vector3(0.1f, 0.1f, 0.1f);
  3137. }
  3138. switch (str1)
  3139. {
  3140. case "Odogu_XmasTreeMini_photo_ver":
  3141. zero1.z = 0.6f;
  3142. original1.transform.localScale = new Vector3(4.5f, 4.5f, 4.5f);
  3143. IEnumerator enumerator1 = original1.transform.GetEnumerator();
  3144. try
  3145. {
  3146. while (enumerator1.MoveNext())
  3147. {
  3148. Transform current = (Transform)enumerator1.Current;
  3149. if (current.GetComponent<Collider>() != null)
  3150. {
  3151. current.GetComponent<Collider>().enabled = false;
  3152. }
  3153. }
  3154. break;
  3155. }
  3156. finally
  3157. {
  3158. (enumerator1 as IDisposable)?.Dispose();
  3159. }
  3160. case "Odogu_KadomatsuMini_photo_ver":
  3161. zero1.z = 0.6f;
  3162. original1.transform.localScale = new Vector3(3.5f, 3.5f, 3.5f);
  3163. IEnumerator enumerator2 = original1.transform.GetEnumerator();
  3164. try
  3165. {
  3166. while (enumerator2.MoveNext())
  3167. {
  3168. Transform current = (Transform)enumerator2.Current;
  3169. if (current.GetComponent<Collider>() != null)
  3170. {
  3171. current.GetComponent<Collider>().enabled = false;
  3172. }
  3173. }
  3174. break;
  3175. }
  3176. finally
  3177. {
  3178. (enumerator2 as IDisposable)?.Dispose();
  3179. }
  3180. case "Odogu_ClassRoomDesk":
  3181. zero1.z = 0.5f;
  3182. zero2.x = -90f;
  3183. break;
  3184. case "mirror1":
  3185. zero1.z = -0.6f;
  3186. zero1.y = 0.96f;
  3187. zero2.z = 180f;
  3188. zero2.x = -90f;
  3189. original1.transform.localScale = new Vector3(0.2f, 0.4f, 0.2f);
  3190. break;
  3191. case "mirror2":
  3192. zero1.z = -0.6f;
  3193. zero1.y = 0.96f;
  3194. zero2.z = 180f;
  3195. zero2.x = -90f;
  3196. original1.transform.localScale = new Vector3(0.1f, 0.4f, 0.2f);
  3197. break;
  3198. case "mirror3":
  3199. zero1.z = -0.6f;
  3200. zero1.y = 0.85f;
  3201. zero2.z = 180f;
  3202. zero2.x = -90f;
  3203. original1.transform.localScale = new Vector3(0.03f, 0.18f, 0.124f);
  3204. break;
  3205. case "Particle/pLineY":
  3206. case "Particle/pLineP02":
  3207. case "Particle/pLine_act2":
  3208. original1.transform.localScale = new Vector3(3f, 3f, 3f);
  3209. break;
  3210. case "Mob_Man_Stand001":
  3211. case "Mob_Man_Stand002":
  3212. case "Mob_Man_Stand003":
  3213. case "Mob_Man_Sit001":
  3214. case "Mob_Man_Sit002":
  3215. case "Mob_Man_Sit003":
  3216. case "Mob_Girl_Stand001":
  3217. case "Mob_Girl_Stand002":
  3218. case "Mob_Girl_Stand003":
  3219. case "Mob_Girl_Sit001":
  3220. case "Mob_Girl_Sit002":
  3221. case "Mob_Girl_Sit003":
  3222. case "Salon:63":
  3223. case "Salon:65":
  3224. case "Salon:69":
  3225. case "Salon_Entrance:0":
  3226. case "Salon_Entrance:1":
  3227. case "Salon_Entrance:2":
  3228. case "Salon_Entrance:3":
  3229. case "Salon_Entrance:4":
  3230. case "Pool:26":
  3231. case "Shitsumu:23":
  3232. case "Shitsumu_Night:23":
  3233. zero1.z = 0.5f;
  3234. zero2.x = -90f;
  3235. break;
  3236. case "Odogu_Dresser_photo_ver":
  3237. GameObject.Find("Prim.00000000").GetComponent<Collider>().enabled = false;
  3238. GameObject.Find("Prim.00000001").GetComponent<Collider>().enabled = false;
  3239. GameObject.Find("Prim.00000002").GetComponent<Collider>().enabled = false;
  3240. GameObject.Find("Prim.00000004").GetComponent<Collider>().enabled = false;
  3241. break;
  3242. default:
  3243. zero1.z = 0.5f;
  3244. if (str1.StartsWith("Odogu_"))
  3245. {
  3246. IEnumerator enumerator3 = original1.transform.GetEnumerator();
  3247. try
  3248. {
  3249. while (enumerator3.MoveNext())
  3250. {
  3251. Transform current = (Transform)enumerator3.Current;
  3252. if (current.GetComponent<Collider>() != null)
  3253. {
  3254. current.GetComponent<Collider>().enabled = false;
  3255. }
  3256. }
  3257. break;
  3258. }
  3259. finally
  3260. {
  3261. (enumerator3 as IDisposable)?.Dispose();
  3262. }
  3263. }
  3264. else
  3265. {
  3266. if (original1.GetComponent<Collider>() != null)
  3267. {
  3268. original1.GetComponent<Collider>().enabled = false;
  3269. }
  3270. break;
  3271. }
  3272. }
  3273. if (flag2)
  3274. {
  3275. zero1.z = 0.4f;
  3276. if (flag3)
  3277. {
  3278. zero2.x = -90f;
  3279. }
  3280. }
  3281. original1.transform.localPosition = zero1;
  3282. original1.transform.localRotation = Quaternion.Euler(zero2);
  3283. }
  3284. catch
  3285. {
  3286. flag1 = false;
  3287. }
  3288. }
  3289. if (flag1)
  3290. {
  3291. doguCnt = doguBObject.Count - 1;
  3292. gDogu[doguCnt] = GameObject.CreatePrimitive(PrimitiveType.Cube);
  3293. Vector3 localEulerAngles = original1.transform.localEulerAngles;
  3294. original1.transform.localEulerAngles =
  3295. new Vector3(float.Parse(strArray8[1]), float.Parse(strArray8[2]), float.Parse(strArray8[3]));
  3296. original1.transform.position =
  3297. new Vector3(float.Parse(strArray8[4]), float.Parse(strArray8[5]), float.Parse(strArray8[6]));
  3298. gDogu[doguCnt].transform.localEulerAngles =
  3299. new Vector3(float.Parse(strArray8[1]), float.Parse(strArray8[2]), float.Parse(strArray8[3]));
  3300. gDogu[doguCnt].transform.position =
  3301. new Vector3(float.Parse(strArray8[4]), float.Parse(strArray8[5]), float.Parse(strArray8[6]));
  3302. gDogu[doguCnt].GetComponent<Renderer>().material = m_material;
  3303. gDogu[doguCnt].layer = 8;
  3304. gDogu[doguCnt].GetComponent<Renderer>().enabled = false;
  3305. gDogu[doguCnt].SetActive(false);
  3306. gDogu[doguCnt].transform.position = original1.transform.position;
  3307. mDogu[doguCnt] = gDogu[doguCnt].AddComponent<MouseDrag6>();
  3308. mDogu[doguCnt].obj = gDogu[doguCnt];
  3309. mDogu[doguCnt].maid = original1;
  3310. mDogu[doguCnt].angles = localEulerAngles;
  3311. gDogu[doguCnt].transform.localScale = new Vector3(cubeSize, cubeSize, cubeSize);
  3312. mDogu[doguCnt].ido = 1;
  3313. mDogu[doguCnt].isScale = false;
  3314. if (str1 == "Particle/pLineY")
  3315. {
  3316. mDogu[doguCnt].count = 180;
  3317. }
  3318. if (str1 == "Particle/pLineP02")
  3319. {
  3320. mDogu[doguCnt].count = 115;
  3321. }
  3322. if (original1.name == "Particle/pLine_act2")
  3323. {
  3324. mDogu[doguCnt].count = 80;
  3325. original1.transform.localScale = new Vector3(3f, 3f, 3f);
  3326. }
  3327. if (original1.name == "Particle/pHeart01")
  3328. {
  3329. mDogu[doguCnt].count = 80;
  3330. }
  3331. if (str1 == "mirror1" || str1 == "mirror2" || str1 == "mirror3")
  3332. {
  3333. mDogu[doguCnt].isScale = true;
  3334. mDogu[doguCnt].isScale2 = true;
  3335. mDogu[doguCnt].scale2 = original1.transform.localScale;
  3336. if (str1 == "mirror1")
  3337. {
  3338. mDogu[doguCnt].scale = new Vector3(original1.transform.localScale.x * 5f,
  3339. original1.transform.localScale.y * 5f,
  3340. original1.transform.localScale.z * 5f);
  3341. }
  3342. if (str1 == "mirror2")
  3343. {
  3344. mDogu[doguCnt].scale = new Vector3(original1.transform.localScale.x * 10f,
  3345. original1.transform.localScale.y * 10f,
  3346. original1.transform.localScale.z * 10f);
  3347. }
  3348. if (str1 == "mirror3")
  3349. {
  3350. mDogu[doguCnt].scale = new Vector3(original1.transform.localScale.x * 33f,
  3351. original1.transform.localScale.y * 33f,
  3352. original1.transform.localScale.z * 33f);
  3353. }
  3354. }
  3355. if (str1 == "Odogu_XmasTreeMini_photo_ver" || str1 == "Odogu_KadomatsuMini_photo_ver")
  3356. {
  3357. mDogu[doguCnt].isScale2 = true;
  3358. mDogu[doguCnt].scale2 = original1.transform.localScale;
  3359. }
  3360. original1.transform.localScale =
  3361. new Vector3(float.Parse(strArray8[7]), float.Parse(strArray8[8]), float.Parse(strArray8[9]));
  3362. }
  3363. }
  3364. }
  3365. loadScene = 0;
  3366. sceneData = "";
  3367. kankyoLoadFlg = false;
  3368. }
  3369. for (int i = 0; i < maidCnt; ++i)
  3370. {
  3371. if (loadPose[i] != "" && isLoadPose[i])
  3372. {
  3373. IniKey iniKey = Preferences["pose"][loadPose[i]];
  3374. if (iniKey.Value == null || iniKey.Value.ToString() == "" || iniKey.Value.ToString() == "del")
  3375. {
  3376. loadPose[i] = "";
  3377. isLoadPose[i] = false;
  3378. }
  3379. else
  3380. {
  3381. if (loadCount[i] > 4)
  3382. {
  3383. isLoadPose[i] = false;
  3384. loadPose[i] = "";
  3385. loadCount[i] = 0;
  3386. }
  3387. int num = 0;
  3388. while (num < 10)
  3389. {
  3390. ++num;
  3391. }
  3392. ++loadCount[i];
  3393. Maid maid = maidArray[i];
  3394. isStop[i] = true;
  3395. if (maid && maid.Visible)
  3396. {
  3397. SetIK(maid, i);
  3398. Transform transform1 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01", true);
  3399. Transform transform2 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe0", true);
  3400. Transform transform3 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe0", true);
  3401. Transform transform4 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe01", true);
  3402. Transform transform5 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe01", true);
  3403. Transform transform6 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe0Nub", true);
  3404. Transform transform7 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe0Nub", true);
  3405. Transform transform8 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe1", true);
  3406. Transform transform9 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe1", true);
  3407. Transform transform10 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe11", true);
  3408. Transform transform11 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe11", true);
  3409. Transform transform12 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe1Nub", true);
  3410. Transform transform13 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe1Nub", true);
  3411. Transform transform14 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe2", true);
  3412. Transform transform15 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe2", true);
  3413. Transform transform16 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe21", true);
  3414. Transform transform17 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe21", true);
  3415. Transform transform18 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe2Nub", true);
  3416. Transform transform19 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe2Nub", true);
  3417. string[] strArray1 = iniKey.Value.Split('_')[1].Split(':');
  3418. for (int index = 0; index < 40; ++index)
  3419. {
  3420. string[] strArray2 = strArray1[index].Split(',');
  3421. Finger[i, index].localEulerAngles =
  3422. new Vector3(float.Parse(strArray2[0]), float.Parse(strArray2[1]), float.Parse(strArray2[2]));
  3423. }
  3424. bool flag = false;
  3425. if (strArray1.Length == 64)
  3426. {
  3427. flag = true;
  3428. }
  3429. Vector3 localEulerAngles = maid.transform.localEulerAngles;
  3430. maid.transform.localEulerAngles = new Vector3(0.0f, 0.0f, 0.0f);
  3431. Vector3 position = maid.transform.position;
  3432. maid.transform.position = new Vector3(0.0f, 0.0f, 0.0f);
  3433. for (int index1 = 0; index1 < 3; ++index1)
  3434. {
  3435. for (int index2 = 40; index2 < strArray1.Length; ++index2)
  3436. {
  3437. string[] strArray2 = strArray1[index2].Split(',');
  3438. switch (index2)
  3439. {
  3440. case 40:
  3441. if (flag)
  3442. {
  3443. Spine.localEulerAngles =
  3444. new Vector3(float.Parse(strArray2[0]),
  3445. float.Parse(strArray2[1]),
  3446. float.Parse(strArray2[2]));
  3447. }
  3448. if (!flag)
  3449. {
  3450. Spine.eulerAngles = new Vector3(float.Parse(strArray2[0]),
  3451. float.Parse(strArray2[1]),
  3452. float.Parse(strArray2[2]));
  3453. break;
  3454. }
  3455. break;
  3456. case 41:
  3457. if (flag)
  3458. {
  3459. Spine0a.localEulerAngles =
  3460. new Vector3(float.Parse(strArray2[0]),
  3461. float.Parse(strArray2[1]),
  3462. float.Parse(strArray2[2]));
  3463. }
  3464. if (!flag)
  3465. {
  3466. Spine0a.eulerAngles =
  3467. new Vector3(float.Parse(strArray2[0]),
  3468. float.Parse(strArray2[1]),
  3469. float.Parse(strArray2[2]));
  3470. break;
  3471. }
  3472. break;
  3473. case 42:
  3474. if (flag)
  3475. {
  3476. Spine1.localEulerAngles =
  3477. new Vector3(float.Parse(strArray2[0]),
  3478. float.Parse(strArray2[1]),
  3479. float.Parse(strArray2[2]));
  3480. }
  3481. if (!flag)
  3482. {
  3483. Spine1.eulerAngles = new Vector3(float.Parse(strArray2[0]),
  3484. float.Parse(strArray2[1]),
  3485. float.Parse(strArray2[2]));
  3486. break;
  3487. }
  3488. break;
  3489. case 43:
  3490. if (flag)
  3491. {
  3492. Spine1a.localEulerAngles =
  3493. new Vector3(float.Parse(strArray2[0]),
  3494. float.Parse(strArray2[1]),
  3495. float.Parse(strArray2[2]));
  3496. }
  3497. if (!flag)
  3498. {
  3499. Spine1a.eulerAngles =
  3500. new Vector3(float.Parse(strArray2[0]),
  3501. float.Parse(strArray2[1]),
  3502. float.Parse(strArray2[2]));
  3503. break;
  3504. }
  3505. break;
  3506. case 44:
  3507. if (flag)
  3508. {
  3509. Pelvis.localEulerAngles =
  3510. new Vector3(float.Parse(strArray2[0]),
  3511. float.Parse(strArray2[1]),
  3512. float.Parse(strArray2[2]));
  3513. }
  3514. if (!flag)
  3515. {
  3516. Pelvis.eulerAngles = new Vector3(float.Parse(strArray2[0]),
  3517. float.Parse(strArray2[1]),
  3518. float.Parse(strArray2[2]));
  3519. break;
  3520. }
  3521. break;
  3522. case 45:
  3523. HandL1[i].localEulerAngles =
  3524. new Vector3(float.Parse(strArray2[0]),
  3525. float.Parse(strArray2[1]),
  3526. float.Parse(strArray2[2]));
  3527. break;
  3528. case 46:
  3529. if (flag)
  3530. {
  3531. UpperArmL1[i].localEulerAngles =
  3532. new Vector3(float.Parse(strArray2[0]),
  3533. float.Parse(strArray2[1]),
  3534. float.Parse(strArray2[2]));
  3535. }
  3536. if (!flag)
  3537. {
  3538. UpperArmL1[i].eulerAngles =
  3539. new Vector3(float.Parse(strArray2[0]),
  3540. float.Parse(strArray2[1]),
  3541. float.Parse(strArray2[2]));
  3542. break;
  3543. }
  3544. break;
  3545. case 47:
  3546. if (flag)
  3547. {
  3548. ForearmL1[i].localEulerAngles =
  3549. new Vector3(float.Parse(strArray2[0]),
  3550. float.Parse(strArray2[1]),
  3551. float.Parse(strArray2[2]));
  3552. }
  3553. if (!flag)
  3554. {
  3555. ForearmL1[i].eulerAngles =
  3556. new Vector3(float.Parse(strArray2[0]),
  3557. float.Parse(strArray2[1]),
  3558. float.Parse(strArray2[2]));
  3559. break;
  3560. }
  3561. break;
  3562. case 48:
  3563. HandR1[i].localEulerAngles =
  3564. new Vector3(float.Parse(strArray2[0]),
  3565. float.Parse(strArray2[1]),
  3566. float.Parse(strArray2[2]));
  3567. break;
  3568. case 49:
  3569. if (flag)
  3570. {
  3571. UpperArmR1[i].localEulerAngles =
  3572. new Vector3(float.Parse(strArray2[0]),
  3573. float.Parse(strArray2[1]),
  3574. float.Parse(strArray2[2]));
  3575. }
  3576. if (!flag)
  3577. {
  3578. UpperArmR1[i].eulerAngles =
  3579. new Vector3(float.Parse(strArray2[0]),
  3580. float.Parse(strArray2[1]),
  3581. float.Parse(strArray2[2]));
  3582. break;
  3583. }
  3584. break;
  3585. case 50:
  3586. if (flag)
  3587. {
  3588. ForearmR1[i].localEulerAngles =
  3589. new Vector3(float.Parse(strArray2[0]),
  3590. float.Parse(strArray2[1]),
  3591. float.Parse(strArray2[2]));
  3592. }
  3593. if (!flag)
  3594. {
  3595. ForearmR1[i].eulerAngles =
  3596. new Vector3(float.Parse(strArray2[0]),
  3597. float.Parse(strArray2[1]),
  3598. float.Parse(strArray2[2]));
  3599. break;
  3600. }
  3601. break;
  3602. case 51:
  3603. HandL2[i].localEulerAngles =
  3604. new Vector3(float.Parse(strArray2[0]),
  3605. float.Parse(strArray2[1]),
  3606. float.Parse(strArray2[2]));
  3607. break;
  3608. case 52:
  3609. if (flag)
  3610. {
  3611. UpperArmL2[i].localEulerAngles =
  3612. new Vector3(float.Parse(strArray2[0]),
  3613. float.Parse(strArray2[1]),
  3614. float.Parse(strArray2[2]));
  3615. }
  3616. if (!flag)
  3617. {
  3618. UpperArmL2[i].eulerAngles =
  3619. new Vector3(float.Parse(strArray2[0]),
  3620. float.Parse(strArray2[1]),
  3621. float.Parse(strArray2[2]));
  3622. break;
  3623. }
  3624. break;
  3625. case 53:
  3626. if (flag)
  3627. {
  3628. ForearmL2[i].localEulerAngles =
  3629. new Vector3(float.Parse(strArray2[0]),
  3630. float.Parse(strArray2[1]),
  3631. float.Parse(strArray2[2]));
  3632. }
  3633. if (!flag)
  3634. {
  3635. ForearmL2[i].eulerAngles =
  3636. new Vector3(float.Parse(strArray2[0]),
  3637. float.Parse(strArray2[1]),
  3638. float.Parse(strArray2[2]));
  3639. break;
  3640. }
  3641. break;
  3642. case 54:
  3643. HandR2[i].localEulerAngles =
  3644. new Vector3(float.Parse(strArray2[0]),
  3645. float.Parse(strArray2[1]),
  3646. float.Parse(strArray2[2]));
  3647. break;
  3648. case 55:
  3649. if (flag)
  3650. {
  3651. UpperArmR2[i].localEulerAngles =
  3652. new Vector3(float.Parse(strArray2[0]),
  3653. float.Parse(strArray2[1]),
  3654. float.Parse(strArray2[2]));
  3655. }
  3656. if (!flag)
  3657. {
  3658. UpperArmR2[i].eulerAngles =
  3659. new Vector3(float.Parse(strArray2[0]),
  3660. float.Parse(strArray2[1]),
  3661. float.Parse(strArray2[2]));
  3662. break;
  3663. }
  3664. break;
  3665. case 56:
  3666. if (flag)
  3667. {
  3668. ForearmR2[i].localEulerAngles =
  3669. new Vector3(float.Parse(strArray2[0]),
  3670. float.Parse(strArray2[1]),
  3671. float.Parse(strArray2[2]));
  3672. }
  3673. if (!flag)
  3674. {
  3675. ForearmR2[i].eulerAngles =
  3676. new Vector3(float.Parse(strArray2[0]),
  3677. float.Parse(strArray2[1]),
  3678. float.Parse(strArray2[2]));
  3679. break;
  3680. }
  3681. break;
  3682. case 57:
  3683. if (flag)
  3684. {
  3685. Head.localEulerAngles =
  3686. new Vector3(float.Parse(strArray2[0]),
  3687. float.Parse(strArray2[1]),
  3688. float.Parse(strArray2[2]));
  3689. }
  3690. if (!flag)
  3691. {
  3692. Head.eulerAngles = new Vector3(float.Parse(strArray2[0]),
  3693. float.Parse(strArray2[1]),
  3694. float.Parse(strArray2[2]));
  3695. break;
  3696. }
  3697. break;
  3698. case 66:
  3699. CMT.SearchObjName(maid.body0.m_Bones.transform, "_IK_handL", true).localEulerAngles =
  3700. new Vector3(float.Parse(strArray2[0]),
  3701. float.Parse(strArray2[1]),
  3702. float.Parse(strArray2[2]));
  3703. break;
  3704. case 67:
  3705. CMT.SearchObjName(maid.body0.m_Bones.transform, "_IK_handR", true).localEulerAngles =
  3706. new Vector3(float.Parse(strArray2[0]),
  3707. float.Parse(strArray2[1]),
  3708. float.Parse(strArray2[2]));
  3709. break;
  3710. case 68:
  3711. if (strArray2.Length >= 2)
  3712. {
  3713. ClavicleL1[i].eulerAngles =
  3714. new Vector3(float.Parse(strArray2[0]),
  3715. float.Parse(strArray2[1]),
  3716. float.Parse(strArray2[2]));
  3717. break;
  3718. }
  3719. break;
  3720. case 69:
  3721. ClavicleR1[i].eulerAngles =
  3722. new Vector3(float.Parse(strArray2[0]),
  3723. float.Parse(strArray2[1]),
  3724. float.Parse(strArray2[2]));
  3725. break;
  3726. case 71:
  3727. transform1.eulerAngles =
  3728. new Vector3(float.Parse(strArray2[0]),
  3729. float.Parse(strArray2[1]),
  3730. float.Parse(strArray2[2]));
  3731. break;
  3732. case 72:
  3733. transform2.localEulerAngles =
  3734. new Vector3(float.Parse(strArray2[0]),
  3735. float.Parse(strArray2[1]),
  3736. float.Parse(strArray2[2]));
  3737. break;
  3738. case 73:
  3739. transform3.localEulerAngles =
  3740. new Vector3(float.Parse(strArray2[0]),
  3741. float.Parse(strArray2[1]),
  3742. float.Parse(strArray2[2]));
  3743. break;
  3744. case 74:
  3745. transform4.localEulerAngles =
  3746. new Vector3(float.Parse(strArray2[0]),
  3747. float.Parse(strArray2[1]),
  3748. float.Parse(strArray2[2]));
  3749. break;
  3750. case 75:
  3751. transform5.localEulerAngles =
  3752. new Vector3(float.Parse(strArray2[0]),
  3753. float.Parse(strArray2[1]),
  3754. float.Parse(strArray2[2]));
  3755. break;
  3756. case 76:
  3757. transform6.localEulerAngles =
  3758. new Vector3(float.Parse(strArray2[0]),
  3759. float.Parse(strArray2[1]),
  3760. float.Parse(strArray2[2]));
  3761. break;
  3762. case 77:
  3763. transform7.localEulerAngles =
  3764. new Vector3(float.Parse(strArray2[0]),
  3765. float.Parse(strArray2[1]),
  3766. float.Parse(strArray2[2]));
  3767. break;
  3768. case 78:
  3769. transform8.localEulerAngles =
  3770. new Vector3(float.Parse(strArray2[0]),
  3771. float.Parse(strArray2[1]),
  3772. float.Parse(strArray2[2]));
  3773. break;
  3774. case 79:
  3775. transform9.localEulerAngles =
  3776. new Vector3(float.Parse(strArray2[0]),
  3777. float.Parse(strArray2[1]),
  3778. float.Parse(strArray2[2]));
  3779. break;
  3780. case 80:
  3781. transform10.localEulerAngles =
  3782. new Vector3(float.Parse(strArray2[0]),
  3783. float.Parse(strArray2[1]),
  3784. float.Parse(strArray2[2]));
  3785. break;
  3786. case 81:
  3787. transform11.localEulerAngles =
  3788. new Vector3(float.Parse(strArray2[0]),
  3789. float.Parse(strArray2[1]),
  3790. float.Parse(strArray2[2]));
  3791. break;
  3792. case 82:
  3793. transform12.localEulerAngles =
  3794. new Vector3(float.Parse(strArray2[0]),
  3795. float.Parse(strArray2[1]),
  3796. float.Parse(strArray2[2]));
  3797. break;
  3798. case 83:
  3799. transform13.localEulerAngles =
  3800. new Vector3(float.Parse(strArray2[0]),
  3801. float.Parse(strArray2[1]),
  3802. float.Parse(strArray2[2]));
  3803. break;
  3804. case 84:
  3805. transform14.localEulerAngles =
  3806. new Vector3(float.Parse(strArray2[0]),
  3807. float.Parse(strArray2[1]),
  3808. float.Parse(strArray2[2]));
  3809. break;
  3810. case 85:
  3811. transform15.localEulerAngles =
  3812. new Vector3(float.Parse(strArray2[0]),
  3813. float.Parse(strArray2[1]),
  3814. float.Parse(strArray2[2]));
  3815. break;
  3816. case 86:
  3817. transform16.localEulerAngles =
  3818. new Vector3(float.Parse(strArray2[0]),
  3819. float.Parse(strArray2[1]),
  3820. float.Parse(strArray2[2]));
  3821. break;
  3822. case 87:
  3823. transform17.localEulerAngles =
  3824. new Vector3(float.Parse(strArray2[0]),
  3825. float.Parse(strArray2[1]),
  3826. float.Parse(strArray2[2]));
  3827. break;
  3828. case 88:
  3829. transform18.localEulerAngles =
  3830. new Vector3(float.Parse(strArray2[0]),
  3831. float.Parse(strArray2[1]),
  3832. float.Parse(strArray2[2]));
  3833. break;
  3834. case 89:
  3835. transform19.localEulerAngles =
  3836. new Vector3(float.Parse(strArray2[0]),
  3837. float.Parse(strArray2[1]),
  3838. float.Parse(strArray2[2]));
  3839. break;
  3840. case 92:
  3841. vIKMuneL[i] = new Vector3(float.Parse(strArray2[0]),
  3842. float.Parse(strArray2[1]),
  3843. float.Parse(strArray2[2]));
  3844. muneIKL[i] = true;
  3845. break;
  3846. case 93:
  3847. vIKMuneLSub[i] = new Vector3(float.Parse(strArray2[0]),
  3848. float.Parse(strArray2[1]),
  3849. float.Parse(strArray2[2]));
  3850. break;
  3851. case 94:
  3852. vIKMuneR[i] = new Vector3(float.Parse(strArray2[0]),
  3853. float.Parse(strArray2[1]),
  3854. float.Parse(strArray2[2]));
  3855. muneIKR[i] = true;
  3856. break;
  3857. case 95:
  3858. vIKMuneRSub[i] = new Vector3(float.Parse(strArray2[0]),
  3859. float.Parse(strArray2[1]),
  3860. float.Parse(strArray2[2]));
  3861. break;
  3862. case 96:
  3863. transform1.position = new Vector3(float.Parse(strArray2[0]),
  3864. float.Parse(strArray2[1]),
  3865. float.Parse(strArray2[2]));
  3866. break;
  3867. }
  3868. }
  3869. }
  3870. maid.transform.localEulerAngles = localEulerAngles;
  3871. maid.transform.position = position;
  3872. }
  3873. }
  3874. }
  3875. if (loadPose[i] != "" && !isLoadPose[i])
  3876. {
  3877. IniKey iniKey = Preferences["pose"][loadPose[i]];
  3878. if (iniKey.Value != null && iniKey.Value.ToString() != "" && iniKey.Value.ToString() != "del")
  3879. {
  3880. isStop[i] = true;
  3881. }
  3882. isLoadPose[i] = true;
  3883. }
  3884. }
  3885. if (loadScene > 0)
  3886. {
  3887. if (loadSceneFlag)
  3888. {
  3889. loadSceneFlag = false;
  3890. }
  3891. else
  3892. {
  3893. IniKey iniKey = Preferences["scene"]["s" + loadScene];
  3894. sceneData = iniKey.Value;
  3895. }
  3896. if (string.IsNullOrEmpty(sceneData))
  3897. {
  3898. loadScene = 0;
  3899. }
  3900. else
  3901. {
  3902. isScene = true;
  3903. if (!kankyoLoadFlg)
  3904. {
  3905. string[] strArray1 = sceneData.Split('_')[1].Split(';');
  3906. for (int i = 0; i < strArray1.Length; ++i)
  3907. {
  3908. if (maidCnt > i)
  3909. {
  3910. Maid maid = maidArray[i];
  3911. for (int index = 0; index < 10; ++index)
  3912. {
  3913. Transform transform1 = maid.transform;
  3914. Vector3 position1 = maid.transform.position;
  3915. Vector3 right = Vector3.right;
  3916. rotation = maid.transform.rotation;
  3917. double num1 = -rotation.eulerAngles.x;
  3918. transform1.RotateAround(position1, right, (float)num1);
  3919. Transform transform2 = maid.transform;
  3920. Vector3 position2 = maid.transform.position;
  3921. Vector3 forward = Vector3.forward;
  3922. rotation = maid.transform.rotation;
  3923. double num2 = -rotation.eulerAngles.z;
  3924. transform2.RotateAround(position2, forward, (float)num2);
  3925. }
  3926. string[] array2 = strArray1[i].Split(':');
  3927. if (!int.TryParse(array2[61], out poseIndex[i]))
  3928. {
  3929. string str = array2[61].Replace(" ", "_").Replace("|", ",");
  3930. for (int index = 0; index < poseArray.Length; ++index)
  3931. {
  3932. if (str == poseArray[index])
  3933. {
  3934. poseIndex[i] = index;
  3935. break;
  3936. }
  3937. }
  3938. }
  3939. string[] strArray2 = poseArray[poseIndex[i]].Split(',');
  3940. isStop[i] = true;
  3941. poseCount[i] = 20;
  3942. if (array2[61].Contains("MultipleMaidsPose"))
  3943. {
  3944. string url = "";
  3945. ((Action<string, List<string>>)((path, result_list) =>
  3946. {
  3947. string[] files = Directory.GetFiles(path);
  3948. for (int index1 = 0; index1 < files.Length; ++index1)
  3949. {
  3950. if (Path.GetExtension(files[index1]) == ".anm")
  3951. {
  3952. string str1 =
  3953. files[index1].Split('\\')[files[index1]
  3954. .Split('\\').Length
  3955. - 1].Split('.')[0];
  3956. if (str1 == array2[61].Replace("MultipleMaidsPose", ""))
  3957. {
  3958. url = files[index1];
  3959. for (int index2 = 0;
  3960. index2 < poseArray.Length;
  3961. ++index2)
  3962. {
  3963. string str2 = poseArray[index2]
  3964. .Replace(" ", "").Split('/')[0];
  3965. if (str1 == str2)
  3966. {
  3967. poseIndex[i] = index2;
  3968. }
  3969. }
  3970. break;
  3971. }
  3972. }
  3973. }
  3974. }))(Path.GetFullPath(".\\") + "Mod\\MultipleMaidsPose",
  3975. new List<string>());
  3976. if (url != "")
  3977. {
  3978. string path = url;
  3979. byte[] numArray = new byte[0];
  3980. try
  3981. {
  3982. using (FileStream fileStream = new FileStream(path, FileMode.Open, FileAccess.Read))
  3983. {
  3984. numArray = new byte[fileStream.Length];
  3985. fileStream.Read(numArray, 0, numArray.Length);
  3986. }
  3987. }
  3988. catch { }
  3989. if (0 < numArray.Length)
  3990. {
  3991. long hashCode = Path.GetFileName(path).GetHashCode();
  3992. maid.body0.CrossFade(hashCode.ToString(), numArray, false, false, false, 0.0f, 1f);
  3993. Maid.AutoTwist[] autoTwistArray = new Maid.AutoTwist[6]
  3994. {
  3995. Maid.AutoTwist.ShoulderL, Maid.AutoTwist.ShoulderR, Maid.AutoTwist.WristL,
  3996. Maid.AutoTwist.WristR, Maid.AutoTwist.ThighL, Maid.AutoTwist.ThighR
  3997. };
  3998. foreach (Maid.AutoTwist f_eType in autoTwistArray)
  3999. {
  4000. maid.SetAutoTwist(f_eType, true);
  4001. }
  4002. }
  4003. }
  4004. }
  4005. else
  4006. {
  4007. if (strArray2[0].StartsWith("p") && int.TryParse(strArray2[0].Substring(1), out int result))
  4008. {
  4009. loadPose[i] = strArray2[0];
  4010. }
  4011. else if (!strArray2[0].StartsWith("dance_"))
  4012. {
  4013. maidArray[i].CrossFade(strArray2[0] + ".anm", false, true, false, 0.0f, 1f);
  4014. }
  4015. else
  4016. {
  4017. if (!maidArray[i]
  4018. .body0.m_Bones.GetComponent<Animation>().GetClip(strArray2[0] + ".anm"))
  4019. {
  4020. maidArray[i].body0.LoadAnime(strArray2[0] + ".anm",
  4021. GameUty.FileSystem,
  4022. strArray2[0] + ".anm",
  4023. false,
  4024. false);
  4025. }
  4026. maidArray[i].body0.m_Bones.GetComponent<Animation>().Play(strArray2[0] + ".anm");
  4027. }
  4028. }
  4029. if (strArray2.Length > 1)
  4030. {
  4031. maidArray[i].body0.m_Bones.GetComponent<Animation>()[strArray2[0] + ".anm"].time =
  4032. float.Parse(strArray2[1]);
  4033. isStop[i] = true;
  4034. if (strArray2.Length > 2)
  4035. {
  4036. CMT.SearchObjName(maidArray[i].body0.m_Bones.transform, "Bip01", true);
  4037. isPoseIti[i] = true;
  4038. poseIti[i] = maidArray[i].transform.position;
  4039. maidArray[i].transform.position = new Vector3(100f, 100f, 100f);
  4040. }
  4041. }
  4042. faceIndex[i] = int.Parse(array2[62]);
  4043. if (faceIndex[i] < faceArray.Length)
  4044. {
  4045. maid.FaceAnime(faceArray[faceIndex[i]], 0.01f, 0);
  4046. }
  4047. else
  4048. {
  4049. faceIndex[i] = 0;
  4050. }
  4051. TMorph morph = maid.body0.Face.morph;
  4052. if (!isVR)
  4053. {
  4054. maid.boMabataki = false;
  4055. morph.EyeMabataki = 0.0f;
  4056. maid.body0.Face.morph.FixBlendValues_Face();
  4057. }
  4058. }
  4059. else
  4060. {
  4061. break;
  4062. }
  4063. }
  4064. }
  4065. }
  4066. }
  4067. if (allowUpdate || sceneLevel == 14 || sceneLevel == 24)
  4068. {
  4069. if (isF6 && !cameraObj && !isVR)
  4070. {
  4071. cameraObj = new GameObject("subCamera");
  4072. subcamera = cameraObj.AddComponent<Camera>();
  4073. subcamera.CopyFrom(Camera.main);
  4074. cameraObj.SetActive(true);
  4075. subcamera.clearFlags = CameraClearFlags.Depth;
  4076. subcamera.cullingMask = 256;
  4077. subcamera.depth = 1f;
  4078. subcamera.transform.parent = mainCamera.transform;
  4079. if (lightList.Count == 0)
  4080. {
  4081. float num = 2f;
  4082. if (Application.unityVersion.StartsWith("4"))
  4083. {
  4084. num = 1f;
  4085. }
  4086. GameObject gameObject = new GameObject("Light");
  4087. gameObject.AddComponent<Light>();
  4088. lightList.Add(gameObject);
  4089. lightColorR.Add(1f);
  4090. lightColorG.Add(1f);
  4091. lightColorB.Add(1f);
  4092. lightIndex.Add(0);
  4093. lightX.Add(40f);
  4094. lightY.Add(180f);
  4095. lightAkarusa.Add(num);
  4096. lightKage.Add(0.098f);
  4097. lightRange.Add(50f);
  4098. gameObject.transform.position = GameMain.Instance.MainLight.transform.position;
  4099. gameObject.GetComponent<Light>().intensity = 2f;
  4100. gameObject.GetComponent<Light>().spotAngle = 50f;
  4101. gameObject.GetComponent<Light>().range = 10f;
  4102. gameObject.GetComponent<Light>().type = LightType.Directional;
  4103. gameObject.GetComponent<Light>().color = new Color(0.5f, 1f, 0.0f);
  4104. gameObject.GetComponent<Light>().cullingMask = 256;
  4105. // lightComboList = new GUIContent[lightList.Count];
  4106. // lightComboList[0] = new GUIContent("メイン");
  4107. // lightCombo.selectedItemIndex = 0;
  4108. // selectLightIndex = 0;
  4109. }
  4110. }
  4111. if ((!isF6S || !getModKeyPressing(modKey.Shift) || !Input.GetKeyDown(KeyCode.F6))
  4112. && (isF6S || !getModKeyPressing(modKey.Shift) || !Input.GetKeyDown(KeyCode.F6)))
  4113. {
  4114. if (!isF6 && Input.GetKeyDown(KeyCode.F6) && sceneLevel != 5 && sceneLevel != 3
  4115. && !isVR && maidArray[0] && maidArray[0].Visible)
  4116. {
  4117. isF6 = true;
  4118. bGui = true;
  4119. isFaceInit = true;
  4120. isGuiInit = true;
  4121. maidArray[0].boMabataki = false;
  4122. selectMaidIndex = 0;
  4123. maidCnt = 1;
  4124. isFace[0] = true;
  4125. faceFlg = true;
  4126. kankyoFlg = false;
  4127. string bgName = GameMain.Instance.BgMgr.GetBGName();
  4128. int num = 0;
  4129. foreach (string bg in bgArray)
  4130. {
  4131. if (bg == bgName)
  4132. {
  4133. bgIndex = num;
  4134. bgIndex6 = num;
  4135. break;
  4136. }
  4137. ++num;
  4138. }
  4139. bgCombo.selectedItemIndex = bgIndex6;
  4140. lightX[0] = GameMain.Instance.MainLight.transform.eulerAngles.x;
  4141. lightY[0] = GameMain.Instance.MainLight.transform.eulerAngles.y;
  4142. }
  4143. else if (!isF6 && Input.GetKeyDown(KeyCode.F7) && sceneLevel != 5 && sceneLevel != 3
  4144. && !isVR && maidArray[0] && maidArray[0].Visible)
  4145. {
  4146. isF6 = true;
  4147. bGui = true;
  4148. isGuiInit = true;
  4149. selectMaidIndex = 0;
  4150. maidCnt = 1;
  4151. isFace[0] = false;
  4152. faceFlg = false;
  4153. kankyoFlg = true;
  4154. string bgName = GameMain.Instance.BgMgr.GetBGName();
  4155. int num = 0;
  4156. foreach (string bg in bgArray)
  4157. {
  4158. if (bg == bgName)
  4159. {
  4160. bgIndex = num;
  4161. bgIndex6 = num;
  4162. break;
  4163. }
  4164. ++num;
  4165. }
  4166. bgmCombo.selectedItemIndex = bgmIndex;
  4167. bgCombo.selectedItemIndex = bgIndex6;
  4168. lightX[0] = GameMain.Instance.MainLight.transform.eulerAngles.x;
  4169. lightY[0] = GameMain.Instance.MainLight.transform.eulerAngles.y;
  4170. lightX6 = lightX[0];
  4171. lightY6 = lightY[0];
  4172. }
  4173. else if (isVR && Input.GetKey(KeyCode.F7) && Input.GetKeyDown(KeyCode.BackQuote)
  4174. || isF6 && (Input.GetKeyDown(KeyCode.F6) || Input.GetKeyDown(KeyCode.F7)))
  4175. {
  4176. isF6 = false;
  4177. bGui = false;
  4178. maidArray[0].boMabataki = true;
  4179. bgIndex = bgIndex6;
  4180. bg.localScale = new Vector3(1f, 1f, 1f);
  4181. if (!isVR)
  4182. {
  4183. Bloom fieldValue = GetFieldValue<CameraMain, Bloom>(mainCamera, "m_gcBloom");
  4184. fieldValue.enabled = true;
  4185. fieldValue.bloomIntensity = 2.85f;
  4186. fieldValue.hdr = Bloom.HDRBloomMode.Auto;
  4187. fieldValue.bloomThreshholdColor = new Color(1f, 1f, 1f);
  4188. fieldValue.bloomBlurIterations = 3;
  4189. }
  4190. else if (bgArray[bgIndex].Length == 36)
  4191. {
  4192. GameMain.Instance.BgMgr.ChangeBgMyRoom(bgArray[bgIndex]);
  4193. }
  4194. else
  4195. {
  4196. GameMain.Instance.BgMgr.ChangeBg(bgArray[bgIndex]);
  4197. }
  4198. mainCamera.GetComponent<Camera>().backgroundColor = new Color(0.0f, 0.0f, 0.0f);
  4199. maidCnt = 0;
  4200. wearIndex = 0;
  4201. faceFlg = false;
  4202. faceFlg2 = false;
  4203. sceneFlg = false;
  4204. poseFlg = false;
  4205. kankyoFlg = false;
  4206. kankyo2Flg = false;
  4207. unLockFlg = false;
  4208. ikMaid = 0;
  4209. ikBui = 0;
  4210. isNamida = false;
  4211. isTear1 = false;
  4212. isTear2 = false;
  4213. isTear3 = false;
  4214. isShock = false;
  4215. isYodare = false;
  4216. isHoho = false;
  4217. isHoho2 = false;
  4218. isHohos = false;
  4219. isHohol = false;
  4220. isToothoff = false;
  4221. isNosefook = false;
  4222. isFaceInit = false;
  4223. isPoseInit = false;
  4224. isWear = true;
  4225. isSkirt = true;
  4226. isBra = true;
  4227. isPanz = true;
  4228. isHeadset = true;
  4229. isAccUde = true;
  4230. isStkg = true;
  4231. isShoes = true;
  4232. isGlove = true;
  4233. isMegane = true;
  4234. isAccSenaka = true;
  4235. isPanel = true;
  4236. isBloom = false;
  4237. isBloomA = false;
  4238. isBlur = false;
  4239. isBlur2 = false;
  4240. bloom1 = 2.85f;
  4241. bloom2 = 3f;
  4242. bloom3 = 0.0f;
  4243. bloom4 = 0.0f;
  4244. bloom5 = 0.0f;
  4245. blur1 = -3.98f;
  4246. blur4 = -0.75f;
  4247. blur2 = 0.9f;
  4248. blur3 = 4.19f;
  4249. bokashi = 0.0f;
  4250. kamiyure = 0.0f;
  4251. isDepth = false;
  4252. isDepthA = false;
  4253. depth1 = 3f;
  4254. depth2 = 0.1f;
  4255. depth3 = 15f;
  4256. depth4 = 2.5f;
  4257. isFog = false;
  4258. fog1 = 4f;
  4259. fog2 = 1f;
  4260. fog3 = 1f;
  4261. fog4 = 0.0f;
  4262. fog5 = 1f;
  4263. fog6 = 1f;
  4264. fog7 = 1f;
  4265. isSepia = false;
  4266. isBloomS = true;
  4267. isDepthS = false;
  4268. isBlurS = false;
  4269. isFogS = false;
  4270. if (depth_field_ != null)
  4271. {
  4272. depth_field_.enabled = false;
  4273. }
  4274. if (fog_ != null)
  4275. {
  4276. fog_.enabled = false;
  4277. }
  4278. if (sepia_tone_ != null)
  4279. {
  4280. sepia_tone_.enabled = false;
  4281. }
  4282. isCube = false;
  4283. isCube2 = true;
  4284. isCube3 = false;
  4285. isCube4 = true;
  4286. effectIndex = 0;
  4287. selectMaidIndex = 0;
  4288. copyIndex = 0;
  4289. selectLightIndex = 0;
  4290. doguBIndex = 0;
  4291. parIndex = 0;
  4292. isEditNo = 0;
  4293. editSelectMaid = null;
  4294. for (int index = 0; index < 10; ++index)
  4295. {
  4296. date[index] = "";
  4297. ninzu[index] = "";
  4298. }
  4299. if (kami)
  4300. {
  4301. kami.SetActive(false);
  4302. }
  4303. lightIndex = new List<int>
  4304. {
  4305. 0
  4306. };
  4307. lightColorR = new List<float>
  4308. {
  4309. 1f
  4310. };
  4311. lightColorG = new List<float>
  4312. {
  4313. 1f
  4314. };
  4315. lightColorB = new List<float>
  4316. {
  4317. 1f
  4318. };
  4319. lightX = new List<float>
  4320. {
  4321. lightX6
  4322. };
  4323. lightY = new List<float>
  4324. {
  4325. lightY6
  4326. };
  4327. lightAkarusa = new List<float>
  4328. {
  4329. 0.95f
  4330. };
  4331. lightKage = new List<float>
  4332. {
  4333. 0.098f
  4334. };
  4335. lightRange = new List<float>
  4336. {
  4337. 50f
  4338. };
  4339. isIdx1 = false;
  4340. isIdx2 = false;
  4341. isIdx3 = false;
  4342. isIdx4 = false;
  4343. bgObject.SetActive(true);
  4344. GameMain.Instance.MainLight.Reset();
  4345. GameMain.Instance.MainLight.SetIntensity(0.95f);
  4346. GameMain.Instance.MainLight.GetComponent<Light>().spotAngle = 30f;
  4347. GameMain.Instance.MainLight.GetComponent<Light>().range = 10f;
  4348. GameMain.Instance.MainLight.gameObject.transform.position = new Vector3(0.0f, 2f, 0.0f);
  4349. GameMain.Instance.MainLight.GetComponent<Light>().type = LightType.Directional;
  4350. GameMain.Instance.MainLight.transform.eulerAngles =
  4351. new Vector3(lightX6, lightY6, GameMain.Instance.MainLight.transform.eulerAngles.z);
  4352. for (int index = 0; index < doguBObject.Count; ++index)
  4353. {
  4354. GraphicsUtils.Destroy(doguBObject[index]);
  4355. }
  4356. doguBObject.Clear();
  4357. doguBIndex = 0;
  4358. parIndex = 0;
  4359. doguCombo.selectedItemIndex = 0;
  4360. parCombo.selectedItemIndex = 0;
  4361. for (int index = 1; index < lightList.Count; ++index)
  4362. {
  4363. GraphicsUtils.Destroy(lightList[index]);
  4364. }
  4365. lightList = new List<GameObject>
  4366. {
  4367. GameMain.Instance.MainLight.gameObject
  4368. };
  4369. lightComboList = new GUIContent[lightList.Count];
  4370. lightComboList[0] = new GUIContent("メイン");
  4371. lightCombo.selectedItemIndex = 0;
  4372. selectLightIndex = 0;
  4373. GameMain.Instance.BgMgr.ChangeBg(bgArray[bgIndex6]);
  4374. bgCombo.selectedItemIndex = bgIndex6;
  4375. bgCombo2.selectedItemIndex = 0;
  4376. itemCombo2.selectedItemIndex = 0;
  4377. slotCombo.selectedItemIndex = 0;
  4378. sortList.Clear();
  4379. maidCallScrollPos = new Vector2(0.0f, 0.0f);
  4380. poseScrollPos = new Vector2(0.0f, 0.0f);
  4381. faceScrollPos = new Vector2(0.0f, 0.0f);
  4382. bgScrollPos = new Vector2(0.0f, 0.0f);
  4383. bg2ScrollPos = new Vector2(0.0f, 0.0f);
  4384. if (!isVR)
  4385. {
  4386. Vignetting component = GameMain.Instance.MainCamera.gameObject.GetComponent<Vignetting>();
  4387. component.mode = Vignetting.AberrationMode.Simple;
  4388. component.intensity = -3.98f;
  4389. component.chromaticAberration = -0.75f;
  4390. component.axialAberration = 1.18f;
  4391. component.blurSpread = 4.19f;
  4392. component.luminanceDependency = 0.494f;
  4393. component.blurDistance = 1.71f;
  4394. component.enabled = false;
  4395. }
  4396. doguIndex.Clear();
  4397. doguSelectIndex = 0;
  4398. for (int index = 0; index < doguObject.Count; ++index)
  4399. {
  4400. if (doguObject[index] != null)
  4401. {
  4402. GraphicsUtils.Destroy(doguObject[index]);
  4403. doguObject[index] = null;
  4404. }
  4405. }
  4406. doguObject.Clear();
  4407. }
  4408. }
  4409. for (int index = 0; index < maidCnt; ++index)
  4410. {
  4411. if (maidArray[index] && maidArray[index].Visible)
  4412. {
  4413. Maid maid = maidArray[index];
  4414. if (isLook[index] != isLookn[index])
  4415. {
  4416. isLookn[index] = isLook[index];
  4417. if (isLook[index])
  4418. {
  4419. maid.body0.trsLookTarget = GameMain.Instance.MainCamera.transform;
  4420. maid.body0.boHeadToCam = true;
  4421. maid.body0.boEyeToCam = true;
  4422. maid.body0.trsLookTarget = null;
  4423. }
  4424. else
  4425. {
  4426. maid.body0.trsLookTarget = GameMain.Instance.MainCamera.transform;
  4427. maid.body0.boHeadToCam = true;
  4428. maid.body0.boEyeToCam = true;
  4429. }
  4430. }
  4431. }
  4432. }
  4433. if (maidArray[selectMaidIndex] && maidArray[selectMaidIndex].Visible
  4434. && (!faceFlg && !poseFlg && !sceneFlg && !kankyoFlg && !kankyo2Flg
  4435. || sceneFlg || kankyoFlg || kankyo2Flg))
  4436. {
  4437. for (int index = 0; index < maidCnt; ++index)
  4438. {
  4439. if (maidArray[index] && !maidArray[index].boMabataki)
  4440. {
  4441. maidArray[index].body0.Face.morph.FixBlendValues_Face();
  4442. }
  4443. }
  4444. }
  4445. if (maidArray[selectMaidIndex] && maidArray[selectMaidIndex].Visible && poseFlg)
  4446. {
  4447. if (isPoseInit)
  4448. {
  4449. if (!isDanceChu)
  4450. {
  4451. Maid maid = maidArray[selectMaidIndex];
  4452. isPoseInit = false;
  4453. isWear = maid.body0.GetMask(TBody.SlotID.wear) || maid.body0.GetMask(TBody.SlotID.mizugi)
  4454. || maid.body0.GetMask(TBody.SlotID.onepiece);
  4455. isSkirt = maid.body0.GetMask(TBody.SlotID.skirt);
  4456. isBra = maid.body0.GetMask(TBody.SlotID.bra);
  4457. isPanz = maid.body0.GetMask(TBody.SlotID.panz);
  4458. isMaid = maid.body0.GetMask(TBody.SlotID.body);
  4459. isHeadset = maid.body0.GetMask(TBody.SlotID.headset) || maid.body0.GetMask(TBody.SlotID.accHat)
  4460. || maid.body0.GetMask(TBody.SlotID.accHead)
  4461. || maid.body0.GetMask(TBody.SlotID.accKamiSubL)
  4462. || maid.body0.GetMask(TBody.SlotID.accKamiSubR)
  4463. || maid.body0.GetMask(TBody.SlotID.accKami_1_)
  4464. || maid.body0.GetMask(TBody.SlotID.accKami_2_)
  4465. || maid.body0.GetMask(TBody.SlotID.accKami_3_);
  4466. isAccUde = maid.body0.GetMask(TBody.SlotID.accUde);
  4467. isStkg = maid.body0.GetMask(TBody.SlotID.stkg);
  4468. isShoes = maid.body0.GetMask(TBody.SlotID.shoes);
  4469. isGlove = maid.body0.GetMask(TBody.SlotID.glove);
  4470. isMegane = maid.body0.GetMask(TBody.SlotID.megane);
  4471. isAccSenaka = maid.body0.GetMask(TBody.SlotID.accSenaka);
  4472. TMorph morph = maidArray[selectMaidIndex].body0.Face.morph;
  4473. float[] fieldValue1 = GetFieldValue<TMorph, float[]>(morph, "BlendValues");
  4474. float[] fieldValue2 = GetFieldValue<TMorph, float[]>(morph, "BlendValuesBackup");
  4475. eyeclose = fieldValue2[(int)morph.hash["eyeclose"]];
  4476. eyeclose2 = fieldValue2[(int)morph.hash["eyeclose2"]];
  4477. eyeclose3 = fieldValue2[(int)morph.hash["eyeclose3"]];
  4478. eyeclose6 = fieldValue2[(int)morph.hash["eyeclose6"]];
  4479. hitomih = fieldValue1[(int)morph.hash["hitomih"]];
  4480. hitomis = fieldValue1[(int)morph.hash["hitomis"]];
  4481. mayuha = fieldValue1[(int)morph.hash["mayuha"]];
  4482. mayuup = fieldValue1[(int)morph.hash["mayuup"]];
  4483. mayuv = fieldValue1[(int)morph.hash["mayuv"]];
  4484. mayuvhalf = fieldValue1[(int)morph.hash["mayuvhalf"]];
  4485. moutha = fieldValue1[(int)morph.hash["moutha"]];
  4486. mouths = fieldValue1[(int)morph.hash["mouths"]];
  4487. mouthdw = fieldValue1[(int)morph.hash["mouthdw"]];
  4488. mouthup = fieldValue1[(int)morph.hash["mouthup"]];
  4489. tangout = fieldValue1[(int)morph.hash["tangout"]];
  4490. tangup = fieldValue1[(int)morph.hash["tangup"]];
  4491. eyebig = fieldValue1[(int)morph.hash["eyebig"]];
  4492. eyeclose5 = fieldValue2[(int)morph.hash["eyeclose5"]];
  4493. mayuw = fieldValue1[(int)morph.hash["mayuw"]];
  4494. mouthhe = fieldValue1[(int)morph.hash["mouthhe"]];
  4495. mouthc = fieldValue1[(int)morph.hash["mouthc"]];
  4496. mouthi = fieldValue1[(int)morph.hash["mouthi"]];
  4497. mouthuphalf = fieldValue1[(int)morph.hash["mouthuphalf"]];
  4498. try
  4499. {
  4500. tangopen = fieldValue1[(int)morph.hash["tangopen"]];
  4501. }
  4502. catch { }
  4503. isNamida = fieldValue1[(int)morph.hash["namida"]] > 0.0;
  4504. isTear1 = fieldValue1[(int)morph.hash["tear1"]] > 0.0;
  4505. isTear2 = fieldValue1[(int)morph.hash["tear2"]] > 0.0;
  4506. isTear3 = fieldValue1[(int)morph.hash["tear3"]] > 0.0;
  4507. isShock = fieldValue1[(int)morph.hash["shock"]] > 0.0;
  4508. isYodare = fieldValue1[(int)morph.hash["yodare"]] > 0.0;
  4509. isHoho = fieldValue1[(int)morph.hash["hoho"]] > 0.0;
  4510. isHoho2 = fieldValue1[(int)morph.hash["hoho2"]] > 0.0;
  4511. isHohos = fieldValue1[(int)morph.hash["hohos"]] > 0.0;
  4512. isHohol = fieldValue1[(int)morph.hash["hohol"]] > 0.0;
  4513. isToothoff = fieldValue1[(int)morph.hash["toothoff"]] > 0.0;
  4514. isNosefook = fieldValue1[(int)morph.hash["nosefook"]] > 0.0;
  4515. }
  4516. }
  4517. else
  4518. {
  4519. Maid maid = maidArray[selectMaidIndex];
  4520. if (goSlot[(int)selectList[selectMaidIndex]] != null)
  4521. {
  4522. maidArray[selectMaidIndex].body0.goSlot =
  4523. new List<TBodySkin>(goSlot[(int)selectList[selectMaidIndex]]);
  4524. for (int index = 0; index < bodyHit[(int)selectList[selectMaidIndex]].Count; ++index)
  4525. {
  4526. maidArray[selectMaidIndex].body0.goSlot[index].bonehair.bodyhit =
  4527. bodyHit[(int)selectList[selectMaidIndex]][index];
  4528. }
  4529. }
  4530. if (maid.body0.GetMask(TBody.SlotID.wear) != isWear)
  4531. {
  4532. maid.body0.SetMask(TBody.SlotID.wear, isWear);
  4533. }
  4534. if (maid.body0.GetMask(TBody.SlotID.mizugi) != isWear)
  4535. {
  4536. maid.body0.SetMask(TBody.SlotID.mizugi, isWear);
  4537. }
  4538. if (maid.body0.GetMask(TBody.SlotID.onepiece) != isWear)
  4539. {
  4540. maid.body0.SetMask(TBody.SlotID.onepiece, isWear);
  4541. }
  4542. if (maid.body0.GetMask(TBody.SlotID.skirt) != isSkirt)
  4543. {
  4544. maid.body0.SetMask(TBody.SlotID.skirt, isSkirt);
  4545. }
  4546. if (maid.body0.GetMask(TBody.SlotID.bra) != isBra)
  4547. {
  4548. maid.body0.SetMask(TBody.SlotID.bra, isBra);
  4549. }
  4550. if (maid.body0.GetMask(TBody.SlotID.panz) != isPanz)
  4551. {
  4552. maid.body0.SetMask(TBody.SlotID.panz, isPanz);
  4553. }
  4554. if (maid.body0.GetMask(TBody.SlotID.headset) != isHeadset)
  4555. {
  4556. maid.body0.SetMask(TBody.SlotID.headset, isHeadset);
  4557. }
  4558. if (maid.body0.GetMask(TBody.SlotID.accHat) != isHeadset)
  4559. {
  4560. maid.body0.SetMask(TBody.SlotID.accHat, isHeadset);
  4561. }
  4562. if (maid.body0.GetMask(TBody.SlotID.accHead) != isHeadset)
  4563. {
  4564. maid.body0.SetMask(TBody.SlotID.accHead, isHeadset);
  4565. }
  4566. if (maid.body0.GetMask(TBody.SlotID.accKamiSubL) != isHeadset)
  4567. {
  4568. maid.body0.SetMask(TBody.SlotID.accKamiSubL, isHeadset);
  4569. }
  4570. if (maid.body0.GetMask(TBody.SlotID.accKamiSubR) != isHeadset)
  4571. {
  4572. maid.body0.SetMask(TBody.SlotID.accKamiSubR, isHeadset);
  4573. }
  4574. if (maid.body0.GetMask(TBody.SlotID.accKami_1_) != isHeadset)
  4575. {
  4576. maid.body0.SetMask(TBody.SlotID.accKami_1_, isHeadset);
  4577. }
  4578. if (maid.body0.GetMask(TBody.SlotID.accKami_2_) != isHeadset)
  4579. {
  4580. maid.body0.SetMask(TBody.SlotID.accKami_2_, isHeadset);
  4581. }
  4582. if (maid.body0.GetMask(TBody.SlotID.accKami_3_) != isHeadset)
  4583. {
  4584. maid.body0.SetMask(TBody.SlotID.accKami_3_, isHeadset);
  4585. }
  4586. if (maid.body0.GetMask(TBody.SlotID.accUde) != isAccUde)
  4587. {
  4588. maid.body0.SetMask(TBody.SlotID.accUde, isAccUde);
  4589. }
  4590. if (maid.body0.GetMask(TBody.SlotID.stkg) != isStkg)
  4591. {
  4592. maid.body0.SetMask(TBody.SlotID.stkg, isStkg);
  4593. }
  4594. if (maid.body0.GetMask(TBody.SlotID.shoes) != isShoes)
  4595. {
  4596. maid.body0.SetMask(TBody.SlotID.shoes, isShoes);
  4597. }
  4598. if (maid.body0.GetMask(TBody.SlotID.glove) != isGlove)
  4599. {
  4600. maid.body0.SetMask(TBody.SlotID.glove, isGlove);
  4601. }
  4602. if (maid.body0.GetMask(TBody.SlotID.megane) != isMegane)
  4603. {
  4604. maid.body0.SetMask(TBody.SlotID.megane, isMegane);
  4605. }
  4606. if (maid.body0.GetMask(TBody.SlotID.accSenaka) != isAccSenaka)
  4607. {
  4608. maid.body0.SetMask(TBody.SlotID.accSenaka, isAccSenaka);
  4609. }
  4610. if (mekure1[selectMaidIndex] != mekure1n[selectMaidIndex])
  4611. {
  4612. mekure1n[selectMaidIndex] = mekure1[selectMaidIndex];
  4613. if (mekure1[selectMaidIndex])
  4614. {
  4615. maid.ItemChangeTemp("skirt", "めくれスカート");
  4616. maid.ItemChangeTemp("onepiece", "めくれスカート");
  4617. mekure2[selectMaidIndex] = false;
  4618. mekure2n[selectMaidIndex] = false;
  4619. }
  4620. else
  4621. {
  4622. ResetProp(maid, MPN.skirt);
  4623. ResetProp(maid, MPN.onepiece);
  4624. }
  4625. maid.AllProcPropSeqStart();
  4626. }
  4627. if (mekure2[selectMaidIndex] != mekure2n[selectMaidIndex])
  4628. {
  4629. mekure2n[selectMaidIndex] = mekure2[selectMaidIndex];
  4630. if (mekure2[selectMaidIndex])
  4631. {
  4632. maid.ItemChangeTemp("skirt", "めくれスカート後ろ");
  4633. maid.ItemChangeTemp("onepiece", "めくれスカート後ろ");
  4634. mekure1[selectMaidIndex] = false;
  4635. mekure1n[selectMaidIndex] = false;
  4636. }
  4637. else
  4638. {
  4639. ResetProp(maid, MPN.skirt);
  4640. ResetProp(maid, MPN.onepiece);
  4641. }
  4642. maid.AllProcPropSeqStart();
  4643. }
  4644. if (zurasi[selectMaidIndex] != zurasin[selectMaidIndex])
  4645. {
  4646. zurasin[selectMaidIndex] = zurasi[selectMaidIndex];
  4647. if (zurasi[selectMaidIndex])
  4648. {
  4649. maid.ItemChangeTemp("panz", "パンツずらし");
  4650. maid.ItemChangeTemp("mizugi", "パンツずらし");
  4651. }
  4652. else
  4653. {
  4654. ResetProp(maid, MPN.panz);
  4655. ResetProp(maid, MPN.mizugi);
  4656. }
  4657. maid.AllProcPropSeqStart();
  4658. }
  4659. if (!isDanceChu)
  4660. {
  4661. if (maid.body0.GetMask(TBody.SlotID.body) != isMaid)
  4662. {
  4663. Hashtable fieldValue = GetFieldValue<TBody, Hashtable>(maid.body0, "m_hFoceHide");
  4664. fieldValue[TBody.SlotID.body] = isMaid;
  4665. fieldValue[TBody.SlotID.head] = isMaid;
  4666. fieldValue[TBody.SlotID.eye] = isMaid;
  4667. fieldValue[TBody.SlotID.hairF] = isMaid;
  4668. fieldValue[TBody.SlotID.hairR] = isMaid;
  4669. fieldValue[TBody.SlotID.hairS] = isMaid;
  4670. fieldValue[TBody.SlotID.hairT] = isMaid;
  4671. fieldValue[TBody.SlotID.hairAho] = isMaid;
  4672. fieldValue[TBody.SlotID.chikubi] = isMaid;
  4673. fieldValue[TBody.SlotID.underhair] = isMaid;
  4674. fieldValue[TBody.SlotID.moza] = isMaid;
  4675. if (maid.body0.goSlot[19].m_strModelFileName.Contains("melala_body"))
  4676. {
  4677. fieldValue[TBody.SlotID.accHana] = isMaid;
  4678. }
  4679. maid.body0.FixMaskFlag();
  4680. maid.body0.FixVisibleFlag(false);
  4681. }
  4682. if (isLook[selectMaidIndex] != isLookn[selectMaidIndex])
  4683. {
  4684. isLookn[selectMaidIndex] = isLook[selectMaidIndex];
  4685. if (isLook[selectMaidIndex])
  4686. {
  4687. maid.body0.trsLookTarget = GameMain.Instance.MainCamera.transform;
  4688. maid.body0.boHeadToCam = true;
  4689. maid.body0.boEyeToCam = true;
  4690. maid.body0.trsLookTarget = null;
  4691. }
  4692. else
  4693. {
  4694. maid.body0.trsLookTarget = GameMain.Instance.MainCamera.transform;
  4695. maid.body0.boHeadToCam = true;
  4696. maid.body0.boEyeToCam = true;
  4697. }
  4698. }
  4699. if (isLook[selectMaidIndex])
  4700. {
  4701. if (maid.body0.offsetLookTarget.x != (double)lookY[selectMaidIndex])
  4702. {
  4703. int num = !isLock[selectMaidIndex] ? 1 : (lookY[selectMaidIndex] >= 0.0 ? 1 : 0);
  4704. maid.body0.offsetLookTarget =
  4705. num != 0
  4706. ? new Vector3(lookY[selectMaidIndex], 1f, lookX[selectMaidIndex])
  4707. : new Vector3(lookY[selectMaidIndex] * 0.6f, 1f, lookX[selectMaidIndex]);
  4708. }
  4709. if (lookX[selectMaidIndex] != (double)lookXn[selectMaidIndex])
  4710. {
  4711. lookXn[selectMaidIndex] = lookX[selectMaidIndex];
  4712. maid.body0.offsetLookTarget = new Vector3(lookY[selectMaidIndex], 1f, lookX[selectMaidIndex]);
  4713. }
  4714. if (lookY[selectMaidIndex] != (double)lookYn[selectMaidIndex])
  4715. {
  4716. lookYn[selectMaidIndex] = lookY[selectMaidIndex];
  4717. int num = !isLock[selectMaidIndex] ? 1 : (lookY[selectMaidIndex] >= 0.0 ? 1 : 0);
  4718. maid.body0.offsetLookTarget =
  4719. num != 0
  4720. ? new Vector3(lookY[selectMaidIndex], 1f, lookX[selectMaidIndex])
  4721. : new Vector3(lookY[selectMaidIndex] * 0.6f, 1f, lookX[selectMaidIndex]);
  4722. }
  4723. }
  4724. if (isHanten)
  4725. {
  4726. isHanten = false;
  4727. SetHanten(maid, selectMaidIndex);
  4728. }
  4729. if (hanten[selectMaidIndex] != hantenn[selectMaidIndex])
  4730. {
  4731. hantenn[selectMaidIndex] = hanten[selectMaidIndex];
  4732. isStop[selectMaidIndex] = true;
  4733. isLock[selectMaidIndex] = true;
  4734. isHanten = true;
  4735. }
  4736. if (voice1[selectMaidIndex] != voice1n[selectMaidIndex])
  4737. {
  4738. voice1n[selectMaidIndex] = voice1[selectMaidIndex];
  4739. if (voice1[selectMaidIndex])
  4740. {
  4741. zFlg[selectMaidIndex] = true;
  4742. xFlg[selectMaidIndex] = false;
  4743. voice2[selectMaidIndex] = false;
  4744. voice2n[selectMaidIndex] = false;
  4745. }
  4746. else
  4747. {
  4748. zFlg[selectMaidIndex] = false;
  4749. }
  4750. }
  4751. if (voice2[selectMaidIndex] != voice2n[selectMaidIndex])
  4752. {
  4753. voice2n[selectMaidIndex] = voice2[selectMaidIndex];
  4754. if (voice2[selectMaidIndex])
  4755. {
  4756. xFlg[selectMaidIndex] = true;
  4757. zFlg[selectMaidIndex] = false;
  4758. voice1[selectMaidIndex] = false;
  4759. voice1n[selectMaidIndex] = false;
  4760. }
  4761. else
  4762. {
  4763. xFlg[selectMaidIndex] = false;
  4764. }
  4765. }
  4766. for (int index = 0; index < maidCnt; ++index)
  4767. {
  4768. if (!maidArray[index].boMabataki)
  4769. {
  4770. maidArray[index].body0.Face.morph.FixBlendValues_Face();
  4771. }
  4772. }
  4773. }
  4774. }
  4775. }
  4776. if (maidArray[selectMaidIndex] && maidArray[selectMaidIndex].Visible && (isF6 || okFlg && faceFlg))
  4777. {
  4778. if (isFaceInit)
  4779. {
  4780. if (!isDanceChu)
  4781. {
  4782. TMorph morph = maidArray[selectMaidIndex].body0.Face.morph;
  4783. float[] fieldValue1 = GetFieldValue<TMorph, float[]>(morph, "BlendValues");
  4784. float[] fieldValue2 = GetFieldValue<TMorph, float[]>(morph, "BlendValuesBackup");
  4785. Maid maid = maidArray[selectMaidIndex];
  4786. maidArray[selectMaidIndex].boMabataki = false;
  4787. morph.EyeMabataki = 0.0f;
  4788. isFaceInit = false;
  4789. maidArray[selectMaidIndex].body0.Face.morph.FixBlendValues_Face();
  4790. eyeclose = fieldValue2[(int)morph.hash["eyeclose"]];
  4791. eyeclose2 = fieldValue2[(int)morph.hash["eyeclose2"]];
  4792. eyeclose3 = fieldValue2[(int)morph.hash["eyeclose3"]];
  4793. eyeclose6 = fieldValue2[(int)morph.hash["eyeclose6"]];
  4794. hitomih = fieldValue1[(int)morph.hash["hitomih"]];
  4795. hitomis = fieldValue1[(int)morph.hash["hitomis"]];
  4796. mayuha = fieldValue1[(int)morph.hash["mayuha"]];
  4797. mayuup = fieldValue1[(int)morph.hash["mayuup"]];
  4798. mayuv = fieldValue1[(int)morph.hash["mayuv"]];
  4799. mayuvhalf = fieldValue1[(int)morph.hash["mayuvhalf"]];
  4800. moutha = fieldValue1[(int)morph.hash["moutha"]];
  4801. mouths = fieldValue1[(int)morph.hash["mouths"]];
  4802. mouthdw = fieldValue1[(int)morph.hash["mouthdw"]];
  4803. mouthup = fieldValue1[(int)morph.hash["mouthup"]];
  4804. tangout = fieldValue1[(int)morph.hash["tangout"]];
  4805. tangup = fieldValue1[(int)morph.hash["tangup"]];
  4806. eyebig = fieldValue1[(int)morph.hash["eyebig"]];
  4807. eyeclose5 = fieldValue2[(int)morph.hash["eyeclose5"]];
  4808. mayuw = fieldValue1[(int)morph.hash["mayuw"]];
  4809. mouthhe = fieldValue1[(int)morph.hash["mouthhe"]];
  4810. mouthc = fieldValue1[(int)morph.hash["mouthc"]];
  4811. mouthi = fieldValue1[(int)morph.hash["mouthi"]];
  4812. mouthuphalf = fieldValue1[(int)morph.hash["mouthuphalf"]];
  4813. try
  4814. {
  4815. tangopen = fieldValue1[(int)morph.hash["tangopen"]];
  4816. }
  4817. catch { }
  4818. isWear = maid.body0.GetMask(TBody.SlotID.wear) || maid.body0.GetMask(TBody.SlotID.mizugi)
  4819. || maid.body0.GetMask(TBody.SlotID.onepiece);
  4820. isSkirt = maid.body0.GetMask(TBody.SlotID.skirt);
  4821. isBra = maid.body0.GetMask(TBody.SlotID.bra);
  4822. isPanz = maid.body0.GetMask(TBody.SlotID.panz);
  4823. isHeadset = maid.body0.GetMask(TBody.SlotID.headset) || maid.body0.GetMask(TBody.SlotID.accHat)
  4824. || maid.body0.GetMask(TBody.SlotID.accHead)
  4825. || maid.body0.GetMask(TBody.SlotID.accKamiSubL)
  4826. || maid.body0.GetMask(TBody.SlotID.accKamiSubR)
  4827. || maid.body0.GetMask(TBody.SlotID.accKami_1_)
  4828. || maid.body0.GetMask(TBody.SlotID.accKami_2_)
  4829. || maid.body0.GetMask(TBody.SlotID.accKami_3_);
  4830. isAccUde = maid.body0.GetMask(TBody.SlotID.accUde);
  4831. isStkg = maid.body0.GetMask(TBody.SlotID.stkg);
  4832. isShoes = maid.body0.GetMask(TBody.SlotID.shoes);
  4833. isGlove = maid.body0.GetMask(TBody.SlotID.glove);
  4834. isMegane = maid.body0.GetMask(TBody.SlotID.megane);
  4835. isAccSenaka = maid.body0.GetMask(TBody.SlotID.accSenaka);
  4836. isNamida = fieldValue1[(int)morph.hash["namida"]] > 0.0;
  4837. isTear1 = fieldValue1[(int)morph.hash["tear1"]] > 0.0;
  4838. isTear2 = fieldValue1[(int)morph.hash["tear2"]] > 0.0;
  4839. isTear3 = fieldValue1[(int)morph.hash["tear3"]] > 0.0;
  4840. isShock = fieldValue1[(int)morph.hash["shock"]] > 0.0;
  4841. isYodare = fieldValue1[(int)morph.hash["yodare"]] > 0.0;
  4842. isHoho = fieldValue1[(int)morph.hash["hoho"]] > 0.0;
  4843. isHoho2 = fieldValue1[(int)morph.hash["hoho2"]] > 0.0;
  4844. isHohos = fieldValue1[(int)morph.hash["hohos"]] > 0.0;
  4845. isHohol = fieldValue1[(int)morph.hash["hohol"]] > 0.0;
  4846. isToothoff = fieldValue1[(int)morph.hash["toothoff"]] > 0.0;
  4847. isNosefook = fieldValue1[(int)morph.hash["nosefook"]] > 0.0;
  4848. }
  4849. }
  4850. else
  4851. {
  4852. Maid maid = maidArray[selectMaidIndex];
  4853. if (!yotogiFlg && sceneLevel != 5 && sceneLevel != 3)
  4854. {
  4855. if (maid.body0.GetMask(TBody.SlotID.wear) != isWear)
  4856. {
  4857. maid.body0.SetMask(TBody.SlotID.wear, isWear);
  4858. }
  4859. if (maid.body0.GetMask(TBody.SlotID.mizugi) != isWear)
  4860. {
  4861. maid.body0.SetMask(TBody.SlotID.mizugi, isWear);
  4862. }
  4863. if (maid.body0.GetMask(TBody.SlotID.onepiece) != isWear)
  4864. {
  4865. maid.body0.SetMask(TBody.SlotID.onepiece, isWear);
  4866. }
  4867. if (maid.body0.GetMask(TBody.SlotID.skirt) != isSkirt)
  4868. {
  4869. maid.body0.SetMask(TBody.SlotID.skirt, isSkirt);
  4870. }
  4871. if (maid.body0.GetMask(TBody.SlotID.bra) != isBra)
  4872. {
  4873. maid.body0.SetMask(TBody.SlotID.bra, isBra);
  4874. }
  4875. if (maid.body0.GetMask(TBody.SlotID.panz) != isPanz)
  4876. {
  4877. maid.body0.SetMask(TBody.SlotID.panz, isPanz);
  4878. }
  4879. if (maid.body0.GetMask(TBody.SlotID.headset) != isHeadset)
  4880. {
  4881. maid.body0.SetMask(TBody.SlotID.headset, isHeadset);
  4882. }
  4883. if (maid.body0.GetMask(TBody.SlotID.accHat) != isHeadset)
  4884. {
  4885. maid.body0.SetMask(TBody.SlotID.accHat, isHeadset);
  4886. }
  4887. if (maid.body0.GetMask(TBody.SlotID.accHead) != isHeadset)
  4888. {
  4889. maid.body0.SetMask(TBody.SlotID.accHead, isHeadset);
  4890. }
  4891. if (maid.body0.GetMask(TBody.SlotID.accKamiSubL) != isHeadset)
  4892. {
  4893. maid.body0.SetMask(TBody.SlotID.accKamiSubL, isHeadset);
  4894. }
  4895. if (maid.body0.GetMask(TBody.SlotID.accKamiSubR) != isHeadset)
  4896. {
  4897. maid.body0.SetMask(TBody.SlotID.accKamiSubR, isHeadset);
  4898. }
  4899. if (maid.body0.GetMask(TBody.SlotID.accKami_1_) != isHeadset)
  4900. {
  4901. maid.body0.SetMask(TBody.SlotID.accKami_1_, isHeadset);
  4902. }
  4903. if (maid.body0.GetMask(TBody.SlotID.accKami_2_) != isHeadset)
  4904. {
  4905. maid.body0.SetMask(TBody.SlotID.accKami_2_, isHeadset);
  4906. }
  4907. if (maid.body0.GetMask(TBody.SlotID.accKami_3_) != isHeadset)
  4908. {
  4909. maid.body0.SetMask(TBody.SlotID.accKami_3_, isHeadset);
  4910. }
  4911. if (maid.body0.GetMask(TBody.SlotID.accUde) != isAccUde)
  4912. {
  4913. maid.body0.SetMask(TBody.SlotID.accUde, isAccUde);
  4914. }
  4915. if (maid.body0.GetMask(TBody.SlotID.stkg) != isStkg)
  4916. {
  4917. maid.body0.SetMask(TBody.SlotID.stkg, isStkg);
  4918. }
  4919. if (maid.body0.GetMask(TBody.SlotID.shoes) != isShoes)
  4920. {
  4921. maid.body0.SetMask(TBody.SlotID.shoes, isShoes);
  4922. }
  4923. if (maid.body0.GetMask(TBody.SlotID.glove) != isGlove)
  4924. {
  4925. maid.body0.SetMask(TBody.SlotID.glove, isGlove);
  4926. }
  4927. if (maid.body0.GetMask(TBody.SlotID.megane) != isMegane)
  4928. {
  4929. maid.body0.SetMask(TBody.SlotID.megane, isMegane);
  4930. }
  4931. if (maid.body0.GetMask(TBody.SlotID.accSenaka) != isAccSenaka)
  4932. {
  4933. maid.body0.SetMask(TBody.SlotID.accSenaka, isAccSenaka);
  4934. }
  4935. if (mekure1[selectMaidIndex] != mekure1n[selectMaidIndex])
  4936. {
  4937. mekure1n[selectMaidIndex] = mekure1[selectMaidIndex];
  4938. if (mekure1[selectMaidIndex])
  4939. {
  4940. maid.ItemChangeTemp("skirt", "めくれスカート");
  4941. maid.ItemChangeTemp("onepiece", "めくれスカート");
  4942. mekure2[selectMaidIndex] = false;
  4943. mekure2n[selectMaidIndex] = false;
  4944. }
  4945. else
  4946. {
  4947. ResetProp(maid, MPN.skirt);
  4948. ResetProp(maid, MPN.onepiece);
  4949. }
  4950. maid.AllProcPropSeqStart();
  4951. }
  4952. if (mekure2[selectMaidIndex] != mekure2n[selectMaidIndex])
  4953. {
  4954. mekure2n[selectMaidIndex] = mekure2[selectMaidIndex];
  4955. if (mekure2[selectMaidIndex])
  4956. {
  4957. maid.ItemChangeTemp("skirt", "めくれスカート後ろ");
  4958. maid.ItemChangeTemp("onepiece", "めくれスカート後ろ");
  4959. mekure1[selectMaidIndex] = false;
  4960. mekure1n[selectMaidIndex] = false;
  4961. }
  4962. else
  4963. {
  4964. ResetProp(maid, MPN.skirt);
  4965. ResetProp(maid, MPN.onepiece);
  4966. }
  4967. maid.AllProcPropSeqStart();
  4968. }
  4969. if (zurasi[selectMaidIndex] != zurasin[selectMaidIndex])
  4970. {
  4971. zurasin[selectMaidIndex] = zurasi[selectMaidIndex];
  4972. if (zurasi[selectMaidIndex])
  4973. {
  4974. maid.ItemChangeTemp("panz", "パンツずらし");
  4975. maid.ItemChangeTemp("mizugi", "パンツずらし");
  4976. }
  4977. else
  4978. {
  4979. ResetProp(maid, MPN.panz);
  4980. ResetProp(maid, MPN.mizugi);
  4981. }
  4982. maid.AllProcPropSeqStart();
  4983. }
  4984. }
  4985. if (!isDanceChu)
  4986. {
  4987. TMorph morph = maidArray[selectMaidIndex].body0.Face.morph;
  4988. float[] fieldValue1 = GetFieldValue<TMorph, float[]>(morph, "BlendValues");
  4989. float[] fieldValue2 = GetFieldValue<TMorph, float[]>(morph, "BlendValuesBackup");
  4990. fieldValue2[(int)morph.hash["eyeclose"]] = eyeclose;
  4991. fieldValue2[(int)morph.hash["eyeclose2"]] = eyeclose2;
  4992. fieldValue2[(int)morph.hash["eyeclose3"]] = eyeclose3;
  4993. fieldValue2[(int)morph.hash["eyeclose6"]] = eyeclose6;
  4994. fieldValue1[(int)morph.hash["hitomih"]] = hitomih;
  4995. fieldValue1[(int)morph.hash["hitomis"]] = hitomis;
  4996. fieldValue1[(int)morph.hash["mayuha"]] = mayuha;
  4997. fieldValue1[(int)morph.hash["mayuup"]] = mayuup;
  4998. fieldValue1[(int)morph.hash["mayuv"]] = mayuv;
  4999. fieldValue1[(int)morph.hash["mayuvhalf"]] = mayuvhalf;
  5000. fieldValue1[(int)morph.hash["tangout"]] = tangout;
  5001. fieldValue1[(int)morph.hash["tangup"]] = tangup;
  5002. fieldValue1[(int)morph.hash["eyebig"]] = eyebig;
  5003. fieldValue2[(int)morph.hash["eyeclose5"]] = eyeclose5;
  5004. fieldValue1[(int)morph.hash["mayuw"]] = mayuw;
  5005. try
  5006. {
  5007. fieldValue1[(int)morph.hash["tangopen"]] = tangopen;
  5008. }
  5009. catch { }
  5010. if (!isDanceChu)
  5011. {
  5012. fieldValue1[(int)morph.hash["moutha"]] = moutha;
  5013. fieldValue1[(int)morph.hash["mouths"]] = mouths;
  5014. fieldValue1[(int)morph.hash["mouthdw"]] = mouthdw;
  5015. fieldValue1[(int)morph.hash["mouthup"]] = mouthup;
  5016. fieldValue1[(int)morph.hash["mouthhe"]] = mouthhe;
  5017. fieldValue1[(int)morph.hash["mouthc"]] = mouthc;
  5018. fieldValue1[(int)morph.hash["mouthi"]] = mouthi;
  5019. fieldValue1[(int)morph.hash["mouthuphalf"]] = mouthuphalf;
  5020. }
  5021. if (isNamida)
  5022. {
  5023. fieldValue1[(int)morph.hash["namida"]] = 1f;
  5024. }
  5025. else
  5026. {
  5027. fieldValue1[(int)morph.hash["namida"]] = 0.0f;
  5028. }
  5029. if (isTear1)
  5030. {
  5031. fieldValue1[(int)morph.hash["tear1"]] = 1f;
  5032. }
  5033. else
  5034. {
  5035. fieldValue1[(int)morph.hash["tear1"]] = 0.0f;
  5036. }
  5037. if (isTear2)
  5038. {
  5039. fieldValue1[(int)morph.hash["tear2"]] = 1f;
  5040. }
  5041. else
  5042. {
  5043. fieldValue1[(int)morph.hash["tear2"]] = 0.0f;
  5044. }
  5045. if (isTear3)
  5046. {
  5047. fieldValue1[(int)morph.hash["tear3"]] = 1f;
  5048. }
  5049. else
  5050. {
  5051. fieldValue1[(int)morph.hash["tear3"]] = 0.0f;
  5052. }
  5053. if (isShock)
  5054. {
  5055. fieldValue1[(int)morph.hash["shock"]] = 1f;
  5056. }
  5057. else
  5058. {
  5059. fieldValue1[(int)morph.hash["shock"]] = 0.0f;
  5060. }
  5061. if (isYodare)
  5062. {
  5063. fieldValue1[(int)morph.hash["yodare"]] = 1f;
  5064. }
  5065. else
  5066. {
  5067. fieldValue1[(int)morph.hash["yodare"]] = 0.0f;
  5068. }
  5069. if (isHoho)
  5070. {
  5071. fieldValue1[(int)morph.hash["hoho"]] = 0.5f;
  5072. }
  5073. else
  5074. {
  5075. fieldValue1[(int)morph.hash["hoho"]] = 0.0f;
  5076. }
  5077. if (isHoho2)
  5078. {
  5079. fieldValue1[(int)morph.hash["hoho2"]] = 0.5f;
  5080. }
  5081. else
  5082. {
  5083. fieldValue1[(int)morph.hash["hoho2"]] = 0.0f;
  5084. }
  5085. if (isHohos)
  5086. {
  5087. fieldValue1[(int)morph.hash["hohos"]] = 1f;
  5088. }
  5089. else
  5090. {
  5091. fieldValue1[(int)morph.hash["hohos"]] = 0.0f;
  5092. }
  5093. if (isHohol)
  5094. {
  5095. fieldValue1[(int)morph.hash["hohol"]] = 1f;
  5096. }
  5097. else
  5098. {
  5099. fieldValue1[(int)morph.hash["hohol"]] = 0.0f;
  5100. }
  5101. if (isToothoff)
  5102. {
  5103. fieldValue1[(int)morph.hash["toothoff"]] = 1f;
  5104. }
  5105. else
  5106. {
  5107. fieldValue1[(int)morph.hash["toothoff"]] = 0.0f;
  5108. }
  5109. morph.boNoseFook = isNosefook;
  5110. for (int index = 0; index < maidCnt; ++index)
  5111. {
  5112. maidArray[index].body0.Face.morph.FixBlendValues_Face();
  5113. }
  5114. }
  5115. }
  5116. }
  5117. if (isF6 && !okFlg && (!escFlg && Input.GetKeyDown(KeyCode.Escape) || Input.GetKeyDown(KeyCode.Tab)))
  5118. {
  5119. bGui = !bGui;
  5120. }
  5121. if (isF6 && maidArray[0] != null && maidArray[0].Visible)
  5122. {
  5123. for (int index = 0; index < 999; ++index)
  5124. {
  5125. if (gDogu[index] != null)
  5126. {
  5127. gDogu[index].GetComponent<Renderer>().enabled = false;
  5128. gDogu[index].SetActive(false);
  5129. if (mDogu[index].del)
  5130. {
  5131. mDogu[index].del = false;
  5132. GraphicsUtils.Destroy(doguBObject[index]);
  5133. doguBObject.RemoveAt(index);
  5134. }
  5135. else if (mDogu[index].count > 0)
  5136. {
  5137. --mDogu[index].count;
  5138. if (doguBObject.Count > index && doguBObject[index] != null
  5139. && doguBObject[index].name.StartsWith("Particle/p"))
  5140. {
  5141. if (mDogu[index].count == 1)
  5142. {
  5143. doguBObject[index].SetActive(false);
  5144. }
  5145. if (mDogu[index].count == 0)
  5146. {
  5147. doguBObject[index].SetActive(true);
  5148. switch (doguBObject[index].name)
  5149. {
  5150. case "Particle/pLineY":
  5151. mDogu[index].count = 180;
  5152. break;
  5153. case "Particle/pLineP02":
  5154. mDogu[index].count = 115;
  5155. break;
  5156. case "Particle/pLine_act2":
  5157. mDogu[index].count = 90;
  5158. break;
  5159. case "Particle/pHeart01":
  5160. mDogu[index].count = 77;
  5161. break;
  5162. }
  5163. }
  5164. }
  5165. }
  5166. }
  5167. }
  5168. ikMode2 = !Input.GetKey(KeyCode.Z) || !getModKeyPressing(modKey.Shift)
  5169. ? (!Input.GetKey(KeyCode.Z) || !getModKeyPressing(modKey.Ctrl)
  5170. ? (!Input.GetKey(KeyCode.X) || !getModKeyPressing(modKey.Shift)
  5171. ? (!Input.GetKey(KeyCode.X)
  5172. ? (!Input.GetKey(KeyCode.Z)
  5173. ? (!Input.GetKey(KeyCode.C)
  5174. ? (!Input.GetKey(KeyCode.D) ? 0 : 15)
  5175. : 13)
  5176. : 10)
  5177. : 9)
  5178. : 14)
  5179. : 12)
  5180. : 11;
  5181. if (gBg != null)
  5182. {
  5183. if (!isCube3)
  5184. {
  5185. gBg.GetComponent<Renderer>().enabled = false;
  5186. gBg.SetActive(false);
  5187. }
  5188. else
  5189. {
  5190. if (ikMode2 > 0 && ikMode2 != 15)
  5191. {
  5192. gBg.GetComponent<Renderer>().enabled = true;
  5193. gBg.SetActive(true);
  5194. }
  5195. else
  5196. {
  5197. gBg.GetComponent<Renderer>().enabled = false;
  5198. gBg.SetActive(false);
  5199. }
  5200. if (ikMode2 == 10 || ikMode2 == 11 || ikMode2 == 12)
  5201. {
  5202. gBg.GetComponent<Renderer>().material.color = new Color(0.4f, 0.4f, 1f, 0.5f);
  5203. }
  5204. if (ikMode2 == 9 || ikMode2 == 14)
  5205. {
  5206. gBg.GetComponent<Renderer>().material.color = new Color(0.3f, 0.7f, 0.3f, 0.5f);
  5207. mBg.Update();
  5208. }
  5209. if (ikMode2 == 13)
  5210. {
  5211. gBg.GetComponent<Renderer>().material.color = new Color(0.7f, 0.7f, 0.3f, 0.5f);
  5212. mBg.Update();
  5213. }
  5214. if (ikMode2 == 13)
  5215. {
  5216. if ((ikModeOld2 == 0 || ikModeOld2 >= 9) && ikModeOld2 != 13 && gBg)
  5217. {
  5218. mBg.ido = 5;
  5219. mBg.reset = true;
  5220. }
  5221. else
  5222. {
  5223. gBg.transform.position = bg.position;
  5224. gBg.transform.eulerAngles = bg.eulerAngles;
  5225. mBg.maid = bgObject;
  5226. mBg.ido = 5;
  5227. }
  5228. }
  5229. else if (ikMode2 == 11)
  5230. {
  5231. if ((ikModeOld2 == 0 || ikModeOld2 >= 9) && ikModeOld2 != 11 && gBg)
  5232. {
  5233. mBg.ido = 3;
  5234. mBg.reset = true;
  5235. }
  5236. else
  5237. {
  5238. gBg.transform.position = bg.position;
  5239. gBg.transform.eulerAngles = bg.eulerAngles;
  5240. mBg.maid = bgObject;
  5241. mBg.ido = 3;
  5242. }
  5243. }
  5244. else if (ikMode2 == 12)
  5245. {
  5246. if ((ikModeOld2 == 0 || ikModeOld2 >= 9) && ikModeOld2 != 12 && gBg)
  5247. {
  5248. mBg.ido = 2;
  5249. mBg.reset = true;
  5250. }
  5251. else
  5252. {
  5253. gBg.transform.position = bg.position;
  5254. gBg.transform.eulerAngles = bg.eulerAngles;
  5255. mBg.maid = bgObject;
  5256. mBg.ido = 2;
  5257. }
  5258. }
  5259. else if (ikMode2 == 10)
  5260. {
  5261. if ((ikModeOld2 == 0 || ikModeOld2 >= 9) && ikModeOld2 != 10 && gBg)
  5262. {
  5263. mBg.ido = 1;
  5264. mBg.reset = true;
  5265. }
  5266. else
  5267. {
  5268. gBg.transform.position = bg.position;
  5269. gBg.transform.eulerAngles = bg.eulerAngles;
  5270. mBg.maid = bgObject;
  5271. mBg.ido = 1;
  5272. }
  5273. }
  5274. else if (ikMode2 == 9)
  5275. {
  5276. if ((ikModeOld2 == 0 || ikModeOld2 >= 9) && ikModeOld2 != 9 && gBg)
  5277. {
  5278. mBg.ido = 4;
  5279. mBg.reset = true;
  5280. }
  5281. else
  5282. {
  5283. gBg.transform.position = bg.position;
  5284. gBg.transform.eulerAngles = bg.eulerAngles;
  5285. mBg.maid = bgObject;
  5286. mBg.ido = 4;
  5287. }
  5288. }
  5289. else if (ikMode2 == 14)
  5290. {
  5291. if ((ikModeOld2 == 0 || ikModeOld2 >= 9) && ikModeOld2 != 14 && gBg)
  5292. {
  5293. mBg.ido = 6;
  5294. mBg.reset = true;
  5295. }
  5296. else
  5297. {
  5298. gBg.transform.position = bg.position;
  5299. gBg.transform.eulerAngles = bg.eulerAngles;
  5300. mBg.maid = bgObject;
  5301. mBg.ido = 6;
  5302. }
  5303. }
  5304. }
  5305. }
  5306. for (int index = 0; index < lightIndex.Count; ++index)
  5307. {
  5308. if (gLight[0] == null)
  5309. {
  5310. gLight[0] = GameObject.CreatePrimitive(PrimitiveType.Cube);
  5311. gLight[0].GetComponent<Renderer>().material =
  5312. new Material(Shader.Find("Transparent/Diffuse")) { color = new Color(0.5f, 0.5f, 1f, 0.8f) };
  5313. gLight[0].layer = 8;
  5314. gLight[0].GetComponent<Renderer>().enabled = false;
  5315. gLight[0].SetActive(false);
  5316. gLight[0].transform.position = GameMain.Instance.MainLight.transform.position;
  5317. mLight[0] = gLight[0].AddComponent<MouseDrag6>();
  5318. mLight[0].obj = gLight[0];
  5319. mLight[0].maid = GameMain.Instance.MainLight.gameObject;
  5320. mLight[0].angles = GameMain.Instance.MainLight.gameObject.transform.eulerAngles;
  5321. gLight[0].transform.localScale = new Vector3(0.12f, 0.12f, 0.12f);
  5322. mLight[0].ido = 1;
  5323. mLight[0].isScale = false;
  5324. }
  5325. if (gLight[index] != null)
  5326. {
  5327. if (!isCube4)
  5328. {
  5329. gLight[index].GetComponent<Renderer>().enabled = false;
  5330. gLight[index].SetActive(false);
  5331. }
  5332. else if (lightList[index].GetComponent<Light>().type == LightType.Spot
  5333. || lightList[index].GetComponent<Light>().type == LightType.Point)
  5334. {
  5335. if (ikMode2 > 0 && ikMode2 != 15)
  5336. {
  5337. gLight[index].GetComponent<Renderer>().enabled = true;
  5338. gLight[index].SetActive(true);
  5339. }
  5340. else
  5341. {
  5342. gLight[index].GetComponent<Renderer>().enabled = false;
  5343. gLight[index].SetActive(false);
  5344. mLight[index].isAlt = false;
  5345. }
  5346. if (ikMode2 == 10 || ikMode2 == 11 || ikMode2 == 12)
  5347. {
  5348. gLight[index].GetComponent<Renderer>().material.color = new Color(0.4f, 0.4f, 1f, 0.5f);
  5349. if (mLight[index].isAlt)
  5350. {
  5351. gLight[index].GetComponent<Renderer>().material.color = new Color(0.6f, 0.6f, 1f, 0.5f);
  5352. }
  5353. }
  5354. if (ikMode2 == 9 || ikMode2 == 14)
  5355. {
  5356. gLight[index].GetComponent<Renderer>().material.color = new Color(0.3f, 0.7f, 0.3f, 0.5f);
  5357. mLight[index].Update();
  5358. }
  5359. if (ikMode2 == 13)
  5360. {
  5361. gLight[index].GetComponent<Renderer>().material.color = new Color(0.7f, 0.7f, 0.3f, 0.5f);
  5362. mLight[index].Update();
  5363. }
  5364. if (ikMode2 == 13)
  5365. {
  5366. if ((ikModeOld2 == 0 || ikModeOld2 >= 9) && ikModeOld2 != 13 && gLight[index])
  5367. {
  5368. mLight[index].ido = 15;
  5369. mLight[index].reset = true;
  5370. }
  5371. else
  5372. {
  5373. if (lightList[index].transform.localScale.x == 1.0)
  5374. {
  5375. lightList[index].transform.localScale =
  5376. new Vector3(lightRange[index], lightRange[index], lightRange[index]);
  5377. }
  5378. lightRange[index] = lightList[index].transform.localScale.x;
  5379. gLight[index].transform.position = lightList[index].transform.position;
  5380. gLight[index].transform.eulerAngles = lightList[index].transform.eulerAngles;
  5381. mLight[index].maid = lightList[index];
  5382. mLight[index].ido = 15;
  5383. }
  5384. }
  5385. else if (ikMode2 == 11)
  5386. {
  5387. if ((ikModeOld2 == 0 || ikModeOld2 >= 9) && ikModeOld2 != 11 && gLight[index])
  5388. {
  5389. mLight[index].ido = 3;
  5390. mLight[index].reset = true;
  5391. }
  5392. else
  5393. {
  5394. gLight[index].transform.position = lightList[index].transform.position;
  5395. gLight[index].transform.eulerAngles = lightList[index].transform.eulerAngles;
  5396. lightX[index] = gLight[index].transform.eulerAngles.x;
  5397. lightY[index] = gLight[index].transform.eulerAngles.y;
  5398. mLight[index].maid = lightList[index];
  5399. mLight[index].ido = 3;
  5400. }
  5401. }
  5402. else if (ikMode2 == 12)
  5403. {
  5404. if ((ikModeOld2 == 0 || ikModeOld2 >= 9) && ikModeOld2 != 12 && gLight[index])
  5405. {
  5406. mLight[index].ido = 2;
  5407. mLight[index].reset = true;
  5408. }
  5409. else
  5410. {
  5411. gLight[index].transform.position = lightList[index].transform.position;
  5412. gLight[index].transform.eulerAngles = lightList[index].transform.eulerAngles;
  5413. mLight[index].maid = lightList[index];
  5414. mLight[index].ido = 2;
  5415. }
  5416. }
  5417. else if (ikMode2 == 10)
  5418. {
  5419. if ((ikModeOld2 == 0 || ikModeOld2 >= 9) && ikModeOld2 != 10 && gLight[index])
  5420. {
  5421. mLight[index].ido = 1;
  5422. mLight[index].reset = true;
  5423. }
  5424. else
  5425. {
  5426. gLight[index].transform.position = lightList[index].transform.position;
  5427. gLight[index].transform.eulerAngles = lightList[index].transform.eulerAngles;
  5428. mLight[index].maid = lightList[index];
  5429. mLight[index].ido = 1;
  5430. }
  5431. }
  5432. else if (ikMode2 == 9)
  5433. {
  5434. if ((ikModeOld2 == 0 || ikModeOld2 >= 9) && ikModeOld2 != 9 && gLight[index])
  5435. {
  5436. mLight[index].ido = 4;
  5437. mLight[index].reset = true;
  5438. }
  5439. else
  5440. {
  5441. gLight[index].transform.position = lightList[index].transform.position;
  5442. gLight[index].transform.eulerAngles = lightList[index].transform.eulerAngles;
  5443. lightX[index] = gLight[index].transform.eulerAngles.x;
  5444. lightY[index] = gLight[index].transform.eulerAngles.y;
  5445. mLight[index].maid = lightList[index];
  5446. mLight[index].ido = 4;
  5447. }
  5448. }
  5449. else if (ikMode2 == 14)
  5450. {
  5451. if ((ikModeOld2 == 0 || ikModeOld2 >= 9) && ikModeOld2 != 14 && gLight[index])
  5452. {
  5453. mLight[index].ido = 6;
  5454. mLight[index].reset = true;
  5455. }
  5456. else
  5457. {
  5458. gLight[index].transform.position = lightList[index].transform.position;
  5459. gLight[index].transform.eulerAngles = lightList[index].transform.eulerAngles;
  5460. lightX[index] = gLight[index].transform.eulerAngles.x;
  5461. lightY[index] = gLight[index].transform.eulerAngles.y;
  5462. mLight[index].maid = lightList[index];
  5463. mLight[index].ido = 6;
  5464. }
  5465. }
  5466. }
  5467. }
  5468. }
  5469. for (int index = 0; index < doguBObject.Count; ++index)
  5470. {
  5471. if (!isCube2)
  5472. {
  5473. gDogu[index].GetComponent<Renderer>().enabled = false;
  5474. gDogu[index].SetActive(false);
  5475. }
  5476. else
  5477. {
  5478. if (ikMode2 > 0)
  5479. {
  5480. gDogu[index].GetComponent<Renderer>().enabled = true;
  5481. gDogu[index].SetActive(true);
  5482. }
  5483. else
  5484. {
  5485. gDogu[index].GetComponent<Renderer>().enabled = false;
  5486. gDogu[index].SetActive(false);
  5487. mDogu[index].isAlt = false;
  5488. }
  5489. if (ikMode2 == 10 || ikMode2 == 11 || ikMode2 == 12)
  5490. {
  5491. gDogu[index].GetComponent<Renderer>().material.color = new Color(0.4f, 0.4f, 1f, 0.5f);
  5492. if (mDogu[index].isAlt)
  5493. {
  5494. gDogu[index].GetComponent<Renderer>().material.color = new Color(0.6f, 0.6f, 1f, 0.5f);
  5495. }
  5496. }
  5497. if (ikMode2 == 9 || ikMode2 == 14)
  5498. {
  5499. gDogu[index].GetComponent<Renderer>().material.color = new Color(0.3f, 0.7f, 0.3f, 0.5f);
  5500. mDogu[index].Update();
  5501. }
  5502. if (ikMode2 == 15)
  5503. {
  5504. gDogu[index].GetComponent<Renderer>().material.color = new Color(1f, 0.3f, 0.3f, 0.5f);
  5505. }
  5506. if (ikMode2 == 13)
  5507. {
  5508. gDogu[index].GetComponent<Renderer>().material.color = new Color(0.7f, 0.7f, 0.3f, 0.5f);
  5509. mDogu[index].Update();
  5510. }
  5511. if (ikMode2 == 13)
  5512. {
  5513. if ((ikModeOld2 == 0 || ikModeOld2 >= 9) && ikModeOld2 != 13 && gDogu[index])
  5514. {
  5515. mDogu[index].ido = 5;
  5516. mDogu[index].reset = true;
  5517. }
  5518. else
  5519. {
  5520. gDogu[index].transform.position = doguBObject[index].transform.position;
  5521. gDogu[index].transform.eulerAngles = doguBObject[index].transform.eulerAngles;
  5522. mDogu[index].maid = doguBObject[index];
  5523. mDogu[index].ido = 5;
  5524. }
  5525. }
  5526. else if (ikMode2 == 11)
  5527. {
  5528. if ((ikModeOld2 == 0 || ikModeOld2 >= 9) && ikModeOld2 != 11 && gDogu[index])
  5529. {
  5530. mDogu[index].ido = 3;
  5531. mDogu[index].reset = true;
  5532. }
  5533. else
  5534. {
  5535. gDogu[index].transform.position = doguBObject[index].transform.position;
  5536. gDogu[index].transform.eulerAngles = doguBObject[index].transform.eulerAngles;
  5537. mDogu[index].maid = doguBObject[index];
  5538. mDogu[index].ido = 3;
  5539. }
  5540. }
  5541. else if (ikMode2 == 12)
  5542. {
  5543. if ((ikModeOld2 == 0 || ikModeOld2 >= 9) && ikModeOld2 != 12 && gDogu[index])
  5544. {
  5545. mDogu[index].ido = 2;
  5546. mDogu[index].reset = true;
  5547. }
  5548. else
  5549. {
  5550. gDogu[index].transform.position = doguBObject[index].transform.position;
  5551. gDogu[index].transform.eulerAngles = doguBObject[index].transform.eulerAngles;
  5552. mDogu[index].maid = doguBObject[index];
  5553. mDogu[index].ido = 2;
  5554. }
  5555. }
  5556. else if (ikMode2 == 10)
  5557. {
  5558. if ((ikModeOld2 == 0 || ikModeOld2 >= 9) && ikModeOld2 != 10 && gDogu[index])
  5559. {
  5560. mDogu[index].ido = 1;
  5561. mDogu[index].reset = true;
  5562. }
  5563. else
  5564. {
  5565. gDogu[index].transform.position = doguBObject[index].transform.position;
  5566. gDogu[index].transform.eulerAngles = doguBObject[index].transform.eulerAngles;
  5567. mDogu[index].maid = doguBObject[index];
  5568. mDogu[index].maidArray = doguBObject.ToArray();
  5569. mDogu[index].mArray = ((IEnumerable<MouseDrag6>)mDogu).ToArray();
  5570. mDogu[index].ido = 1;
  5571. }
  5572. }
  5573. else if (ikMode2 == 9)
  5574. {
  5575. if ((ikModeOld2 == 0 || ikModeOld2 >= 9) && ikModeOld2 != 9 && gDogu[index])
  5576. {
  5577. mDogu[index].ido = 4;
  5578. mDogu[index].reset = true;
  5579. }
  5580. else
  5581. {
  5582. gDogu[index].transform.position = doguBObject[index].transform.position;
  5583. gDogu[index].transform.eulerAngles = doguBObject[index].transform.eulerAngles;
  5584. mDogu[index].maid = doguBObject[index];
  5585. mDogu[index].ido = 4;
  5586. }
  5587. }
  5588. else if (ikMode2 == 14)
  5589. {
  5590. if ((ikModeOld2 == 0 || ikModeOld2 >= 9) && ikModeOld2 != 14 && gDogu[index])
  5591. {
  5592. mDogu[index].ido = 6;
  5593. mDogu[index].reset = true;
  5594. }
  5595. else
  5596. {
  5597. gDogu[index].transform.position = doguBObject[index].transform.position;
  5598. gDogu[index].transform.eulerAngles = doguBObject[index].transform.eulerAngles;
  5599. mDogu[index].maid = doguBObject[index];
  5600. mDogu[index].ido = 6;
  5601. }
  5602. }
  5603. else if (ikMode2 == 15)
  5604. {
  5605. if ((ikModeOld2 == 0 || ikModeOld2 >= 9) && ikModeOld2 != 15 && gDogu[index])
  5606. {
  5607. mDogu[index].ido = 7;
  5608. mDogu[index].reset = true;
  5609. }
  5610. else
  5611. {
  5612. gDogu[index].transform.position = doguBObject[index].transform.position;
  5613. gDogu[index].transform.eulerAngles = doguBObject[index].transform.eulerAngles;
  5614. mDogu[index].maid = doguBObject[index];
  5615. mDogu[index].ido = 7;
  5616. }
  5617. }
  5618. }
  5619. }
  5620. ikModeOld2 = ikMode2;
  5621. Vector3 vector3_2 = mainCameraTransform.TransformDirection(Vector3.forward);
  5622. Vector3 vector3_3 = mainCameraTransform.TransformDirection(Vector3.right);
  5623. vector3_1 = mainCameraTransform.TransformDirection(Vector3.up);
  5624. if (Input.GetKeyDown(KeyCode.Y) && getModKeyPressing(modKey.Shift))
  5625. {
  5626. keyFlg = true;
  5627. --bgIndex;
  5628. if (bgIndex <= -1)
  5629. {
  5630. bgIndex = bgArray.Length - 1;
  5631. }
  5632. if (!moveBg)
  5633. {
  5634. bg.localScale = new Vector3(1f, 1f, 1f);
  5635. if (bgArray[bgIndex].Length == 36)
  5636. {
  5637. GameMain.Instance.BgMgr.ChangeBgMyRoom(bgArray[bgIndex]);
  5638. }
  5639. else
  5640. {
  5641. GameMain.Instance.BgMgr.ChangeBg(bgArray[bgIndex]);
  5642. }
  5643. bgCombo.selectedItemIndex = bgIndex;
  5644. }
  5645. }
  5646. else if (Input.GetKey(KeyCode.Y) && Input.GetKey(KeyCode.E))
  5647. {
  5648. keyFlg = true;
  5649. bg.localScale = new Vector3(bg.localScale.x * 1.005f, bg.localScale.y * 1.005f, bg.localScale.z * 1.005f);
  5650. }
  5651. else if (Input.GetKey(KeyCode.Y) && Input.GetKey(KeyCode.D))
  5652. {
  5653. keyFlg = true;
  5654. bg.localScale = new Vector3(bg.localScale.x * 0.995f, bg.localScale.y * 0.995f, bg.localScale.z * 0.995f);
  5655. }
  5656. else if (Input.GetKey(KeyCode.Y) && Input.GetKeyDown(KeyCode.C))
  5657. {
  5658. keyFlg = true;
  5659. bg.localScale = new Vector3(1f, 1f, 1f);
  5660. }
  5661. else if ((Input.GetKey(KeyCode.Y) || Input.GetKey(KeyCode.V)) && Input.GetKey(KeyCode.I) && Input.GetKey(KeyCode.J))
  5662. {
  5663. bg.localPosition = bg.position + new Vector3(vector3_2.x, 0.0f, vector3_2.z) * -0.025f * speed
  5664. + new Vector3(vector3_3.x, 0.0f, vector3_3.z) * 0.025f * speed;
  5665. if (Input.GetKey(KeyCode.Y))
  5666. {
  5667. keyFlg = true;
  5668. }
  5669. }
  5670. else if ((Input.GetKey(KeyCode.Y) || Input.GetKey(KeyCode.V)) && Input.GetKey(KeyCode.I) && Input.GetKey(KeyCode.L))
  5671. {
  5672. bg.localPosition = bg.position + new Vector3(vector3_2.x, 0.0f, vector3_2.z) * -0.025f * speed
  5673. + new Vector3(vector3_3.x, 0.0f, vector3_3.z) * -0.025f * speed;
  5674. if (Input.GetKey(KeyCode.Y))
  5675. {
  5676. keyFlg = true;
  5677. }
  5678. }
  5679. else if ((Input.GetKey(KeyCode.Y) || Input.GetKey(KeyCode.V)) && Input.GetKey(KeyCode.K) && Input.GetKey(KeyCode.J))
  5680. {
  5681. bg.localPosition = bg.position + new Vector3(vector3_2.x, 0.0f, vector3_2.z) * 0.025f * speed
  5682. + new Vector3(vector3_3.x, 0.0f, vector3_3.z) * 0.025f * speed;
  5683. if (Input.GetKey(KeyCode.Y))
  5684. {
  5685. keyFlg = true;
  5686. }
  5687. }
  5688. else if ((Input.GetKey(KeyCode.Y) || Input.GetKey(KeyCode.V)) && Input.GetKey(KeyCode.K) && Input.GetKey(KeyCode.L))
  5689. {
  5690. bg.localPosition = bg.position + new Vector3(vector3_2.x, 0.0f, vector3_2.z) * 0.025f * speed
  5691. + new Vector3(vector3_3.x, 0.0f, vector3_3.z) * -0.025f * speed;
  5692. if (Input.GetKey(KeyCode.Y))
  5693. {
  5694. keyFlg = true;
  5695. }
  5696. }
  5697. else if ((Input.GetKey(KeyCode.Y) || Input.GetKey(KeyCode.V)) && Input.GetKey(KeyCode.I))
  5698. {
  5699. bg.localPosition = bg.position + new Vector3(vector3_2.x, 0.0f, vector3_2.z) * -0.025f * speed;
  5700. if (Input.GetKey(KeyCode.Y))
  5701. {
  5702. keyFlg = true;
  5703. }
  5704. }
  5705. else if ((Input.GetKey(KeyCode.Y) || Input.GetKey(KeyCode.V)) && Input.GetKey(KeyCode.K))
  5706. {
  5707. bg.localPosition = bg.position + new Vector3(vector3_2.x, 0.0f, vector3_2.z) * 0.025f * speed;
  5708. if (Input.GetKey(KeyCode.Y))
  5709. {
  5710. keyFlg = true;
  5711. }
  5712. }
  5713. else if ((Input.GetKey(KeyCode.Y) || Input.GetKey(KeyCode.V)) && Input.GetKey(KeyCode.J))
  5714. {
  5715. bg.localPosition = bg.position + new Vector3(vector3_3.x, 0.0f, vector3_3.z) * 0.025f * speed;
  5716. if (Input.GetKey(KeyCode.Y))
  5717. {
  5718. keyFlg = true;
  5719. }
  5720. }
  5721. else if ((Input.GetKey(KeyCode.Y) || Input.GetKey(KeyCode.V)) && Input.GetKey(KeyCode.L))
  5722. {
  5723. bg.localPosition = bg.position + new Vector3(vector3_3.x, 0.0f, vector3_3.z) * -0.025f * speed;
  5724. if (Input.GetKey(KeyCode.Y))
  5725. {
  5726. keyFlg = true;
  5727. }
  5728. }
  5729. else if ((Input.GetKey(KeyCode.Y) || Input.GetKey(KeyCode.V)) && Input.GetKey(KeyCode.Alpha0))
  5730. {
  5731. Vector3 position = bg.position;
  5732. position.y -= 0.015f * speed;
  5733. bg.localPosition = position;
  5734. if (Input.GetKey(KeyCode.Y))
  5735. {
  5736. keyFlg = true;
  5737. }
  5738. }
  5739. else if ((Input.GetKey(KeyCode.Y) || Input.GetKey(KeyCode.V)) && Input.GetKey(KeyCode.P))
  5740. {
  5741. Vector3 position = bg.position;
  5742. position.y += 0.015f * speed;
  5743. bg.localPosition = position;
  5744. if (Input.GetKey(KeyCode.Y))
  5745. {
  5746. keyFlg = true;
  5747. }
  5748. }
  5749. else if ((Input.GetKey(KeyCode.Y) || Input.GetKey(KeyCode.V)) && Input.GetKey(KeyCode.U))
  5750. {
  5751. bg.RotateAround(maidArray[0].transform.position, Vector3.up, 0.7f);
  5752. if (Input.GetKey(KeyCode.Y))
  5753. {
  5754. keyFlg = true;
  5755. }
  5756. }
  5757. else if ((Input.GetKey(KeyCode.Y) || Input.GetKey(KeyCode.V)) && Input.GetKey(KeyCode.O))
  5758. {
  5759. bg.RotateAround(maidArray[0].transform.position, Vector3.up, -0.7f);
  5760. if (Input.GetKey(KeyCode.Y))
  5761. {
  5762. keyFlg = true;
  5763. }
  5764. }
  5765. else if (Input.GetKeyUp(KeyCode.Y))
  5766. {
  5767. if (keyFlg)
  5768. {
  5769. keyFlg = false;
  5770. }
  5771. else
  5772. {
  5773. ++bgIndex;
  5774. if (bgIndex == bgArray.Length)
  5775. {
  5776. bgIndex = 0;
  5777. }
  5778. if (!moveBg)
  5779. {
  5780. bg.localScale = new Vector3(1f, 1f, 1f);
  5781. if (bgArray[bgIndex].Length == 36)
  5782. {
  5783. GameMain.Instance.BgMgr.ChangeBgMyRoom(bgArray[bgIndex]);
  5784. }
  5785. else
  5786. {
  5787. GameMain.Instance.BgMgr.ChangeBg(bgArray[bgIndex]);
  5788. }
  5789. bgCombo.selectedItemIndex = bgIndex;
  5790. }
  5791. }
  5792. }
  5793. speed = !getModKeyPressing(modKey.Shift)
  5794. ? (float)(1.0 * Time.deltaTime * 60.0)
  5795. : (float)(5.0 * Time.deltaTime * 60.0);
  5796. if (!isVR || isVR2)
  5797. {
  5798. if (!isVR)
  5799. {
  5800. if (isBloom)
  5801. {
  5802. Bloom fieldValue = GetFieldValue<CameraMain, Bloom>(mainCamera, "m_gcBloom");
  5803. fieldValue.enabled = true;
  5804. fieldValue.bloomIntensity = bloom1;
  5805. fieldValue.bloomBlurIterations = (int)bloom2;
  5806. fieldValue.bloomThreshholdColor = new Color(1f - bloom3, 1f - bloom4, 1f - bloom5);
  5807. fieldValue.hdr = !isBloomA ? Bloom.HDRBloomMode.Auto : Bloom.HDRBloomMode.On;
  5808. isBloom2 = true;
  5809. }
  5810. else if (isBloom2)
  5811. {
  5812. isBloom2 = false;
  5813. Bloom fieldValue = GetFieldValue<CameraMain, Bloom>(mainCamera, "m_gcBloom");
  5814. fieldValue.enabled = true;
  5815. fieldValue.bloomIntensity = 2.85f;
  5816. fieldValue.hdr = Bloom.HDRBloomMode.Auto;
  5817. fieldValue.bloomThreshholdColor = new Color(1f, 1f, 1f);
  5818. fieldValue.bloomBlurIterations = 3;
  5819. }
  5820. if (isDepth)
  5821. {
  5822. depth_field_.enabled = true;
  5823. depth_field_.focalLength = depth1;
  5824. depth_field_.focalSize = depth2;
  5825. depth_field_.aperture = depth3;
  5826. depth_field_.maxBlurSize = depth4;
  5827. depth_field_.visualizeFocus = isDepthA;
  5828. }
  5829. else
  5830. {
  5831. if (depth_field_ == null)
  5832. {
  5833. depth_field_ = GameMain.Instance.MainCamera.gameObject.AddComponent<DepthOfFieldScatter>();
  5834. if (depth_field_.dofHdrShader == null)
  5835. {
  5836. depth_field_.dofHdrShader = Shader.Find("Hidden/Dof/DepthOfFieldHdr");
  5837. }
  5838. if (depth_field_.dx11BokehShader == null)
  5839. {
  5840. depth_field_.dx11BokehShader = Shader.Find("Hidden/Dof/DX11Dof");
  5841. }
  5842. if (depth_field_.dx11BokehTexture == null)
  5843. {
  5844. depth_field_.dx11BokehTexture = Resources.Load("Textures/hexShape") as Texture2D;
  5845. }
  5846. }
  5847. depth_field_.enabled = false;
  5848. }
  5849. if (isFog)
  5850. {
  5851. if (fog_.fogShader == null)
  5852. {
  5853. fog_.fogShader = Shader.Find("Hidden/GlobalFog");
  5854. }
  5855. fog_.enabled = true;
  5856. fog_.startDistance = fog1;
  5857. fog_.globalDensity = fog2;
  5858. fog_.heightScale = fog3;
  5859. fog_.height = fog4;
  5860. fog_.globalFogColor.r = fog5;
  5861. fog_.globalFogColor.g = fog6;
  5862. fog_.globalFogColor.b = fog7;
  5863. }
  5864. else
  5865. {
  5866. if (fog_ == null)
  5867. {
  5868. fog_ = GameMain.Instance.MainCamera.gameObject.AddComponent<GlobalFog>();
  5869. }
  5870. fog_.enabled = false;
  5871. }
  5872. if (isSepia)
  5873. {
  5874. if (sepia_tone_.shader == null)
  5875. {
  5876. sepia_tone_.shader = Shader.Find("Hidden/Sepiatone Effect");
  5877. }
  5878. sepia_tone_.enabled = true;
  5879. }
  5880. else
  5881. {
  5882. if (sepia_tone_ == null)
  5883. {
  5884. sepia_tone_ = GameMain.Instance.MainCamera.gameObject.AddComponent<SepiaToneEffect>();
  5885. }
  5886. sepia_tone_.enabled = false;
  5887. }
  5888. if (bokashi > 0.0)
  5889. {
  5890. Blur component = GameMain.Instance.MainCamera.gameObject.GetComponent<Blur>();
  5891. component.enabled = true;
  5892. component.blurSize = bokashi / 10f;
  5893. component.blurIterations = 0;
  5894. component.downsample = 0;
  5895. if (bokashi > 3.0)
  5896. {
  5897. component.blurSize -= 0.3f;
  5898. component.blurIterations = 1;
  5899. component.downsample = 1;
  5900. }
  5901. }
  5902. else
  5903. {
  5904. GameMain.Instance.MainCamera.gameObject.GetComponent<Blur>().enabled = false;
  5905. }
  5906. if (kamiyure > 0.0)
  5907. {
  5908. for (int index1 = 0; index1 < maidCnt; ++index1)
  5909. {
  5910. Maid maid = maidArray[index1];
  5911. for (int index2 = 0; index2 < maid.body0.goSlot.Count; ++index2)
  5912. {
  5913. if (maid.body0.goSlot[index2].obj != null)
  5914. {
  5915. DynamicBone component = maid.body0.goSlot[index2].obj.GetComponent<DynamicBone>();
  5916. if (component != null && component.enabled)
  5917. {
  5918. component.m_Gravity = new Vector3(softG.x * 5f, softG.y * 5f + kamiyure, softG.z * 5f);
  5919. }
  5920. }
  5921. List<THair1> fieldValue =
  5922. GetFieldValue<TBoneHair_, List<THair1>>(maid.body0.goSlot[index2].bonehair, "hair1list");
  5923. for (int index3 = 0; index3 < fieldValue.Count; ++index3)
  5924. {
  5925. fieldValue[index3].SoftG = new Vector3(softG.x, softG.y + kamiyure, softG.z);
  5926. }
  5927. }
  5928. }
  5929. }
  5930. if (isBlur)
  5931. {
  5932. Vignetting component = GameMain.Instance.MainCamera.gameObject.GetComponent<Vignetting>();
  5933. component.mode = Vignetting.AberrationMode.Simple;
  5934. component.intensity = blur1;
  5935. component.chromaticAberration = blur4;
  5936. component.blur = blur2;
  5937. component.blurSpread = blur3;
  5938. component.enabled = true;
  5939. isBlur2 = true;
  5940. }
  5941. else if (isBlur2)
  5942. {
  5943. isBlur2 = false;
  5944. Vignetting component = GameMain.Instance.MainCamera.gameObject.GetComponent<Vignetting>();
  5945. component.mode = Vignetting.AberrationMode.Simple;
  5946. component.intensity = -3.98f;
  5947. component.chromaticAberration = -0.75f;
  5948. component.axialAberration = 1.18f;
  5949. component.blurSpread = 4.19f;
  5950. component.luminanceDependency = 0.494f;
  5951. component.blurDistance = 1.71f;
  5952. component.enabled = false;
  5953. }
  5954. }
  5955. if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.I))
  5956. {
  5957. GameMain.Instance.MainLight.transform.eulerAngles -= Vector3.right / 2f;
  5958. lightX[0] = GameMain.Instance.MainLight.transform.eulerAngles.x;
  5959. }
  5960. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.K))
  5961. {
  5962. if (GameMain.Instance.MainLight.transform.eulerAngles.x < 85.0)
  5963. {
  5964. GameMain.Instance.MainLight.transform.eulerAngles += Vector3.right / 2f;
  5965. lightX[0] = GameMain.Instance.MainLight.transform.eulerAngles.x;
  5966. }
  5967. }
  5968. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.J))
  5969. {
  5970. GameMain.Instance.MainLight.transform.eulerAngles -= Vector3.up / 1.5f;
  5971. lightY[0] = GameMain.Instance.MainLight.transform.eulerAngles.y;
  5972. }
  5973. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.L))
  5974. {
  5975. GameMain.Instance.MainLight.transform.eulerAngles += Vector3.up / 1.5f;
  5976. lightY[0] = GameMain.Instance.MainLight.transform.eulerAngles.y;
  5977. }
  5978. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.BackQuote))
  5979. {
  5980. GameMain.Instance.MainLight.Reset();
  5981. GameMain.Instance.MainLight.SetIntensity(0.95f);
  5982. GameMain.Instance.MainLight.GetComponent<Light>().type = LightType.Directional;
  5983. lightIndex[0] = 0;
  5984. lightColorR[0] = 1f;
  5985. lightColorG[0] = 1f;
  5986. lightColorB[0] = 1f;
  5987. lightX[0] = 40f;
  5988. lightY[0] = 180f;
  5989. lightAkarusa[0] = 0.95f;
  5990. lightKage[0] = 0.098f;
  5991. lightRange[0] = 50f;
  5992. bgObject.SetActive(true);
  5993. mainCamera.GetComponent<Camera>().backgroundColor = new Color(0.0f, 0.0f, 0.0f);
  5994. isIdx1 = false;
  5995. isIdx2 = false;
  5996. isIdx3 = false;
  5997. isIdx4 = false;
  5998. }
  5999. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.Minus) && getModKeyPressing(modKey.Shift))
  6000. {
  6001. List<float> lightColorR;
  6002. (lightColorR = this.lightColorR)[0] = lightColorR[0] + 0.01f;
  6003. if (this.lightColorR[0] > 1.0)
  6004. {
  6005. this.lightColorR[0] = 1f;
  6006. }
  6007. if (lightIndex[0] != 3)
  6008. {
  6009. GameMain.Instance.MainLight.GetComponent<Light>().color =
  6010. new Color(this.lightColorR[0], lightColorG[0], lightColorB[0]);
  6011. }
  6012. else
  6013. {
  6014. mainCamera.GetComponent<Camera>().backgroundColor =
  6015. new Color(this.lightColorR[0], lightColorG[0], lightColorB[0]);
  6016. }
  6017. }
  6018. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.Quote) && getModKeyPressing(modKey.Shift))
  6019. {
  6020. List<float> lightColorG;
  6021. (lightColorG = this.lightColorG)[0] = lightColorG[0] + 0.01f;
  6022. if (this.lightColorG[0] > 1.0)
  6023. {
  6024. this.lightColorG[0] = 1f;
  6025. }
  6026. if (lightIndex[0] != 3)
  6027. {
  6028. GameMain.Instance.MainLight.GetComponent<Light>().color =
  6029. new Color(lightColorR[0], this.lightColorG[0], lightColorB[0]);
  6030. }
  6031. else
  6032. {
  6033. mainCamera.GetComponent<Camera>().backgroundColor =
  6034. new Color(lightColorR[0], this.lightColorG[0], lightColorB[0]);
  6035. }
  6036. }
  6037. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.LeftBracket) && getModKeyPressing(modKey.Shift))
  6038. {
  6039. List<float> lightColorB;
  6040. (lightColorB = this.lightColorB)[0] = lightColorB[0] + 0.01f;
  6041. if (this.lightColorB[0] > 1.0)
  6042. {
  6043. this.lightColorB[0] = 1f;
  6044. }
  6045. if (lightIndex[0] != 3)
  6046. {
  6047. GameMain.Instance.MainLight.GetComponent<Light>().color =
  6048. new Color(lightColorR[0], lightColorG[0], this.lightColorB[0]);
  6049. }
  6050. else
  6051. {
  6052. mainCamera.GetComponent<Camera>().backgroundColor =
  6053. new Color(lightColorR[0], lightColorG[0], this.lightColorB[0]);
  6054. }
  6055. }
  6056. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.Minus))
  6057. {
  6058. List<float> lightColorR;
  6059. (lightColorR = this.lightColorR)[0] = lightColorR[0] - 0.01f;
  6060. if (this.lightColorR[0] < 0.0)
  6061. {
  6062. this.lightColorR[0] = 0.0f;
  6063. }
  6064. if (lightIndex[0] != 3)
  6065. {
  6066. GameMain.Instance.MainLight.GetComponent<Light>().color =
  6067. new Color(this.lightColorR[0], lightColorG[0], lightColorB[0]);
  6068. }
  6069. else
  6070. {
  6071. mainCamera.GetComponent<Camera>().backgroundColor =
  6072. new Color(this.lightColorR[0], lightColorG[0], lightColorB[0]);
  6073. }
  6074. }
  6075. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.Quote))
  6076. {
  6077. List<float> lightColorG;
  6078. (lightColorG = this.lightColorG)[0] = lightColorG[0] - 0.01f;
  6079. if (this.lightColorG[0] < 0.0)
  6080. {
  6081. this.lightColorG[0] = 0.0f;
  6082. }
  6083. if (lightIndex[0] != 3)
  6084. {
  6085. GameMain.Instance.MainLight.GetComponent<Light>().color =
  6086. new Color(lightColorR[0], this.lightColorG[0], lightColorB[0]);
  6087. }
  6088. else
  6089. {
  6090. mainCamera.GetComponent<Camera>().backgroundColor =
  6091. new Color(lightColorR[0], this.lightColorG[0], lightColorB[0]);
  6092. }
  6093. }
  6094. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.LeftBracket))
  6095. {
  6096. List<float> lightColorB;
  6097. (lightColorB = this.lightColorB)[0] = lightColorB[0] - 0.01f;
  6098. if (this.lightColorB[0] < 0.0)
  6099. {
  6100. this.lightColorB[0] = 0.0f;
  6101. }
  6102. if (lightIndex[0] != 3)
  6103. {
  6104. GameMain.Instance.MainLight.GetComponent<Light>().color =
  6105. new Color(lightColorR[0], lightColorG[0], this.lightColorB[0]);
  6106. }
  6107. else
  6108. {
  6109. mainCamera.GetComponent<Camera>().backgroundColor =
  6110. new Color(lightColorR[0], lightColorG[0], this.lightColorB[0]);
  6111. }
  6112. }
  6113. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.Alpha0))
  6114. {
  6115. GameMain.Instance.MainLight.GetComponent<Light>().intensity += 0.12f * Time.deltaTime;
  6116. lightAkarusa[0] = GameMain.Instance.MainLight.GetComponent<Light>().intensity;
  6117. }
  6118. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.P))
  6119. {
  6120. GameMain.Instance.MainLight.GetComponent<Light>().intensity -= 0.12f * Time.deltaTime;
  6121. lightAkarusa[0] = GameMain.Instance.MainLight.GetComponent<Light>().intensity;
  6122. }
  6123. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.Alpha9))
  6124. {
  6125. GameMain.Instance.MainLight.GetComponent<Light>().spotAngle += 0.2f;
  6126. GameMain.Instance.MainLight.GetComponent<Light>().range += 0.2f;
  6127. lightRange[0] = GameMain.Instance.MainLight.GetComponent<Light>().spotAngle;
  6128. }
  6129. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.O))
  6130. {
  6131. GameMain.Instance.MainLight.GetComponent<Light>().spotAngle -= 0.2f;
  6132. GameMain.Instance.MainLight.GetComponent<Light>().range -= 0.2f;
  6133. lightRange[0] = GameMain.Instance.MainLight.GetComponent<Light>().spotAngle;
  6134. }
  6135. else if (Input.GetKey(KeyCode.R) && Input.GetKeyDown(KeyCode.U))
  6136. {
  6137. List<int> lightIndex;
  6138. (lightIndex = this.lightIndex)[0] = lightIndex[0] + 1;
  6139. if (this.lightIndex[0] == 4)
  6140. {
  6141. this.lightIndex[0] = 0;
  6142. }
  6143. lightColorR[0] = 1f;
  6144. lightColorG[0] = 1f;
  6145. lightColorB[0] = 1f;
  6146. lightX[0] = 40f;
  6147. lightY[0] = 180f;
  6148. lightAkarusa[0] = 0.95f;
  6149. lightKage[0] = 0.098f;
  6150. lightRange[0] = 50f;
  6151. GameMain.Instance.MainLight.Reset();
  6152. GameMain.Instance.MainLight.SetIntensity(0.95f);
  6153. GameMain.Instance.MainLight.GetComponent<Light>().spotAngle = 50f;
  6154. GameMain.Instance.MainLight.GetComponent<Light>().range = 10f;
  6155. GameMain.Instance.MainLight.gameObject.transform.position = new Vector3(0.0f, 2f, 0.0f);
  6156. if (this.lightIndex[0] == 0)
  6157. {
  6158. GameMain.Instance.MainLight.GetComponent<Light>().type = LightType.Directional;
  6159. bgObject.SetActive(true);
  6160. mainCamera.GetComponent<Camera>().backgroundColor = new Color(0.0f, 0.0f, 0.0f);
  6161. }
  6162. else if (this.lightIndex[0] == 1)
  6163. {
  6164. GameMain.Instance.MainLight.transform.eulerAngles += Vector3.right * 40f;
  6165. lightX[0] = GameMain.Instance.MainLight.transform.eulerAngles.x;
  6166. GameMain.Instance.MainLight.GetComponent<Light>().type = LightType.Spot;
  6167. if (gLight[0] == null)
  6168. {
  6169. gLight[0] = GameObject.CreatePrimitive(PrimitiveType.Cube);
  6170. gLight[0].GetComponent<Renderer>().material =
  6171. new Material(Shader.Find("Transparent/Diffuse")) { color = new Color(0.5f, 0.5f, 1f, 0.8f) };
  6172. gLight[0].layer = 8;
  6173. gLight[0].GetComponent<Renderer>().enabled = false;
  6174. gLight[0].SetActive(false);
  6175. gLight[0].transform.position = GameMain.Instance.MainLight.transform.position;
  6176. mLight[0] = gLight[0].AddComponent<MouseDrag6>();
  6177. mLight[0].obj = gLight[0];
  6178. mLight[0].maid = GameMain.Instance.MainLight.gameObject;
  6179. mLight[0].angles = GameMain.Instance.MainLight.gameObject.transform.eulerAngles;
  6180. gLight[0].transform.localScale = new Vector3(0.12f, 0.12f, 0.12f);
  6181. mLight[0].ido = 1;
  6182. mLight[0].isScale = false;
  6183. }
  6184. }
  6185. else if (this.lightIndex[0] == 2)
  6186. {
  6187. GameMain.Instance.MainLight.GetComponent<Light>().type = LightType.Point;
  6188. }
  6189. else if (this.lightIndex[0] == 3)
  6190. {
  6191. GameMain.Instance.MainLight.GetComponent<Light>().type = LightType.Directional;
  6192. mainCamera.GetComponent<Camera>().backgroundColor =
  6193. new Color(lightColorR[0], lightColorG[0], lightColorB[0]);
  6194. bgObject.SetActive(false);
  6195. }
  6196. isIdx1 = false;
  6197. isIdx2 = false;
  6198. isIdx3 = false;
  6199. isIdx4 = false;
  6200. }
  6201. }
  6202. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.Insert))
  6203. {
  6204. GameMain.Instance.MainLight.transform.eulerAngles -= Vector3.right / 2f;
  6205. }
  6206. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.Delete))
  6207. {
  6208. if (GameMain.Instance.MainLight.transform.eulerAngles.x < 85.0)
  6209. {
  6210. GameMain.Instance.MainLight.transform.eulerAngles += Vector3.right / 2f;
  6211. }
  6212. }
  6213. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.Home))
  6214. {
  6215. GameMain.Instance.MainLight.transform.eulerAngles -= Vector3.up / 1.5f;
  6216. }
  6217. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.End))
  6218. {
  6219. GameMain.Instance.MainLight.transform.eulerAngles += Vector3.up / 1.5f;
  6220. }
  6221. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.BackQuote))
  6222. {
  6223. GameMain.Instance.MainLight.Reset();
  6224. GameMain.Instance.MainLight.SetIntensity(0.95f);
  6225. }
  6226. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.PageUp))
  6227. {
  6228. GameMain.Instance.MainLight.GetComponent<Light>().intensity += 0.1f * Time.deltaTime;
  6229. }
  6230. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.PageDown))
  6231. {
  6232. GameMain.Instance.MainLight.GetComponent<Light>().intensity -= 0.1f * Time.deltaTime;
  6233. }
  6234. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.Quote))
  6235. {
  6236. if (lightIndex[0] == 1)
  6237. {
  6238. GameMain.Instance.MainLight.GetComponent<Light>().spotAngle += 0.2f;
  6239. }
  6240. else
  6241. {
  6242. GameMain.Instance.MainLight.GetComponent<Light>().range += 0.2f;
  6243. }
  6244. }
  6245. else if (Input.GetKey(KeyCode.R) && Input.GetKey(KeyCode.LeftBracket))
  6246. {
  6247. if (lightIndex[0] == 1)
  6248. {
  6249. GameMain.Instance.MainLight.GetComponent<Light>().spotAngle -= 0.2f;
  6250. }
  6251. else
  6252. {
  6253. GameMain.Instance.MainLight.GetComponent<Light>().range -= 0.2f;
  6254. }
  6255. }
  6256. else if (Input.GetKey(KeyCode.R) && Input.GetKeyDown(KeyCode.Minus))
  6257. {
  6258. List<int> lightIndex;
  6259. (lightIndex = this.lightIndex)[0] = lightIndex[0] + 1;
  6260. if (this.lightIndex[0] == 3)
  6261. {
  6262. this.lightIndex[0] = 0;
  6263. }
  6264. GameMain.Instance.MainLight.Reset();
  6265. GameMain.Instance.MainLight.SetIntensity(0.95f);
  6266. GameMain.Instance.MainLight.GetComponent<Light>().spotAngle = 50f;
  6267. GameMain.Instance.MainLight.GetComponent<Light>().range = 10f;
  6268. GameMain.Instance.MainLight.gameObject.transform.position = new Vector3(0.0f, 2f, 0.0f);
  6269. if (this.lightIndex[0] == 0)
  6270. {
  6271. GameMain.Instance.MainLight.GetComponent<Light>().type = LightType.Directional;
  6272. }
  6273. else if (this.lightIndex[0] == 1)
  6274. {
  6275. GameMain.Instance.MainLight.transform.eulerAngles += Vector3.right * 40f;
  6276. GameMain.Instance.MainLight.GetComponent<Light>().type = LightType.Spot;
  6277. }
  6278. else if (this.lightIndex[0] == 2)
  6279. {
  6280. GameMain.Instance.MainLight.GetComponent<Light>().type = LightType.Point;
  6281. }
  6282. }
  6283. for (int index = 0; index < lightList.Count; ++index)
  6284. {
  6285. if (index > 0)
  6286. {
  6287. lightList[index].GetComponent<Light>().color =
  6288. new Color(lightColorR[index], lightColorG[index], lightColorB[index]);
  6289. lightList[index].GetComponent<Light>().intensity = lightAkarusa[index];
  6290. lightList[index].GetComponent<Light>().spotAngle = lightRange[index];
  6291. lightList[index].GetComponent<Light>().range = lightRange[index] / 5f;
  6292. if (!Input.GetKey(KeyCode.X) && (!Input.GetKey(KeyCode.Z) || !getModKeyPressing(modKey.Shift)))
  6293. {
  6294. lightList[index].transform.eulerAngles = new Vector3(lightX[index], lightY[index], 18f);
  6295. }
  6296. }
  6297. else
  6298. {
  6299. GameMain.Instance.MainLight.SetIntensity(lightAkarusa[0]);
  6300. GameMain.Instance.MainLight.GetComponent<Light>().shadowStrength = lightKage[0];
  6301. if (!Input.GetKey(KeyCode.X) && (!Input.GetKey(KeyCode.Z) || !getModKeyPressing(modKey.Shift)))
  6302. {
  6303. GameMain.Instance.MainLight.SetRotation(new Vector3(lightX[0], lightY[0], 18f));
  6304. }
  6305. GameMain.Instance.MainLight.GetComponent<Light>().spotAngle = lightRange[index];
  6306. GameMain.Instance.MainLight.GetComponent<Light>().range = lightRange[index] / 5f;
  6307. if (lightIndex[index] != 3)
  6308. {
  6309. GameMain.Instance.MainLight.GetComponent<Light>().color =
  6310. new Color(lightColorR[0], lightColorG[0], lightColorB[0]);
  6311. }
  6312. else
  6313. {
  6314. mainCamera.GetComponent<Camera>().backgroundColor =
  6315. new Color(lightColorR[0], lightColorG[0], lightColorB[0]);
  6316. }
  6317. }
  6318. }
  6319. }
  6320. if (isF6S)
  6321. {
  6322. if (maidCnt < 1)
  6323. {
  6324. ++F6cnt;
  6325. }
  6326. if (F6cnt > 10)
  6327. {
  6328. maidCnt = 1;
  6329. F6cnt = 0;
  6330. }
  6331. for (int index1 = 0; index1 < maidCnt; ++index1)
  6332. {
  6333. if (maidArray[index1] && maidArray[index1].Visible && maidArray[index1].body0.isLoadedBody)
  6334. {
  6335. Maid maid = maidArray[index1];
  6336. for (int index2 = 0; index2 < maid.body0.goSlot.Count; ++index2)
  6337. {
  6338. if (maid.body0.goSlot[index2].bonehair.bodyhit != null
  6339. && maid.body0.goSlot[index2].bonehair.bodyhit.spherelist.Count == 17 && (index2 == 3 || index2 == 4))
  6340. {
  6341. Transform transform1 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 Spine", true);
  6342. Transform transform2 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 Spine0a", true);
  6343. Transform transform3 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 Spine1", true);
  6344. Transform transform4 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 Spine1a", true);
  6345. Transform transform5 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 Pelvis", true);
  6346. Transform transform6 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Hand", true);
  6347. CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L UpperArm", true);
  6348. Transform transform7 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Forearm", true);
  6349. Transform transform8 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Hand", true);
  6350. CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R UpperArm", true);
  6351. Transform transform9 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Forearm", true);
  6352. CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Foot", true);
  6353. Transform transform10 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Thigh", true);
  6354. CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Calf", true);
  6355. CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Foot", true);
  6356. Transform transform11 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Thigh", true);
  6357. CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Calf", true);
  6358. List<THitSphere> spherelist = maid.body0.goSlot[index2].bonehair.bodyhit.spherelist;
  6359. THitSphere thitSphere1 = new THitSphere();
  6360. THitSphere thitSphere2 = spherelist[0];
  6361. THitSphere thitSphere3 = new THitSphere
  6362. {
  6363. wv = thitSphere2.wv,
  6364. len = thitSphere2.len * 0.8f,
  6365. t = thitSphere2.t,
  6366. vs = thitSphere2.vs
  6367. };
  6368. thitSphere3.vs.y -= 0.04f;
  6369. thitSphere3.vs.x += 0.05f;
  6370. spherelist.Add(thitSphere3);
  6371. THitSphere thitSphere4 = new THitSphere
  6372. {
  6373. len = 0.09f,
  6374. t = transform4
  6375. };
  6376. thitSphere4.vs.z += 0.04f;
  6377. thitSphere4.vs.x -= 0.04f;
  6378. thitSphere4.vs.y -= 0.01f;
  6379. spherelist.Add(thitSphere4);
  6380. THitSphere thitSphere5 = new THitSphere
  6381. {
  6382. len = 0.09f,
  6383. t = transform4
  6384. };
  6385. thitSphere5.vs.z -= 0.04f;
  6386. thitSphere5.vs.x -= 0.04f;
  6387. thitSphere5.vs.y -= 0.01f;
  6388. spherelist.Add(thitSphere5);
  6389. THitSphere thitSphere6 = new THitSphere
  6390. {
  6391. len = 0.09f,
  6392. t = transform3
  6393. };
  6394. thitSphere6.vs.z += 0.035f;
  6395. spherelist.Add(thitSphere6);
  6396. THitSphere thitSphere7 = new THitSphere
  6397. {
  6398. len = 0.09f,
  6399. t = transform3
  6400. };
  6401. thitSphere7.vs.z -= 0.035f;
  6402. spherelist.Add(thitSphere7);
  6403. THitSphere thitSphere8 = new THitSphere
  6404. {
  6405. len = 0.08f,
  6406. t = transform2
  6407. };
  6408. thitSphere8.vs.z += 0.035f;
  6409. spherelist.Add(thitSphere8);
  6410. THitSphere thitSphere9 = new THitSphere
  6411. {
  6412. len = 0.08f,
  6413. t = transform2
  6414. };
  6415. thitSphere9.vs.z -= 0.035f;
  6416. spherelist.Add(thitSphere9);
  6417. THitSphere thitSphere10 = new THitSphere
  6418. {
  6419. len = 0.09f,
  6420. t = transform1
  6421. };
  6422. thitSphere10.vs.z += 0.04f;
  6423. thitSphere10.vs.y -= 0.02f;
  6424. spherelist.Add(thitSphere10);
  6425. THitSphere thitSphere11 = new THitSphere
  6426. {
  6427. len = 0.09f,
  6428. t = transform1
  6429. };
  6430. thitSphere11.vs.z -= 0.04f;
  6431. thitSphere11.vs.y -= 0.02f;
  6432. spherelist.Add(thitSphere11);
  6433. THitSphere thitSphere12 = new THitSphere
  6434. {
  6435. len = 0.11f,
  6436. t = transform5
  6437. };
  6438. thitSphere12.vs.z += 0.05f;
  6439. thitSphere12.vs.y -= 0.03f;
  6440. spherelist.Add(thitSphere12);
  6441. THitSphere thitSphere13 = new THitSphere
  6442. {
  6443. len = 0.11f,
  6444. t = transform5
  6445. };
  6446. thitSphere13.vs.z -= 0.05f;
  6447. thitSphere13.vs.y -= 0.03f;
  6448. spherelist.Add(thitSphere13);
  6449. THitSphere thitSphere14 = new THitSphere
  6450. {
  6451. len = 0.11f,
  6452. t = transform10
  6453. };
  6454. thitSphere14.vs.x -= 0.03f;
  6455. spherelist.Add(thitSphere14);
  6456. THitSphere thitSphere15 = new THitSphere
  6457. {
  6458. len = 0.11f,
  6459. t = transform11
  6460. };
  6461. thitSphere15.vs.x -= 0.03f;
  6462. spherelist.Add(thitSphere15);
  6463. spherelist.Add(new THitSphere() { len = 0.05f, t = transform6 });
  6464. spherelist.Add(new THitSphere() { len = 0.05f, t = transform8 });
  6465. THitSphere thitSphere16 = new THitSphere
  6466. {
  6467. len = 0.05f,
  6468. t = transform7
  6469. };
  6470. thitSphere16.vs.x -= 0.04f;
  6471. spherelist.Add(thitSphere16);
  6472. THitSphere thitSphere17 = new THitSphere
  6473. {
  6474. len = 0.05f,
  6475. t = transform9
  6476. };
  6477. thitSphere17.vs.x -= 0.04f;
  6478. spherelist.Add(thitSphere17);
  6479. THitSphere thitSphere18 = new THitSphere
  6480. {
  6481. len = 0.05f,
  6482. t = transform7
  6483. };
  6484. thitSphere18.vs.x -= 0.08f;
  6485. spherelist.Add(thitSphere18);
  6486. THitSphere thitSphere19 = new THitSphere
  6487. {
  6488. len = 0.05f,
  6489. t = transform9
  6490. };
  6491. thitSphere19.vs.x -= 0.08f;
  6492. spherelist.Add(thitSphere19);
  6493. THitSphere thitSphere20 = new THitSphere
  6494. {
  6495. len = 0.05f,
  6496. t = transform7
  6497. };
  6498. thitSphere20.vs.x -= 0.12f;
  6499. spherelist.Add(thitSphere20);
  6500. THitSphere thitSphere21 = new THitSphere
  6501. {
  6502. len = 0.05f,
  6503. t = transform9
  6504. };
  6505. thitSphere21.vs.x -= 0.12f;
  6506. spherelist.Add(thitSphere21);
  6507. THitSphere thitSphere22 = new THitSphere
  6508. {
  6509. len = 0.05f,
  6510. t = transform7
  6511. };
  6512. thitSphere22.vs.x -= 0.16f;
  6513. spherelist.Add(thitSphere22);
  6514. THitSphere thitSphere23 = new THitSphere
  6515. {
  6516. len = 0.05f,
  6517. t = transform9
  6518. };
  6519. thitSphere23.vs.x -= 0.16f;
  6520. spherelist.Add(thitSphere23);
  6521. }
  6522. }
  6523. }
  6524. }
  6525. }
  6526. }
  6527. }
  6528. public string SerializeScene()
  6529. {
  6530. string str1 = "";
  6531. string str2 = "";
  6532. DateTime now = DateTime.Now;
  6533. string str3 = now.Year.ToString() + "/" + now.Month.ToString("00") + "/" + now.Day.ToString("00") + " "
  6534. + now.Hour.ToString("00") + ":" + now.Minute.ToString("00");
  6535. if (!quickSaveFlag)
  6536. {
  6537. date[0] = str3;
  6538. ninzu[0] = maidCnt.ToString() + "人";
  6539. }
  6540. string[] strArray1 = new string[7]
  6541. {
  6542. str2 + str3 + "," + maidCnt + "," + bgArray[bgIndex].Replace("_", " ") + ",",
  6543. bg.localEulerAngles.x.ToString("0.###"), ",", null, null, null, null
  6544. };
  6545. string[] strArray2 = strArray1;
  6546. int index1 = 3;
  6547. float num = bg.localEulerAngles.y;
  6548. string str4 = num.ToString("0.###");
  6549. strArray2[index1] = str4;
  6550. strArray1[4] = ",";
  6551. string[] strArray3 = strArray1;
  6552. int index2 = 5;
  6553. num = bg.localEulerAngles.z;
  6554. string str5 = num.ToString("0.###");
  6555. strArray3[index2] = str5;
  6556. strArray1[6] = ",";
  6557. string str6 = string.Concat(strArray1);
  6558. string[] strArray4 = new string[7];
  6559. strArray4[0] = str6;
  6560. string[] strArray5 = strArray4;
  6561. int index3 = 1;
  6562. num = bg.position.x;
  6563. string str7 = num.ToString("0.###");
  6564. strArray5[index3] = str7;
  6565. strArray4[2] = ",";
  6566. string[] strArray6 = strArray4;
  6567. int index4 = 3;
  6568. num = bg.position.y;
  6569. string str8 = num.ToString("0.###");
  6570. strArray6[index4] = str8;
  6571. strArray4[4] = ",";
  6572. string[] strArray7 = strArray4;
  6573. int index5 = 5;
  6574. num = bg.position.z;
  6575. string str9 = num.ToString("0.###");
  6576. strArray7[index5] = str9;
  6577. strArray4[6] = ",";
  6578. string str10 = string.Concat(strArray4);
  6579. string[] strArray8 = new string[7];
  6580. strArray8[0] = str10;
  6581. string[] strArray9 = strArray8;
  6582. int index6 = 1;
  6583. num = bg.localScale.x;
  6584. string str11 = num.ToString("0.###");
  6585. strArray9[index6] = str11;
  6586. strArray8[2] = ",";
  6587. string[] strArray10 = strArray8;
  6588. int index7 = 3;
  6589. num = bg.localScale.y;
  6590. string str12 = num.ToString("0.###");
  6591. strArray10[index7] = str12;
  6592. strArray8[4] = ",";
  6593. string[] strArray11 = strArray8;
  6594. int index8 = 5;
  6595. num = bg.localScale.z;
  6596. string str13 = num.ToString("0.###");
  6597. strArray11[index8] = str13;
  6598. strArray8[6] = ",";
  6599. string str14 = string.Concat(strArray8) + softG.x.ToString("0.###") + "," + softG.y.ToString("0.###") + ","
  6600. + softG.z.ToString("0.###") + "," + bgmIndex + "," + effectIndex + ","
  6601. + lightIndex[0] + "," + lightColorR[0] + "," + lightColorG[0] + ","
  6602. + lightColorB[0] + ",";
  6603. string[] strArray12 = new string[7];
  6604. strArray12[0] = str14;
  6605. string[] strArray13 = strArray12;
  6606. int index9 = 1;
  6607. num = GameMain.Instance.MainLight.transform.eulerAngles.x;
  6608. string str15 = num.ToString("0.###");
  6609. strArray13[index9] = str15;
  6610. strArray12[2] = ",";
  6611. string[] strArray14 = strArray12;
  6612. int index10 = 3;
  6613. num = GameMain.Instance.MainLight.transform.eulerAngles.y;
  6614. string str16 = num.ToString("0.###");
  6615. strArray14[index10] = str16;
  6616. strArray12[4] = ",";
  6617. string[] strArray15 = strArray12;
  6618. int index11 = 5;
  6619. num = GameMain.Instance.MainLight.transform.eulerAngles.z;
  6620. string str17 = num.ToString("0.###");
  6621. strArray15[index11] = str17;
  6622. strArray12[6] = ",";
  6623. string str18 = string.Concat(strArray12) + GameMain.Instance.MainLight.GetComponent<Light>().intensity + ","
  6624. + GameMain.Instance.MainLight.GetComponent<Light>().spotAngle + ","
  6625. + GameMain.Instance.MainLight.GetComponent<Light>().range + ","
  6626. + mainCamera.GetTargetPos().x + "," + mainCamera.GetTargetPos().y + ","
  6627. + mainCamera.GetTargetPos().z + "," + mainCamera.GetDistance() + ",";
  6628. string[] strArray16 = new string[7];
  6629. strArray16[0] = str18;
  6630. string[] strArray17 = strArray16;
  6631. int index12 = 1;
  6632. num = mainCamera.transform.eulerAngles.x;
  6633. string str19 = num.ToString("0.###");
  6634. strArray17[index12] = str19;
  6635. strArray16[2] = ",";
  6636. string[] strArray18 = strArray16;
  6637. int index13 = 3;
  6638. num = mainCamera.transform.eulerAngles.y;
  6639. string str20 = num.ToString("0.###");
  6640. strArray18[index13] = str20;
  6641. strArray16[4] = ",";
  6642. string[] strArray19 = strArray16;
  6643. int index14 = 5;
  6644. num = mainCamera.transform.eulerAngles.z;
  6645. string str21 = num.ToString("0.###");
  6646. strArray19[index14] = str21;
  6647. strArray16[6] = ",";
  6648. string str22 = string.Concat(strArray16);
  6649. inName = inName.Replace("_", " ").Replace(",", " ");
  6650. inText = inText.Replace("_", " ").Replace(",", " ");
  6651. string str23;
  6652. if (isMessage)
  6653. {
  6654. str23 = str22 + "1," + inName + "," + inText.Replace("\n", "&kaigyo");
  6655. }
  6656. else
  6657. {
  6658. str23 = str22 + "0,,";
  6659. }
  6660. if (doguObject.Count > 0)
  6661. {
  6662. string str24 = str23 + "," + doguArray[doguIndex[doguSelectIndex]].Replace("_", " ") + ",";
  6663. string[] strArray20 = new string[7];
  6664. strArray20[0] = str24;
  6665. string[] strArray21 = strArray20;
  6666. int index15 = 1;
  6667. num = doguObject[doguSelectIndex].transform.localEulerAngles.x;
  6668. string str25 = num.ToString("0.###");
  6669. strArray21[index15] = str25;
  6670. strArray20[2] = ",";
  6671. string[] strArray22 = strArray20;
  6672. int index16 = 3;
  6673. num = doguObject[doguSelectIndex].transform.localEulerAngles.y;
  6674. string str26 = num.ToString("0.###");
  6675. strArray22[index16] = str26;
  6676. strArray20[4] = ",";
  6677. string[] strArray23 = strArray20;
  6678. int index17 = 5;
  6679. num = doguObject[doguSelectIndex].transform.localEulerAngles.z;
  6680. string str27 = num.ToString("0.###");
  6681. strArray23[index17] = str27;
  6682. strArray20[6] = ",";
  6683. string str28 = string.Concat(strArray20);
  6684. string[] strArray24 = new string[7];
  6685. strArray24[0] = str28;
  6686. string[] strArray25 = strArray24;
  6687. int index18 = 1;
  6688. num = doguObject[doguSelectIndex].transform.position.x;
  6689. string str29 = num.ToString("0.###");
  6690. strArray25[index18] = str29;
  6691. strArray24[2] = ",";
  6692. string[] strArray26 = strArray24;
  6693. int index19 = 3;
  6694. num = doguObject[doguSelectIndex].transform.position.y;
  6695. string str30 = num.ToString("0.###");
  6696. strArray26[index19] = str30;
  6697. strArray24[4] = ",";
  6698. string[] strArray27 = strArray24;
  6699. int index20 = 5;
  6700. num = doguObject[doguSelectIndex].transform.position.z;
  6701. string str31 = num.ToString("0.###");
  6702. strArray27[index20] = str31;
  6703. strArray24[6] = ",";
  6704. string str32 = string.Concat(strArray24);
  6705. string[] strArray28 = new string[6];
  6706. strArray28[0] = str32;
  6707. string[] strArray29 = strArray28;
  6708. int index21 = 1;
  6709. num = doguObject[doguSelectIndex].transform.localScale.x;
  6710. string str33 = num.ToString("0.###");
  6711. strArray29[index21] = str33;
  6712. strArray28[2] = ",";
  6713. string[] strArray30 = strArray28;
  6714. int index22 = 3;
  6715. num = doguObject[doguSelectIndex].transform.localScale.y;
  6716. string str34 = num.ToString("0.###");
  6717. strArray30[index22] = str34;
  6718. strArray28[4] = ",";
  6719. string[] strArray31 = strArray28;
  6720. int index23 = 5;
  6721. num = doguObject[doguSelectIndex].transform.localScale.z;
  6722. string str35 = num.ToString("0.###");
  6723. strArray31[index23] = str35;
  6724. str23 = string.Concat(strArray28);
  6725. }
  6726. string str36 = str23 + "_";
  6727. for (int i = 0; i < maidCnt; ++i)
  6728. {
  6729. Maid maid = maidArray[i];
  6730. string str24 = "";
  6731. string str25 = "";
  6732. SetIK(maid, i);
  6733. for (int index15 = 0; index15 < 20; ++index15)
  6734. {
  6735. string str26 = str24;
  6736. string[] strArray20 = new string[7];
  6737. strArray20[0] = str26;
  6738. string[] strArray21 = strArray20;
  6739. int index16 = 1;
  6740. num = Finger[i, index15].localEulerAngles.x;
  6741. string str27 = num.ToString("0.###");
  6742. strArray21[index16] = str27;
  6743. strArray20[2] = ",";
  6744. string[] strArray22 = strArray20;
  6745. int index17 = 3;
  6746. num = Finger[i, index15].localEulerAngles.y;
  6747. string str28 = num.ToString("0.###");
  6748. strArray22[index17] = str28;
  6749. strArray20[4] = ",";
  6750. string[] strArray23 = strArray20;
  6751. int index18 = 5;
  6752. num = Finger[i, index15].localEulerAngles.z;
  6753. string str29 = num.ToString("0.###");
  6754. strArray23[index18] = str29;
  6755. strArray20[6] = ":";
  6756. str24 = string.Concat(strArray20);
  6757. }
  6758. for (int index15 = 20; index15 < 40; ++index15)
  6759. {
  6760. string str26 = str25;
  6761. string[] strArray20 = new string[7];
  6762. strArray20[0] = str26;
  6763. string[] strArray21 = strArray20;
  6764. int index16 = 1;
  6765. num = Finger[i, index15].localEulerAngles.x;
  6766. string str27 = num.ToString("0.###");
  6767. strArray21[index16] = str27;
  6768. strArray20[2] = ",";
  6769. string[] strArray22 = strArray20;
  6770. int index17 = 3;
  6771. num = Finger[i, index15].localEulerAngles.y;
  6772. string str28 = num.ToString("0.###");
  6773. strArray22[index17] = str28;
  6774. strArray20[4] = ",";
  6775. string[] strArray23 = strArray20;
  6776. int index18 = 5;
  6777. num = Finger[i, index15].localEulerAngles.z;
  6778. string str29 = num.ToString("0.###");
  6779. strArray23[index18] = str29;
  6780. strArray20[6] = ":";
  6781. str25 = string.Concat(strArray20);
  6782. }
  6783. string str30 = "";
  6784. string[] strArray24 = new string[7];
  6785. strArray24[0] = str30;
  6786. string[] strArray25 = strArray24;
  6787. int index19 = 1;
  6788. num = Spine.eulerAngles.x;
  6789. string str31 = num.ToString("0.###");
  6790. strArray25[index19] = str31;
  6791. strArray24[2] = ",";
  6792. string[] strArray26 = strArray24;
  6793. int index20 = 3;
  6794. num = Spine.eulerAngles.y;
  6795. string str32 = num.ToString("0.###");
  6796. strArray26[index20] = str32;
  6797. strArray24[4] = ",";
  6798. string[] strArray27 = strArray24;
  6799. int index21 = 5;
  6800. num = Spine.eulerAngles.z;
  6801. string str33 = num.ToString("0.###");
  6802. strArray27[index21] = str33;
  6803. strArray24[6] = ":";
  6804. string str34 = string.Concat(strArray24);
  6805. string[] strArray28 = new string[7];
  6806. strArray28[0] = str34;
  6807. string[] strArray29 = strArray28;
  6808. int index22 = 1;
  6809. num = Spine0a.eulerAngles.x;
  6810. string str35 = num.ToString("0.###");
  6811. strArray29[index22] = str35;
  6812. strArray28[2] = ",";
  6813. string[] strArray30 = strArray28;
  6814. int index23 = 3;
  6815. num = Spine0a.eulerAngles.y;
  6816. string str37 = num.ToString("0.###");
  6817. strArray30[index23] = str37;
  6818. strArray28[4] = ",";
  6819. string[] strArray31 = strArray28;
  6820. int index24 = 5;
  6821. num = Spine0a.eulerAngles.z;
  6822. string str38 = num.ToString("0.###");
  6823. strArray31[index24] = str38;
  6824. strArray28[6] = ":";
  6825. string str39 = string.Concat(strArray28);
  6826. string[] strArray32 = new string[7];
  6827. strArray32[0] = str39;
  6828. string[] strArray33 = strArray32;
  6829. int index25 = 1;
  6830. num = Spine1.eulerAngles.x;
  6831. string str40 = num.ToString("0.###");
  6832. strArray33[index25] = str40;
  6833. strArray32[2] = ",";
  6834. string[] strArray34 = strArray32;
  6835. int index26 = 3;
  6836. num = Spine1.eulerAngles.y;
  6837. string str41 = num.ToString("0.###");
  6838. strArray34[index26] = str41;
  6839. strArray32[4] = ",";
  6840. string[] strArray35 = strArray32;
  6841. int index27 = 5;
  6842. num = Spine1.eulerAngles.z;
  6843. string str42 = num.ToString("0.###");
  6844. strArray35[index27] = str42;
  6845. strArray32[6] = ":";
  6846. string str43 = string.Concat(strArray32);
  6847. string[] strArray36 = new string[7];
  6848. strArray36[0] = str43;
  6849. string[] strArray37 = strArray36;
  6850. int index28 = 1;
  6851. num = Spine1a.eulerAngles.x;
  6852. string str44 = num.ToString("0.###");
  6853. strArray37[index28] = str44;
  6854. strArray36[2] = ",";
  6855. string[] strArray38 = strArray36;
  6856. int index29 = 3;
  6857. num = Spine1a.eulerAngles.y;
  6858. string str45 = num.ToString("0.###");
  6859. strArray38[index29] = str45;
  6860. strArray36[4] = ",";
  6861. string[] strArray39 = strArray36;
  6862. int index30 = 5;
  6863. num = Spine1a.eulerAngles.z;
  6864. string str46 = num.ToString("0.###");
  6865. strArray39[index30] = str46;
  6866. strArray36[6] = ":";
  6867. string str47 = string.Concat(strArray36);
  6868. string[] strArray40 = new string[7];
  6869. strArray40[0] = str47;
  6870. string[] strArray41 = strArray40;
  6871. int index31 = 1;
  6872. num = Pelvis.eulerAngles.x;
  6873. string str48 = num.ToString("0.###");
  6874. strArray41[index31] = str48;
  6875. strArray40[2] = ",";
  6876. string[] strArray42 = strArray40;
  6877. int index32 = 3;
  6878. num = Pelvis.eulerAngles.y;
  6879. string str49 = num.ToString("0.###");
  6880. strArray42[index32] = str49;
  6881. strArray40[4] = ",";
  6882. string[] strArray43 = strArray40;
  6883. int index33 = 5;
  6884. num = Pelvis.eulerAngles.z;
  6885. string str50 = num.ToString("0.###");
  6886. strArray43[index33] = str50;
  6887. strArray40[6] = ":";
  6888. string str51 = string.Concat(strArray40);
  6889. string[] strArray44 = new string[7];
  6890. strArray44[0] = str51;
  6891. string[] strArray45 = strArray44;
  6892. int index34 = 1;
  6893. num = HandL1[i].localEulerAngles.x;
  6894. string str52 = num.ToString("0.###");
  6895. strArray45[index34] = str52;
  6896. strArray44[2] = ",";
  6897. string[] strArray46 = strArray44;
  6898. int index35 = 3;
  6899. num = HandL1[i].localEulerAngles.y;
  6900. string str53 = num.ToString("0.###");
  6901. strArray46[index35] = str53;
  6902. strArray44[4] = ",";
  6903. string[] strArray47 = strArray44;
  6904. int index36 = 5;
  6905. num = HandL1[i].localEulerAngles.z;
  6906. string str54 = num.ToString("0.###");
  6907. strArray47[index36] = str54;
  6908. strArray44[6] = ":";
  6909. string str55 = string.Concat(strArray44);
  6910. string[] strArray48 = new string[7];
  6911. strArray48[0] = str55;
  6912. string[] strArray49 = strArray48;
  6913. int index37 = 1;
  6914. num = UpperArmL1[i].eulerAngles.x;
  6915. string str56 = num.ToString("0.###");
  6916. strArray49[index37] = str56;
  6917. strArray48[2] = ",";
  6918. string[] strArray50 = strArray48;
  6919. int index38 = 3;
  6920. num = UpperArmL1[i].eulerAngles.y;
  6921. string str57 = num.ToString("0.###");
  6922. strArray50[index38] = str57;
  6923. strArray48[4] = ",";
  6924. string[] strArray51 = strArray48;
  6925. int index39 = 5;
  6926. num = UpperArmL1[i].eulerAngles.z;
  6927. string str58 = num.ToString("0.###");
  6928. strArray51[index39] = str58;
  6929. strArray48[6] = ":";
  6930. string str59 = string.Concat(strArray48);
  6931. string[] strArray52 = new string[7];
  6932. strArray52[0] = str59;
  6933. string[] strArray53 = strArray52;
  6934. int index40 = 1;
  6935. num = ForearmL1[i].eulerAngles.x;
  6936. string str60 = num.ToString("0.###");
  6937. strArray53[index40] = str60;
  6938. strArray52[2] = ",";
  6939. string[] strArray54 = strArray52;
  6940. int index41 = 3;
  6941. num = ForearmL1[i].eulerAngles.y;
  6942. string str61 = num.ToString("0.###");
  6943. strArray54[index41] = str61;
  6944. strArray52[4] = ",";
  6945. string[] strArray55 = strArray52;
  6946. int index42 = 5;
  6947. num = ForearmL1[i].eulerAngles.z;
  6948. string str62 = num.ToString("0.###");
  6949. strArray55[index42] = str62;
  6950. strArray52[6] = ":";
  6951. string str63 = string.Concat(strArray52);
  6952. string[] strArray56 = new string[7];
  6953. strArray56[0] = str63;
  6954. string[] strArray57 = strArray56;
  6955. int index43 = 1;
  6956. num = HandR1[i].localEulerAngles.x;
  6957. string str64 = num.ToString("0.###");
  6958. strArray57[index43] = str64;
  6959. strArray56[2] = ",";
  6960. string[] strArray58 = strArray56;
  6961. int index44 = 3;
  6962. num = HandR1[i].localEulerAngles.y;
  6963. string str65 = num.ToString("0.###");
  6964. strArray58[index44] = str65;
  6965. strArray56[4] = ",";
  6966. string[] strArray59 = strArray56;
  6967. int index45 = 5;
  6968. num = HandR1[i].localEulerAngles.z;
  6969. string str66 = num.ToString("0.###");
  6970. strArray59[index45] = str66;
  6971. strArray56[6] = ":";
  6972. string str67 = string.Concat(strArray56);
  6973. string[] strArray60 = new string[7];
  6974. strArray60[0] = str67;
  6975. string[] strArray61 = strArray60;
  6976. int index46 = 1;
  6977. num = UpperArmR1[i].eulerAngles.x;
  6978. string str68 = num.ToString("0.###");
  6979. strArray61[index46] = str68;
  6980. strArray60[2] = ",";
  6981. string[] strArray62 = strArray60;
  6982. int index47 = 3;
  6983. num = UpperArmR1[i].eulerAngles.y;
  6984. string str69 = num.ToString("0.###");
  6985. strArray62[index47] = str69;
  6986. strArray60[4] = ",";
  6987. string[] strArray63 = strArray60;
  6988. int index48 = 5;
  6989. num = UpperArmR1[i].eulerAngles.z;
  6990. string str70 = num.ToString("0.###");
  6991. strArray63[index48] = str70;
  6992. strArray60[6] = ":";
  6993. string str71 = string.Concat(strArray60);
  6994. string[] strArray64 = new string[7];
  6995. strArray64[0] = str71;
  6996. string[] strArray65 = strArray64;
  6997. int index49 = 1;
  6998. num = ForearmR1[i].eulerAngles.x;
  6999. string str72 = num.ToString("0.###");
  7000. strArray65[index49] = str72;
  7001. strArray64[2] = ",";
  7002. string[] strArray66 = strArray64;
  7003. int index50 = 3;
  7004. num = ForearmR1[i].eulerAngles.y;
  7005. string str73 = num.ToString("0.###");
  7006. strArray66[index50] = str73;
  7007. strArray64[4] = ",";
  7008. string[] strArray67 = strArray64;
  7009. int index51 = 5;
  7010. num = ForearmR1[i].eulerAngles.z;
  7011. string str74 = num.ToString("0.###");
  7012. strArray67[index51] = str74;
  7013. strArray64[6] = ":";
  7014. string str75 = string.Concat(strArray64);
  7015. string[] strArray68 = new string[7];
  7016. strArray68[0] = str75;
  7017. string[] strArray69 = strArray68;
  7018. int index52 = 1;
  7019. num = HandL2[i].localEulerAngles.x;
  7020. string str76 = num.ToString("0.###");
  7021. strArray69[index52] = str76;
  7022. strArray68[2] = ",";
  7023. string[] strArray70 = strArray68;
  7024. int index53 = 3;
  7025. num = HandL2[i].localEulerAngles.y;
  7026. string str77 = num.ToString("0.###");
  7027. strArray70[index53] = str77;
  7028. strArray68[4] = ",";
  7029. string[] strArray71 = strArray68;
  7030. int index54 = 5;
  7031. num = HandL2[i].localEulerAngles.z;
  7032. string str78 = num.ToString("0.###");
  7033. strArray71[index54] = str78;
  7034. strArray68[6] = ":";
  7035. string str79 = string.Concat(strArray68);
  7036. string[] strArray72 = new string[7];
  7037. strArray72[0] = str79;
  7038. string[] strArray73 = strArray72;
  7039. int index55 = 1;
  7040. num = UpperArmL2[i].eulerAngles.x;
  7041. string str80 = num.ToString("0.###");
  7042. strArray73[index55] = str80;
  7043. strArray72[2] = ",";
  7044. string[] strArray74 = strArray72;
  7045. int index56 = 3;
  7046. num = UpperArmL2[i].eulerAngles.y;
  7047. string str81 = num.ToString("0.###");
  7048. strArray74[index56] = str81;
  7049. strArray72[4] = ",";
  7050. string[] strArray75 = strArray72;
  7051. int index57 = 5;
  7052. num = UpperArmL2[i].eulerAngles.z;
  7053. string str82 = num.ToString("0.###");
  7054. strArray75[index57] = str82;
  7055. strArray72[6] = ":";
  7056. string str83 = string.Concat(strArray72);
  7057. string[] strArray76 = new string[7];
  7058. strArray76[0] = str83;
  7059. string[] strArray77 = strArray76;
  7060. int index58 = 1;
  7061. num = ForearmL2[i].eulerAngles.x;
  7062. string str84 = num.ToString("0.###");
  7063. strArray77[index58] = str84;
  7064. strArray76[2] = ",";
  7065. string[] strArray78 = strArray76;
  7066. int index59 = 3;
  7067. num = ForearmL2[i].eulerAngles.y;
  7068. string str85 = num.ToString("0.###");
  7069. strArray78[index59] = str85;
  7070. strArray76[4] = ",";
  7071. string[] strArray79 = strArray76;
  7072. int index60 = 5;
  7073. num = ForearmL2[i].eulerAngles.z;
  7074. string str86 = num.ToString("0.###");
  7075. strArray79[index60] = str86;
  7076. strArray76[6] = ":";
  7077. string str87 = string.Concat(strArray76);
  7078. string[] strArray80 = new string[7];
  7079. strArray80[0] = str87;
  7080. string[] strArray81 = strArray80;
  7081. int index61 = 1;
  7082. num = HandR2[i].localEulerAngles.x;
  7083. string str88 = num.ToString("0.###");
  7084. strArray81[index61] = str88;
  7085. strArray80[2] = ",";
  7086. string[] strArray82 = strArray80;
  7087. int index62 = 3;
  7088. num = HandR2[i].localEulerAngles.y;
  7089. string str89 = num.ToString("0.###");
  7090. strArray82[index62] = str89;
  7091. strArray80[4] = ",";
  7092. string[] strArray83 = strArray80;
  7093. int index63 = 5;
  7094. num = HandR2[i].localEulerAngles.z;
  7095. string str90 = num.ToString("0.###");
  7096. strArray83[index63] = str90;
  7097. strArray80[6] = ":";
  7098. string str91 = string.Concat(strArray80);
  7099. string[] strArray84 = new string[7];
  7100. strArray84[0] = str91;
  7101. string[] strArray85 = strArray84;
  7102. int index64 = 1;
  7103. num = UpperArmR2[i].eulerAngles.x;
  7104. string str92 = num.ToString("0.###");
  7105. strArray85[index64] = str92;
  7106. strArray84[2] = ",";
  7107. string[] strArray86 = strArray84;
  7108. int index65 = 3;
  7109. num = UpperArmR2[i].eulerAngles.y;
  7110. string str93 = num.ToString("0.###");
  7111. strArray86[index65] = str93;
  7112. strArray84[4] = ",";
  7113. string[] strArray87 = strArray84;
  7114. int index66 = 5;
  7115. num = UpperArmR2[i].eulerAngles.z;
  7116. string str94 = num.ToString("0.###");
  7117. strArray87[index66] = str94;
  7118. strArray84[6] = ":";
  7119. string str95 = string.Concat(strArray84);
  7120. string[] strArray88 = new string[7];
  7121. strArray88[0] = str95;
  7122. string[] strArray89 = strArray88;
  7123. int index67 = 1;
  7124. num = ForearmR2[i].eulerAngles.x;
  7125. string str96 = num.ToString("0.###");
  7126. strArray89[index67] = str96;
  7127. strArray88[2] = ",";
  7128. string[] strArray90 = strArray88;
  7129. int index68 = 3;
  7130. num = ForearmR2[i].eulerAngles.y;
  7131. string str97 = num.ToString("0.###");
  7132. strArray90[index68] = str97;
  7133. strArray88[4] = ",";
  7134. string[] strArray91 = strArray88;
  7135. int index69 = 5;
  7136. num = ForearmR2[i].eulerAngles.z;
  7137. string str98 = num.ToString("0.###");
  7138. strArray91[index69] = str98;
  7139. strArray88[6] = ":";
  7140. string str99 = string.Concat(strArray88);
  7141. string[] strArray92 = new string[7];
  7142. strArray92[0] = str99;
  7143. string[] strArray93 = strArray92;
  7144. int index70 = 1;
  7145. num = Head.eulerAngles.x;
  7146. string str100 = num.ToString("0.###");
  7147. strArray93[index70] = str100;
  7148. strArray92[2] = ",";
  7149. string[] strArray94 = strArray92;
  7150. int index71 = 3;
  7151. num = Head.eulerAngles.y;
  7152. string str101 = num.ToString("0.###");
  7153. strArray94[index71] = str101;
  7154. strArray92[4] = ",";
  7155. string[] strArray95 = strArray92;
  7156. int index72 = 5;
  7157. num = Head.eulerAngles.z;
  7158. string str102 = num.ToString("0.###");
  7159. strArray95[index72] = str102;
  7160. strArray92[6] = ":";
  7161. string str103 = string.Concat(strArray92);
  7162. string[] strArray96 = new string[7];
  7163. strArray96[0] = str103;
  7164. string[] strArray97 = strArray96;
  7165. int index73 = 1;
  7166. num = maid.transform.localEulerAngles.x;
  7167. string str104 = num.ToString("0.###");
  7168. strArray97[index73] = str104;
  7169. strArray96[2] = ",";
  7170. string[] strArray98 = strArray96;
  7171. int index74 = 3;
  7172. num = maid.transform.localEulerAngles.y;
  7173. string str105 = num.ToString("0.###");
  7174. strArray98[index74] = str105;
  7175. strArray96[4] = ",";
  7176. string[] strArray99 = strArray96;
  7177. int index75 = 5;
  7178. num = maid.transform.localEulerAngles.z;
  7179. string str106 = num.ToString("0.###");
  7180. strArray99[index75] = str106;
  7181. strArray96[6] = ":";
  7182. string str107 = string.Concat(strArray96);
  7183. string[] strArray100 = new string[7];
  7184. strArray100[0] = str107;
  7185. string[] strArray101 = strArray100;
  7186. int index76 = 1;
  7187. num = maid.transform.position.x;
  7188. string str108 = num.ToString("0.###");
  7189. strArray101[index76] = str108;
  7190. strArray100[2] = ",";
  7191. string[] strArray102 = strArray100;
  7192. int index77 = 3;
  7193. num = maid.transform.position.y;
  7194. string str109 = num.ToString("0.###");
  7195. strArray102[index77] = str109;
  7196. strArray100[4] = ",";
  7197. string[] strArray103 = strArray100;
  7198. int index78 = 5;
  7199. num = maid.transform.position.z;
  7200. string str110 = num.ToString("0.###");
  7201. strArray103[index78] = str110;
  7202. strArray100[6] = ":";
  7203. string str111 = string.Concat(strArray100);
  7204. string[] strArray104 = new string[7];
  7205. strArray104[0] = str111;
  7206. string[] strArray105 = strArray104;
  7207. int index79 = 1;
  7208. num = maid.transform.localScale.x;
  7209. string str112 = num.ToString("0.###");
  7210. strArray105[index79] = str112;
  7211. strArray104[2] = ",";
  7212. string[] strArray106 = strArray104;
  7213. int index80 = 3;
  7214. num = maid.transform.localScale.y;
  7215. string str113 = num.ToString("0.###");
  7216. strArray106[index80] = str113;
  7217. strArray104[4] = ",";
  7218. string[] strArray107 = strArray104;
  7219. int index81 = 5;
  7220. num = maid.transform.localScale.z;
  7221. string str114 = num.ToString("0.###");
  7222. strArray107[index81] = str114;
  7223. strArray104[6] = ":";
  7224. string str115 = string.Concat(strArray104);
  7225. string str116;
  7226. if (poseArray[poseIndex[i]].Contains("MultipleMaidsPose"))
  7227. {
  7228. string str26 = poseArray[poseIndex[i]].Replace(" ", "").Split('/')[0];
  7229. str116 = str115 + "MultipleMaidsPose" + str26.Replace("_", " ").Replace(",", "|") + ":";
  7230. }
  7231. else
  7232. {
  7233. str116 = str115 + poseArray[poseIndex[i]].Replace("_", " ").Replace(",", "|") + ":";
  7234. }
  7235. string str117 = str116 + faceIndex[i] + ":";
  7236. TMorph morph = maid.body0.Face.morph;
  7237. float[] fieldValue1 = GetFieldValue<TMorph, float[]>(morph, "BlendValues");
  7238. float[] fieldValue2 = GetFieldValue<TMorph, float[]>(morph, "BlendValuesBackup");
  7239. string str118 = str117 + fieldValue2[(int)morph.hash["eyeclose"]] + ","
  7240. + fieldValue2[(int)morph.hash["eyeclose2"]] + ","
  7241. + fieldValue2[(int)morph.hash["eyeclose3"]] + ","
  7242. + fieldValue2[(int)morph.hash["eyeclose6"]] + ","
  7243. + fieldValue1[(int)morph.hash["hitomih"]] + ","
  7244. + fieldValue1[(int)morph.hash["hitomis"]] + ","
  7245. + fieldValue1[(int)morph.hash["mayuha"]] + ","
  7246. + fieldValue1[(int)morph.hash["mayuup"]] + ","
  7247. + fieldValue1[(int)morph.hash["mayuv"]] + ","
  7248. + fieldValue1[(int)morph.hash["mayuvhalf"]] + ","
  7249. + fieldValue1[(int)morph.hash["moutha"]] + ","
  7250. + fieldValue1[(int)morph.hash["mouths"]] + ","
  7251. + fieldValue1[(int)morph.hash["mouthdw"]] + ","
  7252. + fieldValue1[(int)morph.hash["mouthup"]] + ","
  7253. + fieldValue1[(int)morph.hash["tangout"]] + ","
  7254. + fieldValue1[(int)morph.hash["tangup"]] + ","
  7255. + fieldValue1[(int)morph.hash["eyebig"]] + ","
  7256. + fieldValue2[(int)morph.hash["eyeclose5"]] + ","
  7257. + fieldValue1[(int)morph.hash["mayuw"]] + ","
  7258. + fieldValue1[(int)morph.hash["mouthhe"]] + ","
  7259. + fieldValue1[(int)morph.hash["mouthc"]] + ","
  7260. + fieldValue1[(int)morph.hash["mouthi"]] + ","
  7261. + fieldValue1[(int)morph.hash["mouthuphalf"]] + ",";
  7262. string str119;
  7263. try
  7264. {
  7265. str119 = str118 + fieldValue1[(int)morph.hash["tangopen"]] + ",";
  7266. }
  7267. catch
  7268. {
  7269. str119 = str118 + "0,";
  7270. }
  7271. string str120 = fieldValue1[(int)morph.hash["namida"]] <= 0.0
  7272. ? str119 + 0 + ","
  7273. : str119 + 1 + ",";
  7274. string str121 = fieldValue1[(int)morph.hash["tear1"]] <= 0.0
  7275. ? str120 + 0 + ","
  7276. : str120 + 1 + ",";
  7277. string str122 = fieldValue1[(int)morph.hash["tear2"]] <= 0.0
  7278. ? str121 + 0 + ","
  7279. : str121 + 1 + ",";
  7280. string str123 = fieldValue1[(int)morph.hash["tear3"]] <= 0.0
  7281. ? str122 + 0 + ","
  7282. : str122 + 1 + ",";
  7283. string str124 = fieldValue1[(int)morph.hash["shock"]] <= 0.0
  7284. ? str123 + 0 + ","
  7285. : str123 + 1 + ",";
  7286. string str125 = fieldValue1[(int)morph.hash["yodare"]] <= 0.0
  7287. ? str124 + 0 + ","
  7288. : str124 + 1 + ",";
  7289. string str126 = fieldValue1[(int)morph.hash["hoho"]] <= 0.0
  7290. ? str125 + 0 + ","
  7291. : str125 + 1 + ",";
  7292. string str127 = fieldValue1[(int)morph.hash["hoho2"]] <= 0.0
  7293. ? str126 + 0 + ","
  7294. : str126 + 1 + ",";
  7295. string str128 = fieldValue1[(int)morph.hash["hohos"]] <= 0.0
  7296. ? str127 + 0 + ","
  7297. : str127 + 1 + ",";
  7298. string str129 = fieldValue1[(int)morph.hash["hohol"]] <= 0.0
  7299. ? str128 + 0 + ","
  7300. : str128 + 1 + ",";
  7301. string str130 = fieldValue1[(int)morph.hash["toothoff"]] <= 0.0
  7302. ? str129 + 0 + ","
  7303. : str129 + 1 + ",";
  7304. string str131 = fieldValue1[(int)morph.hash["nosefook"]] <= 0.0
  7305. ? str130 + 0 + ":"
  7306. : str130 + 1 + ":";
  7307. string str132 = "";
  7308. string str133 =
  7309. (!isLook[i]
  7310. ? str132 + 0 + ",0,0:"
  7311. : str132 + 1 + "," + lookX[i].ToString("0.###") + "," + lookY[i].ToString("0.###")
  7312. + ":").ToString() + itemIndex[i] + ":";
  7313. Transform transform1 = CMT.SearchObjName(maid.body0.m_Bones.transform, "_IK_handL", true);
  7314. Transform transform2 = CMT.SearchObjName(maid.body0.m_Bones.transform, "_IK_handR", true);
  7315. string str134 = str133 + transform1.localEulerAngles.x.ToString("0.###") + ","
  7316. + transform1.localEulerAngles.y.ToString("0.###") + ","
  7317. + transform1.localEulerAngles.z.ToString("0.###") + ":"
  7318. + transform2.localEulerAngles.x.ToString("0.###") + ","
  7319. + transform2.localEulerAngles.y.ToString("0.###") + ","
  7320. + transform2.localEulerAngles.z.ToString("0.###") + ":";
  7321. string[] strArray108 = new string[7];
  7322. strArray108[0] = str134;
  7323. string[] strArray109 = strArray108;
  7324. int index82 = 1;
  7325. num = ClavicleL1[i].eulerAngles.x;
  7326. string str135 = num.ToString("0.###");
  7327. strArray109[index82] = str135;
  7328. strArray108[2] = ",";
  7329. string[] strArray110 = strArray108;
  7330. int index83 = 3;
  7331. num = ClavicleL1[i].eulerAngles.y;
  7332. string str136 = num.ToString("0.###");
  7333. strArray110[index83] = str136;
  7334. strArray108[4] = ",";
  7335. string[] strArray111 = strArray108;
  7336. int index84 = 5;
  7337. num = ClavicleL1[i].eulerAngles.z;
  7338. string str137 = num.ToString("0.###");
  7339. strArray111[index84] = str137;
  7340. strArray108[6] = ":";
  7341. string str138 = string.Concat(strArray108);
  7342. string[] strArray112 = new string[7];
  7343. strArray112[0] = str138;
  7344. string[] strArray113 = strArray112;
  7345. int index85 = 1;
  7346. num = ClavicleR1[i].eulerAngles.x;
  7347. string str139 = num.ToString("0.###");
  7348. strArray113[index85] = str139;
  7349. strArray112[2] = ",";
  7350. string[] strArray114 = strArray112;
  7351. int index86 = 3;
  7352. num = ClavicleR1[i].eulerAngles.y;
  7353. string str140 = num.ToString("0.###");
  7354. strArray114[index86] = str140;
  7355. strArray112[4] = ",";
  7356. string[] strArray115 = strArray112;
  7357. int index87 = 5;
  7358. num = ClavicleR1[i].eulerAngles.z;
  7359. string str141 = num.ToString("0.###");
  7360. strArray115[index87] = str141;
  7361. strArray112[6] = ":";
  7362. string str142 = string.Concat(strArray112);
  7363. string str143 = !hanten[i] ? str142 + "0:" : str142 + "1:";
  7364. Transform transform3 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01", true);
  7365. Transform transform4 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe0", true);
  7366. Transform transform5 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe0", true);
  7367. Transform transform6 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe01", true);
  7368. Transform transform7 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe01", true);
  7369. Transform transform8 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe0Nub", true);
  7370. Transform transform9 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe0Nub", true);
  7371. Transform transform10 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe1", true);
  7372. Transform transform11 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe1", true);
  7373. Transform transform12 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe11", true);
  7374. Transform transform13 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe11", true);
  7375. Transform transform14 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe1Nub", true);
  7376. Transform transform15 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe1Nub", true);
  7377. Transform transform16 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe2", true);
  7378. Transform transform17 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe2", true);
  7379. Transform transform18 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe21", true);
  7380. Transform transform19 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe21", true);
  7381. Transform transform20 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 L Toe2Nub", true);
  7382. Transform transform21 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Bip01 R Toe2Nub", true);
  7383. string str144 = str143;
  7384. string[] strArray116 = new string[7];
  7385. strArray116[0] = str144;
  7386. string[] strArray117 = strArray116;
  7387. int index88 = 1;
  7388. num = transform3.eulerAngles.x;
  7389. string str145 = num.ToString("0.###");
  7390. strArray117[index88] = str145;
  7391. strArray116[2] = ",";
  7392. string[] strArray118 = strArray116;
  7393. int index89 = 3;
  7394. num = transform3.eulerAngles.y;
  7395. string str146 = num.ToString("0.###");
  7396. strArray118[index89] = str146;
  7397. strArray116[4] = ",";
  7398. string[] strArray119 = strArray116;
  7399. int index90 = 5;
  7400. num = transform3.eulerAngles.z;
  7401. string str147 = num.ToString("0.###");
  7402. strArray119[index90] = str147;
  7403. strArray116[6] = ":";
  7404. string str148 = string.Concat(strArray116);
  7405. string[] strArray120 = new string[7];
  7406. strArray120[0] = str148;
  7407. string[] strArray121 = strArray120;
  7408. int index91 = 1;
  7409. num = transform4.localEulerAngles.x;
  7410. string str149 = num.ToString("0.###");
  7411. strArray121[index91] = str149;
  7412. strArray120[2] = ",";
  7413. string[] strArray122 = strArray120;
  7414. int index92 = 3;
  7415. num = transform4.localEulerAngles.y;
  7416. string str150 = num.ToString("0.###");
  7417. strArray122[index92] = str150;
  7418. strArray120[4] = ",";
  7419. string[] strArray123 = strArray120;
  7420. int index93 = 5;
  7421. num = transform4.localEulerAngles.z;
  7422. string str151 = num.ToString("0.###");
  7423. strArray123[index93] = str151;
  7424. strArray120[6] = ":";
  7425. string str152 = string.Concat(strArray120);
  7426. string[] strArray124 = new string[7];
  7427. strArray124[0] = str152;
  7428. string[] strArray125 = strArray124;
  7429. int index94 = 1;
  7430. num = transform5.localEulerAngles.x;
  7431. string str153 = num.ToString("0.###");
  7432. strArray125[index94] = str153;
  7433. strArray124[2] = ",";
  7434. string[] strArray126 = strArray124;
  7435. int index95 = 3;
  7436. num = transform5.localEulerAngles.y;
  7437. string str154 = num.ToString("0.###");
  7438. strArray126[index95] = str154;
  7439. strArray124[4] = ",";
  7440. string[] strArray127 = strArray124;
  7441. int index96 = 5;
  7442. num = transform5.localEulerAngles.z;
  7443. string str155 = num.ToString("0.###");
  7444. strArray127[index96] = str155;
  7445. strArray124[6] = ":";
  7446. string str156 = string.Concat(strArray124);
  7447. string[] strArray128 = new string[7];
  7448. strArray128[0] = str156;
  7449. string[] strArray129 = strArray128;
  7450. int index97 = 1;
  7451. num = transform6.localEulerAngles.x;
  7452. string str157 = num.ToString("0.###");
  7453. strArray129[index97] = str157;
  7454. strArray128[2] = ",";
  7455. string[] strArray130 = strArray128;
  7456. int index98 = 3;
  7457. num = transform6.localEulerAngles.y;
  7458. string str158 = num.ToString("0.###");
  7459. strArray130[index98] = str158;
  7460. strArray128[4] = ",";
  7461. string[] strArray131 = strArray128;
  7462. int index99 = 5;
  7463. num = transform6.localEulerAngles.z;
  7464. string str159 = num.ToString("0.###");
  7465. strArray131[index99] = str159;
  7466. strArray128[6] = ":";
  7467. string str160 = string.Concat(strArray128);
  7468. string[] strArray132 = new string[7];
  7469. strArray132[0] = str160;
  7470. string[] strArray133 = strArray132;
  7471. int index100 = 1;
  7472. num = transform7.localEulerAngles.x;
  7473. string str161 = num.ToString("0.###");
  7474. strArray133[index100] = str161;
  7475. strArray132[2] = ",";
  7476. string[] strArray134 = strArray132;
  7477. int index101 = 3;
  7478. num = transform7.localEulerAngles.y;
  7479. string str162 = num.ToString("0.###");
  7480. strArray134[index101] = str162;
  7481. strArray132[4] = ",";
  7482. string[] strArray135 = strArray132;
  7483. int index102 = 5;
  7484. num = transform7.localEulerAngles.z;
  7485. string str163 = num.ToString("0.###");
  7486. strArray135[index102] = str163;
  7487. strArray132[6] = ":";
  7488. string str164 = string.Concat(strArray132);
  7489. string[] strArray136 = new string[7];
  7490. strArray136[0] = str164;
  7491. string[] strArray137 = strArray136;
  7492. int index103 = 1;
  7493. num = transform8.localEulerAngles.x;
  7494. string str165 = num.ToString("0.###");
  7495. strArray137[index103] = str165;
  7496. strArray136[2] = ",";
  7497. string[] strArray138 = strArray136;
  7498. int index104 = 3;
  7499. num = transform8.localEulerAngles.y;
  7500. string str166 = num.ToString("0.###");
  7501. strArray138[index104] = str166;
  7502. strArray136[4] = ",";
  7503. string[] strArray139 = strArray136;
  7504. int index105 = 5;
  7505. num = transform8.localEulerAngles.z;
  7506. string str167 = num.ToString("0.###");
  7507. strArray139[index105] = str167;
  7508. strArray136[6] = ":";
  7509. string str168 = string.Concat(strArray136);
  7510. string[] strArray140 = new string[7];
  7511. strArray140[0] = str168;
  7512. string[] strArray141 = strArray140;
  7513. int index106 = 1;
  7514. num = transform9.localEulerAngles.x;
  7515. string str169 = num.ToString("0.###");
  7516. strArray141[index106] = str169;
  7517. strArray140[2] = ",";
  7518. string[] strArray142 = strArray140;
  7519. int index107 = 3;
  7520. num = transform9.localEulerAngles.y;
  7521. string str170 = num.ToString("0.###");
  7522. strArray142[index107] = str170;
  7523. strArray140[4] = ",";
  7524. string[] strArray143 = strArray140;
  7525. int index108 = 5;
  7526. num = transform9.localEulerAngles.z;
  7527. string str171 = num.ToString("0.###");
  7528. strArray143[index108] = str171;
  7529. strArray140[6] = ":";
  7530. string str172 = string.Concat(strArray140);
  7531. string[] strArray144 = new string[7];
  7532. strArray144[0] = str172;
  7533. string[] strArray145 = strArray144;
  7534. int index109 = 1;
  7535. num = transform10.localEulerAngles.x;
  7536. string str173 = num.ToString("0.###");
  7537. strArray145[index109] = str173;
  7538. strArray144[2] = ",";
  7539. string[] strArray146 = strArray144;
  7540. int index110 = 3;
  7541. num = transform10.localEulerAngles.y;
  7542. string str174 = num.ToString("0.###");
  7543. strArray146[index110] = str174;
  7544. strArray144[4] = ",";
  7545. string[] strArray147 = strArray144;
  7546. int index111 = 5;
  7547. num = transform10.localEulerAngles.z;
  7548. string str175 = num.ToString("0.###");
  7549. strArray147[index111] = str175;
  7550. strArray144[6] = ":";
  7551. string str176 = string.Concat(strArray144);
  7552. string[] strArray148 = new string[7];
  7553. strArray148[0] = str176;
  7554. string[] strArray149 = strArray148;
  7555. int index112 = 1;
  7556. num = transform11.localEulerAngles.x;
  7557. string str177 = num.ToString("0.###");
  7558. strArray149[index112] = str177;
  7559. strArray148[2] = ",";
  7560. string[] strArray150 = strArray148;
  7561. int index113 = 3;
  7562. num = transform11.localEulerAngles.y;
  7563. string str178 = num.ToString("0.###");
  7564. strArray150[index113] = str178;
  7565. strArray148[4] = ",";
  7566. string[] strArray151 = strArray148;
  7567. int index114 = 5;
  7568. num = transform11.localEulerAngles.z;
  7569. string str179 = num.ToString("0.###");
  7570. strArray151[index114] = str179;
  7571. strArray148[6] = ":";
  7572. string str180 = string.Concat(strArray148);
  7573. string[] strArray152 = new string[7];
  7574. strArray152[0] = str180;
  7575. string[] strArray153 = strArray152;
  7576. int index115 = 1;
  7577. num = transform12.localEulerAngles.x;
  7578. string str181 = num.ToString("0.###");
  7579. strArray153[index115] = str181;
  7580. strArray152[2] = ",";
  7581. string[] strArray154 = strArray152;
  7582. int index116 = 3;
  7583. num = transform12.localEulerAngles.y;
  7584. string str182 = num.ToString("0.###");
  7585. strArray154[index116] = str182;
  7586. strArray152[4] = ",";
  7587. string[] strArray155 = strArray152;
  7588. int index117 = 5;
  7589. num = transform12.localEulerAngles.z;
  7590. string str183 = num.ToString("0.###");
  7591. strArray155[index117] = str183;
  7592. strArray152[6] = ":";
  7593. string str184 = string.Concat(strArray152);
  7594. string[] strArray156 = new string[7];
  7595. strArray156[0] = str184;
  7596. string[] strArray157 = strArray156;
  7597. int index118 = 1;
  7598. num = transform13.localEulerAngles.x;
  7599. string str185 = num.ToString("0.###");
  7600. strArray157[index118] = str185;
  7601. strArray156[2] = ",";
  7602. string[] strArray158 = strArray156;
  7603. int index119 = 3;
  7604. num = transform13.localEulerAngles.y;
  7605. string str186 = num.ToString("0.###");
  7606. strArray158[index119] = str186;
  7607. strArray156[4] = ",";
  7608. string[] strArray159 = strArray156;
  7609. int index120 = 5;
  7610. num = transform13.localEulerAngles.z;
  7611. string str187 = num.ToString("0.###");
  7612. strArray159[index120] = str187;
  7613. strArray156[6] = ":";
  7614. string str188 = string.Concat(strArray156);
  7615. string[] strArray160 = new string[7];
  7616. strArray160[0] = str188;
  7617. string[] strArray161 = strArray160;
  7618. int index121 = 1;
  7619. num = transform14.localEulerAngles.x;
  7620. string str189 = num.ToString("0.###");
  7621. strArray161[index121] = str189;
  7622. strArray160[2] = ",";
  7623. string[] strArray162 = strArray160;
  7624. int index122 = 3;
  7625. num = transform14.localEulerAngles.y;
  7626. string str190 = num.ToString("0.###");
  7627. strArray162[index122] = str190;
  7628. strArray160[4] = ",";
  7629. string[] strArray163 = strArray160;
  7630. int index123 = 5;
  7631. num = transform14.localEulerAngles.z;
  7632. string str191 = num.ToString("0.###");
  7633. strArray163[index123] = str191;
  7634. strArray160[6] = ":";
  7635. string str192 = string.Concat(strArray160);
  7636. string[] strArray164 = new string[7];
  7637. strArray164[0] = str192;
  7638. string[] strArray165 = strArray164;
  7639. int index124 = 1;
  7640. num = transform15.localEulerAngles.x;
  7641. string str193 = num.ToString("0.###");
  7642. strArray165[index124] = str193;
  7643. strArray164[2] = ",";
  7644. string[] strArray166 = strArray164;
  7645. int index125 = 3;
  7646. num = transform15.localEulerAngles.y;
  7647. string str194 = num.ToString("0.###");
  7648. strArray166[index125] = str194;
  7649. strArray164[4] = ",";
  7650. string[] strArray167 = strArray164;
  7651. int index126 = 5;
  7652. num = transform15.localEulerAngles.z;
  7653. string str195 = num.ToString("0.###");
  7654. strArray167[index126] = str195;
  7655. strArray164[6] = ":";
  7656. string str196 = string.Concat(strArray164);
  7657. string[] strArray168 = new string[7];
  7658. strArray168[0] = str196;
  7659. string[] strArray169 = strArray168;
  7660. int index127 = 1;
  7661. num = transform16.localEulerAngles.x;
  7662. string str197 = num.ToString("0.###");
  7663. strArray169[index127] = str197;
  7664. strArray168[2] = ",";
  7665. string[] strArray170 = strArray168;
  7666. int index128 = 3;
  7667. num = transform16.localEulerAngles.y;
  7668. string str198 = num.ToString("0.###");
  7669. strArray170[index128] = str198;
  7670. strArray168[4] = ",";
  7671. string[] strArray171 = strArray168;
  7672. int index129 = 5;
  7673. num = transform16.localEulerAngles.z;
  7674. string str199 = num.ToString("0.###");
  7675. strArray171[index129] = str199;
  7676. strArray168[6] = ":";
  7677. string str200 = string.Concat(strArray168);
  7678. string[] strArray172 = new string[7];
  7679. strArray172[0] = str200;
  7680. string[] strArray173 = strArray172;
  7681. int index130 = 1;
  7682. num = transform17.localEulerAngles.x;
  7683. string str201 = num.ToString("0.###");
  7684. strArray173[index130] = str201;
  7685. strArray172[2] = ",";
  7686. string[] strArray174 = strArray172;
  7687. int index131 = 3;
  7688. num = transform17.localEulerAngles.y;
  7689. string str202 = num.ToString("0.###");
  7690. strArray174[index131] = str202;
  7691. strArray172[4] = ",";
  7692. string[] strArray175 = strArray172;
  7693. int index132 = 5;
  7694. num = transform17.localEulerAngles.z;
  7695. string str203 = num.ToString("0.###");
  7696. strArray175[index132] = str203;
  7697. strArray172[6] = ":";
  7698. string str204 = string.Concat(strArray172);
  7699. string[] strArray176 = new string[7];
  7700. strArray176[0] = str204;
  7701. string[] strArray177 = strArray176;
  7702. int index133 = 1;
  7703. num = transform18.localEulerAngles.x;
  7704. string str205 = num.ToString("0.###");
  7705. strArray177[index133] = str205;
  7706. strArray176[2] = ",";
  7707. string[] strArray178 = strArray176;
  7708. int index134 = 3;
  7709. num = transform18.localEulerAngles.y;
  7710. string str206 = num.ToString("0.###");
  7711. strArray178[index134] = str206;
  7712. strArray176[4] = ",";
  7713. string[] strArray179 = strArray176;
  7714. int index135 = 5;
  7715. num = transform18.localEulerAngles.z;
  7716. string str207 = num.ToString("0.###");
  7717. strArray179[index135] = str207;
  7718. strArray176[6] = ":";
  7719. string str208 = string.Concat(strArray176);
  7720. string[] strArray180 = new string[7];
  7721. strArray180[0] = str208;
  7722. string[] strArray181 = strArray180;
  7723. int index136 = 1;
  7724. num = transform19.localEulerAngles.x;
  7725. string str209 = num.ToString("0.###");
  7726. strArray181[index136] = str209;
  7727. strArray180[2] = ",";
  7728. string[] strArray182 = strArray180;
  7729. int index137 = 3;
  7730. num = transform19.localEulerAngles.y;
  7731. string str210 = num.ToString("0.###");
  7732. strArray182[index137] = str210;
  7733. strArray180[4] = ",";
  7734. string[] strArray183 = strArray180;
  7735. int index138 = 5;
  7736. num = transform19.localEulerAngles.z;
  7737. string str211 = num.ToString("0.###");
  7738. strArray183[index138] = str211;
  7739. strArray180[6] = ":";
  7740. string str212 = string.Concat(strArray180);
  7741. string[] strArray184 = new string[7];
  7742. strArray184[0] = str212;
  7743. string[] strArray185 = strArray184;
  7744. int index139 = 1;
  7745. num = transform20.localEulerAngles.x;
  7746. string str213 = num.ToString("0.###");
  7747. strArray185[index139] = str213;
  7748. strArray184[2] = ",";
  7749. string[] strArray186 = strArray184;
  7750. int index140 = 3;
  7751. num = transform20.localEulerAngles.y;
  7752. string str214 = num.ToString("0.###");
  7753. strArray186[index140] = str214;
  7754. strArray184[4] = ",";
  7755. string[] strArray187 = strArray184;
  7756. int index141 = 5;
  7757. num = transform20.localEulerAngles.z;
  7758. string str215 = num.ToString("0.###");
  7759. strArray187[index141] = str215;
  7760. strArray184[6] = ":";
  7761. string str216 = string.Concat(strArray184);
  7762. string[] strArray188 = new string[7];
  7763. strArray188[0] = str216;
  7764. string[] strArray189 = strArray188;
  7765. int index142 = 1;
  7766. num = transform21.localEulerAngles.x;
  7767. string str217 = num.ToString("0.###");
  7768. strArray189[index142] = str217;
  7769. strArray188[2] = ",";
  7770. string[] strArray190 = strArray188;
  7771. int index143 = 3;
  7772. num = transform21.localEulerAngles.y;
  7773. string str218 = num.ToString("0.###");
  7774. strArray190[index143] = str218;
  7775. strArray188[4] = ",";
  7776. string[] strArray191 = strArray188;
  7777. int index144 = 5;
  7778. num = transform21.localEulerAngles.z;
  7779. string str219 = num.ToString("0.###");
  7780. strArray191[index144] = str219;
  7781. strArray188[6] = ":";
  7782. string str220 = string.Concat(strArray188);
  7783. string[] strArray192 = new string[7];
  7784. strArray192[0] = str220;
  7785. string[] strArray193 = strArray192;
  7786. int index145 = 1;
  7787. num = maid.body0.quaDefEyeL.eulerAngles.x;
  7788. string str221 = num.ToString("0.###");
  7789. strArray193[index145] = str221;
  7790. strArray192[2] = ",";
  7791. string[] strArray194 = strArray192;
  7792. int index146 = 3;
  7793. num = maid.body0.quaDefEyeL.eulerAngles.y;
  7794. string str222 = num.ToString("0.###");
  7795. strArray194[index146] = str222;
  7796. strArray192[4] = ",";
  7797. string[] strArray195 = strArray192;
  7798. int index147 = 5;
  7799. num = maid.body0.quaDefEyeL.eulerAngles.z;
  7800. string str223 = num.ToString("0.###");
  7801. strArray195[index147] = str223;
  7802. strArray192[6] = ":";
  7803. string str224 = string.Concat(strArray192);
  7804. string[] strArray196 = new string[7];
  7805. strArray196[0] = str224;
  7806. string[] strArray197 = strArray196;
  7807. int index148 = 1;
  7808. num = maid.body0.quaDefEyeR.eulerAngles.x;
  7809. string str225 = num.ToString("0.###");
  7810. strArray197[index148] = str225;
  7811. strArray196[2] = ",";
  7812. string[] strArray198 = strArray196;
  7813. int index149 = 3;
  7814. num = maid.body0.quaDefEyeR.eulerAngles.y;
  7815. string str226 = num.ToString("0.###");
  7816. strArray198[index149] = str226;
  7817. strArray196[4] = ",";
  7818. string[] strArray199 = strArray196;
  7819. int index150 = 5;
  7820. num = maid.body0.quaDefEyeR.eulerAngles.z;
  7821. string str227 = num.ToString("0.###");
  7822. strArray199[index150] = str227;
  7823. strArray196[6] = ":";
  7824. string str228 = string.Concat(strArray196);
  7825. Transform transform22 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Mune_L", true);
  7826. Transform transform23 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Mune_L_sub", true);
  7827. Transform transform24 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Mune_R", true);
  7828. Transform transform25 = CMT.SearchObjName(maid.body0.m_Bones.transform, "Mune_R_sub", true);
  7829. string str229 = str228;
  7830. string[] strArray200 = new string[7];
  7831. strArray200[0] = str229;
  7832. string[] strArray201 = strArray200;
  7833. int index151 = 1;
  7834. num = transform22.localEulerAngles.x;
  7835. string str230 = num.ToString("0.###");
  7836. strArray201[index151] = str230;
  7837. strArray200[2] = ",";
  7838. string[] strArray202 = strArray200;
  7839. int index152 = 3;
  7840. num = transform22.localEulerAngles.y;
  7841. string str231 = num.ToString("0.###");
  7842. strArray202[index152] = str231;
  7843. strArray200[4] = ",";
  7844. string[] strArray203 = strArray200;
  7845. int index153 = 5;
  7846. num = transform22.localEulerAngles.z;
  7847. string str232 = num.ToString("0.###");
  7848. strArray203[index153] = str232;
  7849. strArray200[6] = ":";
  7850. string str233 = string.Concat(strArray200);
  7851. string[] strArray204 = new string[7];
  7852. strArray204[0] = str233;
  7853. string[] strArray205 = strArray204;
  7854. int index154 = 1;
  7855. num = transform23.localEulerAngles.x;
  7856. string str234 = num.ToString("0.###");
  7857. strArray205[index154] = str234;
  7858. strArray204[2] = ",";
  7859. string[] strArray206 = strArray204;
  7860. int index155 = 3;
  7861. num = transform23.localEulerAngles.y;
  7862. string str235 = num.ToString("0.###");
  7863. strArray206[index155] = str235;
  7864. strArray204[4] = ",";
  7865. string[] strArray207 = strArray204;
  7866. int index156 = 5;
  7867. num = transform23.localEulerAngles.z;
  7868. string str236 = num.ToString("0.###");
  7869. strArray207[index156] = str236;
  7870. strArray204[6] = ":";
  7871. string str237 = string.Concat(strArray204);
  7872. string[] strArray208 = new string[7];
  7873. strArray208[0] = str237;
  7874. string[] strArray209 = strArray208;
  7875. int index157 = 1;
  7876. num = transform24.localEulerAngles.x;
  7877. string str238 = num.ToString("0.###");
  7878. strArray209[index157] = str238;
  7879. strArray208[2] = ",";
  7880. string[] strArray210 = strArray208;
  7881. int index158 = 3;
  7882. num = transform24.localEulerAngles.y;
  7883. string str239 = num.ToString("0.###");
  7884. strArray210[index158] = str239;
  7885. strArray208[4] = ",";
  7886. string[] strArray211 = strArray208;
  7887. int index159 = 5;
  7888. num = transform24.localEulerAngles.z;
  7889. string str240 = num.ToString("0.###");
  7890. strArray211[index159] = str240;
  7891. strArray208[6] = ":";
  7892. string str241 = string.Concat(strArray208);
  7893. string[] strArray212 = new string[7];
  7894. strArray212[0] = str241;
  7895. string[] strArray213 = strArray212;
  7896. int index160 = 1;
  7897. num = transform25.localEulerAngles.x;
  7898. string str242 = num.ToString("0.###");
  7899. strArray213[index160] = str242;
  7900. strArray212[2] = ",";
  7901. string[] strArray214 = strArray212;
  7902. int index161 = 3;
  7903. num = transform25.localEulerAngles.y;
  7904. string str243 = num.ToString("0.###");
  7905. strArray214[index161] = str243;
  7906. strArray212[4] = ",";
  7907. string[] strArray215 = strArray212;
  7908. int index162 = 5;
  7909. num = transform25.localEulerAngles.z;
  7910. string str244 = num.ToString("0.###");
  7911. strArray215[index162] = str244;
  7912. strArray212[6] = ":";
  7913. string str245 = string.Concat(strArray212);
  7914. string[] strArray216 = new string[6];
  7915. strArray216[0] = str245;
  7916. string[] strArray217 = strArray216;
  7917. int index163 = 1;
  7918. num = transform3.position.x;
  7919. string str246 = num.ToString("0.###");
  7920. strArray217[index163] = str246;
  7921. strArray216[2] = ",";
  7922. string[] strArray218 = strArray216;
  7923. int index164 = 3;
  7924. num = transform3.position.y;
  7925. string str247 = num.ToString("0.###");
  7926. strArray218[index164] = str247;
  7927. strArray216[4] = ",";
  7928. string[] strArray219 = strArray216;
  7929. int index165 = 5;
  7930. num = transform3.position.z;
  7931. string str248 = num.ToString("0.###");
  7932. strArray219[index165] = str248;
  7933. string str249 = string.Concat(strArray216);
  7934. str1 = str1 + str24 + str25 + str131 + str249;
  7935. if (i + 1 != maidCnt)
  7936. {
  7937. str1 += ";";
  7938. }
  7939. }
  7940. string str250 = "_" + lightKage[0] + ",";
  7941. string str251;
  7942. if (isBloom)
  7943. {
  7944. string str24 = str250 + "1," + bloom1 + "," + bloom2 + "," + bloom3 + "," + bloom4
  7945. + "," + bloom5 + ",";
  7946. str251 = !isBloomA ? str24 + "0," : str24 + "1,";
  7947. }
  7948. else
  7949. {
  7950. str251 = str250 + "0,0,0,0,0,0,0,";
  7951. }
  7952. string str252 =
  7953. (!isBlur
  7954. ? str251 + "0,0,0,0,0,"
  7955. : str251 + "1," + blur1 + "," + blur2 + "," + blur3 + ","
  7956. + blur4 + ",").ToString() + bokashi + "," + kamiyure + ",";
  7957. string str253;
  7958. if (isDepth)
  7959. {
  7960. string str24 = str252 + "1," + depth1 + "," + depth2 + "," + depth3 + "," + depth4
  7961. + ",";
  7962. str253 = !isDepthA ? str24 + "0," : str24 + "1,";
  7963. }
  7964. else
  7965. {
  7966. str253 = str252 + "0,0,0,0,0,0,";
  7967. }
  7968. string str254 = !isFog
  7969. ? str253 + "0,0,0,0,0,0,0,0,"
  7970. : str253 + "1," + fog1 + "," + fog2 + "," + fog3 + "," + fog4
  7971. + "," + fog5 + "," + fog6 + "," + fog7 + ",";
  7972. string str255 = !isSepia ? str254 + "0" : str254 + "1";
  7973. string str256 = "_";
  7974. for (int index15 = 1; index15 < lightList.Count; ++index15)
  7975. {
  7976. str256 = str256 + lightIndex[index15] + "," + lightColorR[index15] + ","
  7977. + lightColorG[index15] + "," + lightColorB[index15] + "," + lightX[index15] + ","
  7978. + lightY[index15] + "," + lightAkarusa[index15] + "," + lightRange[index15] + ";";
  7979. }
  7980. string str257 = "_";
  7981. for (int index15 = 0; index15 < doguBObject.Count; ++index15)
  7982. {
  7983. string str24 = str257 + doguBObject[index15].name.Replace("_", " ") + ",";
  7984. string[] strArray20 = new string[7];
  7985. strArray20[0] = str24;
  7986. string[] strArray21 = strArray20;
  7987. int index16 = 1;
  7988. num = doguBObject[index15].transform.localEulerAngles.x;
  7989. string str25 = num.ToString("0.###");
  7990. strArray21[index16] = str25;
  7991. strArray20[2] = ",";
  7992. string[] strArray22 = strArray20;
  7993. int index17 = 3;
  7994. num = doguBObject[index15].transform.localEulerAngles.y;
  7995. string str26 = num.ToString("0.###");
  7996. strArray22[index17] = str26;
  7997. strArray20[4] = ",";
  7998. string[] strArray23 = strArray20;
  7999. int index18 = 5;
  8000. num = doguBObject[index15].transform.localEulerAngles.z;
  8001. string str27 = num.ToString("0.###");
  8002. strArray23[index18] = str27;
  8003. strArray20[6] = ",";
  8004. string str28 = string.Concat(strArray20);
  8005. string[] strArray24 = new string[7];
  8006. strArray24[0] = str28;
  8007. string[] strArray25 = strArray24;
  8008. int index19 = 1;
  8009. num = doguBObject[index15].transform.position.x;
  8010. string str29 = num.ToString("0.###");
  8011. strArray25[index19] = str29;
  8012. strArray24[2] = ",";
  8013. string[] strArray26 = strArray24;
  8014. int index20 = 3;
  8015. num = doguBObject[index15].transform.position.y;
  8016. string str30 = num.ToString("0.###");
  8017. strArray26[index20] = str30;
  8018. strArray24[4] = ",";
  8019. string[] strArray27 = strArray24;
  8020. int index21 = 5;
  8021. num = doguBObject[index15].transform.position.z;
  8022. string str31 = num.ToString("0.###");
  8023. strArray27[index21] = str31;
  8024. strArray24[6] = ",";
  8025. string str32 = string.Concat(strArray24);
  8026. string[] strArray28 = new string[6];
  8027. strArray28[0] = str32;
  8028. string[] strArray29 = strArray28;
  8029. int index22 = 1;
  8030. num = doguBObject[index15].transform.localScale.x;
  8031. string str33 = num.ToString("0.###");
  8032. strArray29[index22] = str33;
  8033. strArray28[2] = ",";
  8034. string[] strArray30 = strArray28;
  8035. int index23 = 3;
  8036. num = doguBObject[index15].transform.localScale.y;
  8037. string str34 = num.ToString("0.###");
  8038. strArray30[index23] = str34;
  8039. strArray28[4] = ",";
  8040. string[] strArray31 = strArray28;
  8041. int index24 = 5;
  8042. num = doguBObject[index15].transform.localScale.z;
  8043. string str35 = num.ToString("0.###");
  8044. strArray31[index24] = str35;
  8045. str257 = string.Concat(strArray28) + ";";
  8046. }
  8047. string str258 = "_";
  8048. for (int index15 = 0; index15 < lightList.Count; ++index15)
  8049. {
  8050. str258 = str258 + lightList[index15].transform.position.x + ","
  8051. + lightList[index15].transform.position.y + "," + lightList[index15].transform.position.z
  8052. + ";";
  8053. }
  8054. string serializedScene = str36 + str1 + str255 + str256 + str257 + str258;
  8055. return serializedScene;
  8056. }
  8057. }
  8058. }