Data.cs 193 KB

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