Data.cs 194 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310
  1. 
  2. using System;
  3. using System.IO;
  4. using System.Text;
  5. using System.Collections.Generic;
  6. using System.Runtime.Serialization;
  7. using CommonAI.RTS.Manhattan;
  8. using CommonAI.RTS;
  9. using CommonLang.Vector;
  10. using CommonLang;
  11. using CommonLang.ByteOrder;
  12. using CommonLang.IO;
  13. using CommonLang.IO.Attribute;
  14. using CommonLang.Property;
  15. using CommonAI.Zone.Attributes;
  16. using CommonAI.Zone.UnitTriggers;
  17. using CommonAI.Zone.Instance;
  18. using CommonAI.Zone.ZoneEditor;
  19. using CommonAI.Zone.Helper;
  20. using CommonLang.Xml;
  21. using static CommonAI.Zone.AttackProp;
  22. using CommonLang.Log;
  23. using CommonAI.Data;
  24. namespace CommonAI.Zone
  25. {
  26. //---------------------------------------------------------------------------------//
  27. [MessageType(0x4000)]
  28. public class Config
  29. {
  30. [DescAttribute("系统帧率(服务端)", "系统")]
  31. public int SYSTEM_FPS = 30;
  32. [DescAttribute("全局重力", "全局")]
  33. public float GLOBAL_GRAVITY = 9.8f;
  34. [DescAttribute("全局挤开移动最大递归深度", "全局")]
  35. public uint GLOBAL_MOVE_IMPACT_DEPTH = 10;
  36. [DescAttribute("超出此同步范围,立即将坐标修正", "客户端")]
  37. public float CLIENT_UNIT_MOVE_MODIFY_MAX_RANGE = 20f;
  38. [DescAttribute("单位移动最慢速度(低于最慢速度表示不能移动)", "移动")]
  39. public float OBJECT_MOVE_TO_MIN_STEP_SEC = 0.3f;
  40. [DescAttribute("单位攻击范围是否包含身体半径", "战斗")]
  41. public bool OBJECT_ATTACK_RANGE_INCLUDE_BODYSIZE = false;
  42. [DescAttribute("单位间无碰撞总开关", "战斗")]
  43. public bool OBJECT_NONE_TOUCH = false;
  44. [DescAttribute("玩家无碰撞", "战斗")]
  45. public bool PLAYER_NONE_TOUCH = false;
  46. [DescAttribute("宠物跟随距离(靠近主人多少停止)", "战斗")]
  47. public float PET_FOLLOW_DISTANCE_MIN = 1.5f;
  48. [DescAttribute("宠物跟随距离(离主人多远时跟随)", "战斗")]
  49. public float PET_FOLLOW_DISTANCE_MAX = 2.5f;
  50. [DescAttribute("宠物强制跟随距离(距离太远,直接瞬移到主人)", "战斗")]
  51. public float PET_FOLLOW_DISTANCE_LIMIT = 12f;
  52. [DescAttribute("队员跟随距离(靠近主人多少停止)", "战斗")]
  53. public float TEAMER_FOLLOW_DISTANCE_MIN = 2f;
  54. [DescAttribute("队员跟随距离(离主人多远时跟随)", "战斗")]
  55. public float TEAMER_FOLLOW_DISTANCE_MAX = 4f;
  56. [DescAttribute("队员强制跟随距离(距离太远,直接瞬移到主人)", "战斗")]
  57. public float TEAMER_FOLLOW_DISTANCE_LIMIT = 8f;
  58. [DescAttribute("单位默认转身速度(弧度/秒)", "战斗")]
  59. public float UNIT_TURN_SPEED_SEC = 3.14f;
  60. [DescAttribute("单位允许被鞭尸", "战斗")]
  61. public bool UNIT_CAN_WHIPLASH_BODY = false;
  62. [DescAttribute("单位被击飞向上速度", "受击")]
  63. public float OBJECT_DAMAGE_FLY_ZSPEED_SEC = 10.0f;
  64. [DescAttribute("单位被击飞速度(距离/秒)", "受击")]
  65. public float OBJECT_DAMAGE_FLY_SPEED_SEC = 10.0f;
  66. [DescAttribute("单位被击飞加速度(距离/秒) => (速度=速度+加速度)", "受击")]
  67. public float OBJECT_DAMAGE_FLY_SPEED_ADD = 0f;
  68. [DescAttribute("单位被击飞阻力(每秒递减速度百分比)", "受击")]
  69. public float OBJECT_DAMAGE_FLY_SPEED_ACC = 0f;
  70. [DescAttribute("单位被击飞各项参数浮动值百分比", "受击")]
  71. public float OBJECT_DAMAGE_FLY_ARGS_FACTOR_PCT = 0f;
  72. [DescAttribute("单位受击时间(毫秒)", "受击")]
  73. public int OBJECT_DAMAGE_TIME_MS = 1000;
  74. [DescAttribute("每隔一段时间检测一下是否要追(防止抖动)", "AI")]
  75. public int AI_FOLLOW_AND_ATTACK_HOLD_TIME_MS = 1000;
  76. [DescAttribute("尝试追击过程中,调整射击范围(逃离)的比率", "AI")]
  77. public float AI_FOLLOW_AND_ATTACK_ADJUST_ESCAPE_PCT = 50;
  78. [DescAttribute("观察一定范围的触发器,固定时间固定检测周围变化", "AI")]
  79. public int AI_VIEW_TRIGGER_CHECK_TIME_MS = 1000;
  80. [DescAttribute("移动过程中每次AI变化的停顿时间", "AI")]
  81. public int AI_MOVE_AI_HOLD_TIME_MS = 1000;
  82. [DescAttribute("NPC每隔多长毫秒检测一次最大警戒距离", "AI")]
  83. public int AI_NPC_CHECK_IN_GUARD_LIMIT_TIME_MS = 500;
  84. [DescAttribute("NPC攻击间歇时,有多少几率检测旁边有人,并散开,防止堆积在一个点。(百分比)", "AI")]
  85. public float AI_NPC_ATTACK_IDLE_SCATTER_PCT = 300;
  86. [DescAttribute("NPC散开检测间隔", "AI")]
  87. public int AI_NPC_ATTACK_IDLE_INTERVAL = 3000;
  88. [DescAttribute("仇恨列表上限", "AI")]
  89. public int AI_HATE_SYSTEM_CAPACITY_MS = 50;
  90. }
  91. [MessageType(0x410B)]
  92. [DescAttribute("地块定义信息")]
  93. [Expandable]
  94. public class TerrainDefinitionMap : IExternalizable, ICloneable
  95. {
  96. [DescAttribute("地块定义")]
  97. [Expandable]
  98. public class MapBlockBrush : ICloneable
  99. {
  100. [ColorValueAttribute]
  101. [Desc("颜色值ARGB", "Key")]
  102. public int Value = ColorValueAttribute.COLOR_GREEN;
  103. [Desc("是否阻挡", "Key")]
  104. public bool IsBlock = true;
  105. [Desc("名字")]
  106. public string Name = "";
  107. [Desc("注释")]
  108. public string Desc = "";
  109. [Desc("Tag")]
  110. public string Tag = "";
  111. public MapBlockBrush() { }
  112. public MapBlockBrush(int value, bool is_block, string name)
  113. {
  114. this.Value = value;
  115. this.IsBlock = is_block;
  116. this.Name = name;
  117. }
  118. public object Clone()
  119. {
  120. MapBlockBrush ret = new MapBlockBrush();
  121. ret.Value = this.Value;
  122. ret.IsBlock = this.IsBlock;
  123. ret.Name = this.Name;
  124. ret.Desc = this.Desc;
  125. ret.Tag = this.Tag;
  126. return ret;
  127. }
  128. public override string ToString()
  129. {
  130. return string.Format("[{1}] {2} : {0}", Value.ToString("X8"), IsBlock ? "Block" : "Cross", Name);
  131. }
  132. }
  133. [NotNull]
  134. [ListAttribute(typeof(MapBlockBrush))]
  135. [Desc("地块定义列表")]
  136. public List<MapBlockBrush> Brushes = new List<MapBlockBrush>();
  137. public TerrainDefinitionMap()
  138. {
  139. Brushes.Add(new MapBlockBrush(0, false, "NULL"));
  140. Brushes.Add(new MapBlockBrush(ColorValueAttribute.COLOR_GREEN, true, "Block"));
  141. Brushes.Add(new MapBlockBrush(ColorValueAttribute.COLOR_DARK_GRAY, false, "Safe"));
  142. }
  143. /// <summary>
  144. /// 去从
  145. /// </summary>
  146. public bool ContainsValue(int value)
  147. {
  148. foreach (var b in Brushes)
  149. {
  150. if (b.Value == value)
  151. {
  152. return true;
  153. }
  154. }
  155. return false;
  156. }
  157. public MapBlockBrush GetMapBlockBrush(int value)
  158. {
  159. foreach (var b in Brushes)
  160. {
  161. if (b.Value == value)
  162. {
  163. return b;
  164. }
  165. }
  166. return null;
  167. }
  168. public object Clone()
  169. {
  170. TerrainDefinitionMap ret = new TerrainDefinitionMap();
  171. ret.Brushes = CUtils.CloneList<MapBlockBrush>(this.Brushes);
  172. return ret;
  173. }
  174. public void WriteExternal(IOutputStream output)
  175. {
  176. output.PutS32(Brushes.Count);
  177. foreach (var v in this.Brushes)
  178. {
  179. output.PutS32(v.Value);
  180. output.PutBool(v.IsBlock);
  181. output.PutUTF(v.Name);
  182. output.PutUTF(v.Desc);
  183. output.PutUTF(v.Tag);
  184. }
  185. }
  186. public void ReadExternal(IInputStream input)
  187. {
  188. Brushes.Clear();
  189. int count = input.GetS32();
  190. for (int i = 0; i < count; i++)
  191. {
  192. var v = new MapBlockBrush();
  193. v.Value = input.GetS32();
  194. v.IsBlock = input.GetBool();
  195. v.Name = input.GetUTF();
  196. v.Desc = input.GetUTF();
  197. v.Tag = input.GetUTF();
  198. Brushes.Add(v);
  199. }
  200. }
  201. }
  202. [MessageType(0x410C)]
  203. [DescAttribute("动作定义信息")]
  204. [Expandable]
  205. public class UnitActionDefinitionMap : IExternalizable, ICloneable
  206. {
  207. [DescAttribute("动作定义")]
  208. [Expandable]
  209. public class UnitAction : ICloneable, IExternalizable
  210. {
  211. [DescAttribute("动作", "动作")]
  212. public UnitActionStatus Action = UnitActionStatus.Idle;
  213. [ListAttribute(typeof(UnitActionKeyFrame))]
  214. [DescAttribute("动作序列", "动作")]
  215. public List<UnitActionKeyFrame> ActionQueue = new List<UnitActionKeyFrame>();
  216. public void WriteExternal(IOutputStream output)
  217. {
  218. output.PutEnum8(this.Action);
  219. output.PutStructList(this.ActionQueue);
  220. }
  221. public void ReadExternal(IInputStream input)
  222. {
  223. this.Action = input.GetEnum8<UnitActionStatus>();
  224. this.ActionQueue = input.GetStructList<UnitActionKeyFrame>();
  225. }
  226. public object Clone()
  227. {
  228. UnitAction ret = new UnitAction();
  229. ret.Action = this.Action;
  230. ret.ActionQueue = CUtils.CloneList(this.ActionQueue);
  231. return ret;
  232. }
  233. public override string ToString()
  234. {
  235. return string.Format("{0} : {1}", Action, CUtils.ListToString(ActionQueue));
  236. }
  237. }
  238. [DescAttribute("动作帧定义")]
  239. [Expandable]
  240. public class UnitActionKeyFrame : ICloneable, IExternalizable
  241. {
  242. [DescAttribute("动作名")]
  243. public string ActionName = "f_idle";
  244. [DescAttribute("播放时间(如果多段动作,则需要指定每段时间)")]
  245. public int TimeMS = 0;
  246. [DescAttribute("是否循环")]
  247. public bool Cycle = false;
  248. [DescAttribute("是否淡出")]
  249. public bool CrossFade = false;
  250. [DescAttribute("播放速度")]
  251. public float Speed = 1f;
  252. [DescAttribute("Tag")]
  253. public string Tag = "";
  254. public override string ToString()
  255. {
  256. return ActionName;
  257. }
  258. public void WriteExternal(IOutputStream output)
  259. {
  260. output.PutUTF(this.ActionName);
  261. output.PutS32(this.TimeMS);
  262. output.PutBool(this.Cycle);
  263. output.PutBool(this.CrossFade);
  264. output.PutF32(this.Speed);
  265. output.PutUTF(this.Tag);
  266. }
  267. public void ReadExternal(IInputStream input)
  268. {
  269. this.ActionName = input.GetUTF();
  270. this.TimeMS = input.GetS32();
  271. this.Cycle = input.GetBool();
  272. this.CrossFade = input.GetBool();
  273. this.Speed = input.GetF32();
  274. this.Tag = input.GetUTF();
  275. }
  276. public object Clone()
  277. {
  278. UnitActionKeyFrame ret = new UnitActionKeyFrame();
  279. ret.ActionName = this.ActionName;
  280. ret.TimeMS = this.TimeMS;
  281. ret.Cycle = this.Cycle;
  282. ret.CrossFade = this.CrossFade;
  283. ret.Speed = this.Speed;
  284. ret.Tag = this.Tag;
  285. return ret;
  286. }
  287. }
  288. [ListAttribute(typeof(UnitAction))]
  289. [DescAttribute("动作集合")]
  290. public List<UnitAction> ActionMap = new List<UnitAction>();
  291. public void WriteExternal(IOutputStream output)
  292. {
  293. output.PutStructList(this.ActionMap);
  294. }
  295. public void ReadExternal(IInputStream input)
  296. {
  297. this.ActionMap = input.GetStructList<UnitAction>();
  298. }
  299. public object Clone()
  300. {
  301. UnitActionDefinitionMap ret = new UnitActionDefinitionMap();
  302. ret.ActionMap = CUtils.CloneList(this.ActionMap);
  303. return ret;
  304. }
  305. }
  306. //---------------------------------------------------------------------------------//
  307. /// <summary>
  308. /// 场景基础数据
  309. /// </summary>
  310. [MessageType(0x4001)]
  311. public class ZoneInfo : IExternalizable, ICloneable
  312. {
  313. public int TemplateID { get { return ID; } }
  314. [DescAttribute("ID", "", false)]
  315. public int ID;
  316. /// <summary>
  317. /// 地图总宽
  318. /// </summary>
  319. public int TotalWidth { get { return mXCount * mGridCellW; } }
  320. /// <summary>
  321. /// 地图总高
  322. /// </summary>
  323. public int TotalHeight { get { return mYCount * mGridCellH; } }
  324. /// <summary>
  325. /// 所有地图碰撞块信息
  326. /// </summary>
  327. public int[,] TerrainMatrix { get { return mTerrainMatrix; } }
  328. /// <summary>
  329. /// 地图碰撞格宽
  330. /// </summary>
  331. public int GridCellW { get { return mGridCellW; } }
  332. /// <summary>
  333. /// 地图碰撞格高
  334. /// </summary>
  335. public int GridCellH { get { return mGridCellH; } }
  336. /// <summary>
  337. /// 地图横向格子数
  338. /// </summary>
  339. public int XCount { get { return mXCount; } }
  340. /// <summary>
  341. /// 地图纵向格子数
  342. /// </summary>
  343. public int YCount { get { return mYCount; } }
  344. //------------------------------------------------------------
  345. [DescAttribute("", "", false)]
  346. public int[,] mTerrainMatrix;
  347. [DescAttribute("", "", false)]
  348. public int mXCount;
  349. [DescAttribute("", "", false)]
  350. public int mYCount;
  351. [DescAttribute("", "", false)]
  352. public int mGridCellW;
  353. [DescAttribute("", "", false)]
  354. public int mGridCellH;
  355. //------------------------------------------------------------
  356. public ZoneInfo(int xcount, int ycount, int gridW, int gridH)
  357. {
  358. this.mXCount = xcount;
  359. this.mYCount = ycount;
  360. this.mGridCellW = gridW;
  361. this.mGridCellH = gridH;
  362. this.mTerrainMatrix = new int[xcount, ycount];
  363. }
  364. public ZoneInfo() { }
  365. public int GetID()
  366. {
  367. return ID;
  368. }
  369. public object Clone()
  370. {
  371. ZoneInfo ret = new ZoneInfo();
  372. ret.ID = this.ID;
  373. ret.mXCount = this.mXCount;
  374. ret.mYCount = this.mYCount;
  375. ret.mGridCellW = this.mGridCellW;
  376. ret.mGridCellH = this.mGridCellH;
  377. ret.mTerrainMatrix = new int[mXCount, mYCount];
  378. for (int x = 0; x < mXCount; x++)
  379. {
  380. for (int y = 0; y < mYCount; y++)
  381. {
  382. ret.mTerrainMatrix[x, y] = this.mTerrainMatrix[x, y];
  383. }
  384. }
  385. return ret;
  386. }
  387. public bool TryGetFlag(int bx, int by, out int flag)
  388. {
  389. if (bx < mXCount && bx >= 0 && by < mYCount && by >= 0)
  390. {
  391. flag = mTerrainMatrix[bx, by];
  392. return true;
  393. }
  394. flag = 0;
  395. return false;
  396. }
  397. public void WriteExternal(IOutputStream output)
  398. {
  399. output.PutS32(ID);
  400. output.PutS32(mXCount);
  401. output.PutS32(mYCount);
  402. output.PutS32(mGridCellW);
  403. output.PutS32(mGridCellH);
  404. for (int x = 0; x < mXCount; x++)
  405. {
  406. for (int y = 0; y < mYCount; y++)
  407. {
  408. output.PutS32(mTerrainMatrix[x, y]);
  409. }
  410. }
  411. }
  412. public void ReadExternal(IInputStream input)
  413. {
  414. this.ID = input.GetS32();
  415. this.mXCount = input.GetS32();
  416. this.mYCount = input.GetS32();
  417. this.mGridCellW = input.GetS32();
  418. this.mGridCellH = input.GetS32();
  419. this.mTerrainMatrix = new int[mXCount, mYCount];
  420. for (int x = 0; x < mXCount; x++)
  421. {
  422. for (int y = 0; y < mYCount; y++)
  423. {
  424. this.mTerrainMatrix[x, y] = input.GetS32();
  425. }
  426. }
  427. }
  428. }
  429. //---------------------------------------------------------------------------------//
  430. #region __Templates_Data__
  431. //---------------------------------------------------------------------------------//
  432. /// <summary>
  433. /// 单位模板数据
  434. /// </summary>
  435. [MessageType(0x4002)]
  436. [DescAttribute("单位模板数据")]
  437. [TableClassAttribute("ID")]
  438. public class UnitInfo : ICloneable, ITemplateData, IExternalizable
  439. {
  440. protected static readonly Logger log = LoggerFactory.GetDefLogger();
  441. public int TemplateID { get { return ID; } }
  442. [XmlSerializable()]
  443. public string EditorPath { get; set; }
  444. /// <summary>
  445. /// 单位类型
  446. /// </summary>
  447. public enum UnitType : byte
  448. {
  449. [DescAttribute("玩家")]
  450. TYPE_PLAYER = 1,
  451. [DescAttribute("NPC")]
  452. TYPE_NPC = 2,
  453. [DescAttribute("怪物")]
  454. TYPE_MONSTER = 3,
  455. [DescAttribute("宠物")]
  456. TYPE_PET = 4,
  457. [DescAttribute("召唤物")]
  458. TYPE_SUMMON = 5,
  459. [DescAttribute("建筑")]
  460. TYPE_BUILDING = 6,
  461. [DescAttribute("脚本控制")]
  462. TYPE_MANUAL = 7,
  463. [DescAttribute("触发机关")]
  464. TYPE_TRIGGER = 8,
  465. [DescAttribute("中立无敌意")]
  466. TYPE_NEUTRALITY = 9,
  467. }
  468. //------------------------------------
  469. /// <summary>
  470. /// 单位类型
  471. /// </summary>
  472. [DescAttribute("单位类型", "基础")]
  473. public UnitType UType = UnitType.TYPE_MONSTER;
  474. [DescAttribute(
  475. "单位类型"
  476. + "\n PLAYER=1"
  477. + "\n NPC=2"
  478. + "\n MONSTER=3"
  479. + "\n PET=4"
  480. + "\n SUMMON=5"
  481. + "\n BUILDING=6"
  482. + "\n MANUAL=7"
  483. + "\n TRIGGER=8"
  484. + "\n NEUTRALITY=9",
  485. "基础")]
  486. public int UTypeAsInt { get { return (int)UType; } }
  487. public bool IsSummon { get { return UType == UnitType.TYPE_SUMMON; } }
  488. [DescAttribute("召唤类型", "基础")]
  489. [DependOnProperty("IsSummon")]
  490. public SummonType SumType = SummonType.none;
  491. /// <summary>
  492. /// 模板ID
  493. /// </summary>
  494. [DescAttribute("ID", "", false)]
  495. public int ID;
  496. /// <summary>
  497. /// 单位名字
  498. /// </summary>
  499. [LocalizationTextAttribute]
  500. [DescAttribute("单位名字", "基础")]
  501. public string Name;
  502. [DescAttribute("是否为精英怪", "基础")]
  503. public bool IsElite;
  504. //------------------------------------
  505. /// <summary>
  506. /// 对应的模型文件名
  507. /// </summary>
  508. [DescAttribute("对应的模型文件名", "资源")]
  509. [ResourceIDAttribute]
  510. public string FileName;
  511. [DescAttribute("怪物产生时触发的特效", "资源")]
  512. public LaunchEffect SpawnEffect;
  513. [DescAttribute("怪物脚底的特效", "资源")]
  514. public LaunchEffect FootCircleEffect;
  515. [DescAttribute("怪物死亡时触发的特效", "资源")]
  516. public LaunchEffect DeadEffect;
  517. [DescAttribute("怪物死亡动作播放结束后触发的特效", "资源")]
  518. public LaunchEffect DeadAnimationEndEffect;
  519. [DescAttribute("怪物烂掉时触发的特效", "资源")]
  520. public LaunchEffect RemovedEffect;
  521. [DescAttribute("怪物击碎时触发的特效", "资源")]
  522. public LaunchEffect CrushEffect;
  523. [DescAttribute("怪物受击时触发的特效", "资源")]
  524. public LaunchEffect DamageEffect;
  525. [DescAttribute("缩放比率", "资源")]
  526. public float BodyScale = 1;
  527. [DescAttribute("切换阵营特效", "资源")]
  528. public LaunchEffect ChangeForceEffect;
  529. [DescAttribute("破碎比例", "资源")]
  530. public int HitBreakPrecent;
  531. [DescAttribute("破碎特效", "资源")]
  532. public LaunchEffect HitBreakEffect;
  533. [DescAttribute("预加载资源列表", "资源")]
  534. public string PreloadResources;
  535. //------------------------------------
  536. /// <summary>
  537. /// 身体高度
  538. /// </summary>
  539. [DescAttribute("身体高度", "战斗")]
  540. public float BodyHeight;
  541. /// <summary>
  542. /// 身体尺寸(半径)
  543. /// </summary>
  544. [DescAttribute("身体尺寸(半径)", "战斗")]
  545. public float BodySize = 1;
  546. /// <summary>
  547. /// 警戒距离范围
  548. /// </summary>
  549. [DescAttribute("身体受攻击尺寸(半径)", "战斗")]
  550. public float BodyHitSize = 1;
  551. //------------------------------------
  552. /// <summary>
  553. /// 警戒距离范围
  554. /// </summary>
  555. [DescAttribute("警戒距离范围", "战斗 - 警戒")]
  556. public float GuardRange = 5;
  557. [DescAttribute("最大警戒范围,超过此范围不追击,0表示无限", "战斗 - 警戒")]
  558. public float GuardRangeLimit = 20;
  559. [DescAttribute("分组警戒范围,如果此单位进入战斗,则传给相邻单位Add,0表示不传递", "战斗 - 警戒")]
  560. public float GuardRangeGroup = 5;
  561. public bool IdleRecover { get { return RecoveryIntervalMS > 0; } }
  562. [DescAttribute("恢复间隔(毫秒),脱离战斗后回血间隔时间", "战斗 - 恢复")]
  563. public int RecoveryIntervalMS = 10000;
  564. [DescAttribute("血量恢复/秒", "战斗 - 恢复")]
  565. [DependOnProperty("IdleRecover")]
  566. public int HealthRecoveryPoint = 0;
  567. [DescAttribute("法力恢复/秒", "战斗 - 恢复")]
  568. [DependOnProperty("IdleRecover")]
  569. public int ManaRecoveryPoint = 0;
  570. //------------------------------------
  571. [DescAttribute("体重(>=100不能被击飞)", "战斗")]
  572. public int Weight = 1;
  573. [DescAttribute("是否可移动", "战斗")]
  574. public bool IsMoveable = true;
  575. [DescAttribute("是否可转向", "战斗")]
  576. public bool IsTurnable = true;
  577. //------------------------------------
  578. /// <summary>
  579. /// 移动距离,像素或者码
  580. /// </summary>
  581. [DescAttribute("移动速度(距离/每秒)", "战斗")]
  582. public float MoveSpeedSEC = 6f;
  583. [DescAttribute("转身速度(弧度/秒)", "战斗")]
  584. public float TurnSpeedSEC = float.NaN;
  585. [DescAttribute("受击时间(毫秒)", "战斗")]
  586. public int DamageTimeMS = 10;
  587. //------------------------------------
  588. /// <summary>
  589. /// 此单位普通攻击技能
  590. /// </summary>
  591. [DescAttribute("此单位普通攻击技能", "技能")]
  592. public LaunchSkill BaseSkillID = new LaunchSkill();
  593. /// <summary>
  594. /// 此单位绑定的所有技能ID
  595. /// </summary>
  596. [ListAttribute(typeof(LaunchSkill))]
  597. [DescAttribute("此单位绑定的所有技能ID", "技能")]
  598. public List<LaunchSkill> Skills = new List<LaunchSkill>();
  599. /// <summary>
  600. /// 触发类特效
  601. /// </summary>
  602. [ListAttribute(typeof(LaunchTrigger))]
  603. [DescAttribute("触发类", "技能")]
  604. public List<LaunchTrigger> Triggers = new List<LaunchTrigger>();
  605. //------------------------------------
  606. //------------------------------------
  607. [DescAttribute("法术发射高度(炮口高度)", "炮口")]
  608. public float LaunchSpellHeight;
  609. [DescAttribute("法术发射半径(炮口半径)", "炮口")]
  610. public float LaunchSpellRadius = 0;
  611. //------------------------------------
  612. [DescAttribute("死亡时释放法术(自爆)", "战斗")]
  613. public LaunchSpell DeadLaunchSpell = null;
  614. [DescAttribute("死亡时释放法术(灵魂出窍)", "战斗")]
  615. public LaunchSpell DeadDelayLaunchSpell = null;
  616. //------------------------------------
  617. [DescAttribute("血量", "战斗")]
  618. public int HealthPoint = 100;
  619. [DescAttribute("法力值", "战斗")]
  620. public int ManaPoint = 100;
  621. [DescAttribute("耐力值", "战斗")]
  622. public int StaminaPoint = 100;
  623. [DescAttribute("产生经验", "战斗")]
  624. public int GenExp;
  625. //------------------------------------
  626. /// <summary>
  627. /// 掉落道具列表
  628. /// </summary>
  629. [ListAttribute(typeof(DropItemList))]
  630. [DescAttribute("掉落道具", "掉落")]
  631. public List<DropItemList> DropItemsSet = new List<DropItemList>();
  632. [DescAttribute("被杀死直接获得金币", "掉落")]
  633. public int DropMoney;
  634. //------------------------------------
  635. [DescAttribute("单位背包数量", "背包")]
  636. public int InventorySize = 1;
  637. [ListAttribute(typeof(InventoryItem))]
  638. [DescAttribute("进入战斗携带的道具列表(比如血瓶)", "背包")]
  639. public List<InventoryItem> InventoryList = new List<InventoryItem>();
  640. //------------------------------------
  641. /// <summary>
  642. /// 若是召唤类,则表示存活时间
  643. /// </summary>
  644. [DescAttribute("若是召唤类,则表示存活时间(毫秒)", "战斗")]
  645. public int LifeTimeMS;
  646. /// <summary>
  647. /// 单位出生延时时间,通常播放出生动画
  648. /// </summary>
  649. [DescAttribute("单位出生延时时间,通常播放出生动画(毫秒)", "战斗")]
  650. public int SpawnTimeMS;
  651. /// <summary>
  652. /// 持续时间
  653. /// </summary>
  654. [DescAttribute("单位死亡持续时间,即死亡后多长时间内可继续鞭尸(毫秒)", "战斗")]
  655. public int DeadTimeMS;
  656. /// <summary>
  657. ///
  658. /// </summary>
  659. [DescAttribute("单位死亡之后延迟时间(毫秒),播放 DeadDelayLaunchSpell 特效", "战斗")]
  660. public int DeadDelayTimeMS;
  661. /// <summary>
  662. ///
  663. /// </summary>
  664. [DescAttribute("播放 DeadDelayLaunchSpell 特效的数量", "战斗")]
  665. public int DeadDelaySpellNumber;
  666. public bool HasNumbers
  667. {
  668. get { return DeadDelaySpellNumber > 1; }
  669. }
  670. /// <summary>
  671. ///
  672. /// </summary>
  673. [DescAttribute("播放每一个 DeadDelayLaunchSpell 间隔的时间(单位:毫秒)", "战斗")]
  674. [DependOnProperty("HasNumbers")]
  675. public int DeadDelaySpellIntervalMS;
  676. /// <summary>
  677. /// 复活时间
  678. /// </summary>
  679. [DescAttribute("死亡后多久复活,0表示不能复活(毫秒)", "战斗")]
  680. public int RebirthTimeMS;
  681. //------------------------------------
  682. [DescAttribute("用户自定义标志", "脚本")]
  683. public string UserTag;
  684. //------------------------------------
  685. [DescAttribute("是否为动态创建单位,比如PVP或者根据玩家等级创建的单位", "扩展")]
  686. public bool IsDynamic = false;
  687. [DescAttribute("是否随机名字", "扩展")]
  688. public bool IsRandomName = false;
  689. //------------------------------------
  690. [DescAttribute("单位绑定触发事件ID", "事件")]
  691. [TemplatesIDAttribute(typeof(UnitEventTemplate))]
  692. public List<int> Events = new List<int>();
  693. //------------------------------------
  694. /// <summary>
  695. /// 用户自定义扩展属性
  696. /// </summary>
  697. [DescAttribute("扩展属性", "扩展")]
  698. [Expandable]
  699. [NotNull]
  700. public IUnitProperties Properties;
  701. //------------------------------------
  702. [DescAttribute("自定义字段", "属性", true)]
  703. public string[] Attributes;
  704. //------------------------------------
  705. public UnitInfo()
  706. {
  707. Properties = TemplateManager.Factory.CreateUnitProperties();
  708. }
  709. public int GetID()
  710. {
  711. return ID;
  712. }
  713. public override string ToString()
  714. {
  715. return Name + "(" + ID + ")";
  716. }
  717. public object Clone()
  718. {
  719. UnitInfo ret = new UnitInfo();
  720. ret.EditorPath = this.EditorPath;
  721. ret.UType = this.UType;
  722. ret.ID = this.ID;
  723. ret.Name = this.Name;
  724. ret.IsElite = this.IsElite;
  725. ret.FileName = this.FileName;
  726. ret.SpawnEffect = CUtils.TryClone<LaunchEffect>(this.SpawnEffect);
  727. ret.FootCircleEffect = CUtils.TryClone<LaunchEffect>(this.FootCircleEffect);
  728. ret.DeadEffect = CUtils.TryClone<LaunchEffect>(this.DeadEffect);
  729. ret.RemovedEffect = CUtils.TryClone<LaunchEffect>(this.RemovedEffect);
  730. ret.DeadAnimationEndEffect = CUtils.TryClone<LaunchEffect>(this.DeadAnimationEndEffect);
  731. ret.CrushEffect = CUtils.TryClone<LaunchEffect>(this.CrushEffect);
  732. ret.DamageEffect = CUtils.TryClone<LaunchEffect>(this.DamageEffect);
  733. ret.BodyScale = this.BodyScale;
  734. ret.BodyHeight = this.BodyHeight;
  735. ret.BodySize = this.BodySize;
  736. ret.BodyHitSize = this.BodyHitSize;
  737. ret.GuardRange = this.GuardRange;
  738. ret.GuardRangeLimit = this.GuardRangeLimit;
  739. ret.GuardRangeGroup = this.GuardRangeGroup;
  740. ret.HealthRecoveryPoint = this.HealthRecoveryPoint;
  741. ret.ManaRecoveryPoint = this.ManaRecoveryPoint;
  742. ret.RecoveryIntervalMS = this.RecoveryIntervalMS;
  743. ret.Weight = this.Weight;
  744. ret.MoveSpeedSEC = this.MoveSpeedSEC;
  745. ret.TurnSpeedSEC = this.TurnSpeedSEC;
  746. ret.DamageTimeMS = this.DamageTimeMS;
  747. ret.IsMoveable = this.IsMoveable;
  748. ret.IsTurnable = this.IsTurnable;
  749. ret.BaseSkillID = CUtils.TryClone<LaunchSkill>(this.BaseSkillID);
  750. ret.Skills = CUtils.CloneList<LaunchSkill>(this.Skills);
  751. ret.Triggers = CUtils.CloneList<LaunchTrigger>(this.Triggers);
  752. ret.LaunchSpellHeight = this.LaunchSpellHeight;
  753. ret.LaunchSpellRadius = this.LaunchSpellRadius;
  754. ret.DeadLaunchSpell = this.DeadLaunchSpell;
  755. ret.DeadDelayLaunchSpell = this.DeadDelayLaunchSpell;
  756. ret.HealthPoint = this.HealthPoint;
  757. ret.ManaPoint = this.ManaPoint;
  758. ret.StaminaPoint = this.StaminaPoint;
  759. ret.GenExp = this.GenExp;
  760. ret.DropItemsSet = CUtils.CloneList<DropItemList>(this.DropItemsSet);
  761. ret.DropMoney = this.DropMoney;
  762. ret.InventorySize = this.InventorySize;
  763. ret.InventoryList = CUtils.CloneList<InventoryItem>(this.InventoryList);
  764. ret.LifeTimeMS = this.LifeTimeMS;
  765. ret.SpawnTimeMS = this.SpawnTimeMS;
  766. ret.DeadTimeMS = this.DeadTimeMS;
  767. ret.DeadDelayTimeMS = this.DeadDelayTimeMS;
  768. ret.DeadDelaySpellNumber = this.DeadDelaySpellNumber;
  769. ret.DeadDelaySpellIntervalMS = this.DeadDelaySpellIntervalMS;
  770. ret.RebirthTimeMS = this.RebirthTimeMS;
  771. ret.UserTag = this.UserTag;
  772. ret.IsDynamic = this.IsDynamic;
  773. ret.Events = new List<int>(this.Events);
  774. ret.Properties = CUtils.TryClone<IUnitProperties>(this.Properties);// (IUnitProperties)this.Properties.Clone();
  775. ret.Attributes = CUtils.CloneArray<string>(this.Attributes);
  776. ret.HitBreakPrecent = this.HitBreakPrecent;
  777. ret.HitBreakEffect = CUtils.TryClone<LaunchEffect>(this.HitBreakEffect);
  778. ret.ChangeForceEffect = CUtils.TryClone<LaunchEffect>(this.ChangeForceEffect);
  779. ret.HitBreakPrecent = this.HitBreakPrecent;
  780. ret.HitBreakEffect = this.HitBreakEffect;
  781. ret.IsRandomName = this.IsRandomName;
  782. ret.SumType = this.SumType;
  783. ret.PreloadResources = this.PreloadResources;
  784. return ret;
  785. }
  786. public void WriteExternal(IOutputStream output)
  787. {
  788. output.PutUTF(this.EditorPath);
  789. output.PutEnum8(this.UType);
  790. output.PutS32(this.ID);
  791. output.PutUTF(this.Name);
  792. output.PutBool(this.IsElite);
  793. output.PutUTF(this.FileName);
  794. output.PutExt(this.SpawnEffect);
  795. output.PutExt(this.FootCircleEffect);
  796. output.PutExt(this.DeadEffect);
  797. output.PutExt(this.RemovedEffect);
  798. output.PutExt(this.DeadAnimationEndEffect);
  799. output.PutExt(this.CrushEffect);
  800. output.PutExt(this.DamageEffect);
  801. output.PutF32(this.BodyScale);
  802. output.PutF32(this.BodyHeight);
  803. output.PutF32(this.BodySize);
  804. output.PutF32(this.BodyHitSize);
  805. output.PutF32(this.GuardRange);
  806. output.PutF32(this.GuardRangeLimit);
  807. output.PutF32(this.GuardRangeGroup);
  808. output.PutS32(this.RecoveryIntervalMS);
  809. output.PutS32(this.HealthRecoveryPoint);
  810. output.PutS32(this.ManaRecoveryPoint);
  811. output.PutS32(this.Weight);
  812. output.PutF32(this.MoveSpeedSEC);
  813. output.PutF32(this.TurnSpeedSEC);
  814. output.PutS32(this.DamageTimeMS);
  815. output.PutBool(this.IsMoveable);
  816. output.PutBool(this.IsTurnable);
  817. output.PutExt(this.BaseSkillID);
  818. output.PutList<LaunchSkill>(this.Skills, output.PutExt);
  819. output.PutList<LaunchTrigger>(this.Triggers, output.PutExt);
  820. output.PutF32(this.LaunchSpellHeight);
  821. output.PutF32(this.LaunchSpellRadius);
  822. output.PutExt(this.DeadLaunchSpell);
  823. output.PutExt(this.DeadDelayLaunchSpell);
  824. output.PutS32(this.HealthPoint);
  825. output.PutS32(this.ManaPoint);
  826. output.PutS32(this.StaminaPoint);
  827. output.PutS32(this.GenExp);
  828. output.PutList<DropItemList>(this.DropItemsSet, output.PutExt);
  829. output.PutS32(this.DropMoney);
  830. output.PutS32(this.InventorySize);
  831. output.PutList<InventoryItem>(this.InventoryList, output.PutExt);
  832. output.PutS32(this.LifeTimeMS);
  833. output.PutS32(this.SpawnTimeMS);
  834. output.PutS32(this.DeadTimeMS);
  835. output.PutS32(this.DeadDelayTimeMS);
  836. output.PutS32(this.DeadDelaySpellNumber);
  837. output.PutS32(this.DeadDelaySpellIntervalMS);
  838. output.PutS32(this.RebirthTimeMS);
  839. output.PutUTF(this.UserTag);
  840. output.PutBool(this.IsDynamic);
  841. output.PutList(this.Events, output.PutS32);
  842. output.PutArray(this.Attributes, output.PutUTF);
  843. output.PutExt(this.Properties);
  844. //破碎,切阵营
  845. output.PutExt(this.ChangeForceEffect);
  846. output.PutS32(this.HitBreakPrecent);
  847. output.PutExt(this.HitBreakEffect);
  848. // 随机名字
  849. output.PutBool(this.IsRandomName);
  850. output.PutEnum8(this.SumType);
  851. output.PutUTF(this.PreloadResources);
  852. }
  853. public void ReadExternal(IInputStream input)
  854. {
  855. this.EditorPath = input.GetUTF();
  856. this.UType = input.GetEnum8<UnitType>();
  857. this.ID = input.GetS32();
  858. this.Name = input.GetUTF();
  859. this.IsElite = input.GetBool();
  860. this.FileName = input.GetUTF();
  861. this.SpawnEffect = input.GetExt<LaunchEffect>();
  862. this.FootCircleEffect = input.GetExt<LaunchEffect>();
  863. this.DeadEffect = input.GetExt<LaunchEffect>();
  864. this.RemovedEffect = input.GetExt<LaunchEffect>();
  865. this.DeadAnimationEndEffect = input.GetExt<LaunchEffect>();
  866. this.CrushEffect = input.GetExt<LaunchEffect>();
  867. this.DamageEffect = input.GetExt<LaunchEffect>();
  868. this.BodyScale = input.GetF32();
  869. this.BodyHeight = input.GetF32();
  870. this.BodySize = input.GetF32();
  871. this.BodyHitSize = input.GetF32();
  872. this.GuardRange = input.GetF32();
  873. this.GuardRangeLimit = input.GetF32();
  874. this.GuardRangeGroup = input.GetF32();
  875. this.RecoveryIntervalMS = input.GetS32();
  876. this.HealthRecoveryPoint = input.GetS32();
  877. this.ManaRecoveryPoint = input.GetS32();
  878. this.Weight = input.GetS32();
  879. this.MoveSpeedSEC = input.GetF32();
  880. this.TurnSpeedSEC = input.GetF32();
  881. this.DamageTimeMS = input.GetS32();
  882. this.IsMoveable = input.GetBool();
  883. this.IsTurnable = input.GetBool();
  884. this.BaseSkillID = input.GetExt<LaunchSkill>();
  885. this.Skills = input.GetList<LaunchSkill>(input.GetExt<LaunchSkill>);
  886. this.Triggers = input.GetList<LaunchTrigger>(input.GetExt<LaunchTrigger>);
  887. this.LaunchSpellHeight = input.GetF32();
  888. this.LaunchSpellRadius = input.GetF32();
  889. this.DeadLaunchSpell = input.GetExt<LaunchSpell>();
  890. this.DeadDelayLaunchSpell = input.GetExt<LaunchSpell>();
  891. this.HealthPoint = input.GetS32();
  892. this.ManaPoint = input.GetS32();
  893. this.StaminaPoint = input.GetS32();
  894. this.GenExp = input.GetS32();
  895. this.DropItemsSet = input.GetList<DropItemList>(input.GetExt<DropItemList>);
  896. this.DropMoney = input.GetS32();
  897. this.InventorySize = input.GetS32();
  898. this.InventoryList = input.GetList<InventoryItem>(input.GetExt<InventoryItem>);
  899. this.LifeTimeMS = input.GetS32();
  900. this.SpawnTimeMS = input.GetS32();
  901. this.DeadTimeMS = input.GetS32();
  902. this.DeadDelayTimeMS = input.GetS32();
  903. this.DeadDelaySpellNumber = input.GetS32();
  904. this.DeadDelaySpellIntervalMS = input.GetS32();
  905. this.RebirthTimeMS = input.GetS32();
  906. this.UserTag = input.GetUTF();
  907. this.IsDynamic = input.GetBool();
  908. this.Events = input.GetList<int>(input.GetS32);
  909. this.Attributes = input.GetUTFArray();
  910. this.Properties = input.GetExt<IUnitProperties>(this.Properties);
  911. this.ChangeForceEffect = input.GetExt<LaunchEffect>();
  912. this.HitBreakPrecent = input.GetS32();
  913. this.HitBreakEffect = input.GetExt<LaunchEffect>();
  914. this.IsRandomName = input.GetBool();
  915. this.SumType = input.GetEnum8<SummonType>();
  916. this.PreloadResources = input.GetUTF();
  917. if (UType == UnitType.TYPE_NPC && this.RecoveryIntervalMS > 0)
  918. {
  919. log.Debug("NPC配置了恢复时间, 强行重置" + this.ID);
  920. this.RecoveryIntervalMS = 0;
  921. }
  922. }
  923. public LaunchSkill GetSkillByID(int skillID)
  924. {
  925. if (BaseSkillID != null && skillID == BaseSkillID.SkillID)
  926. {
  927. return BaseSkillID;
  928. }
  929. if (Skills != null)
  930. {
  931. for (int i = 0; i < Skills.Count; i++)
  932. {
  933. if (Skills[i].SkillID == skillID)
  934. {
  935. return Skills[i];
  936. }
  937. }
  938. }
  939. return null;
  940. }
  941. }
  942. //---------------------------------------------------------------------------------//
  943. /// <summary>
  944. /// 技能模板
  945. /// </summary>
  946. [MessageType(0x4003)]
  947. [DescAttribute("技能模板")]
  948. [TableClassAttribute("ID")]
  949. public class SkillTemplate : ICloneable, ITemplateData, IExternalizable
  950. {
  951. public int TemplateID { get { return ID; } }
  952. [XmlSerializable()]
  953. public string EditorPath { get; set; }
  954. // 技能ID
  955. [DescAttribute("ID", "", false)]
  956. public int ID;
  957. /// <summary>
  958. /// 技能名字
  959. /// </summary>
  960. [LocalizationTextAttribute]
  961. [DescAttribute("技能名字", "基础")]
  962. public string Name;
  963. [DescAttribute("技能冷却时间(毫秒)", "基础")]
  964. [DependOnProperty("IsCoolDownWithAction", false)]
  965. public int CoolDownMS = 6000;
  966. //------------------------------------
  967. [DescAttribute("技能图标", "资源")]
  968. public string IconName;
  969. //------------------------------------
  970. /// <summary>
  971. /// 攻击动作序列
  972. /// </summary>
  973. [DescAttribute("攻击动作序列", "动作")]
  974. [ListAttribute(typeof(UnitActionData))]
  975. public List<UnitActionData> ActionQueue = new List<UnitActionData>();
  976. [DescAttribute("以动作时间作为冷却时间, 普攻使用", "动作")]
  977. //只能普攻使用
  978. public bool IsCoolDownWithAction = false;
  979. [DescAttribute("可以打断其他技能和受击状态,受身技能", "动作")]
  980. public bool IsCounter = false;
  981. [DescAttribute("技能优先级,高优先级可打断低优先级", "动作")]
  982. public int ActionPriority = 0;
  983. [DescAttribute("动作播放速率", "动作")]
  984. public float ActionSpeedRate = 1f;
  985. [DescAttribute("技能释放期间,模型缩放(仅客户端有效)", "动作")]
  986. public float BodyScale = 1f;
  987. [DescAttribute("技能释放期间,可手动撤销", "动作")]
  988. public bool IsManuallyCancelable = false;
  989. [DescAttribute("忽略本技能释放中不可打断的时间段(只用作客户端显示用)", "动作")]
  990. public bool IgnoreMyUncancelable = false;
  991. //------------------------------------
  992. [DescAttribute("每次释放只做一个动作,多段攻击", "多段攻击")]
  993. public bool IsSingleAction = false;
  994. [DependOnProperty("IsSingleAction")]
  995. [DescAttribute("多段攻击间隔有效时间", "多段攻击")]
  996. public int SingleActionCoolDownMS = 500;
  997. //------------------------------------
  998. [DescAttribute("攻击距离", "攻击范围")]
  999. public float AttackRange = 3;
  1000. [DescAttribute("攻击角度范围(弧度)\n如果角度为0,则为单体攻击", "攻击范围")]
  1001. public float AttackAngle = 0;
  1002. [DescAttribute("单体攻击,只在目标处于攻击范围才产生伤害", "攻击范围")]
  1003. public bool AttackMustBeInRange = true;
  1004. [DescAttribute("保持攻击距离(NPC会保持一段距离再攻击)大于0启效", "攻击范围")]
  1005. public float AttackKeepRange = 0;
  1006. [DescAttribute("自动战斗,跟随目标", "攻击范围")]
  1007. public bool AutoFightFollower = false;
  1008. //------------------------------------
  1009. [DescAttribute("技能当前储存次数")]
  1010. public short CurUseTimes = -1;
  1011. [DescAttribute("法术是否从自己身上发出", "释放")]
  1012. public bool IsLaunchBody = true;
  1013. [DescAttribute("吟唱时间(毫秒)大于0启效", "释放")]
  1014. public int ChantTimeMS = 0;
  1015. //------------------------------------
  1016. public enum CastTarget : byte
  1017. {
  1018. [DescAttribute("敌人")]
  1019. Enemy = 0,
  1020. [DescAttribute("友军")]
  1021. Alias = 1,
  1022. [DescAttribute("自己")]
  1023. Self = 2,
  1024. [DescAttribute("宠物为主人")]
  1025. PetForMaster = 3,
  1026. [DescAttribute("任何单位")]
  1027. EveryOne = 4,
  1028. [DescAttribute("无类型")]
  1029. NA = 5,
  1030. [DescAttribute("除自己之外友军")]
  1031. AlliesExcludeSelf = 6,
  1032. [DescAttribute("包括自己友军")]
  1033. AlliesIncludeSelf = 7,
  1034. [DescAttribute("除自己之外所有")]
  1035. EveryOneExcludeSelf = 8,
  1036. [DescAttribute("自己和敌人")]
  1037. EnemyAndSelf = 9,
  1038. }
  1039. [DescAttribute("技能期望作用目标", "释放")]
  1040. public CastTarget ExpectTarget = CastTarget.Enemy;
  1041. //------------------------------------
  1042. public enum SelectRange : byte
  1043. {
  1044. [DescAttribute("无")]
  1045. NA,
  1046. [DescAttribute("圆形区域")]
  1047. Round,
  1048. [DescAttribute("直线")]
  1049. Line,
  1050. [DescAttribute("矩形区域")]
  1051. Rect,
  1052. [DescAttribute("扇形区域")]
  1053. Fan,
  1054. }
  1055. //------------------------------------
  1056. [DescAttribute("释放时是否选择方向", "释放范围")]
  1057. public bool IsSelectRange = false;
  1058. [DependOnProperty("IsSelectRange")]
  1059. [DescAttribute("选择方向类型", "释放范围")]
  1060. public SelectRange SelectRangeType = SelectRange.NA;
  1061. [DependOnProperty("IsSelectRange")]
  1062. [DescAttribute("选择方向尺寸", "释放范围")]
  1063. public float SelectRangeSize;
  1064. //------------------------------------
  1065. [DescAttribute("释放消耗血量", "消耗")]
  1066. public int CostHP;
  1067. [DescAttribute("释放消耗法力", "消耗")]
  1068. public int CostMP;
  1069. //------------------------------------
  1070. /// <summary>
  1071. /// 用户自定义扩展属性
  1072. /// </summary>
  1073. [DescAttribute("扩展属性", "扩展")]
  1074. [Expandable]
  1075. [NotNull]
  1076. public ISkillProperties Properties = TemplateManager.Factory.CreateSkillProperties();
  1077. //------------------------------------
  1078. public SkillTemplate() { }
  1079. public SkillTemplate(int id)
  1080. {
  1081. this.ID = id;
  1082. }
  1083. public int GetID()
  1084. {
  1085. return ID;
  1086. }
  1087. public override string ToString()
  1088. {
  1089. return Name + "(" + ID + ")";
  1090. }
  1091. public UnitActionData GetActionByName(string name)
  1092. {
  1093. foreach (UnitActionData act in ActionQueue)
  1094. {
  1095. if (name.Equals(act.ActionName))
  1096. {
  1097. return act;
  1098. }
  1099. }
  1100. return null;
  1101. }
  1102. public int ToUnitSkillTotalTime(float fastCastRate)
  1103. {
  1104. return (int)(this.CoolDownMS * Math.Max(0, 1f - fastCastRate));
  1105. }
  1106. public int ActionQueueTimeMS
  1107. {
  1108. get
  1109. {
  1110. int ret = 0;
  1111. for (int i = 0; i < ActionQueue.Count; i++)
  1112. {
  1113. ret += ActionQueue[i].TotalTimeMS;
  1114. }
  1115. return ret;
  1116. }
  1117. }
  1118. public int[] ActionQueueTimeArray
  1119. {
  1120. get
  1121. {
  1122. int[] ret = new int[ActionQueue.Count];
  1123. for (int i = ret.Length - 1; i >= 0; --i)
  1124. {
  1125. ret[i] = ActionQueue[i].TotalTimeMS;
  1126. }
  1127. return ret;
  1128. }
  1129. }
  1130. public object Clone()
  1131. {
  1132. SkillTemplate ret = new SkillTemplate();
  1133. ret.EditorPath = this.EditorPath;
  1134. ret.ID = this.ID;
  1135. ret.Name = this.Name;
  1136. ret.IconName = this.IconName;
  1137. ret.ActionQueue = CUtils.CloneList<UnitActionData>(this.ActionQueue);
  1138. ret.IsSingleAction = this.IsSingleAction;
  1139. ret.SingleActionCoolDownMS = this.SingleActionCoolDownMS;
  1140. ret.IsCoolDownWithAction = this.IsCoolDownWithAction;
  1141. ret.IsCounter = this.IsCounter;
  1142. ret.ActionPriority = this.ActionPriority;
  1143. ret.CoolDownMS = this.CoolDownMS;
  1144. ret.ActionSpeedRate = this.ActionSpeedRate;
  1145. ret.IsManuallyCancelable = this.IsManuallyCancelable;
  1146. ret.IgnoreMyUncancelable = this.IgnoreMyUncancelable;
  1147. ret.BodyScale = this.BodyScale;
  1148. ret.AttackRange = this.AttackRange;
  1149. ret.AttackAngle = this.AttackAngle;
  1150. ret.AttackMustBeInRange = this.AttackMustBeInRange;
  1151. ret.AttackKeepRange = this.AttackKeepRange;
  1152. ret.AutoFightFollower = this.AutoFightFollower;
  1153. ret.IsLaunchBody = this.IsLaunchBody;
  1154. ret.ChantTimeMS = this.ChantTimeMS;
  1155. ret.IsSelectRange = this.IsSelectRange;
  1156. ret.SelectRangeType = this.SelectRangeType;
  1157. ret.SelectRangeSize = this.SelectRangeSize;
  1158. ret.CostHP = this.CostHP;
  1159. ret.CostMP = this.CostMP;
  1160. ret.ExpectTarget = this.ExpectTarget;
  1161. //ret.CurUseTimes = this.CurUseTimes;
  1162. ret.Properties = CUtils.TryClone<ISkillProperties>(this.Properties);
  1163. return ret;
  1164. }
  1165. public void WriteExternal(IOutputStream output)
  1166. {
  1167. output.PutUTF(this.EditorPath);
  1168. output.PutS32(this.ID);
  1169. output.PutUTF(this.Name);
  1170. output.PutUTF(this.IconName);
  1171. output.PutList(this.ActionQueue, output.PutExt);
  1172. output.PutBool(this.IsSingleAction);
  1173. output.PutS32(this.SingleActionCoolDownMS);
  1174. output.PutBool(this.IsCoolDownWithAction);
  1175. output.PutBool(this.IsCounter);
  1176. output.PutS32(this.ActionPriority);
  1177. output.PutS32(this.CoolDownMS);
  1178. output.PutF32(this.ActionSpeedRate);
  1179. output.PutBool(this.IsManuallyCancelable);
  1180. output.PutBool(this.IgnoreMyUncancelable);
  1181. output.PutF32(this.BodyScale);
  1182. output.PutF32(this.AttackRange);
  1183. output.PutF32(this.AttackAngle);
  1184. output.PutBool(this.AttackMustBeInRange);
  1185. output.PutF32(this.AttackKeepRange);
  1186. output.PutBool(this.AutoFightFollower);
  1187. output.PutBool(this.IsLaunchBody);
  1188. output.PutS32(this.ChantTimeMS);
  1189. output.PutBool(this.IsSelectRange);
  1190. output.PutEnum8(this.SelectRangeType);
  1191. output.PutF32(this.SelectRangeSize);
  1192. output.PutS32(this.CostHP);
  1193. output.PutS32(this.CostMP);
  1194. output.PutEnum8(this.ExpectTarget);
  1195. output.PutS16(this.CurUseTimes);
  1196. output.PutExt(this.Properties);
  1197. }
  1198. public void ReadExternal(IInputStream input)
  1199. {
  1200. this.EditorPath = input.GetUTF();
  1201. this.ID = input.GetS32();
  1202. this.Name = input.GetUTF();
  1203. this.IconName = input.GetUTF();
  1204. this.ActionQueue = input.GetList<UnitActionData>(input.GetExt<UnitActionData>);
  1205. this.IsSingleAction = input.GetBool();
  1206. this.SingleActionCoolDownMS = input.GetS32();
  1207. this.IsCoolDownWithAction = input.GetBool();
  1208. this.IsCounter = input.GetBool();
  1209. this.ActionPriority = input.GetS32();
  1210. this.CoolDownMS = input.GetS32();
  1211. this.ActionSpeedRate = input.GetF32();
  1212. this.IsManuallyCancelable = input.GetBool();
  1213. this.IgnoreMyUncancelable = input.GetBool();
  1214. this.BodyScale = input.GetF32();
  1215. this.AttackRange = input.GetF32();
  1216. this.AttackAngle = input.GetF32();
  1217. this.AttackMustBeInRange = input.GetBool();
  1218. this.AttackKeepRange = input.GetF32();
  1219. this.AutoFightFollower = input.GetBool();
  1220. this.IsLaunchBody = input.GetBool();
  1221. this.ChantTimeMS = input.GetS32();
  1222. this.IsSelectRange = input.GetBool();
  1223. this.SelectRangeType = input.GetEnum8<SelectRange>();
  1224. this.SelectRangeSize = input.GetF32();
  1225. this.CostHP = input.GetS32();
  1226. this.CostMP = input.GetS32();
  1227. this.ExpectTarget = input.GetEnum8<CastTarget>();
  1228. this.CurUseTimes = input.GetS16();
  1229. this.Properties = input.GetExt<ISkillProperties>(this.Properties);
  1230. }
  1231. }
  1232. //---------------------------------------------------------------------------------//
  1233. /// <summary>
  1234. /// 单位动作模板
  1235. /// </summary>
  1236. [MessageType(0x4004)]
  1237. [DescAttribute("单位动作")]
  1238. [Expandable]
  1239. public class UnitActionData : ICloneable, IExternalizable
  1240. {
  1241. [DescAttribute("总动作时间(毫秒)", "Action")]
  1242. public int TotalTimeMS;
  1243. [DescAttribute("动作播放速率增加(加法)", "动作")]
  1244. public float ActionSpeedRate = 0.0f;
  1245. [DescAttribute("单一动作类型,0-普通, 1,蓄力动作,2-多段式动作", "Action")]
  1246. //蓄力动作,显示倒计时圈
  1247. //多段式动作,显示倒计时圈 + 倒计时
  1248. public ActionEnum SigleActionType;
  1249. [DescAttribute("动作名字, IsSingleAction=false才有效", "Action")]
  1250. public string ActionName;
  1251. [DependOnProperty("IsControlMoveable", true)]
  1252. [DescAttribute("移动动作名字", "Action")]
  1253. public string MoveActionName;
  1254. [DescAttribute("动作对应的特效,通常用作刀光", "Action")]
  1255. [ResourceIDAttribute]
  1256. public string ActionEffectFileName;
  1257. [DescAttribute("动作是否循环", "Action")]
  1258. public bool IsCycAction;
  1259. [DescAttribute("显示蓄力倒计时条时间(毫秒)", "Action")]
  1260. public int ShowChargeTimeMS = 0;
  1261. [DescAttribute("移动可取消动作", "状态")]
  1262. public bool IsCancelable = false;
  1263. [DescAttribute("技能可取消动作", "状态")]
  1264. public bool IsCancelableBySkill = false;
  1265. [DescAttribute("技能能否被下一段替代", "状态")]
  1266. public bool IsCancelBySkillNext = false;
  1267. [DescAttribute("是否进入霸体状态,不会被打断", "状态")]
  1268. public bool IsNoneBlock = false;
  1269. [DescAttribute("动作期间是否无碰撞", "状态")]
  1270. public bool IsNoneTouch = false;
  1271. [DescAttribute("动作中是否面向目标", "状态")]
  1272. public bool IsFaceToTarget = true;
  1273. [DescAttribute("动作是否隐身", "状态")]
  1274. public bool IsInvisible = false;
  1275. [DescAttribute("动作中是否可以控制移动", "状态")]
  1276. public bool IsControlMoveable = false;
  1277. [DescAttribute("动作中可以控制转向", "状态")]
  1278. public bool IsControlFaceable = false;
  1279. //新增动作对应Icon
  1280. [DescAttribute("是否换图", "资源")]
  1281. public bool IsChangeIcon = false;
  1282. [DescAttribute("图片名字", "资源")]
  1283. [DependOnProperty("IsChangeIcon", true)]
  1284. public string IconName;
  1285. [DescAttribute("攻击范围改变", "攻击范围")]
  1286. public AttackShape OverrideAttackShape;
  1287. /// <summary>
  1288. /// 所有关键帧
  1289. /// </summary>
  1290. [ListAttribute(typeof(KeyFrame))]
  1291. [DescAttribute("所有关键帧", "关键帧")]
  1292. public List<KeyFrame> KeyFrames = new List<KeyFrame>();
  1293. public bool IsBodyHit
  1294. {
  1295. get
  1296. {
  1297. if (IsMoveToTarget) return false;
  1298. if (IsJumpToTarget) return false;
  1299. return BodyHit != null;
  1300. }
  1301. }
  1302. /// <summary>
  1303. /// 身体攻击判定
  1304. /// </summary>
  1305. [DependOnProperty("IsMoveToTarget", false)]
  1306. [DependOnProperty("IsJumpToTarget", false)]
  1307. [DescAttribute("身体攻击判定", "身体攻击")]
  1308. public AttackProp BodyHit;
  1309. [DependOnProperty("IsBodyHit")]
  1310. [DescAttribute("身体攻击判定范围", "身体攻击")]
  1311. public float BodyHitSize;
  1312. [DependOnProperty("IsBodyHit")]
  1313. [DescAttribute("身体攻击后立即切换动作", "身体攻击")]
  1314. public bool BodyHitNextAction;
  1315. [DescAttribute("移动到目标", "位移 - 冲锋")]
  1316. public bool IsMoveToTarget = false;
  1317. [DescAttribute("移动到目标速度", "位移 - 冲锋")]
  1318. [DependOnProperty("IsMoveToTarget")]
  1319. public float MoveToTargetSpeedSEC = 10;
  1320. [DescAttribute("移动到目标根据(距离/动作时间)来算速度,如果目标在原地,则原地跳跃。", "位移 - 跳跃")]
  1321. [DependOnProperty("IsMoveToTarget", false)]
  1322. public bool IsJumpToTarget = false;
  1323. [DescAttribute("跳跃高度", "位移 - 跳跃")]
  1324. [DependOnProperty("IsJumpToTarget")]
  1325. public float JumpToTargetHeightZ = 1;
  1326. [DescAttribute("在攻击范围内,如果位移则挤开目标", "碰撞")]
  1327. [DependOnProperty("IsMoveToTarget", false)]
  1328. [DependOnProperty("IsJumpToTarget", false)]
  1329. public bool BodyBlockOnAttackRange = false;
  1330. [DescAttribute("显示技能引导光圈(必须先打开扩展属性中的ShowLaunchGuide)", "控制")]
  1331. public bool IsShowSkillGuide = false;
  1332. [DescAttribute("增加技能按钮遮罩", "资源")]
  1333. public bool IsAddSkillBtnBlock = false;
  1334. [DescAttribute("动作的音效文件名", "资源")]
  1335. public string ActionAudioName;
  1336. [DescAttribute("动作的音效文件是否循环播放", "资源")]
  1337. public bool IsAudioLoop;
  1338. public UnitActionData() { }
  1339. public override string ToString()
  1340. {
  1341. return "动作: " + ActionName + " (" + TotalTimeMS + "(毫秒))";
  1342. }
  1343. public object Clone()
  1344. {
  1345. UnitActionData ret = new UnitActionData();
  1346. ret.ShowChargeTimeMS = this.ShowChargeTimeMS;
  1347. ret.TotalTimeMS = this.TotalTimeMS;
  1348. ret.ActionName = this.ActionName;
  1349. ret.ActionEffectFileName = this.ActionEffectFileName;
  1350. ret.IsCycAction = this.IsCycAction;
  1351. ret.IsCancelable = this.IsCancelable;
  1352. ret.IsCancelableBySkill = this.IsCancelableBySkill;
  1353. ret.IsCancelBySkillNext = this.IsCancelBySkillNext;
  1354. ret.IsNoneBlock = this.IsNoneBlock;
  1355. ret.IsNoneTouch = this.IsNoneTouch;
  1356. ret.IsFaceToTarget = this.IsFaceToTarget;
  1357. ret.IsInvisible = this.IsInvisible;
  1358. ret.IsControlMoveable = this.IsControlMoveable;
  1359. ret.IsControlFaceable = this.IsControlFaceable;
  1360. ret.IsChangeIcon = this.IsChangeIcon;
  1361. ret.IconName = this.IconName;
  1362. ret.OverrideAttackShape = CUtils.TryClone<AttackShape>(this.OverrideAttackShape);
  1363. ret.KeyFrames = CUtils.CloneList<KeyFrame>(this.KeyFrames);
  1364. ret.BodyHit = CUtils.TryClone<AttackProp>(this.BodyHit);
  1365. ret.BodyHitSize = this.BodyHitSize;
  1366. ret.BodyHitNextAction = this.BodyHitNextAction;
  1367. ret.IsMoveToTarget = this.IsMoveToTarget;
  1368. ret.MoveToTargetSpeedSEC = this.MoveToTargetSpeedSEC;
  1369. ret.IsJumpToTarget = this.IsJumpToTarget;
  1370. ret.JumpToTargetHeightZ = this.JumpToTargetHeightZ;
  1371. ret.BodyBlockOnAttackRange = this.BodyBlockOnAttackRange;
  1372. ret.IsShowSkillGuide = this.IsShowSkillGuide;
  1373. ret.SigleActionType = this.SigleActionType;
  1374. ret.MoveActionName = this.MoveActionName;
  1375. ret.ActionSpeedRate = this.ActionSpeedRate;
  1376. ret.IsAddSkillBtnBlock = this.IsAddSkillBtnBlock;
  1377. ret.ActionAudioName = this.ActionAudioName;
  1378. ret.IsAudioLoop = this.IsAudioLoop;
  1379. return ret;
  1380. }
  1381. public void WriteExternal(IOutputStream output)
  1382. {
  1383. output.PutS32(this.TotalTimeMS);
  1384. output.PutS32(this.ShowChargeTimeMS);
  1385. output.PutUTF(this.ActionName);
  1386. output.PutUTF(this.ActionEffectFileName);
  1387. output.PutBool(this.IsCycAction);
  1388. output.PutBool(this.IsCancelable);
  1389. output.PutBool(this.IsCancelableBySkill);
  1390. output.PutBool(this.IsCancelBySkillNext);
  1391. output.PutBool(this.IsNoneBlock);
  1392. output.PutBool(this.IsNoneTouch);
  1393. output.PutBool(this.IsFaceToTarget);
  1394. output.PutBool(this.IsInvisible);
  1395. output.PutBool(this.IsControlMoveable);
  1396. output.PutBool(this.IsControlFaceable);
  1397. output.PutBool(this.IsChangeIcon);
  1398. output.PutUTF(this.IconName);
  1399. output.PutExt(this.OverrideAttackShape);
  1400. output.PutList<KeyFrame>(this.KeyFrames, output.PutExt);
  1401. output.PutExt(this.BodyHit);
  1402. output.PutF32(this.BodyHitSize);
  1403. output.PutBool(this.BodyHitNextAction);
  1404. output.PutBool(this.IsMoveToTarget);
  1405. output.PutF32(this.MoveToTargetSpeedSEC);
  1406. output.PutBool(this.IsJumpToTarget);
  1407. output.PutF32(this.JumpToTargetHeightZ);
  1408. output.PutBool(this.BodyBlockOnAttackRange);
  1409. output.PutBool(this.IsShowSkillGuide);
  1410. output.PutEnum8(this.SigleActionType);
  1411. output.PutUTF(this.MoveActionName);
  1412. output.PutF32(this.ActionSpeedRate);
  1413. output.PutBool(this.IsAddSkillBtnBlock);
  1414. output.PutUTF(this.ActionAudioName);
  1415. output.PutBool(this.IsAudioLoop);
  1416. }
  1417. public void ReadExternal(IInputStream input)
  1418. {
  1419. this.TotalTimeMS = input.GetS32();
  1420. this.ShowChargeTimeMS = input.GetS32();
  1421. this.ActionName = input.GetUTF();
  1422. this.ActionEffectFileName = input.GetUTF();
  1423. this.IsCycAction = input.GetBool();
  1424. this.IsCancelable = input.GetBool();
  1425. this.IsCancelableBySkill = input.GetBool();
  1426. this.IsCancelBySkillNext = input.GetBool();
  1427. this.IsNoneBlock = input.GetBool();
  1428. this.IsNoneTouch = input.GetBool();
  1429. this.IsFaceToTarget = input.GetBool();
  1430. this.IsInvisible = input.GetBool();
  1431. this.IsControlMoveable = input.GetBool();
  1432. this.IsControlFaceable = input.GetBool();
  1433. this.IsChangeIcon = input.GetBool();
  1434. this.IconName = input.GetUTF();
  1435. this.OverrideAttackShape = input.GetExt<AttackShape>();
  1436. this.KeyFrames = input.GetList<KeyFrame>(input.GetExt<KeyFrame>);
  1437. this.BodyHit = input.GetExt<AttackProp>();
  1438. this.BodyHitSize = input.GetF32();
  1439. this.BodyHitNextAction = input.GetBool();
  1440. this.IsMoveToTarget = input.GetBool();
  1441. this.MoveToTargetSpeedSEC = input.GetF32();
  1442. this.IsJumpToTarget = input.GetBool();
  1443. this.JumpToTargetHeightZ = input.GetF32();
  1444. this.BodyBlockOnAttackRange = input.GetBool();
  1445. this.IsShowSkillGuide = input.GetBool();
  1446. this.SigleActionType = input.GetEnum8<ActionEnum>();
  1447. this.MoveActionName = input.GetUTF();
  1448. this.ActionSpeedRate = input.GetF32();
  1449. this.IsAddSkillBtnBlock = input.GetBool();
  1450. this.ActionAudioName = input.GetUTF();
  1451. this.IsAudioLoop = input.GetBool();
  1452. }
  1453. //------------------------------------------------------------
  1454. /// <summary>
  1455. /// 动作状态数据
  1456. /// </summary>
  1457. [MessageType(0x4107)]
  1458. [DescAttribute("动作关键帧数据")]
  1459. [Expandable]
  1460. public class StatusChange : ICloneable, IExternalizable
  1461. {
  1462. [DescAttribute("移动可取消动作", "状态")]
  1463. public bool IsCancelable = false;
  1464. [DescAttribute("技能可取消动作", "状态")]
  1465. public bool IsCancelableBySkill = false;
  1466. [DescAttribute("是否进入霸体状态,不会被打断", "状态")]
  1467. public bool IsNoneBlock = false;
  1468. [DescAttribute("动作期间是否无碰撞", "状态")]
  1469. public bool IsNoneTouch = false;
  1470. [DescAttribute("动作中是否面向目标", "状态")]
  1471. public bool IsFaceToTarget = false;
  1472. [DescAttribute("动作是否隐身", "状态")]
  1473. public bool IsInvisible = false;
  1474. [DescAttribute("动作中是否可以控制移动", "状态")]
  1475. public bool IsControlMoveable = false;
  1476. [DescAttribute("动作中可以控制转向", "状态")]
  1477. public bool IsControlFaceable = false;
  1478. public override string ToString()
  1479. {
  1480. return string.Format("{0}{1}{2}{3}{4}{5}{6}{7}",
  1481. IsCancelable ? "移动可取消," : "",
  1482. IsCancelableBySkill ? "技能可取消," : "",
  1483. IsNoneBlock ? "霸体," : "",
  1484. IsNoneTouch ? "无碰撞," : "",
  1485. IsFaceToTarget ? "面向目标," : "",
  1486. IsInvisible ? "隐身," : "",
  1487. IsControlMoveable ? "可控制移动," : "",
  1488. IsControlFaceable ? "可控制转向," : "");
  1489. }
  1490. public object Clone()
  1491. {
  1492. StatusChange ret = new StatusChange();
  1493. ret.IsCancelable = this.IsCancelable;
  1494. ret.IsCancelableBySkill = this.IsCancelableBySkill;
  1495. ret.IsNoneBlock = this.IsNoneBlock;
  1496. ret.IsNoneTouch = this.IsNoneTouch;
  1497. ret.IsFaceToTarget = this.IsFaceToTarget;
  1498. ret.IsInvisible = this.IsInvisible;
  1499. ret.IsControlMoveable = this.IsControlMoveable;
  1500. ret.IsControlFaceable = this.IsControlFaceable;
  1501. return ret;
  1502. }
  1503. public void WriteExternal(IOutputStream output)
  1504. {
  1505. output.PutBool(this.IsCancelable);
  1506. output.PutBool(this.IsCancelableBySkill);
  1507. output.PutBool(this.IsNoneBlock);
  1508. output.PutBool(this.IsNoneTouch);
  1509. output.PutBool(this.IsFaceToTarget);
  1510. output.PutBool(this.IsInvisible);
  1511. output.PutBool(this.IsControlMoveable);
  1512. output.PutBool(this.IsControlFaceable);
  1513. }
  1514. public void ReadExternal(IInputStream input)
  1515. {
  1516. this.IsCancelable = input.GetBool();
  1517. this.IsCancelableBySkill = input.GetBool();
  1518. this.IsNoneBlock = input.GetBool();
  1519. this.IsNoneTouch = input.GetBool();
  1520. this.IsFaceToTarget = input.GetBool();
  1521. this.IsInvisible = input.GetBool();
  1522. this.IsControlMoveable = input.GetBool();
  1523. this.IsControlFaceable = input.GetBool();
  1524. }
  1525. }
  1526. //------------------------------------------------------------
  1527. [MessageType(0x4108)]
  1528. [DescAttribute("动作攻击范围")]
  1529. [Expandable]
  1530. public class AttackShape : ICloneable, IExternalizable
  1531. {
  1532. public enum Shape : byte
  1533. {
  1534. [DescAttribute("单体")]
  1535. Single = CommonAI.Zone.Helper.AttackShape.Single,
  1536. [DescAttribute("圆形")]
  1537. Round = CommonAI.Zone.Helper.AttackShape.Round,
  1538. [DescAttribute("扇形")]
  1539. Fan = CommonAI.Zone.Helper.AttackShape.Fan,
  1540. [DescAttribute("胶囊条状")]
  1541. Strip = CommonAI.Zone.Helper.AttackShape.Strip,
  1542. [DescAttribute("胶囊射线(以原点出去)")]
  1543. StripRay = CommonAI.Zone.Helper.AttackShape.StripRay,
  1544. [DescAttribute("胶囊射线,接触到最近")]
  1545. StripRayTouchEnd = CommonAI.Zone.Helper.AttackShape.StripRayTouchEnd,
  1546. [DescAttribute("方形条状")]
  1547. RectStrip = CommonAI.Zone.Helper.AttackShape.RectStrip,
  1548. [DescAttribute("方形射线(以原点出去)")]
  1549. RectStripRay = CommonAI.Zone.Helper.AttackShape.RectStripRay,
  1550. [DescAttribute("横向胶囊条状")]
  1551. WideStrip = CommonAI.Zone.Helper.AttackShape.WideStrip,
  1552. [DescAttribute("圆环,中间是空的")]
  1553. Circle = CommonAI.Zone.Helper.AttackShape.Circle,
  1554. }
  1555. [DescAttribute("攻击范围类型", "攻击范围")]
  1556. public Shape AShape = Shape.Round;
  1557. [DescAttribute("半径(Round, Fan, Circle)长度(Strip, StripRay,StripRayTouchEnd, RectStrip, RectStripRay, LineToTarget, WideStrip)", "攻击范围")]
  1558. public float AttackRange = 1;
  1559. [DescAttribute("角度(Fan)", "攻击范围")]
  1560. [DependOnProperty("IsShapeFan")]
  1561. public float AttackAngle = 1;
  1562. [DescAttribute("宽度,粗度(Strip, StripRay,StripRayTouchEnd,RectStrip, RectStripRay, WideStrip),环粗度(Circle)", "攻击范围")]
  1563. [DependOnProperty("IsShapeStrip")]
  1564. public float StripWide = 1;
  1565. [DescAttribute("初始点偏移", "身体")]
  1566. public float OffsetRadius = 0;
  1567. public bool IsSingle { get { return AShape == Shape.Single; } }
  1568. public bool IsShapeFan { get { return AShape == Shape.Fan; } }
  1569. public bool IsShapeStrip
  1570. {
  1571. get
  1572. {
  1573. switch (AShape)
  1574. {
  1575. case Shape.Strip:
  1576. case Shape.StripRay:
  1577. case Shape.StripRayTouchEnd:
  1578. case Shape.Circle:
  1579. case Shape.RectStrip:
  1580. case Shape.RectStripRay:
  1581. case Shape.WideStrip:
  1582. return true;
  1583. }
  1584. return false;
  1585. }
  1586. }
  1587. public override string ToString()
  1588. {
  1589. return string.Format("重定向攻击范围:{0}", AShape);
  1590. }
  1591. public object Clone()
  1592. {
  1593. AttackShape ret = new AttackShape();
  1594. ret.AShape = this.AShape;
  1595. ret.AttackRange = this.AttackRange;
  1596. ret.AttackAngle = this.AttackAngle;
  1597. ret.StripWide = this.StripWide;
  1598. ret.OffsetRadius = this.OffsetRadius;
  1599. return ret;
  1600. }
  1601. public void WriteExternal(IOutputStream output)
  1602. {
  1603. output.PutEnum8(this.AShape);
  1604. output.PutF32(this.AttackRange);
  1605. output.PutF32(this.AttackAngle);
  1606. output.PutF32(this.StripWide);
  1607. output.PutF32(this.OffsetRadius);
  1608. }
  1609. public void ReadExternal(IInputStream input)
  1610. {
  1611. this.AShape = input.GetEnum8<Shape>();
  1612. this.AttackRange = input.GetF32();
  1613. this.AttackAngle = input.GetF32();
  1614. this.StripWide = input.GetF32();
  1615. this.OffsetRadius = input.GetF32();
  1616. }
  1617. }
  1618. //-------------------------------------------------------------------------------------
  1619. //------------------------------------------------------------
  1620. [MessageType(0x4109)]
  1621. [DescAttribute("动作攻击范围")]
  1622. [Expandable]
  1623. public class ThrowTarget : ICloneable, IExternalizable
  1624. {
  1625. public override string ToString()
  1626. {
  1627. return string.Format("重定向攻击范");
  1628. }
  1629. public object Clone()
  1630. {
  1631. ThrowTarget ret = new ThrowTarget();
  1632. return ret;
  1633. }
  1634. public void WriteExternal(IOutputStream output)
  1635. {
  1636. }
  1637. public void ReadExternal(IInputStream input)
  1638. {
  1639. }
  1640. }
  1641. //-------------------------------------------------------------------------------------
  1642. //------------------------------------------------------------
  1643. /// <summary>
  1644. /// 动作关键帧数据
  1645. /// </summary>
  1646. [MessageType(0x4104)]
  1647. [DescAttribute("动作关键帧数据")]
  1648. [Expandable]
  1649. public class KeyFrame : BaseKeyFrame, ICloneable, IExternalizable
  1650. {
  1651. /// <summary>
  1652. /// 关键帧产生的法术或远程道具单位模板ID
  1653. /// </summary>
  1654. [DescAttribute("关键帧产生的法术或远程道具单位模板ID")]
  1655. public LaunchSpell Spell;
  1656. /// <summary>
  1657. /// 当前关键帧特效
  1658. /// </summary>
  1659. [DescAttribute("当前关键帧特效ID")]
  1660. public LaunchEffect Effect;
  1661. /// <summary>
  1662. /// 攻击属性
  1663. /// </summary>
  1664. [DescAttribute("攻击属性ID")]
  1665. public AttackProp Attack;
  1666. /// <summary>
  1667. /// 对自己产生BUFF
  1668. /// </summary>
  1669. [DescAttribute("对自己产生BUFF")]
  1670. public LaunchBuff SelfBuff;
  1671. /// <summary>
  1672. /// 此动作关键帧产生的位移
  1673. /// </summary>
  1674. [DescAttribute("此动作关键帧产生的位移")]
  1675. public StartMove Move;
  1676. [DescAttribute("位移在有打击目标时是否生效")]
  1677. public bool hitTargetMoveEnable = true;
  1678. [DescAttribute("闪现位移")]
  1679. public BlinkMove Blink;
  1680. [DescAttribute("动作状态改变")]
  1681. public StatusChange ChangeStatus;
  1682. public KeyFrame() { }
  1683. public override string ToString()
  1684. {
  1685. return "Frame: @" + FrameMS;
  1686. }
  1687. public object Clone()
  1688. {
  1689. KeyFrame ret = new KeyFrame();
  1690. ret.FrameMS = base.FrameMS;
  1691. ret.Spell = CUtils.TryClone<LaunchSpell>(this.Spell);
  1692. ret.Effect = CUtils.TryClone<LaunchEffect>(this.Effect);
  1693. ret.Attack = CUtils.TryClone<AttackProp>(this.Attack);
  1694. ret.SelfBuff = CUtils.TryClone<LaunchBuff>(this.SelfBuff);
  1695. ret.Move = CUtils.TryClone<StartMove>(this.Move);
  1696. ret.hitTargetMoveEnable = this.hitTargetMoveEnable;
  1697. ret.Blink = CUtils.TryClone<BlinkMove>(this.Blink);
  1698. ret.ChangeStatus = CUtils.TryClone<StatusChange>(this.ChangeStatus);
  1699. return ret;
  1700. }
  1701. public void WriteExternal(IOutputStream output)
  1702. {
  1703. output.PutS32(base.FrameMS);
  1704. output.PutExt(this.Spell);
  1705. output.PutExt(this.Effect);
  1706. output.PutExt(this.Attack);
  1707. output.PutExt(this.SelfBuff);
  1708. output.PutExt(this.Move);
  1709. output.PutBool(this.hitTargetMoveEnable);
  1710. output.PutExt(this.Blink);
  1711. output.PutExt(this.ChangeStatus);
  1712. }
  1713. public void ReadExternal(IInputStream input)
  1714. {
  1715. base.FrameMS = input.GetS32();
  1716. this.Spell = input.GetExt<LaunchSpell>();
  1717. this.Effect = input.GetExt<LaunchEffect>();
  1718. this.Attack = input.GetExt<AttackProp>();
  1719. this.SelfBuff = input.GetExt<LaunchBuff>();
  1720. this.Move = input.GetExt<StartMove>();
  1721. this.hitTargetMoveEnable = input.GetBool();
  1722. this.Blink = input.GetExt<BlinkMove>();
  1723. this.ChangeStatus = input.GetExt<StatusChange>();
  1724. }
  1725. }
  1726. }
  1727. //---------------------------------------------------------------------------------//
  1728. /// <summary>
  1729. /// 单位行为触发器
  1730. /// </summary>
  1731. [MessageType(0x4010)]
  1732. [DescAttribute("单位行为触发器")]
  1733. [TableClassAttribute("ID")]
  1734. public class UnitTriggerTemplate : ICloneable, ITemplateData, IExternalizable
  1735. {
  1736. public int TemplateID { get { return ID; } }
  1737. [XmlSerializable()]
  1738. public string EditorPath { get; set; }
  1739. [DescAttribute("ID", "基础", false)]
  1740. public int ID;
  1741. [LocalizationTextAttribute]
  1742. [DescAttribute("触发器名字", "基础")]
  1743. public string Name;
  1744. [DescAttribute("触发器冷却时间", "基础")]
  1745. public int CoolDownTimeMS = 10000;
  1746. [DescAttribute("事件触发条件(所有的关系为与)", "条件")]
  1747. [ListAttribute(typeof(UnitTriggers.BaseTriggerEvent))]
  1748. public List<UnitTriggers.BaseTriggerEvent> Triggers = new List<UnitTriggers.BaseTriggerEvent>();
  1749. [DescAttribute("释放技能", "动作")]
  1750. public LaunchSkill DoSkill;
  1751. [DescAttribute("产生Buff", "动作")]
  1752. public LaunchBuff DoBuff;
  1753. [DescAttribute("产生法术", "动作")]
  1754. public LaunchSpell DoSpell;
  1755. [DescAttribute("产生特效(图形)", "动作")]
  1756. public LaunchEffect DoEffect;
  1757. /// <summary>
  1758. /// 召唤小弟
  1759. /// </summary>
  1760. [DescAttribute("召唤小弟", "动作")]
  1761. public SummonUnit DoSummon;
  1762. //------------------------------------
  1763. /// <summary>
  1764. /// 用户自定义扩展属性
  1765. /// </summary>
  1766. [DescAttribute("扩展属性", "扩展")]
  1767. [Expandable]
  1768. [NotNull]
  1769. public IUnitTriggerProperties Properties = TemplateManager.Factory.CreateTriggerProperties();
  1770. public override string ToString()
  1771. {
  1772. return Name + "(" + ID + ")";
  1773. }
  1774. public string FunctionText()
  1775. {
  1776. StringBuilder sb = new StringBuilder();
  1777. if (Triggers.Count > 0)
  1778. {
  1779. foreach (UnitTriggers.BaseTriggerEvent e in Triggers)
  1780. {
  1781. sb.Append(string.Format("{0}", e));
  1782. if (e != Triggers[Triggers.Count - 1])
  1783. {
  1784. sb.Append(" 并且 ");
  1785. }
  1786. }
  1787. if (DoSkill != null) sb.Append("," + DoSkill);
  1788. if (DoBuff != null) sb.Append("," + DoBuff);
  1789. if (DoSpell != null) sb.Append("," + DoSpell);
  1790. if (DoEffect != null) sb.Append("," + DoEffect);
  1791. }
  1792. return sb.ToString();
  1793. }
  1794. public object Clone()
  1795. {
  1796. UnitTriggerTemplate ret = new UnitTriggerTemplate();
  1797. ret.EditorPath = this.EditorPath;
  1798. ret.ID = this.ID;
  1799. ret.Name = this.Name;
  1800. ret.CoolDownTimeMS = this.CoolDownTimeMS;
  1801. ret.Triggers = CUtils.CloneList<UnitTriggers.BaseTriggerEvent>(this.Triggers);
  1802. ret.DoSkill = CUtils.TryClone<LaunchSkill>(this.DoSkill);
  1803. ret.DoBuff = CUtils.TryClone<LaunchBuff>(this.DoBuff);
  1804. ret.DoSpell = CUtils.TryClone<LaunchSpell>(this.DoSpell);
  1805. ret.DoEffect = CUtils.TryClone<LaunchEffect>(this.DoEffect);
  1806. ret.DoSummon = CUtils.TryClone<SummonUnit>(this.DoSummon);
  1807. return ret;
  1808. }
  1809. public void WriteExternal(IOutputStream output)
  1810. {
  1811. output.PutUTF(this.EditorPath);
  1812. output.PutS32(this.ID);
  1813. output.PutUTF(this.Name);
  1814. output.PutS32(this.CoolDownTimeMS);
  1815. output.PutList<UnitTriggers.BaseTriggerEvent>(this.Triggers, output.PutExt);
  1816. output.PutExt(this.DoSkill);
  1817. output.PutExt(this.DoBuff);
  1818. output.PutExt(this.DoSpell);
  1819. output.PutExt(this.DoEffect);
  1820. output.PutExt(this.DoSummon);
  1821. }
  1822. public void ReadExternal(IInputStream input)
  1823. {
  1824. this.EditorPath = input.GetUTF();
  1825. this.ID = input.GetS32();
  1826. this.Name = input.GetUTF();
  1827. this.CoolDownTimeMS = input.GetS32();
  1828. this.Triggers = input.GetListAny<UnitTriggers.BaseTriggerEvent>();
  1829. this.DoSkill = input.GetExt<LaunchSkill>();
  1830. this.DoBuff = input.GetExt<LaunchBuff>();
  1831. this.DoSpell = input.GetExt<LaunchSpell>();
  1832. this.DoEffect = input.GetExt<LaunchEffect>();
  1833. this.DoSummon = input.GetExt<SummonUnit>();
  1834. }
  1835. }
  1836. //---------------------------------------------------------------------------------//
  1837. /// <summary>
  1838. /// 法术/飞行道具模板
  1839. /// </summary>
  1840. [MessageType(0x4005)]
  1841. [DescAttribute("法术/飞行道具模板")]
  1842. [TableClassAttribute("ID")]
  1843. public class SpellTemplate : ICloneable, ITemplateData, IExternalizable
  1844. {
  1845. public int TemplateID { get { return ID; } }
  1846. [XmlSerializable()]
  1847. public string EditorPath { get; set; }
  1848. public enum MotionType : byte
  1849. {
  1850. [DescAttribute("在原地不动")]
  1851. Immovability = 1,
  1852. [DescAttribute("按直线运动")]
  1853. Straight = 2,
  1854. [DescAttribute("跟随目标,直到击中")]
  1855. Missile = 3,
  1856. [DescAttribute("向周围扩散")]
  1857. AOE = 4,
  1858. [DescAttribute("绑定发射者")]
  1859. Binding = 6,
  1860. [DescAttribute("绑定被攻击者")]
  1861. BindingTarget = 7,
  1862. [DescAttribute("炮弹类")]
  1863. Cannon = 8,
  1864. [DescAttribute("直接在目标坐标生效")]
  1865. SelectTarget = 9,
  1866. [DescAttribute("先按直线运动,过程中锁定目标")]
  1867. SeekerMissile = 10,
  1868. [DescAttribute("向周围扩散,绑定发射者")]
  1869. AOE_Binding = 11,
  1870. [DescAttribute("向周围扩散,绑定被攻击者")]
  1871. AOE_BindingTarget = 12,
  1872. [DescAttribute("锁定并命中目标,和SeekerMissile区别是没有过程,直接命中。")]
  1873. SeekerSelectTarget = 13,
  1874. [DescAttribute("发射者和目标绑定(Distance必须在范围内)")]
  1875. Chain = 14,
  1876. [DescAttribute("直接在自身坐标生效")]
  1877. SelectLauncher = 15,
  1878. [DescAttribute("回旋镖路径1(最终返回到发射者)")]
  1879. Boomerang1 = 16,
  1880. [DescAttribute("回旋镖路径2(最终返回到发射点)")]
  1881. Boomerang2 = 17,
  1882. [DescAttribute("狐火路径")]
  1883. Foxfire = 18,
  1884. [DescAttribute("先直线,后停留")]
  1885. StraightAndStop = 19,
  1886. [DescAttribute("追踪,可击中路径上的敌人")]
  1887. MissileAttackRoute = 20,
  1888. [DescAttribute("曲线追踪")]
  1889. CurveMissile = 21,
  1890. }
  1891. /// <summary>
  1892. /// 往客户端推送,是否包含坐标
  1893. /// </summary>
  1894. public bool IsLaunchSpellEventSyncPos
  1895. {
  1896. get
  1897. {
  1898. // 脱离运动类型的一些特殊字段
  1899. if(this.IsBindingOrbit)
  1900. {
  1901. return true;
  1902. }
  1903. switch (MType)
  1904. {
  1905. case SpellTemplate.MotionType.AOE_Binding:
  1906. case SpellTemplate.MotionType.AOE_BindingTarget:
  1907. case SpellTemplate.MotionType.Binding:
  1908. case SpellTemplate.MotionType.BindingTarget:
  1909. case SpellTemplate.MotionType.Chain:
  1910. return false;
  1911. case SpellTemplate.MotionType.SelectLauncher:
  1912. case SpellTemplate.MotionType.SelectTarget:
  1913. case SpellTemplate.MotionType.Immovability:
  1914. case SpellTemplate.MotionType.Cannon:
  1915. case SpellTemplate.MotionType.AOE:
  1916. case SpellTemplate.MotionType.Straight:
  1917. case SpellTemplate.MotionType.Missile:
  1918. case SpellTemplate.MotionType.Boomerang1:
  1919. case SpellTemplate.MotionType.Boomerang2:
  1920. case SpellTemplate.MotionType.SeekerMissile:
  1921. case SpellTemplate.MotionType.SeekerSelectTarget:
  1922. case SpellTemplate.MotionType.StraightAndStop:
  1923. case SpellTemplate.MotionType.MissileAttackRoute:
  1924. case SpellTemplate.MotionType.CurveMissile:
  1925. default:
  1926. return true;
  1927. }
  1928. }
  1929. }
  1930. [DescAttribute("ID", "", false)]
  1931. public int ID;
  1932. /// <summary>
  1933. /// 法术名字
  1934. /// </summary>
  1935. [DescAttribute("法术名字")]
  1936. [LocalizationTextAttribute]
  1937. public string Name;
  1938. /// <summary>
  1939. /// 生命周期,帧
  1940. /// </summary>
  1941. [DescAttribute("生命周期(毫秒)")]
  1942. public int LifeTimeMS = 1000;
  1943. [DescAttribute("客户端是否可见")]
  1944. public bool ClientVisible = true;
  1945. //--------------------------------------------
  1946. public enum Shape : byte
  1947. {
  1948. [DescAttribute("圆形(BodySize=半径尺寸)")]
  1949. Round = AttackShape.Round,
  1950. [DescAttribute("扇形(BodySize=半径尺寸;FanAngle=角度)")]
  1951. Fan = AttackShape.Fan,
  1952. [DescAttribute("胶囊条状(Distance=长度;RectWide=宽度)")]
  1953. Strip = AttackShape.Strip,
  1954. [DescAttribute("胶囊射线,以原点出去(Distance=长度;RectWide=宽度)")]
  1955. StripRay = AttackShape.StripRay,
  1956. [DescAttribute("胶囊射线,接触到最近(Distance=最大长度;RectWide=宽度)")]
  1957. StripRayTouchEnd = AttackShape.StripRayTouchEnd,
  1958. [DescAttribute("方形条状")]
  1959. RectStrip = CommonAI.Zone.Helper.AttackShape.RectStrip,
  1960. [DescAttribute("方形射线(以原点出去)")]
  1961. RectStripRay = CommonAI.Zone.Helper.AttackShape.RectStripRay,
  1962. [DescAttribute("横向胶囊条状")]
  1963. WideStrip = CommonAI.Zone.Helper.AttackShape.WideStrip,
  1964. [DescAttribute("连线类型(单体攻击),比如激光塔(Distance=判定距离)")]
  1965. LineToTarget = AttackShape.LineToTarget,
  1966. [DescAttribute("连线类型(单体攻击),比如伸出去的钩子(Distance=判定距离)")]
  1967. LineToStart = AttackShape.LineToStart,
  1968. [DescAttribute("圆环,中间是空的(BodySize=外环半径;BodySize-RectWide=内环半径)")]
  1969. Circle = CommonAI.Zone.Helper.AttackShape.Circle,
  1970. }
  1971. public bool IsShapeFan { get { return BodyShape == Shape.Fan; } }
  1972. public bool IsShapeStrip
  1973. {
  1974. get
  1975. {
  1976. switch (BodyShape)
  1977. {
  1978. case Shape.Strip:
  1979. case Shape.StripRay:
  1980. case Shape.StripRayTouchEnd:
  1981. case Shape.Circle:
  1982. case Shape.RectStrip:
  1983. case Shape.RectStripRay:
  1984. case Shape.WideStrip:
  1985. return true;
  1986. }
  1987. return false;
  1988. }
  1989. }
  1990. public bool IsShapeDistance
  1991. {
  1992. get
  1993. {
  1994. switch (BodyShape)
  1995. {
  1996. case Shape.Strip:
  1997. case Shape.StripRay:
  1998. case Shape.StripRayTouchEnd:
  1999. case Shape.LineToTarget:
  2000. case Shape.LineToStart:
  2001. case Shape.RectStrip:
  2002. case Shape.RectStripRay:
  2003. case Shape.WideStrip:
  2004. return true;
  2005. default:
  2006. return false;
  2007. }
  2008. }
  2009. }
  2010. //--------------------------------------------
  2011. [DescAttribute("攻击范围类型", "攻击范围")]
  2012. public Shape BodyShape = Shape.Round;
  2013. [DescAttribute("尺寸,半径(Round, Fan, Circle)", "攻击范围")]
  2014. public float BodySize = 1;
  2015. [DescAttribute("角度(Fan)", "攻击范围")]
  2016. [DependOnProperty("IsShapeFan")]
  2017. public float FanAngle;
  2018. [DescAttribute("宽度,粗度(Strip, StripRay,StripRayTouchEnd,RectStrip, RectStripRay,Circle, WideStrip)", "攻击范围")]
  2019. [DependOnProperty("IsShapeStrip")]
  2020. public float RectWide = 1;
  2021. [DescAttribute("长度(Strip, StripRay,StripRayTouchEnd, RectStrip, RectStripRay,LineToTarget, LineToStart, WideStrip)", "攻击范围")]
  2022. [DependOnProperty("IsShapeDistance")]
  2023. public float Distance = 10;
  2024. //--------------------------------------------
  2025. [DescAttribute("法术自身高度", "攻击范围")]
  2026. public float BodyHeight = 0;
  2027. //--------------------------------------------
  2028. /// <summary>
  2029. /// 运动类型
  2030. /// </summary>
  2031. [DescAttribute("运动类型", "运动")]
  2032. public MotionType MType = MotionType.Straight;
  2033. public bool IsMoveable
  2034. {
  2035. get
  2036. {
  2037. switch (MType)
  2038. {
  2039. case MotionType.Cannon:
  2040. case MotionType.Missile:
  2041. case MotionType.SeekerMissile:
  2042. case MotionType.Straight:
  2043. case MotionType.AOE:
  2044. case MotionType.AOE_Binding:
  2045. case MotionType.AOE_BindingTarget:
  2046. case MotionType.Boomerang1:
  2047. case MotionType.Boomerang2:
  2048. case MotionType.Foxfire:
  2049. case MotionType.StraightAndStop:
  2050. case MotionType.MissileAttackRoute:
  2051. case MotionType.CurveMissile:
  2052. return true;
  2053. }
  2054. return false;
  2055. }
  2056. }
  2057. public bool IsBinding
  2058. {
  2059. get
  2060. {
  2061. switch (MType)
  2062. {
  2063. case MotionType.Binding:
  2064. case MotionType.BindingTarget:
  2065. case MotionType.AOE_Binding:
  2066. case MotionType.AOE_BindingTarget:
  2067. return true;
  2068. }
  2069. return false;
  2070. }
  2071. }
  2072. public bool IsSeekingTarget
  2073. {
  2074. get
  2075. {
  2076. switch (MType)
  2077. {
  2078. case MotionType.SeekerMissile:
  2079. case MotionType.SeekerSelectTarget:
  2080. case MotionType.Foxfire:
  2081. case MotionType.MissileAttackRoute:
  2082. case MotionType.CurveMissile:
  2083. return true;
  2084. }
  2085. return false;
  2086. }
  2087. }
  2088. public bool IsAOE
  2089. {
  2090. get
  2091. {
  2092. switch (MType)
  2093. {
  2094. case MotionType.AOE:
  2095. case MotionType.AOE_Binding:
  2096. case MotionType.AOE_BindingTarget:
  2097. return true;
  2098. }
  2099. return false;
  2100. }
  2101. }
  2102. /// <summary>
  2103. /// 运动速度,AOE或者扩散类,缩放速度
  2104. /// </summary>
  2105. [DescAttribute("运动速度,AOE或者扩散类,缩放速度(距离 / 每秒)", "运动")]
  2106. [DependOnProperty("IsMoveable")]
  2107. public float MSpeedSEC = 15f;
  2108. [DescAttribute("加速度(距离/每秒)(最终速度=速度+加速度)", "运动")]
  2109. [DependOnProperty("IsMoveable")]
  2110. public float MSpeedAdd = 0f;
  2111. [DescAttribute("阻力(每秒递减速度百分比)", "运动")]
  2112. [DependOnProperty("IsMoveable")]
  2113. public float MSpeedAcc = 0f;
  2114. [DescAttribute("最大移动距离", "运动")]
  2115. public float MaxMoveDistance = 0f;
  2116. [DescAttribute("最大限速", "运动")]
  2117. [DependOnProperty("IsMoveable")]
  2118. public float MSpeed_MAX = 100f;
  2119. [DescAttribute("最小限速", "运动")]
  2120. [DependOnProperty("IsMoveable")]
  2121. public float MSpeed_MIN = -100f;
  2122. //--------------------------------------------
  2123. public enum AoeMotionType : byte
  2124. {
  2125. [DescAttribute("线性,递增或递减")]
  2126. Linear = 0,
  2127. [DescAttribute("正弦,单次周期为PI,象限0~1")]
  2128. Sine = 1,
  2129. }
  2130. [DescAttribute("AOE方式", "运动")]
  2131. [DependOnProperty("IsAOE")]
  2132. public AoeMotionType AOEMType = AoeMotionType.Linear;
  2133. //--------------------------------------------
  2134. /// <summary>
  2135. /// 转动速度
  2136. /// </summary>
  2137. [DescAttribute("自转转动速度(距离/每秒)", "运动")]
  2138. public float RotateSpeedSEC;
  2139. [DescAttribute("抛物线高度", "运动")]
  2140. public float ParabolaHeight = 0;
  2141. /// <summary>
  2142. ///
  2143. /// </summary>
  2144. [DescAttribute("暂时只给灵魂出窍的技能使用", "运动")]
  2145. public bool HeightUpdate;
  2146. //--------------------------------------------
  2147. public enum SeekingExpect : byte
  2148. {
  2149. [DescAttribute("搜索随机单位")]
  2150. Random,
  2151. [DescAttribute("搜索最近单位")]
  2152. Nearest,
  2153. [DescAttribute("搜索最远单位")]
  2154. Farthest,
  2155. [DescAttribute("搜索随机单位(忽略链中)")]
  2156. RandomIgnoreInChain,
  2157. [DescAttribute("搜索最近单位(忽略链中)")]
  2158. NearestIgnoreInChain,
  2159. [DescAttribute("搜索最远单位(忽略链中)")]
  2160. FarthestIgnoreInChain,
  2161. [DescAttribute("搜索最棒的BOSS")]
  2162. TheOne,
  2163. }
  2164. //--------------------------------------------
  2165. [DescAttribute("如果是自动搜敌导弹SeekerMissile,则表示搜索范围,如果是LineToTarget则表示伤害距离", "运动-自动跟踪")]
  2166. [DependOnProperty("IsSeekingTarget")]
  2167. public float SeekingRange = 10;
  2168. [DescAttribute("自动锁敌冷却时间(毫秒)", "运动-自动跟踪")]
  2169. [DependOnProperty("IsSeekingTarget")]
  2170. public int SeekingCooldownMS = 1000;
  2171. [DescAttribute("自动锁敌运动时,转角距离", "运动-自动跟踪")]
  2172. [DependOnProperty("IsSeekingTarget")]
  2173. public float SeekingTurningAngleSEC = 3f;
  2174. [DescAttribute("自动锁敌检测方式", "运动-自动跟踪")]
  2175. [DependOnProperty("IsSeekingTarget")]
  2176. public SeekingExpect SeekingExpectTarget = SeekingExpect.Random;
  2177. //--------------------------------------------
  2178. [DescAttribute("如果是绑定则围绕绑定者公转", "运动-绑定")]
  2179. [DependOnProperty("IsBinding")]
  2180. public bool IsBindingOrbit = false;
  2181. [DescAttribute("绑定公转距离", "运动-绑定")]
  2182. [DependOnProperty("IsBinding")]
  2183. public float OrbitDistance;
  2184. [DescAttribute("如果为绑定,是否绑定方向", "运动-绑定")]
  2185. [DependOnProperty("IsBinding")]
  2186. public bool IsBindingDirection = false;
  2187. //--------------------------------------------
  2188. //--------------------------------------------
  2189. [DescAttribute("最大影响(受击)单位,0表示无限制")]
  2190. public int MaxAffectUnit = 0;
  2191. //--------------------------------------------
  2192. /// <summary>
  2193. /// 击中就消失
  2194. /// </summary>
  2195. [DescAttribute("击中就消失(爆炸),和HitIntervalMS冲突", "关键帧")]
  2196. public bool HitOnExplosion;
  2197. [DescAttribute("击中就消失(爆炸)关键帧,适用于打到就爆和Cannon类法术", "关键帧")]
  2198. [DependOnProperty("HitOnExplosion")]
  2199. public KeyFrame HitOnExplosionKeyFrame;
  2200. /// <summary>
  2201. /// 每间隔多少帧就触发一次,0代表只造成一次伤害或效果
  2202. /// </summary>
  2203. [DescAttribute("每间隔多少时间就触发一次,0 适用于穿透性,但只对单位造成一次伤害(毫秒)", "关键帧")]
  2204. public int HitIntervalMS;
  2205. [DescAttribute("只造成一次触发的关键帧 or 每隔一段时间触发的关键帧", "关键帧")]
  2206. public KeyFrame HitIntervalKeyFrame;
  2207. /// <summary>
  2208. /// 按顺序触发的所有关键帧
  2209. /// </summary>
  2210. [ListAttribute(typeof(KeyFrame))]
  2211. [DescAttribute("按顺序触发的所有关键帧", "关键帧")]
  2212. public List<KeyFrame> KeyFrames = new List<KeyFrame>();
  2213. //--------------------------------------------
  2214. /// <summary>
  2215. /// 模型名字或者Perfab名字
  2216. /// </summary>
  2217. [DescAttribute("模型名字或者Perfab名字", "资源")]
  2218. [ResourceIDAttribute]
  2219. public string FileName;
  2220. [DescAttribute("模型名字或者Perfab名字(起始)", "资源")]
  2221. [ResourceIDAttribute]
  2222. public string FileNameSpawn;
  2223. [DescAttribute("模型名字或者Perfab名字(结束)", "资源")]
  2224. [ResourceIDAttribute]
  2225. public string FileNameDestory;
  2226. [DescAttribute("是否循环播放动画", "资源")]
  2227. public bool IsCycAnim = true;
  2228. [DescAttribute("缩放比率", "资源")]
  2229. public float FileBodyScale = 1;
  2230. [DescAttribute("法术释放时,在目标点释放特效,可作为技能提示", "特效")]
  2231. public LaunchEffect TargetEffect;
  2232. [DescAttribute("法术期望作用目标", "目标")]
  2233. public SkillTemplate.CastTarget ExpectTarget = SkillTemplate.CastTarget.Enemy;
  2234. //------------------------------------
  2235. [DescAttribute("绑定目标不可操控时移除自己", "移除条件")]
  2236. public bool RemoveOnBindingUncontrollable = false;
  2237. [DescAttribute("绑定目标非技能状态时移除自己", "移除条件")]
  2238. public bool RemoveOnBindingSkillOver = false;
  2239. [DescAttribute("当Spell被移除停止释放它的技能", "移除条件")]
  2240. public bool StopBindingSkillOnRemoved = false;
  2241. //------------------------------------
  2242. //--------------------------------------------
  2243. public enum SpecialAdditionalEffect : byte
  2244. {
  2245. [DescAttribute("无")]
  2246. None = 0,
  2247. [DescAttribute("黑洞效果,牵引碰到的怪物")]
  2248. DarkHole = 1,
  2249. [DescAttribute("路径牵引效果")]
  2250. DragPath = 2,
  2251. }
  2252. public bool IsCanAddSpecialEffect
  2253. {
  2254. get
  2255. {
  2256. switch (MType)
  2257. {
  2258. case MotionType.Missile:
  2259. case MotionType.SeekerMissile:
  2260. case MotionType.Cannon:
  2261. case MotionType.Chain:
  2262. case MotionType.Boomerang1:
  2263. case MotionType.Boomerang2:
  2264. case MotionType.MissileAttackRoute:
  2265. case MotionType.CurveMissile:
  2266. return false;
  2267. }
  2268. return true;
  2269. }
  2270. }
  2271. [DescAttribute("法术的特殊效果", "特殊效果")]
  2272. [DependOnProperty("IsCanAddSpecialEffect")]
  2273. public SpecialAdditionalEffect SpecialEffect = SpecialAdditionalEffect.None;
  2274. [DescAttribute("特殊效果参数(黑洞的牵引速度)", "特殊效果")]
  2275. [DependOnProperty("IsCanAddSpecialEffect")]
  2276. public float SpecialEffectParam = 0;
  2277. // --
  2278. [DescAttribute("飞行时间(毫秒)", "运动(回旋路径, 滞空)")]
  2279. //[DependOnProperty("IsBoomerang")]
  2280. public int BoomerangFlyTime = 1000;
  2281. [DescAttribute("滞空时间(毫秒)", "运动(回旋路径, 滞空)")]
  2282. //[DependOnProperty("IsBoomerang")]
  2283. public int BoomerangHangtime = 1000;
  2284. public bool IsBoomerang
  2285. {
  2286. get
  2287. {
  2288. return MType == MotionType.Boomerang1 || MType == MotionType.Boomerang2;
  2289. }
  2290. }
  2291. /// <summary>
  2292. /// 用户自定义扩展属性
  2293. /// </summary>
  2294. [DescAttribute("扩展属性", "扩展")]
  2295. [Expandable]
  2296. [NotNull]
  2297. public ISpellProperties Properties = TemplateManager.Factory.CreateSpellProperties();
  2298. //------------------------------------
  2299. [DescAttribute("速度(原始动画/特效速度 * 速度)", "特效加速")]
  2300. public float EffectAddSpeed = 1;
  2301. [DescAttribute("特效中存在的动画,动画的名字", "特效加速")]
  2302. public string AnimtionName;
  2303. [DescAttribute("音效文件名", "音效")]
  2304. public string AudioName;
  2305. [DescAttribute("音效文件是否循环", "音效")]
  2306. public bool IsAudioLoop;
  2307. public SpellTemplate() { }
  2308. public int GetID()
  2309. {
  2310. return ID;
  2311. }
  2312. public override string ToString()
  2313. {
  2314. return Name + "(" + ID + ")";
  2315. }
  2316. public object Clone()
  2317. {
  2318. SpellTemplate ret = new SpellTemplate();
  2319. ret.EditorPath = this.EditorPath;
  2320. ret.ID = this.ID;
  2321. ret.Name = this.Name;
  2322. ret.LifeTimeMS = this.LifeTimeMS;
  2323. ret.ClientVisible = this.ClientVisible;
  2324. ret.BodyShape = this.BodyShape;
  2325. ret.BodySize = this.BodySize;
  2326. ret.FanAngle = this.FanAngle;
  2327. ret.RectWide = this.RectWide;
  2328. ret.BodyHeight = this.BodyHeight;
  2329. ret.Distance = this.Distance;
  2330. ret.MType = this.MType;
  2331. ret.MSpeedSEC = this.MSpeedSEC;
  2332. ret.MSpeedAdd = this.MSpeedAdd;
  2333. ret.MSpeedAcc = this.MSpeedAcc;
  2334. ret.MaxMoveDistance = this.MaxMoveDistance;
  2335. ret.MSpeed_MAX = this.MSpeed_MAX;
  2336. ret.MSpeed_MIN = this.MSpeed_MIN;
  2337. ret.RotateSpeedSEC = this.RotateSpeedSEC;
  2338. ret.ParabolaHeight = this.ParabolaHeight;
  2339. ret.HeightUpdate = this.HeightUpdate;
  2340. ret.AOEMType = this.AOEMType;
  2341. ret.SeekingRange = this.SeekingRange;
  2342. ret.SeekingCooldownMS = this.SeekingCooldownMS;
  2343. ret.SeekingTurningAngleSEC = this.SeekingTurningAngleSEC;
  2344. ret.SeekingExpectTarget = this.SeekingExpectTarget;
  2345. ret.MaxAffectUnit = this.MaxAffectUnit;
  2346. ret.IsBindingOrbit = this.IsBindingOrbit;
  2347. ret.OrbitDistance = this.OrbitDistance;
  2348. ret.IsBindingDirection = this.IsBindingDirection;
  2349. ret.HitOnExplosion = this.HitOnExplosion;
  2350. ret.HitOnExplosionKeyFrame = CUtils.TryClone<KeyFrame>(this.HitOnExplosionKeyFrame);
  2351. ret.HitIntervalMS = this.HitIntervalMS;
  2352. ret.HitIntervalKeyFrame = CUtils.TryClone<KeyFrame>(this.HitIntervalKeyFrame);
  2353. ret.KeyFrames = CUtils.CloneList<KeyFrame>(this.KeyFrames);
  2354. ret.FileName = this.FileName;
  2355. ret.FileNameSpawn = this.FileNameSpawn;
  2356. ret.FileNameDestory = this.FileNameDestory;
  2357. ret.IsCycAnim = this.IsCycAnim;
  2358. ret.FileBodyScale = this.FileBodyScale;
  2359. ret.TargetEffect = CUtils.TryClone<LaunchEffect>(this.TargetEffect);
  2360. ret.ExpectTarget = this.ExpectTarget;
  2361. ret.RemoveOnBindingUncontrollable = this.RemoveOnBindingUncontrollable;
  2362. ret.RemoveOnBindingSkillOver = this.RemoveOnBindingSkillOver;
  2363. ret.StopBindingSkillOnRemoved = this.StopBindingSkillOnRemoved;
  2364. ret.Properties = CUtils.TryClone<ISpellProperties>(this.Properties);
  2365. ret.SpecialEffect = this.SpecialEffect;
  2366. ret.SpecialEffectParam = this.SpecialEffectParam;
  2367. ret.BoomerangFlyTime = this.BoomerangFlyTime;
  2368. ret.BoomerangHangtime = this.BoomerangHangtime;
  2369. ret.EffectAddSpeed = this.EffectAddSpeed;
  2370. ret.AnimtionName = this.AnimtionName;
  2371. ret.AudioName = this.AudioName;
  2372. ret.IsAudioLoop = this.IsAudioLoop;
  2373. return ret;
  2374. }
  2375. public void WriteExternal(IOutputStream output)
  2376. {
  2377. output.PutUTF(this.EditorPath);
  2378. output.PutS32(this.ID);
  2379. output.PutUTF(this.Name);
  2380. output.PutS32(this.LifeTimeMS);
  2381. output.PutBool(this.ClientVisible);
  2382. output.PutEnum8(this.BodyShape);
  2383. output.PutF32(this.BodySize);
  2384. output.PutF32(this.FanAngle);
  2385. output.PutF32(this.RectWide);
  2386. output.PutF32(this.BodyHeight);
  2387. output.PutF32(this.Distance);
  2388. output.PutEnum8(this.MType);
  2389. output.PutF32(this.MSpeedSEC);
  2390. output.PutF32(this.MSpeedAdd);
  2391. output.PutF32(this.MSpeedAcc);
  2392. output.PutF32(this.MaxMoveDistance);
  2393. output.PutF32(this.MSpeed_MAX);
  2394. output.PutF32(this.MSpeed_MIN);
  2395. output.PutF32(this.RotateSpeedSEC);
  2396. output.PutF32(this.ParabolaHeight);
  2397. output.PutBool(this.HeightUpdate);
  2398. output.PutEnum8(this.AOEMType);
  2399. output.PutF32(this.SeekingRange);
  2400. output.PutS32(this.SeekingCooldownMS);
  2401. output.PutF32(this.SeekingTurningAngleSEC);
  2402. output.PutEnum8(this.SeekingExpectTarget);
  2403. output.PutS32(this.MaxAffectUnit);
  2404. output.PutBool(this.IsBindingOrbit);
  2405. output.PutF32(this.OrbitDistance);
  2406. output.PutBool(this.IsBindingDirection);
  2407. output.PutBool(this.HitOnExplosion);
  2408. output.PutExt(this.HitOnExplosionKeyFrame);
  2409. output.PutS32(this.HitIntervalMS);
  2410. output.PutExt(this.HitIntervalKeyFrame);
  2411. output.PutList<KeyFrame>(this.KeyFrames, output.PutExt);
  2412. output.PutUTF(this.FileName);
  2413. output.PutUTF(this.FileNameSpawn);
  2414. output.PutUTF(this.FileNameDestory);
  2415. output.PutBool(this.IsCycAnim);
  2416. output.PutF32(this.FileBodyScale);
  2417. output.PutExt(this.TargetEffect);
  2418. output.PutEnum8(this.ExpectTarget);
  2419. output.PutBool(this.RemoveOnBindingUncontrollable);
  2420. output.PutBool(this.RemoveOnBindingSkillOver);
  2421. output.PutBool(this.StopBindingSkillOnRemoved);
  2422. output.PutExt(this.Properties);
  2423. output.PutEnum8(this.SpecialEffect);
  2424. output.PutF32(this.SpecialEffectParam);
  2425. output.PutS32(this.BoomerangFlyTime);
  2426. output.PutS32(this.BoomerangHangtime);
  2427. output.PutF32(this.EffectAddSpeed);
  2428. output.PutUTF(this.AnimtionName);
  2429. output.PutUTF(this.AudioName);
  2430. output.PutBool(this.IsAudioLoop);
  2431. }
  2432. public void ReadExternal(IInputStream input)
  2433. {
  2434. this.EditorPath = input.GetUTF();
  2435. this.ID = input.GetS32();
  2436. this.Name = input.GetUTF();
  2437. this.LifeTimeMS = input.GetS32();
  2438. this.ClientVisible = input.GetBool();
  2439. this.BodyShape = input.GetEnum8<Shape>();
  2440. this.BodySize = input.GetF32();
  2441. this.FanAngle = input.GetF32();
  2442. this.RectWide = input.GetF32();
  2443. this.BodyHeight = input.GetF32();
  2444. this.Distance = input.GetF32();
  2445. this.MType = input.GetEnum8<MotionType>();
  2446. this.MSpeedSEC = input.GetF32();
  2447. this.MSpeedAdd = input.GetF32();
  2448. this.MSpeedAcc = input.GetF32();
  2449. this.MaxMoveDistance = input.GetF32();
  2450. this.MSpeed_MAX = input.GetF32();
  2451. this.MSpeed_MIN = input.GetF32();
  2452. this.RotateSpeedSEC = input.GetF32();
  2453. this.ParabolaHeight = input.GetF32();
  2454. this.HeightUpdate = input.GetBool();
  2455. this.AOEMType = input.GetEnum8<AoeMotionType>();
  2456. this.SeekingRange = input.GetF32();
  2457. this.SeekingCooldownMS = input.GetS32();
  2458. this.SeekingTurningAngleSEC = input.GetF32();
  2459. this.SeekingExpectTarget = input.GetEnum8<SeekingExpect>();
  2460. this.MaxAffectUnit = input.GetS32();
  2461. this.IsBindingOrbit = input.GetBool();
  2462. this.OrbitDistance = input.GetF32();
  2463. this.IsBindingDirection = input.GetBool();
  2464. this.HitOnExplosion = input.GetBool();
  2465. this.HitOnExplosionKeyFrame = input.GetExt<KeyFrame>();
  2466. this.HitIntervalMS = input.GetS32();
  2467. this.HitIntervalKeyFrame = input.GetExt<KeyFrame>();
  2468. this.KeyFrames = input.GetList<KeyFrame>(input.GetExt<KeyFrame>);
  2469. this.FileName = input.GetUTF();
  2470. this.FileNameSpawn = input.GetUTF();
  2471. this.FileNameDestory = input.GetUTF();
  2472. this.IsCycAnim = input.GetBool();
  2473. this.FileBodyScale = input.GetF32();
  2474. this.TargetEffect = input.GetExt<LaunchEffect>();
  2475. this.ExpectTarget = input.GetEnum8<SkillTemplate.CastTarget>();
  2476. this.RemoveOnBindingUncontrollable = input.GetBool();
  2477. this.RemoveOnBindingSkillOver = input.GetBool();
  2478. this.StopBindingSkillOnRemoved = input.GetBool();
  2479. this.Properties = input.GetExt<ISpellProperties>(this.Properties);
  2480. this.SpecialEffect = input.GetEnum8<SpecialAdditionalEffect>();
  2481. this.SpecialEffectParam = input.GetF32();
  2482. this.BoomerangFlyTime = input.GetS32();
  2483. this.BoomerangHangtime = input.GetS32();
  2484. this.EffectAddSpeed = input.GetF32();
  2485. this.AnimtionName = input.GetUTF();
  2486. this.AudioName = input.GetUTF();
  2487. this.IsAudioLoop = input.GetBool();
  2488. }
  2489. //------------------------------------------------------------
  2490. //------------------------------------------------------------
  2491. /// <summary>
  2492. /// 法术伤害或特效关键帧
  2493. /// </summary>
  2494. [MessageType(0x4105)]
  2495. [DescAttribute("法术伤害或特效关键帧")]
  2496. [Expandable]
  2497. public class KeyFrame : BaseKeyFrame, ICloneable, IExternalizable
  2498. {
  2499. /// <summary>
  2500. /// 触发的特效
  2501. /// </summary>
  2502. [DescAttribute("触发的特效")]
  2503. public LaunchEffect Effect;
  2504. /// <summary>
  2505. /// 触发新的法术
  2506. /// </summary>
  2507. [DescAttribute("触发新的法术")]
  2508. public LaunchSpell Spell;
  2509. /// <summary>
  2510. /// 攻击伤害
  2511. /// </summary>
  2512. [DescAttribute("攻击伤害")]
  2513. public AttackProp Attack;
  2514. /// <summary>
  2515. /// 召唤小弟
  2516. /// </summary>
  2517. [DescAttribute("召唤小弟")]
  2518. public SummonUnit Summon;
  2519. public KeyFrame() { }
  2520. public override string ToString()
  2521. {
  2522. if (Spell == null)
  2523. {
  2524. return "Frame: @" + FrameMS;
  2525. }
  2526. return "Frame: @" + FrameMS + ", " + Spell.ToString();
  2527. }
  2528. public object Clone()
  2529. {
  2530. KeyFrame ret = new KeyFrame();
  2531. ret.FrameMS = this.FrameMS;
  2532. ret.Spell = CUtils.TryClone<LaunchSpell>(this.Spell);
  2533. ret.Effect = CUtils.TryClone<LaunchEffect>(this.Effect);
  2534. ret.Attack = CUtils.TryClone<AttackProp>(this.Attack);
  2535. ret.Summon = CUtils.TryClone<SummonUnit>(this.Summon);
  2536. return ret;
  2537. }
  2538. public void WriteExternal(IOutputStream output)
  2539. {
  2540. output.PutS32(base.FrameMS);
  2541. output.PutExt(this.Spell);
  2542. output.PutExt(this.Effect);
  2543. output.PutExt(this.Attack);
  2544. output.PutExt(this.Summon);
  2545. }
  2546. public void ReadExternal(IInputStream input)
  2547. {
  2548. base.FrameMS = input.GetS32();
  2549. this.Spell = input.GetExt<LaunchSpell>();
  2550. this.Effect = input.GetExt<LaunchEffect>();
  2551. this.Attack = input.GetExt<AttackProp>();
  2552. this.Summon = input.GetExt<SummonUnit>();
  2553. }
  2554. }
  2555. }
  2556. //---------------------------------------------------------------------------------//
  2557. /// <summary>
  2558. /// BUFF类数据结构
  2559. /// </summary>
  2560. [MessageType(0x4006)]
  2561. [DescAttribute("BUFF类数据结构")]
  2562. [TableClassAttribute("ID")]
  2563. public class BuffTemplate : ICloneable, ITemplateData, IExternalizable
  2564. {
  2565. public int TemplateID { get { return ID; } }
  2566. [XmlSerializable()]
  2567. public string EditorPath { get; set; }
  2568. [DescAttribute("ID", "", false)]
  2569. public int ID;
  2570. [LocalizationTextAttribute]
  2571. [DescAttribute("Buff名字")]
  2572. public string Name;
  2573. [DescAttribute("技能图标", "资源")]
  2574. public string IconName;
  2575. [DescAttribute("需要同步客户端")]
  2576. public bool ClientVisible = true;
  2577. [DescAttribute("生命周期(毫秒)")]
  2578. public int LifeTimeMS;
  2579. //--------------------------------------------------------------
  2580. [DescAttribute("每间隔多少毫秒就触发一次", "关键帧")]
  2581. public int HitIntervalMS;
  2582. [DescAttribute("第0帧是否有效", "关键帧")]
  2583. public bool FirstTimeEnable = true;
  2584. [DescAttribute("每间隔时间触发一次的时候起效", "关键帧")]
  2585. public KeyFrame HitKeyFrame;
  2586. [ListAttribute(typeof(KeyFrame))]
  2587. [DescAttribute("所有关键帧", "关键帧")]
  2588. public List<KeyFrame> KeyFrames = new List<KeyFrame>();
  2589. [DescAttribute("Buff结束关键帧", "关键帧")]
  2590. public KeyFrame EndKeyFrame;
  2591. //--------------------------------------------------------------
  2592. [DescAttribute("是否有害(Debuff),否则为有益(Buff)", "BUFF")]
  2593. public bool IsHarmful = false;
  2594. [DescAttribute("Buff是否可以主动取消", "BUFF")]
  2595. public bool IsCancelBySelf = false;
  2596. [DescAttribute("Buff是否允许多个实例", "BUFF")]
  2597. public bool IsDuplicating = false;
  2598. [DescAttribute("Buff施放者死亡立即移除", "BUFF")]
  2599. public bool IsRemoveOnSenderRemoved = true;
  2600. [DescAttribute("死亡立即移除", "BUFF")]
  2601. public bool IsRemoveOnDead = false;
  2602. //--------------------------------------------------------------
  2603. [DescAttribute("BUFF期间,强制单位进入BUFF特殊动作(即不会被其他动作打断)", "状态")]
  2604. public string LockStateAction;
  2605. [DescAttribute("是否隐身", "状态")]
  2606. public bool IsInvisible = false;
  2607. [DescAttribute("是否无敌", "状态")]
  2608. public bool IsInvincible = false;
  2609. [DescAttribute("是否沉默(只能释放BaseSkill)", "状态")]
  2610. public bool IsSilent = false;
  2611. [DescAttribute("是否沉默允许移动", "状态")]
  2612. public bool IsCanMove = true;
  2613. [DescAttribute("产生眩晕", "状态")]
  2614. public bool MakeStun = false;
  2615. [DescAttribute("免疫控制", "状态")]
  2616. public bool IgnoreControl = false;
  2617. [DescAttribute("单位被动触发系,一直绑定关系", "状态")]
  2618. public LaunchTrigger UnitTrigger;
  2619. //--------------------------------------------------------------
  2620. [DescAttribute("允许变身", "变身 - 造型")]
  2621. public bool MakeAvatar = false;
  2622. [DescAttribute("单位变身的模型文件名", "变身 - 造型")]
  2623. [ResourceIDAttribute]
  2624. [DependOnProperty("MakeAvatar")]
  2625. public string UnitFileName;
  2626. //--------------------------------------------------------------
  2627. [DescAttribute("允许改变技能", "变身 - 技能")]
  2628. public bool UnitChangeSkills = false;
  2629. [DescAttribute("此单位变身普通攻击技能", "变身 - 技能")]
  2630. [DependOnProperty("UnitChangeSkills")]
  2631. public LaunchSkill UnitBaseSkillID;
  2632. [ListAttribute(typeof(LaunchSkill))]
  2633. [DescAttribute("此单位变身绑定的所有技能ID", "变身 - 技能")]
  2634. [DependOnProperty("UnitChangeSkills")]
  2635. public List<LaunchSkill> UnitSkills = new List<LaunchSkill>();
  2636. [DescAttribute("变身改变技能时,保留的技能ID", "变身 - 技能")]
  2637. [TemplatesIDAttribute(typeof(SkillTemplate))]
  2638. [DependOnProperty("UnitChangeSkills")]
  2639. public List<int> UnitKeepSkillsID = new List<int>();
  2640. //--------------------------------------------------------------
  2641. //--------------------------------------------------------------
  2642. [DescAttribute("是否可堆叠层数", "堆叠")]
  2643. public bool IsOverlay = false;
  2644. [DescAttribute("最高可堆叠层数", "堆叠")]
  2645. [DependOnProperty("IsOverlay")]
  2646. public byte MaxOverlay = 1;
  2647. [DescAttribute("是否为被动系,则不显示在面板")]
  2648. public bool IsPassive = false;
  2649. public enum BindingPlayType : byte
  2650. {
  2651. [DescAttribute("一次性全部播放,配置多少,播放多少")]
  2652. All = 0,
  2653. [DescAttribute("根据层数去播放,那一层播放那一个")]
  2654. AppointOverLayer = 1,
  2655. [DescAttribute("包含层数,如果层数是2,会同时播放1和2的特效")]
  2656. IncludeOverLayer = 2,
  2657. }
  2658. [DescAttribute("BindingEffectList的播放模式(客户端用)", "特效")]
  2659. public BindingPlayType PlayType = BindingPlayType.All;
  2660. [DescAttribute("BUFF期间绑定特效(客户端用)", "特效")]
  2661. public LaunchEffect BindingEffect;
  2662. [ListAttribute(typeof(LaunchEffect))]
  2663. [DescAttribute("BUFF期间绑定特效集合(客户端用)", "特效")]
  2664. public List<LaunchEffect> BindingEffectList = new List<LaunchEffect>();
  2665. [ListAttribute(typeof(LaunchEffect))]
  2666. [DescAttribute("BUFF期间每层绑定特效(每层对应一个特效,客户端用)", "特效")]
  2667. [DependOnProperty("IsOverlay")]
  2668. public List<LaunchEffect> OverlayBindingEffect = new List<LaunchEffect>();
  2669. //--------------------------------------------------------------
  2670. [DescAttribute("互斥类型,同类型不能出现两个(非0有效)", "互斥")]
  2671. public int ExclusiveCatgory;
  2672. [DescAttribute("互斥优先级,如果优先级相等,则替换", "互斥")]
  2673. public int ExclusivePriority;
  2674. //--------------------------------------------------------------
  2675. [DescAttribute("Buff用户自定义扩展属性", "扩展")]
  2676. [Expandable]
  2677. [NotNull]
  2678. public IBuffProperties Properties;
  2679. [DescAttribute("自定义字段", "属性", true)]
  2680. public string[] Attributes;
  2681. //内部使用的一些字段,
  2682. [DescAttribute("强制加,跳过boss免控限制", "属性", true)]
  2683. public bool forceAdd;
  2684. public BuffTemplate()
  2685. {
  2686. this.Properties = TemplateManager.Factory.CreateBuffProperties();
  2687. }
  2688. public int GetID()
  2689. {
  2690. return ID;
  2691. }
  2692. public override string ToString()
  2693. {
  2694. return Name + "(" + ID + ")";
  2695. }
  2696. public object Clone()
  2697. {
  2698. BuffTemplate ret = new BuffTemplate();
  2699. ret.EditorPath = this.EditorPath;
  2700. ret.ID = this.ID;
  2701. ret.Name = this.Name;
  2702. ret.IconName = this.IconName;
  2703. ret.ClientVisible = this.ClientVisible;
  2704. ret.LifeTimeMS = this.LifeTimeMS;
  2705. ret.HitIntervalMS = this.HitIntervalMS;
  2706. ret.FirstTimeEnable = this.FirstTimeEnable;
  2707. ret.HitKeyFrame = CUtils.TryClone<KeyFrame>(this.HitKeyFrame);
  2708. ret.KeyFrames = CUtils.CloneList<KeyFrame>(this.KeyFrames);
  2709. ret.IsHarmful = this.IsHarmful;
  2710. ret.IsCancelBySelf = this.IsCancelBySelf;
  2711. ret.IsDuplicating = this.IsDuplicating;
  2712. ret.EndKeyFrame = CUtils.TryClone<KeyFrame>(this.EndKeyFrame);
  2713. ret.IsInvisible = this.IsInvisible;
  2714. ret.IsInvincible = this.IsInvincible;
  2715. ret.IsSilent = this.IsSilent;
  2716. ret.IsCanMove = this.IsCanMove;
  2717. ret.MakeStun = this.MakeStun;
  2718. ret.IgnoreControl = this.IgnoreControl;
  2719. ret.IsRemoveOnSenderRemoved = this.IsRemoveOnSenderRemoved;
  2720. ret.IsRemoveOnDead = this.IsRemoveOnDead;
  2721. ret.LockStateAction = this.LockStateAction;
  2722. ret.UnitTrigger = CUtils.TryClone<LaunchTrigger>(this.UnitTrigger);
  2723. ret.MakeAvatar = this.MakeAvatar;
  2724. ret.UnitFileName = this.UnitFileName;
  2725. ret.UnitChangeSkills = this.UnitChangeSkills;
  2726. ret.UnitBaseSkillID = CUtils.TryClone<LaunchSkill>(this.UnitBaseSkillID);
  2727. ret.UnitSkills = CUtils.CloneList<LaunchSkill>(this.UnitSkills);
  2728. ret.UnitKeepSkillsID = new List<int>(this.UnitKeepSkillsID);
  2729. ret.IsOverlay = this.IsOverlay;
  2730. ret.MaxOverlay = this.MaxOverlay;
  2731. ret.IsPassive = this.IsPassive;
  2732. ret.BindingEffect = CUtils.TryClone<LaunchEffect>(this.BindingEffect);
  2733. ret.PlayType = this.PlayType;
  2734. ret.BindingEffectList = CUtils.CloneList<LaunchEffect>(this.BindingEffectList);
  2735. ret.OverlayBindingEffect = CUtils.CloneList<LaunchEffect>(this.OverlayBindingEffect);
  2736. ret.ExclusiveCatgory = this.ExclusiveCatgory;
  2737. ret.ExclusivePriority = this.ExclusivePriority;
  2738. ret.Properties = CUtils.TryClone<IBuffProperties>(this.Properties);
  2739. ret.Attributes = CUtils.CloneArray<string>(this.Attributes);
  2740. ret.forceAdd = this.forceAdd;
  2741. return ret;
  2742. }
  2743. public void WriteExternal(IOutputStream output)
  2744. {
  2745. output.PutUTF(this.EditorPath);
  2746. output.PutS32(this.ID);
  2747. output.PutUTF(this.Name);
  2748. output.PutUTF(this.IconName);
  2749. output.PutS32(this.LifeTimeMS);
  2750. output.PutBool(this.ClientVisible);
  2751. output.PutS32(this.HitIntervalMS);
  2752. output.PutBool(this.FirstTimeEnable);
  2753. output.PutExt(this.HitKeyFrame);
  2754. output.PutList(this.KeyFrames, output.PutExt);
  2755. output.PutExt(this.EndKeyFrame);
  2756. output.PutBool(this.IsHarmful);
  2757. output.PutBool(this.IsCancelBySelf);
  2758. output.PutBool(this.IsDuplicating);
  2759. output.PutBool(this.IsInvisible);
  2760. output.PutBool(this.IsInvincible);
  2761. output.PutBool(this.IsSilent);
  2762. output.PutBool(this.IsCanMove);
  2763. output.PutBool(this.MakeStun);
  2764. output.PutBool(this.IgnoreControl);
  2765. output.PutBool(this.IsRemoveOnSenderRemoved);
  2766. output.PutBool(this.IsRemoveOnDead);
  2767. output.PutUTF(this.LockStateAction);
  2768. output.PutExt(this.UnitTrigger);
  2769. output.PutBool(this.MakeAvatar);
  2770. output.PutUTF(this.UnitFileName);
  2771. output.PutBool(this.UnitChangeSkills);
  2772. output.PutExt(this.UnitBaseSkillID);
  2773. output.PutList(this.UnitSkills, output.PutExt);
  2774. output.PutList(this.UnitKeepSkillsID, output.PutS32);
  2775. output.PutBool(this.IsOverlay);
  2776. output.PutU8(this.MaxOverlay);
  2777. output.PutBool(this.IsPassive);
  2778. output.PutExt(this.BindingEffect);
  2779. output.PutEnum8(this.PlayType);
  2780. output.PutList(this.BindingEffectList, output.PutExt);
  2781. output.PutList(this.OverlayBindingEffect, output.PutExt);
  2782. output.PutS32(this.ExclusiveCatgory);
  2783. output.PutS32(this.ExclusivePriority);
  2784. output.PutExt(this.Properties);
  2785. output.PutArray(this.Attributes, output.PutUTF);
  2786. output.PutBool(this.forceAdd);
  2787. }
  2788. public void ReadExternal(IInputStream input)
  2789. {
  2790. this.EditorPath = input.GetUTF();
  2791. this.ID = input.GetS32();
  2792. this.Name = input.GetUTF();
  2793. this.IconName = input.GetUTF();
  2794. this.LifeTimeMS = input.GetS32();
  2795. this.ClientVisible = input.GetBool();
  2796. this.HitIntervalMS = input.GetS32();
  2797. this.FirstTimeEnable = input.GetBool();
  2798. this.HitKeyFrame = input.GetExt<KeyFrame>();
  2799. this.KeyFrames = input.GetList<KeyFrame>(input.GetExt<KeyFrame>);
  2800. this.EndKeyFrame = input.GetExt<KeyFrame>();
  2801. this.IsHarmful = input.GetBool();
  2802. this.IsCancelBySelf = input.GetBool();
  2803. this.IsDuplicating = input.GetBool();
  2804. this.IsInvisible = input.GetBool();
  2805. this.IsInvincible = input.GetBool();
  2806. this.IsSilent = input.GetBool();
  2807. this.IsCanMove = input.GetBool();
  2808. this.MakeStun = input.GetBool();
  2809. this.IgnoreControl = input.GetBool();
  2810. this.IsRemoveOnSenderRemoved = input.GetBool();
  2811. this.IsRemoveOnDead = input.GetBool();
  2812. this.LockStateAction = input.GetUTF();
  2813. this.UnitTrigger = input.GetExt<LaunchTrigger>();
  2814. this.MakeAvatar = input.GetBool();
  2815. this.UnitFileName = input.GetUTF();
  2816. this.UnitChangeSkills = input.GetBool();
  2817. this.UnitBaseSkillID = input.GetExt<LaunchSkill>();
  2818. this.UnitSkills = input.GetList<LaunchSkill>(input.GetExt<LaunchSkill>);
  2819. this.UnitKeepSkillsID = input.GetList<int>(input.GetS32);
  2820. this.IsOverlay = input.GetBool();
  2821. this.MaxOverlay = input.GetU8();
  2822. this.IsPassive = input.GetBool();
  2823. this.BindingEffect = input.GetExt<LaunchEffect>();
  2824. this.PlayType = input.GetEnum8<BindingPlayType>();
  2825. this.BindingEffectList = input.GetList<LaunchEffect>(input.GetExt<LaunchEffect>);
  2826. this.OverlayBindingEffect = input.GetList<LaunchEffect>(input.GetExt<LaunchEffect>);
  2827. this.ExclusiveCatgory = input.GetS32();
  2828. this.ExclusivePriority = input.GetS32();
  2829. this.Properties = input.GetExt<IBuffProperties>(this.Properties);
  2830. this.Attributes = input.GetUTFArray();
  2831. this.forceAdd = input.GetBool();
  2832. }
  2833. //--------------------------------------------
  2834. //--------------------------------------------
  2835. /// <summary>
  2836. /// BUFF伤害或特效关键帧
  2837. /// </summary>
  2838. [MessageType(0x4106)]
  2839. [DescAttribute("BUFF伤害或特效关键帧")]
  2840. [Expandable]
  2841. public class KeyFrame : BaseKeyFrame, ICloneable, IExternalizable
  2842. {
  2843. /// <summary>
  2844. /// 触发的特效
  2845. /// </summary>
  2846. [DescAttribute("触发的特效")]
  2847. public LaunchEffect Effect;
  2848. /// <summary>
  2849. /// 触发新的法术
  2850. /// </summary>
  2851. [DescAttribute("触发新的法术")]
  2852. public LaunchSpell Spell;
  2853. /// <summary>
  2854. /// 攻击伤害
  2855. /// </summary>
  2856. [DescAttribute("攻击伤害")]
  2857. public AttackProp Attack;
  2858. /// <summary>
  2859. /// 直接使用道具
  2860. /// </summary>
  2861. [DescAttribute("直接使用道具")]
  2862. public UseItem Item;
  2863. /// <summary>
  2864. /// 直接使用道具
  2865. /// </summary>
  2866. [DescAttribute("场景添加道具")]
  2867. public BuffAddItem addItem;
  2868. public KeyFrame() { }
  2869. public override string ToString()
  2870. {
  2871. return "Frame: @" + FrameMS;
  2872. }
  2873. public object Clone()
  2874. {
  2875. KeyFrame ret = new KeyFrame();
  2876. ret.FrameMS = this.FrameMS;
  2877. ret.Spell = CUtils.TryClone<LaunchSpell>(this.Spell);
  2878. ret.Effect = CUtils.TryClone<LaunchEffect>(this.Effect);
  2879. ret.Attack = CUtils.TryClone<AttackProp>(this.Attack);
  2880. ret.Item = CUtils.TryClone<UseItem>(this.Item);
  2881. ret.addItem = CUtils.TryClone<BuffAddItem>(this.addItem);
  2882. return ret;
  2883. }
  2884. public void WriteExternal(IOutputStream output)
  2885. {
  2886. output.PutS32(base.FrameMS);
  2887. output.PutExt(this.Spell);
  2888. output.PutExt(this.Effect);
  2889. output.PutExt(this.Attack);
  2890. output.PutExt(this.Item);
  2891. output.PutExt(this.addItem);
  2892. }
  2893. public void ReadExternal(IInputStream input)
  2894. {
  2895. base.FrameMS = input.GetS32();
  2896. this.Spell = input.GetExt<LaunchSpell>();
  2897. this.Effect = input.GetExt<LaunchEffect>();
  2898. this.Attack = input.GetExt<AttackProp>();
  2899. this.Item = input.GetExt<UseItem>();
  2900. this.addItem = input.GetExt<BuffAddItem>();
  2901. }
  2902. }
  2903. }
  2904. //---------------------------------------------------------------------------------//
  2905. //---------------------------------------------------------------------------------//
  2906. /// <summary>
  2907. /// 掉落道具类数据结构
  2908. /// </summary>
  2909. [MessageType(0x4007)]
  2910. [DescAttribute("掉落道具类数据结构")]
  2911. [TableClassAttribute("ID")]
  2912. public class ItemTemplate : ICloneable, ITemplateData, IExternalizable
  2913. {
  2914. public int TemplateID { get { return ID; } }
  2915. [XmlSerializable()]
  2916. public string EditorPath { get; set; }
  2917. [DescAttribute("ID", "", false)]
  2918. public int ID;
  2919. [LocalizationTextAttribute]
  2920. [DescAttribute("掉落道具名字", "道具")]
  2921. public string Name;
  2922. [DescAttribute("掉落道具名字", "道具")]
  2923. public string IconName;
  2924. [DescAttribute("使用间隔时间(毫秒)", "道具")]
  2925. public int UseCoolDownTimeMS = 0;
  2926. [DescAttribute("场景显示的名字", "道具")]
  2927. public string DisplayName;
  2928. [DescAttribute("道具是否可被手动检取(如果手动检取,则不能直接走上去获得)", "捡取")]
  2929. public bool Pickable = false;
  2930. [DescAttribute("手动检取读条时间(毫秒)", "捡取")]
  2931. [DependOnProperty("Pickable")]
  2932. public int PickTimeMS = 2000;
  2933. [DescAttribute("拾取后删除", "捡取")]
  2934. public bool RemoveOnFinishPick = true;
  2935. [DescAttribute("最大拾取人数", "捡取")]
  2936. public byte maxPickPlayers = 0;
  2937. [DescAttribute("单人最大拾取次数", "捡取")]
  2938. public short maxPickTimes = 0;
  2939. [DescAttribute("掉落后多久可以获得(毫秒)", "掉落")]
  2940. public int GotCoolDownTimeMS = 500;
  2941. [DescAttribute("掉落道具全阵营有效", "掉落")]
  2942. public bool DropForAll;
  2943. [DescAttribute("掉落道具仅玩家有效", "掉落")]
  2944. public bool PlayerOnly = true;
  2945. [DescAttribute("获得即使用", "掉落")]
  2946. public bool GotOnUse = true;
  2947. [DescAttribute("掉落金币最小值", "掉落")]
  2948. public int DropMoneyMin = 0;
  2949. [DescAttribute("掉落金币最大值", "掉落")]
  2950. public int DropMoneyMax = 0;
  2951. [DescAttribute("获得后的特效(检取者)", "特效")]
  2952. public LaunchEffect GotEffect;
  2953. [DescAttribute("获得后的特效(自身)", "特效")]
  2954. public LaunchEffect GotEffectSelf;
  2955. [DescAttribute("掉落时的特效", "特效")]
  2956. public LaunchEffect DropEffect;
  2957. [ResourceIDAttribute]
  2958. [DescAttribute("资源模型名字", "资源")]
  2959. public string FileName;
  2960. [DescAttribute("拾取范围,半径", "资源")]
  2961. public float BodySize = 1f;
  2962. [DescAttribute("客户端可见", "资源")]
  2963. public bool ClientVisible = true;
  2964. [DescAttribute("道具产生后,持续时间(毫秒)", "掉落")]
  2965. public int LifeTimeMS = 10000;
  2966. [DescAttribute("道具产生后,显示截止时间戳(秒)", "掉落")]
  2967. public int LifeEndTime = 0;
  2968. [DescAttribute("道具飞到拾取者身上的插值(仅客户端表现用)", "掉落")]
  2969. public float FlyLerp = 0.1f;
  2970. [DescAttribute("是否显示持续时间 ", "掉落")]
  2971. public bool showLifeTime = false;
  2972. [DescAttribute("物品掉落的动画时长(毫秒)", "掉落")]
  2973. public float AnimatorTime = -1.0f;
  2974. [DescAttribute("仅做显示用", "掉落")]
  2975. public bool OnlyForShow = false;
  2976. [DescAttribute("模型上是否显示品质光柱", "掉落")]
  2977. public bool ShowQualityEffect = true;
  2978. [DescAttribute("使用后的特效", "特效")]
  2979. public LaunchEffect UseEffect;
  2980. [DescAttribute("使用后释放一个法术", "使用")]
  2981. public LaunchSpell UseSpell;
  2982. [DescAttribute("使用后召唤单位", "使用")]
  2983. public SummonUnit UseSummon;
  2984. [DescAttribute("使用后增加BUFF列表", "使用")]
  2985. [ListAttribute(typeof(LaunchBuff))]
  2986. public List<LaunchBuff> UseBuffs = new List<LaunchBuff>();
  2987. [DescAttribute("装备后增加BUFF列表", "装备")]
  2988. [ListAttribute(typeof(LaunchBuff))]
  2989. public List<LaunchBuff> EquipBuffs = new List<LaunchBuff>();
  2990. [DescAttribute("在背包内最大堆叠数量", "背包")]
  2991. public int MaxStackCount = 100;
  2992. [DescAttribute("最大持有数量,0表示无上限", "背包")]
  2993. public int HoldingLimit = 0;
  2994. [DescAttribute("是否在背包内可使用", "背包")]
  2995. public bool IsInventoryUseable = true;
  2996. [DescAttribute("是否可携带多个(包括堆叠)", "背包")]
  2997. public bool IsDuplicateInventory = true;
  2998. [DescAttribute("同步到服务器(可持久化保存的道具)", "背包")]
  2999. public bool SyncToServer = false;
  3000. [DescAttribute("背包道具使用读条(毫秒)", "背包")]
  3001. public int UseInProgressTimeMS = 0;
  3002. [DescAttribute("购买花费金币", "购买")]
  3003. public bool BuyCostMoney;
  3004. [DescAttribute("出售花费金币", "购买")]
  3005. public bool SellGotMoney;
  3006. [DescAttribute("是否弹出非物品类的二级面板", "显示")]
  3007. public bool IsPopPanel = false;
  3008. [ListAttribute(typeof(FlyEffect))]
  3009. [DescAttribute("飞行特效", "妖气修为")]
  3010. public List<FlyEffect> Fly;
  3011. /// <summary>
  3012. /// 道具扩展属性
  3013. /// </summary>
  3014. [DescAttribute("道具扩展属性", "扩展")]
  3015. [Expandable]
  3016. [NotNull]
  3017. public IItemProperties Properties;
  3018. public ItemTemplate()
  3019. {
  3020. this.Properties = TemplateManager.Factory.CreateItemProperties();
  3021. }
  3022. public ItemTemplate(int id)
  3023. {
  3024. this.ID = id;
  3025. this.Properties = TemplateManager.Factory.CreateItemProperties();
  3026. }
  3027. public int GetID()
  3028. {
  3029. return ID;
  3030. }
  3031. public override string ToString()
  3032. {
  3033. return Name + "(" + ID + ")";
  3034. }
  3035. public object Clone()
  3036. {
  3037. ItemTemplate ret = new ItemTemplate();
  3038. ret.EditorPath = this.EditorPath;
  3039. ret.ID = this.ID;
  3040. ret.Name = this.Name;
  3041. ret.IconName = this.IconName;
  3042. ret.Pickable = this.Pickable;
  3043. ret.PickTimeMS = this.PickTimeMS;
  3044. ret.RemoveOnFinishPick = this.RemoveOnFinishPick;
  3045. ret.GotCoolDownTimeMS = this.GotCoolDownTimeMS;
  3046. ret.DropForAll = this.DropForAll;
  3047. ret.PlayerOnly = this.PlayerOnly;
  3048. ret.GotOnUse = this.GotOnUse;
  3049. ret.DropMoneyMin = this.DropMoneyMin;
  3050. ret.DropMoneyMax = this.DropMoneyMax;
  3051. ret.GotEffect = CUtils.TryClone<LaunchEffect>(this.GotEffect);
  3052. ret.GotEffectSelf = CUtils.TryClone<LaunchEffect>(this.GotEffectSelf);
  3053. ret.DropEffect = CUtils.TryClone<LaunchEffect>(this.DropEffect);
  3054. ret.FileName = this.FileName;
  3055. ret.BodySize = this.BodySize;
  3056. ret.ClientVisible = this.ClientVisible;
  3057. ret.LifeTimeMS = this.LifeTimeMS;
  3058. ret.UseEffect = CUtils.TryClone<LaunchEffect>(this.UseEffect);
  3059. ret.UseSpell = CUtils.TryClone<LaunchSpell>(this.UseSpell);
  3060. ret.UseSummon = CUtils.TryClone<SummonUnit>(this.UseSummon);
  3061. ret.UseBuffs = CUtils.CloneList<LaunchBuff>(this.UseBuffs);
  3062. ret.EquipBuffs = CUtils.CloneList<LaunchBuff>(this.EquipBuffs);
  3063. ret.MaxStackCount = this.MaxStackCount;
  3064. ret.HoldingLimit = this.HoldingLimit;
  3065. ret.IsInventoryUseable = this.IsInventoryUseable;
  3066. ret.UseCoolDownTimeMS = this.UseCoolDownTimeMS;
  3067. ret.IsDuplicateInventory = this.IsDuplicateInventory;
  3068. ret.SyncToServer = this.SyncToServer;
  3069. ret.UseInProgressTimeMS = this.UseInProgressTimeMS;
  3070. ret.FlyLerp = this.FlyLerp;
  3071. ret.showLifeTime = this.showLifeTime;
  3072. ret.AnimatorTime = this.AnimatorTime;
  3073. ret.LifeEndTime = this.LifeEndTime;
  3074. ret.IsPopPanel = this.IsPopPanel;
  3075. ret.Fly = CUtils.CloneList<FlyEffect>(this.Fly);
  3076. ret.Properties = CUtils.TryClone<IItemProperties>(this.Properties);
  3077. ret.maxPickPlayers = this.maxPickPlayers;
  3078. ret.maxPickTimes = this.maxPickTimes;
  3079. ret.OnlyForShow = this.OnlyForShow;
  3080. ret.DisplayName = this.DisplayName;
  3081. ret.ShowQualityEffect = this.ShowQualityEffect;
  3082. return ret;
  3083. }
  3084. public void WriteExternal(IOutputStream output)
  3085. {
  3086. output.PutUTF(this.EditorPath);
  3087. output.PutS32(this.ID);
  3088. output.PutUTF(this.Name);
  3089. output.PutUTF(this.IconName);
  3090. output.PutBool(this.Pickable);
  3091. output.PutS32(this.PickTimeMS);
  3092. output.PutBool(this.RemoveOnFinishPick);
  3093. output.PutS32(this.GotCoolDownTimeMS);
  3094. output.PutBool(this.DropForAll);
  3095. output.PutBool(this.PlayerOnly);
  3096. output.PutBool(this.GotOnUse);
  3097. output.PutS32(this.DropMoneyMin);
  3098. output.PutS32(this.DropMoneyMax);
  3099. output.PutExt(this.GotEffect);
  3100. output.PutExt(this.GotEffectSelf);
  3101. output.PutExt(this.DropEffect);
  3102. output.PutUTF(this.FileName);
  3103. output.PutF32(this.BodySize);
  3104. output.PutBool(this.ClientVisible);
  3105. output.PutS32(this.LifeTimeMS);
  3106. output.PutExt(this.UseEffect);
  3107. output.PutExt(this.UseSpell);
  3108. output.PutExt(this.UseSummon);
  3109. output.PutList(this.UseBuffs, output.PutExt);
  3110. output.PutList(this.EquipBuffs, output.PutExt);
  3111. output.PutS32(this.MaxStackCount);
  3112. output.PutS32(this.HoldingLimit);
  3113. output.PutBool(this.IsInventoryUseable);
  3114. output.PutS32(this.UseCoolDownTimeMS);
  3115. output.PutBool(this.IsDuplicateInventory);
  3116. output.PutBool(this.SyncToServer);
  3117. output.PutS32(this.UseInProgressTimeMS);
  3118. output.PutExt(this.Properties);
  3119. output.PutBool(this.showLifeTime);
  3120. output.PutF32(this.FlyLerp);
  3121. if (this.showLifeTime)
  3122. {
  3123. output.PutS32(this.LifeEndTime);
  3124. }
  3125. output.PutF32(this.AnimatorTime);
  3126. output.PutBool(this.IsPopPanel);
  3127. output.PutList<FlyEffect>(this.Fly, output.PutExt);
  3128. output.PutS16(this.maxPickTimes);
  3129. output.PutU8(this.maxPickPlayers);
  3130. output.PutBool(this.OnlyForShow);
  3131. output.PutUTF(this.DisplayName);
  3132. output.PutBool(this.ShowQualityEffect);
  3133. }
  3134. public void ReadExternal(IInputStream input)
  3135. {
  3136. this.EditorPath = input.GetUTF();
  3137. this.ID = input.GetS32();
  3138. this.Name = input.GetUTF();
  3139. this.IconName = input.GetUTF();
  3140. this.Pickable = input.GetBool();
  3141. this.PickTimeMS = input.GetS32();
  3142. this.RemoveOnFinishPick = input.GetBool();
  3143. this.GotCoolDownTimeMS = input.GetS32();
  3144. this.DropForAll = input.GetBool();
  3145. this.PlayerOnly = input.GetBool();
  3146. this.GotOnUse = input.GetBool();
  3147. this.DropMoneyMin = input.GetS32();
  3148. this.DropMoneyMax = input.GetS32();
  3149. this.GotEffect = input.GetExt<LaunchEffect>();
  3150. this.GotEffectSelf = input.GetExt<LaunchEffect>();
  3151. this.DropEffect = input.GetExt<LaunchEffect>();
  3152. this.FileName = input.GetUTF();
  3153. this.BodySize = input.GetF32();
  3154. this.ClientVisible = input.GetBool();
  3155. this.LifeTimeMS = input.GetS32();
  3156. this.UseEffect = input.GetExt<LaunchEffect>();
  3157. this.UseSpell = input.GetExt<LaunchSpell>();
  3158. this.UseSummon = input.GetExt<SummonUnit>();
  3159. this.UseBuffs = input.GetList<LaunchBuff>(input.GetExt<LaunchBuff>);
  3160. this.EquipBuffs = input.GetList<LaunchBuff>(input.GetExt<LaunchBuff>);
  3161. this.MaxStackCount = input.GetS32();
  3162. this.HoldingLimit = input.GetS32();
  3163. this.IsInventoryUseable = input.GetBool();
  3164. this.UseCoolDownTimeMS = input.GetS32();
  3165. this.IsDuplicateInventory = input.GetBool();
  3166. this.SyncToServer = input.GetBool();
  3167. this.UseInProgressTimeMS = input.GetS32();
  3168. this.Properties = input.GetExt<IItemProperties>(this.Properties);
  3169. this.showLifeTime = input.GetBool();
  3170. this.FlyLerp = input.GetF32();
  3171. if (this.showLifeTime)
  3172. {
  3173. this.LifeEndTime = input.GetS32();
  3174. }
  3175. this.AnimatorTime = input.GetF32();
  3176. this.IsPopPanel = input.GetBool();
  3177. this.Fly = input.GetList<FlyEffect>(input.GetExt<FlyEffect>);
  3178. this.maxPickTimes = input.GetS16();
  3179. this.maxPickPlayers = input.GetU8();
  3180. this.OnlyForShow = input.GetBool();
  3181. this.DisplayName = input.GetUTF();
  3182. this.ShowQualityEffect = input.GetBool();
  3183. }
  3184. }
  3185. [MessageType(0x4018)]
  3186. [DescAttribute("物品飞行特效")]
  3187. [Expandable]
  3188. public class FlyEffect : ICloneable, IExternalizable
  3189. {
  3190. [DescAttribute("特效名字")]
  3191. public string Name;
  3192. [DescAttribute("特效时长(秒数)")]
  3193. public float Time;
  3194. [DescAttribute("以玩家为目标点")]
  3195. public bool isActorPos;
  3196. [DescAttribute("是否绑定在节点上")]
  3197. public bool isBindPart;
  3198. [DescAttribute("特效飞至的部位")]
  3199. public string PartName;
  3200. [DescAttribute("特效拉升的高度")]
  3201. public float Height;
  3202. [DescAttribute("特效速度")]
  3203. public float Speed;
  3204. [DescAttribute("运行方向 0:原点 1:上 2:下 3:左 4:右 5:前 6:后")]
  3205. public byte RunDirection = 0;
  3206. [DescAttribute("音效文件名")]
  3207. public string AudioName;
  3208. [DescAttribute("是否到达玩家位置就删除特效")]
  3209. public bool IsGoToActorPosAndRemove;
  3210. [DescAttribute("特效和玩家之间的最小距离,小于等于这个距离,这个特效将会移除")]
  3211. [DependOnProperty("IsGoToActorPosAndRemove")]
  3212. public float MinDistance = 0.05f;
  3213. [DescAttribute("基于此节点激活间隔时长")]
  3214. public bool IsBeginActiveIntervalTime = false;
  3215. [DescAttribute("间隔时长,基于激活后的时间间隔")]
  3216. public float IntervalTime = -1;
  3217. [DescAttribute("此特效移除后,关联下一个特效的index")]
  3218. public int NextEffectIndex = -1;
  3219. [DescAttribute("此特效生成时,基于那个index特效的坐标")]
  3220. public int PosIndex = -1;
  3221. public object Clone()
  3222. {
  3223. FlyEffect ret = new FlyEffect();
  3224. ret.Name = this.Name;
  3225. ret.Time = this.Time;
  3226. ret.PartName = this.PartName;
  3227. ret.Height = this.Height;
  3228. ret.isActorPos = this.isActorPos;
  3229. ret.isBindPart = this.isBindPart;
  3230. ret.Speed = this.Speed;
  3231. ret.RunDirection = this.RunDirection;
  3232. ret.AudioName = this.AudioName;
  3233. ret.IsGoToActorPosAndRemove = this.IsGoToActorPosAndRemove;
  3234. ret.IsBeginActiveIntervalTime = this.IsBeginActiveIntervalTime;
  3235. ret.IntervalTime = this.IntervalTime;
  3236. ret.NextEffectIndex = this.NextEffectIndex;
  3237. ret.PosIndex = this.PosIndex;
  3238. return ret;
  3239. }
  3240. public void ReadExternal(IInputStream input)
  3241. {
  3242. this.Name = input.GetUTF();
  3243. this.Time = input.GetF32();
  3244. this.PartName = input.GetUTF();
  3245. this.Height = input.GetF32();
  3246. this.isActorPos = input.GetBool();
  3247. this.isBindPart = input.GetBool();
  3248. this.Speed = input.GetF32();
  3249. this.RunDirection = input.GetU8();
  3250. this.AudioName = input.GetUTF();
  3251. this.IsGoToActorPosAndRemove = input.GetBool();
  3252. this.IsBeginActiveIntervalTime = input.GetBool();
  3253. this.IntervalTime = input.GetF32();
  3254. this.NextEffectIndex = input.GetS32();
  3255. this.PosIndex = input.GetS32();
  3256. }
  3257. public void WriteExternal(IOutputStream output)
  3258. {
  3259. output.PutUTF(this.Name);
  3260. output.PutF32(this.Time);
  3261. output.PutUTF(this.PartName);
  3262. output.PutF32(this.Height);
  3263. output.PutBool(this.isActorPos);
  3264. output.PutBool(this.isBindPart);
  3265. output.PutF32(this.Speed);
  3266. output.PutU8(this.RunDirection);
  3267. output.PutUTF(this.AudioName);
  3268. output.PutBool(this.IsGoToActorPosAndRemove);
  3269. output.PutBool(this.IsBeginActiveIntervalTime);
  3270. output.PutF32(this.IntervalTime);
  3271. output.PutS32(this.NextEffectIndex);
  3272. output.PutS32(this.PosIndex);
  3273. }
  3274. }
  3275. //---------------------------------------------------------------------------------//
  3276. [MessageType(0x4015)]
  3277. [DescAttribute("单位事件触发")]
  3278. [TableClassAttribute("ID")]
  3279. public class UnitEventTemplate : ICloneable, ITemplateData, IExternalizable
  3280. {
  3281. public int TemplateID { get { return ID; } }
  3282. [XmlSerializable()]
  3283. public string EditorPath { get; set; }
  3284. [DescAttribute("ID", "", false)]
  3285. public int ID;
  3286. [LocalizationTextAttribute]
  3287. [DescAttribute("单位事件触发名字", "基础")]
  3288. public string Name;
  3289. [ListAttribute(typeof(UnitEvent))]
  3290. [DescAttribute("所有事件", "基础", false)]
  3291. public List<UnitEvent> Events = new List<UnitEvent>();
  3292. public override string ToString()
  3293. {
  3294. return Name + "(" + ID + ")";
  3295. }
  3296. public object Clone()
  3297. {
  3298. UnitEventTemplate ret = new UnitEventTemplate();
  3299. ret.EditorPath = this.EditorPath;
  3300. ret.ID = this.ID;
  3301. ret.Name = this.Name;
  3302. ret.Events = CUtils.CloneList<UnitEvent>(this.Events);
  3303. return ret;
  3304. }
  3305. public void WriteExternal(IOutputStream output)
  3306. {
  3307. output.PutUTF(this.EditorPath);
  3308. output.PutS32(this.ID);
  3309. output.PutUTF(this.Name);
  3310. output.PutList(this.Events, output.PutExt);
  3311. }
  3312. public void ReadExternal(IInputStream input)
  3313. {
  3314. this.EditorPath = input.GetUTF();
  3315. this.ID = input.GetS32();
  3316. this.Name = input.GetUTF();
  3317. this.Events = input.GetList(input.GetExt<UnitEvent>);
  3318. }
  3319. public UnitEvent GetEvent(string name)
  3320. {
  3321. foreach (var e in Events)
  3322. {
  3323. if (e.Name == name) { return e; }
  3324. }
  3325. return null;
  3326. }
  3327. }
  3328. #endregion
  3329. //---------------------------------------------------------------------------------//
  3330. #region __Launch_Objects__
  3331. public abstract class BaseKeyFrame
  3332. {
  3333. [DescAttribute("关键帧时间(毫秒)")]
  3334. public int FrameMS;
  3335. }
  3336. /// <summary>
  3337. /// 技能或者法术产生的攻击属性
  3338. /// </summary>
  3339. [MessageType(0x4008)]
  3340. [DescAttribute("技能或者法术产生的攻击属性")]
  3341. [Expandable]
  3342. public class AttackProp : ISNData, ICloneable
  3343. {
  3344. /// <summary>
  3345. /// 攻击力
  3346. /// </summary>
  3347. [DescAttribute("攻击力")]
  3348. public int Attack;
  3349. [DescAttribute("产生受击", "Mask")]
  3350. public bool MaskDamage = false;
  3351. [DescAttribute("产生击飞", "Mask")]
  3352. [DependOnProperty("MaskDamage")]
  3353. public bool MaskHitFly = false;
  3354. [DescAttribute("产生击倒", "Mask")]
  3355. [DependOnProperty("MaskDamage")]
  3356. public bool MaskKnockDown = false;
  3357. [DescAttribute("此次攻击必命中,即使命中为0", "Mask")]
  3358. public bool MaskMustHit = false;
  3359. [DescAttribute("此次攻击必暴击,即使暴击为0", "Mask")]
  3360. public bool MaskMustCritical = false;
  3361. [DescAttribute("击中力度(大于目标体重才会产生受击)", "受击")]
  3362. [DependOnProperty("MaskDamage")]
  3363. public int Weight = 1;
  3364. [DescAttribute("单位被(受击、击倒、眩晕、混乱)持续时间(毫秒)" +
  3365. "\n * 此时间如果为0,首先选用单位DamageTimeMS,否则然后采用Config环境参数OBJECT_DAMAGE_TIME_MS替代之。" +
  3366. "\n * HitMove运动时间不计算在KnockOutTimeMS内。", "受击")]
  3367. [DependOnProperty("MaskDamage")]
  3368. public int KnockOutTimeMS = 0;
  3369. [DescAttribute("受击动作名", "受击")]
  3370. [DependOnProperty("MaskDamage")]
  3371. public string DamageActionName = null;
  3372. [DescAttribute("受击时,不再遭受其他攻击", "受击")]
  3373. [DependOnProperty("MaskDamage")]
  3374. public bool IsDamageProtect = false;
  3375. public bool IsHitMove { get { return MaskDamage && HitMove != null; } }
  3376. [DescAttribute("被击中后向后移动距离(包括击飞控制)", "受击")]
  3377. [DependOnProperty("MaskDamage")]
  3378. public StartMove HitMove;
  3379. public enum HitMoveType : byte
  3380. {
  3381. [DescAttribute("根据攻击者位置(台球碰撞)")]
  3382. BySenderPosition,
  3383. [DescAttribute("根据攻击者朝向(单向)")]
  3384. BySenderDirection,
  3385. [DescAttribute("根据攻击者朝向的左右边(摩西分海)")]
  3386. BySenderLeftRight,
  3387. [DescAttribute("位移至攻击者中心(向里吸)")]
  3388. ToSenderCenter,
  3389. [DescAttribute("位移至攻击者身边(向里吸)")]
  3390. ToSenderBodySize,
  3391. [DescAttribute("位移至攻击固定范围外")]
  3392. BySenderRange,
  3393. }
  3394. [DescAttribute("受击位移计算方式", "受击")]
  3395. [DependOnProperty("IsHitMove")]
  3396. public HitMoveType HitMoveMType = HitMoveType.BySenderPosition;
  3397. [DescAttribute("受击位移时对其他单位产生伤害", "受击")]
  3398. [DependOnProperty("IsHitMove")]
  3399. public AttackProp HitMoveBodyAttack;
  3400. [DescAttribute("基于被攻击者身体范围的增加范围", "受击")]
  3401. [DependOnProperty("IsHitMove")]
  3402. public float HitMoveBodyAttackSize = 1;
  3403. [DescAttribute("被击飞落地后产生伤害,或者位移结束产生伤害", "受击")]
  3404. [DependOnProperty("MaskDamage")]
  3405. [DependOnProperty("MaskHitFly")]
  3406. public AttackProp FlyFallenDownAttack;
  3407. [DescAttribute("被击中特效", "被击中")]
  3408. public LaunchEffect Effect;
  3409. [DescAttribute("被击中触发一个BUFF", "被击中")]
  3410. public LaunchBuff Buff;
  3411. [DescAttribute("被击中触发一个Spell", "被击中")]
  3412. public LaunchSpell Spell;
  3413. [DescAttribute("百分比概率击碎目标", "击碎")]
  3414. public float CrushPercent = 0;
  3415. [DescAttribute("击碎目标效果", "击碎")]
  3416. public LaunchEffect CrushEffect;
  3417. [DescAttribute("定帧时长", "客户端")]
  3418. public int StopFrameMS = 0;
  3419. [DescAttribute("定帧类型", "客户端")]
  3420. public string StopFrameAction;
  3421. /// <summary>
  3422. /// 用户自定义扩展属性
  3423. /// </summary>
  3424. [DescAttribute("用户自定义扩展属性", "扩展")]
  3425. [Expandable]
  3426. [NotNull]
  3427. public IAttackProperties Properties;
  3428. [DescAttribute("打死小怪是否击退", "受击")]
  3429. public KillHitMove killHitMove;
  3430. public AttackProp()
  3431. {
  3432. Properties = TemplateManager.Factory.CreateAttackProperties();
  3433. }
  3434. /// <summary>
  3435. /// 是否产生受击
  3436. /// </summary>
  3437. /// <returns></returns>
  3438. public bool IsDamage()
  3439. {
  3440. return MaskDamage || MaskHitFly || MaskKnockDown;
  3441. }
  3442. public override string ToString()
  3443. {
  3444. return "攻击";
  3445. }
  3446. public object Clone()
  3447. {
  3448. AttackProp ret = new AttackProp();
  3449. ret.SerialNumber = this.SerialNumber;
  3450. ret.Attack = this.Attack;
  3451. ret.MaskDamage = this.MaskDamage;
  3452. ret.MaskHitFly = this.MaskHitFly;
  3453. ret.MaskKnockDown = this.MaskKnockDown;
  3454. ret.MaskMustHit = this.MaskMustHit;
  3455. ret.MaskMustCritical = this.MaskMustCritical;
  3456. ret.Weight = this.Weight;
  3457. ret.KnockOutTimeMS = this.KnockOutTimeMS;
  3458. ret.IsDamageProtect = this.IsDamageProtect;
  3459. ret.DamageActionName = this.DamageActionName;
  3460. ret.Effect = CUtils.TryClone<LaunchEffect>(this.Effect);
  3461. ret.Buff = CUtils.TryClone<LaunchBuff>(this.Buff);
  3462. ret.Spell = CUtils.TryClone<LaunchSpell>(this.Spell);
  3463. ret.HitMove = CUtils.TryClone<StartMove>(this.HitMove);
  3464. ret.HitMoveMType = this.HitMoveMType;
  3465. ret.HitMoveBodyAttack = CUtils.TryClone<AttackProp>(this.HitMoveBodyAttack);
  3466. ret.HitMoveBodyAttackSize = this.HitMoveBodyAttackSize;
  3467. ret.FlyFallenDownAttack = CUtils.TryClone<AttackProp>(this.FlyFallenDownAttack);
  3468. ret.StopFrameMS = this.StopFrameMS;
  3469. ret.StopFrameAction = this.StopFrameAction;
  3470. ret.CrushPercent = this.CrushPercent;
  3471. ret.CrushEffect = CUtils.TryClone<LaunchEffect>(this.CrushEffect);
  3472. ret.Properties = CUtils.TryClone<IAttackProperties>(this.Properties);
  3473. ret.killHitMove = CUtils.TryClone<KillHitMove>(this.killHitMove);
  3474. return ret;
  3475. }
  3476. public override void WriteExternal(IOutputStream output)
  3477. {
  3478. base.WriteExternal(output);
  3479. output.PutS32(this.Attack);
  3480. output.PutBool(this.MaskDamage);
  3481. output.PutBool(this.MaskHitFly);
  3482. output.PutBool(this.MaskKnockDown);
  3483. output.PutBool(this.MaskMustHit);
  3484. output.PutBool(this.MaskMustCritical);
  3485. output.PutS32(this.Weight);
  3486. output.PutS32(this.KnockOutTimeMS);
  3487. output.PutBool(this.IsDamageProtect);
  3488. output.PutUTF(this.DamageActionName);
  3489. output.PutExt(this.Effect);
  3490. output.PutExt(this.Buff);
  3491. output.PutExt(this.Spell);
  3492. output.PutExt(this.HitMove);
  3493. output.PutEnum8(this.HitMoveMType);
  3494. output.PutExt(this.HitMoveBodyAttack);
  3495. output.PutF32(this.HitMoveBodyAttackSize);
  3496. output.PutExt(this.FlyFallenDownAttack);
  3497. output.PutS32(this.StopFrameMS);
  3498. output.PutUTF(this.StopFrameAction);
  3499. output.PutF32(this.CrushPercent);
  3500. output.PutExt(this.CrushEffect);
  3501. output.PutExt(this.Properties);
  3502. output.PutExt(this.killHitMove);
  3503. }
  3504. public override void ReadExternal(IInputStream input)
  3505. {
  3506. base.ReadExternal(input);
  3507. this.Attack = input.GetS32();
  3508. this.MaskDamage = input.GetBool();
  3509. this.MaskHitFly = input.GetBool();
  3510. this.MaskKnockDown = input.GetBool();
  3511. this.MaskMustHit = input.GetBool();
  3512. this.MaskMustCritical = input.GetBool();
  3513. this.Weight = input.GetS32();
  3514. this.KnockOutTimeMS = input.GetS32();
  3515. this.IsDamageProtect = input.GetBool();
  3516. this.DamageActionName = input.GetUTF();
  3517. this.Effect = input.GetExt<LaunchEffect>();
  3518. this.Buff = input.GetExt<LaunchBuff>();
  3519. this.Spell = input.GetExt<LaunchSpell>();
  3520. this.HitMove = input.GetExt<StartMove>();
  3521. this.HitMoveMType = input.GetEnum8<HitMoveType>();
  3522. this.HitMoveBodyAttack = input.GetExt<AttackProp>();
  3523. this.HitMoveBodyAttackSize = input.GetF32();
  3524. this.FlyFallenDownAttack = input.GetExt<AttackProp>();
  3525. this.StopFrameMS = input.GetS32();
  3526. this.StopFrameAction = input.GetUTF();
  3527. this.CrushPercent = input.GetF32();
  3528. this.CrushEffect = input.GetExt<LaunchEffect>();
  3529. this.Properties = input.GetExt<IAttackProperties>(this.Properties);
  3530. this.killHitMove = input.GetExt<KillHitMove>();
  3531. }
  3532. }
  3533. //---------------------------------------------------------------------------------//
  3534. /// <summary>
  3535. /// 触发特效,一般只用于显示
  3536. /// </summary>
  3537. [MessageType(0x4009)]
  3538. [DescAttribute("触发特效,一般只用于显示")]
  3539. [Expandable]
  3540. public class LaunchEffect : ISNData, ICloneable
  3541. {
  3542. public enum RunType : byte
  3543. {
  3544. [DescAttribute("默认,沒有運行")]
  3545. None = 0,
  3546. [DescAttribute("圓形,以綁定點未中心")]
  3547. Cycle_BindName = 1,
  3548. }
  3549. [DescAttribute("触发的特效名字")]
  3550. [ResourceIDAttribute]
  3551. public string Name;
  3552. [DescAttribute("触发特效是否绑定在特定单位")]
  3553. public bool BindBody = true;
  3554. [DescAttribute("绑定挂载点位置")]
  3555. public string BindPartName;
  3556. [DescAttribute("如果不为0,则特效以该尺寸缩放")]
  3557. public float ScaleToBodySize;
  3558. [DescAttribute("特效高度的偏移量")]
  3559. public float EffectHight = 0;
  3560. [DescAttribute("特效水平方向的偏移量x")]
  3561. public float EffectOffsetX = 0;
  3562. [DescAttribute("特效水平方向的偏移量x")]
  3563. public float EffectOffsetY = 0;
  3564. [DescAttribute("音效")]
  3565. [ResourceIDAttribute]
  3566. public string SoundName;
  3567. [DescAttribute("震屏时长(毫秒)", "震屏")]
  3568. public int EarthQuakeMS;
  3569. [DescAttribute("震屏幅度", "震屏")]
  3570. public float EarthQuakeXYZ;
  3571. [DescAttribute("自定义字段", "特效扩展")]
  3572. public string Tag;
  3573. [DescAttribute("摄像机动画名字")]
  3574. public string CameraAnimation;
  3575. [DescAttribute("特效持续时间,0表示只播放一次")]
  3576. public int EffectTimeMS = 0;
  3577. [DescAttribute("是否循环")]
  3578. public bool IsLoop = false;
  3579. [DescAttribute("是否同步施法者的Rotation")]
  3580. public bool IsSyncSenderRotation = false;
  3581. [DescAttribute("速度(原始动画/特效速度 * 速度)", "特效加速")]
  3582. public float EffectAddSpeed = 1;
  3583. [DescAttribute("特效中存在的动画,动画的名字", "特效加速")]
  3584. public string AnimtionName;
  3585. [DescAttribute("Buff運行方式")]
  3586. public RunType RType = RunType.None;
  3587. [DescAttribute("圆形运行参数设置")]
  3588. public CricleSpeedMode CricleMode;
  3589. public override string ToString()
  3590. {
  3591. return "触发特效:" + Name;
  3592. }
  3593. public object Clone()
  3594. {
  3595. LaunchEffect ret = new LaunchEffect();
  3596. ret.SerialNumber = this.SerialNumber;
  3597. ret.Name = this.Name;
  3598. ret.BindBody = this.BindBody;
  3599. ret.BindPartName = this.BindPartName;
  3600. ret.ScaleToBodySize = this.ScaleToBodySize;
  3601. ret.EffectHight = this.EffectHight;
  3602. ret.EffectOffsetX = this.EffectOffsetX;
  3603. ret.EffectOffsetY = this.EffectOffsetY;
  3604. ret.SoundName = this.SoundName;
  3605. ret.EarthQuakeMS = this.EarthQuakeMS;
  3606. ret.EarthQuakeXYZ = this.EarthQuakeXYZ;
  3607. ret.Tag = this.Tag;
  3608. ret.CameraAnimation = this.CameraAnimation;
  3609. ret.EffectTimeMS = this.EffectTimeMS;
  3610. ret.IsLoop = this.IsLoop;
  3611. ret.IsSyncSenderRotation = this.IsSyncSenderRotation;
  3612. ret.EffectAddSpeed = this.EffectAddSpeed;
  3613. ret.AnimtionName = this.AnimtionName;
  3614. ret.RType = this.RType;
  3615. ret.CricleMode = CUtils.TryClone<CricleSpeedMode>(this.CricleMode);
  3616. return ret;
  3617. }
  3618. public override void WriteExternal(IOutputStream output)
  3619. {
  3620. base.WriteExternal(output);
  3621. output.PutUTF(this.Name);
  3622. output.PutBool(this.BindBody);
  3623. output.PutUTF(this.BindPartName);
  3624. output.PutF32(this.ScaleToBodySize);
  3625. output.PutF32(this.EffectHight);
  3626. output.PutF32(this.EffectOffsetX);
  3627. output.PutF32(this.EffectOffsetY);
  3628. output.PutUTF(this.SoundName);
  3629. output.PutS32(this.EarthQuakeMS);
  3630. output.PutF32(this.EarthQuakeXYZ);
  3631. output.PutUTF(this.Tag);
  3632. output.PutUTF(this.CameraAnimation);
  3633. output.PutS32(this.EffectTimeMS);
  3634. output.PutBool(this.IsLoop);
  3635. output.PutBool(this.IsSyncSenderRotation);
  3636. output.PutF32(this.EffectAddSpeed);
  3637. output.PutUTF(this.AnimtionName);
  3638. output.PutEnum8(this.RType);
  3639. output.PutExt(this.CricleMode);
  3640. }
  3641. public override void ReadExternal(IInputStream input)
  3642. {
  3643. base.ReadExternal(input);
  3644. this.Name = input.GetUTF();
  3645. this.BindBody = input.GetBool();
  3646. this.BindPartName = input.GetUTF();
  3647. this.ScaleToBodySize = input.GetF32();
  3648. this.EffectHight = input.GetF32();
  3649. this.EffectOffsetX = input.GetF32();
  3650. this.EffectOffsetY = input.GetF32();
  3651. this.SoundName = input.GetUTF();
  3652. this.EarthQuakeMS = input.GetS32();
  3653. this.EarthQuakeXYZ = input.GetF32();
  3654. this.Tag = input.GetUTF();
  3655. this.CameraAnimation = input.GetUTF();
  3656. this.EffectTimeMS = input.GetS32();
  3657. this.IsLoop = input.GetBool();
  3658. this.IsSyncSenderRotation = input.GetBool();
  3659. this.EffectAddSpeed = input.GetF32();
  3660. this.AnimtionName = input.GetUTF();
  3661. this.RType = input.GetEnum8<RunType>();
  3662. this.CricleMode = input.GetExt<CricleSpeedMode>();
  3663. }
  3664. }
  3665. [MessageType(0x4017)]
  3666. [DescAttribute("围绕中心点圆形运行(美术工程有testpos脚本,方便快速调试)")]
  3667. [Expandable]
  3668. public class CricleSpeedMode : ISNData, ICloneable
  3669. {
  3670. [DescAttribute("挂节点的半径")]
  3671. public string[] EffectName;
  3672. [DescAttribute("挂节点的半径")]
  3673. public float Radius = 0;
  3674. [DescAttribute("点间距")]
  3675. public float Gap = 0;
  3676. [DescAttribute("弧度")]
  3677. public float Radian = 0;
  3678. [DescAttribute("圆点距离")]
  3679. public float CircleCenterDis = 0;
  3680. [DescAttribute("圆点距离2")]
  3681. public float CircleCenterDis2 = 0;
  3682. [DescAttribute("互斥度")]
  3683. public float Mutual = 0;
  3684. [DescAttribute("高度")]
  3685. public float Height = 0;
  3686. [DescAttribute("x轴弧度")]
  3687. public float X_Direction = 0;
  3688. [DescAttribute("y轴弧度")]
  3689. public float Y_Direction = 0;
  3690. [DescAttribute("z轴弧度")]
  3691. public float Z_Direction = 0;
  3692. [DescAttribute("旋转速度")]
  3693. public float RotationSpeed = 0;
  3694. public object Clone()
  3695. {
  3696. CricleSpeedMode ret = new CricleSpeedMode();
  3697. ret.SerialNumber = this.SerialNumber;
  3698. ret.EffectName = CUtils.CloneArray<string>(this.EffectName);
  3699. ret.Radius = this.Radius;
  3700. ret.Gap = this.Gap;
  3701. ret.Radian = this.Radian;
  3702. ret.CircleCenterDis = this.CircleCenterDis;
  3703. ret.CircleCenterDis2 = this.CircleCenterDis2;
  3704. ret.Mutual = this.Mutual;
  3705. ret.Height = this.Height;
  3706. ret.X_Direction = this.X_Direction;
  3707. ret.Y_Direction = this.Y_Direction;
  3708. ret.Z_Direction = this.Z_Direction;
  3709. ret.RotationSpeed = this.RotationSpeed;
  3710. return ret;
  3711. }
  3712. public override void WriteExternal(IOutputStream output)
  3713. {
  3714. base.WriteExternal(output);
  3715. output.PutArray(this.EffectName, output.PutUTF);
  3716. output.PutF32(this.Radius);
  3717. output.PutF32(this.Gap);
  3718. output.PutF32(this.Radian);
  3719. output.PutF32(this.CircleCenterDis);
  3720. output.PutF32(this.CircleCenterDis2);
  3721. output.PutF32(this.Mutual);
  3722. output.PutF32(this.Height);
  3723. output.PutF32(this.X_Direction);
  3724. output.PutF32(this.Y_Direction);
  3725. output.PutF32(this.Z_Direction);
  3726. output.PutF32(this.RotationSpeed);
  3727. }
  3728. public override void ReadExternal(IInputStream input)
  3729. {
  3730. base.ReadExternal(input);
  3731. this.EffectName = input.GetUTFArray();
  3732. this.Radius = input.GetF32();
  3733. this.Gap = input.GetF32();
  3734. this.Radian = input.GetF32();
  3735. this.CircleCenterDis = input.GetF32();
  3736. this.CircleCenterDis2 = input.GetF32();
  3737. this.Mutual = input.GetF32();
  3738. this.Height = input.GetF32();
  3739. this.X_Direction = input.GetF32();
  3740. this.Y_Direction = input.GetF32();
  3741. this.Z_Direction = input.GetF32();
  3742. this.RotationSpeed = input.GetF32();
  3743. }
  3744. }
  3745. //---------------------------------------------------------------------------------//
  3746. /// <summary>
  3747. /// 发起法术或者飞行道具
  3748. /// </summary>
  3749. [MessageType(0x400A)]
  3750. [DescAttribute("释技能")]
  3751. [Expandable]
  3752. public class LaunchSkill : ISNData, ICloneable
  3753. {
  3754. [DescAttribute("SkillID")]
  3755. [TemplateIDAttribute(typeof(SkillTemplate))]
  3756. public int SkillID;
  3757. [DescAttribute("释放技能权值-弃用")]
  3758. public int Priority;
  3759. [DescAttribute("AI自动释放技能-内部使用,不能设置")]
  3760. public bool AutoLaunch = true;
  3761. public LaunchSkill() { }
  3762. public LaunchSkill(int skillID, bool autoLaunch = true)
  3763. {
  3764. this.SkillID = skillID;
  3765. this.AutoLaunch = autoLaunch;
  3766. }
  3767. public override string ToString()
  3768. {
  3769. return "触发技能:" + SkillID;
  3770. }
  3771. public object Clone()
  3772. {
  3773. LaunchSkill ret = new LaunchSkill();
  3774. ret.SerialNumber = this.SerialNumber;
  3775. ret.SkillID = this.SkillID;
  3776. ret.Priority = this.Priority;
  3777. ret.AutoLaunch = this.AutoLaunch;
  3778. return ret;
  3779. }
  3780. public override void WriteExternal(IOutputStream output)
  3781. {
  3782. base.WriteExternal(output);
  3783. output.PutS32(SkillID);
  3784. output.PutS32(Priority);
  3785. output.PutBool(AutoLaunch);
  3786. }
  3787. public override void ReadExternal(IInputStream input)
  3788. {
  3789. base.ReadExternal(input);
  3790. this.SkillID = input.GetS32();
  3791. this.Priority = input.GetS32();
  3792. this.AutoLaunch = input.GetBool();
  3793. }
  3794. }
  3795. //---------------------------------------------------------------------------------//
  3796. /// <summary>
  3797. /// 发起法术或者飞行道具
  3798. /// </summary>
  3799. [MessageType(0x400B)]
  3800. [DescAttribute("释放法术或者飞行道具")]
  3801. [Expandable]
  3802. public class LaunchSpell : ISNData, ICloneable
  3803. {
  3804. public enum PosType : byte
  3805. {
  3806. /// <summary>
  3807. /// 默认释放一个法术
  3808. /// </summary>
  3809. POS_TYPE_DEFAULT_SINGLE = 0,
  3810. /// <summary>
  3811. /// 随机范围内目标施放法术
  3812. /// </summary>
  3813. POS_TYPE_RANDOM_FOR_SPELL = 1,
  3814. /// <summary>
  3815. /// 打出圆环多个法术
  3816. /// </summary>
  3817. POS_TYPE_CYCLE = 2,
  3818. /// <summary>
  3819. /// 打出扇形多个法术
  3820. /// </summary>
  3821. POS_TYPE_FAN = 3,
  3822. /// <summary>
  3823. /// 随机方向
  3824. /// </summary>
  3825. POS_TYPE_RANDOM_DIRECTION = 4,
  3826. /// <summary>
  3827. /// 范围
  3828. /// </summary>
  3829. POS_TYPE_AREA = 5,
  3830. /// <summary>
  3831. /// 向同一个目标发射三个锁定法术
  3832. /// </summary>
  3833. POS_TYPE_TOSAMETARGET = 6,
  3834. /// <summary>
  3835. /// X型法术
  3836. /// </summary>
  3837. POS_TYPE_X = 7,
  3838. /// <summary>
  3839. /// 随机范围内施放法术
  3840. /// </summary>
  3841. POS_TYPE_RANDOM_POS = 8,
  3842. /// <summary>
  3843. /// 火箭飞弹
  3844. ///
  3845. /// </summary>
  3846. POS_TYPE_MANY_CANNON = 9,
  3847. }
  3848. /// <summary>
  3849. /// 触发新的法术
  3850. /// </summary>
  3851. [DescAttribute("触发新的法术")]
  3852. [TemplateIDAttribute(typeof(SpellTemplate))]
  3853. public int SpellID;
  3854. [DescAttribute("触发百分比")]
  3855. public float LaunchPercent = 100f;
  3856. /// <summary>
  3857. /// 触发新的法术运行方式
  3858. /// </summary>
  3859. [DescAttribute("触发新的法术运行方式")]
  3860. public PosType PType = PosType.POS_TYPE_DEFAULT_SINGLE;
  3861. /// <summary>
  3862. /// 触发新的法术数量
  3863. /// </summary>
  3864. [DescAttribute("法术范围")]
  3865. [DependOnProperty("HasSpellRange")]
  3866. public int SpellRange = 1;
  3867. public bool MultiLaunch { get { return PType != PosType.POS_TYPE_DEFAULT_SINGLE; } }
  3868. public bool HasSpellRange { get { return PType == PosType.POS_TYPE_RANDOM_FOR_SPELL || PType == PosType.POS_TYPE_RANDOM_POS; } }
  3869. /// <summary>
  3870. /// 触发新的法术数量
  3871. /// </summary>
  3872. [DescAttribute("触发新的法术数量")]
  3873. [DependOnProperty("MultiLaunch")]
  3874. public int Count = 1;
  3875. /// <summary>
  3876. /// 如果触发为扇形,则定义扇形范围
  3877. /// </summary>
  3878. [DescAttribute("扇形:扇形范围;X型:小角值")]
  3879. [DependOnProperty("MultiLaunch")]
  3880. public float Angle = 0;
  3881. [DescAttribute("发射初始角度")]
  3882. [DependOnProperty("MultiLaunch")]
  3883. public float StartAngle = 0;
  3884. public enum LaunchSpllSenderUnit : byte
  3885. {
  3886. [DescAttribute("默认")]
  3887. Sender = 0,
  3888. [DescAttribute("强制为施法者")]
  3889. Launcher = 1,
  3890. [DescAttribute("强制为被攻击者(只在Attack Launch Spell有效)")]
  3891. DamagedUnit = 2,
  3892. [DescAttribute("攻击者(在Buff中,buff的释加者)")]
  3893. AttackerUnit = 3,
  3894. }
  3895. [DescAttribute("发射者", "发射者")]
  3896. public LaunchSpllSenderUnit SenderUnit = LaunchSpllSenderUnit.Sender;
  3897. [DescAttribute("填True,下面无效,发射口是否以单位炮口作为参考", "炮口")]
  3898. public bool FromUnitBody = true;
  3899. [DescAttribute("法术发射高度(炮口高度)", "炮口")]
  3900. [DependOnProperty("FromUnitBody", false)]
  3901. public float LaunchSpellHeight;
  3902. [DescAttribute("法术发射半径(炮口半径)", "炮口")]
  3903. [DependOnProperty("FromUnitBody", false)]
  3904. public float LaunchSpellRadius = 0;
  3905. [DescAttribute("位置偏移类型")]
  3906. public XYModifyType xyModifyType = XYModifyType.Relative;
  3907. [DescAttribute("位置偏移X")]
  3908. public float xModify;
  3909. [DescAttribute("位置偏移Y")]
  3910. public float yModify;
  3911. [DescAttribute("连锁等级,只在技能中LaunchSpell有效(闪电链类数量,如果Spell launch spell ID一致,则传递此值)", "连锁")]
  3912. public int ChainLevel = 0;
  3913. [DescAttribute("自动锁定范围内目标", "自动锁定")]
  3914. public bool IsAutoSeekingTarget = false;
  3915. [DescAttribute("自动锁定范围内目标(范围)", "自动锁定")]
  3916. [DependOnProperty("IsAutoSeekingTarget")]
  3917. public float SeekingTargetRange = 10f;
  3918. [DescAttribute("自动锁定范围内目标(方式)", "自动锁定")]
  3919. [DependOnProperty("IsAutoSeekingTarget")]
  3920. public SpellTemplate.SeekingExpect SeekingTargetExpect = SpellTemplate.SeekingExpect.Random;
  3921. //是否是程序创建的法师
  3922. private bool mIsCodeCreate = false;
  3923. public LaunchSpell() { }
  3924. public LaunchSpell(bool codeCreate)
  3925. {
  3926. this.mIsCodeCreate = codeCreate;
  3927. }
  3928. public bool IsCodeCreate()
  3929. {
  3930. return this.mIsCodeCreate;
  3931. }
  3932. public override string ToString()
  3933. {
  3934. //return "( " + SpellID + ", " + Count + " )";
  3935. return "法术:" + this.SpellID + " 数量:" + Count;
  3936. }
  3937. public object Clone()
  3938. {
  3939. LaunchSpell ret = new LaunchSpell();
  3940. ret.SerialNumber = this.SerialNumber;
  3941. ret.SpellID = this.SpellID;
  3942. ret.LaunchPercent = this.LaunchPercent;
  3943. ret.PType = this.PType;
  3944. ret.Count = this.Count;
  3945. ret.Angle = this.Angle;
  3946. ret.StartAngle = this.StartAngle;
  3947. ret.FromUnitBody = this.FromUnitBody;
  3948. ret.LaunchSpellHeight = this.LaunchSpellHeight;
  3949. ret.LaunchSpellRadius = this.LaunchSpellRadius;
  3950. ret.ChainLevel = this.ChainLevel;
  3951. ret.SenderUnit = this.SenderUnit;
  3952. ret.IsAutoSeekingTarget = this.IsAutoSeekingTarget;
  3953. ret.SeekingTargetRange = this.SeekingTargetRange;
  3954. ret.SeekingTargetExpect = this.SeekingTargetExpect;
  3955. ret.SpellRange = this.SpellRange;
  3956. ret.xModify = this.xModify;
  3957. ret.yModify = this.yModify;
  3958. ret.xyModifyType = this.xyModifyType;
  3959. ret.mIsCodeCreate = this.mIsCodeCreate;
  3960. return ret;
  3961. }
  3962. public override void WriteExternal(IOutputStream output)
  3963. {
  3964. base.WriteExternal(output);
  3965. output.PutS32(this.SpellID);
  3966. output.PutF32(this.LaunchPercent);
  3967. output.PutEnum8(this.PType);
  3968. output.PutS32(this.Count);
  3969. output.PutF32(this.Angle);
  3970. output.PutF32(this.StartAngle);
  3971. output.PutBool(this.FromUnitBody);
  3972. output.PutF32(this.LaunchSpellHeight);
  3973. output.PutF32(this.LaunchSpellRadius);
  3974. output.PutS32(this.ChainLevel);
  3975. output.PutEnum8(this.SenderUnit);
  3976. output.PutBool(this.IsAutoSeekingTarget);
  3977. output.PutF32(this.SeekingTargetRange);
  3978. output.PutEnum8(this.SeekingTargetExpect);
  3979. output.PutS32(this.SpellRange);
  3980. output.PutF32(this.xModify);
  3981. output.PutF32(this.yModify);
  3982. output.PutEnum8(this.xyModifyType);
  3983. }
  3984. public override void ReadExternal(IInputStream input)
  3985. {
  3986. base.ReadExternal(input);
  3987. this.SpellID = input.GetS32();
  3988. this.LaunchPercent = input.GetF32();
  3989. this.PType = input.GetEnum8<PosType>();
  3990. this.Count = input.GetS32();
  3991. this.Angle = input.GetF32();
  3992. this.StartAngle = input.GetF32();
  3993. this.FromUnitBody = input.GetBool();
  3994. this.LaunchSpellHeight = input.GetF32();
  3995. this.LaunchSpellRadius = input.GetF32();
  3996. this.ChainLevel = input.GetS32();
  3997. this.SenderUnit = input.GetEnum8<LaunchSpllSenderUnit>();
  3998. this.IsAutoSeekingTarget = input.GetBool();
  3999. this.SeekingTargetRange = input.GetF32();
  4000. this.SeekingTargetExpect = input.GetEnum8<SpellTemplate.SeekingExpect>();
  4001. this.SpellRange = input.GetS32();
  4002. this.xModify = input.GetF32();
  4003. this.yModify = input.GetF32();
  4004. this.xyModifyType = input.GetEnum8<XYModifyType>();
  4005. }
  4006. public void GetXModify(InstanceUnit launcher, out float xChange, out float yChange)
  4007. {
  4008. if ((this.xModify != 0 || this.yModify != 0) && this.xyModifyType == Data.XYModifyType.Relative && launcher != null)
  4009. {
  4010. float degree = MathVector.getDegree(this.xModify, this.yModify);
  4011. float distance = (float)Math.Sqrt(this.xModify * this.xModify + this.yModify * this.yModify);
  4012. xChange = (float)(distance * Math.Cos(degree + launcher.Direction));
  4013. yChange = (float)(distance * Math.Sin(degree + launcher.Direction));
  4014. return;
  4015. }
  4016. else if (this.xyModifyType == Data.XYModifyType.Absolutely)
  4017. {
  4018. //不做处理
  4019. }
  4020. xChange = this.xModify;
  4021. yChange = this.yModify;
  4022. }
  4023. }
  4024. //---------------------------------------------------------------------------------//
  4025. /// <summary>
  4026. /// 发起BUFF
  4027. /// </summary>
  4028. [MessageType(0x400C)]
  4029. [DescAttribute("发起BUFF")]
  4030. [Expandable]
  4031. public class LaunchBuff : ISNData, ICloneable
  4032. {
  4033. /// <summary>
  4034. /// Buff模板ID
  4035. /// </summary>
  4036. [DescAttribute("Buff模板ID, 一般用BindEventID")]
  4037. [TemplateIDAttribute(typeof(BuffTemplate))]
  4038. public int BuffID;
  4039. [DescAttribute("触发百分比-废弃")]
  4040. public float LaunchPercent = 100f;
  4041. [DescAttribute("绑定事件id:有则去读事件表,忽视BuffID")]
  4042. [DependOnProperty("IsBindEventID")]
  4043. public int BindEventID;
  4044. public bool IsBindEventID { get { return this.BuffID == 0; } }
  4045. public LaunchBuff() { }
  4046. public LaunchBuff(int buffID) { this.BuffID = buffID; }
  4047. public override string ToString()
  4048. {
  4049. return "BUFF:" + BuffID + "_@_" + BindEventID;
  4050. }
  4051. public object Clone()
  4052. {
  4053. LaunchBuff ret = new LaunchBuff();
  4054. ret.SerialNumber = this.SerialNumber;
  4055. ret.BuffID = this.BuffID;
  4056. ret.BindEventID = this.BindEventID;
  4057. ret.LaunchPercent = this.LaunchPercent;
  4058. return ret;
  4059. }
  4060. public override void WriteExternal(IOutputStream output)
  4061. {
  4062. base.WriteExternal(output);
  4063. output.PutS32(BuffID);
  4064. output.PutF32(LaunchPercent);
  4065. output.PutS32(BindEventID);
  4066. }
  4067. public override void ReadExternal(IInputStream input)
  4068. {
  4069. base.ReadExternal(input);
  4070. this.BuffID = input.GetS32();
  4071. this.LaunchPercent = input.GetF32();
  4072. this.BindEventID = input.GetS32();
  4073. }
  4074. }
  4075. /// <summary>
  4076. /// 召唤单位
  4077. /// </summary>
  4078. [MessageType(0x400D)]
  4079. [DescAttribute("召唤单位")]
  4080. [Expandable]
  4081. public class SummonUnit : ISNData, ICloneable
  4082. {
  4083. [DescAttribute("召唤单位模板")]
  4084. [TemplateIDAttribute(typeof(UnitInfo))]
  4085. public int UnitTemplateID;
  4086. [DescAttribute("召唤单位等级")]
  4087. [TemplateLevelAttribute]
  4088. public int UnitLevel = 0;
  4089. [DescAttribute("召唤处产生数量")]
  4090. public int Count = 1;
  4091. [DescAttribute("召唤处产生特效")]
  4092. public LaunchEffect Effect;
  4093. public SummonUnit() { }
  4094. public SummonUnit(int templateID)
  4095. {
  4096. this.UnitTemplateID = templateID;
  4097. }
  4098. public override string ToString()
  4099. {
  4100. return "召唤单位:" + UnitTemplateID + " 数量:" + Count;
  4101. }
  4102. public object Clone()
  4103. {
  4104. SummonUnit ret = new SummonUnit();
  4105. ret.SerialNumber = this.SerialNumber;
  4106. ret.UnitTemplateID = this.UnitTemplateID;
  4107. ret.UnitLevel = this.UnitLevel;
  4108. ret.Count = this.Count;
  4109. ret.Effect = CUtils.TryClone<LaunchEffect>(this.Effect);
  4110. return ret;
  4111. }
  4112. public override void WriteExternal(IOutputStream output)
  4113. {
  4114. base.WriteExternal(output);
  4115. output.PutS32(UnitTemplateID);
  4116. output.PutS32(UnitLevel);
  4117. output.PutS32(Count);
  4118. output.PutExt(Effect);
  4119. }
  4120. public override void ReadExternal(IInputStream input)
  4121. {
  4122. base.ReadExternal(input);
  4123. this.UnitTemplateID = input.GetS32();
  4124. this.UnitLevel = input.GetS32();
  4125. this.Count = input.GetS32();
  4126. this.Effect = input.GetExt<LaunchEffect>();
  4127. }
  4128. }
  4129. [MessageType(0x4016)]
  4130. [DescAttribute("闪现移动")]
  4131. [Expandable]
  4132. public class BlinkMove : ICloneable, IExternalizable
  4133. {
  4134. [DescAttribute("移动距离", "移动")]
  4135. public float Distance = 5;
  4136. [DescAttribute("角度偏移", "移动")]
  4137. public float DirectionOffset;
  4138. [DescAttribute("移动方式", "移动")]
  4139. public BlinkMoveType MType = BlinkMoveType.MoveToForward;
  4140. [DescAttribute("忽略地形", "碰撞")]
  4141. public bool NoneTouchMap = false;
  4142. [DescAttribute("忽略单位", "碰撞")]
  4143. public bool NoneTouchObj = true;
  4144. [DescAttribute("闪现起始点特效", "特效")]
  4145. public LaunchEffect BeginEffect;
  4146. [DescAttribute("闪现目标点特效", "特效")]
  4147. public LaunchEffect TargetEffect;
  4148. public enum BlinkMoveType : byte
  4149. {
  4150. [DescAttribute("向身前移动")]
  4151. MoveToForward,
  4152. [DescAttribute("向身后移动")]
  4153. MoveToBackward,
  4154. [DescAttribute("向技能释放目标点移动")]
  4155. MoveToTargetPos,
  4156. [DescAttribute("向技能释放目标单位移动(面前)")]
  4157. MoveToTargetUnitFace,
  4158. [DescAttribute("向技能释放目标单位移动(背后)")]
  4159. MoveToTargetUnitBack,
  4160. }
  4161. public object Clone()
  4162. {
  4163. BlinkMove ret = new BlinkMove();
  4164. ret.Distance = this.Distance;
  4165. ret.DirectionOffset = this.DirectionOffset;
  4166. ret.MType = this.MType;
  4167. ret.NoneTouchMap = this.NoneTouchMap;
  4168. ret.NoneTouchObj = this.NoneTouchObj;
  4169. ret.BeginEffect = CUtils.TryClone<LaunchEffect>(this.BeginEffect);
  4170. ret.TargetEffect = CUtils.TryClone<LaunchEffect>(this.TargetEffect);
  4171. return ret;
  4172. }
  4173. public void WriteExternal(IOutputStream output)
  4174. {
  4175. output.PutF32(this.Distance);
  4176. output.PutF32(this.DirectionOffset);
  4177. output.PutEnum8(this.MType);
  4178. output.PutBool(this.NoneTouchMap);
  4179. output.PutBool(this.NoneTouchObj);
  4180. output.PutExt(this.BeginEffect);
  4181. output.PutExt(this.TargetEffect);
  4182. }
  4183. public void ReadExternal(IInputStream input)
  4184. {
  4185. this.Distance = input.GetF32();
  4186. this.DirectionOffset = input.GetF32();
  4187. this.MType = input.GetEnum8<BlinkMoveType>();
  4188. this.NoneTouchMap = input.GetBool();
  4189. this.NoneTouchObj = input.GetBool();
  4190. this.BeginEffect = input.GetExt<LaunchEffect>();
  4191. this.TargetEffect = input.GetExt<LaunchEffect>();
  4192. }
  4193. public override string ToString()
  4194. {
  4195. return "闪现移动";
  4196. }
  4197. }
  4198. /// <summary>
  4199. /// 移动距离
  4200. /// </summary>
  4201. [MessageType(0x400E)]
  4202. [DescAttribute("移动距离")]
  4203. [Expandable]
  4204. public class StartMove : ISNData, ICloneable
  4205. {
  4206. [DescAttribute("速度(距离/每秒)", "位移")]
  4207. public float SpeedSEC = 10f;
  4208. [DescAttribute("加速度(距离/每秒)(最终速度=速度+加速度)", "位移")]
  4209. public float SpeedAdd = 0f;
  4210. [DescAttribute("阻力(每秒递减速度百分比)", "位移")]
  4211. public float SpeedAcc = 0f;
  4212. [DescAttribute("被击飞的向上速度(距离/每秒)", "位移")]
  4213. public float ZSpeedSEC = 0f;
  4214. [DescAttribute("被击飞的向上移动最大距离(天花板高度)", "位移")]
  4215. [DependOnProperty("HasFly")]
  4216. public float ZLimit = 0f;
  4217. [DescAttribute("重设重力(非0有效)", "位移")]
  4218. [DependOnProperty("HasFly")]
  4219. public float OverrideGravity = 0f;
  4220. [DescAttribute("起始移动方向修正", "位移")]
  4221. public float Direction;
  4222. [DescAttribute("移动过程中是否忽略碰撞", "位移")]
  4223. public bool IsNoneTouch = false;
  4224. [DescAttribute("自身转动速度(距离/每秒)", "旋转")]
  4225. public float RotateSpeedSEC;
  4226. [DescAttribute("持续时间(毫秒),如果是击飞此处无效,击飞时间按落地时间计算,运动时间不计算在DamageTime内", "时间")]
  4227. [DependOnProperty("HasFly", false)]
  4228. public int KeepTimeMS = 500;
  4229. [DescAttribute("", "", false)]
  4230. public float ArgsFactor = 0;
  4231. public bool HasFly { get { return ZSpeedSEC != 0; } }
  4232. public StartMove() { }
  4233. public override string ToString()
  4234. {
  4235. return "移动速度:" + SpeedSEC + "(每秒) 持续:" + KeepTimeMS + "(毫秒)";
  4236. }
  4237. public object Clone()
  4238. {
  4239. StartMove ret = new StartMove();
  4240. ret.SerialNumber = this.SerialNumber;
  4241. ret.SpeedSEC = this.SpeedSEC;
  4242. ret.SpeedAdd = this.SpeedAdd;
  4243. ret.SpeedAcc = this.SpeedAcc;
  4244. ret.ZSpeedSEC = this.ZSpeedSEC;
  4245. ret.ZLimit = this.ZLimit;
  4246. ret.OverrideGravity = this.OverrideGravity;
  4247. ret.Direction = this.Direction;
  4248. ret.IsNoneTouch = this.IsNoneTouch;
  4249. ret.RotateSpeedSEC = this.RotateSpeedSEC;
  4250. ret.KeepTimeMS = this.KeepTimeMS;
  4251. ret.ArgsFactor = this.ArgsFactor;
  4252. return ret;
  4253. }
  4254. public override void WriteExternal(IOutputStream output)
  4255. {
  4256. base.WriteExternal(output);
  4257. output.PutF32(this.SpeedSEC);
  4258. output.PutF32(this.SpeedAdd);
  4259. output.PutF32(this.SpeedAcc);
  4260. output.PutF32(this.ZSpeedSEC);
  4261. output.PutF32(this.ZLimit);
  4262. output.PutF32(this.OverrideGravity);
  4263. output.PutF32(this.Direction);
  4264. output.PutBool(this.IsNoneTouch);
  4265. output.PutF32(this.RotateSpeedSEC);
  4266. output.PutS32(this.KeepTimeMS);
  4267. output.PutF32(this.ArgsFactor);
  4268. }
  4269. public override void ReadExternal(IInputStream input)
  4270. {
  4271. base.ReadExternal(input);
  4272. this.SpeedSEC = input.GetF32();
  4273. this.SpeedAdd = input.GetF32();
  4274. this.SpeedAcc = input.GetF32();
  4275. this.ZSpeedSEC = input.GetF32();
  4276. this.ZLimit = input.GetF32();
  4277. this.OverrideGravity = input.GetF32();
  4278. this.Direction = input.GetF32();
  4279. this.IsNoneTouch = input.GetBool();
  4280. this.RotateSpeedSEC = input.GetF32();
  4281. this.KeepTimeMS = input.GetS32();
  4282. this.ArgsFactor = input.GetF32();
  4283. }
  4284. }
  4285. /// <summary>
  4286. /// 道具掉落
  4287. /// </summary>
  4288. [MessageType(0x400F)]
  4289. [DescAttribute("道具掉落")]
  4290. [Expandable]
  4291. public class DropItem : ISNData, ICloneable
  4292. {
  4293. /// <summary>
  4294. /// 掉落道具模板ID
  4295. /// </summary>
  4296. [DescAttribute("掉落道具模板ID")]
  4297. [TemplateIDAttribute(typeof(ItemTemplate))]
  4298. public int ItemTemplateID;
  4299. /// <summary>
  4300. /// 掉落数量
  4301. /// </summary>
  4302. [DescAttribute("掉落数量")]
  4303. public int DropCount = 1;
  4304. /// <summary>
  4305. /// 掉落道具百分比
  4306. /// </summary>
  4307. [DescAttribute("掉落道具百分比")]
  4308. public float DropPercent;
  4309. [DescAttribute("掉落位置随机范围点")]
  4310. public float DropPosRange = 0;
  4311. public DropItem() { }
  4312. public DropItem(int itemID, float percent)
  4313. {
  4314. this.ItemTemplateID = itemID;
  4315. this.DropPercent = percent;
  4316. }
  4317. public override string ToString()
  4318. {
  4319. return "道具掉落:" + ItemTemplateID + " 掉率:" + DropPercent + "%";
  4320. }
  4321. public object Clone()
  4322. {
  4323. DropItem ret = new DropItem();
  4324. ret.SerialNumber = this.SerialNumber;
  4325. ret.ItemTemplateID = this.ItemTemplateID;
  4326. ret.DropCount = this.DropCount;
  4327. ret.DropPercent = this.DropPercent;
  4328. ret.DropPosRange = this.DropPosRange;
  4329. return ret;
  4330. }
  4331. public override void WriteExternal(IOutputStream output)
  4332. {
  4333. base.WriteExternal(output);
  4334. output.PutS32(ItemTemplateID);
  4335. output.PutS32(DropCount);
  4336. output.PutF32(DropPercent);
  4337. output.PutF32(DropPosRange);
  4338. }
  4339. public override void ReadExternal(IInputStream input)
  4340. {
  4341. base.ReadExternal(input);
  4342. this.ItemTemplateID = input.GetS32();
  4343. this.DropCount = input.GetS32();
  4344. this.DropPercent = input.GetF32();
  4345. this.DropPosRange = input.GetF32();
  4346. }
  4347. }
  4348. /// <summary>
  4349. /// 道具掉落
  4350. /// </summary>
  4351. [MessageType(0x4013)]
  4352. [DescAttribute("道具掉落列表")]
  4353. [Expandable]
  4354. public class DropItemList : ISNData, ICloneable
  4355. {
  4356. /// <summary>
  4357. /// 掉落道具模板ID
  4358. /// </summary>
  4359. [ListAttribute(typeof(DropItem))]
  4360. [DescAttribute("掉落道具模板列表")]
  4361. public List<DropItem> DropItems = new List<DropItem>();
  4362. public DropItemList() { }
  4363. public override string ToString()
  4364. {
  4365. return "道具掉落:" + DropItems.Count + "个物品中的一个";
  4366. }
  4367. public object Clone()
  4368. {
  4369. DropItemList ret = new DropItemList();
  4370. ret.SerialNumber = this.SerialNumber;
  4371. ret.DropItems = CUtils.CloneList<DropItem>(this.DropItems);
  4372. return ret;
  4373. }
  4374. public override void WriteExternal(IOutputStream output)
  4375. {
  4376. base.WriteExternal(output);
  4377. output.PutList<DropItem>(DropItems, output.PutExt);
  4378. }
  4379. public override void ReadExternal(IInputStream input)
  4380. {
  4381. base.ReadExternal(input);
  4382. this.DropItems = input.GetList<DropItem>(input.GetExt<DropItem>);
  4383. }
  4384. }
  4385. [MessageType(0x4012)]
  4386. [DescAttribute("道具使用")]
  4387. [Expandable]
  4388. public class UseItem : ISNData, ICloneable
  4389. {
  4390. /// <summary>
  4391. /// 掉落道具模板ID
  4392. /// </summary>
  4393. [DescAttribute("道具模板ID")]
  4394. [TemplateIDAttribute(typeof(ItemTemplate))]
  4395. public int ItemTemplateID;
  4396. public UseItem() { }
  4397. public UseItem(int itemID)
  4398. {
  4399. this.ItemTemplateID = itemID;
  4400. }
  4401. public override string ToString()
  4402. {
  4403. return "使用道具:" + ItemTemplateID;
  4404. }
  4405. public object Clone()
  4406. {
  4407. UseItem ret = new UseItem();
  4408. ret.SerialNumber = this.SerialNumber;
  4409. ret.ItemTemplateID = this.ItemTemplateID;
  4410. return ret;
  4411. }
  4412. public override void WriteExternal(IOutputStream output)
  4413. {
  4414. base.WriteExternal(output);
  4415. output.PutS32(this.ItemTemplateID);
  4416. }
  4417. public override void ReadExternal(IInputStream input)
  4418. {
  4419. base.ReadExternal(input);
  4420. this.ItemTemplateID = input.GetS32();
  4421. }
  4422. }
  4423. /// <summary>
  4424. /// 击杀击退
  4425. /// </summary>
  4426. [MessageType(0x4027)]
  4427. [DescAttribute("击杀击退")]
  4428. [Expandable]
  4429. public class KillHitMove : ISNData, ICloneable
  4430. {
  4431. [DescAttribute("是否生效")]
  4432. public bool enable = false;
  4433. [DependOnProperty("enable")]
  4434. [DescAttribute("受击位移计算方式", "受击")]
  4435. public HitMoveType moveType = HitMoveType.BySenderDirection;
  4436. public object Clone()
  4437. {
  4438. KillHitMove ret = new KillHitMove();
  4439. ret.enable = this.enable;
  4440. ret.moveType = this.moveType;
  4441. return ret;
  4442. }
  4443. public override string ToString()
  4444. {
  4445. return "是否生效:" + enable;
  4446. }
  4447. public override void WriteExternal(IOutputStream output)
  4448. {
  4449. base.WriteExternal(output);
  4450. output.PutBool(this.enable);
  4451. output.PutEnum8(this.moveType);
  4452. //output.PutEnum32
  4453. }
  4454. public override void ReadExternal(IInputStream input)
  4455. {
  4456. base.ReadExternal(input);
  4457. this.enable = input.GetBool();
  4458. this.moveType = input.GetEnum8<HitMoveType>();
  4459. }
  4460. }
  4461. [MessageType(0x4028)]
  4462. [DescAttribute("场景增加道具")]
  4463. [Expandable]
  4464. public class BuffAddItem : ISNData, ICloneable
  4465. {
  4466. public enum PosType : byte
  4467. {
  4468. [DescAttribute("buff触发位置")]
  4469. HitBuffPos = 1,
  4470. [DescAttribute("绑定者位置")]
  4471. BindUnitPos = 2,
  4472. [DescAttribute("指定位置")]
  4473. PointPos = 3,
  4474. }
  4475. /// </summary>
  4476. [DescAttribute("生成类型")]
  4477. public PosType posType = PosType.HitBuffPos;
  4478. /// <summary>
  4479. /// 掉落道具模板ID
  4480. /// </summary>
  4481. [DescAttribute("道具模板ID")]
  4482. [TemplateIDAttribute(typeof(ItemTemplate))]
  4483. public int ItemTemplateID;
  4484. public bool IsPointXY { get { return posType == PosType.PointPos; } }
  4485. //记录位置信息
  4486. [DependOnProperty("IsPointXY")]
  4487. [DescAttribute("指定位置X")]
  4488. public float pointX;
  4489. [DependOnProperty("IsPointXY")]
  4490. [DescAttribute("指定位置Y")]
  4491. public float pointY;
  4492. public BuffAddItem() { }
  4493. public override string ToString()
  4494. {
  4495. return "生成道具:" + ItemTemplateID;
  4496. }
  4497. public object Clone()
  4498. {
  4499. BuffAddItem ret = new BuffAddItem();
  4500. ret.SerialNumber = this.SerialNumber;
  4501. ret.ItemTemplateID = this.ItemTemplateID;
  4502. ret.pointX = this.pointX;
  4503. ret.pointY = this.pointY;
  4504. ret.posType = this.posType;
  4505. return ret;
  4506. }
  4507. public override void WriteExternal(IOutputStream output)
  4508. {
  4509. base.WriteExternal(output);
  4510. output.PutS32(this.ItemTemplateID);
  4511. output.PutEnum8(this.posType);
  4512. output.PutF32(this.pointX);
  4513. output.PutF32(this.pointY);
  4514. }
  4515. public override void ReadExternal(IInputStream input)
  4516. {
  4517. base.ReadExternal(input);
  4518. this.ItemTemplateID = input.GetS32();
  4519. this.posType = input.GetEnum8<PosType>();
  4520. this.pointX = input.GetF32();
  4521. this.pointY = input.GetF32();
  4522. }
  4523. }
  4524. /// <summary>
  4525. /// 单位被动触发
  4526. /// </summary>
  4527. [MessageType(0x4011)]
  4528. [DescAttribute("单位被动触发")]
  4529. [Expandable]
  4530. public class LaunchTrigger : ISNData, ICloneable
  4531. {
  4532. [DescAttribute("触发器ID")]
  4533. [TemplateIDAttribute(typeof(UnitTriggerTemplate))]
  4534. public int TriggerTemplateID;
  4535. [DescAttribute("开启")]
  4536. public bool Active = true;
  4537. public LaunchTrigger() { }
  4538. public LaunchTrigger(int id)
  4539. {
  4540. this.TriggerTemplateID = id;
  4541. }
  4542. public override string ToString()
  4543. {
  4544. return "单位触发:" + TriggerTemplateID;
  4545. }
  4546. public object Clone()
  4547. {
  4548. LaunchTrigger ret = new LaunchTrigger();
  4549. ret.SerialNumber = this.SerialNumber;
  4550. ret.TriggerTemplateID = this.TriggerTemplateID;
  4551. ret.Active = this.Active;
  4552. return ret;
  4553. }
  4554. public override void WriteExternal(IOutputStream output)
  4555. {
  4556. base.WriteExternal(output);
  4557. output.PutS32(TriggerTemplateID);
  4558. output.PutBool(Active);
  4559. }
  4560. public override void ReadExternal(IInputStream input)
  4561. {
  4562. base.ReadExternal(input);
  4563. this.TriggerTemplateID = input.GetS32();
  4564. this.Active = input.GetBool();
  4565. }
  4566. }
  4567. /// <summary>
  4568. /// 携带道具
  4569. /// </summary>
  4570. [MessageType(0x4014)]
  4571. [DescAttribute("单位携带道具")]
  4572. [Expandable]
  4573. public class InventoryItem : IExternalizable, ICloneable
  4574. {
  4575. [TemplateIDAttribute(typeof(ItemTemplate))]
  4576. [DescAttribute("道具模板ID")]
  4577. public int ItemTemplateID;
  4578. [DescAttribute("数量ID")]
  4579. public int Count;
  4580. public override string ToString()
  4581. {
  4582. return "携带道具:" + ItemTemplateID + "x" + Count;
  4583. }
  4584. public object Clone()
  4585. {
  4586. InventoryItem ret = new InventoryItem();
  4587. ret.ItemTemplateID = this.ItemTemplateID;
  4588. ret.Count = this.Count;
  4589. return ret;
  4590. }
  4591. public void WriteExternal(IOutputStream output)
  4592. {
  4593. output.PutS32(ItemTemplateID);
  4594. output.PutS32(Count);
  4595. }
  4596. public void ReadExternal(IInputStream input)
  4597. {
  4598. this.ItemTemplateID = input.GetS32();
  4599. this.Count = input.GetS32();
  4600. }
  4601. }
  4602. [MessageType(0x410A)]
  4603. [DescAttribute("单位组阵型")]
  4604. [Expandable]
  4605. public class TeamFormation : IExternalizable, ICloneable
  4606. {
  4607. public enum Formation : byte
  4608. {
  4609. [DescAttribute("随机")]
  4610. Random = 0,
  4611. [DescAttribute("方阵")]
  4612. Square = 1,
  4613. [DescAttribute("以中心点放射出去的圆阵")]
  4614. Round = 2,
  4615. [DescAttribute("圆环")]
  4616. Cycle = 3,
  4617. [DescAttribute("蜂窝阵")]
  4618. Beehive = 4,
  4619. [DescAttribute("直线")]
  4620. Line = 5,
  4621. }
  4622. public bool IsSquare { get { return this.TFormation == Formation.Square; } }
  4623. [DescAttribute("阵型")]
  4624. public Formation TFormation = Formation.Random;
  4625. [DescAttribute("单位间距,间距不计算身体半径,0表示按最大身体计算")]
  4626. public float SpacingSize = 5;
  4627. [DescAttribute("方阵: 每行固定人数,0表示行列相等")]
  4628. [DependOnProperty("IsSquare")]
  4629. public int SquareEachRowCount = 0;
  4630. public object Clone()
  4631. {
  4632. TeamFormation ret = new TeamFormation();
  4633. ret.TFormation = this.TFormation;
  4634. ret.SpacingSize = this.SpacingSize;
  4635. ret.SquareEachRowCount = this.SquareEachRowCount;
  4636. return ret;
  4637. }
  4638. public void WriteExternal(IOutputStream output)
  4639. {
  4640. output.PutEnum8(this.TFormation);
  4641. output.PutF32(this.SpacingSize);
  4642. output.PutS32(this.SquareEachRowCount);
  4643. }
  4644. public void ReadExternal(IInputStream input)
  4645. {
  4646. this.TFormation = input.GetEnum8<Formation>();
  4647. this.SpacingSize = input.GetF32();
  4648. this.SquareEachRowCount = input.GetS32();
  4649. }
  4650. public override string ToString()
  4651. {
  4652. return string.Format("阵型:{0}", TFormation);
  4653. }
  4654. }
  4655. #endregion
  4656. //---------------------------------------------------------------------------------//
  4657. }