123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559 |
- // Generated by the protocol buffer compiler. DO NOT EDIT!
- // source: client2world_player_property.proto
- #define INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION
- #include "client2world_player_property.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* packetc2w_update_nickname_descriptor_ = NULL;
- const ::google::protobuf::internal::GeneratedMessageReflection*
- packetc2w_update_nickname_reflection_ = NULL;
- const ::google::protobuf::Descriptor* packetw2c_update_nickname_result_descriptor_ = NULL;
- const ::google::protobuf::internal::GeneratedMessageReflection*
- packetw2c_update_nickname_result_reflection_ = NULL;
- const ::google::protobuf::Descriptor* packetc2w_req_self_record_descriptor_ = NULL;
- const ::google::protobuf::internal::GeneratedMessageReflection*
- packetc2w_req_self_record_reflection_ = NULL;
- const ::google::protobuf::Descriptor* packetw2c_req_self_record_result_descriptor_ = NULL;
- const ::google::protobuf::internal::GeneratedMessageReflection*
- packetw2c_req_self_record_result_reflection_ = NULL;
- const ::google::protobuf::Descriptor* packetc2w_finish_one_new_guild_descriptor_ = NULL;
- const ::google::protobuf::internal::GeneratedMessageReflection*
- packetc2w_finish_one_new_guild_reflection_ = NULL;
- const ::google::protobuf::Descriptor* packetw2c_finish_one_new_guild_result_descriptor_ = NULL;
- const ::google::protobuf::internal::GeneratedMessageReflection*
- packetw2c_finish_one_new_guild_result_reflection_ = NULL;
- const ::google::protobuf::Descriptor* packetc2w_req_last_rechargelist_descriptor_ = NULL;
- const ::google::protobuf::internal::GeneratedMessageReflection*
- packetc2w_req_last_rechargelist_reflection_ = NULL;
- const ::google::protobuf::Descriptor* packetw2c_req_last_rechargelist_result_descriptor_ = NULL;
- const ::google::protobuf::internal::GeneratedMessageReflection*
- packetw2c_req_last_rechargelist_result_reflection_ = NULL;
- } // namespace
- void protobuf_AssignDesc_client2world_5fplayer_5fproperty_2eproto() {
- protobuf_AddDesc_client2world_5fplayer_5fproperty_2eproto();
- const ::google::protobuf::FileDescriptor* file =
- ::google::protobuf::DescriptorPool::generated_pool()->FindFileByName(
- "client2world_player_property.proto");
- GOOGLE_CHECK(file != NULL);
- packetc2w_update_nickname_descriptor_ = file->message_type(0);
- static const int packetc2w_update_nickname_offsets_[2] = {
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_update_nickname, packet_id_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_update_nickname, nickname_),
- };
- packetc2w_update_nickname_reflection_ =
- new ::google::protobuf::internal::GeneratedMessageReflection(
- packetc2w_update_nickname_descriptor_,
- packetc2w_update_nickname::default_instance_,
- packetc2w_update_nickname_offsets_,
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_update_nickname, _has_bits_[0]),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_update_nickname, _unknown_fields_),
- -1,
- ::google::protobuf::DescriptorPool::generated_pool(),
- ::google::protobuf::MessageFactory::generated_factory(),
- sizeof(packetc2w_update_nickname));
- packetw2c_update_nickname_result_descriptor_ = file->message_type(1);
- static const int packetw2c_update_nickname_result_offsets_[3] = {
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_update_nickname_result, packet_id_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_update_nickname_result, nickname_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_update_nickname_result, result_),
- };
- packetw2c_update_nickname_result_reflection_ =
- new ::google::protobuf::internal::GeneratedMessageReflection(
- packetw2c_update_nickname_result_descriptor_,
- packetw2c_update_nickname_result::default_instance_,
- packetw2c_update_nickname_result_offsets_,
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_update_nickname_result, _has_bits_[0]),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_update_nickname_result, _unknown_fields_),
- -1,
- ::google::protobuf::DescriptorPool::generated_pool(),
- ::google::protobuf::MessageFactory::generated_factory(),
- sizeof(packetw2c_update_nickname_result));
- packetc2w_req_self_record_descriptor_ = file->message_type(2);
- static const int packetc2w_req_self_record_offsets_[1] = {
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_req_self_record, packet_id_),
- };
- packetc2w_req_self_record_reflection_ =
- new ::google::protobuf::internal::GeneratedMessageReflection(
- packetc2w_req_self_record_descriptor_,
- packetc2w_req_self_record::default_instance_,
- packetc2w_req_self_record_offsets_,
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_req_self_record, _has_bits_[0]),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_req_self_record, _unknown_fields_),
- -1,
- ::google::protobuf::DescriptorPool::generated_pool(),
- ::google::protobuf::MessageFactory::generated_factory(),
- sizeof(packetc2w_req_self_record));
- packetw2c_req_self_record_result_descriptor_ = file->message_type(3);
- static const int packetw2c_req_self_record_result_offsets_[4] = {
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_self_record_result, packet_id_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_self_record_result, maxcoin_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_self_record_result, maxdiamond_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_self_record_result, maxticket_),
- };
- packetw2c_req_self_record_result_reflection_ =
- new ::google::protobuf::internal::GeneratedMessageReflection(
- packetw2c_req_self_record_result_descriptor_,
- packetw2c_req_self_record_result::default_instance_,
- packetw2c_req_self_record_result_offsets_,
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_self_record_result, _has_bits_[0]),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_self_record_result, _unknown_fields_),
- -1,
- ::google::protobuf::DescriptorPool::generated_pool(),
- ::google::protobuf::MessageFactory::generated_factory(),
- sizeof(packetw2c_req_self_record_result));
- packetc2w_finish_one_new_guild_descriptor_ = file->message_type(4);
- static const int packetc2w_finish_one_new_guild_offsets_[3] = {
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_finish_one_new_guild, packet_id_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_finish_one_new_guild, type_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_finish_one_new_guild, stepid_),
- };
- packetc2w_finish_one_new_guild_reflection_ =
- new ::google::protobuf::internal::GeneratedMessageReflection(
- packetc2w_finish_one_new_guild_descriptor_,
- packetc2w_finish_one_new_guild::default_instance_,
- packetc2w_finish_one_new_guild_offsets_,
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_finish_one_new_guild, _has_bits_[0]),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_finish_one_new_guild, _unknown_fields_),
- -1,
- ::google::protobuf::DescriptorPool::generated_pool(),
- ::google::protobuf::MessageFactory::generated_factory(),
- sizeof(packetc2w_finish_one_new_guild));
- packetw2c_finish_one_new_guild_result_descriptor_ = file->message_type(5);
- static const int packetw2c_finish_one_new_guild_result_offsets_[3] = {
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_finish_one_new_guild_result, packet_id_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_finish_one_new_guild_result, type_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_finish_one_new_guild_result, stepid_),
- };
- packetw2c_finish_one_new_guild_result_reflection_ =
- new ::google::protobuf::internal::GeneratedMessageReflection(
- packetw2c_finish_one_new_guild_result_descriptor_,
- packetw2c_finish_one_new_guild_result::default_instance_,
- packetw2c_finish_one_new_guild_result_offsets_,
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_finish_one_new_guild_result, _has_bits_[0]),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_finish_one_new_guild_result, _unknown_fields_),
- -1,
- ::google::protobuf::DescriptorPool::generated_pool(),
- ::google::protobuf::MessageFactory::generated_factory(),
- sizeof(packetw2c_finish_one_new_guild_result));
- packetc2w_req_last_rechargelist_descriptor_ = file->message_type(6);
- static const int packetc2w_req_last_rechargelist_offsets_[1] = {
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_req_last_rechargelist, packet_id_),
- };
- packetc2w_req_last_rechargelist_reflection_ =
- new ::google::protobuf::internal::GeneratedMessageReflection(
- packetc2w_req_last_rechargelist_descriptor_,
- packetc2w_req_last_rechargelist::default_instance_,
- packetc2w_req_last_rechargelist_offsets_,
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_req_last_rechargelist, _has_bits_[0]),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetc2w_req_last_rechargelist, _unknown_fields_),
- -1,
- ::google::protobuf::DescriptorPool::generated_pool(),
- ::google::protobuf::MessageFactory::generated_factory(),
- sizeof(packetc2w_req_last_rechargelist));
- packetw2c_req_last_rechargelist_result_descriptor_ = file->message_type(7);
- static const int packetw2c_req_last_rechargelist_result_offsets_[3] = {
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_last_rechargelist_result, packet_id_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_last_rechargelist_result, goldpayidlist_),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_last_rechargelist_result, gempayidlist_),
- };
- packetw2c_req_last_rechargelist_result_reflection_ =
- new ::google::protobuf::internal::GeneratedMessageReflection(
- packetw2c_req_last_rechargelist_result_descriptor_,
- packetw2c_req_last_rechargelist_result::default_instance_,
- packetw2c_req_last_rechargelist_result_offsets_,
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_last_rechargelist_result, _has_bits_[0]),
- GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(packetw2c_req_last_rechargelist_result, _unknown_fields_),
- -1,
- ::google::protobuf::DescriptorPool::generated_pool(),
- ::google::protobuf::MessageFactory::generated_factory(),
- sizeof(packetw2c_req_last_rechargelist_result));
- }
- namespace {
- GOOGLE_PROTOBUF_DECLARE_ONCE(protobuf_AssignDescriptors_once_);
- inline void protobuf_AssignDescriptorsOnce() {
- ::google::protobuf::GoogleOnceInit(&protobuf_AssignDescriptors_once_,
- &protobuf_AssignDesc_client2world_5fplayer_5fproperty_2eproto);
- }
- void protobuf_RegisterTypes(const ::std::string&) {
- protobuf_AssignDescriptorsOnce();
- ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
- packetc2w_update_nickname_descriptor_, &packetc2w_update_nickname::default_instance());
- ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
- packetw2c_update_nickname_result_descriptor_, &packetw2c_update_nickname_result::default_instance());
- ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
- packetc2w_req_self_record_descriptor_, &packetc2w_req_self_record::default_instance());
- ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
- packetw2c_req_self_record_result_descriptor_, &packetw2c_req_self_record_result::default_instance());
- ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
- packetc2w_finish_one_new_guild_descriptor_, &packetc2w_finish_one_new_guild::default_instance());
- ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
- packetw2c_finish_one_new_guild_result_descriptor_, &packetw2c_finish_one_new_guild_result::default_instance());
- ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
- packetc2w_req_last_rechargelist_descriptor_, &packetc2w_req_last_rechargelist::default_instance());
- ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
- packetw2c_req_last_rechargelist_result_descriptor_, &packetw2c_req_last_rechargelist_result::default_instance());
- }
- } // namespace
- void protobuf_ShutdownFile_client2world_5fplayer_5fproperty_2eproto() {
- delete packetc2w_update_nickname::default_instance_;
- delete packetc2w_update_nickname_reflection_;
- delete packetw2c_update_nickname_result::default_instance_;
- delete packetw2c_update_nickname_result_reflection_;
- delete packetc2w_req_self_record::default_instance_;
- delete packetc2w_req_self_record_reflection_;
- delete packetw2c_req_self_record_result::default_instance_;
- delete packetw2c_req_self_record_result_reflection_;
- delete packetc2w_finish_one_new_guild::default_instance_;
- delete packetc2w_finish_one_new_guild_reflection_;
- delete packetw2c_finish_one_new_guild_result::default_instance_;
- delete packetw2c_finish_one_new_guild_result_reflection_;
- delete packetc2w_req_last_rechargelist::default_instance_;
- delete packetc2w_req_last_rechargelist_reflection_;
- delete packetw2c_req_last_rechargelist_result::default_instance_;
- delete packetw2c_req_last_rechargelist_result_reflection_;
- }
- void protobuf_AddDesc_client2world_5fplayer_5fproperty_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\"client2world_player_property.proto\022\026cl"
- "ient2world_protocols\032\033client2world_msg_t"
- "ype.proto\032\022msg_type_def.proto\032\022msg_info_"
- "def.proto\"\206\001\n\031packetc2w_update_nickname\022"
- "W\n\tpacket_id\030\001 \001(\0162).client2world_protoc"
- "ols.e_server_msg_type:\031e_mst_c2w_update_"
- "nickname\022\020\n\010nickName\030\002 \001(\t\"\244\001\n packetw2c"
- "_update_nickname_result\022^\n\tpacket_id\030\001 \001"
- "(\0162).client2world_protocols.e_server_msg"
- "_type: e_mst_w2c_update_nickname_result\022"
- "\020\n\010nickName\030\002 \001(\t\022\016\n\006result\030\003 \001(\005\"t\n\031pac"
- "ketc2w_req_self_record\022W\n\tpacket_id\030\001 \001("
- "\0162).client2world_protocols.e_server_msg_"
- "type:\031e_mst_c2w_req_self_record\"\272\001\n pack"
- "etw2c_req_self_record_result\022^\n\tpacket_i"
- "d\030\001 \001(\0162).client2world_protocols.e_serve"
- "r_msg_type: e_mst_w2c_req_self_record_re"
- "sult\022\017\n\007maxCoin\030\002 \001(\005\022\022\n\nmaxDiamond\030\003 \001("
- "\005\022\021\n\tmaxTicket\030\004 \001(\005\"\234\001\n\036packetc2w_finis"
- "h_one_new_guild\022\\\n\tpacket_id\030\001 \001(\0162).cli"
- "ent2world_protocols.e_server_msg_type:\036e"
- "_mst_c2w_finish_one_new_guild\022\014\n\004type\030\002 "
- "\001(\005\022\016\n\006stepId\030\003 \001(\005\"\252\001\n%packetw2c_finish"
- "_one_new_guild_result\022c\n\tpacket_id\030\001 \001(\016"
- "2).client2world_protocols.e_server_msg_t"
- "ype:%e_mst_w2c_finish_one_new_guild_resu"
- "lt\022\014\n\004type\030\002 \001(\005\022\016\n\006stepId\030\003 \001(\005\"\200\001\n\037pac"
- "ketc2w_req_last_rechargelist\022]\n\tpacket_i"
- "d\030\001 \001(\0162).client2world_protocols.e_serve"
- "r_msg_type:\037e_mst_c2w_req_last_rechargel"
- "ist\"\273\001\n&packetw2c_req_last_rechargelist_"
- "result\022d\n\tpacket_id\030\001 \001(\0162).client2world"
- "_protocols.e_server_msg_type:&e_mst_w2c_"
- "req_last_rechargelist_result\022\025\n\rgoldPayI"
- "dList\030\002 \003(\005\022\024\n\014gemPayIdList\030\003 \003(\005", 1393);
- ::google::protobuf::MessageFactory::InternalRegisterGeneratedFile(
- "client2world_player_property.proto", &protobuf_RegisterTypes);
- packetc2w_update_nickname::default_instance_ = new packetc2w_update_nickname();
- packetw2c_update_nickname_result::default_instance_ = new packetw2c_update_nickname_result();
- packetc2w_req_self_record::default_instance_ = new packetc2w_req_self_record();
- packetw2c_req_self_record_result::default_instance_ = new packetw2c_req_self_record_result();
- packetc2w_finish_one_new_guild::default_instance_ = new packetc2w_finish_one_new_guild();
- packetw2c_finish_one_new_guild_result::default_instance_ = new packetw2c_finish_one_new_guild_result();
- packetc2w_req_last_rechargelist::default_instance_ = new packetc2w_req_last_rechargelist();
- packetw2c_req_last_rechargelist_result::default_instance_ = new packetw2c_req_last_rechargelist_result();
- packetc2w_update_nickname::default_instance_->InitAsDefaultInstance();
- packetw2c_update_nickname_result::default_instance_->InitAsDefaultInstance();
- packetc2w_req_self_record::default_instance_->InitAsDefaultInstance();
- packetw2c_req_self_record_result::default_instance_->InitAsDefaultInstance();
- packetc2w_finish_one_new_guild::default_instance_->InitAsDefaultInstance();
- packetw2c_finish_one_new_guild_result::default_instance_->InitAsDefaultInstance();
- packetc2w_req_last_rechargelist::default_instance_->InitAsDefaultInstance();
- packetw2c_req_last_rechargelist_result::default_instance_->InitAsDefaultInstance();
- ::google::protobuf::internal::OnShutdown(&protobuf_ShutdownFile_client2world_5fplayer_5fproperty_2eproto);
- }
- // Force AddDescriptors() to be called at static initialization time.
- struct StaticDescriptorInitializer_client2world_5fplayer_5fproperty_2eproto {
- StaticDescriptorInitializer_client2world_5fplayer_5fproperty_2eproto() {
- protobuf_AddDesc_client2world_5fplayer_5fproperty_2eproto();
- }
- } static_descriptor_initializer_client2world_5fplayer_5fproperty_2eproto_;
- // ===================================================================
- #ifndef _MSC_VER
- const int packetc2w_update_nickname::kPacketIdFieldNumber;
- const int packetc2w_update_nickname::kNickNameFieldNumber;
- #endif // !_MSC_VER
- packetc2w_update_nickname::packetc2w_update_nickname()
- : ::google::protobuf::Message() {
- SharedCtor();
- }
- void packetc2w_update_nickname::InitAsDefaultInstance() {
- }
- packetc2w_update_nickname::packetc2w_update_nickname(const packetc2w_update_nickname& from)
- : ::google::protobuf::Message() {
- SharedCtor();
- MergeFrom(from);
- }
- void packetc2w_update_nickname::SharedCtor() {
- _cached_size_ = 0;
- packet_id_ = 5011;
- nickname_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- }
- packetc2w_update_nickname::~packetc2w_update_nickname() {
- SharedDtor();
- }
- void packetc2w_update_nickname::SharedDtor() {
- if (nickname_ != &::google::protobuf::internal::kEmptyString) {
- delete nickname_;
- }
- if (this != default_instance_) {
- }
- }
- void packetc2w_update_nickname::SetCachedSize(int size) const {
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- }
- const ::google::protobuf::Descriptor* packetc2w_update_nickname::descriptor() {
- protobuf_AssignDescriptorsOnce();
- return packetc2w_update_nickname_descriptor_;
- }
- const packetc2w_update_nickname& packetc2w_update_nickname::default_instance() {
- if (default_instance_ == NULL) protobuf_AddDesc_client2world_5fplayer_5fproperty_2eproto();
- return *default_instance_;
- }
- packetc2w_update_nickname* packetc2w_update_nickname::default_instance_ = NULL;
- packetc2w_update_nickname* packetc2w_update_nickname::New() const {
- return new packetc2w_update_nickname;
- }
- void packetc2w_update_nickname::Clear() {
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- packet_id_ = 5011;
- if (has_nickname()) {
- if (nickname_ != &::google::protobuf::internal::kEmptyString) {
- nickname_->clear();
- }
- }
- }
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- mutable_unknown_fields()->Clear();
- }
- bool packetc2w_update_nickname::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_update_nickname];
- 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_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->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_update_nickname::SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2w_update_nickname];
- if (has_packet_id()) {
- ::google::protobuf::internal::WireFormatLite::WriteEnum(
- 1, this->packet_id(), 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);
- }
- if (!unknown_fields().empty()) {
- ::google::protobuf::internal::WireFormat::SerializeUnknownFields(
- unknown_fields(), output);
- }
- }
- ::google::protobuf::uint8* packetc2w_update_nickname::SerializeWithCachedSizesToArray(
- ::google::protobuf::uint8* target) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2w_update_nickname];
- if (has_packet_id()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
- 1, this->packet_id(), 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);
- }
- if (!unknown_fields().empty()) {
- target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
- unknown_fields(), target);
- }
- return target;
- }
- int packetc2w_update_nickname::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_update_nickname];
- if (has_packet_id()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->packet_id());
- }
- // optional string nickName = 2;
- if (has_nickname()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::StringSize(
- this->nickname());
- }
- }
- 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_update_nickname::MergeFrom(const ::google::protobuf::Message& from) {
- GOOGLE_CHECK_NE(&from, this);
- const packetc2w_update_nickname* source =
- ::google::protobuf::internal::dynamic_cast_if_available<const packetc2w_update_nickname*>(
- &from);
- if (source == NULL) {
- ::google::protobuf::internal::ReflectionOps::Merge(from, this);
- } else {
- MergeFrom(*source);
- }
- }
- void packetc2w_update_nickname::MergeFrom(const packetc2w_update_nickname& 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_nickname()) {
- set_nickname(from.nickname());
- }
- }
- mutable_unknown_fields()->MergeFrom(from.unknown_fields());
- }
- void packetc2w_update_nickname::CopyFrom(const ::google::protobuf::Message& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- void packetc2w_update_nickname::CopyFrom(const packetc2w_update_nickname& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- bool packetc2w_update_nickname::IsInitialized() const {
- return true;
- }
- void packetc2w_update_nickname::Swap(packetc2w_update_nickname* other) {
- if (other != this) {
- std::swap(packet_id_, other->packet_id_);
- std::swap(nickname_, other->nickname_);
- 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_update_nickname::GetMetadata() const {
- protobuf_AssignDescriptorsOnce();
- ::google::protobuf::Metadata metadata;
- metadata.descriptor = packetc2w_update_nickname_descriptor_;
- metadata.reflection = packetc2w_update_nickname_reflection_;
- return metadata;
- }
- // ===================================================================
- #ifndef _MSC_VER
- const int packetw2c_update_nickname_result::kPacketIdFieldNumber;
- const int packetw2c_update_nickname_result::kNickNameFieldNumber;
- const int packetw2c_update_nickname_result::kResultFieldNumber;
- #endif // !_MSC_VER
- packetw2c_update_nickname_result::packetw2c_update_nickname_result()
- : ::google::protobuf::Message() {
- SharedCtor();
- }
- void packetw2c_update_nickname_result::InitAsDefaultInstance() {
- }
- packetw2c_update_nickname_result::packetw2c_update_nickname_result(const packetw2c_update_nickname_result& from)
- : ::google::protobuf::Message() {
- SharedCtor();
- MergeFrom(from);
- }
- void packetw2c_update_nickname_result::SharedCtor() {
- _cached_size_ = 0;
- packet_id_ = 7510;
- nickname_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
- result_ = 0;
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- }
- packetw2c_update_nickname_result::~packetw2c_update_nickname_result() {
- SharedDtor();
- }
- void packetw2c_update_nickname_result::SharedDtor() {
- if (nickname_ != &::google::protobuf::internal::kEmptyString) {
- delete nickname_;
- }
- if (this != default_instance_) {
- }
- }
- void packetw2c_update_nickname_result::SetCachedSize(int size) const {
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- }
- const ::google::protobuf::Descriptor* packetw2c_update_nickname_result::descriptor() {
- protobuf_AssignDescriptorsOnce();
- return packetw2c_update_nickname_result_descriptor_;
- }
- const packetw2c_update_nickname_result& packetw2c_update_nickname_result::default_instance() {
- if (default_instance_ == NULL) protobuf_AddDesc_client2world_5fplayer_5fproperty_2eproto();
- return *default_instance_;
- }
- packetw2c_update_nickname_result* packetw2c_update_nickname_result::default_instance_ = NULL;
- packetw2c_update_nickname_result* packetw2c_update_nickname_result::New() const {
- return new packetw2c_update_nickname_result;
- }
- void packetw2c_update_nickname_result::Clear() {
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- packet_id_ = 7510;
- if (has_nickname()) {
- if (nickname_ != &::google::protobuf::internal::kEmptyString) {
- nickname_->clear();
- }
- }
- result_ = 0;
- }
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- mutable_unknown_fields()->Clear();
- }
- bool packetw2c_update_nickname_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_update_nickname_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_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_result;
- break;
- }
- // optional int32 result = 3;
- case 3: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_result:
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &result_)));
- set_has_result();
- } 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_update_nickname_result::SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_w2c_update_nickname_result];
- if (has_packet_id()) {
- ::google::protobuf::internal::WireFormatLite::WriteEnum(
- 1, this->packet_id(), 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 result = 3;
- if (has_result()) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(3, this->result(), output);
- }
- if (!unknown_fields().empty()) {
- ::google::protobuf::internal::WireFormat::SerializeUnknownFields(
- unknown_fields(), output);
- }
- }
- ::google::protobuf::uint8* packetw2c_update_nickname_result::SerializeWithCachedSizesToArray(
- ::google::protobuf::uint8* target) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_w2c_update_nickname_result];
- if (has_packet_id()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
- 1, this->packet_id(), 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 result = 3;
- if (has_result()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(3, this->result(), target);
- }
- if (!unknown_fields().empty()) {
- target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
- unknown_fields(), target);
- }
- return target;
- }
- int packetw2c_update_nickname_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_update_nickname_result];
- if (has_packet_id()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->packet_id());
- }
- // optional string nickName = 2;
- if (has_nickname()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::StringSize(
- this->nickname());
- }
- // optional int32 result = 3;
- if (has_result()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->result());
- }
- }
- 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_update_nickname_result::MergeFrom(const ::google::protobuf::Message& from) {
- GOOGLE_CHECK_NE(&from, this);
- const packetw2c_update_nickname_result* source =
- ::google::protobuf::internal::dynamic_cast_if_available<const packetw2c_update_nickname_result*>(
- &from);
- if (source == NULL) {
- ::google::protobuf::internal::ReflectionOps::Merge(from, this);
- } else {
- MergeFrom(*source);
- }
- }
- void packetw2c_update_nickname_result::MergeFrom(const packetw2c_update_nickname_result& 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_nickname()) {
- set_nickname(from.nickname());
- }
- if (from.has_result()) {
- set_result(from.result());
- }
- }
- mutable_unknown_fields()->MergeFrom(from.unknown_fields());
- }
- void packetw2c_update_nickname_result::CopyFrom(const ::google::protobuf::Message& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- void packetw2c_update_nickname_result::CopyFrom(const packetw2c_update_nickname_result& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- bool packetw2c_update_nickname_result::IsInitialized() const {
- return true;
- }
- void packetw2c_update_nickname_result::Swap(packetw2c_update_nickname_result* other) {
- if (other != this) {
- std::swap(packet_id_, other->packet_id_);
- std::swap(nickname_, other->nickname_);
- std::swap(result_, other->result_);
- 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_update_nickname_result::GetMetadata() const {
- protobuf_AssignDescriptorsOnce();
- ::google::protobuf::Metadata metadata;
- metadata.descriptor = packetw2c_update_nickname_result_descriptor_;
- metadata.reflection = packetw2c_update_nickname_result_reflection_;
- return metadata;
- }
- // ===================================================================
- #ifndef _MSC_VER
- const int packetc2w_req_self_record::kPacketIdFieldNumber;
- #endif // !_MSC_VER
- packetc2w_req_self_record::packetc2w_req_self_record()
- : ::google::protobuf::Message() {
- SharedCtor();
- }
- void packetc2w_req_self_record::InitAsDefaultInstance() {
- }
- packetc2w_req_self_record::packetc2w_req_self_record(const packetc2w_req_self_record& from)
- : ::google::protobuf::Message() {
- SharedCtor();
- MergeFrom(from);
- }
- void packetc2w_req_self_record::SharedCtor() {
- _cached_size_ = 0;
- packet_id_ = 5033;
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- }
- packetc2w_req_self_record::~packetc2w_req_self_record() {
- SharedDtor();
- }
- void packetc2w_req_self_record::SharedDtor() {
- if (this != default_instance_) {
- }
- }
- void packetc2w_req_self_record::SetCachedSize(int size) const {
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- }
- const ::google::protobuf::Descriptor* packetc2w_req_self_record::descriptor() {
- protobuf_AssignDescriptorsOnce();
- return packetc2w_req_self_record_descriptor_;
- }
- const packetc2w_req_self_record& packetc2w_req_self_record::default_instance() {
- if (default_instance_ == NULL) protobuf_AddDesc_client2world_5fplayer_5fproperty_2eproto();
- return *default_instance_;
- }
- packetc2w_req_self_record* packetc2w_req_self_record::default_instance_ = NULL;
- packetc2w_req_self_record* packetc2w_req_self_record::New() const {
- return new packetc2w_req_self_record;
- }
- void packetc2w_req_self_record::Clear() {
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- packet_id_ = 5033;
- }
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- mutable_unknown_fields()->Clear();
- }
- bool packetc2w_req_self_record::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_self_record];
- 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_self_record::SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_self_record];
- 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_self_record::SerializeWithCachedSizesToArray(
- ::google::protobuf::uint8* target) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_self_record];
- 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_self_record::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_self_record];
- 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_self_record::MergeFrom(const ::google::protobuf::Message& from) {
- GOOGLE_CHECK_NE(&from, this);
- const packetc2w_req_self_record* source =
- ::google::protobuf::internal::dynamic_cast_if_available<const packetc2w_req_self_record*>(
- &from);
- if (source == NULL) {
- ::google::protobuf::internal::ReflectionOps::Merge(from, this);
- } else {
- MergeFrom(*source);
- }
- }
- void packetc2w_req_self_record::MergeFrom(const packetc2w_req_self_record& 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_self_record::CopyFrom(const ::google::protobuf::Message& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- void packetc2w_req_self_record::CopyFrom(const packetc2w_req_self_record& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- bool packetc2w_req_self_record::IsInitialized() const {
- return true;
- }
- void packetc2w_req_self_record::Swap(packetc2w_req_self_record* 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_self_record::GetMetadata() const {
- protobuf_AssignDescriptorsOnce();
- ::google::protobuf::Metadata metadata;
- metadata.descriptor = packetc2w_req_self_record_descriptor_;
- metadata.reflection = packetc2w_req_self_record_reflection_;
- return metadata;
- }
- // ===================================================================
- #ifndef _MSC_VER
- const int packetw2c_req_self_record_result::kPacketIdFieldNumber;
- const int packetw2c_req_self_record_result::kMaxCoinFieldNumber;
- const int packetw2c_req_self_record_result::kMaxDiamondFieldNumber;
- const int packetw2c_req_self_record_result::kMaxTicketFieldNumber;
- #endif // !_MSC_VER
- packetw2c_req_self_record_result::packetw2c_req_self_record_result()
- : ::google::protobuf::Message() {
- SharedCtor();
- }
- void packetw2c_req_self_record_result::InitAsDefaultInstance() {
- }
- packetw2c_req_self_record_result::packetw2c_req_self_record_result(const packetw2c_req_self_record_result& from)
- : ::google::protobuf::Message() {
- SharedCtor();
- MergeFrom(from);
- }
- void packetw2c_req_self_record_result::SharedCtor() {
- _cached_size_ = 0;
- packet_id_ = 7535;
- maxcoin_ = 0;
- maxdiamond_ = 0;
- maxticket_ = 0;
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- }
- packetw2c_req_self_record_result::~packetw2c_req_self_record_result() {
- SharedDtor();
- }
- void packetw2c_req_self_record_result::SharedDtor() {
- if (this != default_instance_) {
- }
- }
- void packetw2c_req_self_record_result::SetCachedSize(int size) const {
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- }
- const ::google::protobuf::Descriptor* packetw2c_req_self_record_result::descriptor() {
- protobuf_AssignDescriptorsOnce();
- return packetw2c_req_self_record_result_descriptor_;
- }
- const packetw2c_req_self_record_result& packetw2c_req_self_record_result::default_instance() {
- if (default_instance_ == NULL) protobuf_AddDesc_client2world_5fplayer_5fproperty_2eproto();
- return *default_instance_;
- }
- packetw2c_req_self_record_result* packetw2c_req_self_record_result::default_instance_ = NULL;
- packetw2c_req_self_record_result* packetw2c_req_self_record_result::New() const {
- return new packetw2c_req_self_record_result;
- }
- void packetw2c_req_self_record_result::Clear() {
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- packet_id_ = 7535;
- maxcoin_ = 0;
- maxdiamond_ = 0;
- maxticket_ = 0;
- }
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- mutable_unknown_fields()->Clear();
- }
- bool packetw2c_req_self_record_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_self_record_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(16)) goto parse_maxCoin;
- break;
- }
- // optional int32 maxCoin = 2;
- case 2: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_maxCoin:
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &maxcoin_)));
- set_has_maxcoin();
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(24)) goto parse_maxDiamond;
- break;
- }
- // optional int32 maxDiamond = 3;
- case 3: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_maxDiamond:
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &maxdiamond_)));
- set_has_maxdiamond();
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(32)) goto parse_maxTicket;
- break;
- }
- // optional int32 maxTicket = 4;
- case 4: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_maxTicket:
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &maxticket_)));
- set_has_maxticket();
- } 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_self_record_result::SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_self_record_result];
- if (has_packet_id()) {
- ::google::protobuf::internal::WireFormatLite::WriteEnum(
- 1, this->packet_id(), output);
- }
- // optional int32 maxCoin = 2;
- if (has_maxcoin()) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(2, this->maxcoin(), output);
- }
- // optional int32 maxDiamond = 3;
- if (has_maxdiamond()) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(3, this->maxdiamond(), output);
- }
- // optional int32 maxTicket = 4;
- if (has_maxticket()) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(4, this->maxticket(), output);
- }
- if (!unknown_fields().empty()) {
- ::google::protobuf::internal::WireFormat::SerializeUnknownFields(
- unknown_fields(), output);
- }
- }
- ::google::protobuf::uint8* packetw2c_req_self_record_result::SerializeWithCachedSizesToArray(
- ::google::protobuf::uint8* target) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_self_record_result];
- if (has_packet_id()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
- 1, this->packet_id(), target);
- }
- // optional int32 maxCoin = 2;
- if (has_maxcoin()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(2, this->maxcoin(), target);
- }
- // optional int32 maxDiamond = 3;
- if (has_maxdiamond()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(3, this->maxdiamond(), target);
- }
- // optional int32 maxTicket = 4;
- if (has_maxticket()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(4, this->maxticket(), target);
- }
- if (!unknown_fields().empty()) {
- target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
- unknown_fields(), target);
- }
- return target;
- }
- int packetw2c_req_self_record_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_self_record_result];
- if (has_packet_id()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->packet_id());
- }
- // optional int32 maxCoin = 2;
- if (has_maxcoin()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->maxcoin());
- }
- // optional int32 maxDiamond = 3;
- if (has_maxdiamond()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->maxdiamond());
- }
- // optional int32 maxTicket = 4;
- if (has_maxticket()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->maxticket());
- }
- }
- 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_self_record_result::MergeFrom(const ::google::protobuf::Message& from) {
- GOOGLE_CHECK_NE(&from, this);
- const packetw2c_req_self_record_result* source =
- ::google::protobuf::internal::dynamic_cast_if_available<const packetw2c_req_self_record_result*>(
- &from);
- if (source == NULL) {
- ::google::protobuf::internal::ReflectionOps::Merge(from, this);
- } else {
- MergeFrom(*source);
- }
- }
- void packetw2c_req_self_record_result::MergeFrom(const packetw2c_req_self_record_result& 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_maxcoin()) {
- set_maxcoin(from.maxcoin());
- }
- if (from.has_maxdiamond()) {
- set_maxdiamond(from.maxdiamond());
- }
- if (from.has_maxticket()) {
- set_maxticket(from.maxticket());
- }
- }
- mutable_unknown_fields()->MergeFrom(from.unknown_fields());
- }
- void packetw2c_req_self_record_result::CopyFrom(const ::google::protobuf::Message& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- void packetw2c_req_self_record_result::CopyFrom(const packetw2c_req_self_record_result& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- bool packetw2c_req_self_record_result::IsInitialized() const {
- return true;
- }
- void packetw2c_req_self_record_result::Swap(packetw2c_req_self_record_result* other) {
- if (other != this) {
- std::swap(packet_id_, other->packet_id_);
- std::swap(maxcoin_, other->maxcoin_);
- std::swap(maxdiamond_, other->maxdiamond_);
- std::swap(maxticket_, other->maxticket_);
- 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_self_record_result::GetMetadata() const {
- protobuf_AssignDescriptorsOnce();
- ::google::protobuf::Metadata metadata;
- metadata.descriptor = packetw2c_req_self_record_result_descriptor_;
- metadata.reflection = packetw2c_req_self_record_result_reflection_;
- return metadata;
- }
- // ===================================================================
- #ifndef _MSC_VER
- const int packetc2w_finish_one_new_guild::kPacketIdFieldNumber;
- const int packetc2w_finish_one_new_guild::kTypeFieldNumber;
- const int packetc2w_finish_one_new_guild::kStepIdFieldNumber;
- #endif // !_MSC_VER
- packetc2w_finish_one_new_guild::packetc2w_finish_one_new_guild()
- : ::google::protobuf::Message() {
- SharedCtor();
- }
- void packetc2w_finish_one_new_guild::InitAsDefaultInstance() {
- }
- packetc2w_finish_one_new_guild::packetc2w_finish_one_new_guild(const packetc2w_finish_one_new_guild& from)
- : ::google::protobuf::Message() {
- SharedCtor();
- MergeFrom(from);
- }
- void packetc2w_finish_one_new_guild::SharedCtor() {
- _cached_size_ = 0;
- packet_id_ = 5042;
- type_ = 0;
- stepid_ = 0;
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- }
- packetc2w_finish_one_new_guild::~packetc2w_finish_one_new_guild() {
- SharedDtor();
- }
- void packetc2w_finish_one_new_guild::SharedDtor() {
- if (this != default_instance_) {
- }
- }
- void packetc2w_finish_one_new_guild::SetCachedSize(int size) const {
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- }
- const ::google::protobuf::Descriptor* packetc2w_finish_one_new_guild::descriptor() {
- protobuf_AssignDescriptorsOnce();
- return packetc2w_finish_one_new_guild_descriptor_;
- }
- const packetc2w_finish_one_new_guild& packetc2w_finish_one_new_guild::default_instance() {
- if (default_instance_ == NULL) protobuf_AddDesc_client2world_5fplayer_5fproperty_2eproto();
- return *default_instance_;
- }
- packetc2w_finish_one_new_guild* packetc2w_finish_one_new_guild::default_instance_ = NULL;
- packetc2w_finish_one_new_guild* packetc2w_finish_one_new_guild::New() const {
- return new packetc2w_finish_one_new_guild;
- }
- void packetc2w_finish_one_new_guild::Clear() {
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- packet_id_ = 5042;
- type_ = 0;
- stepid_ = 0;
- }
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- mutable_unknown_fields()->Clear();
- }
- bool packetc2w_finish_one_new_guild::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_finish_one_new_guild];
- 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_type;
- break;
- }
- // optional int32 type = 2;
- case 2: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_type:
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &type_)));
- set_has_type();
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(24)) goto parse_stepId;
- break;
- }
- // optional int32 stepId = 3;
- case 3: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_stepId:
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &stepid_)));
- set_has_stepid();
- } 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_finish_one_new_guild::SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2w_finish_one_new_guild];
- if (has_packet_id()) {
- ::google::protobuf::internal::WireFormatLite::WriteEnum(
- 1, this->packet_id(), output);
- }
- // optional int32 type = 2;
- if (has_type()) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(2, this->type(), output);
- }
- // optional int32 stepId = 3;
- if (has_stepid()) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(3, this->stepid(), output);
- }
- if (!unknown_fields().empty()) {
- ::google::protobuf::internal::WireFormat::SerializeUnknownFields(
- unknown_fields(), output);
- }
- }
- ::google::protobuf::uint8* packetc2w_finish_one_new_guild::SerializeWithCachedSizesToArray(
- ::google::protobuf::uint8* target) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2w_finish_one_new_guild];
- if (has_packet_id()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
- 1, this->packet_id(), target);
- }
- // optional int32 type = 2;
- if (has_type()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(2, this->type(), target);
- }
- // optional int32 stepId = 3;
- if (has_stepid()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(3, this->stepid(), target);
- }
- if (!unknown_fields().empty()) {
- target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
- unknown_fields(), target);
- }
- return target;
- }
- int packetc2w_finish_one_new_guild::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_finish_one_new_guild];
- if (has_packet_id()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->packet_id());
- }
- // optional int32 type = 2;
- if (has_type()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->type());
- }
- // optional int32 stepId = 3;
- if (has_stepid()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->stepid());
- }
- }
- 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_finish_one_new_guild::MergeFrom(const ::google::protobuf::Message& from) {
- GOOGLE_CHECK_NE(&from, this);
- const packetc2w_finish_one_new_guild* source =
- ::google::protobuf::internal::dynamic_cast_if_available<const packetc2w_finish_one_new_guild*>(
- &from);
- if (source == NULL) {
- ::google::protobuf::internal::ReflectionOps::Merge(from, this);
- } else {
- MergeFrom(*source);
- }
- }
- void packetc2w_finish_one_new_guild::MergeFrom(const packetc2w_finish_one_new_guild& 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_type()) {
- set_type(from.type());
- }
- if (from.has_stepid()) {
- set_stepid(from.stepid());
- }
- }
- mutable_unknown_fields()->MergeFrom(from.unknown_fields());
- }
- void packetc2w_finish_one_new_guild::CopyFrom(const ::google::protobuf::Message& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- void packetc2w_finish_one_new_guild::CopyFrom(const packetc2w_finish_one_new_guild& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- bool packetc2w_finish_one_new_guild::IsInitialized() const {
- return true;
- }
- void packetc2w_finish_one_new_guild::Swap(packetc2w_finish_one_new_guild* other) {
- if (other != this) {
- std::swap(packet_id_, other->packet_id_);
- std::swap(type_, other->type_);
- std::swap(stepid_, other->stepid_);
- 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_finish_one_new_guild::GetMetadata() const {
- protobuf_AssignDescriptorsOnce();
- ::google::protobuf::Metadata metadata;
- metadata.descriptor = packetc2w_finish_one_new_guild_descriptor_;
- metadata.reflection = packetc2w_finish_one_new_guild_reflection_;
- return metadata;
- }
- // ===================================================================
- #ifndef _MSC_VER
- const int packetw2c_finish_one_new_guild_result::kPacketIdFieldNumber;
- const int packetw2c_finish_one_new_guild_result::kTypeFieldNumber;
- const int packetw2c_finish_one_new_guild_result::kStepIdFieldNumber;
- #endif // !_MSC_VER
- packetw2c_finish_one_new_guild_result::packetw2c_finish_one_new_guild_result()
- : ::google::protobuf::Message() {
- SharedCtor();
- }
- void packetw2c_finish_one_new_guild_result::InitAsDefaultInstance() {
- }
- packetw2c_finish_one_new_guild_result::packetw2c_finish_one_new_guild_result(const packetw2c_finish_one_new_guild_result& from)
- : ::google::protobuf::Message() {
- SharedCtor();
- MergeFrom(from);
- }
- void packetw2c_finish_one_new_guild_result::SharedCtor() {
- _cached_size_ = 0;
- packet_id_ = 7545;
- type_ = 0;
- stepid_ = 0;
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- }
- packetw2c_finish_one_new_guild_result::~packetw2c_finish_one_new_guild_result() {
- SharedDtor();
- }
- void packetw2c_finish_one_new_guild_result::SharedDtor() {
- if (this != default_instance_) {
- }
- }
- void packetw2c_finish_one_new_guild_result::SetCachedSize(int size) const {
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- }
- const ::google::protobuf::Descriptor* packetw2c_finish_one_new_guild_result::descriptor() {
- protobuf_AssignDescriptorsOnce();
- return packetw2c_finish_one_new_guild_result_descriptor_;
- }
- const packetw2c_finish_one_new_guild_result& packetw2c_finish_one_new_guild_result::default_instance() {
- if (default_instance_ == NULL) protobuf_AddDesc_client2world_5fplayer_5fproperty_2eproto();
- return *default_instance_;
- }
- packetw2c_finish_one_new_guild_result* packetw2c_finish_one_new_guild_result::default_instance_ = NULL;
- packetw2c_finish_one_new_guild_result* packetw2c_finish_one_new_guild_result::New() const {
- return new packetw2c_finish_one_new_guild_result;
- }
- void packetw2c_finish_one_new_guild_result::Clear() {
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- packet_id_ = 7545;
- type_ = 0;
- stepid_ = 0;
- }
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- mutable_unknown_fields()->Clear();
- }
- bool packetw2c_finish_one_new_guild_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_finish_one_new_guild_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(16)) goto parse_type;
- break;
- }
- // optional int32 type = 2;
- case 2: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_type:
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &type_)));
- set_has_type();
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(24)) goto parse_stepId;
- break;
- }
- // optional int32 stepId = 3;
- case 3: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_stepId:
- DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, &stepid_)));
- set_has_stepid();
- } 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_finish_one_new_guild_result::SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_w2c_finish_one_new_guild_result];
- if (has_packet_id()) {
- ::google::protobuf::internal::WireFormatLite::WriteEnum(
- 1, this->packet_id(), output);
- }
- // optional int32 type = 2;
- if (has_type()) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(2, this->type(), output);
- }
- // optional int32 stepId = 3;
- if (has_stepid()) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(3, this->stepid(), output);
- }
- if (!unknown_fields().empty()) {
- ::google::protobuf::internal::WireFormat::SerializeUnknownFields(
- unknown_fields(), output);
- }
- }
- ::google::protobuf::uint8* packetw2c_finish_one_new_guild_result::SerializeWithCachedSizesToArray(
- ::google::protobuf::uint8* target) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_w2c_finish_one_new_guild_result];
- if (has_packet_id()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
- 1, this->packet_id(), target);
- }
- // optional int32 type = 2;
- if (has_type()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(2, this->type(), target);
- }
- // optional int32 stepId = 3;
- if (has_stepid()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(3, this->stepid(), target);
- }
- if (!unknown_fields().empty()) {
- target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
- unknown_fields(), target);
- }
- return target;
- }
- int packetw2c_finish_one_new_guild_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_finish_one_new_guild_result];
- if (has_packet_id()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->packet_id());
- }
- // optional int32 type = 2;
- if (has_type()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->type());
- }
- // optional int32 stepId = 3;
- if (has_stepid()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::Int32Size(
- this->stepid());
- }
- }
- 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_finish_one_new_guild_result::MergeFrom(const ::google::protobuf::Message& from) {
- GOOGLE_CHECK_NE(&from, this);
- const packetw2c_finish_one_new_guild_result* source =
- ::google::protobuf::internal::dynamic_cast_if_available<const packetw2c_finish_one_new_guild_result*>(
- &from);
- if (source == NULL) {
- ::google::protobuf::internal::ReflectionOps::Merge(from, this);
- } else {
- MergeFrom(*source);
- }
- }
- void packetw2c_finish_one_new_guild_result::MergeFrom(const packetw2c_finish_one_new_guild_result& 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_type()) {
- set_type(from.type());
- }
- if (from.has_stepid()) {
- set_stepid(from.stepid());
- }
- }
- mutable_unknown_fields()->MergeFrom(from.unknown_fields());
- }
- void packetw2c_finish_one_new_guild_result::CopyFrom(const ::google::protobuf::Message& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- void packetw2c_finish_one_new_guild_result::CopyFrom(const packetw2c_finish_one_new_guild_result& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- bool packetw2c_finish_one_new_guild_result::IsInitialized() const {
- return true;
- }
- void packetw2c_finish_one_new_guild_result::Swap(packetw2c_finish_one_new_guild_result* other) {
- if (other != this) {
- std::swap(packet_id_, other->packet_id_);
- std::swap(type_, other->type_);
- std::swap(stepid_, other->stepid_);
- 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_finish_one_new_guild_result::GetMetadata() const {
- protobuf_AssignDescriptorsOnce();
- ::google::protobuf::Metadata metadata;
- metadata.descriptor = packetw2c_finish_one_new_guild_result_descriptor_;
- metadata.reflection = packetw2c_finish_one_new_guild_result_reflection_;
- return metadata;
- }
- // ===================================================================
- #ifndef _MSC_VER
- const int packetc2w_req_last_rechargelist::kPacketIdFieldNumber;
- #endif // !_MSC_VER
- packetc2w_req_last_rechargelist::packetc2w_req_last_rechargelist()
- : ::google::protobuf::Message() {
- SharedCtor();
- }
- void packetc2w_req_last_rechargelist::InitAsDefaultInstance() {
- }
- packetc2w_req_last_rechargelist::packetc2w_req_last_rechargelist(const packetc2w_req_last_rechargelist& from)
- : ::google::protobuf::Message() {
- SharedCtor();
- MergeFrom(from);
- }
- void packetc2w_req_last_rechargelist::SharedCtor() {
- _cached_size_ = 0;
- packet_id_ = 5091;
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- }
- packetc2w_req_last_rechargelist::~packetc2w_req_last_rechargelist() {
- SharedDtor();
- }
- void packetc2w_req_last_rechargelist::SharedDtor() {
- if (this != default_instance_) {
- }
- }
- void packetc2w_req_last_rechargelist::SetCachedSize(int size) const {
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- }
- const ::google::protobuf::Descriptor* packetc2w_req_last_rechargelist::descriptor() {
- protobuf_AssignDescriptorsOnce();
- return packetc2w_req_last_rechargelist_descriptor_;
- }
- const packetc2w_req_last_rechargelist& packetc2w_req_last_rechargelist::default_instance() {
- if (default_instance_ == NULL) protobuf_AddDesc_client2world_5fplayer_5fproperty_2eproto();
- return *default_instance_;
- }
- packetc2w_req_last_rechargelist* packetc2w_req_last_rechargelist::default_instance_ = NULL;
- packetc2w_req_last_rechargelist* packetc2w_req_last_rechargelist::New() const {
- return new packetc2w_req_last_rechargelist;
- }
- void packetc2w_req_last_rechargelist::Clear() {
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- packet_id_ = 5091;
- }
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- mutable_unknown_fields()->Clear();
- }
- bool packetc2w_req_last_rechargelist::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_last_rechargelist];
- 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_last_rechargelist::SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_last_rechargelist];
- 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_last_rechargelist::SerializeWithCachedSizesToArray(
- ::google::protobuf::uint8* target) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_last_rechargelist];
- 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_last_rechargelist::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_last_rechargelist];
- 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_last_rechargelist::MergeFrom(const ::google::protobuf::Message& from) {
- GOOGLE_CHECK_NE(&from, this);
- const packetc2w_req_last_rechargelist* source =
- ::google::protobuf::internal::dynamic_cast_if_available<const packetc2w_req_last_rechargelist*>(
- &from);
- if (source == NULL) {
- ::google::protobuf::internal::ReflectionOps::Merge(from, this);
- } else {
- MergeFrom(*source);
- }
- }
- void packetc2w_req_last_rechargelist::MergeFrom(const packetc2w_req_last_rechargelist& 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_last_rechargelist::CopyFrom(const ::google::protobuf::Message& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- void packetc2w_req_last_rechargelist::CopyFrom(const packetc2w_req_last_rechargelist& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- bool packetc2w_req_last_rechargelist::IsInitialized() const {
- return true;
- }
- void packetc2w_req_last_rechargelist::Swap(packetc2w_req_last_rechargelist* 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_last_rechargelist::GetMetadata() const {
- protobuf_AssignDescriptorsOnce();
- ::google::protobuf::Metadata metadata;
- metadata.descriptor = packetc2w_req_last_rechargelist_descriptor_;
- metadata.reflection = packetc2w_req_last_rechargelist_reflection_;
- return metadata;
- }
- // ===================================================================
- #ifndef _MSC_VER
- const int packetw2c_req_last_rechargelist_result::kPacketIdFieldNumber;
- const int packetw2c_req_last_rechargelist_result::kGoldPayIdListFieldNumber;
- const int packetw2c_req_last_rechargelist_result::kGemPayIdListFieldNumber;
- #endif // !_MSC_VER
- packetw2c_req_last_rechargelist_result::packetw2c_req_last_rechargelist_result()
- : ::google::protobuf::Message() {
- SharedCtor();
- }
- void packetw2c_req_last_rechargelist_result::InitAsDefaultInstance() {
- }
- packetw2c_req_last_rechargelist_result::packetw2c_req_last_rechargelist_result(const packetw2c_req_last_rechargelist_result& from)
- : ::google::protobuf::Message() {
- SharedCtor();
- MergeFrom(from);
- }
- void packetw2c_req_last_rechargelist_result::SharedCtor() {
- _cached_size_ = 0;
- packet_id_ = 7598;
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- }
- packetw2c_req_last_rechargelist_result::~packetw2c_req_last_rechargelist_result() {
- SharedDtor();
- }
- void packetw2c_req_last_rechargelist_result::SharedDtor() {
- if (this != default_instance_) {
- }
- }
- void packetw2c_req_last_rechargelist_result::SetCachedSize(int size) const {
- GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
- _cached_size_ = size;
- GOOGLE_SAFE_CONCURRENT_WRITES_END();
- }
- const ::google::protobuf::Descriptor* packetw2c_req_last_rechargelist_result::descriptor() {
- protobuf_AssignDescriptorsOnce();
- return packetw2c_req_last_rechargelist_result_descriptor_;
- }
- const packetw2c_req_last_rechargelist_result& packetw2c_req_last_rechargelist_result::default_instance() {
- if (default_instance_ == NULL) protobuf_AddDesc_client2world_5fplayer_5fproperty_2eproto();
- return *default_instance_;
- }
- packetw2c_req_last_rechargelist_result* packetw2c_req_last_rechargelist_result::default_instance_ = NULL;
- packetw2c_req_last_rechargelist_result* packetw2c_req_last_rechargelist_result::New() const {
- return new packetw2c_req_last_rechargelist_result;
- }
- void packetw2c_req_last_rechargelist_result::Clear() {
- if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) {
- packet_id_ = 7598;
- }
- goldpayidlist_.Clear();
- gempayidlist_.Clear();
- ::memset(_has_bits_, 0, sizeof(_has_bits_));
- mutable_unknown_fields()->Clear();
- }
- bool packetw2c_req_last_rechargelist_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_last_rechargelist_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(16)) goto parse_goldPayIdList;
- break;
- }
- // repeated int32 goldPayIdList = 2;
- case 2: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_goldPayIdList:
- DO_((::google::protobuf::internal::WireFormatLite::ReadRepeatedPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- 1, 16, input, this->mutable_goldpayidlist())));
- } else if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag)
- == ::google::protobuf::internal::WireFormatLite::
- WIRETYPE_LENGTH_DELIMITED) {
- DO_((::google::protobuf::internal::WireFormatLite::ReadPackedPrimitiveNoInline<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, this->mutable_goldpayidlist())));
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(16)) goto parse_goldPayIdList;
- if (input->ExpectTag(24)) goto parse_gemPayIdList;
- break;
- }
- // repeated int32 gemPayIdList = 3;
- case 3: {
- if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
- ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) {
- parse_gemPayIdList:
- DO_((::google::protobuf::internal::WireFormatLite::ReadRepeatedPrimitive<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- 1, 24, input, this->mutable_gempayidlist())));
- } else if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag)
- == ::google::protobuf::internal::WireFormatLite::
- WIRETYPE_LENGTH_DELIMITED) {
- DO_((::google::protobuf::internal::WireFormatLite::ReadPackedPrimitiveNoInline<
- ::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
- input, this->mutable_gempayidlist())));
- } else {
- goto handle_uninterpreted;
- }
- if (input->ExpectTag(24)) goto parse_gemPayIdList;
- 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_last_rechargelist_result::SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_last_rechargelist_result];
- if (has_packet_id()) {
- ::google::protobuf::internal::WireFormatLite::WriteEnum(
- 1, this->packet_id(), output);
- }
- // repeated int32 goldPayIdList = 2;
- for (int i = 0; i < this->goldpayidlist_size(); i++) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(
- 2, this->goldpayidlist(i), output);
- }
- // repeated int32 gemPayIdList = 3;
- for (int i = 0; i < this->gempayidlist_size(); i++) {
- ::google::protobuf::internal::WireFormatLite::WriteInt32(
- 3, this->gempayidlist(i), output);
- }
- if (!unknown_fields().empty()) {
- ::google::protobuf::internal::WireFormat::SerializeUnknownFields(
- unknown_fields(), output);
- }
- }
- ::google::protobuf::uint8* packetw2c_req_last_rechargelist_result::SerializeWithCachedSizesToArray(
- ::google::protobuf::uint8* target) const {
- // optional .client2world_protocols.e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_last_rechargelist_result];
- if (has_packet_id()) {
- target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray(
- 1, this->packet_id(), target);
- }
- // repeated int32 goldPayIdList = 2;
- for (int i = 0; i < this->goldpayidlist_size(); i++) {
- target = ::google::protobuf::internal::WireFormatLite::
- WriteInt32ToArray(2, this->goldpayidlist(i), target);
- }
- // repeated int32 gemPayIdList = 3;
- for (int i = 0; i < this->gempayidlist_size(); i++) {
- target = ::google::protobuf::internal::WireFormatLite::
- WriteInt32ToArray(3, this->gempayidlist(i), target);
- }
- if (!unknown_fields().empty()) {
- target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
- unknown_fields(), target);
- }
- return target;
- }
- int packetw2c_req_last_rechargelist_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_last_rechargelist_result];
- if (has_packet_id()) {
- total_size += 1 +
- ::google::protobuf::internal::WireFormatLite::EnumSize(this->packet_id());
- }
- }
- // repeated int32 goldPayIdList = 2;
- {
- int data_size = 0;
- for (int i = 0; i < this->goldpayidlist_size(); i++) {
- data_size += ::google::protobuf::internal::WireFormatLite::
- Int32Size(this->goldpayidlist(i));
- }
- total_size += 1 * this->goldpayidlist_size() + data_size;
- }
- // repeated int32 gemPayIdList = 3;
- {
- int data_size = 0;
- for (int i = 0; i < this->gempayidlist_size(); i++) {
- data_size += ::google::protobuf::internal::WireFormatLite::
- Int32Size(this->gempayidlist(i));
- }
- total_size += 1 * this->gempayidlist_size() + data_size;
- }
- 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_last_rechargelist_result::MergeFrom(const ::google::protobuf::Message& from) {
- GOOGLE_CHECK_NE(&from, this);
- const packetw2c_req_last_rechargelist_result* source =
- ::google::protobuf::internal::dynamic_cast_if_available<const packetw2c_req_last_rechargelist_result*>(
- &from);
- if (source == NULL) {
- ::google::protobuf::internal::ReflectionOps::Merge(from, this);
- } else {
- MergeFrom(*source);
- }
- }
- void packetw2c_req_last_rechargelist_result::MergeFrom(const packetw2c_req_last_rechargelist_result& from) {
- GOOGLE_CHECK_NE(&from, this);
- goldpayidlist_.MergeFrom(from.goldpayidlist_);
- gempayidlist_.MergeFrom(from.gempayidlist_);
- 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 packetw2c_req_last_rechargelist_result::CopyFrom(const ::google::protobuf::Message& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- void packetw2c_req_last_rechargelist_result::CopyFrom(const packetw2c_req_last_rechargelist_result& from) {
- if (&from == this) return;
- Clear();
- MergeFrom(from);
- }
- bool packetw2c_req_last_rechargelist_result::IsInitialized() const {
- return true;
- }
- void packetw2c_req_last_rechargelist_result::Swap(packetw2c_req_last_rechargelist_result* other) {
- if (other != this) {
- std::swap(packet_id_, other->packet_id_);
- goldpayidlist_.Swap(&other->goldpayidlist_);
- gempayidlist_.Swap(&other->gempayidlist_);
- 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_last_rechargelist_result::GetMetadata() const {
- protobuf_AssignDescriptorsOnce();
- ::google::protobuf::Metadata metadata;
- metadata.descriptor = packetw2c_req_last_rechargelist_result_descriptor_;
- metadata.reflection = packetw2c_req_last_rechargelist_result_reflection_;
- return metadata;
- }
- // @@protoc_insertion_point(namespace_scope)
- } // namespace client2world_protocols
- // @@protoc_insertion_point(global_scope)
|