123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643 |
- // Generated by the protocol buffer compiler. DO NOT EDIT!
- // source: fish_dragon_palace.proto
- #ifndef PROTOBUF_fish_5fdragon_5fpalace_2eproto__INCLUDED
- #define PROTOBUF_fish_5fdragon_5fpalace_2eproto__INCLUDED
- #include <string>
- #include <google/protobuf/stubs/common.h>
- #if GOOGLE_PROTOBUF_VERSION < 2005000
- #error This file was generated by a newer version of protoc which is
- #error incompatible with your Protocol Buffer headers. Please update
- #error your headers.
- #endif
- #if 2005000 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION
- #error This file was generated by an older version of protoc which is
- #error incompatible with your Protocol Buffer headers. Please
- #error regenerate this file with a newer version of protoc.
- #endif
- #include <google/protobuf/generated_message_util.h>
- #include <google/protobuf/message.h>
- #include <google/protobuf/repeated_field.h>
- #include <google/protobuf/extension_set.h>
- #include <google/protobuf/unknown_field_set.h>
- #include "fish_def.pb.h"
- #include "msg_type_def.pb.h"
- #include "fish_type_def.pb.h"
- // @@protoc_insertion_point(includes)
- namespace fish_protocols {
- // Internal implementation detail -- do not call these.
- void protobuf_AddDesc_fish_5fdragon_5fpalace_2eproto();
- void protobuf_AssignDesc_fish_5fdragon_5fpalace_2eproto();
- void protobuf_ShutdownFile_fish_5fdragon_5fpalace_2eproto();
- class DragonPalaceRankInfo;
- class packetc2l_get_dragon_palace_info;
- class ExchangePriceInfo;
- class ExchangeItemInfo;
- class packetl2c_get_dragon_palace_info_result;
- class packetc2l_get_dragon_palace_rank;
- class packetl2c_get_dragon_palace_rank_result;
- class packetc2l_dragon_palace_exchange;
- class packetl2c_dragon_palace_exchange_result;
- class packetc2l_dragon_add_exchange_count;
- class packetl2c_dragon_add_exchange_count_result;
- class packetc2l_daily_dimensity_exchange;
- class packetl2c_daily_dimensity_exchange_result;
- // ===================================================================
- class DragonPalaceRankInfo : public ::google::protobuf::Message {
- public:
- DragonPalaceRankInfo();
- virtual ~DragonPalaceRankInfo();
- DragonPalaceRankInfo(const DragonPalaceRankInfo& from);
- inline DragonPalaceRankInfo& operator=(const DragonPalaceRankInfo& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const DragonPalaceRankInfo& default_instance();
- void Swap(DragonPalaceRankInfo* other);
- // implements Message ----------------------------------------------
- DragonPalaceRankInfo* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const DragonPalaceRankInfo& from);
- void MergeFrom(const DragonPalaceRankInfo& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional int32 playerId = 1;
- inline bool has_playerid() const;
- inline void clear_playerid();
- static const int kPlayerIdFieldNumber = 1;
- inline ::google::protobuf::int32 playerid() const;
- inline void set_playerid(::google::protobuf::int32 value);
- // optional string nickName = 2;
- inline bool has_nickname() const;
- inline void clear_nickname();
- static const int kNickNameFieldNumber = 2;
- inline const ::std::string& nickname() const;
- inline void set_nickname(const ::std::string& value);
- inline void set_nickname(const char* value);
- inline void set_nickname(const char* value, size_t size);
- inline ::std::string* mutable_nickname();
- inline ::std::string* release_nickname();
- inline void set_allocated_nickname(::std::string* nickname);
- // optional int32 gainDimensity = 3;
- inline bool has_gaindimensity() const;
- inline void clear_gaindimensity();
- static const int kGainDimensityFieldNumber = 3;
- inline ::google::protobuf::int32 gaindimensity() const;
- inline void set_gaindimensity(::google::protobuf::int32 value);
- // optional int32 headid = 4;
- inline bool has_headid() const;
- inline void clear_headid();
- static const int kHeadidFieldNumber = 4;
- inline ::google::protobuf::int32 headid() const;
- inline void set_headid(::google::protobuf::int32 value);
- // optional int32 frameid = 5;
- inline bool has_frameid() const;
- inline void clear_frameid();
- static const int kFrameidFieldNumber = 5;
- inline ::google::protobuf::int32 frameid() const;
- inline void set_frameid(::google::protobuf::int32 value);
- // optional int32 gender = 6;
- inline bool has_gender() const;
- inline void clear_gender();
- static const int kGenderFieldNumber = 6;
- inline ::google::protobuf::int32 gender() const;
- inline void set_gender(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.DragonPalaceRankInfo)
- private:
- inline void set_has_playerid();
- inline void clear_has_playerid();
- inline void set_has_nickname();
- inline void clear_has_nickname();
- inline void set_has_gaindimensity();
- inline void clear_has_gaindimensity();
- inline void set_has_headid();
- inline void clear_has_headid();
- inline void set_has_frameid();
- inline void clear_has_frameid();
- inline void set_has_gender();
- inline void clear_has_gender();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- ::std::string* nickname_;
- ::google::protobuf::int32 playerid_;
- ::google::protobuf::int32 gaindimensity_;
- ::google::protobuf::int32 headid_;
- ::google::protobuf::int32 frameid_;
- ::google::protobuf::int32 gender_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(6 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_AssignDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_ShutdownFile_fish_5fdragon_5fpalace_2eproto();
- void InitAsDefaultInstance();
- static DragonPalaceRankInfo* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetc2l_get_dragon_palace_info : public ::google::protobuf::Message {
- public:
- packetc2l_get_dragon_palace_info();
- virtual ~packetc2l_get_dragon_palace_info();
- packetc2l_get_dragon_palace_info(const packetc2l_get_dragon_palace_info& from);
- inline packetc2l_get_dragon_palace_info& operator=(const packetc2l_get_dragon_palace_info& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetc2l_get_dragon_palace_info& default_instance();
- void Swap(packetc2l_get_dragon_palace_info* other);
- // implements Message ----------------------------------------------
- packetc2l_get_dragon_palace_info* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetc2l_get_dragon_palace_info& from);
- void MergeFrom(const packetc2l_get_dragon_palace_info& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_get_dragon_palace_info];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional bool isGetRankInfo = 2;
- inline bool has_isgetrankinfo() const;
- inline void clear_isgetrankinfo();
- static const int kIsGetRankInfoFieldNumber = 2;
- inline bool isgetrankinfo() const;
- inline void set_isgetrankinfo(bool value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_get_dragon_palace_info)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_isgetrankinfo();
- inline void clear_has_isgetrankinfo();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- bool isgetrankinfo_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_AssignDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_ShutdownFile_fish_5fdragon_5fpalace_2eproto();
- void InitAsDefaultInstance();
- static packetc2l_get_dragon_palace_info* default_instance_;
- };
- // -------------------------------------------------------------------
- class ExchangePriceInfo : public ::google::protobuf::Message {
- public:
- ExchangePriceInfo();
- virtual ~ExchangePriceInfo();
- ExchangePriceInfo(const ExchangePriceInfo& from);
- inline ExchangePriceInfo& operator=(const ExchangePriceInfo& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const ExchangePriceInfo& default_instance();
- void Swap(ExchangePriceInfo* other);
- // implements Message ----------------------------------------------
- ExchangePriceInfo* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const ExchangePriceInfo& from);
- void MergeFrom(const ExchangePriceInfo& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional int32 exchangeId = 1;
- inline bool has_exchangeid() const;
- inline void clear_exchangeid();
- static const int kExchangeIdFieldNumber = 1;
- inline ::google::protobuf::int32 exchangeid() const;
- inline void set_exchangeid(::google::protobuf::int32 value);
- // optional int32 price = 2;
- inline bool has_price() const;
- inline void clear_price();
- static const int kPriceFieldNumber = 2;
- inline ::google::protobuf::int32 price() const;
- inline void set_price(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.ExchangePriceInfo)
- private:
- inline void set_has_exchangeid();
- inline void clear_has_exchangeid();
- inline void set_has_price();
- inline void clear_has_price();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- ::google::protobuf::int32 exchangeid_;
- ::google::protobuf::int32 price_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_AssignDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_ShutdownFile_fish_5fdragon_5fpalace_2eproto();
- void InitAsDefaultInstance();
- static ExchangePriceInfo* default_instance_;
- };
- // -------------------------------------------------------------------
- class ExchangeItemInfo : public ::google::protobuf::Message {
- public:
- ExchangeItemInfo();
- virtual ~ExchangeItemInfo();
- ExchangeItemInfo(const ExchangeItemInfo& from);
- inline ExchangeItemInfo& operator=(const ExchangeItemInfo& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const ExchangeItemInfo& default_instance();
- void Swap(ExchangeItemInfo* other);
- // implements Message ----------------------------------------------
- ExchangeItemInfo* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const ExchangeItemInfo& from);
- void MergeFrom(const ExchangeItemInfo& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional int32 itemid = 1;
- inline bool has_itemid() const;
- inline void clear_itemid();
- static const int kItemidFieldNumber = 1;
- inline ::google::protobuf::int32 itemid() const;
- inline void set_itemid(::google::protobuf::int32 value);
- // optional int32 itemcount = 2;
- inline bool has_itemcount() const;
- inline void clear_itemcount();
- static const int kItemcountFieldNumber = 2;
- inline ::google::protobuf::int32 itemcount() const;
- inline void set_itemcount(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.ExchangeItemInfo)
- private:
- inline void set_has_itemid();
- inline void clear_has_itemid();
- inline void set_has_itemcount();
- inline void clear_has_itemcount();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- ::google::protobuf::int32 itemid_;
- ::google::protobuf::int32 itemcount_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_AssignDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_ShutdownFile_fish_5fdragon_5fpalace_2eproto();
- void InitAsDefaultInstance();
- static ExchangeItemInfo* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetl2c_get_dragon_palace_info_result : public ::google::protobuf::Message {
- public:
- packetl2c_get_dragon_palace_info_result();
- virtual ~packetl2c_get_dragon_palace_info_result();
- packetl2c_get_dragon_palace_info_result(const packetl2c_get_dragon_palace_info_result& from);
- inline packetl2c_get_dragon_palace_info_result& operator=(const packetl2c_get_dragon_palace_info_result& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetl2c_get_dragon_palace_info_result& default_instance();
- void Swap(packetl2c_get_dragon_palace_info_result* other);
- // implements Message ----------------------------------------------
- packetl2c_get_dragon_palace_info_result* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetl2c_get_dragon_palace_info_result& from);
- void MergeFrom(const packetl2c_get_dragon_palace_info_result& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_get_dragon_palace_info_result];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 dimensityCount = 2;
- inline bool has_dimensitycount() const;
- inline void clear_dimensitycount();
- static const int kDimensityCountFieldNumber = 2;
- inline ::google::protobuf::int32 dimensitycount() const;
- inline void set_dimensitycount(::google::protobuf::int32 value);
- // optional int32 exchangeCount = 3;
- inline bool has_exchangecount() const;
- inline void clear_exchangecount();
- static const int kExchangeCountFieldNumber = 3;
- inline ::google::protobuf::int32 exchangecount() const;
- inline void set_exchangecount(::google::protobuf::int32 value);
- // optional int32 exchangeCountEx = 4;
- inline bool has_exchangecountex() const;
- inline void clear_exchangecountex();
- static const int kExchangeCountExFieldNumber = 4;
- inline ::google::protobuf::int32 exchangecountex() const;
- inline void set_exchangecountex(::google::protobuf::int32 value);
- // optional int32 discountExchangeCountLv = 5;
- inline bool has_discountexchangecountlv() const;
- inline void clear_discountexchangecountlv();
- static const int kDiscountExchangeCountLvFieldNumber = 5;
- inline ::google::protobuf::int32 discountexchangecountlv() const;
- inline void set_discountexchangecountlv(::google::protobuf::int32 value);
- // repeated .fish_protocols.DragonPalaceRankInfo curRankList = 6;
- inline int curranklist_size() const;
- inline void clear_curranklist();
- static const int kCurRankListFieldNumber = 6;
- inline const ::fish_protocols::DragonPalaceRankInfo& curranklist(int index) const;
- inline ::fish_protocols::DragonPalaceRankInfo* mutable_curranklist(int index);
- inline ::fish_protocols::DragonPalaceRankInfo* add_curranklist();
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::DragonPalaceRankInfo >&
- curranklist() const;
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::DragonPalaceRankInfo >*
- mutable_curranklist();
- // optional int32 gainDimensityCurWeek = 7;
- inline bool has_gaindimensitycurweek() const;
- inline void clear_gaindimensitycurweek();
- static const int kGainDimensityCurWeekFieldNumber = 7;
- inline ::google::protobuf::int32 gaindimensitycurweek() const;
- inline void set_gaindimensitycurweek(::google::protobuf::int32 value);
- // repeated .fish_protocols.FunBuff selfFunBuffList = 8;
- inline int selffunbufflist_size() const;
- inline void clear_selffunbufflist();
- static const int kSelfFunBuffListFieldNumber = 8;
- inline const ::fish_protocols::FunBuff& selffunbufflist(int index) const;
- inline ::fish_protocols::FunBuff* mutable_selffunbufflist(int index);
- inline ::fish_protocols::FunBuff* add_selffunbufflist();
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::FunBuff >&
- selffunbufflist() const;
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::FunBuff >*
- mutable_selffunbufflist();
- // repeated .fish_protocols.ExchangePriceInfo priceInfoList = 9;
- inline int priceinfolist_size() const;
- inline void clear_priceinfolist();
- static const int kPriceInfoListFieldNumber = 9;
- inline const ::fish_protocols::ExchangePriceInfo& priceinfolist(int index) const;
- inline ::fish_protocols::ExchangePriceInfo* mutable_priceinfolist(int index);
- inline ::fish_protocols::ExchangePriceInfo* add_priceinfolist();
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::ExchangePriceInfo >&
- priceinfolist() const;
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::ExchangePriceInfo >*
- mutable_priceinfolist();
- // optional int32 exchangeAddCount = 10;
- inline bool has_exchangeaddcount() const;
- inline void clear_exchangeaddcount();
- static const int kExchangeAddCountFieldNumber = 10;
- inline ::google::protobuf::int32 exchangeaddcount() const;
- inline void set_exchangeaddcount(::google::protobuf::int32 value);
- // optional int32 dailyDimensity = 11;
- inline bool has_dailydimensity() const;
- inline void clear_dailydimensity();
- static const int kDailyDimensityFieldNumber = 11;
- inline ::google::protobuf::int32 dailydimensity() const;
- inline void set_dailydimensity(::google::protobuf::int32 value);
- // repeated bool dragonSlayerCheck = 12;
- inline int dragonslayercheck_size() const;
- inline void clear_dragonslayercheck();
- static const int kDragonSlayerCheckFieldNumber = 12;
- inline bool dragonslayercheck(int index) const;
- inline void set_dragonslayercheck(int index, bool value);
- inline void add_dragonslayercheck(bool value);
- inline const ::google::protobuf::RepeatedField< bool >&
- dragonslayercheck() const;
- inline ::google::protobuf::RepeatedField< bool >*
- mutable_dragonslayercheck();
- // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_get_dragon_palace_info_result)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_dimensitycount();
- inline void clear_has_dimensitycount();
- inline void set_has_exchangecount();
- inline void clear_has_exchangecount();
- inline void set_has_exchangecountex();
- inline void clear_has_exchangecountex();
- inline void set_has_discountexchangecountlv();
- inline void clear_has_discountexchangecountlv();
- inline void set_has_gaindimensitycurweek();
- inline void clear_has_gaindimensitycurweek();
- inline void set_has_exchangeaddcount();
- inline void clear_has_exchangeaddcount();
- inline void set_has_dailydimensity();
- inline void clear_has_dailydimensity();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 dimensitycount_;
- ::google::protobuf::int32 exchangecount_;
- ::google::protobuf::int32 exchangecountex_;
- ::google::protobuf::RepeatedPtrField< ::fish_protocols::DragonPalaceRankInfo > curranklist_;
- ::google::protobuf::int32 discountexchangecountlv_;
- ::google::protobuf::int32 gaindimensitycurweek_;
- ::google::protobuf::RepeatedPtrField< ::fish_protocols::FunBuff > selffunbufflist_;
- ::google::protobuf::RepeatedPtrField< ::fish_protocols::ExchangePriceInfo > priceinfolist_;
- ::google::protobuf::int32 exchangeaddcount_;
- ::google::protobuf::int32 dailydimensity_;
- ::google::protobuf::RepeatedField< bool > dragonslayercheck_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(12 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_AssignDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_ShutdownFile_fish_5fdragon_5fpalace_2eproto();
- void InitAsDefaultInstance();
- static packetl2c_get_dragon_palace_info_result* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetc2l_get_dragon_palace_rank : public ::google::protobuf::Message {
- public:
- packetc2l_get_dragon_palace_rank();
- virtual ~packetc2l_get_dragon_palace_rank();
- packetc2l_get_dragon_palace_rank(const packetc2l_get_dragon_palace_rank& from);
- inline packetc2l_get_dragon_palace_rank& operator=(const packetc2l_get_dragon_palace_rank& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetc2l_get_dragon_palace_rank& default_instance();
- void Swap(packetc2l_get_dragon_palace_rank* other);
- // implements Message ----------------------------------------------
- packetc2l_get_dragon_palace_rank* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetc2l_get_dragon_palace_rank& from);
- void MergeFrom(const packetc2l_get_dragon_palace_rank& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_get_dragon_palace_rank];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 rankType = 2;
- inline bool has_ranktype() const;
- inline void clear_ranktype();
- static const int kRankTypeFieldNumber = 2;
- inline ::google::protobuf::int32 ranktype() const;
- inline void set_ranktype(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_get_dragon_palace_rank)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_ranktype();
- inline void clear_has_ranktype();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 ranktype_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_AssignDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_ShutdownFile_fish_5fdragon_5fpalace_2eproto();
- void InitAsDefaultInstance();
- static packetc2l_get_dragon_palace_rank* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetl2c_get_dragon_palace_rank_result : public ::google::protobuf::Message {
- public:
- packetl2c_get_dragon_palace_rank_result();
- virtual ~packetl2c_get_dragon_palace_rank_result();
- packetl2c_get_dragon_palace_rank_result(const packetl2c_get_dragon_palace_rank_result& from);
- inline packetl2c_get_dragon_palace_rank_result& operator=(const packetl2c_get_dragon_palace_rank_result& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetl2c_get_dragon_palace_rank_result& default_instance();
- void Swap(packetl2c_get_dragon_palace_rank_result* other);
- // implements Message ----------------------------------------------
- packetl2c_get_dragon_palace_rank_result* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetl2c_get_dragon_palace_rank_result& from);
- void MergeFrom(const packetl2c_get_dragon_palace_rank_result& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_get_dragon_palace_rank_result];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 rankType = 2;
- inline bool has_ranktype() const;
- inline void clear_ranktype();
- static const int kRankTypeFieldNumber = 2;
- inline ::google::protobuf::int32 ranktype() const;
- inline void set_ranktype(::google::protobuf::int32 value);
- // repeated .fish_protocols.DragonPalaceRankInfo rankList = 3;
- inline int ranklist_size() const;
- inline void clear_ranklist();
- static const int kRankListFieldNumber = 3;
- inline const ::fish_protocols::DragonPalaceRankInfo& ranklist(int index) const;
- inline ::fish_protocols::DragonPalaceRankInfo* mutable_ranklist(int index);
- inline ::fish_protocols::DragonPalaceRankInfo* add_ranklist();
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::DragonPalaceRankInfo >&
- ranklist() const;
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::DragonPalaceRankInfo >*
- mutable_ranklist();
- // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_get_dragon_palace_rank_result)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_ranktype();
- inline void clear_has_ranktype();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 ranktype_;
- ::google::protobuf::RepeatedPtrField< ::fish_protocols::DragonPalaceRankInfo > ranklist_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(3 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_AssignDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_ShutdownFile_fish_5fdragon_5fpalace_2eproto();
- void InitAsDefaultInstance();
- static packetl2c_get_dragon_palace_rank_result* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetc2l_dragon_palace_exchange : public ::google::protobuf::Message {
- public:
- packetc2l_dragon_palace_exchange();
- virtual ~packetc2l_dragon_palace_exchange();
- packetc2l_dragon_palace_exchange(const packetc2l_dragon_palace_exchange& from);
- inline packetc2l_dragon_palace_exchange& operator=(const packetc2l_dragon_palace_exchange& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetc2l_dragon_palace_exchange& default_instance();
- void Swap(packetc2l_dragon_palace_exchange* other);
- // implements Message ----------------------------------------------
- packetc2l_dragon_palace_exchange* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetc2l_dragon_palace_exchange& from);
- void MergeFrom(const packetc2l_dragon_palace_exchange& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_dragon_palace_exchange];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 exchangeId = 2;
- inline bool has_exchangeid() const;
- inline void clear_exchangeid();
- static const int kExchangeIdFieldNumber = 2;
- inline ::google::protobuf::int32 exchangeid() const;
- inline void set_exchangeid(::google::protobuf::int32 value);
- // optional int32 exchangeCount = 3;
- inline bool has_exchangecount() const;
- inline void clear_exchangecount();
- static const int kExchangeCountFieldNumber = 3;
- inline ::google::protobuf::int32 exchangecount() const;
- inline void set_exchangecount(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_dragon_palace_exchange)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_exchangeid();
- inline void clear_has_exchangeid();
- inline void set_has_exchangecount();
- inline void clear_has_exchangecount();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 exchangeid_;
- ::google::protobuf::int32 exchangecount_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(3 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_AssignDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_ShutdownFile_fish_5fdragon_5fpalace_2eproto();
- void InitAsDefaultInstance();
- static packetc2l_dragon_palace_exchange* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetl2c_dragon_palace_exchange_result : public ::google::protobuf::Message {
- public:
- packetl2c_dragon_palace_exchange_result();
- virtual ~packetl2c_dragon_palace_exchange_result();
- packetl2c_dragon_palace_exchange_result(const packetl2c_dragon_palace_exchange_result& from);
- inline packetl2c_dragon_palace_exchange_result& operator=(const packetl2c_dragon_palace_exchange_result& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetl2c_dragon_palace_exchange_result& default_instance();
- void Swap(packetl2c_dragon_palace_exchange_result* other);
- // implements Message ----------------------------------------------
- packetl2c_dragon_palace_exchange_result* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetl2c_dragon_palace_exchange_result& from);
- void MergeFrom(const packetl2c_dragon_palace_exchange_result& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_dragon_palace_exchange_result];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 result = 2;
- inline bool has_result() const;
- inline void clear_result();
- static const int kResultFieldNumber = 2;
- inline ::google::protobuf::int32 result() const;
- inline void set_result(::google::protobuf::int32 value);
- // repeated .fish_protocols.ExchangeItemInfo exchangeItems = 3;
- inline int exchangeitems_size() const;
- inline void clear_exchangeitems();
- static const int kExchangeItemsFieldNumber = 3;
- inline const ::fish_protocols::ExchangeItemInfo& exchangeitems(int index) const;
- inline ::fish_protocols::ExchangeItemInfo* mutable_exchangeitems(int index);
- inline ::fish_protocols::ExchangeItemInfo* add_exchangeitems();
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::ExchangeItemInfo >&
- exchangeitems() const;
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::ExchangeItemInfo >*
- mutable_exchangeitems();
- // repeated .fish_protocols.ExchangePriceInfo priceInfoList = 4;
- inline int priceinfolist_size() const;
- inline void clear_priceinfolist();
- static const int kPriceInfoListFieldNumber = 4;
- inline const ::fish_protocols::ExchangePriceInfo& priceinfolist(int index) const;
- inline ::fish_protocols::ExchangePriceInfo* mutable_priceinfolist(int index);
- inline ::fish_protocols::ExchangePriceInfo* add_priceinfolist();
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::ExchangePriceInfo >&
- priceinfolist() const;
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::ExchangePriceInfo >*
- mutable_priceinfolist();
- // optional int32 nextPrice = 5;
- inline bool has_nextprice() const;
- inline void clear_nextprice();
- static const int kNextPriceFieldNumber = 5;
- inline ::google::protobuf::int32 nextprice() const;
- inline void set_nextprice(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_dragon_palace_exchange_result)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_result();
- inline void clear_has_result();
- inline void set_has_nextprice();
- inline void clear_has_nextprice();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 result_;
- ::google::protobuf::RepeatedPtrField< ::fish_protocols::ExchangeItemInfo > exchangeitems_;
- ::google::protobuf::RepeatedPtrField< ::fish_protocols::ExchangePriceInfo > priceinfolist_;
- ::google::protobuf::int32 nextprice_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(5 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_AssignDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_ShutdownFile_fish_5fdragon_5fpalace_2eproto();
- void InitAsDefaultInstance();
- static packetl2c_dragon_palace_exchange_result* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetc2l_dragon_add_exchange_count : public ::google::protobuf::Message {
- public:
- packetc2l_dragon_add_exchange_count();
- virtual ~packetc2l_dragon_add_exchange_count();
- packetc2l_dragon_add_exchange_count(const packetc2l_dragon_add_exchange_count& from);
- inline packetc2l_dragon_add_exchange_count& operator=(const packetc2l_dragon_add_exchange_count& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetc2l_dragon_add_exchange_count& default_instance();
- void Swap(packetc2l_dragon_add_exchange_count* other);
- // implements Message ----------------------------------------------
- packetc2l_dragon_add_exchange_count* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetc2l_dragon_add_exchange_count& from);
- void MergeFrom(const packetc2l_dragon_add_exchange_count& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_dragon_add_exchange_count];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 addCount = 2;
- inline bool has_addcount() const;
- inline void clear_addcount();
- static const int kAddCountFieldNumber = 2;
- inline ::google::protobuf::int32 addcount() const;
- inline void set_addcount(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_dragon_add_exchange_count)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_addcount();
- inline void clear_has_addcount();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 addcount_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_AssignDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_ShutdownFile_fish_5fdragon_5fpalace_2eproto();
- void InitAsDefaultInstance();
- static packetc2l_dragon_add_exchange_count* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetl2c_dragon_add_exchange_count_result : public ::google::protobuf::Message {
- public:
- packetl2c_dragon_add_exchange_count_result();
- virtual ~packetl2c_dragon_add_exchange_count_result();
- packetl2c_dragon_add_exchange_count_result(const packetl2c_dragon_add_exchange_count_result& from);
- inline packetl2c_dragon_add_exchange_count_result& operator=(const packetl2c_dragon_add_exchange_count_result& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetl2c_dragon_add_exchange_count_result& default_instance();
- void Swap(packetl2c_dragon_add_exchange_count_result* other);
- // implements Message ----------------------------------------------
- packetl2c_dragon_add_exchange_count_result* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetl2c_dragon_add_exchange_count_result& from);
- void MergeFrom(const packetl2c_dragon_add_exchange_count_result& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_dragon_add_exchange_count_result];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 result = 2;
- inline bool has_result() const;
- inline void clear_result();
- static const int kResultFieldNumber = 2;
- inline ::google::protobuf::int32 result() const;
- inline void set_result(::google::protobuf::int32 value);
- // optional int32 addCount = 3;
- inline bool has_addcount() const;
- inline void clear_addcount();
- static const int kAddCountFieldNumber = 3;
- inline ::google::protobuf::int32 addcount() const;
- inline void set_addcount(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_dragon_add_exchange_count_result)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_result();
- inline void clear_has_result();
- inline void set_has_addcount();
- inline void clear_has_addcount();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 result_;
- ::google::protobuf::int32 addcount_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(3 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_AssignDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_ShutdownFile_fish_5fdragon_5fpalace_2eproto();
- void InitAsDefaultInstance();
- static packetl2c_dragon_add_exchange_count_result* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetc2l_daily_dimensity_exchange : public ::google::protobuf::Message {
- public:
- packetc2l_daily_dimensity_exchange();
- virtual ~packetc2l_daily_dimensity_exchange();
- packetc2l_daily_dimensity_exchange(const packetc2l_daily_dimensity_exchange& from);
- inline packetc2l_daily_dimensity_exchange& operator=(const packetc2l_daily_dimensity_exchange& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetc2l_daily_dimensity_exchange& default_instance();
- void Swap(packetc2l_daily_dimensity_exchange* other);
- // implements Message ----------------------------------------------
- packetc2l_daily_dimensity_exchange* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetc2l_daily_dimensity_exchange& from);
- void MergeFrom(const packetc2l_daily_dimensity_exchange& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_daily_dimensity_exchange];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_daily_dimensity_exchange)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(1 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_AssignDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_ShutdownFile_fish_5fdragon_5fpalace_2eproto();
- void InitAsDefaultInstance();
- static packetc2l_daily_dimensity_exchange* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetl2c_daily_dimensity_exchange_result : public ::google::protobuf::Message {
- public:
- packetl2c_daily_dimensity_exchange_result();
- virtual ~packetl2c_daily_dimensity_exchange_result();
- packetl2c_daily_dimensity_exchange_result(const packetl2c_daily_dimensity_exchange_result& from);
- inline packetl2c_daily_dimensity_exchange_result& operator=(const packetl2c_daily_dimensity_exchange_result& from) {
- CopyFrom(from);
- return *this;
- }
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _unknown_fields_;
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return &_unknown_fields_;
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const packetl2c_daily_dimensity_exchange_result& default_instance();
- void Swap(packetl2c_daily_dimensity_exchange_result* other);
- // implements Message ----------------------------------------------
- packetl2c_daily_dimensity_exchange_result* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetl2c_daily_dimensity_exchange_result& from);
- void MergeFrom(const packetl2c_daily_dimensity_exchange_result& from);
- void Clear();
- bool IsInitialized() const;
- int ByteSize() const;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input);
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const;
- ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
- int GetCachedSize() const { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const;
- public:
- ::google::protobuf::Metadata GetMetadata() const;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_daily_dimensity_exchange_result];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 result = 2;
- inline bool has_result() const;
- inline void clear_result();
- static const int kResultFieldNumber = 2;
- inline ::google::protobuf::int32 result() const;
- inline void set_result(::google::protobuf::int32 value);
- // repeated .fish_protocols.ExchangeItemInfo exchangeInfo = 3;
- inline int exchangeinfo_size() const;
- inline void clear_exchangeinfo();
- static const int kExchangeInfoFieldNumber = 3;
- inline const ::fish_protocols::ExchangeItemInfo& exchangeinfo(int index) const;
- inline ::fish_protocols::ExchangeItemInfo* mutable_exchangeinfo(int index);
- inline ::fish_protocols::ExchangeItemInfo* add_exchangeinfo();
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::ExchangeItemInfo >&
- exchangeinfo() const;
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::ExchangeItemInfo >*
- mutable_exchangeinfo();
- // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_daily_dimensity_exchange_result)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_result();
- inline void clear_has_result();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 result_;
- ::google::protobuf::RepeatedPtrField< ::fish_protocols::ExchangeItemInfo > exchangeinfo_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(3 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_AssignDesc_fish_5fdragon_5fpalace_2eproto();
- friend void protobuf_ShutdownFile_fish_5fdragon_5fpalace_2eproto();
- void InitAsDefaultInstance();
- static packetl2c_daily_dimensity_exchange_result* default_instance_;
- };
- // ===================================================================
- // ===================================================================
- // DragonPalaceRankInfo
- // optional int32 playerId = 1;
- inline bool DragonPalaceRankInfo::has_playerid() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void DragonPalaceRankInfo::set_has_playerid() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void DragonPalaceRankInfo::clear_has_playerid() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void DragonPalaceRankInfo::clear_playerid() {
- playerid_ = 0;
- clear_has_playerid();
- }
- inline ::google::protobuf::int32 DragonPalaceRankInfo::playerid() const {
- return playerid_;
- }
- inline void DragonPalaceRankInfo::set_playerid(::google::protobuf::int32 value) {
- set_has_playerid();
- playerid_ = value;
- }
- // optional string nickName = 2;
- inline bool DragonPalaceRankInfo::has_nickname() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void DragonPalaceRankInfo::set_has_nickname() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void DragonPalaceRankInfo::clear_has_nickname() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void DragonPalaceRankInfo::clear_nickname() {
- if (nickname_ != &::google::protobuf::internal::kEmptyString) {
- nickname_->clear();
- }
- clear_has_nickname();
- }
- inline const ::std::string& DragonPalaceRankInfo::nickname() const {
- return *nickname_;
- }
- inline void DragonPalaceRankInfo::set_nickname(const ::std::string& value) {
- set_has_nickname();
- if (nickname_ == &::google::protobuf::internal::kEmptyString) {
- nickname_ = new ::std::string;
- }
- nickname_->assign(value);
- }
- inline void DragonPalaceRankInfo::set_nickname(const char* value) {
- set_has_nickname();
- if (nickname_ == &::google::protobuf::internal::kEmptyString) {
- nickname_ = new ::std::string;
- }
- nickname_->assign(value);
- }
- inline void DragonPalaceRankInfo::set_nickname(const char* value, size_t size) {
- set_has_nickname();
- if (nickname_ == &::google::protobuf::internal::kEmptyString) {
- nickname_ = new ::std::string;
- }
- nickname_->assign(reinterpret_cast<const char*>(value), size);
- }
- inline ::std::string* DragonPalaceRankInfo::mutable_nickname() {
- set_has_nickname();
- if (nickname_ == &::google::protobuf::internal::kEmptyString) {
- nickname_ = new ::std::string;
- }
- return nickname_;
- }
- inline ::std::string* DragonPalaceRankInfo::release_nickname() {
- clear_has_nickname();
- if (nickname_ == &::google::protobuf::internal::kEmptyString) {
- return NULL;
- } else {
- ::std::string* temp = nickname_;
- nickname_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
- return temp;
- }
- }
- inline void DragonPalaceRankInfo::set_allocated_nickname(::std::string* nickname) {
- if (nickname_ != &::google::protobuf::internal::kEmptyString) {
- delete nickname_;
- }
- if (nickname) {
- set_has_nickname();
- nickname_ = nickname;
- } else {
- clear_has_nickname();
- nickname_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
- }
- }
- // optional int32 gainDimensity = 3;
- inline bool DragonPalaceRankInfo::has_gaindimensity() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void DragonPalaceRankInfo::set_has_gaindimensity() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void DragonPalaceRankInfo::clear_has_gaindimensity() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void DragonPalaceRankInfo::clear_gaindimensity() {
- gaindimensity_ = 0;
- clear_has_gaindimensity();
- }
- inline ::google::protobuf::int32 DragonPalaceRankInfo::gaindimensity() const {
- return gaindimensity_;
- }
- inline void DragonPalaceRankInfo::set_gaindimensity(::google::protobuf::int32 value) {
- set_has_gaindimensity();
- gaindimensity_ = value;
- }
- // optional int32 headid = 4;
- inline bool DragonPalaceRankInfo::has_headid() const {
- return (_has_bits_[0] & 0x00000008u) != 0;
- }
- inline void DragonPalaceRankInfo::set_has_headid() {
- _has_bits_[0] |= 0x00000008u;
- }
- inline void DragonPalaceRankInfo::clear_has_headid() {
- _has_bits_[0] &= ~0x00000008u;
- }
- inline void DragonPalaceRankInfo::clear_headid() {
- headid_ = 0;
- clear_has_headid();
- }
- inline ::google::protobuf::int32 DragonPalaceRankInfo::headid() const {
- return headid_;
- }
- inline void DragonPalaceRankInfo::set_headid(::google::protobuf::int32 value) {
- set_has_headid();
- headid_ = value;
- }
- // optional int32 frameid = 5;
- inline bool DragonPalaceRankInfo::has_frameid() const {
- return (_has_bits_[0] & 0x00000010u) != 0;
- }
- inline void DragonPalaceRankInfo::set_has_frameid() {
- _has_bits_[0] |= 0x00000010u;
- }
- inline void DragonPalaceRankInfo::clear_has_frameid() {
- _has_bits_[0] &= ~0x00000010u;
- }
- inline void DragonPalaceRankInfo::clear_frameid() {
- frameid_ = 0;
- clear_has_frameid();
- }
- inline ::google::protobuf::int32 DragonPalaceRankInfo::frameid() const {
- return frameid_;
- }
- inline void DragonPalaceRankInfo::set_frameid(::google::protobuf::int32 value) {
- set_has_frameid();
- frameid_ = value;
- }
- // optional int32 gender = 6;
- inline bool DragonPalaceRankInfo::has_gender() const {
- return (_has_bits_[0] & 0x00000020u) != 0;
- }
- inline void DragonPalaceRankInfo::set_has_gender() {
- _has_bits_[0] |= 0x00000020u;
- }
- inline void DragonPalaceRankInfo::clear_has_gender() {
- _has_bits_[0] &= ~0x00000020u;
- }
- inline void DragonPalaceRankInfo::clear_gender() {
- gender_ = 0;
- clear_has_gender();
- }
- inline ::google::protobuf::int32 DragonPalaceRankInfo::gender() const {
- return gender_;
- }
- inline void DragonPalaceRankInfo::set_gender(::google::protobuf::int32 value) {
- set_has_gender();
- gender_ = value;
- }
- // -------------------------------------------------------------------
- // packetc2l_get_dragon_palace_info
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_get_dragon_palace_info];
- inline bool packetc2l_get_dragon_palace_info::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetc2l_get_dragon_palace_info::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetc2l_get_dragon_palace_info::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetc2l_get_dragon_palace_info::clear_packet_id() {
- packet_id_ = 10148;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetc2l_get_dragon_palace_info::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetc2l_get_dragon_palace_info::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional bool isGetRankInfo = 2;
- inline bool packetc2l_get_dragon_palace_info::has_isgetrankinfo() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetc2l_get_dragon_palace_info::set_has_isgetrankinfo() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetc2l_get_dragon_palace_info::clear_has_isgetrankinfo() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetc2l_get_dragon_palace_info::clear_isgetrankinfo() {
- isgetrankinfo_ = false;
- clear_has_isgetrankinfo();
- }
- inline bool packetc2l_get_dragon_palace_info::isgetrankinfo() const {
- return isgetrankinfo_;
- }
- inline void packetc2l_get_dragon_palace_info::set_isgetrankinfo(bool value) {
- set_has_isgetrankinfo();
- isgetrankinfo_ = value;
- }
- // -------------------------------------------------------------------
- // ExchangePriceInfo
- // optional int32 exchangeId = 1;
- inline bool ExchangePriceInfo::has_exchangeid() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void ExchangePriceInfo::set_has_exchangeid() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void ExchangePriceInfo::clear_has_exchangeid() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void ExchangePriceInfo::clear_exchangeid() {
- exchangeid_ = 0;
- clear_has_exchangeid();
- }
- inline ::google::protobuf::int32 ExchangePriceInfo::exchangeid() const {
- return exchangeid_;
- }
- inline void ExchangePriceInfo::set_exchangeid(::google::protobuf::int32 value) {
- set_has_exchangeid();
- exchangeid_ = value;
- }
- // optional int32 price = 2;
- inline bool ExchangePriceInfo::has_price() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void ExchangePriceInfo::set_has_price() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void ExchangePriceInfo::clear_has_price() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void ExchangePriceInfo::clear_price() {
- price_ = 0;
- clear_has_price();
- }
- inline ::google::protobuf::int32 ExchangePriceInfo::price() const {
- return price_;
- }
- inline void ExchangePriceInfo::set_price(::google::protobuf::int32 value) {
- set_has_price();
- price_ = value;
- }
- // -------------------------------------------------------------------
- // ExchangeItemInfo
- // optional int32 itemid = 1;
- inline bool ExchangeItemInfo::has_itemid() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void ExchangeItemInfo::set_has_itemid() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void ExchangeItemInfo::clear_has_itemid() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void ExchangeItemInfo::clear_itemid() {
- itemid_ = 0;
- clear_has_itemid();
- }
- inline ::google::protobuf::int32 ExchangeItemInfo::itemid() const {
- return itemid_;
- }
- inline void ExchangeItemInfo::set_itemid(::google::protobuf::int32 value) {
- set_has_itemid();
- itemid_ = value;
- }
- // optional int32 itemcount = 2;
- inline bool ExchangeItemInfo::has_itemcount() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void ExchangeItemInfo::set_has_itemcount() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void ExchangeItemInfo::clear_has_itemcount() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void ExchangeItemInfo::clear_itemcount() {
- itemcount_ = 0;
- clear_has_itemcount();
- }
- inline ::google::protobuf::int32 ExchangeItemInfo::itemcount() const {
- return itemcount_;
- }
- inline void ExchangeItemInfo::set_itemcount(::google::protobuf::int32 value) {
- set_has_itemcount();
- itemcount_ = value;
- }
- // -------------------------------------------------------------------
- // packetl2c_get_dragon_palace_info_result
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_get_dragon_palace_info_result];
- inline bool packetl2c_get_dragon_palace_info_result::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetl2c_get_dragon_palace_info_result::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetl2c_get_dragon_palace_info_result::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetl2c_get_dragon_palace_info_result::clear_packet_id() {
- packet_id_ = 16137;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetl2c_get_dragon_palace_info_result::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetl2c_get_dragon_palace_info_result::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 dimensityCount = 2;
- inline bool packetl2c_get_dragon_palace_info_result::has_dimensitycount() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetl2c_get_dragon_palace_info_result::set_has_dimensitycount() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetl2c_get_dragon_palace_info_result::clear_has_dimensitycount() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetl2c_get_dragon_palace_info_result::clear_dimensitycount() {
- dimensitycount_ = 0;
- clear_has_dimensitycount();
- }
- inline ::google::protobuf::int32 packetl2c_get_dragon_palace_info_result::dimensitycount() const {
- return dimensitycount_;
- }
- inline void packetl2c_get_dragon_palace_info_result::set_dimensitycount(::google::protobuf::int32 value) {
- set_has_dimensitycount();
- dimensitycount_ = value;
- }
- // optional int32 exchangeCount = 3;
- inline bool packetl2c_get_dragon_palace_info_result::has_exchangecount() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void packetl2c_get_dragon_palace_info_result::set_has_exchangecount() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void packetl2c_get_dragon_palace_info_result::clear_has_exchangecount() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void packetl2c_get_dragon_palace_info_result::clear_exchangecount() {
- exchangecount_ = 0;
- clear_has_exchangecount();
- }
- inline ::google::protobuf::int32 packetl2c_get_dragon_palace_info_result::exchangecount() const {
- return exchangecount_;
- }
- inline void packetl2c_get_dragon_palace_info_result::set_exchangecount(::google::protobuf::int32 value) {
- set_has_exchangecount();
- exchangecount_ = value;
- }
- // optional int32 exchangeCountEx = 4;
- inline bool packetl2c_get_dragon_palace_info_result::has_exchangecountex() const {
- return (_has_bits_[0] & 0x00000008u) != 0;
- }
- inline void packetl2c_get_dragon_palace_info_result::set_has_exchangecountex() {
- _has_bits_[0] |= 0x00000008u;
- }
- inline void packetl2c_get_dragon_palace_info_result::clear_has_exchangecountex() {
- _has_bits_[0] &= ~0x00000008u;
- }
- inline void packetl2c_get_dragon_palace_info_result::clear_exchangecountex() {
- exchangecountex_ = 0;
- clear_has_exchangecountex();
- }
- inline ::google::protobuf::int32 packetl2c_get_dragon_palace_info_result::exchangecountex() const {
- return exchangecountex_;
- }
- inline void packetl2c_get_dragon_palace_info_result::set_exchangecountex(::google::protobuf::int32 value) {
- set_has_exchangecountex();
- exchangecountex_ = value;
- }
- // optional int32 discountExchangeCountLv = 5;
- inline bool packetl2c_get_dragon_palace_info_result::has_discountexchangecountlv() const {
- return (_has_bits_[0] & 0x00000010u) != 0;
- }
- inline void packetl2c_get_dragon_palace_info_result::set_has_discountexchangecountlv() {
- _has_bits_[0] |= 0x00000010u;
- }
- inline void packetl2c_get_dragon_palace_info_result::clear_has_discountexchangecountlv() {
- _has_bits_[0] &= ~0x00000010u;
- }
- inline void packetl2c_get_dragon_palace_info_result::clear_discountexchangecountlv() {
- discountexchangecountlv_ = 0;
- clear_has_discountexchangecountlv();
- }
- inline ::google::protobuf::int32 packetl2c_get_dragon_palace_info_result::discountexchangecountlv() const {
- return discountexchangecountlv_;
- }
- inline void packetl2c_get_dragon_palace_info_result::set_discountexchangecountlv(::google::protobuf::int32 value) {
- set_has_discountexchangecountlv();
- discountexchangecountlv_ = value;
- }
- // repeated .fish_protocols.DragonPalaceRankInfo curRankList = 6;
- inline int packetl2c_get_dragon_palace_info_result::curranklist_size() const {
- return curranklist_.size();
- }
- inline void packetl2c_get_dragon_palace_info_result::clear_curranklist() {
- curranklist_.Clear();
- }
- inline const ::fish_protocols::DragonPalaceRankInfo& packetl2c_get_dragon_palace_info_result::curranklist(int index) const {
- return curranklist_.Get(index);
- }
- inline ::fish_protocols::DragonPalaceRankInfo* packetl2c_get_dragon_palace_info_result::mutable_curranklist(int index) {
- return curranklist_.Mutable(index);
- }
- inline ::fish_protocols::DragonPalaceRankInfo* packetl2c_get_dragon_palace_info_result::add_curranklist() {
- return curranklist_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::DragonPalaceRankInfo >&
- packetl2c_get_dragon_palace_info_result::curranklist() const {
- return curranklist_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::DragonPalaceRankInfo >*
- packetl2c_get_dragon_palace_info_result::mutable_curranklist() {
- return &curranklist_;
- }
- // optional int32 gainDimensityCurWeek = 7;
- inline bool packetl2c_get_dragon_palace_info_result::has_gaindimensitycurweek() const {
- return (_has_bits_[0] & 0x00000040u) != 0;
- }
- inline void packetl2c_get_dragon_palace_info_result::set_has_gaindimensitycurweek() {
- _has_bits_[0] |= 0x00000040u;
- }
- inline void packetl2c_get_dragon_palace_info_result::clear_has_gaindimensitycurweek() {
- _has_bits_[0] &= ~0x00000040u;
- }
- inline void packetl2c_get_dragon_palace_info_result::clear_gaindimensitycurweek() {
- gaindimensitycurweek_ = 0;
- clear_has_gaindimensitycurweek();
- }
- inline ::google::protobuf::int32 packetl2c_get_dragon_palace_info_result::gaindimensitycurweek() const {
- return gaindimensitycurweek_;
- }
- inline void packetl2c_get_dragon_palace_info_result::set_gaindimensitycurweek(::google::protobuf::int32 value) {
- set_has_gaindimensitycurweek();
- gaindimensitycurweek_ = value;
- }
- // repeated .fish_protocols.FunBuff selfFunBuffList = 8;
- inline int packetl2c_get_dragon_palace_info_result::selffunbufflist_size() const {
- return selffunbufflist_.size();
- }
- inline void packetl2c_get_dragon_palace_info_result::clear_selffunbufflist() {
- selffunbufflist_.Clear();
- }
- inline const ::fish_protocols::FunBuff& packetl2c_get_dragon_palace_info_result::selffunbufflist(int index) const {
- return selffunbufflist_.Get(index);
- }
- inline ::fish_protocols::FunBuff* packetl2c_get_dragon_palace_info_result::mutable_selffunbufflist(int index) {
- return selffunbufflist_.Mutable(index);
- }
- inline ::fish_protocols::FunBuff* packetl2c_get_dragon_palace_info_result::add_selffunbufflist() {
- return selffunbufflist_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::FunBuff >&
- packetl2c_get_dragon_palace_info_result::selffunbufflist() const {
- return selffunbufflist_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::FunBuff >*
- packetl2c_get_dragon_palace_info_result::mutable_selffunbufflist() {
- return &selffunbufflist_;
- }
- // repeated .fish_protocols.ExchangePriceInfo priceInfoList = 9;
- inline int packetl2c_get_dragon_palace_info_result::priceinfolist_size() const {
- return priceinfolist_.size();
- }
- inline void packetl2c_get_dragon_palace_info_result::clear_priceinfolist() {
- priceinfolist_.Clear();
- }
- inline const ::fish_protocols::ExchangePriceInfo& packetl2c_get_dragon_palace_info_result::priceinfolist(int index) const {
- return priceinfolist_.Get(index);
- }
- inline ::fish_protocols::ExchangePriceInfo* packetl2c_get_dragon_palace_info_result::mutable_priceinfolist(int index) {
- return priceinfolist_.Mutable(index);
- }
- inline ::fish_protocols::ExchangePriceInfo* packetl2c_get_dragon_palace_info_result::add_priceinfolist() {
- return priceinfolist_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::ExchangePriceInfo >&
- packetl2c_get_dragon_palace_info_result::priceinfolist() const {
- return priceinfolist_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::ExchangePriceInfo >*
- packetl2c_get_dragon_palace_info_result::mutable_priceinfolist() {
- return &priceinfolist_;
- }
- // optional int32 exchangeAddCount = 10;
- inline bool packetl2c_get_dragon_palace_info_result::has_exchangeaddcount() const {
- return (_has_bits_[0] & 0x00000200u) != 0;
- }
- inline void packetl2c_get_dragon_palace_info_result::set_has_exchangeaddcount() {
- _has_bits_[0] |= 0x00000200u;
- }
- inline void packetl2c_get_dragon_palace_info_result::clear_has_exchangeaddcount() {
- _has_bits_[0] &= ~0x00000200u;
- }
- inline void packetl2c_get_dragon_palace_info_result::clear_exchangeaddcount() {
- exchangeaddcount_ = 0;
- clear_has_exchangeaddcount();
- }
- inline ::google::protobuf::int32 packetl2c_get_dragon_palace_info_result::exchangeaddcount() const {
- return exchangeaddcount_;
- }
- inline void packetl2c_get_dragon_palace_info_result::set_exchangeaddcount(::google::protobuf::int32 value) {
- set_has_exchangeaddcount();
- exchangeaddcount_ = value;
- }
- // optional int32 dailyDimensity = 11;
- inline bool packetl2c_get_dragon_palace_info_result::has_dailydimensity() const {
- return (_has_bits_[0] & 0x00000400u) != 0;
- }
- inline void packetl2c_get_dragon_palace_info_result::set_has_dailydimensity() {
- _has_bits_[0] |= 0x00000400u;
- }
- inline void packetl2c_get_dragon_palace_info_result::clear_has_dailydimensity() {
- _has_bits_[0] &= ~0x00000400u;
- }
- inline void packetl2c_get_dragon_palace_info_result::clear_dailydimensity() {
- dailydimensity_ = 0;
- clear_has_dailydimensity();
- }
- inline ::google::protobuf::int32 packetl2c_get_dragon_palace_info_result::dailydimensity() const {
- return dailydimensity_;
- }
- inline void packetl2c_get_dragon_palace_info_result::set_dailydimensity(::google::protobuf::int32 value) {
- set_has_dailydimensity();
- dailydimensity_ = value;
- }
- // repeated bool dragonSlayerCheck = 12;
- inline int packetl2c_get_dragon_palace_info_result::dragonslayercheck_size() const {
- return dragonslayercheck_.size();
- }
- inline void packetl2c_get_dragon_palace_info_result::clear_dragonslayercheck() {
- dragonslayercheck_.Clear();
- }
- inline bool packetl2c_get_dragon_palace_info_result::dragonslayercheck(int index) const {
- return dragonslayercheck_.Get(index);
- }
- inline void packetl2c_get_dragon_palace_info_result::set_dragonslayercheck(int index, bool value) {
- dragonslayercheck_.Set(index, value);
- }
- inline void packetl2c_get_dragon_palace_info_result::add_dragonslayercheck(bool value) {
- dragonslayercheck_.Add(value);
- }
- inline const ::google::protobuf::RepeatedField< bool >&
- packetl2c_get_dragon_palace_info_result::dragonslayercheck() const {
- return dragonslayercheck_;
- }
- inline ::google::protobuf::RepeatedField< bool >*
- packetl2c_get_dragon_palace_info_result::mutable_dragonslayercheck() {
- return &dragonslayercheck_;
- }
- // -------------------------------------------------------------------
- // packetc2l_get_dragon_palace_rank
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_get_dragon_palace_rank];
- inline bool packetc2l_get_dragon_palace_rank::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetc2l_get_dragon_palace_rank::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetc2l_get_dragon_palace_rank::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetc2l_get_dragon_palace_rank::clear_packet_id() {
- packet_id_ = 10149;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetc2l_get_dragon_palace_rank::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetc2l_get_dragon_palace_rank::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 rankType = 2;
- inline bool packetc2l_get_dragon_palace_rank::has_ranktype() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetc2l_get_dragon_palace_rank::set_has_ranktype() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetc2l_get_dragon_palace_rank::clear_has_ranktype() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetc2l_get_dragon_palace_rank::clear_ranktype() {
- ranktype_ = 0;
- clear_has_ranktype();
- }
- inline ::google::protobuf::int32 packetc2l_get_dragon_palace_rank::ranktype() const {
- return ranktype_;
- }
- inline void packetc2l_get_dragon_palace_rank::set_ranktype(::google::protobuf::int32 value) {
- set_has_ranktype();
- ranktype_ = value;
- }
- // -------------------------------------------------------------------
- // packetl2c_get_dragon_palace_rank_result
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_get_dragon_palace_rank_result];
- inline bool packetl2c_get_dragon_palace_rank_result::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetl2c_get_dragon_palace_rank_result::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetl2c_get_dragon_palace_rank_result::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetl2c_get_dragon_palace_rank_result::clear_packet_id() {
- packet_id_ = 16138;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetl2c_get_dragon_palace_rank_result::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetl2c_get_dragon_palace_rank_result::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 rankType = 2;
- inline bool packetl2c_get_dragon_palace_rank_result::has_ranktype() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetl2c_get_dragon_palace_rank_result::set_has_ranktype() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetl2c_get_dragon_palace_rank_result::clear_has_ranktype() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetl2c_get_dragon_palace_rank_result::clear_ranktype() {
- ranktype_ = 0;
- clear_has_ranktype();
- }
- inline ::google::protobuf::int32 packetl2c_get_dragon_palace_rank_result::ranktype() const {
- return ranktype_;
- }
- inline void packetl2c_get_dragon_palace_rank_result::set_ranktype(::google::protobuf::int32 value) {
- set_has_ranktype();
- ranktype_ = value;
- }
- // repeated .fish_protocols.DragonPalaceRankInfo rankList = 3;
- inline int packetl2c_get_dragon_palace_rank_result::ranklist_size() const {
- return ranklist_.size();
- }
- inline void packetl2c_get_dragon_palace_rank_result::clear_ranklist() {
- ranklist_.Clear();
- }
- inline const ::fish_protocols::DragonPalaceRankInfo& packetl2c_get_dragon_palace_rank_result::ranklist(int index) const {
- return ranklist_.Get(index);
- }
- inline ::fish_protocols::DragonPalaceRankInfo* packetl2c_get_dragon_palace_rank_result::mutable_ranklist(int index) {
- return ranklist_.Mutable(index);
- }
- inline ::fish_protocols::DragonPalaceRankInfo* packetl2c_get_dragon_palace_rank_result::add_ranklist() {
- return ranklist_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::DragonPalaceRankInfo >&
- packetl2c_get_dragon_palace_rank_result::ranklist() const {
- return ranklist_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::DragonPalaceRankInfo >*
- packetl2c_get_dragon_palace_rank_result::mutable_ranklist() {
- return &ranklist_;
- }
- // -------------------------------------------------------------------
- // packetc2l_dragon_palace_exchange
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_dragon_palace_exchange];
- inline bool packetc2l_dragon_palace_exchange::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetc2l_dragon_palace_exchange::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetc2l_dragon_palace_exchange::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetc2l_dragon_palace_exchange::clear_packet_id() {
- packet_id_ = 10150;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetc2l_dragon_palace_exchange::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetc2l_dragon_palace_exchange::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 exchangeId = 2;
- inline bool packetc2l_dragon_palace_exchange::has_exchangeid() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetc2l_dragon_palace_exchange::set_has_exchangeid() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetc2l_dragon_palace_exchange::clear_has_exchangeid() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetc2l_dragon_palace_exchange::clear_exchangeid() {
- exchangeid_ = 0;
- clear_has_exchangeid();
- }
- inline ::google::protobuf::int32 packetc2l_dragon_palace_exchange::exchangeid() const {
- return exchangeid_;
- }
- inline void packetc2l_dragon_palace_exchange::set_exchangeid(::google::protobuf::int32 value) {
- set_has_exchangeid();
- exchangeid_ = value;
- }
- // optional int32 exchangeCount = 3;
- inline bool packetc2l_dragon_palace_exchange::has_exchangecount() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void packetc2l_dragon_palace_exchange::set_has_exchangecount() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void packetc2l_dragon_palace_exchange::clear_has_exchangecount() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void packetc2l_dragon_palace_exchange::clear_exchangecount() {
- exchangecount_ = 0;
- clear_has_exchangecount();
- }
- inline ::google::protobuf::int32 packetc2l_dragon_palace_exchange::exchangecount() const {
- return exchangecount_;
- }
- inline void packetc2l_dragon_palace_exchange::set_exchangecount(::google::protobuf::int32 value) {
- set_has_exchangecount();
- exchangecount_ = value;
- }
- // -------------------------------------------------------------------
- // packetl2c_dragon_palace_exchange_result
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_dragon_palace_exchange_result];
- inline bool packetl2c_dragon_palace_exchange_result::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetl2c_dragon_palace_exchange_result::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetl2c_dragon_palace_exchange_result::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetl2c_dragon_palace_exchange_result::clear_packet_id() {
- packet_id_ = 16139;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetl2c_dragon_palace_exchange_result::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetl2c_dragon_palace_exchange_result::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 result = 2;
- inline bool packetl2c_dragon_palace_exchange_result::has_result() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetl2c_dragon_palace_exchange_result::set_has_result() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetl2c_dragon_palace_exchange_result::clear_has_result() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetl2c_dragon_palace_exchange_result::clear_result() {
- result_ = 0;
- clear_has_result();
- }
- inline ::google::protobuf::int32 packetl2c_dragon_palace_exchange_result::result() const {
- return result_;
- }
- inline void packetl2c_dragon_palace_exchange_result::set_result(::google::protobuf::int32 value) {
- set_has_result();
- result_ = value;
- }
- // repeated .fish_protocols.ExchangeItemInfo exchangeItems = 3;
- inline int packetl2c_dragon_palace_exchange_result::exchangeitems_size() const {
- return exchangeitems_.size();
- }
- inline void packetl2c_dragon_palace_exchange_result::clear_exchangeitems() {
- exchangeitems_.Clear();
- }
- inline const ::fish_protocols::ExchangeItemInfo& packetl2c_dragon_palace_exchange_result::exchangeitems(int index) const {
- return exchangeitems_.Get(index);
- }
- inline ::fish_protocols::ExchangeItemInfo* packetl2c_dragon_palace_exchange_result::mutable_exchangeitems(int index) {
- return exchangeitems_.Mutable(index);
- }
- inline ::fish_protocols::ExchangeItemInfo* packetl2c_dragon_palace_exchange_result::add_exchangeitems() {
- return exchangeitems_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::ExchangeItemInfo >&
- packetl2c_dragon_palace_exchange_result::exchangeitems() const {
- return exchangeitems_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::ExchangeItemInfo >*
- packetl2c_dragon_palace_exchange_result::mutable_exchangeitems() {
- return &exchangeitems_;
- }
- // repeated .fish_protocols.ExchangePriceInfo priceInfoList = 4;
- inline int packetl2c_dragon_palace_exchange_result::priceinfolist_size() const {
- return priceinfolist_.size();
- }
- inline void packetl2c_dragon_palace_exchange_result::clear_priceinfolist() {
- priceinfolist_.Clear();
- }
- inline const ::fish_protocols::ExchangePriceInfo& packetl2c_dragon_palace_exchange_result::priceinfolist(int index) const {
- return priceinfolist_.Get(index);
- }
- inline ::fish_protocols::ExchangePriceInfo* packetl2c_dragon_palace_exchange_result::mutable_priceinfolist(int index) {
- return priceinfolist_.Mutable(index);
- }
- inline ::fish_protocols::ExchangePriceInfo* packetl2c_dragon_palace_exchange_result::add_priceinfolist() {
- return priceinfolist_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::ExchangePriceInfo >&
- packetl2c_dragon_palace_exchange_result::priceinfolist() const {
- return priceinfolist_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::ExchangePriceInfo >*
- packetl2c_dragon_palace_exchange_result::mutable_priceinfolist() {
- return &priceinfolist_;
- }
- // optional int32 nextPrice = 5;
- inline bool packetl2c_dragon_palace_exchange_result::has_nextprice() const {
- return (_has_bits_[0] & 0x00000010u) != 0;
- }
- inline void packetl2c_dragon_palace_exchange_result::set_has_nextprice() {
- _has_bits_[0] |= 0x00000010u;
- }
- inline void packetl2c_dragon_palace_exchange_result::clear_has_nextprice() {
- _has_bits_[0] &= ~0x00000010u;
- }
- inline void packetl2c_dragon_palace_exchange_result::clear_nextprice() {
- nextprice_ = 0;
- clear_has_nextprice();
- }
- inline ::google::protobuf::int32 packetl2c_dragon_palace_exchange_result::nextprice() const {
- return nextprice_;
- }
- inline void packetl2c_dragon_palace_exchange_result::set_nextprice(::google::protobuf::int32 value) {
- set_has_nextprice();
- nextprice_ = value;
- }
- // -------------------------------------------------------------------
- // packetc2l_dragon_add_exchange_count
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_dragon_add_exchange_count];
- inline bool packetc2l_dragon_add_exchange_count::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetc2l_dragon_add_exchange_count::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetc2l_dragon_add_exchange_count::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetc2l_dragon_add_exchange_count::clear_packet_id() {
- packet_id_ = 10151;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetc2l_dragon_add_exchange_count::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetc2l_dragon_add_exchange_count::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 addCount = 2;
- inline bool packetc2l_dragon_add_exchange_count::has_addcount() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetc2l_dragon_add_exchange_count::set_has_addcount() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetc2l_dragon_add_exchange_count::clear_has_addcount() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetc2l_dragon_add_exchange_count::clear_addcount() {
- addcount_ = 0;
- clear_has_addcount();
- }
- inline ::google::protobuf::int32 packetc2l_dragon_add_exchange_count::addcount() const {
- return addcount_;
- }
- inline void packetc2l_dragon_add_exchange_count::set_addcount(::google::protobuf::int32 value) {
- set_has_addcount();
- addcount_ = value;
- }
- // -------------------------------------------------------------------
- // packetl2c_dragon_add_exchange_count_result
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_dragon_add_exchange_count_result];
- inline bool packetl2c_dragon_add_exchange_count_result::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetl2c_dragon_add_exchange_count_result::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetl2c_dragon_add_exchange_count_result::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetl2c_dragon_add_exchange_count_result::clear_packet_id() {
- packet_id_ = 16140;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetl2c_dragon_add_exchange_count_result::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetl2c_dragon_add_exchange_count_result::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 result = 2;
- inline bool packetl2c_dragon_add_exchange_count_result::has_result() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetl2c_dragon_add_exchange_count_result::set_has_result() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetl2c_dragon_add_exchange_count_result::clear_has_result() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetl2c_dragon_add_exchange_count_result::clear_result() {
- result_ = 0;
- clear_has_result();
- }
- inline ::google::protobuf::int32 packetl2c_dragon_add_exchange_count_result::result() const {
- return result_;
- }
- inline void packetl2c_dragon_add_exchange_count_result::set_result(::google::protobuf::int32 value) {
- set_has_result();
- result_ = value;
- }
- // optional int32 addCount = 3;
- inline bool packetl2c_dragon_add_exchange_count_result::has_addcount() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void packetl2c_dragon_add_exchange_count_result::set_has_addcount() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void packetl2c_dragon_add_exchange_count_result::clear_has_addcount() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void packetl2c_dragon_add_exchange_count_result::clear_addcount() {
- addcount_ = 0;
- clear_has_addcount();
- }
- inline ::google::protobuf::int32 packetl2c_dragon_add_exchange_count_result::addcount() const {
- return addcount_;
- }
- inline void packetl2c_dragon_add_exchange_count_result::set_addcount(::google::protobuf::int32 value) {
- set_has_addcount();
- addcount_ = value;
- }
- // -------------------------------------------------------------------
- // packetc2l_daily_dimensity_exchange
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_daily_dimensity_exchange];
- inline bool packetc2l_daily_dimensity_exchange::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetc2l_daily_dimensity_exchange::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetc2l_daily_dimensity_exchange::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetc2l_daily_dimensity_exchange::clear_packet_id() {
- packet_id_ = 10152;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetc2l_daily_dimensity_exchange::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetc2l_daily_dimensity_exchange::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // -------------------------------------------------------------------
- // packetl2c_daily_dimensity_exchange_result
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_daily_dimensity_exchange_result];
- inline bool packetl2c_daily_dimensity_exchange_result::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetl2c_daily_dimensity_exchange_result::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetl2c_daily_dimensity_exchange_result::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetl2c_daily_dimensity_exchange_result::clear_packet_id() {
- packet_id_ = 16141;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetl2c_daily_dimensity_exchange_result::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetl2c_daily_dimensity_exchange_result::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 result = 2;
- inline bool packetl2c_daily_dimensity_exchange_result::has_result() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetl2c_daily_dimensity_exchange_result::set_has_result() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetl2c_daily_dimensity_exchange_result::clear_has_result() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetl2c_daily_dimensity_exchange_result::clear_result() {
- result_ = 0;
- clear_has_result();
- }
- inline ::google::protobuf::int32 packetl2c_daily_dimensity_exchange_result::result() const {
- return result_;
- }
- inline void packetl2c_daily_dimensity_exchange_result::set_result(::google::protobuf::int32 value) {
- set_has_result();
- result_ = value;
- }
- // repeated .fish_protocols.ExchangeItemInfo exchangeInfo = 3;
- inline int packetl2c_daily_dimensity_exchange_result::exchangeinfo_size() const {
- return exchangeinfo_.size();
- }
- inline void packetl2c_daily_dimensity_exchange_result::clear_exchangeinfo() {
- exchangeinfo_.Clear();
- }
- inline const ::fish_protocols::ExchangeItemInfo& packetl2c_daily_dimensity_exchange_result::exchangeinfo(int index) const {
- return exchangeinfo_.Get(index);
- }
- inline ::fish_protocols::ExchangeItemInfo* packetl2c_daily_dimensity_exchange_result::mutable_exchangeinfo(int index) {
- return exchangeinfo_.Mutable(index);
- }
- inline ::fish_protocols::ExchangeItemInfo* packetl2c_daily_dimensity_exchange_result::add_exchangeinfo() {
- return exchangeinfo_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::ExchangeItemInfo >&
- packetl2c_daily_dimensity_exchange_result::exchangeinfo() const {
- return exchangeinfo_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::ExchangeItemInfo >*
- packetl2c_daily_dimensity_exchange_result::mutable_exchangeinfo() {
- return &exchangeinfo_;
- }
- // @@protoc_insertion_point(namespace_scope)
- } // namespace fish_protocols
- #ifndef SWIG
- namespace google {
- namespace protobuf {
- } // namespace google
- } // namespace protobuf
- #endif // SWIG
- // @@protoc_insertion_point(global_scope)
- #endif // PROTOBUF_fish_5fdragon_5fpalace_2eproto__INCLUDED
|