123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814 |
- // Generated by the protocol buffer compiler. DO NOT EDIT!
- // source: client2world_rank.proto
- #define INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION
- #include "client2world_rank.pb.h"
- #include <algorithm>
- #include <google/protobuf/stubs/common.h>
- #include <google/protobuf/stubs/once.h>
- #include <google/protobuf/io/coded_stream.h>
- #include <google/protobuf/wire_format_lite_inl.h>
- #include <google/protobuf/descriptor.h>
- #include <google/protobuf/generated_message_reflection.h>
- #include <google/protobuf/reflection_ops.h>
- #include <google/protobuf/wire_format.h>
- // @@protoc_insertion_point(includes)
- namespace client2world_protocols {
- namespace {
- const ::google::protobuf::Descriptor* RankInfo_descriptor_ = NULL;
- const ::google::protobuf::internal::GeneratedMessageReflection*
- RankInfo_reflection_ = NULL;
- const ::google::protobuf::Descriptor* packetc2w_req_coin_rank_descriptor_ = NULL;
- const ::google::protobuf::internal::GeneratedMessageReflection*
- packetc2w_req_coin_rank_reflection_ = NULL;
- const ::google::protobuf::Descriptor* packetw2c_req_coin_rank_result_descriptor_ = NULL;
- const ::google::protobuf::internal::GeneratedMessageReflection*
- packetw2c_req_coin_rank_result_reflection_ = NULL;
- const ::google::protobuf::Descriptor* RechargeInfo_descriptor_ = NULL;
- const ::google::protobuf::internal::GeneratedMessageReflection*
- RechargeInfo_reflection_ = NULL;
- const ::google::protobuf::Descriptor* packetc2w_req_recharge_rank_descriptor_ = NULL;
- const ::google::protobuf::internal::GeneratedMessageReflection*
- packetc2w_req_recharge_rank_reflection_ = NULL;
- const ::google::protobuf::Descriptor* packetw2c_req_recharge_rank_result_descriptor_ = NULL;
- const ::google::protobuf::internal::GeneratedMessageReflection*
- packetw2c_req_recharge_rank_result_reflection_ = NULL;
- const ::google::protobuf::Descriptor* packetc2w_req_coin_growth_descriptor_ = NULL;
- const ::google::protobuf::internal::GeneratedMessageReflection*
- packetc2w_req_coin_growth_reflection_ = NULL;
- const ::google::protobuf::Descriptor* packetw2c_req_coin_growth_result_descriptor_ = NULL;
- const ::google::protobuf::internal::GeneratedMessageReflection*
- packetw2c_req_coin_growth_result_reflection_ = NULL;
- } // namespace
- void protobuf_AssignDesc_client2world_5frank_2eproto() {
- protobuf_AddDesc_client2world_5frank_2eproto();
- const ::google::protobuf::FileDescriptor* file =
- ::google::protobuf::DescriptorPool::generated_pool()->FindFileByName(
- "client2world_rank.proto");
- GOOGLE_CHECK(file != NULL);
- RankInfo_descriptor_ = file->message_type(0);
- static const int RankInfo_offsets_[7] = {
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RankInfo, playerid_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RankInfo, nickname_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RankInfo, gold_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RankInfo, viplevel_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RankInfo, playerlv_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RankInfo, headid_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RankInfo, frameid_),
- };
- RankInfo_reflection_ =
- new ::google::protobuf::internal::GeneratedMessageReflection(
- RankInfo_descriptor_,
- RankInfo::default_instance_,
- RankInfo_offsets_,
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RankInfo, _has_bits_[0]),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RankInfo, _unknown_fields_),
- -1,
- ::google::protobuf::DescriptorPool::generated_pool(),
- ::google::protobuf::MessageFactory::generated_factory(),
- sizeof(RankInfo));
- packetc2w_req_coin_rank_descriptor_ = file->message_type(1);
- static const int packetc2w_req_coin_rank_offsets_[1] = {
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_req_coin_rank, packet_id_),
- };
- packetc2w_req_coin_rank_reflection_ =
- new ::google::protobuf::internal::GeneratedMessageReflection(
- packetc2w_req_coin_rank_descriptor_,
- packetc2w_req_coin_rank::default_instance_,
- packetc2w_req_coin_rank_offsets_,
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_req_coin_rank, _has_bits_[0]),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_req_coin_rank, _unknown_fields_),
- -1,
- ::google::protobuf::DescriptorPool::generated_pool(),
- ::google::protobuf::MessageFactory::generated_factory(),
- sizeof(packetc2w_req_coin_rank));
- packetw2c_req_coin_rank_result_descriptor_ = file->message_type(2);
- static const int packetw2c_req_coin_rank_result_offsets_[3] = {
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_coin_rank_result, packet_id_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_coin_rank_result, ranklist_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_coin_rank_result, selfrank_),
- };
- packetw2c_req_coin_rank_result_reflection_ =
- new ::google::protobuf::internal::GeneratedMessageReflection(
- packetw2c_req_coin_rank_result_descriptor_,
- packetw2c_req_coin_rank_result::default_instance_,
- packetw2c_req_coin_rank_result_offsets_,
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_coin_rank_result, _has_bits_[0]),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_coin_rank_result, _unknown_fields_),
- -1,
- ::google::protobuf::DescriptorPool::generated_pool(),
- ::google::protobuf::MessageFactory::generated_factory(),
- sizeof(packetw2c_req_coin_rank_result));
- RechargeInfo_descriptor_ = file->message_type(3);
- static const int RechargeInfo_offsets_[4] = {
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RechargeInfo, playerid_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RechargeInfo, nickname_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RechargeInfo, rmb_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RechargeInfo, viplevel_),
- };
- RechargeInfo_reflection_ =
- new ::google::protobuf::internal::GeneratedMessageReflection(
- RechargeInfo_descriptor_,
- RechargeInfo::default_instance_,
- RechargeInfo_offsets_,
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RechargeInfo, _has_bits_[0]),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(RechargeInfo, _unknown_fields_),
- -1,
- ::google::protobuf::DescriptorPool::generated_pool(),
- ::google::protobuf::MessageFactory::generated_factory(),
- sizeof(RechargeInfo));
- packetc2w_req_recharge_rank_descriptor_ = file->message_type(4);
- static const int packetc2w_req_recharge_rank_offsets_[2] = {
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_req_recharge_rank, packet_id_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_req_recharge_rank, is_yesterday_),
- };
- packetc2w_req_recharge_rank_reflection_ =
- new ::google::protobuf::internal::GeneratedMessageReflection(
- packetc2w_req_recharge_rank_descriptor_,
- packetc2w_req_recharge_rank::default_instance_,
- packetc2w_req_recharge_rank_offsets_,
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_req_recharge_rank, _has_bits_[0]),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_req_recharge_rank, _unknown_fields_),
- -1,
- ::google::protobuf::DescriptorPool::generated_pool(),
- ::google::protobuf::MessageFactory::generated_factory(),
- sizeof(packetc2w_req_recharge_rank));
- packetw2c_req_recharge_rank_result_descriptor_ = file->message_type(5);
- static const int packetw2c_req_recharge_rank_result_offsets_[5] = {
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_recharge_rank_result, packet_id_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_recharge_rank_result, ranklist_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_recharge_rank_result, selfrank_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_recharge_rank_result, selfrmb_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_recharge_rank_result, is_yesterday_),
- };
- packetw2c_req_recharge_rank_result_reflection_ =
- new ::google::protobuf::internal::GeneratedMessageReflection(
- packetw2c_req_recharge_rank_result_descriptor_,
- packetw2c_req_recharge_rank_result::default_instance_,
- packetw2c_req_recharge_rank_result_offsets_,
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_recharge_rank_result, _has_bits_[0]),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_recharge_rank_result, _unknown_fields_),
- -1,
- ::google::protobuf::DescriptorPool::generated_pool(),
- ::google::protobuf::MessageFactory::generated_factory(),
- sizeof(packetw2c_req_recharge_rank_result));
- packetc2w_req_coin_growth_descriptor_ = file->message_type(6);
- static const int packetc2w_req_coin_growth_offsets_[1] = {
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_req_coin_growth, packet_id_),
- };
- packetc2w_req_coin_growth_reflection_ =
- new ::google::protobuf::internal::GeneratedMessageReflection(
- packetc2w_req_coin_growth_descriptor_,
- packetc2w_req_coin_growth::default_instance_,
- packetc2w_req_coin_growth_offsets_,
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_req_coin_growth, _has_bits_[0]),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_req_coin_growth, _unknown_fields_),
- -1,
- ::google::protobuf::DescriptorPool::generated_pool(),
- ::google::protobuf::MessageFactory::generated_factory(),
- sizeof(packetc2w_req_coin_growth));
- packetw2c_req_coin_growth_result_descriptor_ = file->message_type(7);
- static const int packetw2c_req_coin_growth_result_offsets_[4] = {
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_coin_growth_result, packet_id_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_coin_growth_result, ranklist_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_coin_growth_result, selfrank_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_coin_growth_result, selfgold_),
- };
- packetw2c_req_coin_growth_result_reflection_ =
- new ::google::protobuf::internal::GeneratedMessageReflection(
- packetw2c_req_coin_growth_result_descriptor_,
- packetw2c_req_coin_growth_result::default_instance_,
- packetw2c_req_coin_growth_result_offsets_,
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_coin_growth_result, _has_bits_[0]),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_coin_growth_result, _unknown_fields_),
- -1,
- ::google::protobuf::DescriptorPool::generated_pool(),
- ::google::protobuf::MessageFactory::generated_factory(),
- sizeof(packetw2c_req_coin_growth_result));
- }
- namespace {
- GOOGLE_PROTOBUF_DECLARE_ONCE(protobuf_AssignDescriptors_once_);
- inline void protobuf_AssignDescriptorsOnce() {
- ::google::protobuf::GoogleOnceInit(&protobuf_AssignDescriptors_once_,
- &protobuf_AssignDesc_client2world_5frank_2eproto);
- }
- void protobuf_RegisterTypes(const ::std::string&) {
- protobuf_AssignDescriptorsOnce();
- ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
- RankInfo_descriptor_, &RankInfo::default_instance());
- ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
- packetc2w_req_coin_rank_descriptor_, &packetc2w_req_coin_rank::default_instance());
- ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
- packetw2c_req_coin_rank_result_descriptor_, &packetw2c_req_coin_rank_result::default_instance());
- ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
- RechargeInfo_descriptor_, &RechargeInfo::default_instance());
- ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
- packetc2w_req_recharge_rank_descriptor_, &packetc2w_req_recharge_rank::default_instance());
- ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
- packetw2c_req_recharge_rank_result_descriptor_, &packetw2c_req_recharge_rank_result::default_instance());
- ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
- packetc2w_req_coin_growth_descriptor_, &packetc2w_req_coin_growth::default_instance());
- ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
- packetw2c_req_coin_growth_result_descriptor_, &packetw2c_req_coin_growth_result::default_instance());
- }
- } // namespace
- void protobuf_ShutdownFile_client2world_5frank_2eproto() {
- delete RankInfo::default_instance_;
- delete RankInfo_reflection_;
- delete packetc2w_req_coin_rank::default_instance_;
- delete packetc2w_req_coin_rank_reflection_;
- delete packetw2c_req_coin_rank_result::default_instance_;
- delete packetw2c_req_coin_rank_result_reflection_;
- delete RechargeInfo::default_instance_;
- delete RechargeInfo_reflection_;
- delete packetc2w_req_recharge_rank::default_instance_;
- delete packetc2w_req_recharge_rank_reflection_;
- delete packetw2c_req_recharge_rank_result::default_instance_;
- delete packetw2c_req_recharge_rank_result_reflection_;
- delete packetc2w_req_coin_growth::default_instance_;
- delete packetc2w_req_coin_growth_reflection_;
- delete packetw2c_req_coin_growth_result::default_instance_;
- delete packetw2c_req_coin_growth_result_reflection_;
- }
- void protobuf_AddDesc_client2world_5frank_2eproto() {
- static bool already_here = false;
- if (already_here) return;
- already_here = true;
- GOOGLE_PROTOBUF_VERIFY_VERSION;
- ::client2world_protocols::protobuf_AddDesc_client2world_5fmsg_5ftype_2eproto();
- ::msg_type_def::protobuf_AddDesc_msg_5ftype_5fdef_2eproto();
- ::msg_info_def::protobuf_AddDesc_msg_5finfo_5fdef_2eproto();
- ::google::protobuf::DescriptorPool::InternalAddGeneratedFile(
- "\n\027client2world_rank.proto\022\026client2world_"
- "protocols\032\033client2world_msg_type.proto\032\022"
- "msg_type_def.proto\032\022msg_info_def.proto\"\201"
- "\001\n\010RankInfo\022\020\n\010playerId\030\001 \001(\005\022\020\n\010nickNam"
- "e\030\002 \001(\t\022\014\n\004gold\030\003 \001(\003\022\020\n\010vipLevel\030\004 \001(\005\022"
- "\020\n\010playerlv\030\005 \001(\005\022\016\n\006headid\030\006 \001(\005\022\017\n\007fra"
- "meid\030\007 \001(\005\"p\n\027packetc2w_req_coin_rank\022U\n"
- "\tpacket_id\030\001 \001(\0162).client2world_protocol"
- "s.e_server_msg_type:\027e_mst_c2w_req_coin_"
- "rank\"\304\001\n\036packetw2c_req_coin_rank_result\022"
- "\\\n\tpacket_id\030\001 \001(\0162).client2world_protoc"
- "ols.e_server_msg_type:\036e_mst_w2c_req_coi"
- "n_rank_result\0222\n\010rankList\030\002 \003(\0132 .client"
- "2world_protocols.RankInfo\022\020\n\010selfRank\030\003 "
- "\001(\005\"Q\n\014RechargeInfo\022\020\n\010playerId\030\001 \001(\005\022\020\n"
- "\010nickName\030\002 \001(\t\022\013\n\003rmb\030\003 \001(\005\022\020\n\010vipLevel"
- "\030\004 \001(\005\"\225\001\n\033packetc2w_req_recharge_rank\022Y"
- "\n\tpacket_id\030\001 \001(\0162).client2world_protoco"
- "ls.e_server_msg_type:\033e_mst_c2w_req_rech"
- "arge_rank\022\033\n\014is_yesterday\030\002 \001(\010:\005false\"\376"
- "\001\n\"packetw2c_req_recharge_rank_result\022`\n"
- "\tpacket_id\030\001 \001(\0162).client2world_protocol"
- "s.e_server_msg_type:\"e_mst_w2c_req_recha"
- "rge_rank_result\0226\n\010rankList\030\002 \003(\0132$.clie"
- "nt2world_protocols.RechargeInfo\022\020\n\010selfR"
- "ank\030\003 \001(\005\022\017\n\007selfrmb\030\004 \001(\005\022\033\n\014is_yesterd"
- "ay\030\005 \001(\010:\005false\"t\n\031packetc2w_req_coin_gr"
- "owth\022W\n\tpacket_id\030\001 \001(\0162).client2world_p"
- "rotocols.e_server_msg_type:\031e_mst_c2w_re"
- "q_coin_growth\"\332\001\n packetw2c_req_coin_gro"
- "wth_result\022^\n\tpacket_id\030\001 \001(\0162).client2w"
- "orld_protocols.e_server_msg_type: e_mst_"
- "w2c_req_coin_growth_result\0222\n\010rankList\030\002"
- " \003(\0132 .client2world_protocols.RankInfo\022\020"
- "\n\010selfRank\030\003 \001(\005\022\020\n\010selfGold\030\004 \001(\003", 1394);
- ::google::protobuf::MessageFactory::InternalRegisterGeneratedFile(
- "client2world_rank.proto", &protobuf_RegisterTypes);
- RankInfo::default_instance_ = new RankInfo();
- packetc2w_req_coin_rank::default_instance_ = new packetc2w_req_coin_rank();
- packetw2c_req_coin_rank_result::default_instance_ = new packetw2c_req_coin_rank_result();
- RechargeInfo::default_instance_ = new RechargeInfo();
- packetc2w_req_recharge_rank::default_instance_ = new packetc2w_req_recharge_rank();
- packetw2c_req_recharge_rank_result::default_instance_ = new packetw2c_req_recharge_rank_result();
- packetc2w_req_coin_growth::default_instance_ = new packetc2w_req_coin_growth();
- packetw2c_req_coin_growth_result::default_instance_ = new packetw2c_req_coin_growth_result();
- RankInfo::default_instance_->InitAsDefaultInstance();
- packetc2w_req_coin_rank::default_instance_->InitAsDefaultInstance();
- packetw2c_req_coin_rank_result::default_instance_->InitAsDefaultInstance();
- RechargeInfo::default_instance_->InitAsDefaultInstance();
- packetc2w_req_recharge_rank::default_instance_->InitAsDefaultInstance();
- packetw2c_req_recharge_rank_result::default_instance_->InitAsDefaultInstance();
- packetc2w_req_coin_growth::default_instance_->InitAsDefaultInstance();
- packetw2c_req_coin_growth_result::default_instance_->InitAsDefaultInstance();
- ::google::protobuf::internal::OnShutdown(&protobuf_ShutdownFile_client2world_5frank_2eproto);
- }
- // Force AddDescriptors() to be called at static initialization time.
- struct StaticDescriptorInitializer_client2world_5frank_2eproto {
- StaticDescriptorInitializer_client2world_5frank_2eproto() {
- protobuf_AddDesc_client2world_5frank_2eproto();
- }
- } static_descriptor_initializer_client2world_5frank_2eproto_;
- // ===================================================================
- #ifndef _MSC_VER
- const int RankInfo::kPlayerIdFieldNumber;
- const int RankInfo::kNickNameFieldNumber;
- const int RankInfo::kGoldFieldNumber;
- const int RankInfo::kVipLevelFieldNumber;
- const int RankInfo::kPlayerlvFieldNumber;
- const int RankInfo::kHeadidFieldNumber;
- const int RankInfo::kFrameidFieldNumber;
- #endif // !_MSC_VER
- RankInfo::RankInfo()
- : ::google::protobuf::Message() {
- SharedCtor();
- }
- void RankInfo::InitAsDefaultInstance() {
- }
- RankInfo::RankInfo(const RankInfo& from)
- : ::google::protobuf::Message() {
- SharedCtor();
- MergeFrom(from);
- }
- void RankInfo::SharedCtor() {
- _cached_size_ = 0;
- playerid_ = 0;
- nickname_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
- gold_ = GOOGLE_LONGLONG(0);
- viplevel_ = 0;
- playerlv_ = 0;
- headid_ = 0;
- frameid_ = 0;
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- }
- RankInfo::~RankInfo() {
- SharedDtor();
- }
- void RankInfo::SharedDtor() {
- if (nickname_ != &::google::protobuf::internal::kEmptyString) {
- delete nickname_;
- }
- if (this != default_instance_) {
- }
- }
- void RankInfo::SetCachedSize(int size) const {
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- }
- const ::google::protobuf::Descriptor* RankInfo::descriptor() {
- protobuf_AssignDescriptorsOnce();
- return RankInfo_descriptor_;
- }
- const RankInfo& RankInfo::default_instance() {
- if (default_instance_ == NULL) protobuf_AddDesc_client2world_5frank_2eproto();
- return *default_instance_;
- }
- RankInfo* RankInfo::default_instance_ = NULL;
- RankInfo* RankInfo::New() const {
- return new RankInfo;
- }
- void RankInfo::Clear() {
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- playerid_ = 0;
- if (has_nickname()) {
- if (nickname_ != &::google::protobuf::internal::kEmptyString) {
- nickname_->clear();
- }
- }
- gold_ = GOOGLE_LONGLONG(0);
- viplevel_ = 0;
- playerlv_ = 0;
- headid_ = 0;
- frameid_ = 0;
- }
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- mutable_unknown_fields()->Clear();
- }
- bool RankInfo::MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) {
- #define DO_(EXPRESSION) if (!(EXPRESSION)) return false
- ::google::protobuf::uint32 tag;
- while ((tag = input->ReadTag()) != 0) {
- switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
- // optional int32 playerId = 1;
- case 1: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &playerid_)));
- set_has_playerid();
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(18)) goto parse_nickName;
- break;
- }
- // optional string nickName = 2;
- case 2: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
- parse_nickName:
- DO_(::google::protobuf::internal::WireFormatLite::ReadString(
- input, this->mutable_nickname()));
- ::google::protobuf::internal::WireFormat::VerifyUTF8String(
- this->nickname().data(), this->nickname().length(),
- ::google::protobuf::internal::WireFormat::PARSE);
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(24)) goto parse_gold;
- break;
- }
- // optional int64 gold = 3;
- case 3: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_gold:
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int64, ::google::protobuf::internal::WireFormatLite::TYPE_INT64>(
- input, &gold_)));
- set_has_gold();
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(32)) goto parse_vipLevel;
- break;
- }
- // optional int32 vipLevel = 4;
- case 4: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_vipLevel:
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &viplevel_)));
- set_has_viplevel();
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(40)) goto parse_playerlv;
- break;
- }
- // optional int32 playerlv = 5;
- case 5: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_playerlv:
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &playerlv_)));
- set_has_playerlv();
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(48)) goto parse_headid;
- break;
- }
- // optional int32 headid = 6;
- case 6: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_headid:
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &headid_)));
- set_has_headid();
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(56)) goto parse_frameid;
- break;
- }
- // optional int32 frameid = 7;
- case 7: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_frameid:
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &frameid_)));
- set_has_frameid();
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectAtEnd()) return true;
- break;
- }
- default: {
- handle_uninterpreted:
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
- return true;
- }
- DO_(::google::protobuf::internal::WireFormat::SkipField(
- input, tag, mutable_unknown_fields()));
- break;
- }
- }
- }
- return true;
- #undef DO_
- }
- void RankInfo::SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const {
- // optional int32 playerId = 1;
- if (has_playerid()) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(1, this->playerid(), output);
- }
- // optional string nickName = 2;
- if (has_nickname()) {
- ::google::protobuf::internal::WireFormat::VerifyUTF8String(
- this->nickname().data(), this->nickname().length(),
- ::google::protobuf::internal::WireFormat::SERIALIZE);
- ::google::protobuf::internal::WireFormatLite::WriteString(
- 2, this->nickname(), output);
- }
- // optional int64 gold = 3;
- if (has_gold()) {
- ::google::protobuf::internal::WireFormatLite::WriteInt64(3, this->gold(), output);
- }
- // optional int32 vipLevel = 4;
- if (has_viplevel()) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(4, this->viplevel(), output);
- }
- // optional int32 playerlv = 5;
- if (has_playerlv()) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(5, this->playerlv(), output);
- }
- // optional int32 headid = 6;
- if (has_headid()) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(6, this->headid(), output);
- }
- // optional int32 frameid = 7;
- if (has_frameid()) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(7, this->frameid(), output);
- }
- if (!unknown_fields().empty()) {
- ::google::protobuf::internal::WireFormat::SerializeUnknownFields(
- unknown_fields(), output);
- }
- }
- ::google::protobuf::uint8* RankInfo::SerializeWithCachedSizesToArray(
- ::google::protobuf::uint8* target) const {
- // optional int32 playerId = 1;
- if (has_playerid()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(1, this->playerid(), target);
- }
- // optional string nickName = 2;
- if (has_nickname()) {
- ::google::protobuf::internal::WireFormat::VerifyUTF8String(
- this->nickname().data(), this->nickname().length(),
- ::google::protobuf::internal::WireFormat::SERIALIZE);
- target =
- ::google::protobuf::internal::WireFormatLite::WriteStringToArray(
- 2, this->nickname(), target);
- }
- // optional int64 gold = 3;
- if (has_gold()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt64ToArray(3, this->gold(), target);
- }
- // optional int32 vipLevel = 4;
- if (has_viplevel()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(4, this->viplevel(), target);
- }
- // optional int32 playerlv = 5;
- if (has_playerlv()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(5, this->playerlv(), target);
- }
- // optional int32 headid = 6;
- if (has_headid()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(6, this->headid(), target);
- }
- // optional int32 frameid = 7;
- if (has_frameid()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(7, this->frameid(), target);
- }
- if (!unknown_fields().empty()) {
- target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
- unknown_fields(), target);
- }
- return target;
- }
- int RankInfo::ByteSize() const {
- int total_size = 0;
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- // optional int32 playerId = 1;
- if (has_playerid()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->playerid());
- }
- // optional string nickName = 2;
- if (has_nickname()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::StringSize(
- this->nickname());
- }
- // optional int64 gold = 3;
- if (has_gold()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int64Size(
- this->gold());
- }
- // optional int32 vipLevel = 4;
- if (has_viplevel()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->viplevel());
- }
- // optional int32 playerlv = 5;
- if (has_playerlv()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->playerlv());
- }
- // optional int32 headid = 6;
- if (has_headid()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->headid());
- }
- // optional int32 frameid = 7;
- if (has_frameid()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->frameid());
- }
- }
- if (!unknown_fields().empty()) {
- total_size +=
- ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
- unknown_fields());
- }
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = total_size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- return total_size;
- }
- void RankInfo::MergeFrom(const ::google::protobuf::Message& from) {
- GOOGLE_CHECK_NE(&from, this);
- const RankInfo* source =
- ::google::protobuf::internal::dynamic_cast_if_available<const RankInfo*>(
- &from);
- if (source == NULL) {
- ::google::protobuf::internal::ReflectionOps::Merge(from, this);
- } else {
- MergeFrom(*source);
- }
- }
- void RankInfo::MergeFrom(const RankInfo& from) {
- GOOGLE_CHECK_NE(&from, this);
- if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- if (from.has_playerid()) {
- set_playerid(from.playerid());
- }
- if (from.has_nickname()) {
- set_nickname(from.nickname());
- }
- if (from.has_gold()) {
- set_gold(from.gold());
- }
- if (from.has_viplevel()) {
- set_viplevel(from.viplevel());
- }
- if (from.has_playerlv()) {
- set_playerlv(from.playerlv());
- }
- if (from.has_headid()) {
- set_headid(from.headid());
- }
- if (from.has_frameid()) {
- set_frameid(from.frameid());
- }
- }
- mutable_unknown_fields()->MergeFrom(from.unknown_fields());
- }
- void RankInfo::CopyFrom(const ::google::protobuf::Message& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- void RankInfo::CopyFrom(const RankInfo& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- bool RankInfo::IsInitialized() const {
- return true;
- }
- void RankInfo::Swap(RankInfo* other) {
- if (other != this) {
- std::swap(playerid_, other->playerid_);
- std::swap(nickname_, other->nickname_);
- std::swap(gold_, other->gold_);
- std::swap(viplevel_, other->viplevel_);
- std::swap(playerlv_, other->playerlv_);
- std::swap(headid_, other->headid_);
- std::swap(frameid_, other->frameid_);
- std::swap(_has_bits_[0], other->_has_bits_[0]);
- _unknown_fields_.Swap(&other->_unknown_fields_);
- std::swap(_cached_size_, other->_cached_size_);
- }
- }
- ::google::protobuf::Metadata RankInfo::GetMetadata() const {
- protobuf_AssignDescriptorsOnce();
- ::google::protobuf::Metadata metadata;
- metadata.descriptor = RankInfo_descriptor_;
- metadata.reflection = RankInfo_reflection_;
- return metadata;
- }
- // ===================================================================
- #ifndef _MSC_VER
- const int packetc2w_req_coin_rank::kPacketIdFieldNumber;
- #endif // !_MSC_VER
- packetc2w_req_coin_rank::packetc2w_req_coin_rank()
- : ::google::protobuf::Message() {
- SharedCtor();
- }
- void packetc2w_req_coin_rank::InitAsDefaultInstance() {
- }
- packetc2w_req_coin_rank::packetc2w_req_coin_rank(const packetc2w_req_coin_rank& from)
- : ::google::protobuf::Message() {
- SharedCtor();
- MergeFrom(from);
- }
- void packetc2w_req_coin_rank::SharedCtor() {
- _cached_size_ = 0;
- packet_id_ = 5020;
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- }
- packetc2w_req_coin_rank::~packetc2w_req_coin_rank() {
- SharedDtor();
- }
- void packetc2w_req_coin_rank::SharedDtor() {
- if (this != default_instance_) {
- }
- }
- void packetc2w_req_coin_rank::SetCachedSize(int size) const {
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- }
- const ::google::protobuf::Descriptor* packetc2w_req_coin_rank::descriptor() {
- protobuf_AssignDescriptorsOnce();
- return packetc2w_req_coin_rank_descriptor_;
- }
- const packetc2w_req_coin_rank& packetc2w_req_coin_rank::default_instance() {
- if (default_instance_ == NULL) protobuf_AddDesc_client2world_5frank_2eproto();
- return *default_instance_;
- }
- packetc2w_req_coin_rank* packetc2w_req_coin_rank::default_instance_ = NULL;
- packetc2w_req_coin_rank* packetc2w_req_coin_rank::New() const {
- return new packetc2w_req_coin_rank;
- }
- void packetc2w_req_coin_rank::Clear() {
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- packet_id_ = 5020;
- }
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- mutable_unknown_fields()->Clear();
- }
- bool packetc2w_req_coin_rank::MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) {
- #define DO_(EXPRESSION) if (!(EXPRESSION)) return false
- ::google::protobuf::uint32 tag;
- while ((tag = input->ReadTag()) != 0) {
- switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_coin_rank];
- case 1: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- int value;
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
- input, &value)));
- if (::client2world_protocols::e_server_msg_type_IsValid(value)) {
- set_packet_id(static_cast< ::client2world_protocols::e_server_msg_type >(value));
- } else {
- mutable_unknown_fields()->AddVarint(1, value);
- }
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectAtEnd()) return true;
- break;
- }
- default: {
- handle_uninterpreted:
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
- return true;
- }
- DO_(::google::protobuf::internal::WireFormat::SkipField(
- input, tag, mutable_unknown_fields()));
- break;
- }
- }
- }
- return true;
- #undef DO_
- }
- void packetc2w_req_coin_rank::SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_coin_rank];
- if (has_packet_id()) {
- ::google::protobuf::internal::WireFormatLite::WriteEnum(
- 1, this->packet_id(), output);
- }
- if (!unknown_fields().empty()) {
- ::google::protobuf::internal::WireFormat::SerializeUnknownFields(
- unknown_fields(), output);
- }
- }
- ::google::protobuf::uint8* packetc2w_req_coin_rank::SerializeWithCachedSizesToArray(
- ::google::protobuf::uint8* target) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_coin_rank];
- if (has_packet_id()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
- 1, this->packet_id(), target);
- }
- if (!unknown_fields().empty()) {
- target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
- unknown_fields(), target);
- }
- return target;
- }
- int packetc2w_req_coin_rank::ByteSize() const {
- int total_size = 0;
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_coin_rank];
- if (has_packet_id()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->packet_id());
- }
- }
- if (!unknown_fields().empty()) {
- total_size +=
- ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
- unknown_fields());
- }
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = total_size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- return total_size;
- }
- void packetc2w_req_coin_rank::MergeFrom(const ::google::protobuf::Message& from) {
- GOOGLE_CHECK_NE(&from, this);
- const packetc2w_req_coin_rank* source =
- ::google::protobuf::internal::dynamic_cast_if_available<const packetc2w_req_coin_rank*>(
- &from);
- if (source == NULL) {
- ::google::protobuf::internal::ReflectionOps::Merge(from, this);
- } else {
- MergeFrom(*source);
- }
- }
- void packetc2w_req_coin_rank::MergeFrom(const packetc2w_req_coin_rank& from) {
- GOOGLE_CHECK_NE(&from, this);
- if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- if (from.has_packet_id()) {
- set_packet_id(from.packet_id());
- }
- }
- mutable_unknown_fields()->MergeFrom(from.unknown_fields());
- }
- void packetc2w_req_coin_rank::CopyFrom(const ::google::protobuf::Message& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- void packetc2w_req_coin_rank::CopyFrom(const packetc2w_req_coin_rank& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- bool packetc2w_req_coin_rank::IsInitialized() const {
- return true;
- }
- void packetc2w_req_coin_rank::Swap(packetc2w_req_coin_rank* other) {
- if (other != this) {
- std::swap(packet_id_, other->packet_id_);
- std::swap(_has_bits_[0], other->_has_bits_[0]);
- _unknown_fields_.Swap(&other->_unknown_fields_);
- std::swap(_cached_size_, other->_cached_size_);
- }
- }
- ::google::protobuf::Metadata packetc2w_req_coin_rank::GetMetadata() const {
- protobuf_AssignDescriptorsOnce();
- ::google::protobuf::Metadata metadata;
- metadata.descriptor = packetc2w_req_coin_rank_descriptor_;
- metadata.reflection = packetc2w_req_coin_rank_reflection_;
- return metadata;
- }
- // ===================================================================
- #ifndef _MSC_VER
- const int packetw2c_req_coin_rank_result::kPacketIdFieldNumber;
- const int packetw2c_req_coin_rank_result::kRankListFieldNumber;
- const int packetw2c_req_coin_rank_result::kSelfRankFieldNumber;
- #endif // !_MSC_VER
- packetw2c_req_coin_rank_result::packetw2c_req_coin_rank_result()
- : ::google::protobuf::Message() {
- SharedCtor();
- }
- void packetw2c_req_coin_rank_result::InitAsDefaultInstance() {
- }
- packetw2c_req_coin_rank_result::packetw2c_req_coin_rank_result(const packetw2c_req_coin_rank_result& from)
- : ::google::protobuf::Message() {
- SharedCtor();
- MergeFrom(from);
- }
- void packetw2c_req_coin_rank_result::SharedCtor() {
- _cached_size_ = 0;
- packet_id_ = 7521;
- selfrank_ = 0;
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- }
- packetw2c_req_coin_rank_result::~packetw2c_req_coin_rank_result() {
- SharedDtor();
- }
- void packetw2c_req_coin_rank_result::SharedDtor() {
- if (this != default_instance_) {
- }
- }
- void packetw2c_req_coin_rank_result::SetCachedSize(int size) const {
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- }
- const ::google::protobuf::Descriptor* packetw2c_req_coin_rank_result::descriptor() {
- protobuf_AssignDescriptorsOnce();
- return packetw2c_req_coin_rank_result_descriptor_;
- }
- const packetw2c_req_coin_rank_result& packetw2c_req_coin_rank_result::default_instance() {
- if (default_instance_ == NULL) protobuf_AddDesc_client2world_5frank_2eproto();
- return *default_instance_;
- }
- packetw2c_req_coin_rank_result* packetw2c_req_coin_rank_result::default_instance_ = NULL;
- packetw2c_req_coin_rank_result* packetw2c_req_coin_rank_result::New() const {
- return new packetw2c_req_coin_rank_result;
- }
- void packetw2c_req_coin_rank_result::Clear() {
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- packet_id_ = 7521;
- selfrank_ = 0;
- }
- ranklist_.Clear();
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- mutable_unknown_fields()->Clear();
- }
- bool packetw2c_req_coin_rank_result::MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) {
- #define DO_(EXPRESSION) if (!(EXPRESSION)) return false
- ::google::protobuf::uint32 tag;
- while ((tag = input->ReadTag()) != 0) {
- switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_coin_rank_result];
- case 1: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- int value;
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
- input, &value)));
- if (::client2world_protocols::e_server_msg_type_IsValid(value)) {
- set_packet_id(static_cast< ::client2world_protocols::e_server_msg_type >(value));
- } else {
- mutable_unknown_fields()->AddVarint(1, value);
- }
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(18)) goto parse_rankList;
- break;
- }
- // repeated .client2world_protocols.RankInfo rankList = 2;
- case 2: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
- parse_rankList:
- DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
- input, add_ranklist()));
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(18)) goto parse_rankList;
- if (input->ExpectTag(24)) goto parse_selfRank;
- break;
- }
- // optional int32 selfRank = 3;
- case 3: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_selfRank:
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &selfrank_)));
- set_has_selfrank();
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectAtEnd()) return true;
- break;
- }
- default: {
- handle_uninterpreted:
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
- return true;
- }
- DO_(::google::protobuf::internal::WireFormat::SkipField(
- input, tag, mutable_unknown_fields()));
- break;
- }
- }
- }
- return true;
- #undef DO_
- }
- void packetw2c_req_coin_rank_result::SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_coin_rank_result];
- if (has_packet_id()) {
- ::google::protobuf::internal::WireFormatLite::WriteEnum(
- 1, this->packet_id(), output);
- }
- // repeated .client2world_protocols.RankInfo rankList = 2;
- for (int i = 0; i < this->ranklist_size(); i++) {
- ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
- 2, this->ranklist(i), output);
- }
- // optional int32 selfRank = 3;
- if (has_selfrank()) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(3, this->selfrank(), output);
- }
- if (!unknown_fields().empty()) {
- ::google::protobuf::internal::WireFormat::SerializeUnknownFields(
- unknown_fields(), output);
- }
- }
- ::google::protobuf::uint8* packetw2c_req_coin_rank_result::SerializeWithCachedSizesToArray(
- ::google::protobuf::uint8* target) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_coin_rank_result];
- if (has_packet_id()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
- 1, this->packet_id(), target);
- }
- // repeated .client2world_protocols.RankInfo rankList = 2;
- for (int i = 0; i < this->ranklist_size(); i++) {
- target = ::google::protobuf::internal::WireFormatLite::
- WriteMessageNoVirtualToArray(
- 2, this->ranklist(i), target);
- }
- // optional int32 selfRank = 3;
- if (has_selfrank()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(3, this->selfrank(), target);
- }
- if (!unknown_fields().empty()) {
- target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
- unknown_fields(), target);
- }
- return target;
- }
- int packetw2c_req_coin_rank_result::ByteSize() const {
- int total_size = 0;
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_coin_rank_result];
- if (has_packet_id()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->packet_id());
- }
- // optional int32 selfRank = 3;
- if (has_selfrank()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->selfrank());
- }
- }
- // repeated .client2world_protocols.RankInfo rankList = 2;
- total_size += 1 * this->ranklist_size();
- for (int i = 0; i < this->ranklist_size(); i++) {
- total_size +=
- ::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
- this->ranklist(i));
- }
- if (!unknown_fields().empty()) {
- total_size +=
- ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
- unknown_fields());
- }
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = total_size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- return total_size;
- }
- void packetw2c_req_coin_rank_result::MergeFrom(const ::google::protobuf::Message& from) {
- GOOGLE_CHECK_NE(&from, this);
- const packetw2c_req_coin_rank_result* source =
- ::google::protobuf::internal::dynamic_cast_if_available<const packetw2c_req_coin_rank_result*>(
- &from);
- if (source == NULL) {
- ::google::protobuf::internal::ReflectionOps::Merge(from, this);
- } else {
- MergeFrom(*source);
- }
- }
- void packetw2c_req_coin_rank_result::MergeFrom(const packetw2c_req_coin_rank_result& from) {
- GOOGLE_CHECK_NE(&from, this);
- ranklist_.MergeFrom(from.ranklist_);
- if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- if (from.has_packet_id()) {
- set_packet_id(from.packet_id());
- }
- if (from.has_selfrank()) {
- set_selfrank(from.selfrank());
- }
- }
- mutable_unknown_fields()->MergeFrom(from.unknown_fields());
- }
- void packetw2c_req_coin_rank_result::CopyFrom(const ::google::protobuf::Message& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- void packetw2c_req_coin_rank_result::CopyFrom(const packetw2c_req_coin_rank_result& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- bool packetw2c_req_coin_rank_result::IsInitialized() const {
- return true;
- }
- void packetw2c_req_coin_rank_result::Swap(packetw2c_req_coin_rank_result* other) {
- if (other != this) {
- std::swap(packet_id_, other->packet_id_);
- ranklist_.Swap(&other->ranklist_);
- std::swap(selfrank_, other->selfrank_);
- std::swap(_has_bits_[0], other->_has_bits_[0]);
- _unknown_fields_.Swap(&other->_unknown_fields_);
- std::swap(_cached_size_, other->_cached_size_);
- }
- }
- ::google::protobuf::Metadata packetw2c_req_coin_rank_result::GetMetadata() const {
- protobuf_AssignDescriptorsOnce();
- ::google::protobuf::Metadata metadata;
- metadata.descriptor = packetw2c_req_coin_rank_result_descriptor_;
- metadata.reflection = packetw2c_req_coin_rank_result_reflection_;
- return metadata;
- }
- // ===================================================================
- #ifndef _MSC_VER
- const int RechargeInfo::kPlayerIdFieldNumber;
- const int RechargeInfo::kNickNameFieldNumber;
- const int RechargeInfo::kRmbFieldNumber;
- const int RechargeInfo::kVipLevelFieldNumber;
- #endif // !_MSC_VER
- RechargeInfo::RechargeInfo()
- : ::google::protobuf::Message() {
- SharedCtor();
- }
- void RechargeInfo::InitAsDefaultInstance() {
- }
- RechargeInfo::RechargeInfo(const RechargeInfo& from)
- : ::google::protobuf::Message() {
- SharedCtor();
- MergeFrom(from);
- }
- void RechargeInfo::SharedCtor() {
- _cached_size_ = 0;
- playerid_ = 0;
- nickname_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
- rmb_ = 0;
- viplevel_ = 0;
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- }
- RechargeInfo::~RechargeInfo() {
- SharedDtor();
- }
- void RechargeInfo::SharedDtor() {
- if (nickname_ != &::google::protobuf::internal::kEmptyString) {
- delete nickname_;
- }
- if (this != default_instance_) {
- }
- }
- void RechargeInfo::SetCachedSize(int size) const {
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- }
- const ::google::protobuf::Descriptor* RechargeInfo::descriptor() {
- protobuf_AssignDescriptorsOnce();
- return RechargeInfo_descriptor_;
- }
- const RechargeInfo& RechargeInfo::default_instance() {
- if (default_instance_ == NULL) protobuf_AddDesc_client2world_5frank_2eproto();
- return *default_instance_;
- }
- RechargeInfo* RechargeInfo::default_instance_ = NULL;
- RechargeInfo* RechargeInfo::New() const {
- return new RechargeInfo;
- }
- void RechargeInfo::Clear() {
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- playerid_ = 0;
- if (has_nickname()) {
- if (nickname_ != &::google::protobuf::internal::kEmptyString) {
- nickname_->clear();
- }
- }
- rmb_ = 0;
- viplevel_ = 0;
- }
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- mutable_unknown_fields()->Clear();
- }
- bool RechargeInfo::MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) {
- #define DO_(EXPRESSION) if (!(EXPRESSION)) return false
- ::google::protobuf::uint32 tag;
- while ((tag = input->ReadTag()) != 0) {
- switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
- // optional int32 playerId = 1;
- case 1: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &playerid_)));
- set_has_playerid();
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(18)) goto parse_nickName;
- break;
- }
- // optional string nickName = 2;
- case 2: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
- parse_nickName:
- DO_(::google::protobuf::internal::WireFormatLite::ReadString(
- input, this->mutable_nickname()));
- ::google::protobuf::internal::WireFormat::VerifyUTF8String(
- this->nickname().data(), this->nickname().length(),
- ::google::protobuf::internal::WireFormat::PARSE);
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(24)) goto parse_rmb;
- break;
- }
- // optional int32 rmb = 3;
- case 3: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_rmb:
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &rmb_)));
- set_has_rmb();
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(32)) goto parse_vipLevel;
- break;
- }
- // optional int32 vipLevel = 4;
- case 4: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_vipLevel:
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &viplevel_)));
- set_has_viplevel();
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectAtEnd()) return true;
- break;
- }
- default: {
- handle_uninterpreted:
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
- return true;
- }
- DO_(::google::protobuf::internal::WireFormat::SkipField(
- input, tag, mutable_unknown_fields()));
- break;
- }
- }
- }
- return true;
- #undef DO_
- }
- void RechargeInfo::SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const {
- // optional int32 playerId = 1;
- if (has_playerid()) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(1, this->playerid(), output);
- }
- // optional string nickName = 2;
- if (has_nickname()) {
- ::google::protobuf::internal::WireFormat::VerifyUTF8String(
- this->nickname().data(), this->nickname().length(),
- ::google::protobuf::internal::WireFormat::SERIALIZE);
- ::google::protobuf::internal::WireFormatLite::WriteString(
- 2, this->nickname(), output);
- }
- // optional int32 rmb = 3;
- if (has_rmb()) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(3, this->rmb(), output);
- }
- // optional int32 vipLevel = 4;
- if (has_viplevel()) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(4, this->viplevel(), output);
- }
- if (!unknown_fields().empty()) {
- ::google::protobuf::internal::WireFormat::SerializeUnknownFields(
- unknown_fields(), output);
- }
- }
- ::google::protobuf::uint8* RechargeInfo::SerializeWithCachedSizesToArray(
- ::google::protobuf::uint8* target) const {
- // optional int32 playerId = 1;
- if (has_playerid()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(1, this->playerid(), target);
- }
- // optional string nickName = 2;
- if (has_nickname()) {
- ::google::protobuf::internal::WireFormat::VerifyUTF8String(
- this->nickname().data(), this->nickname().length(),
- ::google::protobuf::internal::WireFormat::SERIALIZE);
- target =
- ::google::protobuf::internal::WireFormatLite::WriteStringToArray(
- 2, this->nickname(), target);
- }
- // optional int32 rmb = 3;
- if (has_rmb()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(3, this->rmb(), target);
- }
- // optional int32 vipLevel = 4;
- if (has_viplevel()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(4, this->viplevel(), target);
- }
- if (!unknown_fields().empty()) {
- target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
- unknown_fields(), target);
- }
- return target;
- }
- int RechargeInfo::ByteSize() const {
- int total_size = 0;
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- // optional int32 playerId = 1;
- if (has_playerid()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->playerid());
- }
- // optional string nickName = 2;
- if (has_nickname()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::StringSize(
- this->nickname());
- }
- // optional int32 rmb = 3;
- if (has_rmb()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->rmb());
- }
- // optional int32 vipLevel = 4;
- if (has_viplevel()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->viplevel());
- }
- }
- if (!unknown_fields().empty()) {
- total_size +=
- ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
- unknown_fields());
- }
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = total_size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- return total_size;
- }
- void RechargeInfo::MergeFrom(const ::google::protobuf::Message& from) {
- GOOGLE_CHECK_NE(&from, this);
- const RechargeInfo* source =
- ::google::protobuf::internal::dynamic_cast_if_available<const RechargeInfo*>(
- &from);
- if (source == NULL) {
- ::google::protobuf::internal::ReflectionOps::Merge(from, this);
- } else {
- MergeFrom(*source);
- }
- }
- void RechargeInfo::MergeFrom(const RechargeInfo& from) {
- GOOGLE_CHECK_NE(&from, this);
- if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- if (from.has_playerid()) {
- set_playerid(from.playerid());
- }
- if (from.has_nickname()) {
- set_nickname(from.nickname());
- }
- if (from.has_rmb()) {
- set_rmb(from.rmb());
- }
- if (from.has_viplevel()) {
- set_viplevel(from.viplevel());
- }
- }
- mutable_unknown_fields()->MergeFrom(from.unknown_fields());
- }
- void RechargeInfo::CopyFrom(const ::google::protobuf::Message& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- void RechargeInfo::CopyFrom(const RechargeInfo& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- bool RechargeInfo::IsInitialized() const {
- return true;
- }
- void RechargeInfo::Swap(RechargeInfo* other) {
- if (other != this) {
- std::swap(playerid_, other->playerid_);
- std::swap(nickname_, other->nickname_);
- std::swap(rmb_, other->rmb_);
- std::swap(viplevel_, other->viplevel_);
- std::swap(_has_bits_[0], other->_has_bits_[0]);
- _unknown_fields_.Swap(&other->_unknown_fields_);
- std::swap(_cached_size_, other->_cached_size_);
- }
- }
- ::google::protobuf::Metadata RechargeInfo::GetMetadata() const {
- protobuf_AssignDescriptorsOnce();
- ::google::protobuf::Metadata metadata;
- metadata.descriptor = RechargeInfo_descriptor_;
- metadata.reflection = RechargeInfo_reflection_;
- return metadata;
- }
- // ===================================================================
- #ifndef _MSC_VER
- const int packetc2w_req_recharge_rank::kPacketIdFieldNumber;
- const int packetc2w_req_recharge_rank::kIsYesterdayFieldNumber;
- #endif // !_MSC_VER
- packetc2w_req_recharge_rank::packetc2w_req_recharge_rank()
- : ::google::protobuf::Message() {
- SharedCtor();
- }
- void packetc2w_req_recharge_rank::InitAsDefaultInstance() {
- }
- packetc2w_req_recharge_rank::packetc2w_req_recharge_rank(const packetc2w_req_recharge_rank& from)
- : ::google::protobuf::Message() {
- SharedCtor();
- MergeFrom(from);
- }
- void packetc2w_req_recharge_rank::SharedCtor() {
- _cached_size_ = 0;
- packet_id_ = 5051;
- is_yesterday_ = false;
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- }
- packetc2w_req_recharge_rank::~packetc2w_req_recharge_rank() {
- SharedDtor();
- }
- void packetc2w_req_recharge_rank::SharedDtor() {
- if (this != default_instance_) {
- }
- }
- void packetc2w_req_recharge_rank::SetCachedSize(int size) const {
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- }
- const ::google::protobuf::Descriptor* packetc2w_req_recharge_rank::descriptor() {
- protobuf_AssignDescriptorsOnce();
- return packetc2w_req_recharge_rank_descriptor_;
- }
- const packetc2w_req_recharge_rank& packetc2w_req_recharge_rank::default_instance() {
- if (default_instance_ == NULL) protobuf_AddDesc_client2world_5frank_2eproto();
- return *default_instance_;
- }
- packetc2w_req_recharge_rank* packetc2w_req_recharge_rank::default_instance_ = NULL;
- packetc2w_req_recharge_rank* packetc2w_req_recharge_rank::New() const {
- return new packetc2w_req_recharge_rank;
- }
- void packetc2w_req_recharge_rank::Clear() {
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- packet_id_ = 5051;
- is_yesterday_ = false;
- }
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- mutable_unknown_fields()->Clear();
- }
- bool packetc2w_req_recharge_rank::MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) {
- #define DO_(EXPRESSION) if (!(EXPRESSION)) return false
- ::google::protobuf::uint32 tag;
- while ((tag = input->ReadTag()) != 0) {
- switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_recharge_rank];
- case 1: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- int value;
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
- input, &value)));
- if (::client2world_protocols::e_server_msg_type_IsValid(value)) {
- set_packet_id(static_cast< ::client2world_protocols::e_server_msg_type >(value));
- } else {
- mutable_unknown_fields()->AddVarint(1, value);
- }
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(16)) goto parse_is_yesterday;
- break;
- }
- // optional bool is_yesterday = 2 [default = false];
- case 2: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_is_yesterday:
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>(
- input, &is_yesterday_)));
- set_has_is_yesterday();
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectAtEnd()) return true;
- break;
- }
- default: {
- handle_uninterpreted:
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
- return true;
- }
- DO_(::google::protobuf::internal::WireFormat::SkipField(
- input, tag, mutable_unknown_fields()));
- break;
- }
- }
- }
- return true;
- #undef DO_
- }
- void packetc2w_req_recharge_rank::SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_recharge_rank];
- if (has_packet_id()) {
- ::google::protobuf::internal::WireFormatLite::WriteEnum(
- 1, this->packet_id(), output);
- }
- // optional bool is_yesterday = 2 [default = false];
- if (has_is_yesterday()) {
- ::google::protobuf::internal::WireFormatLite::WriteBool(2, this->is_yesterday(), output);
- }
- if (!unknown_fields().empty()) {
- ::google::protobuf::internal::WireFormat::SerializeUnknownFields(
- unknown_fields(), output);
- }
- }
- ::google::protobuf::uint8* packetc2w_req_recharge_rank::SerializeWithCachedSizesToArray(
- ::google::protobuf::uint8* target) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_recharge_rank];
- if (has_packet_id()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
- 1, this->packet_id(), target);
- }
- // optional bool is_yesterday = 2 [default = false];
- if (has_is_yesterday()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteBoolToArray(2, this->is_yesterday(), target);
- }
- if (!unknown_fields().empty()) {
- target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
- unknown_fields(), target);
- }
- return target;
- }
- int packetc2w_req_recharge_rank::ByteSize() const {
- int total_size = 0;
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_recharge_rank];
- if (has_packet_id()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->packet_id());
- }
- // optional bool is_yesterday = 2 [default = false];
- if (has_is_yesterday()) {
- total_size += 1 + 1;
- }
- }
- if (!unknown_fields().empty()) {
- total_size +=
- ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
- unknown_fields());
- }
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = total_size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- return total_size;
- }
- void packetc2w_req_recharge_rank::MergeFrom(const ::google::protobuf::Message& from) {
- GOOGLE_CHECK_NE(&from, this);
- const packetc2w_req_recharge_rank* source =
- ::google::protobuf::internal::dynamic_cast_if_available<const packetc2w_req_recharge_rank*>(
- &from);
- if (source == NULL) {
- ::google::protobuf::internal::ReflectionOps::Merge(from, this);
- } else {
- MergeFrom(*source);
- }
- }
- void packetc2w_req_recharge_rank::MergeFrom(const packetc2w_req_recharge_rank& from) {
- GOOGLE_CHECK_NE(&from, this);
- if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- if (from.has_packet_id()) {
- set_packet_id(from.packet_id());
- }
- if (from.has_is_yesterday()) {
- set_is_yesterday(from.is_yesterday());
- }
- }
- mutable_unknown_fields()->MergeFrom(from.unknown_fields());
- }
- void packetc2w_req_recharge_rank::CopyFrom(const ::google::protobuf::Message& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- void packetc2w_req_recharge_rank::CopyFrom(const packetc2w_req_recharge_rank& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- bool packetc2w_req_recharge_rank::IsInitialized() const {
- return true;
- }
- void packetc2w_req_recharge_rank::Swap(packetc2w_req_recharge_rank* other) {
- if (other != this) {
- std::swap(packet_id_, other->packet_id_);
- std::swap(is_yesterday_, other->is_yesterday_);
- std::swap(_has_bits_[0], other->_has_bits_[0]);
- _unknown_fields_.Swap(&other->_unknown_fields_);
- std::swap(_cached_size_, other->_cached_size_);
- }
- }
- ::google::protobuf::Metadata packetc2w_req_recharge_rank::GetMetadata() const {
- protobuf_AssignDescriptorsOnce();
- ::google::protobuf::Metadata metadata;
- metadata.descriptor = packetc2w_req_recharge_rank_descriptor_;
- metadata.reflection = packetc2w_req_recharge_rank_reflection_;
- return metadata;
- }
- // ===================================================================
- #ifndef _MSC_VER
- const int packetw2c_req_recharge_rank_result::kPacketIdFieldNumber;
- const int packetw2c_req_recharge_rank_result::kRankListFieldNumber;
- const int packetw2c_req_recharge_rank_result::kSelfRankFieldNumber;
- const int packetw2c_req_recharge_rank_result::kSelfrmbFieldNumber;
- const int packetw2c_req_recharge_rank_result::kIsYesterdayFieldNumber;
- #endif // !_MSC_VER
- packetw2c_req_recharge_rank_result::packetw2c_req_recharge_rank_result()
- : ::google::protobuf::Message() {
- SharedCtor();
- }
- void packetw2c_req_recharge_rank_result::InitAsDefaultInstance() {
- }
- packetw2c_req_recharge_rank_result::packetw2c_req_recharge_rank_result(const packetw2c_req_recharge_rank_result& from)
- : ::google::protobuf::Message() {
- SharedCtor();
- MergeFrom(from);
- }
- void packetw2c_req_recharge_rank_result::SharedCtor() {
- _cached_size_ = 0;
- packet_id_ = 7554;
- selfrank_ = 0;
- selfrmb_ = 0;
- is_yesterday_ = false;
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- }
- packetw2c_req_recharge_rank_result::~packetw2c_req_recharge_rank_result() {
- SharedDtor();
- }
- void packetw2c_req_recharge_rank_result::SharedDtor() {
- if (this != default_instance_) {
- }
- }
- void packetw2c_req_recharge_rank_result::SetCachedSize(int size) const {
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- }
- const ::google::protobuf::Descriptor* packetw2c_req_recharge_rank_result::descriptor() {
- protobuf_AssignDescriptorsOnce();
- return packetw2c_req_recharge_rank_result_descriptor_;
- }
- const packetw2c_req_recharge_rank_result& packetw2c_req_recharge_rank_result::default_instance() {
- if (default_instance_ == NULL) protobuf_AddDesc_client2world_5frank_2eproto();
- return *default_instance_;
- }
- packetw2c_req_recharge_rank_result* packetw2c_req_recharge_rank_result::default_instance_ = NULL;
- packetw2c_req_recharge_rank_result* packetw2c_req_recharge_rank_result::New() const {
- return new packetw2c_req_recharge_rank_result;
- }
- void packetw2c_req_recharge_rank_result::Clear() {
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- packet_id_ = 7554;
- selfrank_ = 0;
- selfrmb_ = 0;
- is_yesterday_ = false;
- }
- ranklist_.Clear();
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- mutable_unknown_fields()->Clear();
- }
- bool packetw2c_req_recharge_rank_result::MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) {
- #define DO_(EXPRESSION) if (!(EXPRESSION)) return false
- ::google::protobuf::uint32 tag;
- while ((tag = input->ReadTag()) != 0) {
- switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_recharge_rank_result];
- case 1: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- int value;
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
- input, &value)));
- if (::client2world_protocols::e_server_msg_type_IsValid(value)) {
- set_packet_id(static_cast< ::client2world_protocols::e_server_msg_type >(value));
- } else {
- mutable_unknown_fields()->AddVarint(1, value);
- }
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(18)) goto parse_rankList;
- break;
- }
- // repeated .client2world_protocols.RechargeInfo rankList = 2;
- case 2: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
- parse_rankList:
- DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
- input, add_ranklist()));
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(18)) goto parse_rankList;
- if (input->ExpectTag(24)) goto parse_selfRank;
- break;
- }
- // optional int32 selfRank = 3;
- case 3: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_selfRank:
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &selfrank_)));
- set_has_selfrank();
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(32)) goto parse_selfrmb;
- break;
- }
- // optional int32 selfrmb = 4;
- case 4: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_selfrmb:
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &selfrmb_)));
- set_has_selfrmb();
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(40)) goto parse_is_yesterday;
- break;
- }
- // optional bool is_yesterday = 5 [default = false];
- case 5: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_is_yesterday:
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>(
- input, &is_yesterday_)));
- set_has_is_yesterday();
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectAtEnd()) return true;
- break;
- }
- default: {
- handle_uninterpreted:
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
- return true;
- }
- DO_(::google::protobuf::internal::WireFormat::SkipField(
- input, tag, mutable_unknown_fields()));
- break;
- }
- }
- }
- return true;
- #undef DO_
- }
- void packetw2c_req_recharge_rank_result::SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_recharge_rank_result];
- if (has_packet_id()) {
- ::google::protobuf::internal::WireFormatLite::WriteEnum(
- 1, this->packet_id(), output);
- }
- // repeated .client2world_protocols.RechargeInfo rankList = 2;
- for (int i = 0; i < this->ranklist_size(); i++) {
- ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
- 2, this->ranklist(i), output);
- }
- // optional int32 selfRank = 3;
- if (has_selfrank()) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(3, this->selfrank(), output);
- }
- // optional int32 selfrmb = 4;
- if (has_selfrmb()) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(4, this->selfrmb(), output);
- }
- // optional bool is_yesterday = 5 [default = false];
- if (has_is_yesterday()) {
- ::google::protobuf::internal::WireFormatLite::WriteBool(5, this->is_yesterday(), output);
- }
- if (!unknown_fields().empty()) {
- ::google::protobuf::internal::WireFormat::SerializeUnknownFields(
- unknown_fields(), output);
- }
- }
- ::google::protobuf::uint8* packetw2c_req_recharge_rank_result::SerializeWithCachedSizesToArray(
- ::google::protobuf::uint8* target) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_recharge_rank_result];
- if (has_packet_id()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
- 1, this->packet_id(), target);
- }
- // repeated .client2world_protocols.RechargeInfo rankList = 2;
- for (int i = 0; i < this->ranklist_size(); i++) {
- target = ::google::protobuf::internal::WireFormatLite::
- WriteMessageNoVirtualToArray(
- 2, this->ranklist(i), target);
- }
- // optional int32 selfRank = 3;
- if (has_selfrank()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(3, this->selfrank(), target);
- }
- // optional int32 selfrmb = 4;
- if (has_selfrmb()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(4, this->selfrmb(), target);
- }
- // optional bool is_yesterday = 5 [default = false];
- if (has_is_yesterday()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteBoolToArray(5, this->is_yesterday(), target);
- }
- if (!unknown_fields().empty()) {
- target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
- unknown_fields(), target);
- }
- return target;
- }
- int packetw2c_req_recharge_rank_result::ByteSize() const {
- int total_size = 0;
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_recharge_rank_result];
- if (has_packet_id()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->packet_id());
- }
- // optional int32 selfRank = 3;
- if (has_selfrank()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->selfrank());
- }
- // optional int32 selfrmb = 4;
- if (has_selfrmb()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->selfrmb());
- }
- // optional bool is_yesterday = 5 [default = false];
- if (has_is_yesterday()) {
- total_size += 1 + 1;
- }
- }
- // repeated .client2world_protocols.RechargeInfo rankList = 2;
- total_size += 1 * this->ranklist_size();
- for (int i = 0; i < this->ranklist_size(); i++) {
- total_size +=
- ::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
- this->ranklist(i));
- }
- if (!unknown_fields().empty()) {
- total_size +=
- ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
- unknown_fields());
- }
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = total_size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- return total_size;
- }
- void packetw2c_req_recharge_rank_result::MergeFrom(const ::google::protobuf::Message& from) {
- GOOGLE_CHECK_NE(&from, this);
- const packetw2c_req_recharge_rank_result* source =
- ::google::protobuf::internal::dynamic_cast_if_available<const packetw2c_req_recharge_rank_result*>(
- &from);
- if (source == NULL) {
- ::google::protobuf::internal::ReflectionOps::Merge(from, this);
- } else {
- MergeFrom(*source);
- }
- }
- void packetw2c_req_recharge_rank_result::MergeFrom(const packetw2c_req_recharge_rank_result& from) {
- GOOGLE_CHECK_NE(&from, this);
- ranklist_.MergeFrom(from.ranklist_);
- if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- if (from.has_packet_id()) {
- set_packet_id(from.packet_id());
- }
- if (from.has_selfrank()) {
- set_selfrank(from.selfrank());
- }
- if (from.has_selfrmb()) {
- set_selfrmb(from.selfrmb());
- }
- if (from.has_is_yesterday()) {
- set_is_yesterday(from.is_yesterday());
- }
- }
- mutable_unknown_fields()->MergeFrom(from.unknown_fields());
- }
- void packetw2c_req_recharge_rank_result::CopyFrom(const ::google::protobuf::Message& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- void packetw2c_req_recharge_rank_result::CopyFrom(const packetw2c_req_recharge_rank_result& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- bool packetw2c_req_recharge_rank_result::IsInitialized() const {
- return true;
- }
- void packetw2c_req_recharge_rank_result::Swap(packetw2c_req_recharge_rank_result* other) {
- if (other != this) {
- std::swap(packet_id_, other->packet_id_);
- ranklist_.Swap(&other->ranklist_);
- std::swap(selfrank_, other->selfrank_);
- std::swap(selfrmb_, other->selfrmb_);
- std::swap(is_yesterday_, other->is_yesterday_);
- std::swap(_has_bits_[0], other->_has_bits_[0]);
- _unknown_fields_.Swap(&other->_unknown_fields_);
- std::swap(_cached_size_, other->_cached_size_);
- }
- }
- ::google::protobuf::Metadata packetw2c_req_recharge_rank_result::GetMetadata() const {
- protobuf_AssignDescriptorsOnce();
- ::google::protobuf::Metadata metadata;
- metadata.descriptor = packetw2c_req_recharge_rank_result_descriptor_;
- metadata.reflection = packetw2c_req_recharge_rank_result_reflection_;
- return metadata;
- }
- // ===================================================================
- #ifndef _MSC_VER
- const int packetc2w_req_coin_growth::kPacketIdFieldNumber;
- #endif // !_MSC_VER
- packetc2w_req_coin_growth::packetc2w_req_coin_growth()
- : ::google::protobuf::Message() {
- SharedCtor();
- }
- void packetc2w_req_coin_growth::InitAsDefaultInstance() {
- }
- packetc2w_req_coin_growth::packetc2w_req_coin_growth(const packetc2w_req_coin_growth& from)
- : ::google::protobuf::Message() {
- SharedCtor();
- MergeFrom(from);
- }
- void packetc2w_req_coin_growth::SharedCtor() {
- _cached_size_ = 0;
- packet_id_ = 5054;
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- }
- packetc2w_req_coin_growth::~packetc2w_req_coin_growth() {
- SharedDtor();
- }
- void packetc2w_req_coin_growth::SharedDtor() {
- if (this != default_instance_) {
- }
- }
- void packetc2w_req_coin_growth::SetCachedSize(int size) const {
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- }
- const ::google::protobuf::Descriptor* packetc2w_req_coin_growth::descriptor() {
- protobuf_AssignDescriptorsOnce();
- return packetc2w_req_coin_growth_descriptor_;
- }
- const packetc2w_req_coin_growth& packetc2w_req_coin_growth::default_instance() {
- if (default_instance_ == NULL) protobuf_AddDesc_client2world_5frank_2eproto();
- return *default_instance_;
- }
- packetc2w_req_coin_growth* packetc2w_req_coin_growth::default_instance_ = NULL;
- packetc2w_req_coin_growth* packetc2w_req_coin_growth::New() const {
- return new packetc2w_req_coin_growth;
- }
- void packetc2w_req_coin_growth::Clear() {
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- packet_id_ = 5054;
- }
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- mutable_unknown_fields()->Clear();
- }
- bool packetc2w_req_coin_growth::MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) {
- #define DO_(EXPRESSION) if (!(EXPRESSION)) return false
- ::google::protobuf::uint32 tag;
- while ((tag = input->ReadTag()) != 0) {
- switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_coin_growth];
- case 1: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- int value;
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
- input, &value)));
- if (::client2world_protocols::e_server_msg_type_IsValid(value)) {
- set_packet_id(static_cast< ::client2world_protocols::e_server_msg_type >(value));
- } else {
- mutable_unknown_fields()->AddVarint(1, value);
- }
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectAtEnd()) return true;
- break;
- }
- default: {
- handle_uninterpreted:
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
- return true;
- }
- DO_(::google::protobuf::internal::WireFormat::SkipField(
- input, tag, mutable_unknown_fields()));
- break;
- }
- }
- }
- return true;
- #undef DO_
- }
- void packetc2w_req_coin_growth::SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_coin_growth];
- if (has_packet_id()) {
- ::google::protobuf::internal::WireFormatLite::WriteEnum(
- 1, this->packet_id(), output);
- }
- if (!unknown_fields().empty()) {
- ::google::protobuf::internal::WireFormat::SerializeUnknownFields(
- unknown_fields(), output);
- }
- }
- ::google::protobuf::uint8* packetc2w_req_coin_growth::SerializeWithCachedSizesToArray(
- ::google::protobuf::uint8* target) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_coin_growth];
- if (has_packet_id()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
- 1, this->packet_id(), target);
- }
- if (!unknown_fields().empty()) {
- target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
- unknown_fields(), target);
- }
- return target;
- }
- int packetc2w_req_coin_growth::ByteSize() const {
- int total_size = 0;
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_coin_growth];
- if (has_packet_id()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->packet_id());
- }
- }
- if (!unknown_fields().empty()) {
- total_size +=
- ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
- unknown_fields());
- }
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = total_size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- return total_size;
- }
- void packetc2w_req_coin_growth::MergeFrom(const ::google::protobuf::Message& from) {
- GOOGLE_CHECK_NE(&from, this);
- const packetc2w_req_coin_growth* source =
- ::google::protobuf::internal::dynamic_cast_if_available<const packetc2w_req_coin_growth*>(
- &from);
- if (source == NULL) {
- ::google::protobuf::internal::ReflectionOps::Merge(from, this);
- } else {
- MergeFrom(*source);
- }
- }
- void packetc2w_req_coin_growth::MergeFrom(const packetc2w_req_coin_growth& from) {
- GOOGLE_CHECK_NE(&from, this);
- if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- if (from.has_packet_id()) {
- set_packet_id(from.packet_id());
- }
- }
- mutable_unknown_fields()->MergeFrom(from.unknown_fields());
- }
- void packetc2w_req_coin_growth::CopyFrom(const ::google::protobuf::Message& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- void packetc2w_req_coin_growth::CopyFrom(const packetc2w_req_coin_growth& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- bool packetc2w_req_coin_growth::IsInitialized() const {
- return true;
- }
- void packetc2w_req_coin_growth::Swap(packetc2w_req_coin_growth* other) {
- if (other != this) {
- std::swap(packet_id_, other->packet_id_);
- std::swap(_has_bits_[0], other->_has_bits_[0]);
- _unknown_fields_.Swap(&other->_unknown_fields_);
- std::swap(_cached_size_, other->_cached_size_);
- }
- }
- ::google::protobuf::Metadata packetc2w_req_coin_growth::GetMetadata() const {
- protobuf_AssignDescriptorsOnce();
- ::google::protobuf::Metadata metadata;
- metadata.descriptor = packetc2w_req_coin_growth_descriptor_;
- metadata.reflection = packetc2w_req_coin_growth_reflection_;
- return metadata;
- }
- // ===================================================================
- #ifndef _MSC_VER
- const int packetw2c_req_coin_growth_result::kPacketIdFieldNumber;
- const int packetw2c_req_coin_growth_result::kRankListFieldNumber;
- const int packetw2c_req_coin_growth_result::kSelfRankFieldNumber;
- const int packetw2c_req_coin_growth_result::kSelfGoldFieldNumber;
- #endif // !_MSC_VER
- packetw2c_req_coin_growth_result::packetw2c_req_coin_growth_result()
- : ::google::protobuf::Message() {
- SharedCtor();
- }
- void packetw2c_req_coin_growth_result::InitAsDefaultInstance() {
- }
- packetw2c_req_coin_growth_result::packetw2c_req_coin_growth_result(const packetw2c_req_coin_growth_result& from)
- : ::google::protobuf::Message() {
- SharedCtor();
- MergeFrom(from);
- }
- void packetw2c_req_coin_growth_result::SharedCtor() {
- _cached_size_ = 0;
- packet_id_ = 7557;
- selfrank_ = 0;
- selfgold_ = GOOGLE_LONGLONG(0);
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- }
- packetw2c_req_coin_growth_result::~packetw2c_req_coin_growth_result() {
- SharedDtor();
- }
- void packetw2c_req_coin_growth_result::SharedDtor() {
- if (this != default_instance_) {
- }
- }
- void packetw2c_req_coin_growth_result::SetCachedSize(int size) const {
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- }
- const ::google::protobuf::Descriptor* packetw2c_req_coin_growth_result::descriptor() {
- protobuf_AssignDescriptorsOnce();
- return packetw2c_req_coin_growth_result_descriptor_;
- }
- const packetw2c_req_coin_growth_result& packetw2c_req_coin_growth_result::default_instance() {
- if (default_instance_ == NULL) protobuf_AddDesc_client2world_5frank_2eproto();
- return *default_instance_;
- }
- packetw2c_req_coin_growth_result* packetw2c_req_coin_growth_result::default_instance_ = NULL;
- packetw2c_req_coin_growth_result* packetw2c_req_coin_growth_result::New() const {
- return new packetw2c_req_coin_growth_result;
- }
- void packetw2c_req_coin_growth_result::Clear() {
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- packet_id_ = 7557;
- selfrank_ = 0;
- selfgold_ = GOOGLE_LONGLONG(0);
- }
- ranklist_.Clear();
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- mutable_unknown_fields()->Clear();
- }
- bool packetw2c_req_coin_growth_result::MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) {
- #define DO_(EXPRESSION) if (!(EXPRESSION)) return false
- ::google::protobuf::uint32 tag;
- while ((tag = input->ReadTag()) != 0) {
- switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_coin_growth_result];
- case 1: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- int value;
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>(
- input, &value)));
- if (::client2world_protocols::e_server_msg_type_IsValid(value)) {
- set_packet_id(static_cast< ::client2world_protocols::e_server_msg_type >(value));
- } else {
- mutable_unknown_fields()->AddVarint(1, value);
- }
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(18)) goto parse_rankList;
- break;
- }
- // repeated .client2world_protocols.RankInfo rankList = 2;
- case 2: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) {
- parse_rankList:
- DO_(::google::protobuf::internal::WireFormatLite::ReadMessageNoVirtual(
- input, add_ranklist()));
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(18)) goto parse_rankList;
- if (input->ExpectTag(24)) goto parse_selfRank;
- break;
- }
- // optional int32 selfRank = 3;
- case 3: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_selfRank:
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &selfrank_)));
- set_has_selfrank();
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(32)) goto parse_selfGold;
- break;
- }
- // optional int64 selfGold = 4;
- case 4: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_selfGold:
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int64, ::google::protobuf::internal::WireFormatLite::TYPE_INT64>(
- input, &selfgold_)));
- set_has_selfgold();
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectAtEnd()) return true;
- break;
- }
- default: {
- handle_uninterpreted:
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
- return true;
- }
- DO_(::google::protobuf::internal::WireFormat::SkipField(
- input, tag, mutable_unknown_fields()));
- break;
- }
- }
- }
- return true;
- #undef DO_
- }
- void packetw2c_req_coin_growth_result::SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_coin_growth_result];
- if (has_packet_id()) {
- ::google::protobuf::internal::WireFormatLite::WriteEnum(
- 1, this->packet_id(), output);
- }
- // repeated .client2world_protocols.RankInfo rankList = 2;
- for (int i = 0; i < this->ranklist_size(); i++) {
- ::google::protobuf::internal::WireFormatLite::WriteMessageMaybeToArray(
- 2, this->ranklist(i), output);
- }
- // optional int32 selfRank = 3;
- if (has_selfrank()) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(3, this->selfrank(), output);
- }
- // optional int64 selfGold = 4;
- if (has_selfgold()) {
- ::google::protobuf::internal::WireFormatLite::WriteInt64(4, this->selfgold(), output);
- }
- if (!unknown_fields().empty()) {
- ::google::protobuf::internal::WireFormat::SerializeUnknownFields(
- unknown_fields(), output);
- }
- }
- ::google::protobuf::uint8* packetw2c_req_coin_growth_result::SerializeWithCachedSizesToArray(
- ::google::protobuf::uint8* target) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_coin_growth_result];
- if (has_packet_id()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
- 1, this->packet_id(), target);
- }
- // repeated .client2world_protocols.RankInfo rankList = 2;
- for (int i = 0; i < this->ranklist_size(); i++) {
- target = ::google::protobuf::internal::WireFormatLite::
- WriteMessageNoVirtualToArray(
- 2, this->ranklist(i), target);
- }
- // optional int32 selfRank = 3;
- if (has_selfrank()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(3, this->selfrank(), target);
- }
- // optional int64 selfGold = 4;
- if (has_selfgold()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt64ToArray(4, this->selfgold(), target);
- }
- if (!unknown_fields().empty()) {
- target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
- unknown_fields(), target);
- }
- return target;
- }
- int packetw2c_req_coin_growth_result::ByteSize() const {
- int total_size = 0;
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_coin_growth_result];
- if (has_packet_id()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->packet_id());
- }
- // optional int32 selfRank = 3;
- if (has_selfrank()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->selfrank());
- }
- // optional int64 selfGold = 4;
- if (has_selfgold()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int64Size(
- this->selfgold());
- }
- }
- // repeated .client2world_protocols.RankInfo rankList = 2;
- total_size += 1 * this->ranklist_size();
- for (int i = 0; i < this->ranklist_size(); i++) {
- total_size +=
- ::google::protobuf::internal::WireFormatLite::MessageSizeNoVirtual(
- this->ranklist(i));
- }
- if (!unknown_fields().empty()) {
- total_size +=
- ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
- unknown_fields());
- }
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = total_size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- return total_size;
- }
- void packetw2c_req_coin_growth_result::MergeFrom(const ::google::protobuf::Message& from) {
- GOOGLE_CHECK_NE(&from, this);
- const packetw2c_req_coin_growth_result* source =
- ::google::protobuf::internal::dynamic_cast_if_available<const packetw2c_req_coin_growth_result*>(
- &from);
- if (source == NULL) {
- ::google::protobuf::internal::ReflectionOps::Merge(from, this);
- } else {
- MergeFrom(*source);
- }
- }
- void packetw2c_req_coin_growth_result::MergeFrom(const packetw2c_req_coin_growth_result& from) {
- GOOGLE_CHECK_NE(&from, this);
- ranklist_.MergeFrom(from.ranklist_);
- if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- if (from.has_packet_id()) {
- set_packet_id(from.packet_id());
- }
- if (from.has_selfrank()) {
- set_selfrank(from.selfrank());
- }
- if (from.has_selfgold()) {
- set_selfgold(from.selfgold());
- }
- }
- mutable_unknown_fields()->MergeFrom(from.unknown_fields());
- }
- void packetw2c_req_coin_growth_result::CopyFrom(const ::google::protobuf::Message& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- void packetw2c_req_coin_growth_result::CopyFrom(const packetw2c_req_coin_growth_result& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- bool packetw2c_req_coin_growth_result::IsInitialized() const {
- return true;
- }
- void packetw2c_req_coin_growth_result::Swap(packetw2c_req_coin_growth_result* other) {
- if (other != this) {
- std::swap(packet_id_, other->packet_id_);
- ranklist_.Swap(&other->ranklist_);
- std::swap(selfrank_, other->selfrank_);
- std::swap(selfgold_, other->selfgold_);
- std::swap(_has_bits_[0], other->_has_bits_[0]);
- _unknown_fields_.Swap(&other->_unknown_fields_);
- std::swap(_cached_size_, other->_cached_size_);
- }
- }
- ::google::protobuf::Metadata packetw2c_req_coin_growth_result::GetMetadata() const {
- protobuf_AssignDescriptorsOnce();
- ::google::protobuf::Metadata metadata;
- metadata.descriptor = packetw2c_req_coin_growth_result_descriptor_;
- metadata.reflection = packetw2c_req_coin_growth_result_reflection_;
- return metadata;
- }
- // @@protoc_insertion_point(namespace_scope)
- } // namespace client2world_protocols
- // @@protoc_insertion_point(global_scope)
|