123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887 |
- // Generated by the protocol buffer compiler. DO NOT EDIT!
- // source: fish_match.proto
- #ifndef PROTOBUF_fish_5fmatch_2eproto__INCLUDED
- #define PROTOBUF_fish_5fmatch_2eproto__INCLUDED
- #include <string>
- #include <google/protobuf/stubs/common.h>
- #if GOOGLE_PROTOBUF_VERSION < 2005000
- #error This file was generated by a newer version of protoc which is
- #error incompatible with your Protocol Buffer headers. Please update
- #error your headers.
- #endif
- #if 2005000 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION
- #error This file was generated by an older version of protoc which is
- #error incompatible with your Protocol Buffer headers. Please
- #error regenerate this file with a newer version of protoc.
- #endif
- #include <google/protobuf/generated_message_util.h>
- #include <google/protobuf/message.h>
- #include <google/protobuf/repeated_field.h>
- #include <google/protobuf/extension_set.h>
- #include <google/protobuf/unknown_field_set.h>
- #include "fish_def.pb.h"
- #include "msg_type_def.pb.h"
- // @@protoc_insertion_point(includes)
- namespace fish_protocols {
- // Internal implementation detail -- do not call these.
- void protobuf_AddDesc_fish_5fmatch_2eproto();
- void protobuf_AssignDesc_fish_5fmatch_2eproto();
- void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- class matchRankInfo;
- class questInfo;
- class killFishInfo;
- class packetc2l_get_arena_match_info;
- class packetl2c_get_arena_match_info_result;
- class packetc2l_syn_arena_match_bullet;
- class packetl2c_syn_arena_match_bullet_result;
- class packetc2l_get_arena_match_history_rank;
- class packetl2c_get_arena_match_history_rank_result;
- class packetc2l_join_arena_match;
- class packetl2c_join_arena_match_result;
- class packetl2c_notify_arena_match_add_bullet;
- class buffInfo;
- class packetl2c_arena_match_end_notify;
- class packetc2l_get_freedom_match_info;
- class packetl2c_get_freedom_match_info_result;
- class packetc2l_syn_freedom_match_bullet;
- class packetl2c_syn_freedom_match_bullet_result;
- class packetc2l_join_freedom_match;
- class packetl2c_join_freedom_match_result;
- class packetc2l_freedom_match_do_balance;
- class packetl2c_freedom_match_end_notify;
- // ===================================================================
- class matchRankInfo : public ::google::protobuf::Message {
- public:
- matchRankInfo();
- virtual ~matchRankInfo();
- matchRankInfo(const matchRankInfo& from);
- inline matchRankInfo& operator=(const matchRankInfo& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const matchRankInfo& default_instance();
- void Swap(matchRankInfo* other);
- // implements Message ----------------------------------------------
- matchRankInfo* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const matchRankInfo& from);
- void MergeFrom(const matchRankInfo& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional int32 playerId = 1;
- inline bool has_playerid() const;
- inline void clear_playerid();
- static const int kPlayerIdFieldNumber = 1;
- inline ::google::protobuf::int32 playerid() const;
- inline void set_playerid(::google::protobuf::int32 value);
- // optional string nickName = 2;
- inline bool has_nickname() const;
- inline void clear_nickname();
- static const int kNickNameFieldNumber = 2;
- inline const ::std::string& nickname() const;
- inline void set_nickname(const ::std::string& value);
- inline void set_nickname(const char* value);
- inline void set_nickname(const char* value, size_t size);
- inline ::std::string* mutable_nickname();
- inline ::std::string* release_nickname();
- inline void set_allocated_nickname(::std::string* nickname);
- // optional int32 vip = 3;
- inline bool has_vip() const;
- inline void clear_vip();
- static const int kVipFieldNumber = 3;
- inline ::google::protobuf::int32 vip() const;
- inline void set_vip(::google::protobuf::int32 value);
- // optional int32 headid = 4;
- inline bool has_headid() const;
- inline void clear_headid();
- static const int kHeadidFieldNumber = 4;
- inline ::google::protobuf::int32 headid() const;
- inline void set_headid(::google::protobuf::int32 value);
- // optional int32 frameid = 5;
- inline bool has_frameid() const;
- inline void clear_frameid();
- static const int kFrameidFieldNumber = 5;
- inline ::google::protobuf::int32 frameid() const;
- inline void set_frameid(::google::protobuf::int32 value);
- // optional int32 rank = 6;
- inline bool has_rank() const;
- inline void clear_rank();
- static const int kRankFieldNumber = 6;
- inline ::google::protobuf::int32 rank() const;
- inline void set_rank(::google::protobuf::int32 value);
- // optional int32 score = 7;
- inline bool has_score() const;
- inline void clear_score();
- static const int kScoreFieldNumber = 7;
- inline ::google::protobuf::int32 score() const;
- inline void set_score(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.matchRankInfo)
- private:
- inline void set_has_playerid();
- inline void clear_has_playerid();
- inline void set_has_nickname();
- inline void clear_has_nickname();
- inline void set_has_vip();
- inline void clear_has_vip();
- inline void set_has_headid();
- inline void clear_has_headid();
- inline void set_has_frameid();
- inline void clear_has_frameid();
- inline void set_has_rank();
- inline void clear_has_rank();
- inline void set_has_score();
- inline void clear_has_score();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- ::std::string* nickname_;
- ::google::protobuf::int32 playerid_;
- ::google::protobuf::int32 vip_;
- ::google::protobuf::int32 headid_;
- ::google::protobuf::int32 frameid_;
- ::google::protobuf::int32 rank_;
- ::google::protobuf::int32 score_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(7 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fmatch_2eproto();
- friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
- friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- void InitAsDefaultInstance();
- static matchRankInfo* default_instance_;
- };
- // -------------------------------------------------------------------
- class questInfo : public ::google::protobuf::Message {
- public:
- questInfo();
- virtual ~questInfo();
- questInfo(const questInfo& from);
- inline questInfo& operator=(const questInfo& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const questInfo& default_instance();
- void Swap(questInfo* other);
- // implements Message ----------------------------------------------
- questInfo* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const questInfo& from);
- void MergeFrom(const questInfo& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional int32 questId = 1;
- inline bool has_questid() const;
- inline void clear_questid();
- static const int kQuestIdFieldNumber = 1;
- inline ::google::protobuf::int32 questid() const;
- inline void set_questid(::google::protobuf::int32 value);
- // optional int32 count = 2;
- inline bool has_count() const;
- inline void clear_count();
- static const int kCountFieldNumber = 2;
- inline ::google::protobuf::int32 count() const;
- inline void set_count(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.questInfo)
- private:
- inline void set_has_questid();
- inline void clear_has_questid();
- inline void set_has_count();
- inline void clear_has_count();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- ::google::protobuf::int32 questid_;
- ::google::protobuf::int32 count_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fmatch_2eproto();
- friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
- friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- void InitAsDefaultInstance();
- static questInfo* default_instance_;
- };
- // -------------------------------------------------------------------
- class killFishInfo : public ::google::protobuf::Message {
- public:
- killFishInfo();
- virtual ~killFishInfo();
- killFishInfo(const killFishInfo& from);
- inline killFishInfo& operator=(const killFishInfo& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const killFishInfo& default_instance();
- void Swap(killFishInfo* other);
- // implements Message ----------------------------------------------
- killFishInfo* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const killFishInfo& from);
- void MergeFrom(const killFishInfo& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional int32 fishId = 1;
- inline bool has_fishid() const;
- inline void clear_fishid();
- static const int kFishIdFieldNumber = 1;
- inline ::google::protobuf::int32 fishid() const;
- inline void set_fishid(::google::protobuf::int32 value);
- // optional int32 count = 2;
- inline bool has_count() const;
- inline void clear_count();
- static const int kCountFieldNumber = 2;
- inline ::google::protobuf::int32 count() const;
- inline void set_count(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.killFishInfo)
- private:
- inline void set_has_fishid();
- inline void clear_has_fishid();
- inline void set_has_count();
- inline void clear_has_count();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- ::google::protobuf::int32 fishid_;
- ::google::protobuf::int32 count_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fmatch_2eproto();
- friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
- friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- void InitAsDefaultInstance();
- static killFishInfo* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetc2l_get_arena_match_info : public ::google::protobuf::Message {
- public:
- packetc2l_get_arena_match_info();
- virtual ~packetc2l_get_arena_match_info();
- packetc2l_get_arena_match_info(const packetc2l_get_arena_match_info& from);
- inline packetc2l_get_arena_match_info& operator=(const packetc2l_get_arena_match_info& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetc2l_get_arena_match_info& default_instance();
- void Swap(packetc2l_get_arena_match_info* other);
- // implements Message ----------------------------------------------
- packetc2l_get_arena_match_info* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetc2l_get_arena_match_info& from);
- void MergeFrom(const packetc2l_get_arena_match_info& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_get_arena_match_info];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_get_arena_match_info)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(1 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fmatch_2eproto();
- friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
- friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- void InitAsDefaultInstance();
- static packetc2l_get_arena_match_info* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetl2c_get_arena_match_info_result : public ::google::protobuf::Message {
- public:
- packetl2c_get_arena_match_info_result();
- virtual ~packetl2c_get_arena_match_info_result();
- packetl2c_get_arena_match_info_result(const packetl2c_get_arena_match_info_result& from);
- inline packetl2c_get_arena_match_info_result& operator=(const packetl2c_get_arena_match_info_result& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetl2c_get_arena_match_info_result& default_instance();
- void Swap(packetl2c_get_arena_match_info_result* other);
- // implements Message ----------------------------------------------
- packetl2c_get_arena_match_info_result* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetl2c_get_arena_match_info_result& from);
- void MergeFrom(const packetl2c_get_arena_match_info_result& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_get_arena_match_info_result];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // repeated .fish_protocols.matchRankInfo dailyRankList = 2;
- inline int dailyranklist_size() const;
- inline void clear_dailyranklist();
- static const int kDailyRankListFieldNumber = 2;
- inline const ::fish_protocols::matchRankInfo& dailyranklist(int index) const;
- inline ::fish_protocols::matchRankInfo* mutable_dailyranklist(int index);
- inline ::fish_protocols::matchRankInfo* add_dailyranklist();
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >&
- dailyranklist() const;
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >*
- mutable_dailyranklist();
- // repeated .fish_protocols.matchRankInfo weeklyRankList = 3;
- inline int weeklyranklist_size() const;
- inline void clear_weeklyranklist();
- static const int kWeeklyRankListFieldNumber = 3;
- inline const ::fish_protocols::matchRankInfo& weeklyranklist(int index) const;
- inline ::fish_protocols::matchRankInfo* mutable_weeklyranklist(int index);
- inline ::fish_protocols::matchRankInfo* add_weeklyranklist();
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >&
- weeklyranklist() const;
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >*
- mutable_weeklyranklist();
- // repeated .fish_protocols.questInfo questList = 4;
- inline int questlist_size() const;
- inline void clear_questlist();
- static const int kQuestListFieldNumber = 4;
- inline const ::fish_protocols::questInfo& questlist(int index) const;
- inline ::fish_protocols::questInfo* mutable_questlist(int index);
- inline ::fish_protocols::questInfo* add_questlist();
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::questInfo >&
- questlist() const;
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::questInfo >*
- mutable_questlist();
- // repeated .fish_protocols.killFishInfo killList = 5;
- inline int killlist_size() const;
- inline void clear_killlist();
- static const int kKillListFieldNumber = 5;
- inline const ::fish_protocols::killFishInfo& killlist(int index) const;
- inline ::fish_protocols::killFishInfo* mutable_killlist(int index);
- inline ::fish_protocols::killFishInfo* add_killlist();
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::killFishInfo >&
- killlist() const;
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::killFishInfo >*
- mutable_killlist();
- // optional int32 bulletCount = 6;
- inline bool has_bulletcount() const;
- inline void clear_bulletcount();
- static const int kBulletCountFieldNumber = 6;
- inline ::google::protobuf::int32 bulletcount() const;
- inline void set_bulletcount(::google::protobuf::int32 value);
- // optional int32 curScore = 7;
- inline bool has_curscore() const;
- inline void clear_curscore();
- static const int kCurScoreFieldNumber = 7;
- inline ::google::protobuf::int32 curscore() const;
- inline void set_curscore(::google::protobuf::int32 value);
- // optional int32 joinCount = 8;
- inline bool has_joincount() const;
- inline void clear_joincount();
- static const int kJoinCountFieldNumber = 8;
- inline ::google::protobuf::int32 joincount() const;
- inline void set_joincount(::google::protobuf::int32 value);
- // optional int32 questGroup = 9;
- inline bool has_questgroup() const;
- inline void clear_questgroup();
- static const int kQuestGroupFieldNumber = 9;
- inline ::google::protobuf::int32 questgroup() const;
- inline void set_questgroup(::google::protobuf::int32 value);
- // optional .fish_protocols.matchRankInfo selfDayRank = 10;
- inline bool has_selfdayrank() const;
- inline void clear_selfdayrank();
- static const int kSelfDayRankFieldNumber = 10;
- inline const ::fish_protocols::matchRankInfo& selfdayrank() const;
- inline ::fish_protocols::matchRankInfo* mutable_selfdayrank();
- inline ::fish_protocols::matchRankInfo* release_selfdayrank();
- inline void set_allocated_selfdayrank(::fish_protocols::matchRankInfo* selfdayrank);
- // optional .fish_protocols.matchRankInfo selfWeekRank = 11;
- inline bool has_selfweekrank() const;
- inline void clear_selfweekrank();
- static const int kSelfWeekRankFieldNumber = 11;
- inline const ::fish_protocols::matchRankInfo& selfweekrank() const;
- inline ::fish_protocols::matchRankInfo* mutable_selfweekrank();
- inline ::fish_protocols::matchRankInfo* release_selfweekrank();
- inline void set_allocated_selfweekrank(::fish_protocols::matchRankInfo* selfweekrank);
- // optional int32 startTime = 12;
- inline bool has_starttime() const;
- inline void clear_starttime();
- static const int kStartTimeFieldNumber = 12;
- inline ::google::protobuf::int32 starttime() const;
- inline void set_starttime(::google::protobuf::int32 value);
- // optional int32 endTime = 13;
- inline bool has_endtime() const;
- inline void clear_endtime();
- static const int kEndTimeFieldNumber = 13;
- inline ::google::protobuf::int32 endtime() const;
- inline void set_endtime(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_get_arena_match_info_result)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_bulletcount();
- inline void clear_has_bulletcount();
- inline void set_has_curscore();
- inline void clear_has_curscore();
- inline void set_has_joincount();
- inline void clear_has_joincount();
- inline void set_has_questgroup();
- inline void clear_has_questgroup();
- inline void set_has_selfdayrank();
- inline void clear_has_selfdayrank();
- inline void set_has_selfweekrank();
- inline void clear_has_selfweekrank();
- inline void set_has_starttime();
- inline void clear_has_starttime();
- inline void set_has_endtime();
- inline void clear_has_endtime();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo > dailyranklist_;
- ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo > weeklyranklist_;
- int packet_id_;
- ::google::protobuf::int32 bulletcount_;
- ::google::protobuf::RepeatedPtrField< ::fish_protocols::questInfo > questlist_;
- ::google::protobuf::RepeatedPtrField< ::fish_protocols::killFishInfo > killlist_;
- ::google::protobuf::int32 curscore_;
- ::google::protobuf::int32 joincount_;
- ::fish_protocols::matchRankInfo* selfdayrank_;
- ::google::protobuf::int32 questgroup_;
- ::google::protobuf::int32 starttime_;
- ::fish_protocols::matchRankInfo* selfweekrank_;
- ::google::protobuf::int32 endtime_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(13 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fmatch_2eproto();
- friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
- friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- void InitAsDefaultInstance();
- static packetl2c_get_arena_match_info_result* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetc2l_syn_arena_match_bullet : public ::google::protobuf::Message {
- public:
- packetc2l_syn_arena_match_bullet();
- virtual ~packetc2l_syn_arena_match_bullet();
- packetc2l_syn_arena_match_bullet(const packetc2l_syn_arena_match_bullet& from);
- inline packetc2l_syn_arena_match_bullet& operator=(const packetc2l_syn_arena_match_bullet& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetc2l_syn_arena_match_bullet& default_instance();
- void Swap(packetc2l_syn_arena_match_bullet* other);
- // implements Message ----------------------------------------------
- packetc2l_syn_arena_match_bullet* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetc2l_syn_arena_match_bullet& from);
- void MergeFrom(const packetc2l_syn_arena_match_bullet& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_syn_arena_match_bullet];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_syn_arena_match_bullet)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(1 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fmatch_2eproto();
- friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
- friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- void InitAsDefaultInstance();
- static packetc2l_syn_arena_match_bullet* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetl2c_syn_arena_match_bullet_result : public ::google::protobuf::Message {
- public:
- packetl2c_syn_arena_match_bullet_result();
- virtual ~packetl2c_syn_arena_match_bullet_result();
- packetl2c_syn_arena_match_bullet_result(const packetl2c_syn_arena_match_bullet_result& from);
- inline packetl2c_syn_arena_match_bullet_result& operator=(const packetl2c_syn_arena_match_bullet_result& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetl2c_syn_arena_match_bullet_result& default_instance();
- void Swap(packetl2c_syn_arena_match_bullet_result* other);
- // implements Message ----------------------------------------------
- packetl2c_syn_arena_match_bullet_result* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetl2c_syn_arena_match_bullet_result& from);
- void MergeFrom(const packetl2c_syn_arena_match_bullet_result& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_syn_arena_match_bullet_result];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 bulletCount = 2;
- inline bool has_bulletcount() const;
- inline void clear_bulletcount();
- static const int kBulletCountFieldNumber = 2;
- inline ::google::protobuf::int32 bulletcount() const;
- inline void set_bulletcount(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_syn_arena_match_bullet_result)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_bulletcount();
- inline void clear_has_bulletcount();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 bulletcount_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fmatch_2eproto();
- friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
- friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- void InitAsDefaultInstance();
- static packetl2c_syn_arena_match_bullet_result* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetc2l_get_arena_match_history_rank : public ::google::protobuf::Message {
- public:
- packetc2l_get_arena_match_history_rank();
- virtual ~packetc2l_get_arena_match_history_rank();
- packetc2l_get_arena_match_history_rank(const packetc2l_get_arena_match_history_rank& from);
- inline packetc2l_get_arena_match_history_rank& operator=(const packetc2l_get_arena_match_history_rank& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetc2l_get_arena_match_history_rank& default_instance();
- void Swap(packetc2l_get_arena_match_history_rank* other);
- // implements Message ----------------------------------------------
- packetc2l_get_arena_match_history_rank* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetc2l_get_arena_match_history_rank& from);
- void MergeFrom(const packetc2l_get_arena_match_history_rank& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_get_arena_match_history_rank];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 type = 2;
- inline bool has_type() const;
- inline void clear_type();
- static const int kTypeFieldNumber = 2;
- inline ::google::protobuf::int32 type() const;
- inline void set_type(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_get_arena_match_history_rank)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_type();
- inline void clear_has_type();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 type_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fmatch_2eproto();
- friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
- friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- void InitAsDefaultInstance();
- static packetc2l_get_arena_match_history_rank* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetl2c_get_arena_match_history_rank_result : public ::google::protobuf::Message {
- public:
- packetl2c_get_arena_match_history_rank_result();
- virtual ~packetl2c_get_arena_match_history_rank_result();
- packetl2c_get_arena_match_history_rank_result(const packetl2c_get_arena_match_history_rank_result& from);
- inline packetl2c_get_arena_match_history_rank_result& operator=(const packetl2c_get_arena_match_history_rank_result& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetl2c_get_arena_match_history_rank_result& default_instance();
- void Swap(packetl2c_get_arena_match_history_rank_result* other);
- // implements Message ----------------------------------------------
- packetl2c_get_arena_match_history_rank_result* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetl2c_get_arena_match_history_rank_result& from);
- void MergeFrom(const packetl2c_get_arena_match_history_rank_result& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_get_arena_match_history_rank_result];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 type = 2;
- inline bool has_type() const;
- inline void clear_type();
- static const int kTypeFieldNumber = 2;
- inline ::google::protobuf::int32 type() const;
- inline void set_type(::google::protobuf::int32 value);
- // repeated .fish_protocols.matchRankInfo rankList = 3;
- inline int ranklist_size() const;
- inline void clear_ranklist();
- static const int kRankListFieldNumber = 3;
- inline const ::fish_protocols::matchRankInfo& ranklist(int index) const;
- inline ::fish_protocols::matchRankInfo* mutable_ranklist(int index);
- inline ::fish_protocols::matchRankInfo* add_ranklist();
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >&
- ranklist() const;
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >*
- mutable_ranklist();
- // optional .fish_protocols.matchRankInfo selfRank = 4;
- inline bool has_selfrank() const;
- inline void clear_selfrank();
- static const int kSelfRankFieldNumber = 4;
- inline const ::fish_protocols::matchRankInfo& selfrank() const;
- inline ::fish_protocols::matchRankInfo* mutable_selfrank();
- inline ::fish_protocols::matchRankInfo* release_selfrank();
- inline void set_allocated_selfrank(::fish_protocols::matchRankInfo* selfrank);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_get_arena_match_history_rank_result)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_type();
- inline void clear_has_type();
- inline void set_has_selfrank();
- inline void clear_has_selfrank();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 type_;
- ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo > ranklist_;
- ::fish_protocols::matchRankInfo* selfrank_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(4 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fmatch_2eproto();
- friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
- friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- void InitAsDefaultInstance();
- static packetl2c_get_arena_match_history_rank_result* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetc2l_join_arena_match : public ::google::protobuf::Message {
- public:
- packetc2l_join_arena_match();
- virtual ~packetc2l_join_arena_match();
- packetc2l_join_arena_match(const packetc2l_join_arena_match& from);
- inline packetc2l_join_arena_match& operator=(const packetc2l_join_arena_match& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetc2l_join_arena_match& default_instance();
- void Swap(packetc2l_join_arena_match* other);
- // implements Message ----------------------------------------------
- packetc2l_join_arena_match* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetc2l_join_arena_match& from);
- void MergeFrom(const packetc2l_join_arena_match& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_join_arena_match];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_join_arena_match)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(1 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fmatch_2eproto();
- friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
- friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- void InitAsDefaultInstance();
- static packetc2l_join_arena_match* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetl2c_join_arena_match_result : public ::google::protobuf::Message {
- public:
- packetl2c_join_arena_match_result();
- virtual ~packetl2c_join_arena_match_result();
- packetl2c_join_arena_match_result(const packetl2c_join_arena_match_result& from);
- inline packetl2c_join_arena_match_result& operator=(const packetl2c_join_arena_match_result& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetl2c_join_arena_match_result& default_instance();
- void Swap(packetl2c_join_arena_match_result* other);
- // implements Message ----------------------------------------------
- packetl2c_join_arena_match_result* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetl2c_join_arena_match_result& from);
- void MergeFrom(const packetl2c_join_arena_match_result& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_join_arena_match_result];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 result = 2;
- inline bool has_result() const;
- inline void clear_result();
- static const int kResultFieldNumber = 2;
- inline ::google::protobuf::int32 result() const;
- inline void set_result(::google::protobuf::int32 value);
- // optional int32 playerId = 3;
- inline bool has_playerid() const;
- inline void clear_playerid();
- static const int kPlayerIdFieldNumber = 3;
- inline ::google::protobuf::int32 playerid() const;
- inline void set_playerid(::google::protobuf::int32 value);
- // optional int32 bulletCount = 4;
- inline bool has_bulletcount() const;
- inline void clear_bulletcount();
- static const int kBulletCountFieldNumber = 4;
- inline ::google::protobuf::int32 bulletcount() const;
- inline void set_bulletcount(::google::protobuf::int32 value);
- // optional int32 curScore = 5;
- inline bool has_curscore() const;
- inline void clear_curscore();
- static const int kCurScoreFieldNumber = 5;
- inline ::google::protobuf::int32 curscore() const;
- inline void set_curscore(::google::protobuf::int32 value);
- // optional int32 joinCount = 6;
- inline bool has_joincount() const;
- inline void clear_joincount();
- static const int kJoinCountFieldNumber = 6;
- inline ::google::protobuf::int32 joincount() const;
- inline void set_joincount(::google::protobuf::int32 value);
- // optional int32 questGroup = 7;
- inline bool has_questgroup() const;
- inline void clear_questgroup();
- static const int kQuestGroupFieldNumber = 7;
- inline ::google::protobuf::int32 questgroup() const;
- inline void set_questgroup(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_join_arena_match_result)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_result();
- inline void clear_has_result();
- inline void set_has_playerid();
- inline void clear_has_playerid();
- inline void set_has_bulletcount();
- inline void clear_has_bulletcount();
- inline void set_has_curscore();
- inline void clear_has_curscore();
- inline void set_has_joincount();
- inline void clear_has_joincount();
- inline void set_has_questgroup();
- inline void clear_has_questgroup();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 result_;
- ::google::protobuf::int32 playerid_;
- ::google::protobuf::int32 bulletcount_;
- ::google::protobuf::int32 curscore_;
- ::google::protobuf::int32 joincount_;
- ::google::protobuf::int32 questgroup_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(7 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fmatch_2eproto();
- friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
- friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- void InitAsDefaultInstance();
- static packetl2c_join_arena_match_result* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetl2c_notify_arena_match_add_bullet : public ::google::protobuf::Message {
- public:
- packetl2c_notify_arena_match_add_bullet();
- virtual ~packetl2c_notify_arena_match_add_bullet();
- packetl2c_notify_arena_match_add_bullet(const packetl2c_notify_arena_match_add_bullet& from);
- inline packetl2c_notify_arena_match_add_bullet& operator=(const packetl2c_notify_arena_match_add_bullet& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetl2c_notify_arena_match_add_bullet& default_instance();
- void Swap(packetl2c_notify_arena_match_add_bullet* other);
- // implements Message ----------------------------------------------
- packetl2c_notify_arena_match_add_bullet* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetl2c_notify_arena_match_add_bullet& from);
- void MergeFrom(const packetl2c_notify_arena_match_add_bullet& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_notify_arena_match_add_bullet];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 playerId = 2;
- inline bool has_playerid() const;
- inline void clear_playerid();
- static const int kPlayerIdFieldNumber = 2;
- inline ::google::protobuf::int32 playerid() const;
- inline void set_playerid(::google::protobuf::int32 value);
- // optional int32 addCount = 3;
- inline bool has_addcount() const;
- inline void clear_addcount();
- static const int kAddCountFieldNumber = 3;
- inline ::google::protobuf::int32 addcount() const;
- inline void set_addcount(::google::protobuf::int32 value);
- // optional int32 curCount = 4;
- inline bool has_curcount() const;
- inline void clear_curcount();
- static const int kCurCountFieldNumber = 4;
- inline ::google::protobuf::int32 curcount() const;
- inline void set_curcount(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_notify_arena_match_add_bullet)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_playerid();
- inline void clear_has_playerid();
- inline void set_has_addcount();
- inline void clear_has_addcount();
- inline void set_has_curcount();
- inline void clear_has_curcount();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 playerid_;
- ::google::protobuf::int32 addcount_;
- ::google::protobuf::int32 curcount_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(4 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fmatch_2eproto();
- friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
- friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- void InitAsDefaultInstance();
- static packetl2c_notify_arena_match_add_bullet* default_instance_;
- };
- // -------------------------------------------------------------------
- class buffInfo : public ::google::protobuf::Message {
- public:
- buffInfo();
- virtual ~buffInfo();
- buffInfo(const buffInfo& from);
- inline buffInfo& operator=(const buffInfo& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const buffInfo& default_instance();
- void Swap(buffInfo* other);
- // implements Message ----------------------------------------------
- buffInfo* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const buffInfo& from);
- void MergeFrom(const buffInfo& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional int32 buffId = 1;
- inline bool has_buffid() const;
- inline void clear_buffid();
- static const int kBuffIdFieldNumber = 1;
- inline ::google::protobuf::int32 buffid() const;
- inline void set_buffid(::google::protobuf::int32 value);
- // optional int32 buffRate = 2;
- inline bool has_buffrate() const;
- inline void clear_buffrate();
- static const int kBuffRateFieldNumber = 2;
- inline ::google::protobuf::int32 buffrate() const;
- inline void set_buffrate(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.buffInfo)
- private:
- inline void set_has_buffid();
- inline void clear_has_buffid();
- inline void set_has_buffrate();
- inline void clear_has_buffrate();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- ::google::protobuf::int32 buffid_;
- ::google::protobuf::int32 buffrate_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fmatch_2eproto();
- friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
- friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- void InitAsDefaultInstance();
- static buffInfo* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetl2c_arena_match_end_notify : public ::google::protobuf::Message {
- public:
- packetl2c_arena_match_end_notify();
- virtual ~packetl2c_arena_match_end_notify();
- packetl2c_arena_match_end_notify(const packetl2c_arena_match_end_notify& from);
- inline packetl2c_arena_match_end_notify& operator=(const packetl2c_arena_match_end_notify& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetl2c_arena_match_end_notify& default_instance();
- void Swap(packetl2c_arena_match_end_notify* other);
- // implements Message ----------------------------------------------
- packetl2c_arena_match_end_notify* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetl2c_arena_match_end_notify& from);
- void MergeFrom(const packetl2c_arena_match_end_notify& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_arena_match_end_notify];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 reason = 2;
- inline bool has_reason() const;
- inline void clear_reason();
- static const int kReasonFieldNumber = 2;
- inline ::google::protobuf::int32 reason() const;
- inline void set_reason(::google::protobuf::int32 value);
- // repeated .fish_protocols.buffInfo buffList = 3;
- inline int bufflist_size() const;
- inline void clear_bufflist();
- static const int kBuffListFieldNumber = 3;
- inline const ::fish_protocols::buffInfo& bufflist(int index) const;
- inline ::fish_protocols::buffInfo* mutable_bufflist(int index);
- inline ::fish_protocols::buffInfo* add_bufflist();
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::buffInfo >&
- bufflist() const;
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::buffInfo >*
- mutable_bufflist();
- // optional int32 rank = 4;
- inline bool has_rank() const;
- inline void clear_rank();
- static const int kRankFieldNumber = 4;
- inline ::google::protobuf::int32 rank() const;
- inline void set_rank(::google::protobuf::int32 value);
- // optional int32 curBaseScore = 5;
- inline bool has_curbasescore() const;
- inline void clear_curbasescore();
- static const int kCurBaseScoreFieldNumber = 5;
- inline ::google::protobuf::int32 curbasescore() const;
- inline void set_curbasescore(::google::protobuf::int32 value);
- // optional int32 curAddScore = 6;
- inline bool has_curaddscore() const;
- inline void clear_curaddscore();
- static const int kCurAddScoreFieldNumber = 6;
- inline ::google::protobuf::int32 curaddscore() const;
- inline void set_curaddscore(::google::protobuf::int32 value);
- // optional int32 topScore = 7;
- inline bool has_topscore() const;
- inline void clear_topscore();
- static const int kTopScoreFieldNumber = 7;
- inline ::google::protobuf::int32 topscore() const;
- inline void set_topscore(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_arena_match_end_notify)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_reason();
- inline void clear_has_reason();
- inline void set_has_rank();
- inline void clear_has_rank();
- inline void set_has_curbasescore();
- inline void clear_has_curbasescore();
- inline void set_has_curaddscore();
- inline void clear_has_curaddscore();
- inline void set_has_topscore();
- inline void clear_has_topscore();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 reason_;
- ::google::protobuf::RepeatedPtrField< ::fish_protocols::buffInfo > bufflist_;
- ::google::protobuf::int32 rank_;
- ::google::protobuf::int32 curbasescore_;
- ::google::protobuf::int32 curaddscore_;
- ::google::protobuf::int32 topscore_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(7 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fmatch_2eproto();
- friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
- friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- void InitAsDefaultInstance();
- static packetl2c_arena_match_end_notify* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetc2l_get_freedom_match_info : public ::google::protobuf::Message {
- public:
- packetc2l_get_freedom_match_info();
- virtual ~packetc2l_get_freedom_match_info();
- packetc2l_get_freedom_match_info(const packetc2l_get_freedom_match_info& from);
- inline packetc2l_get_freedom_match_info& operator=(const packetc2l_get_freedom_match_info& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetc2l_get_freedom_match_info& default_instance();
- void Swap(packetc2l_get_freedom_match_info* other);
- // implements Message ----------------------------------------------
- packetc2l_get_freedom_match_info* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetc2l_get_freedom_match_info& from);
- void MergeFrom(const packetc2l_get_freedom_match_info& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_get_freedom_match_info];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 roomId = 2;
- inline bool has_roomid() const;
- inline void clear_roomid();
- static const int kRoomIdFieldNumber = 2;
- inline ::google::protobuf::int32 roomid() const;
- inline void set_roomid(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_get_freedom_match_info)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_roomid();
- inline void clear_has_roomid();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 roomid_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fmatch_2eproto();
- friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
- friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- void InitAsDefaultInstance();
- static packetc2l_get_freedom_match_info* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetl2c_get_freedom_match_info_result : public ::google::protobuf::Message {
- public:
- packetl2c_get_freedom_match_info_result();
- virtual ~packetl2c_get_freedom_match_info_result();
- packetl2c_get_freedom_match_info_result(const packetl2c_get_freedom_match_info_result& from);
- inline packetl2c_get_freedom_match_info_result& operator=(const packetl2c_get_freedom_match_info_result& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetl2c_get_freedom_match_info_result& default_instance();
- void Swap(packetl2c_get_freedom_match_info_result* other);
- // implements Message ----------------------------------------------
- packetl2c_get_freedom_match_info_result* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetl2c_get_freedom_match_info_result& from);
- void MergeFrom(const packetl2c_get_freedom_match_info_result& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_get_freedom_match_info_result];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 roomId = 2;
- inline bool has_roomid() const;
- inline void clear_roomid();
- static const int kRoomIdFieldNumber = 2;
- inline ::google::protobuf::int32 roomid() const;
- inline void set_roomid(::google::protobuf::int32 value);
- // repeated .fish_protocols.matchRankInfo dailyRankList = 3;
- inline int dailyranklist_size() const;
- inline void clear_dailyranklist();
- static const int kDailyRankListFieldNumber = 3;
- inline const ::fish_protocols::matchRankInfo& dailyranklist(int index) const;
- inline ::fish_protocols::matchRankInfo* mutable_dailyranklist(int index);
- inline ::fish_protocols::matchRankInfo* add_dailyranklist();
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >&
- dailyranklist() const;
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >*
- mutable_dailyranklist();
- // optional int32 bulletCount = 4;
- inline bool has_bulletcount() const;
- inline void clear_bulletcount();
- static const int kBulletCountFieldNumber = 4;
- inline ::google::protobuf::int32 bulletcount() const;
- inline void set_bulletcount(::google::protobuf::int32 value);
- // optional int32 curScore = 5;
- inline bool has_curscore() const;
- inline void clear_curscore();
- static const int kCurScoreFieldNumber = 5;
- inline ::google::protobuf::int32 curscore() const;
- inline void set_curscore(::google::protobuf::int32 value);
- // optional int32 joinCount = 6;
- inline bool has_joincount() const;
- inline void clear_joincount();
- static const int kJoinCountFieldNumber = 6;
- inline ::google::protobuf::int32 joincount() const;
- inline void set_joincount(::google::protobuf::int32 value);
- // optional int32 leftSecond = 7;
- inline bool has_leftsecond() const;
- inline void clear_leftsecond();
- static const int kLeftSecondFieldNumber = 7;
- inline ::google::protobuf::int32 leftsecond() const;
- inline void set_leftsecond(::google::protobuf::int32 value);
- // optional .fish_protocols.matchRankInfo selfDayRank = 8;
- inline bool has_selfdayrank() const;
- inline void clear_selfdayrank();
- static const int kSelfDayRankFieldNumber = 8;
- inline const ::fish_protocols::matchRankInfo& selfdayrank() const;
- inline ::fish_protocols::matchRankInfo* mutable_selfdayrank();
- inline ::fish_protocols::matchRankInfo* release_selfdayrank();
- inline void set_allocated_selfdayrank(::fish_protocols::matchRankInfo* selfdayrank);
- // optional int32 startTime = 9;
- inline bool has_starttime() const;
- inline void clear_starttime();
- static const int kStartTimeFieldNumber = 9;
- inline ::google::protobuf::int32 starttime() const;
- inline void set_starttime(::google::protobuf::int32 value);
- // optional int32 endTime = 10;
- inline bool has_endtime() const;
- inline void clear_endtime();
- static const int kEndTimeFieldNumber = 10;
- inline ::google::protobuf::int32 endtime() const;
- inline void set_endtime(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_get_freedom_match_info_result)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_roomid();
- inline void clear_has_roomid();
- inline void set_has_bulletcount();
- inline void clear_has_bulletcount();
- inline void set_has_curscore();
- inline void clear_has_curscore();
- inline void set_has_joincount();
- inline void clear_has_joincount();
- inline void set_has_leftsecond();
- inline void clear_has_leftsecond();
- inline void set_has_selfdayrank();
- inline void clear_has_selfdayrank();
- inline void set_has_starttime();
- inline void clear_has_starttime();
- inline void set_has_endtime();
- inline void clear_has_endtime();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 roomid_;
- ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo > dailyranklist_;
- ::google::protobuf::int32 bulletcount_;
- ::google::protobuf::int32 curscore_;
- ::google::protobuf::int32 joincount_;
- ::google::protobuf::int32 leftsecond_;
- ::fish_protocols::matchRankInfo* selfdayrank_;
- ::google::protobuf::int32 starttime_;
- ::google::protobuf::int32 endtime_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(10 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fmatch_2eproto();
- friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
- friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- void InitAsDefaultInstance();
- static packetl2c_get_freedom_match_info_result* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetc2l_syn_freedom_match_bullet : public ::google::protobuf::Message {
- public:
- packetc2l_syn_freedom_match_bullet();
- virtual ~packetc2l_syn_freedom_match_bullet();
- packetc2l_syn_freedom_match_bullet(const packetc2l_syn_freedom_match_bullet& from);
- inline packetc2l_syn_freedom_match_bullet& operator=(const packetc2l_syn_freedom_match_bullet& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetc2l_syn_freedom_match_bullet& default_instance();
- void Swap(packetc2l_syn_freedom_match_bullet* other);
- // implements Message ----------------------------------------------
- packetc2l_syn_freedom_match_bullet* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetc2l_syn_freedom_match_bullet& from);
- void MergeFrom(const packetc2l_syn_freedom_match_bullet& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_syn_freedom_match_bullet];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 roomId = 2;
- inline bool has_roomid() const;
- inline void clear_roomid();
- static const int kRoomIdFieldNumber = 2;
- inline ::google::protobuf::int32 roomid() const;
- inline void set_roomid(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_syn_freedom_match_bullet)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_roomid();
- inline void clear_has_roomid();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 roomid_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fmatch_2eproto();
- friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
- friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- void InitAsDefaultInstance();
- static packetc2l_syn_freedom_match_bullet* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetl2c_syn_freedom_match_bullet_result : public ::google::protobuf::Message {
- public:
- packetl2c_syn_freedom_match_bullet_result();
- virtual ~packetl2c_syn_freedom_match_bullet_result();
- packetl2c_syn_freedom_match_bullet_result(const packetl2c_syn_freedom_match_bullet_result& from);
- inline packetl2c_syn_freedom_match_bullet_result& operator=(const packetl2c_syn_freedom_match_bullet_result& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetl2c_syn_freedom_match_bullet_result& default_instance();
- void Swap(packetl2c_syn_freedom_match_bullet_result* other);
- // implements Message ----------------------------------------------
- packetl2c_syn_freedom_match_bullet_result* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetl2c_syn_freedom_match_bullet_result& from);
- void MergeFrom(const packetl2c_syn_freedom_match_bullet_result& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_syn_freedom_match_bullet_result];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 roomId = 2;
- inline bool has_roomid() const;
- inline void clear_roomid();
- static const int kRoomIdFieldNumber = 2;
- inline ::google::protobuf::int32 roomid() const;
- inline void set_roomid(::google::protobuf::int32 value);
- // optional int32 bulletCount = 3;
- inline bool has_bulletcount() const;
- inline void clear_bulletcount();
- static const int kBulletCountFieldNumber = 3;
- inline ::google::protobuf::int32 bulletcount() const;
- inline void set_bulletcount(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_syn_freedom_match_bullet_result)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_roomid();
- inline void clear_has_roomid();
- inline void set_has_bulletcount();
- inline void clear_has_bulletcount();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 roomid_;
- ::google::protobuf::int32 bulletcount_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(3 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fmatch_2eproto();
- friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
- friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- void InitAsDefaultInstance();
- static packetl2c_syn_freedom_match_bullet_result* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetc2l_join_freedom_match : public ::google::protobuf::Message {
- public:
- packetc2l_join_freedom_match();
- virtual ~packetc2l_join_freedom_match();
- packetc2l_join_freedom_match(const packetc2l_join_freedom_match& from);
- inline packetc2l_join_freedom_match& operator=(const packetc2l_join_freedom_match& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetc2l_join_freedom_match& default_instance();
- void Swap(packetc2l_join_freedom_match* other);
- // implements Message ----------------------------------------------
- packetc2l_join_freedom_match* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetc2l_join_freedom_match& from);
- void MergeFrom(const packetc2l_join_freedom_match& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_join_freedom_match];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 roomId = 2;
- inline bool has_roomid() const;
- inline void clear_roomid();
- static const int kRoomIdFieldNumber = 2;
- inline ::google::protobuf::int32 roomid() const;
- inline void set_roomid(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_join_freedom_match)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_roomid();
- inline void clear_has_roomid();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 roomid_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fmatch_2eproto();
- friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
- friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- void InitAsDefaultInstance();
- static packetc2l_join_freedom_match* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetl2c_join_freedom_match_result : public ::google::protobuf::Message {
- public:
- packetl2c_join_freedom_match_result();
- virtual ~packetl2c_join_freedom_match_result();
- packetl2c_join_freedom_match_result(const packetl2c_join_freedom_match_result& from);
- inline packetl2c_join_freedom_match_result& operator=(const packetl2c_join_freedom_match_result& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetl2c_join_freedom_match_result& default_instance();
- void Swap(packetl2c_join_freedom_match_result* other);
- // implements Message ----------------------------------------------
- packetl2c_join_freedom_match_result* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetl2c_join_freedom_match_result& from);
- void MergeFrom(const packetl2c_join_freedom_match_result& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_join_freedom_match_result];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 result = 2;
- inline bool has_result() const;
- inline void clear_result();
- static const int kResultFieldNumber = 2;
- inline ::google::protobuf::int32 result() const;
- inline void set_result(::google::protobuf::int32 value);
- // optional int32 roomId = 3;
- inline bool has_roomid() const;
- inline void clear_roomid();
- static const int kRoomIdFieldNumber = 3;
- inline ::google::protobuf::int32 roomid() const;
- inline void set_roomid(::google::protobuf::int32 value);
- // optional int32 playerId = 4;
- inline bool has_playerid() const;
- inline void clear_playerid();
- static const int kPlayerIdFieldNumber = 4;
- inline ::google::protobuf::int32 playerid() const;
- inline void set_playerid(::google::protobuf::int32 value);
- // optional int32 bulletCount = 5;
- inline bool has_bulletcount() const;
- inline void clear_bulletcount();
- static const int kBulletCountFieldNumber = 5;
- inline ::google::protobuf::int32 bulletcount() const;
- inline void set_bulletcount(::google::protobuf::int32 value);
- // optional int32 curScore = 6;
- inline bool has_curscore() const;
- inline void clear_curscore();
- static const int kCurScoreFieldNumber = 6;
- inline ::google::protobuf::int32 curscore() const;
- inline void set_curscore(::google::protobuf::int32 value);
- // optional int32 joinCount = 7;
- inline bool has_joincount() const;
- inline void clear_joincount();
- static const int kJoinCountFieldNumber = 7;
- inline ::google::protobuf::int32 joincount() const;
- inline void set_joincount(::google::protobuf::int32 value);
- // optional int32 leftSecond = 8;
- inline bool has_leftsecond() const;
- inline void clear_leftsecond();
- static const int kLeftSecondFieldNumber = 8;
- inline ::google::protobuf::int32 leftsecond() const;
- inline void set_leftsecond(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_join_freedom_match_result)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_result();
- inline void clear_has_result();
- inline void set_has_roomid();
- inline void clear_has_roomid();
- inline void set_has_playerid();
- inline void clear_has_playerid();
- inline void set_has_bulletcount();
- inline void clear_has_bulletcount();
- inline void set_has_curscore();
- inline void clear_has_curscore();
- inline void set_has_joincount();
- inline void clear_has_joincount();
- inline void set_has_leftsecond();
- inline void clear_has_leftsecond();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 result_;
- ::google::protobuf::int32 roomid_;
- ::google::protobuf::int32 playerid_;
- ::google::protobuf::int32 bulletcount_;
- ::google::protobuf::int32 curscore_;
- ::google::protobuf::int32 joincount_;
- ::google::protobuf::int32 leftsecond_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(8 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fmatch_2eproto();
- friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
- friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- void InitAsDefaultInstance();
- static packetl2c_join_freedom_match_result* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetc2l_freedom_match_do_balance : public ::google::protobuf::Message {
- public:
- packetc2l_freedom_match_do_balance();
- virtual ~packetc2l_freedom_match_do_balance();
- packetc2l_freedom_match_do_balance(const packetc2l_freedom_match_do_balance& from);
- inline packetc2l_freedom_match_do_balance& operator=(const packetc2l_freedom_match_do_balance& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetc2l_freedom_match_do_balance& default_instance();
- void Swap(packetc2l_freedom_match_do_balance* other);
- // implements Message ----------------------------------------------
- packetc2l_freedom_match_do_balance* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetc2l_freedom_match_do_balance& from);
- void MergeFrom(const packetc2l_freedom_match_do_balance& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_freedom_match_do_balance];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 roomId = 2;
- inline bool has_roomid() const;
- inline void clear_roomid();
- static const int kRoomIdFieldNumber = 2;
- inline ::google::protobuf::int32 roomid() const;
- inline void set_roomid(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_freedom_match_do_balance)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_roomid();
- inline void clear_has_roomid();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 roomid_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fmatch_2eproto();
- friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
- friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- void InitAsDefaultInstance();
- static packetc2l_freedom_match_do_balance* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetl2c_freedom_match_end_notify : public ::google::protobuf::Message {
- public:
- packetl2c_freedom_match_end_notify();
- virtual ~packetl2c_freedom_match_end_notify();
- packetl2c_freedom_match_end_notify(const packetl2c_freedom_match_end_notify& from);
- inline packetl2c_freedom_match_end_notify& operator=(const packetl2c_freedom_match_end_notify& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetl2c_freedom_match_end_notify& default_instance();
- void Swap(packetl2c_freedom_match_end_notify* other);
- // implements Message ----------------------------------------------
- packetl2c_freedom_match_end_notify* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetl2c_freedom_match_end_notify& from);
- void MergeFrom(const packetl2c_freedom_match_end_notify& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_freedom_match_end_notify];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 roomId = 2;
- inline bool has_roomid() const;
- inline void clear_roomid();
- static const int kRoomIdFieldNumber = 2;
- inline ::google::protobuf::int32 roomid() const;
- inline void set_roomid(::google::protobuf::int32 value);
- // optional int32 reason = 3;
- inline bool has_reason() const;
- inline void clear_reason();
- static const int kReasonFieldNumber = 3;
- inline ::google::protobuf::int32 reason() const;
- inline void set_reason(::google::protobuf::int32 value);
- // repeated .fish_protocols.buffInfo buffList = 4;
- inline int bufflist_size() const;
- inline void clear_bufflist();
- static const int kBuffListFieldNumber = 4;
- inline const ::fish_protocols::buffInfo& bufflist(int index) const;
- inline ::fish_protocols::buffInfo* mutable_bufflist(int index);
- inline ::fish_protocols::buffInfo* add_bufflist();
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::buffInfo >&
- bufflist() const;
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::buffInfo >*
- mutable_bufflist();
- // optional int32 rank = 5;
- inline bool has_rank() const;
- inline void clear_rank();
- static const int kRankFieldNumber = 5;
- inline ::google::protobuf::int32 rank() const;
- inline void set_rank(::google::protobuf::int32 value);
- // optional int32 curBaseScore = 6;
- inline bool has_curbasescore() const;
- inline void clear_curbasescore();
- static const int kCurBaseScoreFieldNumber = 6;
- inline ::google::protobuf::int32 curbasescore() const;
- inline void set_curbasescore(::google::protobuf::int32 value);
- // optional int32 curAddScore = 7;
- inline bool has_curaddscore() const;
- inline void clear_curaddscore();
- static const int kCurAddScoreFieldNumber = 7;
- inline ::google::protobuf::int32 curaddscore() const;
- inline void set_curaddscore(::google::protobuf::int32 value);
- // optional int32 topScore = 8;
- inline bool has_topscore() const;
- inline void clear_topscore();
- static const int kTopScoreFieldNumber = 8;
- inline ::google::protobuf::int32 topscore() const;
- inline void set_topscore(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_freedom_match_end_notify)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_roomid();
- inline void clear_has_roomid();
- inline void set_has_reason();
- inline void clear_has_reason();
- inline void set_has_rank();
- inline void clear_has_rank();
- inline void set_has_curbasescore();
- inline void clear_has_curbasescore();
- inline void set_has_curaddscore();
- inline void clear_has_curaddscore();
- inline void set_has_topscore();
- inline void clear_has_topscore();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 roomid_;
- ::google::protobuf::RepeatedPtrField< ::fish_protocols::buffInfo > bufflist_;
- ::google::protobuf::int32 reason_;
- ::google::protobuf::int32 rank_;
- ::google::protobuf::int32 curbasescore_;
- ::google::protobuf::int32 curaddscore_;
- ::google::protobuf::int32 topscore_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(8 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fmatch_2eproto();
- friend void protobuf_AssignDesc_fish_5fmatch_2eproto();
- friend void protobuf_ShutdownFile_fish_5fmatch_2eproto();
- void InitAsDefaultInstance();
- static packetl2c_freedom_match_end_notify* default_instance_;
- };
- // ===================================================================
- // ===================================================================
- // matchRankInfo
- // optional int32 playerId = 1;
- inline bool matchRankInfo::has_playerid() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void matchRankInfo::set_has_playerid() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void matchRankInfo::clear_has_playerid() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void matchRankInfo::clear_playerid() {
- playerid_ = 0;
- clear_has_playerid();
- }
- inline ::google::protobuf::int32 matchRankInfo::playerid() const {
- return playerid_;
- }
- inline void matchRankInfo::set_playerid(::google::protobuf::int32 value) {
- set_has_playerid();
- playerid_ = value;
- }
- // optional string nickName = 2;
- inline bool matchRankInfo::has_nickname() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void matchRankInfo::set_has_nickname() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void matchRankInfo::clear_has_nickname() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void matchRankInfo::clear_nickname() {
- if (nickname_ != &::google::protobuf::internal::kEmptyString) {
- nickname_->clear();
- }
- clear_has_nickname();
- }
- inline const ::std::string& matchRankInfo::nickname() const {
- return *nickname_;
- }
- inline void matchRankInfo::set_nickname(const ::std::string& value) {
- set_has_nickname();
- if (nickname_ == &::google::protobuf::internal::kEmptyString) {
- nickname_ = new ::std::string;
- }
- nickname_->assign(value);
- }
- inline void matchRankInfo::set_nickname(const char* value) {
- set_has_nickname();
- if (nickname_ == &::google::protobuf::internal::kEmptyString) {
- nickname_ = new ::std::string;
- }
- nickname_->assign(value);
- }
- inline void matchRankInfo::set_nickname(const char* value, size_t size) {
- set_has_nickname();
- if (nickname_ == &::google::protobuf::internal::kEmptyString) {
- nickname_ = new ::std::string;
- }
- nickname_->assign(reinterpret_cast<const char*>(value), size);
- }
- inline ::std::string* matchRankInfo::mutable_nickname() {
- set_has_nickname();
- if (nickname_ == &::google::protobuf::internal::kEmptyString) {
- nickname_ = new ::std::string;
- }
- return nickname_;
- }
- inline ::std::string* matchRankInfo::release_nickname() {
- clear_has_nickname();
- if (nickname_ == &::google::protobuf::internal::kEmptyString) {
- return NULL;
- } else {
- ::std::string* temp = nickname_;
- nickname_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
- return temp;
- }
- }
- inline void matchRankInfo::set_allocated_nickname(::std::string* nickname) {
- if (nickname_ != &::google::protobuf::internal::kEmptyString) {
- delete nickname_;
- }
- if (nickname) {
- set_has_nickname();
- nickname_ = nickname;
- } else {
- clear_has_nickname();
- nickname_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
- }
- }
- // optional int32 vip = 3;
- inline bool matchRankInfo::has_vip() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void matchRankInfo::set_has_vip() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void matchRankInfo::clear_has_vip() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void matchRankInfo::clear_vip() {
- vip_ = 0;
- clear_has_vip();
- }
- inline ::google::protobuf::int32 matchRankInfo::vip() const {
- return vip_;
- }
- inline void matchRankInfo::set_vip(::google::protobuf::int32 value) {
- set_has_vip();
- vip_ = value;
- }
- // optional int32 headid = 4;
- inline bool matchRankInfo::has_headid() const {
- return (_has_bits_[0] & 0x00000008u) != 0;
- }
- inline void matchRankInfo::set_has_headid() {
- _has_bits_[0] |= 0x00000008u;
- }
- inline void matchRankInfo::clear_has_headid() {
- _has_bits_[0] &= ~0x00000008u;
- }
- inline void matchRankInfo::clear_headid() {
- headid_ = 0;
- clear_has_headid();
- }
- inline ::google::protobuf::int32 matchRankInfo::headid() const {
- return headid_;
- }
- inline void matchRankInfo::set_headid(::google::protobuf::int32 value) {
- set_has_headid();
- headid_ = value;
- }
- // optional int32 frameid = 5;
- inline bool matchRankInfo::has_frameid() const {
- return (_has_bits_[0] & 0x00000010u) != 0;
- }
- inline void matchRankInfo::set_has_frameid() {
- _has_bits_[0] |= 0x00000010u;
- }
- inline void matchRankInfo::clear_has_frameid() {
- _has_bits_[0] &= ~0x00000010u;
- }
- inline void matchRankInfo::clear_frameid() {
- frameid_ = 0;
- clear_has_frameid();
- }
- inline ::google::protobuf::int32 matchRankInfo::frameid() const {
- return frameid_;
- }
- inline void matchRankInfo::set_frameid(::google::protobuf::int32 value) {
- set_has_frameid();
- frameid_ = value;
- }
- // optional int32 rank = 6;
- inline bool matchRankInfo::has_rank() const {
- return (_has_bits_[0] & 0x00000020u) != 0;
- }
- inline void matchRankInfo::set_has_rank() {
- _has_bits_[0] |= 0x00000020u;
- }
- inline void matchRankInfo::clear_has_rank() {
- _has_bits_[0] &= ~0x00000020u;
- }
- inline void matchRankInfo::clear_rank() {
- rank_ = 0;
- clear_has_rank();
- }
- inline ::google::protobuf::int32 matchRankInfo::rank() const {
- return rank_;
- }
- inline void matchRankInfo::set_rank(::google::protobuf::int32 value) {
- set_has_rank();
- rank_ = value;
- }
- // optional int32 score = 7;
- inline bool matchRankInfo::has_score() const {
- return (_has_bits_[0] & 0x00000040u) != 0;
- }
- inline void matchRankInfo::set_has_score() {
- _has_bits_[0] |= 0x00000040u;
- }
- inline void matchRankInfo::clear_has_score() {
- _has_bits_[0] &= ~0x00000040u;
- }
- inline void matchRankInfo::clear_score() {
- score_ = 0;
- clear_has_score();
- }
- inline ::google::protobuf::int32 matchRankInfo::score() const {
- return score_;
- }
- inline void matchRankInfo::set_score(::google::protobuf::int32 value) {
- set_has_score();
- score_ = value;
- }
- // -------------------------------------------------------------------
- // questInfo
- // optional int32 questId = 1;
- inline bool questInfo::has_questid() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void questInfo::set_has_questid() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void questInfo::clear_has_questid() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void questInfo::clear_questid() {
- questid_ = 0;
- clear_has_questid();
- }
- inline ::google::protobuf::int32 questInfo::questid() const {
- return questid_;
- }
- inline void questInfo::set_questid(::google::protobuf::int32 value) {
- set_has_questid();
- questid_ = value;
- }
- // optional int32 count = 2;
- inline bool questInfo::has_count() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void questInfo::set_has_count() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void questInfo::clear_has_count() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void questInfo::clear_count() {
- count_ = 0;
- clear_has_count();
- }
- inline ::google::protobuf::int32 questInfo::count() const {
- return count_;
- }
- inline void questInfo::set_count(::google::protobuf::int32 value) {
- set_has_count();
- count_ = value;
- }
- // -------------------------------------------------------------------
- // killFishInfo
- // optional int32 fishId = 1;
- inline bool killFishInfo::has_fishid() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void killFishInfo::set_has_fishid() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void killFishInfo::clear_has_fishid() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void killFishInfo::clear_fishid() {
- fishid_ = 0;
- clear_has_fishid();
- }
- inline ::google::protobuf::int32 killFishInfo::fishid() const {
- return fishid_;
- }
- inline void killFishInfo::set_fishid(::google::protobuf::int32 value) {
- set_has_fishid();
- fishid_ = value;
- }
- // optional int32 count = 2;
- inline bool killFishInfo::has_count() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void killFishInfo::set_has_count() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void killFishInfo::clear_has_count() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void killFishInfo::clear_count() {
- count_ = 0;
- clear_has_count();
- }
- inline ::google::protobuf::int32 killFishInfo::count() const {
- return count_;
- }
- inline void killFishInfo::set_count(::google::protobuf::int32 value) {
- set_has_count();
- count_ = value;
- }
- // -------------------------------------------------------------------
- // packetc2l_get_arena_match_info
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_get_arena_match_info];
- inline bool packetc2l_get_arena_match_info::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetc2l_get_arena_match_info::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetc2l_get_arena_match_info::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetc2l_get_arena_match_info::clear_packet_id() {
- packet_id_ = 10121;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetc2l_get_arena_match_info::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetc2l_get_arena_match_info::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // -------------------------------------------------------------------
- // packetl2c_get_arena_match_info_result
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_get_arena_match_info_result];
- inline bool packetl2c_get_arena_match_info_result::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetl2c_get_arena_match_info_result::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetl2c_get_arena_match_info_result::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetl2c_get_arena_match_info_result::clear_packet_id() {
- packet_id_ = 16101;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetl2c_get_arena_match_info_result::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetl2c_get_arena_match_info_result::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // repeated .fish_protocols.matchRankInfo dailyRankList = 2;
- inline int packetl2c_get_arena_match_info_result::dailyranklist_size() const {
- return dailyranklist_.size();
- }
- inline void packetl2c_get_arena_match_info_result::clear_dailyranklist() {
- dailyranklist_.Clear();
- }
- inline const ::fish_protocols::matchRankInfo& packetl2c_get_arena_match_info_result::dailyranklist(int index) const {
- return dailyranklist_.Get(index);
- }
- inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_info_result::mutable_dailyranklist(int index) {
- return dailyranklist_.Mutable(index);
- }
- inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_info_result::add_dailyranklist() {
- return dailyranklist_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >&
- packetl2c_get_arena_match_info_result::dailyranklist() const {
- return dailyranklist_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >*
- packetl2c_get_arena_match_info_result::mutable_dailyranklist() {
- return &dailyranklist_;
- }
- // repeated .fish_protocols.matchRankInfo weeklyRankList = 3;
- inline int packetl2c_get_arena_match_info_result::weeklyranklist_size() const {
- return weeklyranklist_.size();
- }
- inline void packetl2c_get_arena_match_info_result::clear_weeklyranklist() {
- weeklyranklist_.Clear();
- }
- inline const ::fish_protocols::matchRankInfo& packetl2c_get_arena_match_info_result::weeklyranklist(int index) const {
- return weeklyranklist_.Get(index);
- }
- inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_info_result::mutable_weeklyranklist(int index) {
- return weeklyranklist_.Mutable(index);
- }
- inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_info_result::add_weeklyranklist() {
- return weeklyranklist_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >&
- packetl2c_get_arena_match_info_result::weeklyranklist() const {
- return weeklyranklist_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >*
- packetl2c_get_arena_match_info_result::mutable_weeklyranklist() {
- return &weeklyranklist_;
- }
- // repeated .fish_protocols.questInfo questList = 4;
- inline int packetl2c_get_arena_match_info_result::questlist_size() const {
- return questlist_.size();
- }
- inline void packetl2c_get_arena_match_info_result::clear_questlist() {
- questlist_.Clear();
- }
- inline const ::fish_protocols::questInfo& packetl2c_get_arena_match_info_result::questlist(int index) const {
- return questlist_.Get(index);
- }
- inline ::fish_protocols::questInfo* packetl2c_get_arena_match_info_result::mutable_questlist(int index) {
- return questlist_.Mutable(index);
- }
- inline ::fish_protocols::questInfo* packetl2c_get_arena_match_info_result::add_questlist() {
- return questlist_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::questInfo >&
- packetl2c_get_arena_match_info_result::questlist() const {
- return questlist_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::questInfo >*
- packetl2c_get_arena_match_info_result::mutable_questlist() {
- return &questlist_;
- }
- // repeated .fish_protocols.killFishInfo killList = 5;
- inline int packetl2c_get_arena_match_info_result::killlist_size() const {
- return killlist_.size();
- }
- inline void packetl2c_get_arena_match_info_result::clear_killlist() {
- killlist_.Clear();
- }
- inline const ::fish_protocols::killFishInfo& packetl2c_get_arena_match_info_result::killlist(int index) const {
- return killlist_.Get(index);
- }
- inline ::fish_protocols::killFishInfo* packetl2c_get_arena_match_info_result::mutable_killlist(int index) {
- return killlist_.Mutable(index);
- }
- inline ::fish_protocols::killFishInfo* packetl2c_get_arena_match_info_result::add_killlist() {
- return killlist_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::killFishInfo >&
- packetl2c_get_arena_match_info_result::killlist() const {
- return killlist_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::killFishInfo >*
- packetl2c_get_arena_match_info_result::mutable_killlist() {
- return &killlist_;
- }
- // optional int32 bulletCount = 6;
- inline bool packetl2c_get_arena_match_info_result::has_bulletcount() const {
- return (_has_bits_[0] & 0x00000020u) != 0;
- }
- inline void packetl2c_get_arena_match_info_result::set_has_bulletcount() {
- _has_bits_[0] |= 0x00000020u;
- }
- inline void packetl2c_get_arena_match_info_result::clear_has_bulletcount() {
- _has_bits_[0] &= ~0x00000020u;
- }
- inline void packetl2c_get_arena_match_info_result::clear_bulletcount() {
- bulletcount_ = 0;
- clear_has_bulletcount();
- }
- inline ::google::protobuf::int32 packetl2c_get_arena_match_info_result::bulletcount() const {
- return bulletcount_;
- }
- inline void packetl2c_get_arena_match_info_result::set_bulletcount(::google::protobuf::int32 value) {
- set_has_bulletcount();
- bulletcount_ = value;
- }
- // optional int32 curScore = 7;
- inline bool packetl2c_get_arena_match_info_result::has_curscore() const {
- return (_has_bits_[0] & 0x00000040u) != 0;
- }
- inline void packetl2c_get_arena_match_info_result::set_has_curscore() {
- _has_bits_[0] |= 0x00000040u;
- }
- inline void packetl2c_get_arena_match_info_result::clear_has_curscore() {
- _has_bits_[0] &= ~0x00000040u;
- }
- inline void packetl2c_get_arena_match_info_result::clear_curscore() {
- curscore_ = 0;
- clear_has_curscore();
- }
- inline ::google::protobuf::int32 packetl2c_get_arena_match_info_result::curscore() const {
- return curscore_;
- }
- inline void packetl2c_get_arena_match_info_result::set_curscore(::google::protobuf::int32 value) {
- set_has_curscore();
- curscore_ = value;
- }
- // optional int32 joinCount = 8;
- inline bool packetl2c_get_arena_match_info_result::has_joincount() const {
- return (_has_bits_[0] & 0x00000080u) != 0;
- }
- inline void packetl2c_get_arena_match_info_result::set_has_joincount() {
- _has_bits_[0] |= 0x00000080u;
- }
- inline void packetl2c_get_arena_match_info_result::clear_has_joincount() {
- _has_bits_[0] &= ~0x00000080u;
- }
- inline void packetl2c_get_arena_match_info_result::clear_joincount() {
- joincount_ = 0;
- clear_has_joincount();
- }
- inline ::google::protobuf::int32 packetl2c_get_arena_match_info_result::joincount() const {
- return joincount_;
- }
- inline void packetl2c_get_arena_match_info_result::set_joincount(::google::protobuf::int32 value) {
- set_has_joincount();
- joincount_ = value;
- }
- // optional int32 questGroup = 9;
- inline bool packetl2c_get_arena_match_info_result::has_questgroup() const {
- return (_has_bits_[0] & 0x00000100u) != 0;
- }
- inline void packetl2c_get_arena_match_info_result::set_has_questgroup() {
- _has_bits_[0] |= 0x00000100u;
- }
- inline void packetl2c_get_arena_match_info_result::clear_has_questgroup() {
- _has_bits_[0] &= ~0x00000100u;
- }
- inline void packetl2c_get_arena_match_info_result::clear_questgroup() {
- questgroup_ = 0;
- clear_has_questgroup();
- }
- inline ::google::protobuf::int32 packetl2c_get_arena_match_info_result::questgroup() const {
- return questgroup_;
- }
- inline void packetl2c_get_arena_match_info_result::set_questgroup(::google::protobuf::int32 value) {
- set_has_questgroup();
- questgroup_ = value;
- }
- // optional .fish_protocols.matchRankInfo selfDayRank = 10;
- inline bool packetl2c_get_arena_match_info_result::has_selfdayrank() const {
- return (_has_bits_[0] & 0x00000200u) != 0;
- }
- inline void packetl2c_get_arena_match_info_result::set_has_selfdayrank() {
- _has_bits_[0] |= 0x00000200u;
- }
- inline void packetl2c_get_arena_match_info_result::clear_has_selfdayrank() {
- _has_bits_[0] &= ~0x00000200u;
- }
- inline void packetl2c_get_arena_match_info_result::clear_selfdayrank() {
- if (selfdayrank_ != NULL) selfdayrank_->::fish_protocols::matchRankInfo::Clear();
- clear_has_selfdayrank();
- }
- inline const ::fish_protocols::matchRankInfo& packetl2c_get_arena_match_info_result::selfdayrank() const {
- return selfdayrank_ != NULL ? *selfdayrank_ : *default_instance_->selfdayrank_;
- }
- inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_info_result::mutable_selfdayrank() {
- set_has_selfdayrank();
- if (selfdayrank_ == NULL) selfdayrank_ = new ::fish_protocols::matchRankInfo;
- return selfdayrank_;
- }
- inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_info_result::release_selfdayrank() {
- clear_has_selfdayrank();
- ::fish_protocols::matchRankInfo* temp = selfdayrank_;
- selfdayrank_ = NULL;
- return temp;
- }
- inline void packetl2c_get_arena_match_info_result::set_allocated_selfdayrank(::fish_protocols::matchRankInfo* selfdayrank) {
- delete selfdayrank_;
- selfdayrank_ = selfdayrank;
- if (selfdayrank) {
- set_has_selfdayrank();
- } else {
- clear_has_selfdayrank();
- }
- }
- // optional .fish_protocols.matchRankInfo selfWeekRank = 11;
- inline bool packetl2c_get_arena_match_info_result::has_selfweekrank() const {
- return (_has_bits_[0] & 0x00000400u) != 0;
- }
- inline void packetl2c_get_arena_match_info_result::set_has_selfweekrank() {
- _has_bits_[0] |= 0x00000400u;
- }
- inline void packetl2c_get_arena_match_info_result::clear_has_selfweekrank() {
- _has_bits_[0] &= ~0x00000400u;
- }
- inline void packetl2c_get_arena_match_info_result::clear_selfweekrank() {
- if (selfweekrank_ != NULL) selfweekrank_->::fish_protocols::matchRankInfo::Clear();
- clear_has_selfweekrank();
- }
- inline const ::fish_protocols::matchRankInfo& packetl2c_get_arena_match_info_result::selfweekrank() const {
- return selfweekrank_ != NULL ? *selfweekrank_ : *default_instance_->selfweekrank_;
- }
- inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_info_result::mutable_selfweekrank() {
- set_has_selfweekrank();
- if (selfweekrank_ == NULL) selfweekrank_ = new ::fish_protocols::matchRankInfo;
- return selfweekrank_;
- }
- inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_info_result::release_selfweekrank() {
- clear_has_selfweekrank();
- ::fish_protocols::matchRankInfo* temp = selfweekrank_;
- selfweekrank_ = NULL;
- return temp;
- }
- inline void packetl2c_get_arena_match_info_result::set_allocated_selfweekrank(::fish_protocols::matchRankInfo* selfweekrank) {
- delete selfweekrank_;
- selfweekrank_ = selfweekrank;
- if (selfweekrank) {
- set_has_selfweekrank();
- } else {
- clear_has_selfweekrank();
- }
- }
- // optional int32 startTime = 12;
- inline bool packetl2c_get_arena_match_info_result::has_starttime() const {
- return (_has_bits_[0] & 0x00000800u) != 0;
- }
- inline void packetl2c_get_arena_match_info_result::set_has_starttime() {
- _has_bits_[0] |= 0x00000800u;
- }
- inline void packetl2c_get_arena_match_info_result::clear_has_starttime() {
- _has_bits_[0] &= ~0x00000800u;
- }
- inline void packetl2c_get_arena_match_info_result::clear_starttime() {
- starttime_ = 0;
- clear_has_starttime();
- }
- inline ::google::protobuf::int32 packetl2c_get_arena_match_info_result::starttime() const {
- return starttime_;
- }
- inline void packetl2c_get_arena_match_info_result::set_starttime(::google::protobuf::int32 value) {
- set_has_starttime();
- starttime_ = value;
- }
- // optional int32 endTime = 13;
- inline bool packetl2c_get_arena_match_info_result::has_endtime() const {
- return (_has_bits_[0] & 0x00001000u) != 0;
- }
- inline void packetl2c_get_arena_match_info_result::set_has_endtime() {
- _has_bits_[0] |= 0x00001000u;
- }
- inline void packetl2c_get_arena_match_info_result::clear_has_endtime() {
- _has_bits_[0] &= ~0x00001000u;
- }
- inline void packetl2c_get_arena_match_info_result::clear_endtime() {
- endtime_ = 0;
- clear_has_endtime();
- }
- inline ::google::protobuf::int32 packetl2c_get_arena_match_info_result::endtime() const {
- return endtime_;
- }
- inline void packetl2c_get_arena_match_info_result::set_endtime(::google::protobuf::int32 value) {
- set_has_endtime();
- endtime_ = value;
- }
- // -------------------------------------------------------------------
- // packetc2l_syn_arena_match_bullet
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_syn_arena_match_bullet];
- inline bool packetc2l_syn_arena_match_bullet::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetc2l_syn_arena_match_bullet::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetc2l_syn_arena_match_bullet::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetc2l_syn_arena_match_bullet::clear_packet_id() {
- packet_id_ = 10223;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetc2l_syn_arena_match_bullet::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetc2l_syn_arena_match_bullet::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // -------------------------------------------------------------------
- // packetl2c_syn_arena_match_bullet_result
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_syn_arena_match_bullet_result];
- inline bool packetl2c_syn_arena_match_bullet_result::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetl2c_syn_arena_match_bullet_result::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetl2c_syn_arena_match_bullet_result::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetl2c_syn_arena_match_bullet_result::clear_packet_id() {
- packet_id_ = 16229;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetl2c_syn_arena_match_bullet_result::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetl2c_syn_arena_match_bullet_result::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 bulletCount = 2;
- inline bool packetl2c_syn_arena_match_bullet_result::has_bulletcount() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetl2c_syn_arena_match_bullet_result::set_has_bulletcount() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetl2c_syn_arena_match_bullet_result::clear_has_bulletcount() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetl2c_syn_arena_match_bullet_result::clear_bulletcount() {
- bulletcount_ = 0;
- clear_has_bulletcount();
- }
- inline ::google::protobuf::int32 packetl2c_syn_arena_match_bullet_result::bulletcount() const {
- return bulletcount_;
- }
- inline void packetl2c_syn_arena_match_bullet_result::set_bulletcount(::google::protobuf::int32 value) {
- set_has_bulletcount();
- bulletcount_ = value;
- }
- // -------------------------------------------------------------------
- // packetc2l_get_arena_match_history_rank
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_get_arena_match_history_rank];
- inline bool packetc2l_get_arena_match_history_rank::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetc2l_get_arena_match_history_rank::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetc2l_get_arena_match_history_rank::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetc2l_get_arena_match_history_rank::clear_packet_id() {
- packet_id_ = 10213;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetc2l_get_arena_match_history_rank::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetc2l_get_arena_match_history_rank::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 type = 2;
- inline bool packetc2l_get_arena_match_history_rank::has_type() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetc2l_get_arena_match_history_rank::set_has_type() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetc2l_get_arena_match_history_rank::clear_has_type() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetc2l_get_arena_match_history_rank::clear_type() {
- type_ = 0;
- clear_has_type();
- }
- inline ::google::protobuf::int32 packetc2l_get_arena_match_history_rank::type() const {
- return type_;
- }
- inline void packetc2l_get_arena_match_history_rank::set_type(::google::protobuf::int32 value) {
- set_has_type();
- type_ = value;
- }
- // -------------------------------------------------------------------
- // packetl2c_get_arena_match_history_rank_result
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_get_arena_match_history_rank_result];
- inline bool packetl2c_get_arena_match_history_rank_result::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetl2c_get_arena_match_history_rank_result::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetl2c_get_arena_match_history_rank_result::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetl2c_get_arena_match_history_rank_result::clear_packet_id() {
- packet_id_ = 16216;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetl2c_get_arena_match_history_rank_result::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetl2c_get_arena_match_history_rank_result::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 type = 2;
- inline bool packetl2c_get_arena_match_history_rank_result::has_type() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetl2c_get_arena_match_history_rank_result::set_has_type() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetl2c_get_arena_match_history_rank_result::clear_has_type() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetl2c_get_arena_match_history_rank_result::clear_type() {
- type_ = 0;
- clear_has_type();
- }
- inline ::google::protobuf::int32 packetl2c_get_arena_match_history_rank_result::type() const {
- return type_;
- }
- inline void packetl2c_get_arena_match_history_rank_result::set_type(::google::protobuf::int32 value) {
- set_has_type();
- type_ = value;
- }
- // repeated .fish_protocols.matchRankInfo rankList = 3;
- inline int packetl2c_get_arena_match_history_rank_result::ranklist_size() const {
- return ranklist_.size();
- }
- inline void packetl2c_get_arena_match_history_rank_result::clear_ranklist() {
- ranklist_.Clear();
- }
- inline const ::fish_protocols::matchRankInfo& packetl2c_get_arena_match_history_rank_result::ranklist(int index) const {
- return ranklist_.Get(index);
- }
- inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_history_rank_result::mutable_ranklist(int index) {
- return ranklist_.Mutable(index);
- }
- inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_history_rank_result::add_ranklist() {
- return ranklist_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >&
- packetl2c_get_arena_match_history_rank_result::ranklist() const {
- return ranklist_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >*
- packetl2c_get_arena_match_history_rank_result::mutable_ranklist() {
- return &ranklist_;
- }
- // optional .fish_protocols.matchRankInfo selfRank = 4;
- inline bool packetl2c_get_arena_match_history_rank_result::has_selfrank() const {
- return (_has_bits_[0] & 0x00000008u) != 0;
- }
- inline void packetl2c_get_arena_match_history_rank_result::set_has_selfrank() {
- _has_bits_[0] |= 0x00000008u;
- }
- inline void packetl2c_get_arena_match_history_rank_result::clear_has_selfrank() {
- _has_bits_[0] &= ~0x00000008u;
- }
- inline void packetl2c_get_arena_match_history_rank_result::clear_selfrank() {
- if (selfrank_ != NULL) selfrank_->::fish_protocols::matchRankInfo::Clear();
- clear_has_selfrank();
- }
- inline const ::fish_protocols::matchRankInfo& packetl2c_get_arena_match_history_rank_result::selfrank() const {
- return selfrank_ != NULL ? *selfrank_ : *default_instance_->selfrank_;
- }
- inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_history_rank_result::mutable_selfrank() {
- set_has_selfrank();
- if (selfrank_ == NULL) selfrank_ = new ::fish_protocols::matchRankInfo;
- return selfrank_;
- }
- inline ::fish_protocols::matchRankInfo* packetl2c_get_arena_match_history_rank_result::release_selfrank() {
- clear_has_selfrank();
- ::fish_protocols::matchRankInfo* temp = selfrank_;
- selfrank_ = NULL;
- return temp;
- }
- inline void packetl2c_get_arena_match_history_rank_result::set_allocated_selfrank(::fish_protocols::matchRankInfo* selfrank) {
- delete selfrank_;
- selfrank_ = selfrank;
- if (selfrank) {
- set_has_selfrank();
- } else {
- clear_has_selfrank();
- }
- }
- // -------------------------------------------------------------------
- // packetc2l_join_arena_match
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_join_arena_match];
- inline bool packetc2l_join_arena_match::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetc2l_join_arena_match::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetc2l_join_arena_match::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetc2l_join_arena_match::clear_packet_id() {
- packet_id_ = 10155;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetc2l_join_arena_match::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetc2l_join_arena_match::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // -------------------------------------------------------------------
- // packetl2c_join_arena_match_result
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_join_arena_match_result];
- inline bool packetl2c_join_arena_match_result::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetl2c_join_arena_match_result::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetl2c_join_arena_match_result::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetl2c_join_arena_match_result::clear_packet_id() {
- packet_id_ = 16144;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetl2c_join_arena_match_result::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetl2c_join_arena_match_result::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 result = 2;
- inline bool packetl2c_join_arena_match_result::has_result() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetl2c_join_arena_match_result::set_has_result() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetl2c_join_arena_match_result::clear_has_result() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetl2c_join_arena_match_result::clear_result() {
- result_ = 0;
- clear_has_result();
- }
- inline ::google::protobuf::int32 packetl2c_join_arena_match_result::result() const {
- return result_;
- }
- inline void packetl2c_join_arena_match_result::set_result(::google::protobuf::int32 value) {
- set_has_result();
- result_ = value;
- }
- // optional int32 playerId = 3;
- inline bool packetl2c_join_arena_match_result::has_playerid() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void packetl2c_join_arena_match_result::set_has_playerid() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void packetl2c_join_arena_match_result::clear_has_playerid() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void packetl2c_join_arena_match_result::clear_playerid() {
- playerid_ = 0;
- clear_has_playerid();
- }
- inline ::google::protobuf::int32 packetl2c_join_arena_match_result::playerid() const {
- return playerid_;
- }
- inline void packetl2c_join_arena_match_result::set_playerid(::google::protobuf::int32 value) {
- set_has_playerid();
- playerid_ = value;
- }
- // optional int32 bulletCount = 4;
- inline bool packetl2c_join_arena_match_result::has_bulletcount() const {
- return (_has_bits_[0] & 0x00000008u) != 0;
- }
- inline void packetl2c_join_arena_match_result::set_has_bulletcount() {
- _has_bits_[0] |= 0x00000008u;
- }
- inline void packetl2c_join_arena_match_result::clear_has_bulletcount() {
- _has_bits_[0] &= ~0x00000008u;
- }
- inline void packetl2c_join_arena_match_result::clear_bulletcount() {
- bulletcount_ = 0;
- clear_has_bulletcount();
- }
- inline ::google::protobuf::int32 packetl2c_join_arena_match_result::bulletcount() const {
- return bulletcount_;
- }
- inline void packetl2c_join_arena_match_result::set_bulletcount(::google::protobuf::int32 value) {
- set_has_bulletcount();
- bulletcount_ = value;
- }
- // optional int32 curScore = 5;
- inline bool packetl2c_join_arena_match_result::has_curscore() const {
- return (_has_bits_[0] & 0x00000010u) != 0;
- }
- inline void packetl2c_join_arena_match_result::set_has_curscore() {
- _has_bits_[0] |= 0x00000010u;
- }
- inline void packetl2c_join_arena_match_result::clear_has_curscore() {
- _has_bits_[0] &= ~0x00000010u;
- }
- inline void packetl2c_join_arena_match_result::clear_curscore() {
- curscore_ = 0;
- clear_has_curscore();
- }
- inline ::google::protobuf::int32 packetl2c_join_arena_match_result::curscore() const {
- return curscore_;
- }
- inline void packetl2c_join_arena_match_result::set_curscore(::google::protobuf::int32 value) {
- set_has_curscore();
- curscore_ = value;
- }
- // optional int32 joinCount = 6;
- inline bool packetl2c_join_arena_match_result::has_joincount() const {
- return (_has_bits_[0] & 0x00000020u) != 0;
- }
- inline void packetl2c_join_arena_match_result::set_has_joincount() {
- _has_bits_[0] |= 0x00000020u;
- }
- inline void packetl2c_join_arena_match_result::clear_has_joincount() {
- _has_bits_[0] &= ~0x00000020u;
- }
- inline void packetl2c_join_arena_match_result::clear_joincount() {
- joincount_ = 0;
- clear_has_joincount();
- }
- inline ::google::protobuf::int32 packetl2c_join_arena_match_result::joincount() const {
- return joincount_;
- }
- inline void packetl2c_join_arena_match_result::set_joincount(::google::protobuf::int32 value) {
- set_has_joincount();
- joincount_ = value;
- }
- // optional int32 questGroup = 7;
- inline bool packetl2c_join_arena_match_result::has_questgroup() const {
- return (_has_bits_[0] & 0x00000040u) != 0;
- }
- inline void packetl2c_join_arena_match_result::set_has_questgroup() {
- _has_bits_[0] |= 0x00000040u;
- }
- inline void packetl2c_join_arena_match_result::clear_has_questgroup() {
- _has_bits_[0] &= ~0x00000040u;
- }
- inline void packetl2c_join_arena_match_result::clear_questgroup() {
- questgroup_ = 0;
- clear_has_questgroup();
- }
- inline ::google::protobuf::int32 packetl2c_join_arena_match_result::questgroup() const {
- return questgroup_;
- }
- inline void packetl2c_join_arena_match_result::set_questgroup(::google::protobuf::int32 value) {
- set_has_questgroup();
- questgroup_ = value;
- }
- // -------------------------------------------------------------------
- // packetl2c_notify_arena_match_add_bullet
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_notify_arena_match_add_bullet];
- inline bool packetl2c_notify_arena_match_add_bullet::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetl2c_notify_arena_match_add_bullet::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetl2c_notify_arena_match_add_bullet::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetl2c_notify_arena_match_add_bullet::clear_packet_id() {
- packet_id_ = 16218;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetl2c_notify_arena_match_add_bullet::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetl2c_notify_arena_match_add_bullet::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 playerId = 2;
- inline bool packetl2c_notify_arena_match_add_bullet::has_playerid() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetl2c_notify_arena_match_add_bullet::set_has_playerid() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetl2c_notify_arena_match_add_bullet::clear_has_playerid() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetl2c_notify_arena_match_add_bullet::clear_playerid() {
- playerid_ = 0;
- clear_has_playerid();
- }
- inline ::google::protobuf::int32 packetl2c_notify_arena_match_add_bullet::playerid() const {
- return playerid_;
- }
- inline void packetl2c_notify_arena_match_add_bullet::set_playerid(::google::protobuf::int32 value) {
- set_has_playerid();
- playerid_ = value;
- }
- // optional int32 addCount = 3;
- inline bool packetl2c_notify_arena_match_add_bullet::has_addcount() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void packetl2c_notify_arena_match_add_bullet::set_has_addcount() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void packetl2c_notify_arena_match_add_bullet::clear_has_addcount() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void packetl2c_notify_arena_match_add_bullet::clear_addcount() {
- addcount_ = 0;
- clear_has_addcount();
- }
- inline ::google::protobuf::int32 packetl2c_notify_arena_match_add_bullet::addcount() const {
- return addcount_;
- }
- inline void packetl2c_notify_arena_match_add_bullet::set_addcount(::google::protobuf::int32 value) {
- set_has_addcount();
- addcount_ = value;
- }
- // optional int32 curCount = 4;
- inline bool packetl2c_notify_arena_match_add_bullet::has_curcount() const {
- return (_has_bits_[0] & 0x00000008u) != 0;
- }
- inline void packetl2c_notify_arena_match_add_bullet::set_has_curcount() {
- _has_bits_[0] |= 0x00000008u;
- }
- inline void packetl2c_notify_arena_match_add_bullet::clear_has_curcount() {
- _has_bits_[0] &= ~0x00000008u;
- }
- inline void packetl2c_notify_arena_match_add_bullet::clear_curcount() {
- curcount_ = 0;
- clear_has_curcount();
- }
- inline ::google::protobuf::int32 packetl2c_notify_arena_match_add_bullet::curcount() const {
- return curcount_;
- }
- inline void packetl2c_notify_arena_match_add_bullet::set_curcount(::google::protobuf::int32 value) {
- set_has_curcount();
- curcount_ = value;
- }
- // -------------------------------------------------------------------
- // buffInfo
- // optional int32 buffId = 1;
- inline bool buffInfo::has_buffid() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void buffInfo::set_has_buffid() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void buffInfo::clear_has_buffid() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void buffInfo::clear_buffid() {
- buffid_ = 0;
- clear_has_buffid();
- }
- inline ::google::protobuf::int32 buffInfo::buffid() const {
- return buffid_;
- }
- inline void buffInfo::set_buffid(::google::protobuf::int32 value) {
- set_has_buffid();
- buffid_ = value;
- }
- // optional int32 buffRate = 2;
- inline bool buffInfo::has_buffrate() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void buffInfo::set_has_buffrate() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void buffInfo::clear_has_buffrate() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void buffInfo::clear_buffrate() {
- buffrate_ = 0;
- clear_has_buffrate();
- }
- inline ::google::protobuf::int32 buffInfo::buffrate() const {
- return buffrate_;
- }
- inline void buffInfo::set_buffrate(::google::protobuf::int32 value) {
- set_has_buffrate();
- buffrate_ = value;
- }
- // -------------------------------------------------------------------
- // packetl2c_arena_match_end_notify
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_arena_match_end_notify];
- inline bool packetl2c_arena_match_end_notify::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetl2c_arena_match_end_notify::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetl2c_arena_match_end_notify::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetl2c_arena_match_end_notify::clear_packet_id() {
- packet_id_ = 16127;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetl2c_arena_match_end_notify::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetl2c_arena_match_end_notify::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 reason = 2;
- inline bool packetl2c_arena_match_end_notify::has_reason() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetl2c_arena_match_end_notify::set_has_reason() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetl2c_arena_match_end_notify::clear_has_reason() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetl2c_arena_match_end_notify::clear_reason() {
- reason_ = 0;
- clear_has_reason();
- }
- inline ::google::protobuf::int32 packetl2c_arena_match_end_notify::reason() const {
- return reason_;
- }
- inline void packetl2c_arena_match_end_notify::set_reason(::google::protobuf::int32 value) {
- set_has_reason();
- reason_ = value;
- }
- // repeated .fish_protocols.buffInfo buffList = 3;
- inline int packetl2c_arena_match_end_notify::bufflist_size() const {
- return bufflist_.size();
- }
- inline void packetl2c_arena_match_end_notify::clear_bufflist() {
- bufflist_.Clear();
- }
- inline const ::fish_protocols::buffInfo& packetl2c_arena_match_end_notify::bufflist(int index) const {
- return bufflist_.Get(index);
- }
- inline ::fish_protocols::buffInfo* packetl2c_arena_match_end_notify::mutable_bufflist(int index) {
- return bufflist_.Mutable(index);
- }
- inline ::fish_protocols::buffInfo* packetl2c_arena_match_end_notify::add_bufflist() {
- return bufflist_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::buffInfo >&
- packetl2c_arena_match_end_notify::bufflist() const {
- return bufflist_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::buffInfo >*
- packetl2c_arena_match_end_notify::mutable_bufflist() {
- return &bufflist_;
- }
- // optional int32 rank = 4;
- inline bool packetl2c_arena_match_end_notify::has_rank() const {
- return (_has_bits_[0] & 0x00000008u) != 0;
- }
- inline void packetl2c_arena_match_end_notify::set_has_rank() {
- _has_bits_[0] |= 0x00000008u;
- }
- inline void packetl2c_arena_match_end_notify::clear_has_rank() {
- _has_bits_[0] &= ~0x00000008u;
- }
- inline void packetl2c_arena_match_end_notify::clear_rank() {
- rank_ = 0;
- clear_has_rank();
- }
- inline ::google::protobuf::int32 packetl2c_arena_match_end_notify::rank() const {
- return rank_;
- }
- inline void packetl2c_arena_match_end_notify::set_rank(::google::protobuf::int32 value) {
- set_has_rank();
- rank_ = value;
- }
- // optional int32 curBaseScore = 5;
- inline bool packetl2c_arena_match_end_notify::has_curbasescore() const {
- return (_has_bits_[0] & 0x00000010u) != 0;
- }
- inline void packetl2c_arena_match_end_notify::set_has_curbasescore() {
- _has_bits_[0] |= 0x00000010u;
- }
- inline void packetl2c_arena_match_end_notify::clear_has_curbasescore() {
- _has_bits_[0] &= ~0x00000010u;
- }
- inline void packetl2c_arena_match_end_notify::clear_curbasescore() {
- curbasescore_ = 0;
- clear_has_curbasescore();
- }
- inline ::google::protobuf::int32 packetl2c_arena_match_end_notify::curbasescore() const {
- return curbasescore_;
- }
- inline void packetl2c_arena_match_end_notify::set_curbasescore(::google::protobuf::int32 value) {
- set_has_curbasescore();
- curbasescore_ = value;
- }
- // optional int32 curAddScore = 6;
- inline bool packetl2c_arena_match_end_notify::has_curaddscore() const {
- return (_has_bits_[0] & 0x00000020u) != 0;
- }
- inline void packetl2c_arena_match_end_notify::set_has_curaddscore() {
- _has_bits_[0] |= 0x00000020u;
- }
- inline void packetl2c_arena_match_end_notify::clear_has_curaddscore() {
- _has_bits_[0] &= ~0x00000020u;
- }
- inline void packetl2c_arena_match_end_notify::clear_curaddscore() {
- curaddscore_ = 0;
- clear_has_curaddscore();
- }
- inline ::google::protobuf::int32 packetl2c_arena_match_end_notify::curaddscore() const {
- return curaddscore_;
- }
- inline void packetl2c_arena_match_end_notify::set_curaddscore(::google::protobuf::int32 value) {
- set_has_curaddscore();
- curaddscore_ = value;
- }
- // optional int32 topScore = 7;
- inline bool packetl2c_arena_match_end_notify::has_topscore() const {
- return (_has_bits_[0] & 0x00000040u) != 0;
- }
- inline void packetl2c_arena_match_end_notify::set_has_topscore() {
- _has_bits_[0] |= 0x00000040u;
- }
- inline void packetl2c_arena_match_end_notify::clear_has_topscore() {
- _has_bits_[0] &= ~0x00000040u;
- }
- inline void packetl2c_arena_match_end_notify::clear_topscore() {
- topscore_ = 0;
- clear_has_topscore();
- }
- inline ::google::protobuf::int32 packetl2c_arena_match_end_notify::topscore() const {
- return topscore_;
- }
- inline void packetl2c_arena_match_end_notify::set_topscore(::google::protobuf::int32 value) {
- set_has_topscore();
- topscore_ = value;
- }
- // -------------------------------------------------------------------
- // packetc2l_get_freedom_match_info
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_get_freedom_match_info];
- inline bool packetc2l_get_freedom_match_info::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetc2l_get_freedom_match_info::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetc2l_get_freedom_match_info::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetc2l_get_freedom_match_info::clear_packet_id() {
- packet_id_ = 10156;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetc2l_get_freedom_match_info::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetc2l_get_freedom_match_info::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 roomId = 2;
- inline bool packetc2l_get_freedom_match_info::has_roomid() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetc2l_get_freedom_match_info::set_has_roomid() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetc2l_get_freedom_match_info::clear_has_roomid() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetc2l_get_freedom_match_info::clear_roomid() {
- roomid_ = 0;
- clear_has_roomid();
- }
- inline ::google::protobuf::int32 packetc2l_get_freedom_match_info::roomid() const {
- return roomid_;
- }
- inline void packetc2l_get_freedom_match_info::set_roomid(::google::protobuf::int32 value) {
- set_has_roomid();
- roomid_ = value;
- }
- // -------------------------------------------------------------------
- // packetl2c_get_freedom_match_info_result
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_get_freedom_match_info_result];
- inline bool packetl2c_get_freedom_match_info_result::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetl2c_get_freedom_match_info_result::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetl2c_get_freedom_match_info_result::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetl2c_get_freedom_match_info_result::clear_packet_id() {
- packet_id_ = 16145;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetl2c_get_freedom_match_info_result::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetl2c_get_freedom_match_info_result::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 roomId = 2;
- inline bool packetl2c_get_freedom_match_info_result::has_roomid() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetl2c_get_freedom_match_info_result::set_has_roomid() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetl2c_get_freedom_match_info_result::clear_has_roomid() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetl2c_get_freedom_match_info_result::clear_roomid() {
- roomid_ = 0;
- clear_has_roomid();
- }
- inline ::google::protobuf::int32 packetl2c_get_freedom_match_info_result::roomid() const {
- return roomid_;
- }
- inline void packetl2c_get_freedom_match_info_result::set_roomid(::google::protobuf::int32 value) {
- set_has_roomid();
- roomid_ = value;
- }
- // repeated .fish_protocols.matchRankInfo dailyRankList = 3;
- inline int packetl2c_get_freedom_match_info_result::dailyranklist_size() const {
- return dailyranklist_.size();
- }
- inline void packetl2c_get_freedom_match_info_result::clear_dailyranklist() {
- dailyranklist_.Clear();
- }
- inline const ::fish_protocols::matchRankInfo& packetl2c_get_freedom_match_info_result::dailyranklist(int index) const {
- return dailyranklist_.Get(index);
- }
- inline ::fish_protocols::matchRankInfo* packetl2c_get_freedom_match_info_result::mutable_dailyranklist(int index) {
- return dailyranklist_.Mutable(index);
- }
- inline ::fish_protocols::matchRankInfo* packetl2c_get_freedom_match_info_result::add_dailyranklist() {
- return dailyranklist_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >&
- packetl2c_get_freedom_match_info_result::dailyranklist() const {
- return dailyranklist_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::matchRankInfo >*
- packetl2c_get_freedom_match_info_result::mutable_dailyranklist() {
- return &dailyranklist_;
- }
- // optional int32 bulletCount = 4;
- inline bool packetl2c_get_freedom_match_info_result::has_bulletcount() const {
- return (_has_bits_[0] & 0x00000008u) != 0;
- }
- inline void packetl2c_get_freedom_match_info_result::set_has_bulletcount() {
- _has_bits_[0] |= 0x00000008u;
- }
- inline void packetl2c_get_freedom_match_info_result::clear_has_bulletcount() {
- _has_bits_[0] &= ~0x00000008u;
- }
- inline void packetl2c_get_freedom_match_info_result::clear_bulletcount() {
- bulletcount_ = 0;
- clear_has_bulletcount();
- }
- inline ::google::protobuf::int32 packetl2c_get_freedom_match_info_result::bulletcount() const {
- return bulletcount_;
- }
- inline void packetl2c_get_freedom_match_info_result::set_bulletcount(::google::protobuf::int32 value) {
- set_has_bulletcount();
- bulletcount_ = value;
- }
- // optional int32 curScore = 5;
- inline bool packetl2c_get_freedom_match_info_result::has_curscore() const {
- return (_has_bits_[0] & 0x00000010u) != 0;
- }
- inline void packetl2c_get_freedom_match_info_result::set_has_curscore() {
- _has_bits_[0] |= 0x00000010u;
- }
- inline void packetl2c_get_freedom_match_info_result::clear_has_curscore() {
- _has_bits_[0] &= ~0x00000010u;
- }
- inline void packetl2c_get_freedom_match_info_result::clear_curscore() {
- curscore_ = 0;
- clear_has_curscore();
- }
- inline ::google::protobuf::int32 packetl2c_get_freedom_match_info_result::curscore() const {
- return curscore_;
- }
- inline void packetl2c_get_freedom_match_info_result::set_curscore(::google::protobuf::int32 value) {
- set_has_curscore();
- curscore_ = value;
- }
- // optional int32 joinCount = 6;
- inline bool packetl2c_get_freedom_match_info_result::has_joincount() const {
- return (_has_bits_[0] & 0x00000020u) != 0;
- }
- inline void packetl2c_get_freedom_match_info_result::set_has_joincount() {
- _has_bits_[0] |= 0x00000020u;
- }
- inline void packetl2c_get_freedom_match_info_result::clear_has_joincount() {
- _has_bits_[0] &= ~0x00000020u;
- }
- inline void packetl2c_get_freedom_match_info_result::clear_joincount() {
- joincount_ = 0;
- clear_has_joincount();
- }
- inline ::google::protobuf::int32 packetl2c_get_freedom_match_info_result::joincount() const {
- return joincount_;
- }
- inline void packetl2c_get_freedom_match_info_result::set_joincount(::google::protobuf::int32 value) {
- set_has_joincount();
- joincount_ = value;
- }
- // optional int32 leftSecond = 7;
- inline bool packetl2c_get_freedom_match_info_result::has_leftsecond() const {
- return (_has_bits_[0] & 0x00000040u) != 0;
- }
- inline void packetl2c_get_freedom_match_info_result::set_has_leftsecond() {
- _has_bits_[0] |= 0x00000040u;
- }
- inline void packetl2c_get_freedom_match_info_result::clear_has_leftsecond() {
- _has_bits_[0] &= ~0x00000040u;
- }
- inline void packetl2c_get_freedom_match_info_result::clear_leftsecond() {
- leftsecond_ = 0;
- clear_has_leftsecond();
- }
- inline ::google::protobuf::int32 packetl2c_get_freedom_match_info_result::leftsecond() const {
- return leftsecond_;
- }
- inline void packetl2c_get_freedom_match_info_result::set_leftsecond(::google::protobuf::int32 value) {
- set_has_leftsecond();
- leftsecond_ = value;
- }
- // optional .fish_protocols.matchRankInfo selfDayRank = 8;
- inline bool packetl2c_get_freedom_match_info_result::has_selfdayrank() const {
- return (_has_bits_[0] & 0x00000080u) != 0;
- }
- inline void packetl2c_get_freedom_match_info_result::set_has_selfdayrank() {
- _has_bits_[0] |= 0x00000080u;
- }
- inline void packetl2c_get_freedom_match_info_result::clear_has_selfdayrank() {
- _has_bits_[0] &= ~0x00000080u;
- }
- inline void packetl2c_get_freedom_match_info_result::clear_selfdayrank() {
- if (selfdayrank_ != NULL) selfdayrank_->::fish_protocols::matchRankInfo::Clear();
- clear_has_selfdayrank();
- }
- inline const ::fish_protocols::matchRankInfo& packetl2c_get_freedom_match_info_result::selfdayrank() const {
- return selfdayrank_ != NULL ? *selfdayrank_ : *default_instance_->selfdayrank_;
- }
- inline ::fish_protocols::matchRankInfo* packetl2c_get_freedom_match_info_result::mutable_selfdayrank() {
- set_has_selfdayrank();
- if (selfdayrank_ == NULL) selfdayrank_ = new ::fish_protocols::matchRankInfo;
- return selfdayrank_;
- }
- inline ::fish_protocols::matchRankInfo* packetl2c_get_freedom_match_info_result::release_selfdayrank() {
- clear_has_selfdayrank();
- ::fish_protocols::matchRankInfo* temp = selfdayrank_;
- selfdayrank_ = NULL;
- return temp;
- }
- inline void packetl2c_get_freedom_match_info_result::set_allocated_selfdayrank(::fish_protocols::matchRankInfo* selfdayrank) {
- delete selfdayrank_;
- selfdayrank_ = selfdayrank;
- if (selfdayrank) {
- set_has_selfdayrank();
- } else {
- clear_has_selfdayrank();
- }
- }
- // optional int32 startTime = 9;
- inline bool packetl2c_get_freedom_match_info_result::has_starttime() const {
- return (_has_bits_[0] & 0x00000100u) != 0;
- }
- inline void packetl2c_get_freedom_match_info_result::set_has_starttime() {
- _has_bits_[0] |= 0x00000100u;
- }
- inline void packetl2c_get_freedom_match_info_result::clear_has_starttime() {
- _has_bits_[0] &= ~0x00000100u;
- }
- inline void packetl2c_get_freedom_match_info_result::clear_starttime() {
- starttime_ = 0;
- clear_has_starttime();
- }
- inline ::google::protobuf::int32 packetl2c_get_freedom_match_info_result::starttime() const {
- return starttime_;
- }
- inline void packetl2c_get_freedom_match_info_result::set_starttime(::google::protobuf::int32 value) {
- set_has_starttime();
- starttime_ = value;
- }
- // optional int32 endTime = 10;
- inline bool packetl2c_get_freedom_match_info_result::has_endtime() const {
- return (_has_bits_[0] & 0x00000200u) != 0;
- }
- inline void packetl2c_get_freedom_match_info_result::set_has_endtime() {
- _has_bits_[0] |= 0x00000200u;
- }
- inline void packetl2c_get_freedom_match_info_result::clear_has_endtime() {
- _has_bits_[0] &= ~0x00000200u;
- }
- inline void packetl2c_get_freedom_match_info_result::clear_endtime() {
- endtime_ = 0;
- clear_has_endtime();
- }
- inline ::google::protobuf::int32 packetl2c_get_freedom_match_info_result::endtime() const {
- return endtime_;
- }
- inline void packetl2c_get_freedom_match_info_result::set_endtime(::google::protobuf::int32 value) {
- set_has_endtime();
- endtime_ = value;
- }
- // -------------------------------------------------------------------
- // packetc2l_syn_freedom_match_bullet
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_syn_freedom_match_bullet];
- inline bool packetc2l_syn_freedom_match_bullet::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetc2l_syn_freedom_match_bullet::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetc2l_syn_freedom_match_bullet::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetc2l_syn_freedom_match_bullet::clear_packet_id() {
- packet_id_ = 10224;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetc2l_syn_freedom_match_bullet::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetc2l_syn_freedom_match_bullet::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 roomId = 2;
- inline bool packetc2l_syn_freedom_match_bullet::has_roomid() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetc2l_syn_freedom_match_bullet::set_has_roomid() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetc2l_syn_freedom_match_bullet::clear_has_roomid() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetc2l_syn_freedom_match_bullet::clear_roomid() {
- roomid_ = 0;
- clear_has_roomid();
- }
- inline ::google::protobuf::int32 packetc2l_syn_freedom_match_bullet::roomid() const {
- return roomid_;
- }
- inline void packetc2l_syn_freedom_match_bullet::set_roomid(::google::protobuf::int32 value) {
- set_has_roomid();
- roomid_ = value;
- }
- // -------------------------------------------------------------------
- // packetl2c_syn_freedom_match_bullet_result
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_syn_freedom_match_bullet_result];
- inline bool packetl2c_syn_freedom_match_bullet_result::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetl2c_syn_freedom_match_bullet_result::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetl2c_syn_freedom_match_bullet_result::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetl2c_syn_freedom_match_bullet_result::clear_packet_id() {
- packet_id_ = 16230;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetl2c_syn_freedom_match_bullet_result::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetl2c_syn_freedom_match_bullet_result::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 roomId = 2;
- inline bool packetl2c_syn_freedom_match_bullet_result::has_roomid() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetl2c_syn_freedom_match_bullet_result::set_has_roomid() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetl2c_syn_freedom_match_bullet_result::clear_has_roomid() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetl2c_syn_freedom_match_bullet_result::clear_roomid() {
- roomid_ = 0;
- clear_has_roomid();
- }
- inline ::google::protobuf::int32 packetl2c_syn_freedom_match_bullet_result::roomid() const {
- return roomid_;
- }
- inline void packetl2c_syn_freedom_match_bullet_result::set_roomid(::google::protobuf::int32 value) {
- set_has_roomid();
- roomid_ = value;
- }
- // optional int32 bulletCount = 3;
- inline bool packetl2c_syn_freedom_match_bullet_result::has_bulletcount() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void packetl2c_syn_freedom_match_bullet_result::set_has_bulletcount() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void packetl2c_syn_freedom_match_bullet_result::clear_has_bulletcount() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void packetl2c_syn_freedom_match_bullet_result::clear_bulletcount() {
- bulletcount_ = 0;
- clear_has_bulletcount();
- }
- inline ::google::protobuf::int32 packetl2c_syn_freedom_match_bullet_result::bulletcount() const {
- return bulletcount_;
- }
- inline void packetl2c_syn_freedom_match_bullet_result::set_bulletcount(::google::protobuf::int32 value) {
- set_has_bulletcount();
- bulletcount_ = value;
- }
- // -------------------------------------------------------------------
- // packetc2l_join_freedom_match
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_join_freedom_match];
- inline bool packetc2l_join_freedom_match::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetc2l_join_freedom_match::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetc2l_join_freedom_match::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetc2l_join_freedom_match::clear_packet_id() {
- packet_id_ = 10157;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetc2l_join_freedom_match::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetc2l_join_freedom_match::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 roomId = 2;
- inline bool packetc2l_join_freedom_match::has_roomid() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetc2l_join_freedom_match::set_has_roomid() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetc2l_join_freedom_match::clear_has_roomid() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetc2l_join_freedom_match::clear_roomid() {
- roomid_ = 0;
- clear_has_roomid();
- }
- inline ::google::protobuf::int32 packetc2l_join_freedom_match::roomid() const {
- return roomid_;
- }
- inline void packetc2l_join_freedom_match::set_roomid(::google::protobuf::int32 value) {
- set_has_roomid();
- roomid_ = value;
- }
- // -------------------------------------------------------------------
- // packetl2c_join_freedom_match_result
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_join_freedom_match_result];
- inline bool packetl2c_join_freedom_match_result::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetl2c_join_freedom_match_result::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetl2c_join_freedom_match_result::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetl2c_join_freedom_match_result::clear_packet_id() {
- packet_id_ = 16213;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetl2c_join_freedom_match_result::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetl2c_join_freedom_match_result::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 result = 2;
- inline bool packetl2c_join_freedom_match_result::has_result() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetl2c_join_freedom_match_result::set_has_result() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetl2c_join_freedom_match_result::clear_has_result() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetl2c_join_freedom_match_result::clear_result() {
- result_ = 0;
- clear_has_result();
- }
- inline ::google::protobuf::int32 packetl2c_join_freedom_match_result::result() const {
- return result_;
- }
- inline void packetl2c_join_freedom_match_result::set_result(::google::protobuf::int32 value) {
- set_has_result();
- result_ = value;
- }
- // optional int32 roomId = 3;
- inline bool packetl2c_join_freedom_match_result::has_roomid() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void packetl2c_join_freedom_match_result::set_has_roomid() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void packetl2c_join_freedom_match_result::clear_has_roomid() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void packetl2c_join_freedom_match_result::clear_roomid() {
- roomid_ = 0;
- clear_has_roomid();
- }
- inline ::google::protobuf::int32 packetl2c_join_freedom_match_result::roomid() const {
- return roomid_;
- }
- inline void packetl2c_join_freedom_match_result::set_roomid(::google::protobuf::int32 value) {
- set_has_roomid();
- roomid_ = value;
- }
- // optional int32 playerId = 4;
- inline bool packetl2c_join_freedom_match_result::has_playerid() const {
- return (_has_bits_[0] & 0x00000008u) != 0;
- }
- inline void packetl2c_join_freedom_match_result::set_has_playerid() {
- _has_bits_[0] |= 0x00000008u;
- }
- inline void packetl2c_join_freedom_match_result::clear_has_playerid() {
- _has_bits_[0] &= ~0x00000008u;
- }
- inline void packetl2c_join_freedom_match_result::clear_playerid() {
- playerid_ = 0;
- clear_has_playerid();
- }
- inline ::google::protobuf::int32 packetl2c_join_freedom_match_result::playerid() const {
- return playerid_;
- }
- inline void packetl2c_join_freedom_match_result::set_playerid(::google::protobuf::int32 value) {
- set_has_playerid();
- playerid_ = value;
- }
- // optional int32 bulletCount = 5;
- inline bool packetl2c_join_freedom_match_result::has_bulletcount() const {
- return (_has_bits_[0] & 0x00000010u) != 0;
- }
- inline void packetl2c_join_freedom_match_result::set_has_bulletcount() {
- _has_bits_[0] |= 0x00000010u;
- }
- inline void packetl2c_join_freedom_match_result::clear_has_bulletcount() {
- _has_bits_[0] &= ~0x00000010u;
- }
- inline void packetl2c_join_freedom_match_result::clear_bulletcount() {
- bulletcount_ = 0;
- clear_has_bulletcount();
- }
- inline ::google::protobuf::int32 packetl2c_join_freedom_match_result::bulletcount() const {
- return bulletcount_;
- }
- inline void packetl2c_join_freedom_match_result::set_bulletcount(::google::protobuf::int32 value) {
- set_has_bulletcount();
- bulletcount_ = value;
- }
- // optional int32 curScore = 6;
- inline bool packetl2c_join_freedom_match_result::has_curscore() const {
- return (_has_bits_[0] & 0x00000020u) != 0;
- }
- inline void packetl2c_join_freedom_match_result::set_has_curscore() {
- _has_bits_[0] |= 0x00000020u;
- }
- inline void packetl2c_join_freedom_match_result::clear_has_curscore() {
- _has_bits_[0] &= ~0x00000020u;
- }
- inline void packetl2c_join_freedom_match_result::clear_curscore() {
- curscore_ = 0;
- clear_has_curscore();
- }
- inline ::google::protobuf::int32 packetl2c_join_freedom_match_result::curscore() const {
- return curscore_;
- }
- inline void packetl2c_join_freedom_match_result::set_curscore(::google::protobuf::int32 value) {
- set_has_curscore();
- curscore_ = value;
- }
- // optional int32 joinCount = 7;
- inline bool packetl2c_join_freedom_match_result::has_joincount() const {
- return (_has_bits_[0] & 0x00000040u) != 0;
- }
- inline void packetl2c_join_freedom_match_result::set_has_joincount() {
- _has_bits_[0] |= 0x00000040u;
- }
- inline void packetl2c_join_freedom_match_result::clear_has_joincount() {
- _has_bits_[0] &= ~0x00000040u;
- }
- inline void packetl2c_join_freedom_match_result::clear_joincount() {
- joincount_ = 0;
- clear_has_joincount();
- }
- inline ::google::protobuf::int32 packetl2c_join_freedom_match_result::joincount() const {
- return joincount_;
- }
- inline void packetl2c_join_freedom_match_result::set_joincount(::google::protobuf::int32 value) {
- set_has_joincount();
- joincount_ = value;
- }
- // optional int32 leftSecond = 8;
- inline bool packetl2c_join_freedom_match_result::has_leftsecond() const {
- return (_has_bits_[0] & 0x00000080u) != 0;
- }
- inline void packetl2c_join_freedom_match_result::set_has_leftsecond() {
- _has_bits_[0] |= 0x00000080u;
- }
- inline void packetl2c_join_freedom_match_result::clear_has_leftsecond() {
- _has_bits_[0] &= ~0x00000080u;
- }
- inline void packetl2c_join_freedom_match_result::clear_leftsecond() {
- leftsecond_ = 0;
- clear_has_leftsecond();
- }
- inline ::google::protobuf::int32 packetl2c_join_freedom_match_result::leftsecond() const {
- return leftsecond_;
- }
- inline void packetl2c_join_freedom_match_result::set_leftsecond(::google::protobuf::int32 value) {
- set_has_leftsecond();
- leftsecond_ = value;
- }
- // -------------------------------------------------------------------
- // packetc2l_freedom_match_do_balance
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_freedom_match_do_balance];
- inline bool packetc2l_freedom_match_do_balance::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetc2l_freedom_match_do_balance::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetc2l_freedom_match_do_balance::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetc2l_freedom_match_do_balance::clear_packet_id() {
- packet_id_ = 10158;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetc2l_freedom_match_do_balance::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetc2l_freedom_match_do_balance::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 roomId = 2;
- inline bool packetc2l_freedom_match_do_balance::has_roomid() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetc2l_freedom_match_do_balance::set_has_roomid() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetc2l_freedom_match_do_balance::clear_has_roomid() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetc2l_freedom_match_do_balance::clear_roomid() {
- roomid_ = 0;
- clear_has_roomid();
- }
- inline ::google::protobuf::int32 packetc2l_freedom_match_do_balance::roomid() const {
- return roomid_;
- }
- inline void packetc2l_freedom_match_do_balance::set_roomid(::google::protobuf::int32 value) {
- set_has_roomid();
- roomid_ = value;
- }
- // -------------------------------------------------------------------
- // packetl2c_freedom_match_end_notify
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_freedom_match_end_notify];
- inline bool packetl2c_freedom_match_end_notify::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetl2c_freedom_match_end_notify::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetl2c_freedom_match_end_notify::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetl2c_freedom_match_end_notify::clear_packet_id() {
- packet_id_ = 16214;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetl2c_freedom_match_end_notify::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetl2c_freedom_match_end_notify::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 roomId = 2;
- inline bool packetl2c_freedom_match_end_notify::has_roomid() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetl2c_freedom_match_end_notify::set_has_roomid() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetl2c_freedom_match_end_notify::clear_has_roomid() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetl2c_freedom_match_end_notify::clear_roomid() {
- roomid_ = 0;
- clear_has_roomid();
- }
- inline ::google::protobuf::int32 packetl2c_freedom_match_end_notify::roomid() const {
- return roomid_;
- }
- inline void packetl2c_freedom_match_end_notify::set_roomid(::google::protobuf::int32 value) {
- set_has_roomid();
- roomid_ = value;
- }
- // optional int32 reason = 3;
- inline bool packetl2c_freedom_match_end_notify::has_reason() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void packetl2c_freedom_match_end_notify::set_has_reason() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void packetl2c_freedom_match_end_notify::clear_has_reason() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void packetl2c_freedom_match_end_notify::clear_reason() {
- reason_ = 0;
- clear_has_reason();
- }
- inline ::google::protobuf::int32 packetl2c_freedom_match_end_notify::reason() const {
- return reason_;
- }
- inline void packetl2c_freedom_match_end_notify::set_reason(::google::protobuf::int32 value) {
- set_has_reason();
- reason_ = value;
- }
- // repeated .fish_protocols.buffInfo buffList = 4;
- inline int packetl2c_freedom_match_end_notify::bufflist_size() const {
- return bufflist_.size();
- }
- inline void packetl2c_freedom_match_end_notify::clear_bufflist() {
- bufflist_.Clear();
- }
- inline const ::fish_protocols::buffInfo& packetl2c_freedom_match_end_notify::bufflist(int index) const {
- return bufflist_.Get(index);
- }
- inline ::fish_protocols::buffInfo* packetl2c_freedom_match_end_notify::mutable_bufflist(int index) {
- return bufflist_.Mutable(index);
- }
- inline ::fish_protocols::buffInfo* packetl2c_freedom_match_end_notify::add_bufflist() {
- return bufflist_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::buffInfo >&
- packetl2c_freedom_match_end_notify::bufflist() const {
- return bufflist_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::buffInfo >*
- packetl2c_freedom_match_end_notify::mutable_bufflist() {
- return &bufflist_;
- }
- // optional int32 rank = 5;
- inline bool packetl2c_freedom_match_end_notify::has_rank() const {
- return (_has_bits_[0] & 0x00000010u) != 0;
- }
- inline void packetl2c_freedom_match_end_notify::set_has_rank() {
- _has_bits_[0] |= 0x00000010u;
- }
- inline void packetl2c_freedom_match_end_notify::clear_has_rank() {
- _has_bits_[0] &= ~0x00000010u;
- }
- inline void packetl2c_freedom_match_end_notify::clear_rank() {
- rank_ = 0;
- clear_has_rank();
- }
- inline ::google::protobuf::int32 packetl2c_freedom_match_end_notify::rank() const {
- return rank_;
- }
- inline void packetl2c_freedom_match_end_notify::set_rank(::google::protobuf::int32 value) {
- set_has_rank();
- rank_ = value;
- }
- // optional int32 curBaseScore = 6;
- inline bool packetl2c_freedom_match_end_notify::has_curbasescore() const {
- return (_has_bits_[0] & 0x00000020u) != 0;
- }
- inline void packetl2c_freedom_match_end_notify::set_has_curbasescore() {
- _has_bits_[0] |= 0x00000020u;
- }
- inline void packetl2c_freedom_match_end_notify::clear_has_curbasescore() {
- _has_bits_[0] &= ~0x00000020u;
- }
- inline void packetl2c_freedom_match_end_notify::clear_curbasescore() {
- curbasescore_ = 0;
- clear_has_curbasescore();
- }
- inline ::google::protobuf::int32 packetl2c_freedom_match_end_notify::curbasescore() const {
- return curbasescore_;
- }
- inline void packetl2c_freedom_match_end_notify::set_curbasescore(::google::protobuf::int32 value) {
- set_has_curbasescore();
- curbasescore_ = value;
- }
- // optional int32 curAddScore = 7;
- inline bool packetl2c_freedom_match_end_notify::has_curaddscore() const {
- return (_has_bits_[0] & 0x00000040u) != 0;
- }
- inline void packetl2c_freedom_match_end_notify::set_has_curaddscore() {
- _has_bits_[0] |= 0x00000040u;
- }
- inline void packetl2c_freedom_match_end_notify::clear_has_curaddscore() {
- _has_bits_[0] &= ~0x00000040u;
- }
- inline void packetl2c_freedom_match_end_notify::clear_curaddscore() {
- curaddscore_ = 0;
- clear_has_curaddscore();
- }
- inline ::google::protobuf::int32 packetl2c_freedom_match_end_notify::curaddscore() const {
- return curaddscore_;
- }
- inline void packetl2c_freedom_match_end_notify::set_curaddscore(::google::protobuf::int32 value) {
- set_has_curaddscore();
- curaddscore_ = value;
- }
- // optional int32 topScore = 8;
- inline bool packetl2c_freedom_match_end_notify::has_topscore() const {
- return (_has_bits_[0] & 0x00000080u) != 0;
- }
- inline void packetl2c_freedom_match_end_notify::set_has_topscore() {
- _has_bits_[0] |= 0x00000080u;
- }
- inline void packetl2c_freedom_match_end_notify::clear_has_topscore() {
- _has_bits_[0] &= ~0x00000080u;
- }
- inline void packetl2c_freedom_match_end_notify::clear_topscore() {
- topscore_ = 0;
- clear_has_topscore();
- }
- inline ::google::protobuf::int32 packetl2c_freedom_match_end_notify::topscore() const {
- return topscore_;
- }
- inline void packetl2c_freedom_match_end_notify::set_topscore(::google::protobuf::int32 value) {
- set_has_topscore();
- topscore_ = value;
- }
- // @@protoc_insertion_point(namespace_scope)
- } // namespace fish_protocols
- #ifndef SWIG
- namespace google {
- namespace protobuf {
- } // namespace google
- } // namespace protobuf
- #endif // SWIG
- // @@protoc_insertion_point(global_scope)
- #endif // PROTOBUF_fish_5fmatch_2eproto__INCLUDED
|