fish_match.pb.h 170 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887
  1. // Generated by the protocol buffer compiler. DO NOT EDIT!
  2. // source: fish_match.proto
  3. #ifndef PROTOBUF_fish_5fmatch_2eproto__INCLUDED
  4. #define PROTOBUF_fish_5fmatch_2eproto__INCLUDED
  5. #include <string>
  6. #include <google/protobuf/stubs/common.h>
  7. #if GOOGLE_PROTOBUF_VERSION < 2005000
  8. #error This file was generated by a newer version of protoc which is
  9. #error incompatible with your Protocol Buffer headers. Please update
  10. #error your headers.
  11. #endif
  12. #if 2005000 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION
  13. #error This file was generated by an older version of protoc which is
  14. #error incompatible with your Protocol Buffer headers. Please
  15. #error regenerate this file with a newer version of protoc.
  16. #endif
  17. #include <google/protobuf/generated_message_util.h>
  18. #include <google/protobuf/message.h>
  19. #include <google/protobuf/repeated_field.h>
  20. #include <google/protobuf/extension_set.h>
  21. #include <google/protobuf/unknown_field_set.h>
  22. #include "fish_def.pb.h"
  23. #include "msg_type_def.pb.h"
  24. // @@protoc_insertion_point(includes)
  25. namespace fish_protocols {
  26. // Internal implementation detail -- do not call these.
  27. void protobuf_AddDesc_fish_5fmatch_2eproto();
  28. void protobuf_AssignDesc_fish_5fmatch_2eproto();
  29. void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  30. class matchRankInfo;
  31. class questInfo;
  32. class killFishInfo;
  33. class packetc2l_get_arena_match_info;
  34. class packetl2c_get_arena_match_info_result;
  35. class packetc2l_syn_arena_match_bullet;
  36. class packetl2c_syn_arena_match_bullet_result;
  37. class packetc2l_get_arena_match_history_rank;
  38. class packetl2c_get_arena_match_history_rank_result;
  39. class packetc2l_join_arena_match;
  40. class packetl2c_join_arena_match_result;
  41. class packetl2c_notify_arena_match_add_bullet;
  42. class buffInfo;
  43. class packetl2c_arena_match_end_notify;
  44. class packetc2l_get_freedom_match_info;
  45. class packetl2c_get_freedom_match_info_result;
  46. class packetc2l_syn_freedom_match_bullet;
  47. class packetl2c_syn_freedom_match_bullet_result;
  48. class packetc2l_join_freedom_match;
  49. class packetl2c_join_freedom_match_result;
  50. class packetc2l_freedom_match_do_balance;
  51. class packetl2c_freedom_match_end_notify;
  52. // ===================================================================
  53. class matchRankInfo : public ::google::protobuf::Message {
  54. public:
  55. matchRankInfo();
  56. virtual ~matchRankInfo();
  57. matchRankInfo(const matchRankInfo& from);
  58. inline matchRankInfo& operator=(const matchRankInfo& from) {
  59. CopyFrom(from);
  60. return *this;
  61. }
  62. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  63. return _unknown_fields_;
  64. }
  65. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  66. return &_unknown_fields_;
  67. }
  68. static const ::google::protobuf::Descriptor* descriptor();
  69. static const matchRankInfo& default_instance();
  70. void Swap(matchRankInfo* other);
  71. // implements Message ----------------------------------------------
  72. matchRankInfo* New() const;
  73. void CopyFrom(const ::google::protobuf::Message& from);
  74. void MergeFrom(const ::google::protobuf::Message& from);
  75. void CopyFrom(const matchRankInfo& from);
  76. void MergeFrom(const matchRankInfo& from);
  77. void Clear();
  78. bool IsInitialized() const;
  79. int ByteSize() const;
  80. bool MergePartialFromCodedStream(
  81. ::google::protobuf::io::CodedInputStream* input);
  82. void SerializeWithCachedSizes(
  83. ::google::protobuf::io::CodedOutputStream* output) const;
  84. ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  85. int GetCachedSize() const { return _cached_size_; }
  86. private:
  87. void SharedCtor();
  88. void SharedDtor();
  89. void SetCachedSize(int size) const;
  90. public:
  91. ::google::protobuf::Metadata GetMetadata() const;
  92. // nested types ----------------------------------------------------
  93. // accessors -------------------------------------------------------
  94. // optional int32 playerId = 1;
  95. inline bool has_playerid() const;
  96. inline void clear_playerid();
  97. static const int kPlayerIdFieldNumber = 1;
  98. inline ::google::protobuf::int32 playerid() const;
  99. inline void set_playerid(::google::protobuf::int32 value);
  100. // optional string nickName = 2;
  101. inline bool has_nickname() const;
  102. inline void clear_nickname();
  103. static const int kNickNameFieldNumber = 2;
  104. inline const ::std::string& nickname() const;
  105. inline void set_nickname(const ::std::string& value);
  106. inline void set_nickname(const char* value);
  107. inline void set_nickname(const char* value, size_t size);
  108. inline ::std::string* mutable_nickname();
  109. inline ::std::string* release_nickname();
  110. inline void set_allocated_nickname(::std::string* nickname);
  111. // optional int32 vip = 3;
  112. inline bool has_vip() const;
  113. inline void clear_vip();
  114. static const int kVipFieldNumber = 3;
  115. inline ::google::protobuf::int32 vip() const;
  116. inline void set_vip(::google::protobuf::int32 value);
  117. // optional int32 headid = 4;
  118. inline bool has_headid() const;
  119. inline void clear_headid();
  120. static const int kHeadidFieldNumber = 4;
  121. inline ::google::protobuf::int32 headid() const;
  122. inline void set_headid(::google::protobuf::int32 value);
  123. // optional int32 frameid = 5;
  124. inline bool has_frameid() const;
  125. inline void clear_frameid();
  126. static const int kFrameidFieldNumber = 5;
  127. inline ::google::protobuf::int32 frameid() const;
  128. inline void set_frameid(::google::protobuf::int32 value);
  129. // optional int32 rank = 6;
  130. inline bool has_rank() const;
  131. inline void clear_rank();
  132. static const int kRankFieldNumber = 6;
  133. inline ::google::protobuf::int32 rank() const;
  134. inline void set_rank(::google::protobuf::int32 value);
  135. // optional int32 score = 7;
  136. inline bool has_score() const;
  137. inline void clear_score();
  138. static const int kScoreFieldNumber = 7;
  139. inline ::google::protobuf::int32 score() const;
  140. inline void set_score(::google::protobuf::int32 value);
  141. // @@protoc_insertion_point(class_scope:fish_protocols.matchRankInfo)
  142. private:
  143. inline void set_has_playerid();
  144. inline void clear_has_playerid();
  145. inline void set_has_nickname();
  146. inline void clear_has_nickname();
  147. inline void set_has_vip();
  148. inline void clear_has_vip();
  149. inline void set_has_headid();
  150. inline void clear_has_headid();
  151. inline void set_has_frameid();
  152. inline void clear_has_frameid();
  153. inline void set_has_rank();
  154. inline void clear_has_rank();
  155. inline void set_has_score();
  156. inline void clear_has_score();
  157. ::google::protobuf::UnknownFieldSet _unknown_fields_;
  158. ::std::string* nickname_;
  159. ::google::protobuf::int32 playerid_;
  160. ::google::protobuf::int32 vip_;
  161. ::google::protobuf::int32 headid_;
  162. ::google::protobuf::int32 frameid_;
  163. ::google::protobuf::int32 rank_;
  164. ::google::protobuf::int32 score_;
  165. mutable int _cached_size_;
  166. ::google::protobuf::uint32 _has_bits_[(7 + 31) / 32];
  167. friend void protobuf_AddDesc_fish_5fmatch_2eproto();
  168. friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
  169. friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  170. void InitAsDefaultInstance();
  171. static matchRankInfo* default_instance_;
  172. };
  173. // -------------------------------------------------------------------
  174. class questInfo : public ::google::protobuf::Message {
  175. public:
  176. questInfo();
  177. virtual ~questInfo();
  178. questInfo(const questInfo& from);
  179. inline questInfo& operator=(const questInfo& from) {
  180. CopyFrom(from);
  181. return *this;
  182. }
  183. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  184. return _unknown_fields_;
  185. }
  186. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  187. return &_unknown_fields_;
  188. }
  189. static const ::google::protobuf::Descriptor* descriptor();
  190. static const questInfo& default_instance();
  191. void Swap(questInfo* other);
  192. // implements Message ----------------------------------------------
  193. questInfo* New() const;
  194. void CopyFrom(const ::google::protobuf::Message& from);
  195. void MergeFrom(const ::google::protobuf::Message& from);
  196. void CopyFrom(const questInfo& from);
  197. void MergeFrom(const questInfo& from);
  198. void Clear();
  199. bool IsInitialized() const;
  200. int ByteSize() const;
  201. bool MergePartialFromCodedStream(
  202. ::google::protobuf::io::CodedInputStream* input);
  203. void SerializeWithCachedSizes(
  204. ::google::protobuf::io::CodedOutputStream* output) const;
  205. ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  206. int GetCachedSize() const { return _cached_size_; }
  207. private:
  208. void SharedCtor();
  209. void SharedDtor();
  210. void SetCachedSize(int size) const;
  211. public:
  212. ::google::protobuf::Metadata GetMetadata() const;
  213. // nested types ----------------------------------------------------
  214. // accessors -------------------------------------------------------
  215. // optional int32 questId = 1;
  216. inline bool has_questid() const;
  217. inline void clear_questid();
  218. static const int kQuestIdFieldNumber = 1;
  219. inline ::google::protobuf::int32 questid() const;
  220. inline void set_questid(::google::protobuf::int32 value);
  221. // optional int32 count = 2;
  222. inline bool has_count() const;
  223. inline void clear_count();
  224. static const int kCountFieldNumber = 2;
  225. inline ::google::protobuf::int32 count() const;
  226. inline void set_count(::google::protobuf::int32 value);
  227. // @@protoc_insertion_point(class_scope:fish_protocols.questInfo)
  228. private:
  229. inline void set_has_questid();
  230. inline void clear_has_questid();
  231. inline void set_has_count();
  232. inline void clear_has_count();
  233. ::google::protobuf::UnknownFieldSet _unknown_fields_;
  234. ::google::protobuf::int32 questid_;
  235. ::google::protobuf::int32 count_;
  236. mutable int _cached_size_;
  237. ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
  238. friend void protobuf_AddDesc_fish_5fmatch_2eproto();
  239. friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
  240. friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  241. void InitAsDefaultInstance();
  242. static questInfo* default_instance_;
  243. };
  244. // -------------------------------------------------------------------
  245. class killFishInfo : public ::google::protobuf::Message {
  246. public:
  247. killFishInfo();
  248. virtual ~killFishInfo();
  249. killFishInfo(const killFishInfo& from);
  250. inline killFishInfo& operator=(const killFishInfo& from) {
  251. CopyFrom(from);
  252. return *this;
  253. }
  254. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  255. return _unknown_fields_;
  256. }
  257. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  258. return &_unknown_fields_;
  259. }
  260. static const ::google::protobuf::Descriptor* descriptor();
  261. static const killFishInfo& default_instance();
  262. void Swap(killFishInfo* other);
  263. // implements Message ----------------------------------------------
  264. killFishInfo* New() const;
  265. void CopyFrom(const ::google::protobuf::Message& from);
  266. void MergeFrom(const ::google::protobuf::Message& from);
  267. void CopyFrom(const killFishInfo& from);
  268. void MergeFrom(const killFishInfo& from);
  269. void Clear();
  270. bool IsInitialized() const;
  271. int ByteSize() const;
  272. bool MergePartialFromCodedStream(
  273. ::google::protobuf::io::CodedInputStream* input);
  274. void SerializeWithCachedSizes(
  275. ::google::protobuf::io::CodedOutputStream* output) const;
  276. ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  277. int GetCachedSize() const { return _cached_size_; }
  278. private:
  279. void SharedCtor();
  280. void SharedDtor();
  281. void SetCachedSize(int size) const;
  282. public:
  283. ::google::protobuf::Metadata GetMetadata() const;
  284. // nested types ----------------------------------------------------
  285. // accessors -------------------------------------------------------
  286. // optional int32 fishId = 1;
  287. inline bool has_fishid() const;
  288. inline void clear_fishid();
  289. static const int kFishIdFieldNumber = 1;
  290. inline ::google::protobuf::int32 fishid() const;
  291. inline void set_fishid(::google::protobuf::int32 value);
  292. // optional int32 count = 2;
  293. inline bool has_count() const;
  294. inline void clear_count();
  295. static const int kCountFieldNumber = 2;
  296. inline ::google::protobuf::int32 count() const;
  297. inline void set_count(::google::protobuf::int32 value);
  298. // @@protoc_insertion_point(class_scope:fish_protocols.killFishInfo)
  299. private:
  300. inline void set_has_fishid();
  301. inline void clear_has_fishid();
  302. inline void set_has_count();
  303. inline void clear_has_count();
  304. ::google::protobuf::UnknownFieldSet _unknown_fields_;
  305. ::google::protobuf::int32 fishid_;
  306. ::google::protobuf::int32 count_;
  307. mutable int _cached_size_;
  308. ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
  309. friend void protobuf_AddDesc_fish_5fmatch_2eproto();
  310. friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
  311. friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  312. void InitAsDefaultInstance();
  313. static killFishInfo* default_instance_;
  314. };
  315. // -------------------------------------------------------------------
  316. class packetc2l_get_arena_match_info : public ::google::protobuf::Message {
  317. public:
  318. packetc2l_get_arena_match_info();
  319. virtual ~packetc2l_get_arena_match_info();
  320. packetc2l_get_arena_match_info(const packetc2l_get_arena_match_info& from);
  321. inline packetc2l_get_arena_match_info& operator=(const packetc2l_get_arena_match_info& from) {
  322. CopyFrom(from);
  323. return *this;
  324. }
  325. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  326. return _unknown_fields_;
  327. }
  328. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  329. return &_unknown_fields_;
  330. }
  331. static const ::google::protobuf::Descriptor* descriptor();
  332. static const packetc2l_get_arena_match_info& default_instance();
  333. void Swap(packetc2l_get_arena_match_info* other);
  334. // implements Message ----------------------------------------------
  335. packetc2l_get_arena_match_info* New() const;
  336. void CopyFrom(const ::google::protobuf::Message& from);
  337. void MergeFrom(const ::google::protobuf::Message& from);
  338. void CopyFrom(const packetc2l_get_arena_match_info& from);
  339. void MergeFrom(const packetc2l_get_arena_match_info& from);
  340. void Clear();
  341. bool IsInitialized() const;
  342. int ByteSize() const;
  343. bool MergePartialFromCodedStream(
  344. ::google::protobuf::io::CodedInputStream* input);
  345. void SerializeWithCachedSizes(
  346. ::google::protobuf::io::CodedOutputStream* output) const;
  347. ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  348. int GetCachedSize() const { return _cached_size_; }
  349. private:
  350. void SharedCtor();
  351. void SharedDtor();
  352. void SetCachedSize(int size) const;
  353. public:
  354. ::google::protobuf::Metadata GetMetadata() const;
  355. // nested types ----------------------------------------------------
  356. // accessors -------------------------------------------------------
  357. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_get_arena_match_info];
  358. inline bool has_packet_id() const;
  359. inline void clear_packet_id();
  360. static const int kPacketIdFieldNumber = 1;
  361. inline ::fish_protocols::e_server_msg_type packet_id() const;
  362. inline void set_packet_id(::fish_protocols::e_server_msg_type value);
  363. // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_get_arena_match_info)
  364. private:
  365. inline void set_has_packet_id();
  366. inline void clear_has_packet_id();
  367. ::google::protobuf::UnknownFieldSet _unknown_fields_;
  368. int packet_id_;
  369. mutable int _cached_size_;
  370. ::google::protobuf::uint32 _has_bits_[(1 + 31) / 32];
  371. friend void protobuf_AddDesc_fish_5fmatch_2eproto();
  372. friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
  373. friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  374. void InitAsDefaultInstance();
  375. static packetc2l_get_arena_match_info* default_instance_;
  376. };
  377. // -------------------------------------------------------------------
  378. class packetl2c_get_arena_match_info_result : public ::google::protobuf::Message {
  379. public:
  380. packetl2c_get_arena_match_info_result();
  381. virtual ~packetl2c_get_arena_match_info_result();
  382. packetl2c_get_arena_match_info_result(const packetl2c_get_arena_match_info_result& from);
  383. inline packetl2c_get_arena_match_info_result& operator=(const packetl2c_get_arena_match_info_result& from) {
  384. CopyFrom(from);
  385. return *this;
  386. }
  387. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  388. return _unknown_fields_;
  389. }
  390. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  391. return &_unknown_fields_;
  392. }
  393. static const ::google::protobuf::Descriptor* descriptor();
  394. static const packetl2c_get_arena_match_info_result& default_instance();
  395. void Swap(packetl2c_get_arena_match_info_result* other);
  396. // implements Message ----------------------------------------------
  397. packetl2c_get_arena_match_info_result* New() const;
  398. void CopyFrom(const ::google::protobuf::Message& from);
  399. void MergeFrom(const ::google::protobuf::Message& from);
  400. void CopyFrom(const packetl2c_get_arena_match_info_result& from);
  401. void MergeFrom(const packetl2c_get_arena_match_info_result& from);
  402. void Clear();
  403. bool IsInitialized() const;
  404. int ByteSize() const;
  405. bool MergePartialFromCodedStream(
  406. ::google::protobuf::io::CodedInputStream* input);
  407. void SerializeWithCachedSizes(
  408. ::google::protobuf::io::CodedOutputStream* output) const;
  409. ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  410. int GetCachedSize() const { return _cached_size_; }
  411. private:
  412. void SharedCtor();
  413. void SharedDtor();
  414. void SetCachedSize(int size) const;
  415. public:
  416. ::google::protobuf::Metadata GetMetadata() const;
  417. // nested types ----------------------------------------------------
  418. // accessors -------------------------------------------------------
  419. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_get_arena_match_info_result];
  420. inline bool has_packet_id() const;
  421. inline void clear_packet_id();
  422. static const int kPacketIdFieldNumber = 1;
  423. inline ::fish_protocols::e_server_msg_type packet_id() const;
  424. inline void set_packet_id(::fish_protocols::e_server_msg_type value);
  425. // repeated .fish_protocols.matchRankInfo dailyRankList = 2;
  426. inline int dailyranklist_size() const;
  427. inline void clear_dailyranklist();
  428. static const int kDailyRankListFieldNumber = 2;
  429. inline const ::fish_protocols::matchRankInfo& dailyranklist(int index) const;
  430. inline ::fish_protocols::matchRankInfo* mutable_dailyranklist(int index);
  431. inline ::fish_protocols::matchRankInfo* add_dailyranklist();
  432. inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >&
  433. dailyranklist() const;
  434. inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >*
  435. mutable_dailyranklist();
  436. // repeated .fish_protocols.matchRankInfo weeklyRankList = 3;
  437. inline int weeklyranklist_size() const;
  438. inline void clear_weeklyranklist();
  439. static const int kWeeklyRankListFieldNumber = 3;
  440. inline const ::fish_protocols::matchRankInfo& weeklyranklist(int index) const;
  441. inline ::fish_protocols::matchRankInfo* mutable_weeklyranklist(int index);
  442. inline ::fish_protocols::matchRankInfo* add_weeklyranklist();
  443. inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >&
  444. weeklyranklist() const;
  445. inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >*
  446. mutable_weeklyranklist();
  447. // repeated .fish_protocols.questInfo questList = 4;
  448. inline int questlist_size() const;
  449. inline void clear_questlist();
  450. static const int kQuestListFieldNumber = 4;
  451. inline const ::fish_protocols::questInfo& questlist(int index) const;
  452. inline ::fish_protocols::questInfo* mutable_questlist(int index);
  453. inline ::fish_protocols::questInfo* add_questlist();
  454. inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::questInfo >&
  455. questlist() const;
  456. inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::questInfo >*
  457. mutable_questlist();
  458. // repeated .fish_protocols.killFishInfo killList = 5;
  459. inline int killlist_size() const;
  460. inline void clear_killlist();
  461. static const int kKillListFieldNumber = 5;
  462. inline const ::fish_protocols::killFishInfo& killlist(int index) const;
  463. inline ::fish_protocols::killFishInfo* mutable_killlist(int index);
  464. inline ::fish_protocols::killFishInfo* add_killlist();
  465. inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::killFishInfo >&
  466. killlist() const;
  467. inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::killFishInfo >*
  468. mutable_killlist();
  469. // optional int32 bulletCount = 6;
  470. inline bool has_bulletcount() const;
  471. inline void clear_bulletcount();
  472. static const int kBulletCountFieldNumber = 6;
  473. inline ::google::protobuf::int32 bulletcount() const;
  474. inline void set_bulletcount(::google::protobuf::int32 value);
  475. // optional int32 curScore = 7;
  476. inline bool has_curscore() const;
  477. inline void clear_curscore();
  478. static const int kCurScoreFieldNumber = 7;
  479. inline ::google::protobuf::int32 curscore() const;
  480. inline void set_curscore(::google::protobuf::int32 value);
  481. // optional int32 joinCount = 8;
  482. inline bool has_joincount() const;
  483. inline void clear_joincount();
  484. static const int kJoinCountFieldNumber = 8;
  485. inline ::google::protobuf::int32 joincount() const;
  486. inline void set_joincount(::google::protobuf::int32 value);
  487. // optional int32 questGroup = 9;
  488. inline bool has_questgroup() const;
  489. inline void clear_questgroup();
  490. static const int kQuestGroupFieldNumber = 9;
  491. inline ::google::protobuf::int32 questgroup() const;
  492. inline void set_questgroup(::google::protobuf::int32 value);
  493. // optional .fish_protocols.matchRankInfo selfDayRank = 10;
  494. inline bool has_selfdayrank() const;
  495. inline void clear_selfdayrank();
  496. static const int kSelfDayRankFieldNumber = 10;
  497. inline const ::fish_protocols::matchRankInfo& selfdayrank() const;
  498. inline ::fish_protocols::matchRankInfo* mutable_selfdayrank();
  499. inline ::fish_protocols::matchRankInfo* release_selfdayrank();
  500. inline void set_allocated_selfdayrank(::fish_protocols::matchRankInfo* selfdayrank);
  501. // optional .fish_protocols.matchRankInfo selfWeekRank = 11;
  502. inline bool has_selfweekrank() const;
  503. inline void clear_selfweekrank();
  504. static const int kSelfWeekRankFieldNumber = 11;
  505. inline const ::fish_protocols::matchRankInfo& selfweekrank() const;
  506. inline ::fish_protocols::matchRankInfo* mutable_selfweekrank();
  507. inline ::fish_protocols::matchRankInfo* release_selfweekrank();
  508. inline void set_allocated_selfweekrank(::fish_protocols::matchRankInfo* selfweekrank);
  509. // optional int32 startTime = 12;
  510. inline bool has_starttime() const;
  511. inline void clear_starttime();
  512. static const int kStartTimeFieldNumber = 12;
  513. inline ::google::protobuf::int32 starttime() const;
  514. inline void set_starttime(::google::protobuf::int32 value);
  515. // optional int32 endTime = 13;
  516. inline bool has_endtime() const;
  517. inline void clear_endtime();
  518. static const int kEndTimeFieldNumber = 13;
  519. inline ::google::protobuf::int32 endtime() const;
  520. inline void set_endtime(::google::protobuf::int32 value);
  521. // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_get_arena_match_info_result)
  522. private:
  523. inline void set_has_packet_id();
  524. inline void clear_has_packet_id();
  525. inline void set_has_bulletcount();
  526. inline void clear_has_bulletcount();
  527. inline void set_has_curscore();
  528. inline void clear_has_curscore();
  529. inline void set_has_joincount();
  530. inline void clear_has_joincount();
  531. inline void set_has_questgroup();
  532. inline void clear_has_questgroup();
  533. inline void set_has_selfdayrank();
  534. inline void clear_has_selfdayrank();
  535. inline void set_has_selfweekrank();
  536. inline void clear_has_selfweekrank();
  537. inline void set_has_starttime();
  538. inline void clear_has_starttime();
  539. inline void set_has_endtime();
  540. inline void clear_has_endtime();
  541. ::google::protobuf::UnknownFieldSet _unknown_fields_;
  542. ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo > dailyranklist_;
  543. ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo > weeklyranklist_;
  544. int packet_id_;
  545. ::google::protobuf::int32 bulletcount_;
  546. ::google::protobuf::RepeatedPtrField< ::fish_protocols::questInfo > questlist_;
  547. ::google::protobuf::RepeatedPtrField< ::fish_protocols::killFishInfo > killlist_;
  548. ::google::protobuf::int32 curscore_;
  549. ::google::protobuf::int32 joincount_;
  550. ::fish_protocols::matchRankInfo* selfdayrank_;
  551. ::google::protobuf::int32 questgroup_;
  552. ::google::protobuf::int32 starttime_;
  553. ::fish_protocols::matchRankInfo* selfweekrank_;
  554. ::google::protobuf::int32 endtime_;
  555. mutable int _cached_size_;
  556. ::google::protobuf::uint32 _has_bits_[(13 + 31) / 32];
  557. friend void protobuf_AddDesc_fish_5fmatch_2eproto();
  558. friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
  559. friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  560. void InitAsDefaultInstance();
  561. static packetl2c_get_arena_match_info_result* default_instance_;
  562. };
  563. // -------------------------------------------------------------------
  564. class packetc2l_syn_arena_match_bullet : public ::google::protobuf::Message {
  565. public:
  566. packetc2l_syn_arena_match_bullet();
  567. virtual ~packetc2l_syn_arena_match_bullet();
  568. packetc2l_syn_arena_match_bullet(const packetc2l_syn_arena_match_bullet& from);
  569. inline packetc2l_syn_arena_match_bullet& operator=(const packetc2l_syn_arena_match_bullet& from) {
  570. CopyFrom(from);
  571. return *this;
  572. }
  573. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  574. return _unknown_fields_;
  575. }
  576. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  577. return &_unknown_fields_;
  578. }
  579. static const ::google::protobuf::Descriptor* descriptor();
  580. static const packetc2l_syn_arena_match_bullet& default_instance();
  581. void Swap(packetc2l_syn_arena_match_bullet* other);
  582. // implements Message ----------------------------------------------
  583. packetc2l_syn_arena_match_bullet* New() const;
  584. void CopyFrom(const ::google::protobuf::Message& from);
  585. void MergeFrom(const ::google::protobuf::Message& from);
  586. void CopyFrom(const packetc2l_syn_arena_match_bullet& from);
  587. void MergeFrom(const packetc2l_syn_arena_match_bullet& from);
  588. void Clear();
  589. bool IsInitialized() const;
  590. int ByteSize() const;
  591. bool MergePartialFromCodedStream(
  592. ::google::protobuf::io::CodedInputStream* input);
  593. void SerializeWithCachedSizes(
  594. ::google::protobuf::io::CodedOutputStream* output) const;
  595. ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  596. int GetCachedSize() const { return _cached_size_; }
  597. private:
  598. void SharedCtor();
  599. void SharedDtor();
  600. void SetCachedSize(int size) const;
  601. public:
  602. ::google::protobuf::Metadata GetMetadata() const;
  603. // nested types ----------------------------------------------------
  604. // accessors -------------------------------------------------------
  605. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_syn_arena_match_bullet];
  606. inline bool has_packet_id() const;
  607. inline void clear_packet_id();
  608. static const int kPacketIdFieldNumber = 1;
  609. inline ::fish_protocols::e_server_msg_type packet_id() const;
  610. inline void set_packet_id(::fish_protocols::e_server_msg_type value);
  611. // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_syn_arena_match_bullet)
  612. private:
  613. inline void set_has_packet_id();
  614. inline void clear_has_packet_id();
  615. ::google::protobuf::UnknownFieldSet _unknown_fields_;
  616. int packet_id_;
  617. mutable int _cached_size_;
  618. ::google::protobuf::uint32 _has_bits_[(1 + 31) / 32];
  619. friend void protobuf_AddDesc_fish_5fmatch_2eproto();
  620. friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
  621. friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  622. void InitAsDefaultInstance();
  623. static packetc2l_syn_arena_match_bullet* default_instance_;
  624. };
  625. // -------------------------------------------------------------------
  626. class packetl2c_syn_arena_match_bullet_result : public ::google::protobuf::Message {
  627. public:
  628. packetl2c_syn_arena_match_bullet_result();
  629. virtual ~packetl2c_syn_arena_match_bullet_result();
  630. packetl2c_syn_arena_match_bullet_result(const packetl2c_syn_arena_match_bullet_result& from);
  631. inline packetl2c_syn_arena_match_bullet_result& operator=(const packetl2c_syn_arena_match_bullet_result& from) {
  632. CopyFrom(from);
  633. return *this;
  634. }
  635. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  636. return _unknown_fields_;
  637. }
  638. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  639. return &_unknown_fields_;
  640. }
  641. static const ::google::protobuf::Descriptor* descriptor();
  642. static const packetl2c_syn_arena_match_bullet_result& default_instance();
  643. void Swap(packetl2c_syn_arena_match_bullet_result* other);
  644. // implements Message ----------------------------------------------
  645. packetl2c_syn_arena_match_bullet_result* New() const;
  646. void CopyFrom(const ::google::protobuf::Message& from);
  647. void MergeFrom(const ::google::protobuf::Message& from);
  648. void CopyFrom(const packetl2c_syn_arena_match_bullet_result& from);
  649. void MergeFrom(const packetl2c_syn_arena_match_bullet_result& from);
  650. void Clear();
  651. bool IsInitialized() const;
  652. int ByteSize() const;
  653. bool MergePartialFromCodedStream(
  654. ::google::protobuf::io::CodedInputStream* input);
  655. void SerializeWithCachedSizes(
  656. ::google::protobuf::io::CodedOutputStream* output) const;
  657. ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  658. int GetCachedSize() const { return _cached_size_; }
  659. private:
  660. void SharedCtor();
  661. void SharedDtor();
  662. void SetCachedSize(int size) const;
  663. public:
  664. ::google::protobuf::Metadata GetMetadata() const;
  665. // nested types ----------------------------------------------------
  666. // accessors -------------------------------------------------------
  667. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_syn_arena_match_bullet_result];
  668. inline bool has_packet_id() const;
  669. inline void clear_packet_id();
  670. static const int kPacketIdFieldNumber = 1;
  671. inline ::fish_protocols::e_server_msg_type packet_id() const;
  672. inline void set_packet_id(::fish_protocols::e_server_msg_type value);
  673. // optional int32 bulletCount = 2;
  674. inline bool has_bulletcount() const;
  675. inline void clear_bulletcount();
  676. static const int kBulletCountFieldNumber = 2;
  677. inline ::google::protobuf::int32 bulletcount() const;
  678. inline void set_bulletcount(::google::protobuf::int32 value);
  679. // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_syn_arena_match_bullet_result)
  680. private:
  681. inline void set_has_packet_id();
  682. inline void clear_has_packet_id();
  683. inline void set_has_bulletcount();
  684. inline void clear_has_bulletcount();
  685. ::google::protobuf::UnknownFieldSet _unknown_fields_;
  686. int packet_id_;
  687. ::google::protobuf::int32 bulletcount_;
  688. mutable int _cached_size_;
  689. ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
  690. friend void protobuf_AddDesc_fish_5fmatch_2eproto();
  691. friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
  692. friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  693. void InitAsDefaultInstance();
  694. static packetl2c_syn_arena_match_bullet_result* default_instance_;
  695. };
  696. // -------------------------------------------------------------------
  697. class packetc2l_get_arena_match_history_rank : public ::google::protobuf::Message {
  698. public:
  699. packetc2l_get_arena_match_history_rank();
  700. virtual ~packetc2l_get_arena_match_history_rank();
  701. packetc2l_get_arena_match_history_rank(const packetc2l_get_arena_match_history_rank& from);
  702. inline packetc2l_get_arena_match_history_rank& operator=(const packetc2l_get_arena_match_history_rank& from) {
  703. CopyFrom(from);
  704. return *this;
  705. }
  706. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  707. return _unknown_fields_;
  708. }
  709. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  710. return &_unknown_fields_;
  711. }
  712. static const ::google::protobuf::Descriptor* descriptor();
  713. static const packetc2l_get_arena_match_history_rank& default_instance();
  714. void Swap(packetc2l_get_arena_match_history_rank* other);
  715. // implements Message ----------------------------------------------
  716. packetc2l_get_arena_match_history_rank* New() const;
  717. void CopyFrom(const ::google::protobuf::Message& from);
  718. void MergeFrom(const ::google::protobuf::Message& from);
  719. void CopyFrom(const packetc2l_get_arena_match_history_rank& from);
  720. void MergeFrom(const packetc2l_get_arena_match_history_rank& from);
  721. void Clear();
  722. bool IsInitialized() const;
  723. int ByteSize() const;
  724. bool MergePartialFromCodedStream(
  725. ::google::protobuf::io::CodedInputStream* input);
  726. void SerializeWithCachedSizes(
  727. ::google::protobuf::io::CodedOutputStream* output) const;
  728. ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  729. int GetCachedSize() const { return _cached_size_; }
  730. private:
  731. void SharedCtor();
  732. void SharedDtor();
  733. void SetCachedSize(int size) const;
  734. public:
  735. ::google::protobuf::Metadata GetMetadata() const;
  736. // nested types ----------------------------------------------------
  737. // accessors -------------------------------------------------------
  738. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_get_arena_match_history_rank];
  739. inline bool has_packet_id() const;
  740. inline void clear_packet_id();
  741. static const int kPacketIdFieldNumber = 1;
  742. inline ::fish_protocols::e_server_msg_type packet_id() const;
  743. inline void set_packet_id(::fish_protocols::e_server_msg_type value);
  744. // optional int32 type = 2;
  745. inline bool has_type() const;
  746. inline void clear_type();
  747. static const int kTypeFieldNumber = 2;
  748. inline ::google::protobuf::int32 type() const;
  749. inline void set_type(::google::protobuf::int32 value);
  750. // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_get_arena_match_history_rank)
  751. private:
  752. inline void set_has_packet_id();
  753. inline void clear_has_packet_id();
  754. inline void set_has_type();
  755. inline void clear_has_type();
  756. ::google::protobuf::UnknownFieldSet _unknown_fields_;
  757. int packet_id_;
  758. ::google::protobuf::int32 type_;
  759. mutable int _cached_size_;
  760. ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
  761. friend void protobuf_AddDesc_fish_5fmatch_2eproto();
  762. friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
  763. friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  764. void InitAsDefaultInstance();
  765. static packetc2l_get_arena_match_history_rank* default_instance_;
  766. };
  767. // -------------------------------------------------------------------
  768. class packetl2c_get_arena_match_history_rank_result : public ::google::protobuf::Message {
  769. public:
  770. packetl2c_get_arena_match_history_rank_result();
  771. virtual ~packetl2c_get_arena_match_history_rank_result();
  772. packetl2c_get_arena_match_history_rank_result(const packetl2c_get_arena_match_history_rank_result& from);
  773. inline packetl2c_get_arena_match_history_rank_result& operator=(const packetl2c_get_arena_match_history_rank_result& from) {
  774. CopyFrom(from);
  775. return *this;
  776. }
  777. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  778. return _unknown_fields_;
  779. }
  780. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  781. return &_unknown_fields_;
  782. }
  783. static const ::google::protobuf::Descriptor* descriptor();
  784. static const packetl2c_get_arena_match_history_rank_result& default_instance();
  785. void Swap(packetl2c_get_arena_match_history_rank_result* other);
  786. // implements Message ----------------------------------------------
  787. packetl2c_get_arena_match_history_rank_result* New() const;
  788. void CopyFrom(const ::google::protobuf::Message& from);
  789. void MergeFrom(const ::google::protobuf::Message& from);
  790. void CopyFrom(const packetl2c_get_arena_match_history_rank_result& from);
  791. void MergeFrom(const packetl2c_get_arena_match_history_rank_result& from);
  792. void Clear();
  793. bool IsInitialized() const;
  794. int ByteSize() const;
  795. bool MergePartialFromCodedStream(
  796. ::google::protobuf::io::CodedInputStream* input);
  797. void SerializeWithCachedSizes(
  798. ::google::protobuf::io::CodedOutputStream* output) const;
  799. ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  800. int GetCachedSize() const { return _cached_size_; }
  801. private:
  802. void SharedCtor();
  803. void SharedDtor();
  804. void SetCachedSize(int size) const;
  805. public:
  806. ::google::protobuf::Metadata GetMetadata() const;
  807. // nested types ----------------------------------------------------
  808. // accessors -------------------------------------------------------
  809. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_get_arena_match_history_rank_result];
  810. inline bool has_packet_id() const;
  811. inline void clear_packet_id();
  812. static const int kPacketIdFieldNumber = 1;
  813. inline ::fish_protocols::e_server_msg_type packet_id() const;
  814. inline void set_packet_id(::fish_protocols::e_server_msg_type value);
  815. // optional int32 type = 2;
  816. inline bool has_type() const;
  817. inline void clear_type();
  818. static const int kTypeFieldNumber = 2;
  819. inline ::google::protobuf::int32 type() const;
  820. inline void set_type(::google::protobuf::int32 value);
  821. // repeated .fish_protocols.matchRankInfo rankList = 3;
  822. inline int ranklist_size() const;
  823. inline void clear_ranklist();
  824. static const int kRankListFieldNumber = 3;
  825. inline const ::fish_protocols::matchRankInfo& ranklist(int index) const;
  826. inline ::fish_protocols::matchRankInfo* mutable_ranklist(int index);
  827. inline ::fish_protocols::matchRankInfo* add_ranklist();
  828. inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >&
  829. ranklist() const;
  830. inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >*
  831. mutable_ranklist();
  832. // optional .fish_protocols.matchRankInfo selfRank = 4;
  833. inline bool has_selfrank() const;
  834. inline void clear_selfrank();
  835. static const int kSelfRankFieldNumber = 4;
  836. inline const ::fish_protocols::matchRankInfo& selfrank() const;
  837. inline ::fish_protocols::matchRankInfo* mutable_selfrank();
  838. inline ::fish_protocols::matchRankInfo* release_selfrank();
  839. inline void set_allocated_selfrank(::fish_protocols::matchRankInfo* selfrank);
  840. // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_get_arena_match_history_rank_result)
  841. private:
  842. inline void set_has_packet_id();
  843. inline void clear_has_packet_id();
  844. inline void set_has_type();
  845. inline void clear_has_type();
  846. inline void set_has_selfrank();
  847. inline void clear_has_selfrank();
  848. ::google::protobuf::UnknownFieldSet _unknown_fields_;
  849. int packet_id_;
  850. ::google::protobuf::int32 type_;
  851. ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo > ranklist_;
  852. ::fish_protocols::matchRankInfo* selfrank_;
  853. mutable int _cached_size_;
  854. ::google::protobuf::uint32 _has_bits_[(4 + 31) / 32];
  855. friend void protobuf_AddDesc_fish_5fmatch_2eproto();
  856. friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
  857. friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  858. void InitAsDefaultInstance();
  859. static packetl2c_get_arena_match_history_rank_result* default_instance_;
  860. };
  861. // -------------------------------------------------------------------
  862. class packetc2l_join_arena_match : public ::google::protobuf::Message {
  863. public:
  864. packetc2l_join_arena_match();
  865. virtual ~packetc2l_join_arena_match();
  866. packetc2l_join_arena_match(const packetc2l_join_arena_match& from);
  867. inline packetc2l_join_arena_match& operator=(const packetc2l_join_arena_match& from) {
  868. CopyFrom(from);
  869. return *this;
  870. }
  871. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  872. return _unknown_fields_;
  873. }
  874. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  875. return &_unknown_fields_;
  876. }
  877. static const ::google::protobuf::Descriptor* descriptor();
  878. static const packetc2l_join_arena_match& default_instance();
  879. void Swap(packetc2l_join_arena_match* other);
  880. // implements Message ----------------------------------------------
  881. packetc2l_join_arena_match* New() const;
  882. void CopyFrom(const ::google::protobuf::Message& from);
  883. void MergeFrom(const ::google::protobuf::Message& from);
  884. void CopyFrom(const packetc2l_join_arena_match& from);
  885. void MergeFrom(const packetc2l_join_arena_match& from);
  886. void Clear();
  887. bool IsInitialized() const;
  888. int ByteSize() const;
  889. bool MergePartialFromCodedStream(
  890. ::google::protobuf::io::CodedInputStream* input);
  891. void SerializeWithCachedSizes(
  892. ::google::protobuf::io::CodedOutputStream* output) const;
  893. ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  894. int GetCachedSize() const { return _cached_size_; }
  895. private:
  896. void SharedCtor();
  897. void SharedDtor();
  898. void SetCachedSize(int size) const;
  899. public:
  900. ::google::protobuf::Metadata GetMetadata() const;
  901. // nested types ----------------------------------------------------
  902. // accessors -------------------------------------------------------
  903. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_join_arena_match];
  904. inline bool has_packet_id() const;
  905. inline void clear_packet_id();
  906. static const int kPacketIdFieldNumber = 1;
  907. inline ::fish_protocols::e_server_msg_type packet_id() const;
  908. inline void set_packet_id(::fish_protocols::e_server_msg_type value);
  909. // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_join_arena_match)
  910. private:
  911. inline void set_has_packet_id();
  912. inline void clear_has_packet_id();
  913. ::google::protobuf::UnknownFieldSet _unknown_fields_;
  914. int packet_id_;
  915. mutable int _cached_size_;
  916. ::google::protobuf::uint32 _has_bits_[(1 + 31) / 32];
  917. friend void protobuf_AddDesc_fish_5fmatch_2eproto();
  918. friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
  919. friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  920. void InitAsDefaultInstance();
  921. static packetc2l_join_arena_match* default_instance_;
  922. };
  923. // -------------------------------------------------------------------
  924. class packetl2c_join_arena_match_result : public ::google::protobuf::Message {
  925. public:
  926. packetl2c_join_arena_match_result();
  927. virtual ~packetl2c_join_arena_match_result();
  928. packetl2c_join_arena_match_result(const packetl2c_join_arena_match_result& from);
  929. inline packetl2c_join_arena_match_result& operator=(const packetl2c_join_arena_match_result& from) {
  930. CopyFrom(from);
  931. return *this;
  932. }
  933. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  934. return _unknown_fields_;
  935. }
  936. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  937. return &_unknown_fields_;
  938. }
  939. static const ::google::protobuf::Descriptor* descriptor();
  940. static const packetl2c_join_arena_match_result& default_instance();
  941. void Swap(packetl2c_join_arena_match_result* other);
  942. // implements Message ----------------------------------------------
  943. packetl2c_join_arena_match_result* New() const;
  944. void CopyFrom(const ::google::protobuf::Message& from);
  945. void MergeFrom(const ::google::protobuf::Message& from);
  946. void CopyFrom(const packetl2c_join_arena_match_result& from);
  947. void MergeFrom(const packetl2c_join_arena_match_result& from);
  948. void Clear();
  949. bool IsInitialized() const;
  950. int ByteSize() const;
  951. bool MergePartialFromCodedStream(
  952. ::google::protobuf::io::CodedInputStream* input);
  953. void SerializeWithCachedSizes(
  954. ::google::protobuf::io::CodedOutputStream* output) const;
  955. ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  956. int GetCachedSize() const { return _cached_size_; }
  957. private:
  958. void SharedCtor();
  959. void SharedDtor();
  960. void SetCachedSize(int size) const;
  961. public:
  962. ::google::protobuf::Metadata GetMetadata() const;
  963. // nested types ----------------------------------------------------
  964. // accessors -------------------------------------------------------
  965. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_join_arena_match_result];
  966. inline bool has_packet_id() const;
  967. inline void clear_packet_id();
  968. static const int kPacketIdFieldNumber = 1;
  969. inline ::fish_protocols::e_server_msg_type packet_id() const;
  970. inline void set_packet_id(::fish_protocols::e_server_msg_type value);
  971. // optional int32 result = 2;
  972. inline bool has_result() const;
  973. inline void clear_result();
  974. static const int kResultFieldNumber = 2;
  975. inline ::google::protobuf::int32 result() const;
  976. inline void set_result(::google::protobuf::int32 value);
  977. // optional int32 playerId = 3;
  978. inline bool has_playerid() const;
  979. inline void clear_playerid();
  980. static const int kPlayerIdFieldNumber = 3;
  981. inline ::google::protobuf::int32 playerid() const;
  982. inline void set_playerid(::google::protobuf::int32 value);
  983. // optional int32 bulletCount = 4;
  984. inline bool has_bulletcount() const;
  985. inline void clear_bulletcount();
  986. static const int kBulletCountFieldNumber = 4;
  987. inline ::google::protobuf::int32 bulletcount() const;
  988. inline void set_bulletcount(::google::protobuf::int32 value);
  989. // optional int32 curScore = 5;
  990. inline bool has_curscore() const;
  991. inline void clear_curscore();
  992. static const int kCurScoreFieldNumber = 5;
  993. inline ::google::protobuf::int32 curscore() const;
  994. inline void set_curscore(::google::protobuf::int32 value);
  995. // optional int32 joinCount = 6;
  996. inline bool has_joincount() const;
  997. inline void clear_joincount();
  998. static const int kJoinCountFieldNumber = 6;
  999. inline ::google::protobuf::int32 joincount() const;
  1000. inline void set_joincount(::google::protobuf::int32 value);
  1001. // optional int32 questGroup = 7;
  1002. inline bool has_questgroup() const;
  1003. inline void clear_questgroup();
  1004. static const int kQuestGroupFieldNumber = 7;
  1005. inline ::google::protobuf::int32 questgroup() const;
  1006. inline void set_questgroup(::google::protobuf::int32 value);
  1007. // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_join_arena_match_result)
  1008. private:
  1009. inline void set_has_packet_id();
  1010. inline void clear_has_packet_id();
  1011. inline void set_has_result();
  1012. inline void clear_has_result();
  1013. inline void set_has_playerid();
  1014. inline void clear_has_playerid();
  1015. inline void set_has_bulletcount();
  1016. inline void clear_has_bulletcount();
  1017. inline void set_has_curscore();
  1018. inline void clear_has_curscore();
  1019. inline void set_has_joincount();
  1020. inline void clear_has_joincount();
  1021. inline void set_has_questgroup();
  1022. inline void clear_has_questgroup();
  1023. ::google::protobuf::UnknownFieldSet _unknown_fields_;
  1024. int packet_id_;
  1025. ::google::protobuf::int32 result_;
  1026. ::google::protobuf::int32 playerid_;
  1027. ::google::protobuf::int32 bulletcount_;
  1028. ::google::protobuf::int32 curscore_;
  1029. ::google::protobuf::int32 joincount_;
  1030. ::google::protobuf::int32 questgroup_;
  1031. mutable int _cached_size_;
  1032. ::google::protobuf::uint32 _has_bits_[(7 + 31) / 32];
  1033. friend void protobuf_AddDesc_fish_5fmatch_2eproto();
  1034. friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
  1035. friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  1036. void InitAsDefaultInstance();
  1037. static packetl2c_join_arena_match_result* default_instance_;
  1038. };
  1039. // -------------------------------------------------------------------
  1040. class packetl2c_notify_arena_match_add_bullet : public ::google::protobuf::Message {
  1041. public:
  1042. packetl2c_notify_arena_match_add_bullet();
  1043. virtual ~packetl2c_notify_arena_match_add_bullet();
  1044. packetl2c_notify_arena_match_add_bullet(const packetl2c_notify_arena_match_add_bullet& from);
  1045. inline packetl2c_notify_arena_match_add_bullet& operator=(const packetl2c_notify_arena_match_add_bullet& from) {
  1046. CopyFrom(from);
  1047. return *this;
  1048. }
  1049. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1050. return _unknown_fields_;
  1051. }
  1052. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1053. return &_unknown_fields_;
  1054. }
  1055. static const ::google::protobuf::Descriptor* descriptor();
  1056. static const packetl2c_notify_arena_match_add_bullet& default_instance();
  1057. void Swap(packetl2c_notify_arena_match_add_bullet* other);
  1058. // implements Message ----------------------------------------------
  1059. packetl2c_notify_arena_match_add_bullet* New() const;
  1060. void CopyFrom(const ::google::protobuf::Message& from);
  1061. void MergeFrom(const ::google::protobuf::Message& from);
  1062. void CopyFrom(const packetl2c_notify_arena_match_add_bullet& from);
  1063. void MergeFrom(const packetl2c_notify_arena_match_add_bullet& from);
  1064. void Clear();
  1065. bool IsInitialized() const;
  1066. int ByteSize() const;
  1067. bool MergePartialFromCodedStream(
  1068. ::google::protobuf::io::CodedInputStream* input);
  1069. void SerializeWithCachedSizes(
  1070. ::google::protobuf::io::CodedOutputStream* output) const;
  1071. ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  1072. int GetCachedSize() const { return _cached_size_; }
  1073. private:
  1074. void SharedCtor();
  1075. void SharedDtor();
  1076. void SetCachedSize(int size) const;
  1077. public:
  1078. ::google::protobuf::Metadata GetMetadata() const;
  1079. // nested types ----------------------------------------------------
  1080. // accessors -------------------------------------------------------
  1081. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_notify_arena_match_add_bullet];
  1082. inline bool has_packet_id() const;
  1083. inline void clear_packet_id();
  1084. static const int kPacketIdFieldNumber = 1;
  1085. inline ::fish_protocols::e_server_msg_type packet_id() const;
  1086. inline void set_packet_id(::fish_protocols::e_server_msg_type value);
  1087. // optional int32 playerId = 2;
  1088. inline bool has_playerid() const;
  1089. inline void clear_playerid();
  1090. static const int kPlayerIdFieldNumber = 2;
  1091. inline ::google::protobuf::int32 playerid() const;
  1092. inline void set_playerid(::google::protobuf::int32 value);
  1093. // optional int32 addCount = 3;
  1094. inline bool has_addcount() const;
  1095. inline void clear_addcount();
  1096. static const int kAddCountFieldNumber = 3;
  1097. inline ::google::protobuf::int32 addcount() const;
  1098. inline void set_addcount(::google::protobuf::int32 value);
  1099. // optional int32 curCount = 4;
  1100. inline bool has_curcount() const;
  1101. inline void clear_curcount();
  1102. static const int kCurCountFieldNumber = 4;
  1103. inline ::google::protobuf::int32 curcount() const;
  1104. inline void set_curcount(::google::protobuf::int32 value);
  1105. // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_notify_arena_match_add_bullet)
  1106. private:
  1107. inline void set_has_packet_id();
  1108. inline void clear_has_packet_id();
  1109. inline void set_has_playerid();
  1110. inline void clear_has_playerid();
  1111. inline void set_has_addcount();
  1112. inline void clear_has_addcount();
  1113. inline void set_has_curcount();
  1114. inline void clear_has_curcount();
  1115. ::google::protobuf::UnknownFieldSet _unknown_fields_;
  1116. int packet_id_;
  1117. ::google::protobuf::int32 playerid_;
  1118. ::google::protobuf::int32 addcount_;
  1119. ::google::protobuf::int32 curcount_;
  1120. mutable int _cached_size_;
  1121. ::google::protobuf::uint32 _has_bits_[(4 + 31) / 32];
  1122. friend void protobuf_AddDesc_fish_5fmatch_2eproto();
  1123. friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
  1124. friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  1125. void InitAsDefaultInstance();
  1126. static packetl2c_notify_arena_match_add_bullet* default_instance_;
  1127. };
  1128. // -------------------------------------------------------------------
  1129. class buffInfo : public ::google::protobuf::Message {
  1130. public:
  1131. buffInfo();
  1132. virtual ~buffInfo();
  1133. buffInfo(const buffInfo& from);
  1134. inline buffInfo& operator=(const buffInfo& from) {
  1135. CopyFrom(from);
  1136. return *this;
  1137. }
  1138. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1139. return _unknown_fields_;
  1140. }
  1141. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1142. return &_unknown_fields_;
  1143. }
  1144. static const ::google::protobuf::Descriptor* descriptor();
  1145. static const buffInfo& default_instance();
  1146. void Swap(buffInfo* other);
  1147. // implements Message ----------------------------------------------
  1148. buffInfo* New() const;
  1149. void CopyFrom(const ::google::protobuf::Message& from);
  1150. void MergeFrom(const ::google::protobuf::Message& from);
  1151. void CopyFrom(const buffInfo& from);
  1152. void MergeFrom(const buffInfo& from);
  1153. void Clear();
  1154. bool IsInitialized() const;
  1155. int ByteSize() const;
  1156. bool MergePartialFromCodedStream(
  1157. ::google::protobuf::io::CodedInputStream* input);
  1158. void SerializeWithCachedSizes(
  1159. ::google::protobuf::io::CodedOutputStream* output) const;
  1160. ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  1161. int GetCachedSize() const { return _cached_size_; }
  1162. private:
  1163. void SharedCtor();
  1164. void SharedDtor();
  1165. void SetCachedSize(int size) const;
  1166. public:
  1167. ::google::protobuf::Metadata GetMetadata() const;
  1168. // nested types ----------------------------------------------------
  1169. // accessors -------------------------------------------------------
  1170. // optional int32 buffId = 1;
  1171. inline bool has_buffid() const;
  1172. inline void clear_buffid();
  1173. static const int kBuffIdFieldNumber = 1;
  1174. inline ::google::protobuf::int32 buffid() const;
  1175. inline void set_buffid(::google::protobuf::int32 value);
  1176. // optional int32 buffRate = 2;
  1177. inline bool has_buffrate() const;
  1178. inline void clear_buffrate();
  1179. static const int kBuffRateFieldNumber = 2;
  1180. inline ::google::protobuf::int32 buffrate() const;
  1181. inline void set_buffrate(::google::protobuf::int32 value);
  1182. // @@protoc_insertion_point(class_scope:fish_protocols.buffInfo)
  1183. private:
  1184. inline void set_has_buffid();
  1185. inline void clear_has_buffid();
  1186. inline void set_has_buffrate();
  1187. inline void clear_has_buffrate();
  1188. ::google::protobuf::UnknownFieldSet _unknown_fields_;
  1189. ::google::protobuf::int32 buffid_;
  1190. ::google::protobuf::int32 buffrate_;
  1191. mutable int _cached_size_;
  1192. ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
  1193. friend void protobuf_AddDesc_fish_5fmatch_2eproto();
  1194. friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
  1195. friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  1196. void InitAsDefaultInstance();
  1197. static buffInfo* default_instance_;
  1198. };
  1199. // -------------------------------------------------------------------
  1200. class packetl2c_arena_match_end_notify : public ::google::protobuf::Message {
  1201. public:
  1202. packetl2c_arena_match_end_notify();
  1203. virtual ~packetl2c_arena_match_end_notify();
  1204. packetl2c_arena_match_end_notify(const packetl2c_arena_match_end_notify& from);
  1205. inline packetl2c_arena_match_end_notify& operator=(const packetl2c_arena_match_end_notify& from) {
  1206. CopyFrom(from);
  1207. return *this;
  1208. }
  1209. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1210. return _unknown_fields_;
  1211. }
  1212. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1213. return &_unknown_fields_;
  1214. }
  1215. static const ::google::protobuf::Descriptor* descriptor();
  1216. static const packetl2c_arena_match_end_notify& default_instance();
  1217. void Swap(packetl2c_arena_match_end_notify* other);
  1218. // implements Message ----------------------------------------------
  1219. packetl2c_arena_match_end_notify* New() const;
  1220. void CopyFrom(const ::google::protobuf::Message& from);
  1221. void MergeFrom(const ::google::protobuf::Message& from);
  1222. void CopyFrom(const packetl2c_arena_match_end_notify& from);
  1223. void MergeFrom(const packetl2c_arena_match_end_notify& from);
  1224. void Clear();
  1225. bool IsInitialized() const;
  1226. int ByteSize() const;
  1227. bool MergePartialFromCodedStream(
  1228. ::google::protobuf::io::CodedInputStream* input);
  1229. void SerializeWithCachedSizes(
  1230. ::google::protobuf::io::CodedOutputStream* output) const;
  1231. ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  1232. int GetCachedSize() const { return _cached_size_; }
  1233. private:
  1234. void SharedCtor();
  1235. void SharedDtor();
  1236. void SetCachedSize(int size) const;
  1237. public:
  1238. ::google::protobuf::Metadata GetMetadata() const;
  1239. // nested types ----------------------------------------------------
  1240. // accessors -------------------------------------------------------
  1241. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_arena_match_end_notify];
  1242. inline bool has_packet_id() const;
  1243. inline void clear_packet_id();
  1244. static const int kPacketIdFieldNumber = 1;
  1245. inline ::fish_protocols::e_server_msg_type packet_id() const;
  1246. inline void set_packet_id(::fish_protocols::e_server_msg_type value);
  1247. // optional int32 reason = 2;
  1248. inline bool has_reason() const;
  1249. inline void clear_reason();
  1250. static const int kReasonFieldNumber = 2;
  1251. inline ::google::protobuf::int32 reason() const;
  1252. inline void set_reason(::google::protobuf::int32 value);
  1253. // repeated .fish_protocols.buffInfo buffList = 3;
  1254. inline int bufflist_size() const;
  1255. inline void clear_bufflist();
  1256. static const int kBuffListFieldNumber = 3;
  1257. inline const ::fish_protocols::buffInfo& bufflist(int index) const;
  1258. inline ::fish_protocols::buffInfo* mutable_bufflist(int index);
  1259. inline ::fish_protocols::buffInfo* add_bufflist();
  1260. inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::buffInfo >&
  1261. bufflist() const;
  1262. inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::buffInfo >*
  1263. mutable_bufflist();
  1264. // optional int32 rank = 4;
  1265. inline bool has_rank() const;
  1266. inline void clear_rank();
  1267. static const int kRankFieldNumber = 4;
  1268. inline ::google::protobuf::int32 rank() const;
  1269. inline void set_rank(::google::protobuf::int32 value);
  1270. // optional int32 curBaseScore = 5;
  1271. inline bool has_curbasescore() const;
  1272. inline void clear_curbasescore();
  1273. static const int kCurBaseScoreFieldNumber = 5;
  1274. inline ::google::protobuf::int32 curbasescore() const;
  1275. inline void set_curbasescore(::google::protobuf::int32 value);
  1276. // optional int32 curAddScore = 6;
  1277. inline bool has_curaddscore() const;
  1278. inline void clear_curaddscore();
  1279. static const int kCurAddScoreFieldNumber = 6;
  1280. inline ::google::protobuf::int32 curaddscore() const;
  1281. inline void set_curaddscore(::google::protobuf::int32 value);
  1282. // optional int32 topScore = 7;
  1283. inline bool has_topscore() const;
  1284. inline void clear_topscore();
  1285. static const int kTopScoreFieldNumber = 7;
  1286. inline ::google::protobuf::int32 topscore() const;
  1287. inline void set_topscore(::google::protobuf::int32 value);
  1288. // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_arena_match_end_notify)
  1289. private:
  1290. inline void set_has_packet_id();
  1291. inline void clear_has_packet_id();
  1292. inline void set_has_reason();
  1293. inline void clear_has_reason();
  1294. inline void set_has_rank();
  1295. inline void clear_has_rank();
  1296. inline void set_has_curbasescore();
  1297. inline void clear_has_curbasescore();
  1298. inline void set_has_curaddscore();
  1299. inline void clear_has_curaddscore();
  1300. inline void set_has_topscore();
  1301. inline void clear_has_topscore();
  1302. ::google::protobuf::UnknownFieldSet _unknown_fields_;
  1303. int packet_id_;
  1304. ::google::protobuf::int32 reason_;
  1305. ::google::protobuf::RepeatedPtrField< ::fish_protocols::buffInfo > bufflist_;
  1306. ::google::protobuf::int32 rank_;
  1307. ::google::protobuf::int32 curbasescore_;
  1308. ::google::protobuf::int32 curaddscore_;
  1309. ::google::protobuf::int32 topscore_;
  1310. mutable int _cached_size_;
  1311. ::google::protobuf::uint32 _has_bits_[(7 + 31) / 32];
  1312. friend void protobuf_AddDesc_fish_5fmatch_2eproto();
  1313. friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
  1314. friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  1315. void InitAsDefaultInstance();
  1316. static packetl2c_arena_match_end_notify* default_instance_;
  1317. };
  1318. // -------------------------------------------------------------------
  1319. class packetc2l_get_freedom_match_info : public ::google::protobuf::Message {
  1320. public:
  1321. packetc2l_get_freedom_match_info();
  1322. virtual ~packetc2l_get_freedom_match_info();
  1323. packetc2l_get_freedom_match_info(const packetc2l_get_freedom_match_info& from);
  1324. inline packetc2l_get_freedom_match_info& operator=(const packetc2l_get_freedom_match_info& from) {
  1325. CopyFrom(from);
  1326. return *this;
  1327. }
  1328. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1329. return _unknown_fields_;
  1330. }
  1331. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1332. return &_unknown_fields_;
  1333. }
  1334. static const ::google::protobuf::Descriptor* descriptor();
  1335. static const packetc2l_get_freedom_match_info& default_instance();
  1336. void Swap(packetc2l_get_freedom_match_info* other);
  1337. // implements Message ----------------------------------------------
  1338. packetc2l_get_freedom_match_info* New() const;
  1339. void CopyFrom(const ::google::protobuf::Message& from);
  1340. void MergeFrom(const ::google::protobuf::Message& from);
  1341. void CopyFrom(const packetc2l_get_freedom_match_info& from);
  1342. void MergeFrom(const packetc2l_get_freedom_match_info& from);
  1343. void Clear();
  1344. bool IsInitialized() const;
  1345. int ByteSize() const;
  1346. bool MergePartialFromCodedStream(
  1347. ::google::protobuf::io::CodedInputStream* input);
  1348. void SerializeWithCachedSizes(
  1349. ::google::protobuf::io::CodedOutputStream* output) const;
  1350. ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  1351. int GetCachedSize() const { return _cached_size_; }
  1352. private:
  1353. void SharedCtor();
  1354. void SharedDtor();
  1355. void SetCachedSize(int size) const;
  1356. public:
  1357. ::google::protobuf::Metadata GetMetadata() const;
  1358. // nested types ----------------------------------------------------
  1359. // accessors -------------------------------------------------------
  1360. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_get_freedom_match_info];
  1361. inline bool has_packet_id() const;
  1362. inline void clear_packet_id();
  1363. static const int kPacketIdFieldNumber = 1;
  1364. inline ::fish_protocols::e_server_msg_type packet_id() const;
  1365. inline void set_packet_id(::fish_protocols::e_server_msg_type value);
  1366. // optional int32 roomId = 2;
  1367. inline bool has_roomid() const;
  1368. inline void clear_roomid();
  1369. static const int kRoomIdFieldNumber = 2;
  1370. inline ::google::protobuf::int32 roomid() const;
  1371. inline void set_roomid(::google::protobuf::int32 value);
  1372. // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_get_freedom_match_info)
  1373. private:
  1374. inline void set_has_packet_id();
  1375. inline void clear_has_packet_id();
  1376. inline void set_has_roomid();
  1377. inline void clear_has_roomid();
  1378. ::google::protobuf::UnknownFieldSet _unknown_fields_;
  1379. int packet_id_;
  1380. ::google::protobuf::int32 roomid_;
  1381. mutable int _cached_size_;
  1382. ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
  1383. friend void protobuf_AddDesc_fish_5fmatch_2eproto();
  1384. friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
  1385. friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  1386. void InitAsDefaultInstance();
  1387. static packetc2l_get_freedom_match_info* default_instance_;
  1388. };
  1389. // -------------------------------------------------------------------
  1390. class packetl2c_get_freedom_match_info_result : public ::google::protobuf::Message {
  1391. public:
  1392. packetl2c_get_freedom_match_info_result();
  1393. virtual ~packetl2c_get_freedom_match_info_result();
  1394. packetl2c_get_freedom_match_info_result(const packetl2c_get_freedom_match_info_result& from);
  1395. inline packetl2c_get_freedom_match_info_result& operator=(const packetl2c_get_freedom_match_info_result& from) {
  1396. CopyFrom(from);
  1397. return *this;
  1398. }
  1399. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1400. return _unknown_fields_;
  1401. }
  1402. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1403. return &_unknown_fields_;
  1404. }
  1405. static const ::google::protobuf::Descriptor* descriptor();
  1406. static const packetl2c_get_freedom_match_info_result& default_instance();
  1407. void Swap(packetl2c_get_freedom_match_info_result* other);
  1408. // implements Message ----------------------------------------------
  1409. packetl2c_get_freedom_match_info_result* New() const;
  1410. void CopyFrom(const ::google::protobuf::Message& from);
  1411. void MergeFrom(const ::google::protobuf::Message& from);
  1412. void CopyFrom(const packetl2c_get_freedom_match_info_result& from);
  1413. void MergeFrom(const packetl2c_get_freedom_match_info_result& from);
  1414. void Clear();
  1415. bool IsInitialized() const;
  1416. int ByteSize() const;
  1417. bool MergePartialFromCodedStream(
  1418. ::google::protobuf::io::CodedInputStream* input);
  1419. void SerializeWithCachedSizes(
  1420. ::google::protobuf::io::CodedOutputStream* output) const;
  1421. ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  1422. int GetCachedSize() const { return _cached_size_; }
  1423. private:
  1424. void SharedCtor();
  1425. void SharedDtor();
  1426. void SetCachedSize(int size) const;
  1427. public:
  1428. ::google::protobuf::Metadata GetMetadata() const;
  1429. // nested types ----------------------------------------------------
  1430. // accessors -------------------------------------------------------
  1431. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_get_freedom_match_info_result];
  1432. inline bool has_packet_id() const;
  1433. inline void clear_packet_id();
  1434. static const int kPacketIdFieldNumber = 1;
  1435. inline ::fish_protocols::e_server_msg_type packet_id() const;
  1436. inline void set_packet_id(::fish_protocols::e_server_msg_type value);
  1437. // optional int32 roomId = 2;
  1438. inline bool has_roomid() const;
  1439. inline void clear_roomid();
  1440. static const int kRoomIdFieldNumber = 2;
  1441. inline ::google::protobuf::int32 roomid() const;
  1442. inline void set_roomid(::google::protobuf::int32 value);
  1443. // repeated .fish_protocols.matchRankInfo dailyRankList = 3;
  1444. inline int dailyranklist_size() const;
  1445. inline void clear_dailyranklist();
  1446. static const int kDailyRankListFieldNumber = 3;
  1447. inline const ::fish_protocols::matchRankInfo& dailyranklist(int index) const;
  1448. inline ::fish_protocols::matchRankInfo* mutable_dailyranklist(int index);
  1449. inline ::fish_protocols::matchRankInfo* add_dailyranklist();
  1450. inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >&
  1451. dailyranklist() const;
  1452. inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >*
  1453. mutable_dailyranklist();
  1454. // optional int32 bulletCount = 4;
  1455. inline bool has_bulletcount() const;
  1456. inline void clear_bulletcount();
  1457. static const int kBulletCountFieldNumber = 4;
  1458. inline ::google::protobuf::int32 bulletcount() const;
  1459. inline void set_bulletcount(::google::protobuf::int32 value);
  1460. // optional int32 curScore = 5;
  1461. inline bool has_curscore() const;
  1462. inline void clear_curscore();
  1463. static const int kCurScoreFieldNumber = 5;
  1464. inline ::google::protobuf::int32 curscore() const;
  1465. inline void set_curscore(::google::protobuf::int32 value);
  1466. // optional int32 joinCount = 6;
  1467. inline bool has_joincount() const;
  1468. inline void clear_joincount();
  1469. static const int kJoinCountFieldNumber = 6;
  1470. inline ::google::protobuf::int32 joincount() const;
  1471. inline void set_joincount(::google::protobuf::int32 value);
  1472. // optional int32 leftSecond = 7;
  1473. inline bool has_leftsecond() const;
  1474. inline void clear_leftsecond();
  1475. static const int kLeftSecondFieldNumber = 7;
  1476. inline ::google::protobuf::int32 leftsecond() const;
  1477. inline void set_leftsecond(::google::protobuf::int32 value);
  1478. // optional .fish_protocols.matchRankInfo selfDayRank = 8;
  1479. inline bool has_selfdayrank() const;
  1480. inline void clear_selfdayrank();
  1481. static const int kSelfDayRankFieldNumber = 8;
  1482. inline const ::fish_protocols::matchRankInfo& selfdayrank() const;
  1483. inline ::fish_protocols::matchRankInfo* mutable_selfdayrank();
  1484. inline ::fish_protocols::matchRankInfo* release_selfdayrank();
  1485. inline void set_allocated_selfdayrank(::fish_protocols::matchRankInfo* selfdayrank);
  1486. // optional int32 startTime = 9;
  1487. inline bool has_starttime() const;
  1488. inline void clear_starttime();
  1489. static const int kStartTimeFieldNumber = 9;
  1490. inline ::google::protobuf::int32 starttime() const;
  1491. inline void set_starttime(::google::protobuf::int32 value);
  1492. // optional int32 endTime = 10;
  1493. inline bool has_endtime() const;
  1494. inline void clear_endtime();
  1495. static const int kEndTimeFieldNumber = 10;
  1496. inline ::google::protobuf::int32 endtime() const;
  1497. inline void set_endtime(::google::protobuf::int32 value);
  1498. // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_get_freedom_match_info_result)
  1499. private:
  1500. inline void set_has_packet_id();
  1501. inline void clear_has_packet_id();
  1502. inline void set_has_roomid();
  1503. inline void clear_has_roomid();
  1504. inline void set_has_bulletcount();
  1505. inline void clear_has_bulletcount();
  1506. inline void set_has_curscore();
  1507. inline void clear_has_curscore();
  1508. inline void set_has_joincount();
  1509. inline void clear_has_joincount();
  1510. inline void set_has_leftsecond();
  1511. inline void clear_has_leftsecond();
  1512. inline void set_has_selfdayrank();
  1513. inline void clear_has_selfdayrank();
  1514. inline void set_has_starttime();
  1515. inline void clear_has_starttime();
  1516. inline void set_has_endtime();
  1517. inline void clear_has_endtime();
  1518. ::google::protobuf::UnknownFieldSet _unknown_fields_;
  1519. int packet_id_;
  1520. ::google::protobuf::int32 roomid_;
  1521. ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo > dailyranklist_;
  1522. ::google::protobuf::int32 bulletcount_;
  1523. ::google::protobuf::int32 curscore_;
  1524. ::google::protobuf::int32 joincount_;
  1525. ::google::protobuf::int32 leftsecond_;
  1526. ::fish_protocols::matchRankInfo* selfdayrank_;
  1527. ::google::protobuf::int32 starttime_;
  1528. ::google::protobuf::int32 endtime_;
  1529. mutable int _cached_size_;
  1530. ::google::protobuf::uint32 _has_bits_[(10 + 31) / 32];
  1531. friend void protobuf_AddDesc_fish_5fmatch_2eproto();
  1532. friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
  1533. friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  1534. void InitAsDefaultInstance();
  1535. static packetl2c_get_freedom_match_info_result* default_instance_;
  1536. };
  1537. // -------------------------------------------------------------------
  1538. class packetc2l_syn_freedom_match_bullet : public ::google::protobuf::Message {
  1539. public:
  1540. packetc2l_syn_freedom_match_bullet();
  1541. virtual ~packetc2l_syn_freedom_match_bullet();
  1542. packetc2l_syn_freedom_match_bullet(const packetc2l_syn_freedom_match_bullet& from);
  1543. inline packetc2l_syn_freedom_match_bullet& operator=(const packetc2l_syn_freedom_match_bullet& from) {
  1544. CopyFrom(from);
  1545. return *this;
  1546. }
  1547. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1548. return _unknown_fields_;
  1549. }
  1550. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1551. return &_unknown_fields_;
  1552. }
  1553. static const ::google::protobuf::Descriptor* descriptor();
  1554. static const packetc2l_syn_freedom_match_bullet& default_instance();
  1555. void Swap(packetc2l_syn_freedom_match_bullet* other);
  1556. // implements Message ----------------------------------------------
  1557. packetc2l_syn_freedom_match_bullet* New() const;
  1558. void CopyFrom(const ::google::protobuf::Message& from);
  1559. void MergeFrom(const ::google::protobuf::Message& from);
  1560. void CopyFrom(const packetc2l_syn_freedom_match_bullet& from);
  1561. void MergeFrom(const packetc2l_syn_freedom_match_bullet& from);
  1562. void Clear();
  1563. bool IsInitialized() const;
  1564. int ByteSize() const;
  1565. bool MergePartialFromCodedStream(
  1566. ::google::protobuf::io::CodedInputStream* input);
  1567. void SerializeWithCachedSizes(
  1568. ::google::protobuf::io::CodedOutputStream* output) const;
  1569. ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  1570. int GetCachedSize() const { return _cached_size_; }
  1571. private:
  1572. void SharedCtor();
  1573. void SharedDtor();
  1574. void SetCachedSize(int size) const;
  1575. public:
  1576. ::google::protobuf::Metadata GetMetadata() const;
  1577. // nested types ----------------------------------------------------
  1578. // accessors -------------------------------------------------------
  1579. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_syn_freedom_match_bullet];
  1580. inline bool has_packet_id() const;
  1581. inline void clear_packet_id();
  1582. static const int kPacketIdFieldNumber = 1;
  1583. inline ::fish_protocols::e_server_msg_type packet_id() const;
  1584. inline void set_packet_id(::fish_protocols::e_server_msg_type value);
  1585. // optional int32 roomId = 2;
  1586. inline bool has_roomid() const;
  1587. inline void clear_roomid();
  1588. static const int kRoomIdFieldNumber = 2;
  1589. inline ::google::protobuf::int32 roomid() const;
  1590. inline void set_roomid(::google::protobuf::int32 value);
  1591. // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_syn_freedom_match_bullet)
  1592. private:
  1593. inline void set_has_packet_id();
  1594. inline void clear_has_packet_id();
  1595. inline void set_has_roomid();
  1596. inline void clear_has_roomid();
  1597. ::google::protobuf::UnknownFieldSet _unknown_fields_;
  1598. int packet_id_;
  1599. ::google::protobuf::int32 roomid_;
  1600. mutable int _cached_size_;
  1601. ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
  1602. friend void protobuf_AddDesc_fish_5fmatch_2eproto();
  1603. friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
  1604. friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  1605. void InitAsDefaultInstance();
  1606. static packetc2l_syn_freedom_match_bullet* default_instance_;
  1607. };
  1608. // -------------------------------------------------------------------
  1609. class packetl2c_syn_freedom_match_bullet_result : public ::google::protobuf::Message {
  1610. public:
  1611. packetl2c_syn_freedom_match_bullet_result();
  1612. virtual ~packetl2c_syn_freedom_match_bullet_result();
  1613. packetl2c_syn_freedom_match_bullet_result(const packetl2c_syn_freedom_match_bullet_result& from);
  1614. inline packetl2c_syn_freedom_match_bullet_result& operator=(const packetl2c_syn_freedom_match_bullet_result& from) {
  1615. CopyFrom(from);
  1616. return *this;
  1617. }
  1618. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1619. return _unknown_fields_;
  1620. }
  1621. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1622. return &_unknown_fields_;
  1623. }
  1624. static const ::google::protobuf::Descriptor* descriptor();
  1625. static const packetl2c_syn_freedom_match_bullet_result& default_instance();
  1626. void Swap(packetl2c_syn_freedom_match_bullet_result* other);
  1627. // implements Message ----------------------------------------------
  1628. packetl2c_syn_freedom_match_bullet_result* New() const;
  1629. void CopyFrom(const ::google::protobuf::Message& from);
  1630. void MergeFrom(const ::google::protobuf::Message& from);
  1631. void CopyFrom(const packetl2c_syn_freedom_match_bullet_result& from);
  1632. void MergeFrom(const packetl2c_syn_freedom_match_bullet_result& from);
  1633. void Clear();
  1634. bool IsInitialized() const;
  1635. int ByteSize() const;
  1636. bool MergePartialFromCodedStream(
  1637. ::google::protobuf::io::CodedInputStream* input);
  1638. void SerializeWithCachedSizes(
  1639. ::google::protobuf::io::CodedOutputStream* output) const;
  1640. ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  1641. int GetCachedSize() const { return _cached_size_; }
  1642. private:
  1643. void SharedCtor();
  1644. void SharedDtor();
  1645. void SetCachedSize(int size) const;
  1646. public:
  1647. ::google::protobuf::Metadata GetMetadata() const;
  1648. // nested types ----------------------------------------------------
  1649. // accessors -------------------------------------------------------
  1650. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_syn_freedom_match_bullet_result];
  1651. inline bool has_packet_id() const;
  1652. inline void clear_packet_id();
  1653. static const int kPacketIdFieldNumber = 1;
  1654. inline ::fish_protocols::e_server_msg_type packet_id() const;
  1655. inline void set_packet_id(::fish_protocols::e_server_msg_type value);
  1656. // optional int32 roomId = 2;
  1657. inline bool has_roomid() const;
  1658. inline void clear_roomid();
  1659. static const int kRoomIdFieldNumber = 2;
  1660. inline ::google::protobuf::int32 roomid() const;
  1661. inline void set_roomid(::google::protobuf::int32 value);
  1662. // optional int32 bulletCount = 3;
  1663. inline bool has_bulletcount() const;
  1664. inline void clear_bulletcount();
  1665. static const int kBulletCountFieldNumber = 3;
  1666. inline ::google::protobuf::int32 bulletcount() const;
  1667. inline void set_bulletcount(::google::protobuf::int32 value);
  1668. // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_syn_freedom_match_bullet_result)
  1669. private:
  1670. inline void set_has_packet_id();
  1671. inline void clear_has_packet_id();
  1672. inline void set_has_roomid();
  1673. inline void clear_has_roomid();
  1674. inline void set_has_bulletcount();
  1675. inline void clear_has_bulletcount();
  1676. ::google::protobuf::UnknownFieldSet _unknown_fields_;
  1677. int packet_id_;
  1678. ::google::protobuf::int32 roomid_;
  1679. ::google::protobuf::int32 bulletcount_;
  1680. mutable int _cached_size_;
  1681. ::google::protobuf::uint32 _has_bits_[(3 + 31) / 32];
  1682. friend void protobuf_AddDesc_fish_5fmatch_2eproto();
  1683. friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
  1684. friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  1685. void InitAsDefaultInstance();
  1686. static packetl2c_syn_freedom_match_bullet_result* default_instance_;
  1687. };
  1688. // -------------------------------------------------------------------
  1689. class packetc2l_join_freedom_match : public ::google::protobuf::Message {
  1690. public:
  1691. packetc2l_join_freedom_match();
  1692. virtual ~packetc2l_join_freedom_match();
  1693. packetc2l_join_freedom_match(const packetc2l_join_freedom_match& from);
  1694. inline packetc2l_join_freedom_match& operator=(const packetc2l_join_freedom_match& from) {
  1695. CopyFrom(from);
  1696. return *this;
  1697. }
  1698. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1699. return _unknown_fields_;
  1700. }
  1701. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1702. return &_unknown_fields_;
  1703. }
  1704. static const ::google::protobuf::Descriptor* descriptor();
  1705. static const packetc2l_join_freedom_match& default_instance();
  1706. void Swap(packetc2l_join_freedom_match* other);
  1707. // implements Message ----------------------------------------------
  1708. packetc2l_join_freedom_match* New() const;
  1709. void CopyFrom(const ::google::protobuf::Message& from);
  1710. void MergeFrom(const ::google::protobuf::Message& from);
  1711. void CopyFrom(const packetc2l_join_freedom_match& from);
  1712. void MergeFrom(const packetc2l_join_freedom_match& from);
  1713. void Clear();
  1714. bool IsInitialized() const;
  1715. int ByteSize() const;
  1716. bool MergePartialFromCodedStream(
  1717. ::google::protobuf::io::CodedInputStream* input);
  1718. void SerializeWithCachedSizes(
  1719. ::google::protobuf::io::CodedOutputStream* output) const;
  1720. ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  1721. int GetCachedSize() const { return _cached_size_; }
  1722. private:
  1723. void SharedCtor();
  1724. void SharedDtor();
  1725. void SetCachedSize(int size) const;
  1726. public:
  1727. ::google::protobuf::Metadata GetMetadata() const;
  1728. // nested types ----------------------------------------------------
  1729. // accessors -------------------------------------------------------
  1730. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_join_freedom_match];
  1731. inline bool has_packet_id() const;
  1732. inline void clear_packet_id();
  1733. static const int kPacketIdFieldNumber = 1;
  1734. inline ::fish_protocols::e_server_msg_type packet_id() const;
  1735. inline void set_packet_id(::fish_protocols::e_server_msg_type value);
  1736. // optional int32 roomId = 2;
  1737. inline bool has_roomid() const;
  1738. inline void clear_roomid();
  1739. static const int kRoomIdFieldNumber = 2;
  1740. inline ::google::protobuf::int32 roomid() const;
  1741. inline void set_roomid(::google::protobuf::int32 value);
  1742. // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_join_freedom_match)
  1743. private:
  1744. inline void set_has_packet_id();
  1745. inline void clear_has_packet_id();
  1746. inline void set_has_roomid();
  1747. inline void clear_has_roomid();
  1748. ::google::protobuf::UnknownFieldSet _unknown_fields_;
  1749. int packet_id_;
  1750. ::google::protobuf::int32 roomid_;
  1751. mutable int _cached_size_;
  1752. ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
  1753. friend void protobuf_AddDesc_fish_5fmatch_2eproto();
  1754. friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
  1755. friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  1756. void InitAsDefaultInstance();
  1757. static packetc2l_join_freedom_match* default_instance_;
  1758. };
  1759. // -------------------------------------------------------------------
  1760. class packetl2c_join_freedom_match_result : public ::google::protobuf::Message {
  1761. public:
  1762. packetl2c_join_freedom_match_result();
  1763. virtual ~packetl2c_join_freedom_match_result();
  1764. packetl2c_join_freedom_match_result(const packetl2c_join_freedom_match_result& from);
  1765. inline packetl2c_join_freedom_match_result& operator=(const packetl2c_join_freedom_match_result& from) {
  1766. CopyFrom(from);
  1767. return *this;
  1768. }
  1769. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1770. return _unknown_fields_;
  1771. }
  1772. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1773. return &_unknown_fields_;
  1774. }
  1775. static const ::google::protobuf::Descriptor* descriptor();
  1776. static const packetl2c_join_freedom_match_result& default_instance();
  1777. void Swap(packetl2c_join_freedom_match_result* other);
  1778. // implements Message ----------------------------------------------
  1779. packetl2c_join_freedom_match_result* New() const;
  1780. void CopyFrom(const ::google::protobuf::Message& from);
  1781. void MergeFrom(const ::google::protobuf::Message& from);
  1782. void CopyFrom(const packetl2c_join_freedom_match_result& from);
  1783. void MergeFrom(const packetl2c_join_freedom_match_result& from);
  1784. void Clear();
  1785. bool IsInitialized() const;
  1786. int ByteSize() const;
  1787. bool MergePartialFromCodedStream(
  1788. ::google::protobuf::io::CodedInputStream* input);
  1789. void SerializeWithCachedSizes(
  1790. ::google::protobuf::io::CodedOutputStream* output) const;
  1791. ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  1792. int GetCachedSize() const { return _cached_size_; }
  1793. private:
  1794. void SharedCtor();
  1795. void SharedDtor();
  1796. void SetCachedSize(int size) const;
  1797. public:
  1798. ::google::protobuf::Metadata GetMetadata() const;
  1799. // nested types ----------------------------------------------------
  1800. // accessors -------------------------------------------------------
  1801. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_join_freedom_match_result];
  1802. inline bool has_packet_id() const;
  1803. inline void clear_packet_id();
  1804. static const int kPacketIdFieldNumber = 1;
  1805. inline ::fish_protocols::e_server_msg_type packet_id() const;
  1806. inline void set_packet_id(::fish_protocols::e_server_msg_type value);
  1807. // optional int32 result = 2;
  1808. inline bool has_result() const;
  1809. inline void clear_result();
  1810. static const int kResultFieldNumber = 2;
  1811. inline ::google::protobuf::int32 result() const;
  1812. inline void set_result(::google::protobuf::int32 value);
  1813. // optional int32 roomId = 3;
  1814. inline bool has_roomid() const;
  1815. inline void clear_roomid();
  1816. static const int kRoomIdFieldNumber = 3;
  1817. inline ::google::protobuf::int32 roomid() const;
  1818. inline void set_roomid(::google::protobuf::int32 value);
  1819. // optional int32 playerId = 4;
  1820. inline bool has_playerid() const;
  1821. inline void clear_playerid();
  1822. static const int kPlayerIdFieldNumber = 4;
  1823. inline ::google::protobuf::int32 playerid() const;
  1824. inline void set_playerid(::google::protobuf::int32 value);
  1825. // optional int32 bulletCount = 5;
  1826. inline bool has_bulletcount() const;
  1827. inline void clear_bulletcount();
  1828. static const int kBulletCountFieldNumber = 5;
  1829. inline ::google::protobuf::int32 bulletcount() const;
  1830. inline void set_bulletcount(::google::protobuf::int32 value);
  1831. // optional int32 curScore = 6;
  1832. inline bool has_curscore() const;
  1833. inline void clear_curscore();
  1834. static const int kCurScoreFieldNumber = 6;
  1835. inline ::google::protobuf::int32 curscore() const;
  1836. inline void set_curscore(::google::protobuf::int32 value);
  1837. // optional int32 joinCount = 7;
  1838. inline bool has_joincount() const;
  1839. inline void clear_joincount();
  1840. static const int kJoinCountFieldNumber = 7;
  1841. inline ::google::protobuf::int32 joincount() const;
  1842. inline void set_joincount(::google::protobuf::int32 value);
  1843. // optional int32 leftSecond = 8;
  1844. inline bool has_leftsecond() const;
  1845. inline void clear_leftsecond();
  1846. static const int kLeftSecondFieldNumber = 8;
  1847. inline ::google::protobuf::int32 leftsecond() const;
  1848. inline void set_leftsecond(::google::protobuf::int32 value);
  1849. // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_join_freedom_match_result)
  1850. private:
  1851. inline void set_has_packet_id();
  1852. inline void clear_has_packet_id();
  1853. inline void set_has_result();
  1854. inline void clear_has_result();
  1855. inline void set_has_roomid();
  1856. inline void clear_has_roomid();
  1857. inline void set_has_playerid();
  1858. inline void clear_has_playerid();
  1859. inline void set_has_bulletcount();
  1860. inline void clear_has_bulletcount();
  1861. inline void set_has_curscore();
  1862. inline void clear_has_curscore();
  1863. inline void set_has_joincount();
  1864. inline void clear_has_joincount();
  1865. inline void set_has_leftsecond();
  1866. inline void clear_has_leftsecond();
  1867. ::google::protobuf::UnknownFieldSet _unknown_fields_;
  1868. int packet_id_;
  1869. ::google::protobuf::int32 result_;
  1870. ::google::protobuf::int32 roomid_;
  1871. ::google::protobuf::int32 playerid_;
  1872. ::google::protobuf::int32 bulletcount_;
  1873. ::google::protobuf::int32 curscore_;
  1874. ::google::protobuf::int32 joincount_;
  1875. ::google::protobuf::int32 leftsecond_;
  1876. mutable int _cached_size_;
  1877. ::google::protobuf::uint32 _has_bits_[(8 + 31) / 32];
  1878. friend void protobuf_AddDesc_fish_5fmatch_2eproto();
  1879. friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
  1880. friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  1881. void InitAsDefaultInstance();
  1882. static packetl2c_join_freedom_match_result* default_instance_;
  1883. };
  1884. // -------------------------------------------------------------------
  1885. class packetc2l_freedom_match_do_balance : public ::google::protobuf::Message {
  1886. public:
  1887. packetc2l_freedom_match_do_balance();
  1888. virtual ~packetc2l_freedom_match_do_balance();
  1889. packetc2l_freedom_match_do_balance(const packetc2l_freedom_match_do_balance& from);
  1890. inline packetc2l_freedom_match_do_balance& operator=(const packetc2l_freedom_match_do_balance& from) {
  1891. CopyFrom(from);
  1892. return *this;
  1893. }
  1894. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1895. return _unknown_fields_;
  1896. }
  1897. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1898. return &_unknown_fields_;
  1899. }
  1900. static const ::google::protobuf::Descriptor* descriptor();
  1901. static const packetc2l_freedom_match_do_balance& default_instance();
  1902. void Swap(packetc2l_freedom_match_do_balance* other);
  1903. // implements Message ----------------------------------------------
  1904. packetc2l_freedom_match_do_balance* New() const;
  1905. void CopyFrom(const ::google::protobuf::Message& from);
  1906. void MergeFrom(const ::google::protobuf::Message& from);
  1907. void CopyFrom(const packetc2l_freedom_match_do_balance& from);
  1908. void MergeFrom(const packetc2l_freedom_match_do_balance& from);
  1909. void Clear();
  1910. bool IsInitialized() const;
  1911. int ByteSize() const;
  1912. bool MergePartialFromCodedStream(
  1913. ::google::protobuf::io::CodedInputStream* input);
  1914. void SerializeWithCachedSizes(
  1915. ::google::protobuf::io::CodedOutputStream* output) const;
  1916. ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  1917. int GetCachedSize() const { return _cached_size_; }
  1918. private:
  1919. void SharedCtor();
  1920. void SharedDtor();
  1921. void SetCachedSize(int size) const;
  1922. public:
  1923. ::google::protobuf::Metadata GetMetadata() const;
  1924. // nested types ----------------------------------------------------
  1925. // accessors -------------------------------------------------------
  1926. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_freedom_match_do_balance];
  1927. inline bool has_packet_id() const;
  1928. inline void clear_packet_id();
  1929. static const int kPacketIdFieldNumber = 1;
  1930. inline ::fish_protocols::e_server_msg_type packet_id() const;
  1931. inline void set_packet_id(::fish_protocols::e_server_msg_type value);
  1932. // optional int32 roomId = 2;
  1933. inline bool has_roomid() const;
  1934. inline void clear_roomid();
  1935. static const int kRoomIdFieldNumber = 2;
  1936. inline ::google::protobuf::int32 roomid() const;
  1937. inline void set_roomid(::google::protobuf::int32 value);
  1938. // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_freedom_match_do_balance)
  1939. private:
  1940. inline void set_has_packet_id();
  1941. inline void clear_has_packet_id();
  1942. inline void set_has_roomid();
  1943. inline void clear_has_roomid();
  1944. ::google::protobuf::UnknownFieldSet _unknown_fields_;
  1945. int packet_id_;
  1946. ::google::protobuf::int32 roomid_;
  1947. mutable int _cached_size_;
  1948. ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
  1949. friend void protobuf_AddDesc_fish_5fmatch_2eproto();
  1950. friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
  1951. friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  1952. void InitAsDefaultInstance();
  1953. static packetc2l_freedom_match_do_balance* default_instance_;
  1954. };
  1955. // -------------------------------------------------------------------
  1956. class packetl2c_freedom_match_end_notify : public ::google::protobuf::Message {
  1957. public:
  1958. packetl2c_freedom_match_end_notify();
  1959. virtual ~packetl2c_freedom_match_end_notify();
  1960. packetl2c_freedom_match_end_notify(const packetl2c_freedom_match_end_notify& from);
  1961. inline packetl2c_freedom_match_end_notify& operator=(const packetl2c_freedom_match_end_notify& from) {
  1962. CopyFrom(from);
  1963. return *this;
  1964. }
  1965. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1966. return _unknown_fields_;
  1967. }
  1968. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1969. return &_unknown_fields_;
  1970. }
  1971. static const ::google::protobuf::Descriptor* descriptor();
  1972. static const packetl2c_freedom_match_end_notify& default_instance();
  1973. void Swap(packetl2c_freedom_match_end_notify* other);
  1974. // implements Message ----------------------------------------------
  1975. packetl2c_freedom_match_end_notify* New() const;
  1976. void CopyFrom(const ::google::protobuf::Message& from);
  1977. void MergeFrom(const ::google::protobuf::Message& from);
  1978. void CopyFrom(const packetl2c_freedom_match_end_notify& from);
  1979. void MergeFrom(const packetl2c_freedom_match_end_notify& from);
  1980. void Clear();
  1981. bool IsInitialized() const;
  1982. int ByteSize() const;
  1983. bool MergePartialFromCodedStream(
  1984. ::google::protobuf::io::CodedInputStream* input);
  1985. void SerializeWithCachedSizes(
  1986. ::google::protobuf::io::CodedOutputStream* output) const;
  1987. ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  1988. int GetCachedSize() const { return _cached_size_; }
  1989. private:
  1990. void SharedCtor();
  1991. void SharedDtor();
  1992. void SetCachedSize(int size) const;
  1993. public:
  1994. ::google::protobuf::Metadata GetMetadata() const;
  1995. // nested types ----------------------------------------------------
  1996. // accessors -------------------------------------------------------
  1997. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_freedom_match_end_notify];
  1998. inline bool has_packet_id() const;
  1999. inline void clear_packet_id();
  2000. static const int kPacketIdFieldNumber = 1;
  2001. inline ::fish_protocols::e_server_msg_type packet_id() const;
  2002. inline void set_packet_id(::fish_protocols::e_server_msg_type value);
  2003. // optional int32 roomId = 2;
  2004. inline bool has_roomid() const;
  2005. inline void clear_roomid();
  2006. static const int kRoomIdFieldNumber = 2;
  2007. inline ::google::protobuf::int32 roomid() const;
  2008. inline void set_roomid(::google::protobuf::int32 value);
  2009. // optional int32 reason = 3;
  2010. inline bool has_reason() const;
  2011. inline void clear_reason();
  2012. static const int kReasonFieldNumber = 3;
  2013. inline ::google::protobuf::int32 reason() const;
  2014. inline void set_reason(::google::protobuf::int32 value);
  2015. // repeated .fish_protocols.buffInfo buffList = 4;
  2016. inline int bufflist_size() const;
  2017. inline void clear_bufflist();
  2018. static const int kBuffListFieldNumber = 4;
  2019. inline const ::fish_protocols::buffInfo& bufflist(int index) const;
  2020. inline ::fish_protocols::buffInfo* mutable_bufflist(int index);
  2021. inline ::fish_protocols::buffInfo* add_bufflist();
  2022. inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::buffInfo >&
  2023. bufflist() const;
  2024. inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::buffInfo >*
  2025. mutable_bufflist();
  2026. // optional int32 rank = 5;
  2027. inline bool has_rank() const;
  2028. inline void clear_rank();
  2029. static const int kRankFieldNumber = 5;
  2030. inline ::google::protobuf::int32 rank() const;
  2031. inline void set_rank(::google::protobuf::int32 value);
  2032. // optional int32 curBaseScore = 6;
  2033. inline bool has_curbasescore() const;
  2034. inline void clear_curbasescore();
  2035. static const int kCurBaseScoreFieldNumber = 6;
  2036. inline ::google::protobuf::int32 curbasescore() const;
  2037. inline void set_curbasescore(::google::protobuf::int32 value);
  2038. // optional int32 curAddScore = 7;
  2039. inline bool has_curaddscore() const;
  2040. inline void clear_curaddscore();
  2041. static const int kCurAddScoreFieldNumber = 7;
  2042. inline ::google::protobuf::int32 curaddscore() const;
  2043. inline void set_curaddscore(::google::protobuf::int32 value);
  2044. // optional int32 topScore = 8;
  2045. inline bool has_topscore() const;
  2046. inline void clear_topscore();
  2047. static const int kTopScoreFieldNumber = 8;
  2048. inline ::google::protobuf::int32 topscore() const;
  2049. inline void set_topscore(::google::protobuf::int32 value);
  2050. // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_freedom_match_end_notify)
  2051. private:
  2052. inline void set_has_packet_id();
  2053. inline void clear_has_packet_id();
  2054. inline void set_has_roomid();
  2055. inline void clear_has_roomid();
  2056. inline void set_has_reason();
  2057. inline void clear_has_reason();
  2058. inline void set_has_rank();
  2059. inline void clear_has_rank();
  2060. inline void set_has_curbasescore();
  2061. inline void clear_has_curbasescore();
  2062. inline void set_has_curaddscore();
  2063. inline void clear_has_curaddscore();
  2064. inline void set_has_topscore();
  2065. inline void clear_has_topscore();
  2066. ::google::protobuf::UnknownFieldSet _unknown_fields_;
  2067. int packet_id_;
  2068. ::google::protobuf::int32 roomid_;
  2069. ::google::protobuf::RepeatedPtrField< ::fish_protocols::buffInfo > bufflist_;
  2070. ::google::protobuf::int32 reason_;
  2071. ::google::protobuf::int32 rank_;
  2072. ::google::protobuf::int32 curbasescore_;
  2073. ::google::protobuf::int32 curaddscore_;
  2074. ::google::protobuf::int32 topscore_;
  2075. mutable int _cached_size_;
  2076. ::google::protobuf::uint32 _has_bits_[(8 + 31) / 32];
  2077. friend void protobuf_AddDesc_fish_5fmatch_2eproto();
  2078. friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
  2079. friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
  2080. void InitAsDefaultInstance();
  2081. static packetl2c_freedom_match_end_notify* default_instance_;
  2082. };
  2083. // ===================================================================
  2084. // ===================================================================
  2085. // matchRankInfo
  2086. // optional int32 playerId = 1;
  2087. inline bool matchRankInfo::has_playerid() const {
  2088. return (_has_bits_[0] & 0x00000001u) != 0;
  2089. }
  2090. inline void matchRankInfo::set_has_playerid() {
  2091. _has_bits_[0] |= 0x00000001u;
  2092. }
  2093. inline void matchRankInfo::clear_has_playerid() {
  2094. _has_bits_[0] &= ~0x00000001u;
  2095. }
  2096. inline void matchRankInfo::clear_playerid() {
  2097. playerid_ = 0;
  2098. clear_has_playerid();
  2099. }
  2100. inline ::google::protobuf::int32 matchRankInfo::playerid() const {
  2101. return playerid_;
  2102. }
  2103. inline void matchRankInfo::set_playerid(::google::protobuf::int32 value) {
  2104. set_has_playerid();
  2105. playerid_ = value;
  2106. }
  2107. // optional string nickName = 2;
  2108. inline bool matchRankInfo::has_nickname() const {
  2109. return (_has_bits_[0] & 0x00000002u) != 0;
  2110. }
  2111. inline void matchRankInfo::set_has_nickname() {
  2112. _has_bits_[0] |= 0x00000002u;
  2113. }
  2114. inline void matchRankInfo::clear_has_nickname() {
  2115. _has_bits_[0] &= ~0x00000002u;
  2116. }
  2117. inline void matchRankInfo::clear_nickname() {
  2118. if (nickname_ != &::google::protobuf::internal::kEmptyString) {
  2119. nickname_->clear();
  2120. }
  2121. clear_has_nickname();
  2122. }
  2123. inline const ::std::string& matchRankInfo::nickname() const {
  2124. return *nickname_;
  2125. }
  2126. inline void matchRankInfo::set_nickname(const ::std::string& value) {
  2127. set_has_nickname();
  2128. if (nickname_ == &::google::protobuf::internal::kEmptyString) {
  2129. nickname_ = new ::std::string;
  2130. }
  2131. nickname_->assign(value);
  2132. }
  2133. inline void matchRankInfo::set_nickname(const char* value) {
  2134. set_has_nickname();
  2135. if (nickname_ == &::google::protobuf::internal::kEmptyString) {
  2136. nickname_ = new ::std::string;
  2137. }
  2138. nickname_->assign(value);
  2139. }
  2140. inline void matchRankInfo::set_nickname(const char* value, size_t size) {
  2141. set_has_nickname();
  2142. if (nickname_ == &::google::protobuf::internal::kEmptyString) {
  2143. nickname_ = new ::std::string;
  2144. }
  2145. nickname_->assign(reinterpret_cast<const char*>(value), size);
  2146. }
  2147. inline ::std::string* matchRankInfo::mutable_nickname() {
  2148. set_has_nickname();
  2149. if (nickname_ == &::google::protobuf::internal::kEmptyString) {
  2150. nickname_ = new ::std::string;
  2151. }
  2152. return nickname_;
  2153. }
  2154. inline ::std::string* matchRankInfo::release_nickname() {
  2155. clear_has_nickname();
  2156. if (nickname_ == &::google::protobuf::internal::kEmptyString) {
  2157. return NULL;
  2158. } else {
  2159. ::std::string* temp = nickname_;
  2160. nickname_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
  2161. return temp;
  2162. }
  2163. }
  2164. inline void matchRankInfo::set_allocated_nickname(::std::string* nickname) {
  2165. if (nickname_ != &::google::protobuf::internal::kEmptyString) {
  2166. delete nickname_;
  2167. }
  2168. if (nickname) {
  2169. set_has_nickname();
  2170. nickname_ = nickname;
  2171. } else {
  2172. clear_has_nickname();
  2173. nickname_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
  2174. }
  2175. }
  2176. // optional int32 vip = 3;
  2177. inline bool matchRankInfo::has_vip() const {
  2178. return (_has_bits_[0] & 0x00000004u) != 0;
  2179. }
  2180. inline void matchRankInfo::set_has_vip() {
  2181. _has_bits_[0] |= 0x00000004u;
  2182. }
  2183. inline void matchRankInfo::clear_has_vip() {
  2184. _has_bits_[0] &= ~0x00000004u;
  2185. }
  2186. inline void matchRankInfo::clear_vip() {
  2187. vip_ = 0;
  2188. clear_has_vip();
  2189. }
  2190. inline ::google::protobuf::int32 matchRankInfo::vip() const {
  2191. return vip_;
  2192. }
  2193. inline void matchRankInfo::set_vip(::google::protobuf::int32 value) {
  2194. set_has_vip();
  2195. vip_ = value;
  2196. }
  2197. // optional int32 headid = 4;
  2198. inline bool matchRankInfo::has_headid() const {
  2199. return (_has_bits_[0] & 0x00000008u) != 0;
  2200. }
  2201. inline void matchRankInfo::set_has_headid() {
  2202. _has_bits_[0] |= 0x00000008u;
  2203. }
  2204. inline void matchRankInfo::clear_has_headid() {
  2205. _has_bits_[0] &= ~0x00000008u;
  2206. }
  2207. inline void matchRankInfo::clear_headid() {
  2208. headid_ = 0;
  2209. clear_has_headid();
  2210. }
  2211. inline ::google::protobuf::int32 matchRankInfo::headid() const {
  2212. return headid_;
  2213. }
  2214. inline void matchRankInfo::set_headid(::google::protobuf::int32 value) {
  2215. set_has_headid();
  2216. headid_ = value;
  2217. }
  2218. // optional int32 frameid = 5;
  2219. inline bool matchRankInfo::has_frameid() const {
  2220. return (_has_bits_[0] & 0x00000010u) != 0;
  2221. }
  2222. inline void matchRankInfo::set_has_frameid() {
  2223. _has_bits_[0] |= 0x00000010u;
  2224. }
  2225. inline void matchRankInfo::clear_has_frameid() {
  2226. _has_bits_[0] &= ~0x00000010u;
  2227. }
  2228. inline void matchRankInfo::clear_frameid() {
  2229. frameid_ = 0;
  2230. clear_has_frameid();
  2231. }
  2232. inline ::google::protobuf::int32 matchRankInfo::frameid() const {
  2233. return frameid_;
  2234. }
  2235. inline void matchRankInfo::set_frameid(::google::protobuf::int32 value) {
  2236. set_has_frameid();
  2237. frameid_ = value;
  2238. }
  2239. // optional int32 rank = 6;
  2240. inline bool matchRankInfo::has_rank() const {
  2241. return (_has_bits_[0] & 0x00000020u) != 0;
  2242. }
  2243. inline void matchRankInfo::set_has_rank() {
  2244. _has_bits_[0] |= 0x00000020u;
  2245. }
  2246. inline void matchRankInfo::clear_has_rank() {
  2247. _has_bits_[0] &= ~0x00000020u;
  2248. }
  2249. inline void matchRankInfo::clear_rank() {
  2250. rank_ = 0;
  2251. clear_has_rank();
  2252. }
  2253. inline ::google::protobuf::int32 matchRankInfo::rank() const {
  2254. return rank_;
  2255. }
  2256. inline void matchRankInfo::set_rank(::google::protobuf::int32 value) {
  2257. set_has_rank();
  2258. rank_ = value;
  2259. }
  2260. // optional int32 score = 7;
  2261. inline bool matchRankInfo::has_score() const {
  2262. return (_has_bits_[0] & 0x00000040u) != 0;
  2263. }
  2264. inline void matchRankInfo::set_has_score() {
  2265. _has_bits_[0] |= 0x00000040u;
  2266. }
  2267. inline void matchRankInfo::clear_has_score() {
  2268. _has_bits_[0] &= ~0x00000040u;
  2269. }
  2270. inline void matchRankInfo::clear_score() {
  2271. score_ = 0;
  2272. clear_has_score();
  2273. }
  2274. inline ::google::protobuf::int32 matchRankInfo::score() const {
  2275. return score_;
  2276. }
  2277. inline void matchRankInfo::set_score(::google::protobuf::int32 value) {
  2278. set_has_score();
  2279. score_ = value;
  2280. }
  2281. // -------------------------------------------------------------------
  2282. // questInfo
  2283. // optional int32 questId = 1;
  2284. inline bool questInfo::has_questid() const {
  2285. return (_has_bits_[0] & 0x00000001u) != 0;
  2286. }
  2287. inline void questInfo::set_has_questid() {
  2288. _has_bits_[0] |= 0x00000001u;
  2289. }
  2290. inline void questInfo::clear_has_questid() {
  2291. _has_bits_[0] &= ~0x00000001u;
  2292. }
  2293. inline void questInfo::clear_questid() {
  2294. questid_ = 0;
  2295. clear_has_questid();
  2296. }
  2297. inline ::google::protobuf::int32 questInfo::questid() const {
  2298. return questid_;
  2299. }
  2300. inline void questInfo::set_questid(::google::protobuf::int32 value) {
  2301. set_has_questid();
  2302. questid_ = value;
  2303. }
  2304. // optional int32 count = 2;
  2305. inline bool questInfo::has_count() const {
  2306. return (_has_bits_[0] & 0x00000002u) != 0;
  2307. }
  2308. inline void questInfo::set_has_count() {
  2309. _has_bits_[0] |= 0x00000002u;
  2310. }
  2311. inline void questInfo::clear_has_count() {
  2312. _has_bits_[0] &= ~0x00000002u;
  2313. }
  2314. inline void questInfo::clear_count() {
  2315. count_ = 0;
  2316. clear_has_count();
  2317. }
  2318. inline ::google::protobuf::int32 questInfo::count() const {
  2319. return count_;
  2320. }
  2321. inline void questInfo::set_count(::google::protobuf::int32 value) {
  2322. set_has_count();
  2323. count_ = value;
  2324. }
  2325. // -------------------------------------------------------------------
  2326. // killFishInfo
  2327. // optional int32 fishId = 1;
  2328. inline bool killFishInfo::has_fishid() const {
  2329. return (_has_bits_[0] & 0x00000001u) != 0;
  2330. }
  2331. inline void killFishInfo::set_has_fishid() {
  2332. _has_bits_[0] |= 0x00000001u;
  2333. }
  2334. inline void killFishInfo::clear_has_fishid() {
  2335. _has_bits_[0] &= ~0x00000001u;
  2336. }
  2337. inline void killFishInfo::clear_fishid() {
  2338. fishid_ = 0;
  2339. clear_has_fishid();
  2340. }
  2341. inline ::google::protobuf::int32 killFishInfo::fishid() const {
  2342. return fishid_;
  2343. }
  2344. inline void killFishInfo::set_fishid(::google::protobuf::int32 value) {
  2345. set_has_fishid();
  2346. fishid_ = value;
  2347. }
  2348. // optional int32 count = 2;
  2349. inline bool killFishInfo::has_count() const {
  2350. return (_has_bits_[0] & 0x00000002u) != 0;
  2351. }
  2352. inline void killFishInfo::set_has_count() {
  2353. _has_bits_[0] |= 0x00000002u;
  2354. }
  2355. inline void killFishInfo::clear_has_count() {
  2356. _has_bits_[0] &= ~0x00000002u;
  2357. }
  2358. inline void killFishInfo::clear_count() {
  2359. count_ = 0;
  2360. clear_has_count();
  2361. }
  2362. inline ::google::protobuf::int32 killFishInfo::count() const {
  2363. return count_;
  2364. }
  2365. inline void killFishInfo::set_count(::google::protobuf::int32 value) {
  2366. set_has_count();
  2367. count_ = value;
  2368. }
  2369. // -------------------------------------------------------------------
  2370. // packetc2l_get_arena_match_info
  2371. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_get_arena_match_info];
  2372. inline bool packetc2l_get_arena_match_info::has_packet_id() const {
  2373. return (_has_bits_[0] & 0x00000001u) != 0;
  2374. }
  2375. inline void packetc2l_get_arena_match_info::set_has_packet_id() {
  2376. _has_bits_[0] |= 0x00000001u;
  2377. }
  2378. inline void packetc2l_get_arena_match_info::clear_has_packet_id() {
  2379. _has_bits_[0] &= ~0x00000001u;
  2380. }
  2381. inline void packetc2l_get_arena_match_info::clear_packet_id() {
  2382. packet_id_ = 10121;
  2383. clear_has_packet_id();
  2384. }
  2385. inline ::fish_protocols::e_server_msg_type packetc2l_get_arena_match_info::packet_id() const {
  2386. return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
  2387. }
  2388. inline void packetc2l_get_arena_match_info::set_packet_id(::fish_protocols::e_server_msg_type value) {
  2389. assert(::fish_protocols::e_server_msg_type_IsValid(value));
  2390. set_has_packet_id();
  2391. packet_id_ = value;
  2392. }
  2393. // -------------------------------------------------------------------
  2394. // packetl2c_get_arena_match_info_result
  2395. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_get_arena_match_info_result];
  2396. inline bool packetl2c_get_arena_match_info_result::has_packet_id() const {
  2397. return (_has_bits_[0] & 0x00000001u) != 0;
  2398. }
  2399. inline void packetl2c_get_arena_match_info_result::set_has_packet_id() {
  2400. _has_bits_[0] |= 0x00000001u;
  2401. }
  2402. inline void packetl2c_get_arena_match_info_result::clear_has_packet_id() {
  2403. _has_bits_[0] &= ~0x00000001u;
  2404. }
  2405. inline void packetl2c_get_arena_match_info_result::clear_packet_id() {
  2406. packet_id_ = 16101;
  2407. clear_has_packet_id();
  2408. }
  2409. inline ::fish_protocols::e_server_msg_type packetl2c_get_arena_match_info_result::packet_id() const {
  2410. return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
  2411. }
  2412. inline void packetl2c_get_arena_match_info_result::set_packet_id(::fish_protocols::e_server_msg_type value) {
  2413. assert(::fish_protocols::e_server_msg_type_IsValid(value));
  2414. set_has_packet_id();
  2415. packet_id_ = value;
  2416. }
  2417. // repeated .fish_protocols.matchRankInfo dailyRankList = 2;
  2418. inline int packetl2c_get_arena_match_info_result::dailyranklist_size() const {
  2419. return dailyranklist_.size();
  2420. }
  2421. inline void packetl2c_get_arena_match_info_result::clear_dailyranklist() {
  2422. dailyranklist_.Clear();
  2423. }
  2424. inline const ::fish_protocols::matchRankInfo& packetl2c_get_arena_match_info_result::dailyranklist(int index) const {
  2425. return dailyranklist_.Get(index);
  2426. }
  2427. inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_info_result::mutable_dailyranklist(int index) {
  2428. return dailyranklist_.Mutable(index);
  2429. }
  2430. inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_info_result::add_dailyranklist() {
  2431. return dailyranklist_.Add();
  2432. }
  2433. inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >&
  2434. packetl2c_get_arena_match_info_result::dailyranklist() const {
  2435. return dailyranklist_;
  2436. }
  2437. inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >*
  2438. packetl2c_get_arena_match_info_result::mutable_dailyranklist() {
  2439. return &dailyranklist_;
  2440. }
  2441. // repeated .fish_protocols.matchRankInfo weeklyRankList = 3;
  2442. inline int packetl2c_get_arena_match_info_result::weeklyranklist_size() const {
  2443. return weeklyranklist_.size();
  2444. }
  2445. inline void packetl2c_get_arena_match_info_result::clear_weeklyranklist() {
  2446. weeklyranklist_.Clear();
  2447. }
  2448. inline const ::fish_protocols::matchRankInfo& packetl2c_get_arena_match_info_result::weeklyranklist(int index) const {
  2449. return weeklyranklist_.Get(index);
  2450. }
  2451. inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_info_result::mutable_weeklyranklist(int index) {
  2452. return weeklyranklist_.Mutable(index);
  2453. }
  2454. inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_info_result::add_weeklyranklist() {
  2455. return weeklyranklist_.Add();
  2456. }
  2457. inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >&
  2458. packetl2c_get_arena_match_info_result::weeklyranklist() const {
  2459. return weeklyranklist_;
  2460. }
  2461. inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >*
  2462. packetl2c_get_arena_match_info_result::mutable_weeklyranklist() {
  2463. return &weeklyranklist_;
  2464. }
  2465. // repeated .fish_protocols.questInfo questList = 4;
  2466. inline int packetl2c_get_arena_match_info_result::questlist_size() const {
  2467. return questlist_.size();
  2468. }
  2469. inline void packetl2c_get_arena_match_info_result::clear_questlist() {
  2470. questlist_.Clear();
  2471. }
  2472. inline const ::fish_protocols::questInfo& packetl2c_get_arena_match_info_result::questlist(int index) const {
  2473. return questlist_.Get(index);
  2474. }
  2475. inline ::fish_protocols::questInfo* packetl2c_get_arena_match_info_result::mutable_questlist(int index) {
  2476. return questlist_.Mutable(index);
  2477. }
  2478. inline ::fish_protocols::questInfo* packetl2c_get_arena_match_info_result::add_questlist() {
  2479. return questlist_.Add();
  2480. }
  2481. inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::questInfo >&
  2482. packetl2c_get_arena_match_info_result::questlist() const {
  2483. return questlist_;
  2484. }
  2485. inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::questInfo >*
  2486. packetl2c_get_arena_match_info_result::mutable_questlist() {
  2487. return &questlist_;
  2488. }
  2489. // repeated .fish_protocols.killFishInfo killList = 5;
  2490. inline int packetl2c_get_arena_match_info_result::killlist_size() const {
  2491. return killlist_.size();
  2492. }
  2493. inline void packetl2c_get_arena_match_info_result::clear_killlist() {
  2494. killlist_.Clear();
  2495. }
  2496. inline const ::fish_protocols::killFishInfo& packetl2c_get_arena_match_info_result::killlist(int index) const {
  2497. return killlist_.Get(index);
  2498. }
  2499. inline ::fish_protocols::killFishInfo* packetl2c_get_arena_match_info_result::mutable_killlist(int index) {
  2500. return killlist_.Mutable(index);
  2501. }
  2502. inline ::fish_protocols::killFishInfo* packetl2c_get_arena_match_info_result::add_killlist() {
  2503. return killlist_.Add();
  2504. }
  2505. inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::killFishInfo >&
  2506. packetl2c_get_arena_match_info_result::killlist() const {
  2507. return killlist_;
  2508. }
  2509. inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::killFishInfo >*
  2510. packetl2c_get_arena_match_info_result::mutable_killlist() {
  2511. return &killlist_;
  2512. }
  2513. // optional int32 bulletCount = 6;
  2514. inline bool packetl2c_get_arena_match_info_result::has_bulletcount() const {
  2515. return (_has_bits_[0] & 0x00000020u) != 0;
  2516. }
  2517. inline void packetl2c_get_arena_match_info_result::set_has_bulletcount() {
  2518. _has_bits_[0] |= 0x00000020u;
  2519. }
  2520. inline void packetl2c_get_arena_match_info_result::clear_has_bulletcount() {
  2521. _has_bits_[0] &= ~0x00000020u;
  2522. }
  2523. inline void packetl2c_get_arena_match_info_result::clear_bulletcount() {
  2524. bulletcount_ = 0;
  2525. clear_has_bulletcount();
  2526. }
  2527. inline ::google::protobuf::int32 packetl2c_get_arena_match_info_result::bulletcount() const {
  2528. return bulletcount_;
  2529. }
  2530. inline void packetl2c_get_arena_match_info_result::set_bulletcount(::google::protobuf::int32 value) {
  2531. set_has_bulletcount();
  2532. bulletcount_ = value;
  2533. }
  2534. // optional int32 curScore = 7;
  2535. inline bool packetl2c_get_arena_match_info_result::has_curscore() const {
  2536. return (_has_bits_[0] & 0x00000040u) != 0;
  2537. }
  2538. inline void packetl2c_get_arena_match_info_result::set_has_curscore() {
  2539. _has_bits_[0] |= 0x00000040u;
  2540. }
  2541. inline void packetl2c_get_arena_match_info_result::clear_has_curscore() {
  2542. _has_bits_[0] &= ~0x00000040u;
  2543. }
  2544. inline void packetl2c_get_arena_match_info_result::clear_curscore() {
  2545. curscore_ = 0;
  2546. clear_has_curscore();
  2547. }
  2548. inline ::google::protobuf::int32 packetl2c_get_arena_match_info_result::curscore() const {
  2549. return curscore_;
  2550. }
  2551. inline void packetl2c_get_arena_match_info_result::set_curscore(::google::protobuf::int32 value) {
  2552. set_has_curscore();
  2553. curscore_ = value;
  2554. }
  2555. // optional int32 joinCount = 8;
  2556. inline bool packetl2c_get_arena_match_info_result::has_joincount() const {
  2557. return (_has_bits_[0] & 0x00000080u) != 0;
  2558. }
  2559. inline void packetl2c_get_arena_match_info_result::set_has_joincount() {
  2560. _has_bits_[0] |= 0x00000080u;
  2561. }
  2562. inline void packetl2c_get_arena_match_info_result::clear_has_joincount() {
  2563. _has_bits_[0] &= ~0x00000080u;
  2564. }
  2565. inline void packetl2c_get_arena_match_info_result::clear_joincount() {
  2566. joincount_ = 0;
  2567. clear_has_joincount();
  2568. }
  2569. inline ::google::protobuf::int32 packetl2c_get_arena_match_info_result::joincount() const {
  2570. return joincount_;
  2571. }
  2572. inline void packetl2c_get_arena_match_info_result::set_joincount(::google::protobuf::int32 value) {
  2573. set_has_joincount();
  2574. joincount_ = value;
  2575. }
  2576. // optional int32 questGroup = 9;
  2577. inline bool packetl2c_get_arena_match_info_result::has_questgroup() const {
  2578. return (_has_bits_[0] & 0x00000100u) != 0;
  2579. }
  2580. inline void packetl2c_get_arena_match_info_result::set_has_questgroup() {
  2581. _has_bits_[0] |= 0x00000100u;
  2582. }
  2583. inline void packetl2c_get_arena_match_info_result::clear_has_questgroup() {
  2584. _has_bits_[0] &= ~0x00000100u;
  2585. }
  2586. inline void packetl2c_get_arena_match_info_result::clear_questgroup() {
  2587. questgroup_ = 0;
  2588. clear_has_questgroup();
  2589. }
  2590. inline ::google::protobuf::int32 packetl2c_get_arena_match_info_result::questgroup() const {
  2591. return questgroup_;
  2592. }
  2593. inline void packetl2c_get_arena_match_info_result::set_questgroup(::google::protobuf::int32 value) {
  2594. set_has_questgroup();
  2595. questgroup_ = value;
  2596. }
  2597. // optional .fish_protocols.matchRankInfo selfDayRank = 10;
  2598. inline bool packetl2c_get_arena_match_info_result::has_selfdayrank() const {
  2599. return (_has_bits_[0] & 0x00000200u) != 0;
  2600. }
  2601. inline void packetl2c_get_arena_match_info_result::set_has_selfdayrank() {
  2602. _has_bits_[0] |= 0x00000200u;
  2603. }
  2604. inline void packetl2c_get_arena_match_info_result::clear_has_selfdayrank() {
  2605. _has_bits_[0] &= ~0x00000200u;
  2606. }
  2607. inline void packetl2c_get_arena_match_info_result::clear_selfdayrank() {
  2608. if (selfdayrank_ != NULL) selfdayrank_->::fish_protocols::matchRankInfo::Clear();
  2609. clear_has_selfdayrank();
  2610. }
  2611. inline const ::fish_protocols::matchRankInfo& packetl2c_get_arena_match_info_result::selfdayrank() const {
  2612. return selfdayrank_ != NULL ? *selfdayrank_ : *default_instance_->selfdayrank_;
  2613. }
  2614. inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_info_result::mutable_selfdayrank() {
  2615. set_has_selfdayrank();
  2616. if (selfdayrank_ == NULL) selfdayrank_ = new ::fish_protocols::matchRankInfo;
  2617. return selfdayrank_;
  2618. }
  2619. inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_info_result::release_selfdayrank() {
  2620. clear_has_selfdayrank();
  2621. ::fish_protocols::matchRankInfo* temp = selfdayrank_;
  2622. selfdayrank_ = NULL;
  2623. return temp;
  2624. }
  2625. inline void packetl2c_get_arena_match_info_result::set_allocated_selfdayrank(::fish_protocols::matchRankInfo* selfdayrank) {
  2626. delete selfdayrank_;
  2627. selfdayrank_ = selfdayrank;
  2628. if (selfdayrank) {
  2629. set_has_selfdayrank();
  2630. } else {
  2631. clear_has_selfdayrank();
  2632. }
  2633. }
  2634. // optional .fish_protocols.matchRankInfo selfWeekRank = 11;
  2635. inline bool packetl2c_get_arena_match_info_result::has_selfweekrank() const {
  2636. return (_has_bits_[0] & 0x00000400u) != 0;
  2637. }
  2638. inline void packetl2c_get_arena_match_info_result::set_has_selfweekrank() {
  2639. _has_bits_[0] |= 0x00000400u;
  2640. }
  2641. inline void packetl2c_get_arena_match_info_result::clear_has_selfweekrank() {
  2642. _has_bits_[0] &= ~0x00000400u;
  2643. }
  2644. inline void packetl2c_get_arena_match_info_result::clear_selfweekrank() {
  2645. if (selfweekrank_ != NULL) selfweekrank_->::fish_protocols::matchRankInfo::Clear();
  2646. clear_has_selfweekrank();
  2647. }
  2648. inline const ::fish_protocols::matchRankInfo& packetl2c_get_arena_match_info_result::selfweekrank() const {
  2649. return selfweekrank_ != NULL ? *selfweekrank_ : *default_instance_->selfweekrank_;
  2650. }
  2651. inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_info_result::mutable_selfweekrank() {
  2652. set_has_selfweekrank();
  2653. if (selfweekrank_ == NULL) selfweekrank_ = new ::fish_protocols::matchRankInfo;
  2654. return selfweekrank_;
  2655. }
  2656. inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_info_result::release_selfweekrank() {
  2657. clear_has_selfweekrank();
  2658. ::fish_protocols::matchRankInfo* temp = selfweekrank_;
  2659. selfweekrank_ = NULL;
  2660. return temp;
  2661. }
  2662. inline void packetl2c_get_arena_match_info_result::set_allocated_selfweekrank(::fish_protocols::matchRankInfo* selfweekrank) {
  2663. delete selfweekrank_;
  2664. selfweekrank_ = selfweekrank;
  2665. if (selfweekrank) {
  2666. set_has_selfweekrank();
  2667. } else {
  2668. clear_has_selfweekrank();
  2669. }
  2670. }
  2671. // optional int32 startTime = 12;
  2672. inline bool packetl2c_get_arena_match_info_result::has_starttime() const {
  2673. return (_has_bits_[0] & 0x00000800u) != 0;
  2674. }
  2675. inline void packetl2c_get_arena_match_info_result::set_has_starttime() {
  2676. _has_bits_[0] |= 0x00000800u;
  2677. }
  2678. inline void packetl2c_get_arena_match_info_result::clear_has_starttime() {
  2679. _has_bits_[0] &= ~0x00000800u;
  2680. }
  2681. inline void packetl2c_get_arena_match_info_result::clear_starttime() {
  2682. starttime_ = 0;
  2683. clear_has_starttime();
  2684. }
  2685. inline ::google::protobuf::int32 packetl2c_get_arena_match_info_result::starttime() const {
  2686. return starttime_;
  2687. }
  2688. inline void packetl2c_get_arena_match_info_result::set_starttime(::google::protobuf::int32 value) {
  2689. set_has_starttime();
  2690. starttime_ = value;
  2691. }
  2692. // optional int32 endTime = 13;
  2693. inline bool packetl2c_get_arena_match_info_result::has_endtime() const {
  2694. return (_has_bits_[0] & 0x00001000u) != 0;
  2695. }
  2696. inline void packetl2c_get_arena_match_info_result::set_has_endtime() {
  2697. _has_bits_[0] |= 0x00001000u;
  2698. }
  2699. inline void packetl2c_get_arena_match_info_result::clear_has_endtime() {
  2700. _has_bits_[0] &= ~0x00001000u;
  2701. }
  2702. inline void packetl2c_get_arena_match_info_result::clear_endtime() {
  2703. endtime_ = 0;
  2704. clear_has_endtime();
  2705. }
  2706. inline ::google::protobuf::int32 packetl2c_get_arena_match_info_result::endtime() const {
  2707. return endtime_;
  2708. }
  2709. inline void packetl2c_get_arena_match_info_result::set_endtime(::google::protobuf::int32 value) {
  2710. set_has_endtime();
  2711. endtime_ = value;
  2712. }
  2713. // -------------------------------------------------------------------
  2714. // packetc2l_syn_arena_match_bullet
  2715. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_syn_arena_match_bullet];
  2716. inline bool packetc2l_syn_arena_match_bullet::has_packet_id() const {
  2717. return (_has_bits_[0] & 0x00000001u) != 0;
  2718. }
  2719. inline void packetc2l_syn_arena_match_bullet::set_has_packet_id() {
  2720. _has_bits_[0] |= 0x00000001u;
  2721. }
  2722. inline void packetc2l_syn_arena_match_bullet::clear_has_packet_id() {
  2723. _has_bits_[0] &= ~0x00000001u;
  2724. }
  2725. inline void packetc2l_syn_arena_match_bullet::clear_packet_id() {
  2726. packet_id_ = 10223;
  2727. clear_has_packet_id();
  2728. }
  2729. inline ::fish_protocols::e_server_msg_type packetc2l_syn_arena_match_bullet::packet_id() const {
  2730. return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
  2731. }
  2732. inline void packetc2l_syn_arena_match_bullet::set_packet_id(::fish_protocols::e_server_msg_type value) {
  2733. assert(::fish_protocols::e_server_msg_type_IsValid(value));
  2734. set_has_packet_id();
  2735. packet_id_ = value;
  2736. }
  2737. // -------------------------------------------------------------------
  2738. // packetl2c_syn_arena_match_bullet_result
  2739. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_syn_arena_match_bullet_result];
  2740. inline bool packetl2c_syn_arena_match_bullet_result::has_packet_id() const {
  2741. return (_has_bits_[0] & 0x00000001u) != 0;
  2742. }
  2743. inline void packetl2c_syn_arena_match_bullet_result::set_has_packet_id() {
  2744. _has_bits_[0] |= 0x00000001u;
  2745. }
  2746. inline void packetl2c_syn_arena_match_bullet_result::clear_has_packet_id() {
  2747. _has_bits_[0] &= ~0x00000001u;
  2748. }
  2749. inline void packetl2c_syn_arena_match_bullet_result::clear_packet_id() {
  2750. packet_id_ = 16229;
  2751. clear_has_packet_id();
  2752. }
  2753. inline ::fish_protocols::e_server_msg_type packetl2c_syn_arena_match_bullet_result::packet_id() const {
  2754. return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
  2755. }
  2756. inline void packetl2c_syn_arena_match_bullet_result::set_packet_id(::fish_protocols::e_server_msg_type value) {
  2757. assert(::fish_protocols::e_server_msg_type_IsValid(value));
  2758. set_has_packet_id();
  2759. packet_id_ = value;
  2760. }
  2761. // optional int32 bulletCount = 2;
  2762. inline bool packetl2c_syn_arena_match_bullet_result::has_bulletcount() const {
  2763. return (_has_bits_[0] & 0x00000002u) != 0;
  2764. }
  2765. inline void packetl2c_syn_arena_match_bullet_result::set_has_bulletcount() {
  2766. _has_bits_[0] |= 0x00000002u;
  2767. }
  2768. inline void packetl2c_syn_arena_match_bullet_result::clear_has_bulletcount() {
  2769. _has_bits_[0] &= ~0x00000002u;
  2770. }
  2771. inline void packetl2c_syn_arena_match_bullet_result::clear_bulletcount() {
  2772. bulletcount_ = 0;
  2773. clear_has_bulletcount();
  2774. }
  2775. inline ::google::protobuf::int32 packetl2c_syn_arena_match_bullet_result::bulletcount() const {
  2776. return bulletcount_;
  2777. }
  2778. inline void packetl2c_syn_arena_match_bullet_result::set_bulletcount(::google::protobuf::int32 value) {
  2779. set_has_bulletcount();
  2780. bulletcount_ = value;
  2781. }
  2782. // -------------------------------------------------------------------
  2783. // packetc2l_get_arena_match_history_rank
  2784. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_get_arena_match_history_rank];
  2785. inline bool packetc2l_get_arena_match_history_rank::has_packet_id() const {
  2786. return (_has_bits_[0] & 0x00000001u) != 0;
  2787. }
  2788. inline void packetc2l_get_arena_match_history_rank::set_has_packet_id() {
  2789. _has_bits_[0] |= 0x00000001u;
  2790. }
  2791. inline void packetc2l_get_arena_match_history_rank::clear_has_packet_id() {
  2792. _has_bits_[0] &= ~0x00000001u;
  2793. }
  2794. inline void packetc2l_get_arena_match_history_rank::clear_packet_id() {
  2795. packet_id_ = 10213;
  2796. clear_has_packet_id();
  2797. }
  2798. inline ::fish_protocols::e_server_msg_type packetc2l_get_arena_match_history_rank::packet_id() const {
  2799. return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
  2800. }
  2801. inline void packetc2l_get_arena_match_history_rank::set_packet_id(::fish_protocols::e_server_msg_type value) {
  2802. assert(::fish_protocols::e_server_msg_type_IsValid(value));
  2803. set_has_packet_id();
  2804. packet_id_ = value;
  2805. }
  2806. // optional int32 type = 2;
  2807. inline bool packetc2l_get_arena_match_history_rank::has_type() const {
  2808. return (_has_bits_[0] & 0x00000002u) != 0;
  2809. }
  2810. inline void packetc2l_get_arena_match_history_rank::set_has_type() {
  2811. _has_bits_[0] |= 0x00000002u;
  2812. }
  2813. inline void packetc2l_get_arena_match_history_rank::clear_has_type() {
  2814. _has_bits_[0] &= ~0x00000002u;
  2815. }
  2816. inline void packetc2l_get_arena_match_history_rank::clear_type() {
  2817. type_ = 0;
  2818. clear_has_type();
  2819. }
  2820. inline ::google::protobuf::int32 packetc2l_get_arena_match_history_rank::type() const {
  2821. return type_;
  2822. }
  2823. inline void packetc2l_get_arena_match_history_rank::set_type(::google::protobuf::int32 value) {
  2824. set_has_type();
  2825. type_ = value;
  2826. }
  2827. // -------------------------------------------------------------------
  2828. // packetl2c_get_arena_match_history_rank_result
  2829. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_get_arena_match_history_rank_result];
  2830. inline bool packetl2c_get_arena_match_history_rank_result::has_packet_id() const {
  2831. return (_has_bits_[0] & 0x00000001u) != 0;
  2832. }
  2833. inline void packetl2c_get_arena_match_history_rank_result::set_has_packet_id() {
  2834. _has_bits_[0] |= 0x00000001u;
  2835. }
  2836. inline void packetl2c_get_arena_match_history_rank_result::clear_has_packet_id() {
  2837. _has_bits_[0] &= ~0x00000001u;
  2838. }
  2839. inline void packetl2c_get_arena_match_history_rank_result::clear_packet_id() {
  2840. packet_id_ = 16216;
  2841. clear_has_packet_id();
  2842. }
  2843. inline ::fish_protocols::e_server_msg_type packetl2c_get_arena_match_history_rank_result::packet_id() const {
  2844. return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
  2845. }
  2846. inline void packetl2c_get_arena_match_history_rank_result::set_packet_id(::fish_protocols::e_server_msg_type value) {
  2847. assert(::fish_protocols::e_server_msg_type_IsValid(value));
  2848. set_has_packet_id();
  2849. packet_id_ = value;
  2850. }
  2851. // optional int32 type = 2;
  2852. inline bool packetl2c_get_arena_match_history_rank_result::has_type() const {
  2853. return (_has_bits_[0] & 0x00000002u) != 0;
  2854. }
  2855. inline void packetl2c_get_arena_match_history_rank_result::set_has_type() {
  2856. _has_bits_[0] |= 0x00000002u;
  2857. }
  2858. inline void packetl2c_get_arena_match_history_rank_result::clear_has_type() {
  2859. _has_bits_[0] &= ~0x00000002u;
  2860. }
  2861. inline void packetl2c_get_arena_match_history_rank_result::clear_type() {
  2862. type_ = 0;
  2863. clear_has_type();
  2864. }
  2865. inline ::google::protobuf::int32 packetl2c_get_arena_match_history_rank_result::type() const {
  2866. return type_;
  2867. }
  2868. inline void packetl2c_get_arena_match_history_rank_result::set_type(::google::protobuf::int32 value) {
  2869. set_has_type();
  2870. type_ = value;
  2871. }
  2872. // repeated .fish_protocols.matchRankInfo rankList = 3;
  2873. inline int packetl2c_get_arena_match_history_rank_result::ranklist_size() const {
  2874. return ranklist_.size();
  2875. }
  2876. inline void packetl2c_get_arena_match_history_rank_result::clear_ranklist() {
  2877. ranklist_.Clear();
  2878. }
  2879. inline const ::fish_protocols::matchRankInfo& packetl2c_get_arena_match_history_rank_result::ranklist(int index) const {
  2880. return ranklist_.Get(index);
  2881. }
  2882. inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_history_rank_result::mutable_ranklist(int index) {
  2883. return ranklist_.Mutable(index);
  2884. }
  2885. inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_history_rank_result::add_ranklist() {
  2886. return ranklist_.Add();
  2887. }
  2888. inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >&
  2889. packetl2c_get_arena_match_history_rank_result::ranklist() const {
  2890. return ranklist_;
  2891. }
  2892. inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >*
  2893. packetl2c_get_arena_match_history_rank_result::mutable_ranklist() {
  2894. return &ranklist_;
  2895. }
  2896. // optional .fish_protocols.matchRankInfo selfRank = 4;
  2897. inline bool packetl2c_get_arena_match_history_rank_result::has_selfrank() const {
  2898. return (_has_bits_[0] & 0x00000008u) != 0;
  2899. }
  2900. inline void packetl2c_get_arena_match_history_rank_result::set_has_selfrank() {
  2901. _has_bits_[0] |= 0x00000008u;
  2902. }
  2903. inline void packetl2c_get_arena_match_history_rank_result::clear_has_selfrank() {
  2904. _has_bits_[0] &= ~0x00000008u;
  2905. }
  2906. inline void packetl2c_get_arena_match_history_rank_result::clear_selfrank() {
  2907. if (selfrank_ != NULL) selfrank_->::fish_protocols::matchRankInfo::Clear();
  2908. clear_has_selfrank();
  2909. }
  2910. inline const ::fish_protocols::matchRankInfo& packetl2c_get_arena_match_history_rank_result::selfrank() const {
  2911. return selfrank_ != NULL ? *selfrank_ : *default_instance_->selfrank_;
  2912. }
  2913. inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_history_rank_result::mutable_selfrank() {
  2914. set_has_selfrank();
  2915. if (selfrank_ == NULL) selfrank_ = new ::fish_protocols::matchRankInfo;
  2916. return selfrank_;
  2917. }
  2918. inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_history_rank_result::release_selfrank() {
  2919. clear_has_selfrank();
  2920. ::fish_protocols::matchRankInfo* temp = selfrank_;
  2921. selfrank_ = NULL;
  2922. return temp;
  2923. }
  2924. inline void packetl2c_get_arena_match_history_rank_result::set_allocated_selfrank(::fish_protocols::matchRankInfo* selfrank) {
  2925. delete selfrank_;
  2926. selfrank_ = selfrank;
  2927. if (selfrank) {
  2928. set_has_selfrank();
  2929. } else {
  2930. clear_has_selfrank();
  2931. }
  2932. }
  2933. // -------------------------------------------------------------------
  2934. // packetc2l_join_arena_match
  2935. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_join_arena_match];
  2936. inline bool packetc2l_join_arena_match::has_packet_id() const {
  2937. return (_has_bits_[0] & 0x00000001u) != 0;
  2938. }
  2939. inline void packetc2l_join_arena_match::set_has_packet_id() {
  2940. _has_bits_[0] |= 0x00000001u;
  2941. }
  2942. inline void packetc2l_join_arena_match::clear_has_packet_id() {
  2943. _has_bits_[0] &= ~0x00000001u;
  2944. }
  2945. inline void packetc2l_join_arena_match::clear_packet_id() {
  2946. packet_id_ = 10155;
  2947. clear_has_packet_id();
  2948. }
  2949. inline ::fish_protocols::e_server_msg_type packetc2l_join_arena_match::packet_id() const {
  2950. return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
  2951. }
  2952. inline void packetc2l_join_arena_match::set_packet_id(::fish_protocols::e_server_msg_type value) {
  2953. assert(::fish_protocols::e_server_msg_type_IsValid(value));
  2954. set_has_packet_id();
  2955. packet_id_ = value;
  2956. }
  2957. // -------------------------------------------------------------------
  2958. // packetl2c_join_arena_match_result
  2959. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_join_arena_match_result];
  2960. inline bool packetl2c_join_arena_match_result::has_packet_id() const {
  2961. return (_has_bits_[0] & 0x00000001u) != 0;
  2962. }
  2963. inline void packetl2c_join_arena_match_result::set_has_packet_id() {
  2964. _has_bits_[0] |= 0x00000001u;
  2965. }
  2966. inline void packetl2c_join_arena_match_result::clear_has_packet_id() {
  2967. _has_bits_[0] &= ~0x00000001u;
  2968. }
  2969. inline void packetl2c_join_arena_match_result::clear_packet_id() {
  2970. packet_id_ = 16144;
  2971. clear_has_packet_id();
  2972. }
  2973. inline ::fish_protocols::e_server_msg_type packetl2c_join_arena_match_result::packet_id() const {
  2974. return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
  2975. }
  2976. inline void packetl2c_join_arena_match_result::set_packet_id(::fish_protocols::e_server_msg_type value) {
  2977. assert(::fish_protocols::e_server_msg_type_IsValid(value));
  2978. set_has_packet_id();
  2979. packet_id_ = value;
  2980. }
  2981. // optional int32 result = 2;
  2982. inline bool packetl2c_join_arena_match_result::has_result() const {
  2983. return (_has_bits_[0] & 0x00000002u) != 0;
  2984. }
  2985. inline void packetl2c_join_arena_match_result::set_has_result() {
  2986. _has_bits_[0] |= 0x00000002u;
  2987. }
  2988. inline void packetl2c_join_arena_match_result::clear_has_result() {
  2989. _has_bits_[0] &= ~0x00000002u;
  2990. }
  2991. inline void packetl2c_join_arena_match_result::clear_result() {
  2992. result_ = 0;
  2993. clear_has_result();
  2994. }
  2995. inline ::google::protobuf::int32 packetl2c_join_arena_match_result::result() const {
  2996. return result_;
  2997. }
  2998. inline void packetl2c_join_arena_match_result::set_result(::google::protobuf::int32 value) {
  2999. set_has_result();
  3000. result_ = value;
  3001. }
  3002. // optional int32 playerId = 3;
  3003. inline bool packetl2c_join_arena_match_result::has_playerid() const {
  3004. return (_has_bits_[0] & 0x00000004u) != 0;
  3005. }
  3006. inline void packetl2c_join_arena_match_result::set_has_playerid() {
  3007. _has_bits_[0] |= 0x00000004u;
  3008. }
  3009. inline void packetl2c_join_arena_match_result::clear_has_playerid() {
  3010. _has_bits_[0] &= ~0x00000004u;
  3011. }
  3012. inline void packetl2c_join_arena_match_result::clear_playerid() {
  3013. playerid_ = 0;
  3014. clear_has_playerid();
  3015. }
  3016. inline ::google::protobuf::int32 packetl2c_join_arena_match_result::playerid() const {
  3017. return playerid_;
  3018. }
  3019. inline void packetl2c_join_arena_match_result::set_playerid(::google::protobuf::int32 value) {
  3020. set_has_playerid();
  3021. playerid_ = value;
  3022. }
  3023. // optional int32 bulletCount = 4;
  3024. inline bool packetl2c_join_arena_match_result::has_bulletcount() const {
  3025. return (_has_bits_[0] & 0x00000008u) != 0;
  3026. }
  3027. inline void packetl2c_join_arena_match_result::set_has_bulletcount() {
  3028. _has_bits_[0] |= 0x00000008u;
  3029. }
  3030. inline void packetl2c_join_arena_match_result::clear_has_bulletcount() {
  3031. _has_bits_[0] &= ~0x00000008u;
  3032. }
  3033. inline void packetl2c_join_arena_match_result::clear_bulletcount() {
  3034. bulletcount_ = 0;
  3035. clear_has_bulletcount();
  3036. }
  3037. inline ::google::protobuf::int32 packetl2c_join_arena_match_result::bulletcount() const {
  3038. return bulletcount_;
  3039. }
  3040. inline void packetl2c_join_arena_match_result::set_bulletcount(::google::protobuf::int32 value) {
  3041. set_has_bulletcount();
  3042. bulletcount_ = value;
  3043. }
  3044. // optional int32 curScore = 5;
  3045. inline bool packetl2c_join_arena_match_result::has_curscore() const {
  3046. return (_has_bits_[0] & 0x00000010u) != 0;
  3047. }
  3048. inline void packetl2c_join_arena_match_result::set_has_curscore() {
  3049. _has_bits_[0] |= 0x00000010u;
  3050. }
  3051. inline void packetl2c_join_arena_match_result::clear_has_curscore() {
  3052. _has_bits_[0] &= ~0x00000010u;
  3053. }
  3054. inline void packetl2c_join_arena_match_result::clear_curscore() {
  3055. curscore_ = 0;
  3056. clear_has_curscore();
  3057. }
  3058. inline ::google::protobuf::int32 packetl2c_join_arena_match_result::curscore() const {
  3059. return curscore_;
  3060. }
  3061. inline void packetl2c_join_arena_match_result::set_curscore(::google::protobuf::int32 value) {
  3062. set_has_curscore();
  3063. curscore_ = value;
  3064. }
  3065. // optional int32 joinCount = 6;
  3066. inline bool packetl2c_join_arena_match_result::has_joincount() const {
  3067. return (_has_bits_[0] & 0x00000020u) != 0;
  3068. }
  3069. inline void packetl2c_join_arena_match_result::set_has_joincount() {
  3070. _has_bits_[0] |= 0x00000020u;
  3071. }
  3072. inline void packetl2c_join_arena_match_result::clear_has_joincount() {
  3073. _has_bits_[0] &= ~0x00000020u;
  3074. }
  3075. inline void packetl2c_join_arena_match_result::clear_joincount() {
  3076. joincount_ = 0;
  3077. clear_has_joincount();
  3078. }
  3079. inline ::google::protobuf::int32 packetl2c_join_arena_match_result::joincount() const {
  3080. return joincount_;
  3081. }
  3082. inline void packetl2c_join_arena_match_result::set_joincount(::google::protobuf::int32 value) {
  3083. set_has_joincount();
  3084. joincount_ = value;
  3085. }
  3086. // optional int32 questGroup = 7;
  3087. inline bool packetl2c_join_arena_match_result::has_questgroup() const {
  3088. return (_has_bits_[0] & 0x00000040u) != 0;
  3089. }
  3090. inline void packetl2c_join_arena_match_result::set_has_questgroup() {
  3091. _has_bits_[0] |= 0x00000040u;
  3092. }
  3093. inline void packetl2c_join_arena_match_result::clear_has_questgroup() {
  3094. _has_bits_[0] &= ~0x00000040u;
  3095. }
  3096. inline void packetl2c_join_arena_match_result::clear_questgroup() {
  3097. questgroup_ = 0;
  3098. clear_has_questgroup();
  3099. }
  3100. inline ::google::protobuf::int32 packetl2c_join_arena_match_result::questgroup() const {
  3101. return questgroup_;
  3102. }
  3103. inline void packetl2c_join_arena_match_result::set_questgroup(::google::protobuf::int32 value) {
  3104. set_has_questgroup();
  3105. questgroup_ = value;
  3106. }
  3107. // -------------------------------------------------------------------
  3108. // packetl2c_notify_arena_match_add_bullet
  3109. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_notify_arena_match_add_bullet];
  3110. inline bool packetl2c_notify_arena_match_add_bullet::has_packet_id() const {
  3111. return (_has_bits_[0] & 0x00000001u) != 0;
  3112. }
  3113. inline void packetl2c_notify_arena_match_add_bullet::set_has_packet_id() {
  3114. _has_bits_[0] |= 0x00000001u;
  3115. }
  3116. inline void packetl2c_notify_arena_match_add_bullet::clear_has_packet_id() {
  3117. _has_bits_[0] &= ~0x00000001u;
  3118. }
  3119. inline void packetl2c_notify_arena_match_add_bullet::clear_packet_id() {
  3120. packet_id_ = 16218;
  3121. clear_has_packet_id();
  3122. }
  3123. inline ::fish_protocols::e_server_msg_type packetl2c_notify_arena_match_add_bullet::packet_id() const {
  3124. return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
  3125. }
  3126. inline void packetl2c_notify_arena_match_add_bullet::set_packet_id(::fish_protocols::e_server_msg_type value) {
  3127. assert(::fish_protocols::e_server_msg_type_IsValid(value));
  3128. set_has_packet_id();
  3129. packet_id_ = value;
  3130. }
  3131. // optional int32 playerId = 2;
  3132. inline bool packetl2c_notify_arena_match_add_bullet::has_playerid() const {
  3133. return (_has_bits_[0] & 0x00000002u) != 0;
  3134. }
  3135. inline void packetl2c_notify_arena_match_add_bullet::set_has_playerid() {
  3136. _has_bits_[0] |= 0x00000002u;
  3137. }
  3138. inline void packetl2c_notify_arena_match_add_bullet::clear_has_playerid() {
  3139. _has_bits_[0] &= ~0x00000002u;
  3140. }
  3141. inline void packetl2c_notify_arena_match_add_bullet::clear_playerid() {
  3142. playerid_ = 0;
  3143. clear_has_playerid();
  3144. }
  3145. inline ::google::protobuf::int32 packetl2c_notify_arena_match_add_bullet::playerid() const {
  3146. return playerid_;
  3147. }
  3148. inline void packetl2c_notify_arena_match_add_bullet::set_playerid(::google::protobuf::int32 value) {
  3149. set_has_playerid();
  3150. playerid_ = value;
  3151. }
  3152. // optional int32 addCount = 3;
  3153. inline bool packetl2c_notify_arena_match_add_bullet::has_addcount() const {
  3154. return (_has_bits_[0] & 0x00000004u) != 0;
  3155. }
  3156. inline void packetl2c_notify_arena_match_add_bullet::set_has_addcount() {
  3157. _has_bits_[0] |= 0x00000004u;
  3158. }
  3159. inline void packetl2c_notify_arena_match_add_bullet::clear_has_addcount() {
  3160. _has_bits_[0] &= ~0x00000004u;
  3161. }
  3162. inline void packetl2c_notify_arena_match_add_bullet::clear_addcount() {
  3163. addcount_ = 0;
  3164. clear_has_addcount();
  3165. }
  3166. inline ::google::protobuf::int32 packetl2c_notify_arena_match_add_bullet::addcount() const {
  3167. return addcount_;
  3168. }
  3169. inline void packetl2c_notify_arena_match_add_bullet::set_addcount(::google::protobuf::int32 value) {
  3170. set_has_addcount();
  3171. addcount_ = value;
  3172. }
  3173. // optional int32 curCount = 4;
  3174. inline bool packetl2c_notify_arena_match_add_bullet::has_curcount() const {
  3175. return (_has_bits_[0] & 0x00000008u) != 0;
  3176. }
  3177. inline void packetl2c_notify_arena_match_add_bullet::set_has_curcount() {
  3178. _has_bits_[0] |= 0x00000008u;
  3179. }
  3180. inline void packetl2c_notify_arena_match_add_bullet::clear_has_curcount() {
  3181. _has_bits_[0] &= ~0x00000008u;
  3182. }
  3183. inline void packetl2c_notify_arena_match_add_bullet::clear_curcount() {
  3184. curcount_ = 0;
  3185. clear_has_curcount();
  3186. }
  3187. inline ::google::protobuf::int32 packetl2c_notify_arena_match_add_bullet::curcount() const {
  3188. return curcount_;
  3189. }
  3190. inline void packetl2c_notify_arena_match_add_bullet::set_curcount(::google::protobuf::int32 value) {
  3191. set_has_curcount();
  3192. curcount_ = value;
  3193. }
  3194. // -------------------------------------------------------------------
  3195. // buffInfo
  3196. // optional int32 buffId = 1;
  3197. inline bool buffInfo::has_buffid() const {
  3198. return (_has_bits_[0] & 0x00000001u) != 0;
  3199. }
  3200. inline void buffInfo::set_has_buffid() {
  3201. _has_bits_[0] |= 0x00000001u;
  3202. }
  3203. inline void buffInfo::clear_has_buffid() {
  3204. _has_bits_[0] &= ~0x00000001u;
  3205. }
  3206. inline void buffInfo::clear_buffid() {
  3207. buffid_ = 0;
  3208. clear_has_buffid();
  3209. }
  3210. inline ::google::protobuf::int32 buffInfo::buffid() const {
  3211. return buffid_;
  3212. }
  3213. inline void buffInfo::set_buffid(::google::protobuf::int32 value) {
  3214. set_has_buffid();
  3215. buffid_ = value;
  3216. }
  3217. // optional int32 buffRate = 2;
  3218. inline bool buffInfo::has_buffrate() const {
  3219. return (_has_bits_[0] & 0x00000002u) != 0;
  3220. }
  3221. inline void buffInfo::set_has_buffrate() {
  3222. _has_bits_[0] |= 0x00000002u;
  3223. }
  3224. inline void buffInfo::clear_has_buffrate() {
  3225. _has_bits_[0] &= ~0x00000002u;
  3226. }
  3227. inline void buffInfo::clear_buffrate() {
  3228. buffrate_ = 0;
  3229. clear_has_buffrate();
  3230. }
  3231. inline ::google::protobuf::int32 buffInfo::buffrate() const {
  3232. return buffrate_;
  3233. }
  3234. inline void buffInfo::set_buffrate(::google::protobuf::int32 value) {
  3235. set_has_buffrate();
  3236. buffrate_ = value;
  3237. }
  3238. // -------------------------------------------------------------------
  3239. // packetl2c_arena_match_end_notify
  3240. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_arena_match_end_notify];
  3241. inline bool packetl2c_arena_match_end_notify::has_packet_id() const {
  3242. return (_has_bits_[0] & 0x00000001u) != 0;
  3243. }
  3244. inline void packetl2c_arena_match_end_notify::set_has_packet_id() {
  3245. _has_bits_[0] |= 0x00000001u;
  3246. }
  3247. inline void packetl2c_arena_match_end_notify::clear_has_packet_id() {
  3248. _has_bits_[0] &= ~0x00000001u;
  3249. }
  3250. inline void packetl2c_arena_match_end_notify::clear_packet_id() {
  3251. packet_id_ = 16127;
  3252. clear_has_packet_id();
  3253. }
  3254. inline ::fish_protocols::e_server_msg_type packetl2c_arena_match_end_notify::packet_id() const {
  3255. return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
  3256. }
  3257. inline void packetl2c_arena_match_end_notify::set_packet_id(::fish_protocols::e_server_msg_type value) {
  3258. assert(::fish_protocols::e_server_msg_type_IsValid(value));
  3259. set_has_packet_id();
  3260. packet_id_ = value;
  3261. }
  3262. // optional int32 reason = 2;
  3263. inline bool packetl2c_arena_match_end_notify::has_reason() const {
  3264. return (_has_bits_[0] & 0x00000002u) != 0;
  3265. }
  3266. inline void packetl2c_arena_match_end_notify::set_has_reason() {
  3267. _has_bits_[0] |= 0x00000002u;
  3268. }
  3269. inline void packetl2c_arena_match_end_notify::clear_has_reason() {
  3270. _has_bits_[0] &= ~0x00000002u;
  3271. }
  3272. inline void packetl2c_arena_match_end_notify::clear_reason() {
  3273. reason_ = 0;
  3274. clear_has_reason();
  3275. }
  3276. inline ::google::protobuf::int32 packetl2c_arena_match_end_notify::reason() const {
  3277. return reason_;
  3278. }
  3279. inline void packetl2c_arena_match_end_notify::set_reason(::google::protobuf::int32 value) {
  3280. set_has_reason();
  3281. reason_ = value;
  3282. }
  3283. // repeated .fish_protocols.buffInfo buffList = 3;
  3284. inline int packetl2c_arena_match_end_notify::bufflist_size() const {
  3285. return bufflist_.size();
  3286. }
  3287. inline void packetl2c_arena_match_end_notify::clear_bufflist() {
  3288. bufflist_.Clear();
  3289. }
  3290. inline const ::fish_protocols::buffInfo& packetl2c_arena_match_end_notify::bufflist(int index) const {
  3291. return bufflist_.Get(index);
  3292. }
  3293. inline ::fish_protocols::buffInfo* packetl2c_arena_match_end_notify::mutable_bufflist(int index) {
  3294. return bufflist_.Mutable(index);
  3295. }
  3296. inline ::fish_protocols::buffInfo* packetl2c_arena_match_end_notify::add_bufflist() {
  3297. return bufflist_.Add();
  3298. }
  3299. inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::buffInfo >&
  3300. packetl2c_arena_match_end_notify::bufflist() const {
  3301. return bufflist_;
  3302. }
  3303. inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::buffInfo >*
  3304. packetl2c_arena_match_end_notify::mutable_bufflist() {
  3305. return &bufflist_;
  3306. }
  3307. // optional int32 rank = 4;
  3308. inline bool packetl2c_arena_match_end_notify::has_rank() const {
  3309. return (_has_bits_[0] & 0x00000008u) != 0;
  3310. }
  3311. inline void packetl2c_arena_match_end_notify::set_has_rank() {
  3312. _has_bits_[0] |= 0x00000008u;
  3313. }
  3314. inline void packetl2c_arena_match_end_notify::clear_has_rank() {
  3315. _has_bits_[0] &= ~0x00000008u;
  3316. }
  3317. inline void packetl2c_arena_match_end_notify::clear_rank() {
  3318. rank_ = 0;
  3319. clear_has_rank();
  3320. }
  3321. inline ::google::protobuf::int32 packetl2c_arena_match_end_notify::rank() const {
  3322. return rank_;
  3323. }
  3324. inline void packetl2c_arena_match_end_notify::set_rank(::google::protobuf::int32 value) {
  3325. set_has_rank();
  3326. rank_ = value;
  3327. }
  3328. // optional int32 curBaseScore = 5;
  3329. inline bool packetl2c_arena_match_end_notify::has_curbasescore() const {
  3330. return (_has_bits_[0] & 0x00000010u) != 0;
  3331. }
  3332. inline void packetl2c_arena_match_end_notify::set_has_curbasescore() {
  3333. _has_bits_[0] |= 0x00000010u;
  3334. }
  3335. inline void packetl2c_arena_match_end_notify::clear_has_curbasescore() {
  3336. _has_bits_[0] &= ~0x00000010u;
  3337. }
  3338. inline void packetl2c_arena_match_end_notify::clear_curbasescore() {
  3339. curbasescore_ = 0;
  3340. clear_has_curbasescore();
  3341. }
  3342. inline ::google::protobuf::int32 packetl2c_arena_match_end_notify::curbasescore() const {
  3343. return curbasescore_;
  3344. }
  3345. inline void packetl2c_arena_match_end_notify::set_curbasescore(::google::protobuf::int32 value) {
  3346. set_has_curbasescore();
  3347. curbasescore_ = value;
  3348. }
  3349. // optional int32 curAddScore = 6;
  3350. inline bool packetl2c_arena_match_end_notify::has_curaddscore() const {
  3351. return (_has_bits_[0] & 0x00000020u) != 0;
  3352. }
  3353. inline void packetl2c_arena_match_end_notify::set_has_curaddscore() {
  3354. _has_bits_[0] |= 0x00000020u;
  3355. }
  3356. inline void packetl2c_arena_match_end_notify::clear_has_curaddscore() {
  3357. _has_bits_[0] &= ~0x00000020u;
  3358. }
  3359. inline void packetl2c_arena_match_end_notify::clear_curaddscore() {
  3360. curaddscore_ = 0;
  3361. clear_has_curaddscore();
  3362. }
  3363. inline ::google::protobuf::int32 packetl2c_arena_match_end_notify::curaddscore() const {
  3364. return curaddscore_;
  3365. }
  3366. inline void packetl2c_arena_match_end_notify::set_curaddscore(::google::protobuf::int32 value) {
  3367. set_has_curaddscore();
  3368. curaddscore_ = value;
  3369. }
  3370. // optional int32 topScore = 7;
  3371. inline bool packetl2c_arena_match_end_notify::has_topscore() const {
  3372. return (_has_bits_[0] & 0x00000040u) != 0;
  3373. }
  3374. inline void packetl2c_arena_match_end_notify::set_has_topscore() {
  3375. _has_bits_[0] |= 0x00000040u;
  3376. }
  3377. inline void packetl2c_arena_match_end_notify::clear_has_topscore() {
  3378. _has_bits_[0] &= ~0x00000040u;
  3379. }
  3380. inline void packetl2c_arena_match_end_notify::clear_topscore() {
  3381. topscore_ = 0;
  3382. clear_has_topscore();
  3383. }
  3384. inline ::google::protobuf::int32 packetl2c_arena_match_end_notify::topscore() const {
  3385. return topscore_;
  3386. }
  3387. inline void packetl2c_arena_match_end_notify::set_topscore(::google::protobuf::int32 value) {
  3388. set_has_topscore();
  3389. topscore_ = value;
  3390. }
  3391. // -------------------------------------------------------------------
  3392. // packetc2l_get_freedom_match_info
  3393. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_get_freedom_match_info];
  3394. inline bool packetc2l_get_freedom_match_info::has_packet_id() const {
  3395. return (_has_bits_[0] & 0x00000001u) != 0;
  3396. }
  3397. inline void packetc2l_get_freedom_match_info::set_has_packet_id() {
  3398. _has_bits_[0] |= 0x00000001u;
  3399. }
  3400. inline void packetc2l_get_freedom_match_info::clear_has_packet_id() {
  3401. _has_bits_[0] &= ~0x00000001u;
  3402. }
  3403. inline void packetc2l_get_freedom_match_info::clear_packet_id() {
  3404. packet_id_ = 10156;
  3405. clear_has_packet_id();
  3406. }
  3407. inline ::fish_protocols::e_server_msg_type packetc2l_get_freedom_match_info::packet_id() const {
  3408. return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
  3409. }
  3410. inline void packetc2l_get_freedom_match_info::set_packet_id(::fish_protocols::e_server_msg_type value) {
  3411. assert(::fish_protocols::e_server_msg_type_IsValid(value));
  3412. set_has_packet_id();
  3413. packet_id_ = value;
  3414. }
  3415. // optional int32 roomId = 2;
  3416. inline bool packetc2l_get_freedom_match_info::has_roomid() const {
  3417. return (_has_bits_[0] & 0x00000002u) != 0;
  3418. }
  3419. inline void packetc2l_get_freedom_match_info::set_has_roomid() {
  3420. _has_bits_[0] |= 0x00000002u;
  3421. }
  3422. inline void packetc2l_get_freedom_match_info::clear_has_roomid() {
  3423. _has_bits_[0] &= ~0x00000002u;
  3424. }
  3425. inline void packetc2l_get_freedom_match_info::clear_roomid() {
  3426. roomid_ = 0;
  3427. clear_has_roomid();
  3428. }
  3429. inline ::google::protobuf::int32 packetc2l_get_freedom_match_info::roomid() const {
  3430. return roomid_;
  3431. }
  3432. inline void packetc2l_get_freedom_match_info::set_roomid(::google::protobuf::int32 value) {
  3433. set_has_roomid();
  3434. roomid_ = value;
  3435. }
  3436. // -------------------------------------------------------------------
  3437. // packetl2c_get_freedom_match_info_result
  3438. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_get_freedom_match_info_result];
  3439. inline bool packetl2c_get_freedom_match_info_result::has_packet_id() const {
  3440. return (_has_bits_[0] & 0x00000001u) != 0;
  3441. }
  3442. inline void packetl2c_get_freedom_match_info_result::set_has_packet_id() {
  3443. _has_bits_[0] |= 0x00000001u;
  3444. }
  3445. inline void packetl2c_get_freedom_match_info_result::clear_has_packet_id() {
  3446. _has_bits_[0] &= ~0x00000001u;
  3447. }
  3448. inline void packetl2c_get_freedom_match_info_result::clear_packet_id() {
  3449. packet_id_ = 16145;
  3450. clear_has_packet_id();
  3451. }
  3452. inline ::fish_protocols::e_server_msg_type packetl2c_get_freedom_match_info_result::packet_id() const {
  3453. return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
  3454. }
  3455. inline void packetl2c_get_freedom_match_info_result::set_packet_id(::fish_protocols::e_server_msg_type value) {
  3456. assert(::fish_protocols::e_server_msg_type_IsValid(value));
  3457. set_has_packet_id();
  3458. packet_id_ = value;
  3459. }
  3460. // optional int32 roomId = 2;
  3461. inline bool packetl2c_get_freedom_match_info_result::has_roomid() const {
  3462. return (_has_bits_[0] & 0x00000002u) != 0;
  3463. }
  3464. inline void packetl2c_get_freedom_match_info_result::set_has_roomid() {
  3465. _has_bits_[0] |= 0x00000002u;
  3466. }
  3467. inline void packetl2c_get_freedom_match_info_result::clear_has_roomid() {
  3468. _has_bits_[0] &= ~0x00000002u;
  3469. }
  3470. inline void packetl2c_get_freedom_match_info_result::clear_roomid() {
  3471. roomid_ = 0;
  3472. clear_has_roomid();
  3473. }
  3474. inline ::google::protobuf::int32 packetl2c_get_freedom_match_info_result::roomid() const {
  3475. return roomid_;
  3476. }
  3477. inline void packetl2c_get_freedom_match_info_result::set_roomid(::google::protobuf::int32 value) {
  3478. set_has_roomid();
  3479. roomid_ = value;
  3480. }
  3481. // repeated .fish_protocols.matchRankInfo dailyRankList = 3;
  3482. inline int packetl2c_get_freedom_match_info_result::dailyranklist_size() const {
  3483. return dailyranklist_.size();
  3484. }
  3485. inline void packetl2c_get_freedom_match_info_result::clear_dailyranklist() {
  3486. dailyranklist_.Clear();
  3487. }
  3488. inline const ::fish_protocols::matchRankInfo& packetl2c_get_freedom_match_info_result::dailyranklist(int index) const {
  3489. return dailyranklist_.Get(index);
  3490. }
  3491. inline ::fish_protocols::matchRankInfo* packetl2c_get_freedom_match_info_result::mutable_dailyranklist(int index) {
  3492. return dailyranklist_.Mutable(index);
  3493. }
  3494. inline ::fish_protocols::matchRankInfo* packetl2c_get_freedom_match_info_result::add_dailyranklist() {
  3495. return dailyranklist_.Add();
  3496. }
  3497. inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >&
  3498. packetl2c_get_freedom_match_info_result::dailyranklist() const {
  3499. return dailyranklist_;
  3500. }
  3501. inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >*
  3502. packetl2c_get_freedom_match_info_result::mutable_dailyranklist() {
  3503. return &dailyranklist_;
  3504. }
  3505. // optional int32 bulletCount = 4;
  3506. inline bool packetl2c_get_freedom_match_info_result::has_bulletcount() const {
  3507. return (_has_bits_[0] & 0x00000008u) != 0;
  3508. }
  3509. inline void packetl2c_get_freedom_match_info_result::set_has_bulletcount() {
  3510. _has_bits_[0] |= 0x00000008u;
  3511. }
  3512. inline void packetl2c_get_freedom_match_info_result::clear_has_bulletcount() {
  3513. _has_bits_[0] &= ~0x00000008u;
  3514. }
  3515. inline void packetl2c_get_freedom_match_info_result::clear_bulletcount() {
  3516. bulletcount_ = 0;
  3517. clear_has_bulletcount();
  3518. }
  3519. inline ::google::protobuf::int32 packetl2c_get_freedom_match_info_result::bulletcount() const {
  3520. return bulletcount_;
  3521. }
  3522. inline void packetl2c_get_freedom_match_info_result::set_bulletcount(::google::protobuf::int32 value) {
  3523. set_has_bulletcount();
  3524. bulletcount_ = value;
  3525. }
  3526. // optional int32 curScore = 5;
  3527. inline bool packetl2c_get_freedom_match_info_result::has_curscore() const {
  3528. return (_has_bits_[0] & 0x00000010u) != 0;
  3529. }
  3530. inline void packetl2c_get_freedom_match_info_result::set_has_curscore() {
  3531. _has_bits_[0] |= 0x00000010u;
  3532. }
  3533. inline void packetl2c_get_freedom_match_info_result::clear_has_curscore() {
  3534. _has_bits_[0] &= ~0x00000010u;
  3535. }
  3536. inline void packetl2c_get_freedom_match_info_result::clear_curscore() {
  3537. curscore_ = 0;
  3538. clear_has_curscore();
  3539. }
  3540. inline ::google::protobuf::int32 packetl2c_get_freedom_match_info_result::curscore() const {
  3541. return curscore_;
  3542. }
  3543. inline void packetl2c_get_freedom_match_info_result::set_curscore(::google::protobuf::int32 value) {
  3544. set_has_curscore();
  3545. curscore_ = value;
  3546. }
  3547. // optional int32 joinCount = 6;
  3548. inline bool packetl2c_get_freedom_match_info_result::has_joincount() const {
  3549. return (_has_bits_[0] & 0x00000020u) != 0;
  3550. }
  3551. inline void packetl2c_get_freedom_match_info_result::set_has_joincount() {
  3552. _has_bits_[0] |= 0x00000020u;
  3553. }
  3554. inline void packetl2c_get_freedom_match_info_result::clear_has_joincount() {
  3555. _has_bits_[0] &= ~0x00000020u;
  3556. }
  3557. inline void packetl2c_get_freedom_match_info_result::clear_joincount() {
  3558. joincount_ = 0;
  3559. clear_has_joincount();
  3560. }
  3561. inline ::google::protobuf::int32 packetl2c_get_freedom_match_info_result::joincount() const {
  3562. return joincount_;
  3563. }
  3564. inline void packetl2c_get_freedom_match_info_result::set_joincount(::google::protobuf::int32 value) {
  3565. set_has_joincount();
  3566. joincount_ = value;
  3567. }
  3568. // optional int32 leftSecond = 7;
  3569. inline bool packetl2c_get_freedom_match_info_result::has_leftsecond() const {
  3570. return (_has_bits_[0] & 0x00000040u) != 0;
  3571. }
  3572. inline void packetl2c_get_freedom_match_info_result::set_has_leftsecond() {
  3573. _has_bits_[0] |= 0x00000040u;
  3574. }
  3575. inline void packetl2c_get_freedom_match_info_result::clear_has_leftsecond() {
  3576. _has_bits_[0] &= ~0x00000040u;
  3577. }
  3578. inline void packetl2c_get_freedom_match_info_result::clear_leftsecond() {
  3579. leftsecond_ = 0;
  3580. clear_has_leftsecond();
  3581. }
  3582. inline ::google::protobuf::int32 packetl2c_get_freedom_match_info_result::leftsecond() const {
  3583. return leftsecond_;
  3584. }
  3585. inline void packetl2c_get_freedom_match_info_result::set_leftsecond(::google::protobuf::int32 value) {
  3586. set_has_leftsecond();
  3587. leftsecond_ = value;
  3588. }
  3589. // optional .fish_protocols.matchRankInfo selfDayRank = 8;
  3590. inline bool packetl2c_get_freedom_match_info_result::has_selfdayrank() const {
  3591. return (_has_bits_[0] & 0x00000080u) != 0;
  3592. }
  3593. inline void packetl2c_get_freedom_match_info_result::set_has_selfdayrank() {
  3594. _has_bits_[0] |= 0x00000080u;
  3595. }
  3596. inline void packetl2c_get_freedom_match_info_result::clear_has_selfdayrank() {
  3597. _has_bits_[0] &= ~0x00000080u;
  3598. }
  3599. inline void packetl2c_get_freedom_match_info_result::clear_selfdayrank() {
  3600. if (selfdayrank_ != NULL) selfdayrank_->::fish_protocols::matchRankInfo::Clear();
  3601. clear_has_selfdayrank();
  3602. }
  3603. inline const ::fish_protocols::matchRankInfo& packetl2c_get_freedom_match_info_result::selfdayrank() const {
  3604. return selfdayrank_ != NULL ? *selfdayrank_ : *default_instance_->selfdayrank_;
  3605. }
  3606. inline ::fish_protocols::matchRankInfo* packetl2c_get_freedom_match_info_result::mutable_selfdayrank() {
  3607. set_has_selfdayrank();
  3608. if (selfdayrank_ == NULL) selfdayrank_ = new ::fish_protocols::matchRankInfo;
  3609. return selfdayrank_;
  3610. }
  3611. inline ::fish_protocols::matchRankInfo* packetl2c_get_freedom_match_info_result::release_selfdayrank() {
  3612. clear_has_selfdayrank();
  3613. ::fish_protocols::matchRankInfo* temp = selfdayrank_;
  3614. selfdayrank_ = NULL;
  3615. return temp;
  3616. }
  3617. inline void packetl2c_get_freedom_match_info_result::set_allocated_selfdayrank(::fish_protocols::matchRankInfo* selfdayrank) {
  3618. delete selfdayrank_;
  3619. selfdayrank_ = selfdayrank;
  3620. if (selfdayrank) {
  3621. set_has_selfdayrank();
  3622. } else {
  3623. clear_has_selfdayrank();
  3624. }
  3625. }
  3626. // optional int32 startTime = 9;
  3627. inline bool packetl2c_get_freedom_match_info_result::has_starttime() const {
  3628. return (_has_bits_[0] & 0x00000100u) != 0;
  3629. }
  3630. inline void packetl2c_get_freedom_match_info_result::set_has_starttime() {
  3631. _has_bits_[0] |= 0x00000100u;
  3632. }
  3633. inline void packetl2c_get_freedom_match_info_result::clear_has_starttime() {
  3634. _has_bits_[0] &= ~0x00000100u;
  3635. }
  3636. inline void packetl2c_get_freedom_match_info_result::clear_starttime() {
  3637. starttime_ = 0;
  3638. clear_has_starttime();
  3639. }
  3640. inline ::google::protobuf::int32 packetl2c_get_freedom_match_info_result::starttime() const {
  3641. return starttime_;
  3642. }
  3643. inline void packetl2c_get_freedom_match_info_result::set_starttime(::google::protobuf::int32 value) {
  3644. set_has_starttime();
  3645. starttime_ = value;
  3646. }
  3647. // optional int32 endTime = 10;
  3648. inline bool packetl2c_get_freedom_match_info_result::has_endtime() const {
  3649. return (_has_bits_[0] & 0x00000200u) != 0;
  3650. }
  3651. inline void packetl2c_get_freedom_match_info_result::set_has_endtime() {
  3652. _has_bits_[0] |= 0x00000200u;
  3653. }
  3654. inline void packetl2c_get_freedom_match_info_result::clear_has_endtime() {
  3655. _has_bits_[0] &= ~0x00000200u;
  3656. }
  3657. inline void packetl2c_get_freedom_match_info_result::clear_endtime() {
  3658. endtime_ = 0;
  3659. clear_has_endtime();
  3660. }
  3661. inline ::google::protobuf::int32 packetl2c_get_freedom_match_info_result::endtime() const {
  3662. return endtime_;
  3663. }
  3664. inline void packetl2c_get_freedom_match_info_result::set_endtime(::google::protobuf::int32 value) {
  3665. set_has_endtime();
  3666. endtime_ = value;
  3667. }
  3668. // -------------------------------------------------------------------
  3669. // packetc2l_syn_freedom_match_bullet
  3670. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_syn_freedom_match_bullet];
  3671. inline bool packetc2l_syn_freedom_match_bullet::has_packet_id() const {
  3672. return (_has_bits_[0] & 0x00000001u) != 0;
  3673. }
  3674. inline void packetc2l_syn_freedom_match_bullet::set_has_packet_id() {
  3675. _has_bits_[0] |= 0x00000001u;
  3676. }
  3677. inline void packetc2l_syn_freedom_match_bullet::clear_has_packet_id() {
  3678. _has_bits_[0] &= ~0x00000001u;
  3679. }
  3680. inline void packetc2l_syn_freedom_match_bullet::clear_packet_id() {
  3681. packet_id_ = 10224;
  3682. clear_has_packet_id();
  3683. }
  3684. inline ::fish_protocols::e_server_msg_type packetc2l_syn_freedom_match_bullet::packet_id() const {
  3685. return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
  3686. }
  3687. inline void packetc2l_syn_freedom_match_bullet::set_packet_id(::fish_protocols::e_server_msg_type value) {
  3688. assert(::fish_protocols::e_server_msg_type_IsValid(value));
  3689. set_has_packet_id();
  3690. packet_id_ = value;
  3691. }
  3692. // optional int32 roomId = 2;
  3693. inline bool packetc2l_syn_freedom_match_bullet::has_roomid() const {
  3694. return (_has_bits_[0] & 0x00000002u) != 0;
  3695. }
  3696. inline void packetc2l_syn_freedom_match_bullet::set_has_roomid() {
  3697. _has_bits_[0] |= 0x00000002u;
  3698. }
  3699. inline void packetc2l_syn_freedom_match_bullet::clear_has_roomid() {
  3700. _has_bits_[0] &= ~0x00000002u;
  3701. }
  3702. inline void packetc2l_syn_freedom_match_bullet::clear_roomid() {
  3703. roomid_ = 0;
  3704. clear_has_roomid();
  3705. }
  3706. inline ::google::protobuf::int32 packetc2l_syn_freedom_match_bullet::roomid() const {
  3707. return roomid_;
  3708. }
  3709. inline void packetc2l_syn_freedom_match_bullet::set_roomid(::google::protobuf::int32 value) {
  3710. set_has_roomid();
  3711. roomid_ = value;
  3712. }
  3713. // -------------------------------------------------------------------
  3714. // packetl2c_syn_freedom_match_bullet_result
  3715. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_syn_freedom_match_bullet_result];
  3716. inline bool packetl2c_syn_freedom_match_bullet_result::has_packet_id() const {
  3717. return (_has_bits_[0] & 0x00000001u) != 0;
  3718. }
  3719. inline void packetl2c_syn_freedom_match_bullet_result::set_has_packet_id() {
  3720. _has_bits_[0] |= 0x00000001u;
  3721. }
  3722. inline void packetl2c_syn_freedom_match_bullet_result::clear_has_packet_id() {
  3723. _has_bits_[0] &= ~0x00000001u;
  3724. }
  3725. inline void packetl2c_syn_freedom_match_bullet_result::clear_packet_id() {
  3726. packet_id_ = 16230;
  3727. clear_has_packet_id();
  3728. }
  3729. inline ::fish_protocols::e_server_msg_type packetl2c_syn_freedom_match_bullet_result::packet_id() const {
  3730. return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
  3731. }
  3732. inline void packetl2c_syn_freedom_match_bullet_result::set_packet_id(::fish_protocols::e_server_msg_type value) {
  3733. assert(::fish_protocols::e_server_msg_type_IsValid(value));
  3734. set_has_packet_id();
  3735. packet_id_ = value;
  3736. }
  3737. // optional int32 roomId = 2;
  3738. inline bool packetl2c_syn_freedom_match_bullet_result::has_roomid() const {
  3739. return (_has_bits_[0] & 0x00000002u) != 0;
  3740. }
  3741. inline void packetl2c_syn_freedom_match_bullet_result::set_has_roomid() {
  3742. _has_bits_[0] |= 0x00000002u;
  3743. }
  3744. inline void packetl2c_syn_freedom_match_bullet_result::clear_has_roomid() {
  3745. _has_bits_[0] &= ~0x00000002u;
  3746. }
  3747. inline void packetl2c_syn_freedom_match_bullet_result::clear_roomid() {
  3748. roomid_ = 0;
  3749. clear_has_roomid();
  3750. }
  3751. inline ::google::protobuf::int32 packetl2c_syn_freedom_match_bullet_result::roomid() const {
  3752. return roomid_;
  3753. }
  3754. inline void packetl2c_syn_freedom_match_bullet_result::set_roomid(::google::protobuf::int32 value) {
  3755. set_has_roomid();
  3756. roomid_ = value;
  3757. }
  3758. // optional int32 bulletCount = 3;
  3759. inline bool packetl2c_syn_freedom_match_bullet_result::has_bulletcount() const {
  3760. return (_has_bits_[0] & 0x00000004u) != 0;
  3761. }
  3762. inline void packetl2c_syn_freedom_match_bullet_result::set_has_bulletcount() {
  3763. _has_bits_[0] |= 0x00000004u;
  3764. }
  3765. inline void packetl2c_syn_freedom_match_bullet_result::clear_has_bulletcount() {
  3766. _has_bits_[0] &= ~0x00000004u;
  3767. }
  3768. inline void packetl2c_syn_freedom_match_bullet_result::clear_bulletcount() {
  3769. bulletcount_ = 0;
  3770. clear_has_bulletcount();
  3771. }
  3772. inline ::google::protobuf::int32 packetl2c_syn_freedom_match_bullet_result::bulletcount() const {
  3773. return bulletcount_;
  3774. }
  3775. inline void packetl2c_syn_freedom_match_bullet_result::set_bulletcount(::google::protobuf::int32 value) {
  3776. set_has_bulletcount();
  3777. bulletcount_ = value;
  3778. }
  3779. // -------------------------------------------------------------------
  3780. // packetc2l_join_freedom_match
  3781. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_join_freedom_match];
  3782. inline bool packetc2l_join_freedom_match::has_packet_id() const {
  3783. return (_has_bits_[0] & 0x00000001u) != 0;
  3784. }
  3785. inline void packetc2l_join_freedom_match::set_has_packet_id() {
  3786. _has_bits_[0] |= 0x00000001u;
  3787. }
  3788. inline void packetc2l_join_freedom_match::clear_has_packet_id() {
  3789. _has_bits_[0] &= ~0x00000001u;
  3790. }
  3791. inline void packetc2l_join_freedom_match::clear_packet_id() {
  3792. packet_id_ = 10157;
  3793. clear_has_packet_id();
  3794. }
  3795. inline ::fish_protocols::e_server_msg_type packetc2l_join_freedom_match::packet_id() const {
  3796. return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
  3797. }
  3798. inline void packetc2l_join_freedom_match::set_packet_id(::fish_protocols::e_server_msg_type value) {
  3799. assert(::fish_protocols::e_server_msg_type_IsValid(value));
  3800. set_has_packet_id();
  3801. packet_id_ = value;
  3802. }
  3803. // optional int32 roomId = 2;
  3804. inline bool packetc2l_join_freedom_match::has_roomid() const {
  3805. return (_has_bits_[0] & 0x00000002u) != 0;
  3806. }
  3807. inline void packetc2l_join_freedom_match::set_has_roomid() {
  3808. _has_bits_[0] |= 0x00000002u;
  3809. }
  3810. inline void packetc2l_join_freedom_match::clear_has_roomid() {
  3811. _has_bits_[0] &= ~0x00000002u;
  3812. }
  3813. inline void packetc2l_join_freedom_match::clear_roomid() {
  3814. roomid_ = 0;
  3815. clear_has_roomid();
  3816. }
  3817. inline ::google::protobuf::int32 packetc2l_join_freedom_match::roomid() const {
  3818. return roomid_;
  3819. }
  3820. inline void packetc2l_join_freedom_match::set_roomid(::google::protobuf::int32 value) {
  3821. set_has_roomid();
  3822. roomid_ = value;
  3823. }
  3824. // -------------------------------------------------------------------
  3825. // packetl2c_join_freedom_match_result
  3826. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_join_freedom_match_result];
  3827. inline bool packetl2c_join_freedom_match_result::has_packet_id() const {
  3828. return (_has_bits_[0] & 0x00000001u) != 0;
  3829. }
  3830. inline void packetl2c_join_freedom_match_result::set_has_packet_id() {
  3831. _has_bits_[0] |= 0x00000001u;
  3832. }
  3833. inline void packetl2c_join_freedom_match_result::clear_has_packet_id() {
  3834. _has_bits_[0] &= ~0x00000001u;
  3835. }
  3836. inline void packetl2c_join_freedom_match_result::clear_packet_id() {
  3837. packet_id_ = 16213;
  3838. clear_has_packet_id();
  3839. }
  3840. inline ::fish_protocols::e_server_msg_type packetl2c_join_freedom_match_result::packet_id() const {
  3841. return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
  3842. }
  3843. inline void packetl2c_join_freedom_match_result::set_packet_id(::fish_protocols::e_server_msg_type value) {
  3844. assert(::fish_protocols::e_server_msg_type_IsValid(value));
  3845. set_has_packet_id();
  3846. packet_id_ = value;
  3847. }
  3848. // optional int32 result = 2;
  3849. inline bool packetl2c_join_freedom_match_result::has_result() const {
  3850. return (_has_bits_[0] & 0x00000002u) != 0;
  3851. }
  3852. inline void packetl2c_join_freedom_match_result::set_has_result() {
  3853. _has_bits_[0] |= 0x00000002u;
  3854. }
  3855. inline void packetl2c_join_freedom_match_result::clear_has_result() {
  3856. _has_bits_[0] &= ~0x00000002u;
  3857. }
  3858. inline void packetl2c_join_freedom_match_result::clear_result() {
  3859. result_ = 0;
  3860. clear_has_result();
  3861. }
  3862. inline ::google::protobuf::int32 packetl2c_join_freedom_match_result::result() const {
  3863. return result_;
  3864. }
  3865. inline void packetl2c_join_freedom_match_result::set_result(::google::protobuf::int32 value) {
  3866. set_has_result();
  3867. result_ = value;
  3868. }
  3869. // optional int32 roomId = 3;
  3870. inline bool packetl2c_join_freedom_match_result::has_roomid() const {
  3871. return (_has_bits_[0] & 0x00000004u) != 0;
  3872. }
  3873. inline void packetl2c_join_freedom_match_result::set_has_roomid() {
  3874. _has_bits_[0] |= 0x00000004u;
  3875. }
  3876. inline void packetl2c_join_freedom_match_result::clear_has_roomid() {
  3877. _has_bits_[0] &= ~0x00000004u;
  3878. }
  3879. inline void packetl2c_join_freedom_match_result::clear_roomid() {
  3880. roomid_ = 0;
  3881. clear_has_roomid();
  3882. }
  3883. inline ::google::protobuf::int32 packetl2c_join_freedom_match_result::roomid() const {
  3884. return roomid_;
  3885. }
  3886. inline void packetl2c_join_freedom_match_result::set_roomid(::google::protobuf::int32 value) {
  3887. set_has_roomid();
  3888. roomid_ = value;
  3889. }
  3890. // optional int32 playerId = 4;
  3891. inline bool packetl2c_join_freedom_match_result::has_playerid() const {
  3892. return (_has_bits_[0] & 0x00000008u) != 0;
  3893. }
  3894. inline void packetl2c_join_freedom_match_result::set_has_playerid() {
  3895. _has_bits_[0] |= 0x00000008u;
  3896. }
  3897. inline void packetl2c_join_freedom_match_result::clear_has_playerid() {
  3898. _has_bits_[0] &= ~0x00000008u;
  3899. }
  3900. inline void packetl2c_join_freedom_match_result::clear_playerid() {
  3901. playerid_ = 0;
  3902. clear_has_playerid();
  3903. }
  3904. inline ::google::protobuf::int32 packetl2c_join_freedom_match_result::playerid() const {
  3905. return playerid_;
  3906. }
  3907. inline void packetl2c_join_freedom_match_result::set_playerid(::google::protobuf::int32 value) {
  3908. set_has_playerid();
  3909. playerid_ = value;
  3910. }
  3911. // optional int32 bulletCount = 5;
  3912. inline bool packetl2c_join_freedom_match_result::has_bulletcount() const {
  3913. return (_has_bits_[0] & 0x00000010u) != 0;
  3914. }
  3915. inline void packetl2c_join_freedom_match_result::set_has_bulletcount() {
  3916. _has_bits_[0] |= 0x00000010u;
  3917. }
  3918. inline void packetl2c_join_freedom_match_result::clear_has_bulletcount() {
  3919. _has_bits_[0] &= ~0x00000010u;
  3920. }
  3921. inline void packetl2c_join_freedom_match_result::clear_bulletcount() {
  3922. bulletcount_ = 0;
  3923. clear_has_bulletcount();
  3924. }
  3925. inline ::google::protobuf::int32 packetl2c_join_freedom_match_result::bulletcount() const {
  3926. return bulletcount_;
  3927. }
  3928. inline void packetl2c_join_freedom_match_result::set_bulletcount(::google::protobuf::int32 value) {
  3929. set_has_bulletcount();
  3930. bulletcount_ = value;
  3931. }
  3932. // optional int32 curScore = 6;
  3933. inline bool packetl2c_join_freedom_match_result::has_curscore() const {
  3934. return (_has_bits_[0] & 0x00000020u) != 0;
  3935. }
  3936. inline void packetl2c_join_freedom_match_result::set_has_curscore() {
  3937. _has_bits_[0] |= 0x00000020u;
  3938. }
  3939. inline void packetl2c_join_freedom_match_result::clear_has_curscore() {
  3940. _has_bits_[0] &= ~0x00000020u;
  3941. }
  3942. inline void packetl2c_join_freedom_match_result::clear_curscore() {
  3943. curscore_ = 0;
  3944. clear_has_curscore();
  3945. }
  3946. inline ::google::protobuf::int32 packetl2c_join_freedom_match_result::curscore() const {
  3947. return curscore_;
  3948. }
  3949. inline void packetl2c_join_freedom_match_result::set_curscore(::google::protobuf::int32 value) {
  3950. set_has_curscore();
  3951. curscore_ = value;
  3952. }
  3953. // optional int32 joinCount = 7;
  3954. inline bool packetl2c_join_freedom_match_result::has_joincount() const {
  3955. return (_has_bits_[0] & 0x00000040u) != 0;
  3956. }
  3957. inline void packetl2c_join_freedom_match_result::set_has_joincount() {
  3958. _has_bits_[0] |= 0x00000040u;
  3959. }
  3960. inline void packetl2c_join_freedom_match_result::clear_has_joincount() {
  3961. _has_bits_[0] &= ~0x00000040u;
  3962. }
  3963. inline void packetl2c_join_freedom_match_result::clear_joincount() {
  3964. joincount_ = 0;
  3965. clear_has_joincount();
  3966. }
  3967. inline ::google::protobuf::int32 packetl2c_join_freedom_match_result::joincount() const {
  3968. return joincount_;
  3969. }
  3970. inline void packetl2c_join_freedom_match_result::set_joincount(::google::protobuf::int32 value) {
  3971. set_has_joincount();
  3972. joincount_ = value;
  3973. }
  3974. // optional int32 leftSecond = 8;
  3975. inline bool packetl2c_join_freedom_match_result::has_leftsecond() const {
  3976. return (_has_bits_[0] & 0x00000080u) != 0;
  3977. }
  3978. inline void packetl2c_join_freedom_match_result::set_has_leftsecond() {
  3979. _has_bits_[0] |= 0x00000080u;
  3980. }
  3981. inline void packetl2c_join_freedom_match_result::clear_has_leftsecond() {
  3982. _has_bits_[0] &= ~0x00000080u;
  3983. }
  3984. inline void packetl2c_join_freedom_match_result::clear_leftsecond() {
  3985. leftsecond_ = 0;
  3986. clear_has_leftsecond();
  3987. }
  3988. inline ::google::protobuf::int32 packetl2c_join_freedom_match_result::leftsecond() const {
  3989. return leftsecond_;
  3990. }
  3991. inline void packetl2c_join_freedom_match_result::set_leftsecond(::google::protobuf::int32 value) {
  3992. set_has_leftsecond();
  3993. leftsecond_ = value;
  3994. }
  3995. // -------------------------------------------------------------------
  3996. // packetc2l_freedom_match_do_balance
  3997. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_freedom_match_do_balance];
  3998. inline bool packetc2l_freedom_match_do_balance::has_packet_id() const {
  3999. return (_has_bits_[0] & 0x00000001u) != 0;
  4000. }
  4001. inline void packetc2l_freedom_match_do_balance::set_has_packet_id() {
  4002. _has_bits_[0] |= 0x00000001u;
  4003. }
  4004. inline void packetc2l_freedom_match_do_balance::clear_has_packet_id() {
  4005. _has_bits_[0] &= ~0x00000001u;
  4006. }
  4007. inline void packetc2l_freedom_match_do_balance::clear_packet_id() {
  4008. packet_id_ = 10158;
  4009. clear_has_packet_id();
  4010. }
  4011. inline ::fish_protocols::e_server_msg_type packetc2l_freedom_match_do_balance::packet_id() const {
  4012. return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
  4013. }
  4014. inline void packetc2l_freedom_match_do_balance::set_packet_id(::fish_protocols::e_server_msg_type value) {
  4015. assert(::fish_protocols::e_server_msg_type_IsValid(value));
  4016. set_has_packet_id();
  4017. packet_id_ = value;
  4018. }
  4019. // optional int32 roomId = 2;
  4020. inline bool packetc2l_freedom_match_do_balance::has_roomid() const {
  4021. return (_has_bits_[0] & 0x00000002u) != 0;
  4022. }
  4023. inline void packetc2l_freedom_match_do_balance::set_has_roomid() {
  4024. _has_bits_[0] |= 0x00000002u;
  4025. }
  4026. inline void packetc2l_freedom_match_do_balance::clear_has_roomid() {
  4027. _has_bits_[0] &= ~0x00000002u;
  4028. }
  4029. inline void packetc2l_freedom_match_do_balance::clear_roomid() {
  4030. roomid_ = 0;
  4031. clear_has_roomid();
  4032. }
  4033. inline ::google::protobuf::int32 packetc2l_freedom_match_do_balance::roomid() const {
  4034. return roomid_;
  4035. }
  4036. inline void packetc2l_freedom_match_do_balance::set_roomid(::google::protobuf::int32 value) {
  4037. set_has_roomid();
  4038. roomid_ = value;
  4039. }
  4040. // -------------------------------------------------------------------
  4041. // packetl2c_freedom_match_end_notify
  4042. // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_freedom_match_end_notify];
  4043. inline bool packetl2c_freedom_match_end_notify::has_packet_id() const {
  4044. return (_has_bits_[0] & 0x00000001u) != 0;
  4045. }
  4046. inline void packetl2c_freedom_match_end_notify::set_has_packet_id() {
  4047. _has_bits_[0] |= 0x00000001u;
  4048. }
  4049. inline void packetl2c_freedom_match_end_notify::clear_has_packet_id() {
  4050. _has_bits_[0] &= ~0x00000001u;
  4051. }
  4052. inline void packetl2c_freedom_match_end_notify::clear_packet_id() {
  4053. packet_id_ = 16214;
  4054. clear_has_packet_id();
  4055. }
  4056. inline ::fish_protocols::e_server_msg_type packetl2c_freedom_match_end_notify::packet_id() const {
  4057. return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
  4058. }
  4059. inline void packetl2c_freedom_match_end_notify::set_packet_id(::fish_protocols::e_server_msg_type value) {
  4060. assert(::fish_protocols::e_server_msg_type_IsValid(value));
  4061. set_has_packet_id();
  4062. packet_id_ = value;
  4063. }
  4064. // optional int32 roomId = 2;
  4065. inline bool packetl2c_freedom_match_end_notify::has_roomid() const {
  4066. return (_has_bits_[0] & 0x00000002u) != 0;
  4067. }
  4068. inline void packetl2c_freedom_match_end_notify::set_has_roomid() {
  4069. _has_bits_[0] |= 0x00000002u;
  4070. }
  4071. inline void packetl2c_freedom_match_end_notify::clear_has_roomid() {
  4072. _has_bits_[0] &= ~0x00000002u;
  4073. }
  4074. inline void packetl2c_freedom_match_end_notify::clear_roomid() {
  4075. roomid_ = 0;
  4076. clear_has_roomid();
  4077. }
  4078. inline ::google::protobuf::int32 packetl2c_freedom_match_end_notify::roomid() const {
  4079. return roomid_;
  4080. }
  4081. inline void packetl2c_freedom_match_end_notify::set_roomid(::google::protobuf::int32 value) {
  4082. set_has_roomid();
  4083. roomid_ = value;
  4084. }
  4085. // optional int32 reason = 3;
  4086. inline bool packetl2c_freedom_match_end_notify::has_reason() const {
  4087. return (_has_bits_[0] & 0x00000004u) != 0;
  4088. }
  4089. inline void packetl2c_freedom_match_end_notify::set_has_reason() {
  4090. _has_bits_[0] |= 0x00000004u;
  4091. }
  4092. inline void packetl2c_freedom_match_end_notify::clear_has_reason() {
  4093. _has_bits_[0] &= ~0x00000004u;
  4094. }
  4095. inline void packetl2c_freedom_match_end_notify::clear_reason() {
  4096. reason_ = 0;
  4097. clear_has_reason();
  4098. }
  4099. inline ::google::protobuf::int32 packetl2c_freedom_match_end_notify::reason() const {
  4100. return reason_;
  4101. }
  4102. inline void packetl2c_freedom_match_end_notify::set_reason(::google::protobuf::int32 value) {
  4103. set_has_reason();
  4104. reason_ = value;
  4105. }
  4106. // repeated .fish_protocols.buffInfo buffList = 4;
  4107. inline int packetl2c_freedom_match_end_notify::bufflist_size() const {
  4108. return bufflist_.size();
  4109. }
  4110. inline void packetl2c_freedom_match_end_notify::clear_bufflist() {
  4111. bufflist_.Clear();
  4112. }
  4113. inline const ::fish_protocols::buffInfo& packetl2c_freedom_match_end_notify::bufflist(int index) const {
  4114. return bufflist_.Get(index);
  4115. }
  4116. inline ::fish_protocols::buffInfo* packetl2c_freedom_match_end_notify::mutable_bufflist(int index) {
  4117. return bufflist_.Mutable(index);
  4118. }
  4119. inline ::fish_protocols::buffInfo* packetl2c_freedom_match_end_notify::add_bufflist() {
  4120. return bufflist_.Add();
  4121. }
  4122. inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::buffInfo >&
  4123. packetl2c_freedom_match_end_notify::bufflist() const {
  4124. return bufflist_;
  4125. }
  4126. inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::buffInfo >*
  4127. packetl2c_freedom_match_end_notify::mutable_bufflist() {
  4128. return &bufflist_;
  4129. }
  4130. // optional int32 rank = 5;
  4131. inline bool packetl2c_freedom_match_end_notify::has_rank() const {
  4132. return (_has_bits_[0] & 0x00000010u) != 0;
  4133. }
  4134. inline void packetl2c_freedom_match_end_notify::set_has_rank() {
  4135. _has_bits_[0] |= 0x00000010u;
  4136. }
  4137. inline void packetl2c_freedom_match_end_notify::clear_has_rank() {
  4138. _has_bits_[0] &= ~0x00000010u;
  4139. }
  4140. inline void packetl2c_freedom_match_end_notify::clear_rank() {
  4141. rank_ = 0;
  4142. clear_has_rank();
  4143. }
  4144. inline ::google::protobuf::int32 packetl2c_freedom_match_end_notify::rank() const {
  4145. return rank_;
  4146. }
  4147. inline void packetl2c_freedom_match_end_notify::set_rank(::google::protobuf::int32 value) {
  4148. set_has_rank();
  4149. rank_ = value;
  4150. }
  4151. // optional int32 curBaseScore = 6;
  4152. inline bool packetl2c_freedom_match_end_notify::has_curbasescore() const {
  4153. return (_has_bits_[0] & 0x00000020u) != 0;
  4154. }
  4155. inline void packetl2c_freedom_match_end_notify::set_has_curbasescore() {
  4156. _has_bits_[0] |= 0x00000020u;
  4157. }
  4158. inline void packetl2c_freedom_match_end_notify::clear_has_curbasescore() {
  4159. _has_bits_[0] &= ~0x00000020u;
  4160. }
  4161. inline void packetl2c_freedom_match_end_notify::clear_curbasescore() {
  4162. curbasescore_ = 0;
  4163. clear_has_curbasescore();
  4164. }
  4165. inline ::google::protobuf::int32 packetl2c_freedom_match_end_notify::curbasescore() const {
  4166. return curbasescore_;
  4167. }
  4168. inline void packetl2c_freedom_match_end_notify::set_curbasescore(::google::protobuf::int32 value) {
  4169. set_has_curbasescore();
  4170. curbasescore_ = value;
  4171. }
  4172. // optional int32 curAddScore = 7;
  4173. inline bool packetl2c_freedom_match_end_notify::has_curaddscore() const {
  4174. return (_has_bits_[0] & 0x00000040u) != 0;
  4175. }
  4176. inline void packetl2c_freedom_match_end_notify::set_has_curaddscore() {
  4177. _has_bits_[0] |= 0x00000040u;
  4178. }
  4179. inline void packetl2c_freedom_match_end_notify::clear_has_curaddscore() {
  4180. _has_bits_[0] &= ~0x00000040u;
  4181. }
  4182. inline void packetl2c_freedom_match_end_notify::clear_curaddscore() {
  4183. curaddscore_ = 0;
  4184. clear_has_curaddscore();
  4185. }
  4186. inline ::google::protobuf::int32 packetl2c_freedom_match_end_notify::curaddscore() const {
  4187. return curaddscore_;
  4188. }
  4189. inline void packetl2c_freedom_match_end_notify::set_curaddscore(::google::protobuf::int32 value) {
  4190. set_has_curaddscore();
  4191. curaddscore_ = value;
  4192. }
  4193. // optional int32 topScore = 8;
  4194. inline bool packetl2c_freedom_match_end_notify::has_topscore() const {
  4195. return (_has_bits_[0] & 0x00000080u) != 0;
  4196. }
  4197. inline void packetl2c_freedom_match_end_notify::set_has_topscore() {
  4198. _has_bits_[0] |= 0x00000080u;
  4199. }
  4200. inline void packetl2c_freedom_match_end_notify::clear_has_topscore() {
  4201. _has_bits_[0] &= ~0x00000080u;
  4202. }
  4203. inline void packetl2c_freedom_match_end_notify::clear_topscore() {
  4204. topscore_ = 0;
  4205. clear_has_topscore();
  4206. }
  4207. inline ::google::protobuf::int32 packetl2c_freedom_match_end_notify::topscore() const {
  4208. return topscore_;
  4209. }
  4210. inline void packetl2c_freedom_match_end_notify::set_topscore(::google::protobuf::int32 value) {
  4211. set_has_topscore();
  4212. topscore_ = value;
  4213. }
  4214. // @@protoc_insertion_point(namespace_scope)
  4215. } // namespace fish_protocols
  4216. #ifndef SWIG
  4217. namespace google {
  4218. namespace protobuf {
  4219. } // namespace google
  4220. } // namespace protobuf
  4221. #endif // SWIG
  4222. // @@protoc_insertion_point(global_scope)
  4223. #endif // PROTOBUF_fish_5fmatch_2eproto__INCLUDED