123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184 |
- // Generated by the protocol buffer compiler. DO NOT EDIT!
- // source: fish_bombfairyland.proto
- #ifndef PROTOBUF_fish_5fbombfairyland_2eproto__INCLUDED
- #define PROTOBUF_fish_5fbombfairyland_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 "fish_type_def.pb.h"
- #include "msg_type_def.pb.h"
- // @@protoc_insertion_point(includes)
- namespace fish_protocols {
- // Internal implementation detail -- do not call these.
- void protobuf_AddDesc_fish_5fbombfairyland_2eproto();
- void protobuf_AssignDesc_fish_5fbombfairyland_2eproto();
- void protobuf_ShutdownFile_fish_5fbombfairyland_2eproto();
- class packetc2l_enter_southsea_treasurehunt;
- class packetl2c_enter_southsea_treasurehunt_result;
- class packetc2l_southsea_treasurehunt_get_info;
- class STRoomstate;
- class packetl2c_southsea_treasurehunt_get_info_result;
- class packetc2l_southsea_treasurehunt_enter;
- class packetl2c_southsea_treasurehunt_enter_result;
- class packetc2l_southsea_treasurehunt_lottery;
- class packetl2c_southsea_treasurehunt_lottery_result;
- class packetc2l_get_southsea_treasurehunt_notice;
- class MTreasureHuntNoticeInfo;
- class packetl2c_get_southsea_treasurehunt_notice_result;
- // ===================================================================
- class packetc2l_enter_southsea_treasurehunt : public ::google::protobuf::Message {
- public:
- packetc2l_enter_southsea_treasurehunt();
- virtual ~packetc2l_enter_southsea_treasurehunt();
- packetc2l_enter_southsea_treasurehunt(const packetc2l_enter_southsea_treasurehunt& from);
- inline packetc2l_enter_southsea_treasurehunt& operator=(const packetc2l_enter_southsea_treasurehunt& 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_enter_southsea_treasurehunt& default_instance();
- void Swap(packetc2l_enter_southsea_treasurehunt* other);
- // implements Message ----------------------------------------------
- packetc2l_enter_southsea_treasurehunt* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetc2l_enter_southsea_treasurehunt& from);
- void MergeFrom(const packetc2l_enter_southsea_treasurehunt& 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_enter_southsea_treasurehunt];
- 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_enter_southsea_treasurehunt)
- 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_5fbombfairyland_2eproto();
- friend void protobuf_AssignDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_ShutdownFile_fish_5fbombfairyland_2eproto();
- void InitAsDefaultInstance();
- static packetc2l_enter_southsea_treasurehunt* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetl2c_enter_southsea_treasurehunt_result : public ::google::protobuf::Message {
- public:
- packetl2c_enter_southsea_treasurehunt_result();
- virtual ~packetl2c_enter_southsea_treasurehunt_result();
- packetl2c_enter_southsea_treasurehunt_result(const packetl2c_enter_southsea_treasurehunt_result& from);
- inline packetl2c_enter_southsea_treasurehunt_result& operator=(const packetl2c_enter_southsea_treasurehunt_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_enter_southsea_treasurehunt_result& default_instance();
- void Swap(packetl2c_enter_southsea_treasurehunt_result* other);
- // implements Message ----------------------------------------------
- packetl2c_enter_southsea_treasurehunt_result* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetl2c_enter_southsea_treasurehunt_result& from);
- void MergeFrom(const packetl2c_enter_southsea_treasurehunt_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_enter_southsea_treasurehunt_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 sendCopperCount = 2;
- inline bool has_sendcoppercount() const;
- inline void clear_sendcoppercount();
- static const int kSendCopperCountFieldNumber = 2;
- inline ::google::protobuf::int32 sendcoppercount() const;
- inline void set_sendcoppercount(::google::protobuf::int32 value);
- // optional int32 result = 3;
- inline bool has_result() const;
- inline void clear_result();
- static const int kResultFieldNumber = 3;
- inline ::google::protobuf::int32 result() const;
- inline void set_result(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_enter_southsea_treasurehunt_result)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_sendcoppercount();
- inline void clear_has_sendcoppercount();
- inline void set_has_result();
- inline void clear_has_result();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 sendcoppercount_;
- ::google::protobuf::int32 result_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(3 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_AssignDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_ShutdownFile_fish_5fbombfairyland_2eproto();
- void InitAsDefaultInstance();
- static packetl2c_enter_southsea_treasurehunt_result* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetc2l_southsea_treasurehunt_get_info : public ::google::protobuf::Message {
- public:
- packetc2l_southsea_treasurehunt_get_info();
- virtual ~packetc2l_southsea_treasurehunt_get_info();
- packetc2l_southsea_treasurehunt_get_info(const packetc2l_southsea_treasurehunt_get_info& from);
- inline packetc2l_southsea_treasurehunt_get_info& operator=(const packetc2l_southsea_treasurehunt_get_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_southsea_treasurehunt_get_info& default_instance();
- void Swap(packetc2l_southsea_treasurehunt_get_info* other);
- // implements Message ----------------------------------------------
- packetc2l_southsea_treasurehunt_get_info* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetc2l_southsea_treasurehunt_get_info& from);
- void MergeFrom(const packetc2l_southsea_treasurehunt_get_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_southsea_treasurehunt_get_info];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_southsea_treasurehunt_get_info)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(1 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_AssignDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_ShutdownFile_fish_5fbombfairyland_2eproto();
- void InitAsDefaultInstance();
- static packetc2l_southsea_treasurehunt_get_info* default_instance_;
- };
- // -------------------------------------------------------------------
- class STRoomstate : public ::google::protobuf::Message {
- public:
- STRoomstate();
- virtual ~STRoomstate();
- STRoomstate(const STRoomstate& from);
- inline STRoomstate& operator=(const STRoomstate& 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 STRoomstate& default_instance();
- void Swap(STRoomstate* other);
- // implements Message ----------------------------------------------
- STRoomstate* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const STRoomstate& from);
- void MergeFrom(const STRoomstate& 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 roomId = 1;
- inline bool has_roomid() const;
- inline void clear_roomid();
- static const int kRoomIdFieldNumber = 1;
- inline ::google::protobuf::int32 roomid() const;
- inline void set_roomid(::google::protobuf::int32 value);
- // optional int32 state = 2;
- inline bool has_state() const;
- inline void clear_state();
- static const int kStateFieldNumber = 2;
- inline ::google::protobuf::int32 state() const;
- inline void set_state(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.STRoomstate)
- private:
- inline void set_has_roomid();
- inline void clear_has_roomid();
- inline void set_has_state();
- inline void clear_has_state();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- ::google::protobuf::int32 roomid_;
- ::google::protobuf::int32 state_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_AssignDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_ShutdownFile_fish_5fbombfairyland_2eproto();
- void InitAsDefaultInstance();
- static STRoomstate* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetl2c_southsea_treasurehunt_get_info_result : public ::google::protobuf::Message {
- public:
- packetl2c_southsea_treasurehunt_get_info_result();
- virtual ~packetl2c_southsea_treasurehunt_get_info_result();
- packetl2c_southsea_treasurehunt_get_info_result(const packetl2c_southsea_treasurehunt_get_info_result& from);
- inline packetl2c_southsea_treasurehunt_get_info_result& operator=(const packetl2c_southsea_treasurehunt_get_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_southsea_treasurehunt_get_info_result& default_instance();
- void Swap(packetl2c_southsea_treasurehunt_get_info_result* other);
- // implements Message ----------------------------------------------
- packetl2c_southsea_treasurehunt_get_info_result* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetl2c_southsea_treasurehunt_get_info_result& from);
- void MergeFrom(const packetl2c_southsea_treasurehunt_get_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_southsea_treasurehunt_get_info_result];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // repeated .fish_protocols.STRoomstate roomList = 2;
- inline int roomlist_size() const;
- inline void clear_roomlist();
- static const int kRoomListFieldNumber = 2;
- inline const ::fish_protocols::STRoomstate& roomlist(int index) const;
- inline ::fish_protocols::STRoomstate* mutable_roomlist(int index);
- inline ::fish_protocols::STRoomstate* add_roomlist();
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::STRoomstate >&
- roomlist() const;
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::STRoomstate >*
- mutable_roomlist();
- // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_southsea_treasurehunt_get_info_result)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- ::google::protobuf::RepeatedPtrField< ::fish_protocols::STRoomstate > roomlist_;
- int packet_id_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_AssignDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_ShutdownFile_fish_5fbombfairyland_2eproto();
- void InitAsDefaultInstance();
- static packetl2c_southsea_treasurehunt_get_info_result* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetc2l_southsea_treasurehunt_enter : public ::google::protobuf::Message {
- public:
- packetc2l_southsea_treasurehunt_enter();
- virtual ~packetc2l_southsea_treasurehunt_enter();
- packetc2l_southsea_treasurehunt_enter(const packetc2l_southsea_treasurehunt_enter& from);
- inline packetc2l_southsea_treasurehunt_enter& operator=(const packetc2l_southsea_treasurehunt_enter& 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_southsea_treasurehunt_enter& default_instance();
- void Swap(packetc2l_southsea_treasurehunt_enter* other);
- // implements Message ----------------------------------------------
- packetc2l_southsea_treasurehunt_enter* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetc2l_southsea_treasurehunt_enter& from);
- void MergeFrom(const packetc2l_southsea_treasurehunt_enter& 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_southsea_treasurehunt_enter];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 roomId = 2;
- inline bool has_roomid() const;
- inline void clear_roomid();
- static const int kRoomIdFieldNumber = 2;
- inline ::google::protobuf::int32 roomid() const;
- inline void set_roomid(::google::protobuf::int32 value);
- // optional int32 enterWay = 3;
- inline bool has_enterway() const;
- inline void clear_enterway();
- static const int kEnterWayFieldNumber = 3;
- inline ::google::protobuf::int32 enterway() const;
- inline void set_enterway(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_southsea_treasurehunt_enter)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_roomid();
- inline void clear_has_roomid();
- inline void set_has_enterway();
- inline void clear_has_enterway();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 roomid_;
- ::google::protobuf::int32 enterway_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(3 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_AssignDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_ShutdownFile_fish_5fbombfairyland_2eproto();
- void InitAsDefaultInstance();
- static packetc2l_southsea_treasurehunt_enter* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetl2c_southsea_treasurehunt_enter_result : public ::google::protobuf::Message {
- public:
- packetl2c_southsea_treasurehunt_enter_result();
- virtual ~packetl2c_southsea_treasurehunt_enter_result();
- packetl2c_southsea_treasurehunt_enter_result(const packetl2c_southsea_treasurehunt_enter_result& from);
- inline packetl2c_southsea_treasurehunt_enter_result& operator=(const packetl2c_southsea_treasurehunt_enter_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_southsea_treasurehunt_enter_result& default_instance();
- void Swap(packetl2c_southsea_treasurehunt_enter_result* other);
- // implements Message ----------------------------------------------
- packetl2c_southsea_treasurehunt_enter_result* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetl2c_southsea_treasurehunt_enter_result& from);
- void MergeFrom(const packetl2c_southsea_treasurehunt_enter_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_southsea_treasurehunt_enter_result];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 result = 2;
- inline bool has_result() const;
- inline void clear_result();
- static const int kResultFieldNumber = 2;
- inline ::google::protobuf::int32 result() const;
- inline void set_result(::google::protobuf::int32 value);
- // optional int32 roomId = 3;
- inline bool has_roomid() const;
- inline void clear_roomid();
- static const int kRoomIdFieldNumber = 3;
- inline ::google::protobuf::int32 roomid() const;
- inline void set_roomid(::google::protobuf::int32 value);
- // optional int32 enterWay = 4;
- inline bool has_enterway() const;
- inline void clear_enterway();
- static const int kEnterWayFieldNumber = 4;
- inline ::google::protobuf::int32 enterway() const;
- inline void set_enterway(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_southsea_treasurehunt_enter_result)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_result();
- inline void clear_has_result();
- inline void set_has_roomid();
- inline void clear_has_roomid();
- inline void set_has_enterway();
- inline void clear_has_enterway();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 result_;
- ::google::protobuf::int32 roomid_;
- ::google::protobuf::int32 enterway_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(4 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_AssignDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_ShutdownFile_fish_5fbombfairyland_2eproto();
- void InitAsDefaultInstance();
- static packetl2c_southsea_treasurehunt_enter_result* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetc2l_southsea_treasurehunt_lottery : public ::google::protobuf::Message {
- public:
- packetc2l_southsea_treasurehunt_lottery();
- virtual ~packetc2l_southsea_treasurehunt_lottery();
- packetc2l_southsea_treasurehunt_lottery(const packetc2l_southsea_treasurehunt_lottery& from);
- inline packetc2l_southsea_treasurehunt_lottery& operator=(const packetc2l_southsea_treasurehunt_lottery& 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_southsea_treasurehunt_lottery& default_instance();
- void Swap(packetc2l_southsea_treasurehunt_lottery* other);
- // implements Message ----------------------------------------------
- packetc2l_southsea_treasurehunt_lottery* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetc2l_southsea_treasurehunt_lottery& from);
- void MergeFrom(const packetc2l_southsea_treasurehunt_lottery& 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_southsea_treasurehunt_lottery];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 roomId = 2;
- inline bool has_roomid() const;
- inline void clear_roomid();
- static const int kRoomIdFieldNumber = 2;
- inline ::google::protobuf::int32 roomid() const;
- inline void set_roomid(::google::protobuf::int32 value);
- // optional int32 enterWay = 3;
- inline bool has_enterway() const;
- inline void clear_enterway();
- static const int kEnterWayFieldNumber = 3;
- inline ::google::protobuf::int32 enterway() const;
- inline void set_enterway(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_southsea_treasurehunt_lottery)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_roomid();
- inline void clear_has_roomid();
- inline void set_has_enterway();
- inline void clear_has_enterway();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 roomid_;
- ::google::protobuf::int32 enterway_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(3 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_AssignDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_ShutdownFile_fish_5fbombfairyland_2eproto();
- void InitAsDefaultInstance();
- static packetc2l_southsea_treasurehunt_lottery* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetl2c_southsea_treasurehunt_lottery_result : public ::google::protobuf::Message {
- public:
- packetl2c_southsea_treasurehunt_lottery_result();
- virtual ~packetl2c_southsea_treasurehunt_lottery_result();
- packetl2c_southsea_treasurehunt_lottery_result(const packetl2c_southsea_treasurehunt_lottery_result& from);
- inline packetl2c_southsea_treasurehunt_lottery_result& operator=(const packetl2c_southsea_treasurehunt_lottery_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_southsea_treasurehunt_lottery_result& default_instance();
- void Swap(packetl2c_southsea_treasurehunt_lottery_result* other);
- // implements Message ----------------------------------------------
- packetl2c_southsea_treasurehunt_lottery_result* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetl2c_southsea_treasurehunt_lottery_result& from);
- void MergeFrom(const packetl2c_southsea_treasurehunt_lottery_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_southsea_treasurehunt_lottery_result];
- inline bool has_packet_id() const;
- inline void clear_packet_id();
- static const int kPacketIdFieldNumber = 1;
- inline ::fish_protocols::e_server_msg_type packet_id() const;
- inline void set_packet_id(::fish_protocols::e_server_msg_type value);
- // optional int32 result = 2;
- inline bool has_result() const;
- inline void clear_result();
- static const int kResultFieldNumber = 2;
- inline ::google::protobuf::int32 result() const;
- inline void set_result(::google::protobuf::int32 value);
- // optional int32 roomId = 3;
- inline bool has_roomid() const;
- inline void clear_roomid();
- static const int kRoomIdFieldNumber = 3;
- inline ::google::protobuf::int32 roomid() const;
- inline void set_roomid(::google::protobuf::int32 value);
- // optional int32 enterWay = 4;
- inline bool has_enterway() const;
- inline void clear_enterway();
- static const int kEnterWayFieldNumber = 4;
- inline ::google::protobuf::int32 enterway() const;
- inline void set_enterway(::google::protobuf::int32 value);
- // optional int32 rewardId = 5;
- inline bool has_rewardid() const;
- inline void clear_rewardid();
- static const int kRewardIdFieldNumber = 5;
- inline ::google::protobuf::int32 rewardid() const;
- inline void set_rewardid(::google::protobuf::int32 value);
- // repeated .fish_protocols.msg_item rewardList = 6;
- inline int rewardlist_size() const;
- inline void clear_rewardlist();
- static const int kRewardListFieldNumber = 6;
- inline const ::fish_protocols::msg_item& rewardlist(int index) const;
- inline ::fish_protocols::msg_item* mutable_rewardlist(int index);
- inline ::fish_protocols::msg_item* add_rewardlist();
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::msg_item >&
- rewardlist() const;
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::msg_item >*
- mutable_rewardlist();
- // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_southsea_treasurehunt_lottery_result)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_result();
- inline void clear_has_result();
- inline void set_has_roomid();
- inline void clear_has_roomid();
- inline void set_has_enterway();
- inline void clear_has_enterway();
- inline void set_has_rewardid();
- inline void clear_has_rewardid();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 result_;
- ::google::protobuf::int32 roomid_;
- ::google::protobuf::int32 enterway_;
- ::google::protobuf::RepeatedPtrField< ::fish_protocols::msg_item > rewardlist_;
- ::google::protobuf::int32 rewardid_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(6 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_AssignDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_ShutdownFile_fish_5fbombfairyland_2eproto();
- void InitAsDefaultInstance();
- static packetl2c_southsea_treasurehunt_lottery_result* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetc2l_get_southsea_treasurehunt_notice : public ::google::protobuf::Message {
- public:
- packetc2l_get_southsea_treasurehunt_notice();
- virtual ~packetc2l_get_southsea_treasurehunt_notice();
- packetc2l_get_southsea_treasurehunt_notice(const packetc2l_get_southsea_treasurehunt_notice& from);
- inline packetc2l_get_southsea_treasurehunt_notice& operator=(const packetc2l_get_southsea_treasurehunt_notice& 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_southsea_treasurehunt_notice& default_instance();
- void Swap(packetc2l_get_southsea_treasurehunt_notice* other);
- // implements Message ----------------------------------------------
- packetc2l_get_southsea_treasurehunt_notice* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetc2l_get_southsea_treasurehunt_notice& from);
- void MergeFrom(const packetc2l_get_southsea_treasurehunt_notice& 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_southsea_treasurehunt_notice];
- 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 lastId = 2;
- inline bool has_lastid() const;
- inline void clear_lastid();
- static const int kLastIdFieldNumber = 2;
- inline ::google::protobuf::int32 lastid() const;
- inline void set_lastid(::google::protobuf::int32 value);
- // optional int32 roomId = 3;
- inline bool has_roomid() const;
- inline void clear_roomid();
- static const int kRoomIdFieldNumber = 3;
- inline ::google::protobuf::int32 roomid() const;
- inline void set_roomid(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetc2l_get_southsea_treasurehunt_notice)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_lastid();
- inline void clear_has_lastid();
- inline void set_has_roomid();
- inline void clear_has_roomid();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 lastid_;
- ::google::protobuf::int32 roomid_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(3 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_AssignDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_ShutdownFile_fish_5fbombfairyland_2eproto();
- void InitAsDefaultInstance();
- static packetc2l_get_southsea_treasurehunt_notice* default_instance_;
- };
- // -------------------------------------------------------------------
- class MTreasureHuntNoticeInfo : public ::google::protobuf::Message {
- public:
- MTreasureHuntNoticeInfo();
- virtual ~MTreasureHuntNoticeInfo();
- MTreasureHuntNoticeInfo(const MTreasureHuntNoticeInfo& from);
- inline MTreasureHuntNoticeInfo& operator=(const MTreasureHuntNoticeInfo& 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 MTreasureHuntNoticeInfo& default_instance();
- void Swap(MTreasureHuntNoticeInfo* other);
- // implements Message ----------------------------------------------
- MTreasureHuntNoticeInfo* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const MTreasureHuntNoticeInfo& from);
- void MergeFrom(const MTreasureHuntNoticeInfo& 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 string nickName = 1;
- inline bool has_nickname() const;
- inline void clear_nickname();
- static const int kNickNameFieldNumber = 1;
- 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 itemId = 2;
- inline bool has_itemid() const;
- inline void clear_itemid();
- static const int kItemIdFieldNumber = 2;
- inline ::google::protobuf::int32 itemid() const;
- inline void set_itemid(::google::protobuf::int32 value);
- // optional int32 count = 3;
- inline bool has_count() const;
- inline void clear_count();
- static const int kCountFieldNumber = 3;
- inline ::google::protobuf::int32 count() const;
- inline void set_count(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.MTreasureHuntNoticeInfo)
- private:
- inline void set_has_nickname();
- inline void clear_has_nickname();
- inline void set_has_itemid();
- inline void clear_has_itemid();
- inline void set_has_count();
- inline void clear_has_count();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- ::std::string* nickname_;
- ::google::protobuf::int32 itemid_;
- ::google::protobuf::int32 count_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(3 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_AssignDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_ShutdownFile_fish_5fbombfairyland_2eproto();
- void InitAsDefaultInstance();
- static MTreasureHuntNoticeInfo* default_instance_;
- };
- // -------------------------------------------------------------------
- class packetl2c_get_southsea_treasurehunt_notice_result : public ::google::protobuf::Message {
- public:
- packetl2c_get_southsea_treasurehunt_notice_result();
- virtual ~packetl2c_get_southsea_treasurehunt_notice_result();
- packetl2c_get_southsea_treasurehunt_notice_result(const packetl2c_get_southsea_treasurehunt_notice_result& from);
- inline packetl2c_get_southsea_treasurehunt_notice_result& operator=(const packetl2c_get_southsea_treasurehunt_notice_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_southsea_treasurehunt_notice_result& default_instance();
- void Swap(packetl2c_get_southsea_treasurehunt_notice_result* other);
- // implements Message ----------------------------------------------
- packetl2c_get_southsea_treasurehunt_notice_result* New() const;
- void CopyFrom(const ::google::protobuf::Message& from);
- void MergeFrom(const ::google::protobuf::Message& from);
- void CopyFrom(const packetl2c_get_southsea_treasurehunt_notice_result& from);
- void MergeFrom(const packetl2c_get_southsea_treasurehunt_notice_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_southsea_treasurehunt_notice_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 lastId = 2;
- inline bool has_lastid() const;
- inline void clear_lastid();
- static const int kLastIdFieldNumber = 2;
- inline ::google::protobuf::int32 lastid() const;
- inline void set_lastid(::google::protobuf::int32 value);
- // repeated .fish_protocols.MTreasureHuntNoticeInfo noticeList = 3;
- inline int noticelist_size() const;
- inline void clear_noticelist();
- static const int kNoticeListFieldNumber = 3;
- inline const ::fish_protocols::MTreasureHuntNoticeInfo& noticelist(int index) const;
- inline ::fish_protocols::MTreasureHuntNoticeInfo* mutable_noticelist(int index);
- inline ::fish_protocols::MTreasureHuntNoticeInfo* add_noticelist();
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::MTreasureHuntNoticeInfo >&
- noticelist() const;
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::MTreasureHuntNoticeInfo >*
- mutable_noticelist();
- // optional int32 roomId = 4;
- inline bool has_roomid() const;
- inline void clear_roomid();
- static const int kRoomIdFieldNumber = 4;
- inline ::google::protobuf::int32 roomid() const;
- inline void set_roomid(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:fish_protocols.packetl2c_get_southsea_treasurehunt_notice_result)
- private:
- inline void set_has_packet_id();
- inline void clear_has_packet_id();
- inline void set_has_lastid();
- inline void clear_has_lastid();
- inline void set_has_roomid();
- inline void clear_has_roomid();
- ::google::protobuf::UnknownFieldSet _unknown_fields_;
- int packet_id_;
- ::google::protobuf::int32 lastid_;
- ::google::protobuf::RepeatedPtrField< ::fish_protocols::MTreasureHuntNoticeInfo > noticelist_;
- ::google::protobuf::int32 roomid_;
- mutable int _cached_size_;
- ::google::protobuf::uint32 _has_bits_[(4 + 31) / 32];
- friend void protobuf_AddDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_AssignDesc_fish_5fbombfairyland_2eproto();
- friend void protobuf_ShutdownFile_fish_5fbombfairyland_2eproto();
- void InitAsDefaultInstance();
- static packetl2c_get_southsea_treasurehunt_notice_result* default_instance_;
- };
- // ===================================================================
- // ===================================================================
- // packetc2l_enter_southsea_treasurehunt
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_enter_southsea_treasurehunt];
- inline bool packetc2l_enter_southsea_treasurehunt::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetc2l_enter_southsea_treasurehunt::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetc2l_enter_southsea_treasurehunt::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetc2l_enter_southsea_treasurehunt::clear_packet_id() {
- packet_id_ = 10176;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetc2l_enter_southsea_treasurehunt::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetc2l_enter_southsea_treasurehunt::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_enter_southsea_treasurehunt_result
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_enter_southsea_treasurehunt_result];
- inline bool packetl2c_enter_southsea_treasurehunt_result::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetl2c_enter_southsea_treasurehunt_result::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetl2c_enter_southsea_treasurehunt_result::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetl2c_enter_southsea_treasurehunt_result::clear_packet_id() {
- packet_id_ = 16169;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetl2c_enter_southsea_treasurehunt_result::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetl2c_enter_southsea_treasurehunt_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 sendCopperCount = 2;
- inline bool packetl2c_enter_southsea_treasurehunt_result::has_sendcoppercount() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetl2c_enter_southsea_treasurehunt_result::set_has_sendcoppercount() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetl2c_enter_southsea_treasurehunt_result::clear_has_sendcoppercount() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetl2c_enter_southsea_treasurehunt_result::clear_sendcoppercount() {
- sendcoppercount_ = 0;
- clear_has_sendcoppercount();
- }
- inline ::google::protobuf::int32 packetl2c_enter_southsea_treasurehunt_result::sendcoppercount() const {
- return sendcoppercount_;
- }
- inline void packetl2c_enter_southsea_treasurehunt_result::set_sendcoppercount(::google::protobuf::int32 value) {
- set_has_sendcoppercount();
- sendcoppercount_ = value;
- }
- // optional int32 result = 3;
- inline bool packetl2c_enter_southsea_treasurehunt_result::has_result() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void packetl2c_enter_southsea_treasurehunt_result::set_has_result() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void packetl2c_enter_southsea_treasurehunt_result::clear_has_result() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void packetl2c_enter_southsea_treasurehunt_result::clear_result() {
- result_ = 0;
- clear_has_result();
- }
- inline ::google::protobuf::int32 packetl2c_enter_southsea_treasurehunt_result::result() const {
- return result_;
- }
- inline void packetl2c_enter_southsea_treasurehunt_result::set_result(::google::protobuf::int32 value) {
- set_has_result();
- result_ = value;
- }
- // -------------------------------------------------------------------
- // packetc2l_southsea_treasurehunt_get_info
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_southsea_treasurehunt_get_info];
- inline bool packetc2l_southsea_treasurehunt_get_info::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetc2l_southsea_treasurehunt_get_info::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetc2l_southsea_treasurehunt_get_info::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetc2l_southsea_treasurehunt_get_info::clear_packet_id() {
- packet_id_ = 10173;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetc2l_southsea_treasurehunt_get_info::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetc2l_southsea_treasurehunt_get_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;
- }
- // -------------------------------------------------------------------
- // STRoomstate
- // optional int32 roomId = 1;
- inline bool STRoomstate::has_roomid() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void STRoomstate::set_has_roomid() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void STRoomstate::clear_has_roomid() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void STRoomstate::clear_roomid() {
- roomid_ = 0;
- clear_has_roomid();
- }
- inline ::google::protobuf::int32 STRoomstate::roomid() const {
- return roomid_;
- }
- inline void STRoomstate::set_roomid(::google::protobuf::int32 value) {
- set_has_roomid();
- roomid_ = value;
- }
- // optional int32 state = 2;
- inline bool STRoomstate::has_state() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void STRoomstate::set_has_state() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void STRoomstate::clear_has_state() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void STRoomstate::clear_state() {
- state_ = 0;
- clear_has_state();
- }
- inline ::google::protobuf::int32 STRoomstate::state() const {
- return state_;
- }
- inline void STRoomstate::set_state(::google::protobuf::int32 value) {
- set_has_state();
- state_ = value;
- }
- // -------------------------------------------------------------------
- // packetl2c_southsea_treasurehunt_get_info_result
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_southsea_treasurehunt_get_info_result];
- inline bool packetl2c_southsea_treasurehunt_get_info_result::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetl2c_southsea_treasurehunt_get_info_result::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetl2c_southsea_treasurehunt_get_info_result::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetl2c_southsea_treasurehunt_get_info_result::clear_packet_id() {
- packet_id_ = 16166;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetl2c_southsea_treasurehunt_get_info_result::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetl2c_southsea_treasurehunt_get_info_result::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // repeated .fish_protocols.STRoomstate roomList = 2;
- inline int packetl2c_southsea_treasurehunt_get_info_result::roomlist_size() const {
- return roomlist_.size();
- }
- inline void packetl2c_southsea_treasurehunt_get_info_result::clear_roomlist() {
- roomlist_.Clear();
- }
- inline const ::fish_protocols::STRoomstate& packetl2c_southsea_treasurehunt_get_info_result::roomlist(int index) const {
- return roomlist_.Get(index);
- }
- inline ::fish_protocols::STRoomstate* packetl2c_southsea_treasurehunt_get_info_result::mutable_roomlist(int index) {
- return roomlist_.Mutable(index);
- }
- inline ::fish_protocols::STRoomstate* packetl2c_southsea_treasurehunt_get_info_result::add_roomlist() {
- return roomlist_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::STRoomstate >&
- packetl2c_southsea_treasurehunt_get_info_result::roomlist() const {
- return roomlist_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::STRoomstate >*
- packetl2c_southsea_treasurehunt_get_info_result::mutable_roomlist() {
- return &roomlist_;
- }
- // -------------------------------------------------------------------
- // packetc2l_southsea_treasurehunt_enter
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_southsea_treasurehunt_enter];
- inline bool packetc2l_southsea_treasurehunt_enter::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetc2l_southsea_treasurehunt_enter::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetc2l_southsea_treasurehunt_enter::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetc2l_southsea_treasurehunt_enter::clear_packet_id() {
- packet_id_ = 10174;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetc2l_southsea_treasurehunt_enter::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetc2l_southsea_treasurehunt_enter::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 roomId = 2;
- inline bool packetc2l_southsea_treasurehunt_enter::has_roomid() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetc2l_southsea_treasurehunt_enter::set_has_roomid() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetc2l_southsea_treasurehunt_enter::clear_has_roomid() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetc2l_southsea_treasurehunt_enter::clear_roomid() {
- roomid_ = 0;
- clear_has_roomid();
- }
- inline ::google::protobuf::int32 packetc2l_southsea_treasurehunt_enter::roomid() const {
- return roomid_;
- }
- inline void packetc2l_southsea_treasurehunt_enter::set_roomid(::google::protobuf::int32 value) {
- set_has_roomid();
- roomid_ = value;
- }
- // optional int32 enterWay = 3;
- inline bool packetc2l_southsea_treasurehunt_enter::has_enterway() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void packetc2l_southsea_treasurehunt_enter::set_has_enterway() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void packetc2l_southsea_treasurehunt_enter::clear_has_enterway() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void packetc2l_southsea_treasurehunt_enter::clear_enterway() {
- enterway_ = 0;
- clear_has_enterway();
- }
- inline ::google::protobuf::int32 packetc2l_southsea_treasurehunt_enter::enterway() const {
- return enterway_;
- }
- inline void packetc2l_southsea_treasurehunt_enter::set_enterway(::google::protobuf::int32 value) {
- set_has_enterway();
- enterway_ = value;
- }
- // -------------------------------------------------------------------
- // packetl2c_southsea_treasurehunt_enter_result
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_southsea_treasurehunt_enter_result];
- inline bool packetl2c_southsea_treasurehunt_enter_result::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetl2c_southsea_treasurehunt_enter_result::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetl2c_southsea_treasurehunt_enter_result::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetl2c_southsea_treasurehunt_enter_result::clear_packet_id() {
- packet_id_ = 16167;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetl2c_southsea_treasurehunt_enter_result::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetl2c_southsea_treasurehunt_enter_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_southsea_treasurehunt_enter_result::has_result() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetl2c_southsea_treasurehunt_enter_result::set_has_result() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetl2c_southsea_treasurehunt_enter_result::clear_has_result() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetl2c_southsea_treasurehunt_enter_result::clear_result() {
- result_ = 0;
- clear_has_result();
- }
- inline ::google::protobuf::int32 packetl2c_southsea_treasurehunt_enter_result::result() const {
- return result_;
- }
- inline void packetl2c_southsea_treasurehunt_enter_result::set_result(::google::protobuf::int32 value) {
- set_has_result();
- result_ = value;
- }
- // optional int32 roomId = 3;
- inline bool packetl2c_southsea_treasurehunt_enter_result::has_roomid() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void packetl2c_southsea_treasurehunt_enter_result::set_has_roomid() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void packetl2c_southsea_treasurehunt_enter_result::clear_has_roomid() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void packetl2c_southsea_treasurehunt_enter_result::clear_roomid() {
- roomid_ = 0;
- clear_has_roomid();
- }
- inline ::google::protobuf::int32 packetl2c_southsea_treasurehunt_enter_result::roomid() const {
- return roomid_;
- }
- inline void packetl2c_southsea_treasurehunt_enter_result::set_roomid(::google::protobuf::int32 value) {
- set_has_roomid();
- roomid_ = value;
- }
- // optional int32 enterWay = 4;
- inline bool packetl2c_southsea_treasurehunt_enter_result::has_enterway() const {
- return (_has_bits_[0] & 0x00000008u) != 0;
- }
- inline void packetl2c_southsea_treasurehunt_enter_result::set_has_enterway() {
- _has_bits_[0] |= 0x00000008u;
- }
- inline void packetl2c_southsea_treasurehunt_enter_result::clear_has_enterway() {
- _has_bits_[0] &= ~0x00000008u;
- }
- inline void packetl2c_southsea_treasurehunt_enter_result::clear_enterway() {
- enterway_ = 0;
- clear_has_enterway();
- }
- inline ::google::protobuf::int32 packetl2c_southsea_treasurehunt_enter_result::enterway() const {
- return enterway_;
- }
- inline void packetl2c_southsea_treasurehunt_enter_result::set_enterway(::google::protobuf::int32 value) {
- set_has_enterway();
- enterway_ = value;
- }
- // -------------------------------------------------------------------
- // packetc2l_southsea_treasurehunt_lottery
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_southsea_treasurehunt_lottery];
- inline bool packetc2l_southsea_treasurehunt_lottery::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetc2l_southsea_treasurehunt_lottery::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetc2l_southsea_treasurehunt_lottery::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetc2l_southsea_treasurehunt_lottery::clear_packet_id() {
- packet_id_ = 10172;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetc2l_southsea_treasurehunt_lottery::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetc2l_southsea_treasurehunt_lottery::set_packet_id(::fish_protocols::e_server_msg_type value) {
- assert(::fish_protocols::e_server_msg_type_IsValid(value));
- set_has_packet_id();
- packet_id_ = value;
- }
- // optional int32 roomId = 2;
- inline bool packetc2l_southsea_treasurehunt_lottery::has_roomid() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetc2l_southsea_treasurehunt_lottery::set_has_roomid() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetc2l_southsea_treasurehunt_lottery::clear_has_roomid() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetc2l_southsea_treasurehunt_lottery::clear_roomid() {
- roomid_ = 0;
- clear_has_roomid();
- }
- inline ::google::protobuf::int32 packetc2l_southsea_treasurehunt_lottery::roomid() const {
- return roomid_;
- }
- inline void packetc2l_southsea_treasurehunt_lottery::set_roomid(::google::protobuf::int32 value) {
- set_has_roomid();
- roomid_ = value;
- }
- // optional int32 enterWay = 3;
- inline bool packetc2l_southsea_treasurehunt_lottery::has_enterway() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void packetc2l_southsea_treasurehunt_lottery::set_has_enterway() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void packetc2l_southsea_treasurehunt_lottery::clear_has_enterway() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void packetc2l_southsea_treasurehunt_lottery::clear_enterway() {
- enterway_ = 0;
- clear_has_enterway();
- }
- inline ::google::protobuf::int32 packetc2l_southsea_treasurehunt_lottery::enterway() const {
- return enterway_;
- }
- inline void packetc2l_southsea_treasurehunt_lottery::set_enterway(::google::protobuf::int32 value) {
- set_has_enterway();
- enterway_ = value;
- }
- // -------------------------------------------------------------------
- // packetl2c_southsea_treasurehunt_lottery_result
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_southsea_treasurehunt_lottery_result];
- inline bool packetl2c_southsea_treasurehunt_lottery_result::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetl2c_southsea_treasurehunt_lottery_result::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetl2c_southsea_treasurehunt_lottery_result::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetl2c_southsea_treasurehunt_lottery_result::clear_packet_id() {
- packet_id_ = 16165;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetl2c_southsea_treasurehunt_lottery_result::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetl2c_southsea_treasurehunt_lottery_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_southsea_treasurehunt_lottery_result::has_result() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetl2c_southsea_treasurehunt_lottery_result::set_has_result() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetl2c_southsea_treasurehunt_lottery_result::clear_has_result() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetl2c_southsea_treasurehunt_lottery_result::clear_result() {
- result_ = 0;
- clear_has_result();
- }
- inline ::google::protobuf::int32 packetl2c_southsea_treasurehunt_lottery_result::result() const {
- return result_;
- }
- inline void packetl2c_southsea_treasurehunt_lottery_result::set_result(::google::protobuf::int32 value) {
- set_has_result();
- result_ = value;
- }
- // optional int32 roomId = 3;
- inline bool packetl2c_southsea_treasurehunt_lottery_result::has_roomid() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void packetl2c_southsea_treasurehunt_lottery_result::set_has_roomid() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void packetl2c_southsea_treasurehunt_lottery_result::clear_has_roomid() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void packetl2c_southsea_treasurehunt_lottery_result::clear_roomid() {
- roomid_ = 0;
- clear_has_roomid();
- }
- inline ::google::protobuf::int32 packetl2c_southsea_treasurehunt_lottery_result::roomid() const {
- return roomid_;
- }
- inline void packetl2c_southsea_treasurehunt_lottery_result::set_roomid(::google::protobuf::int32 value) {
- set_has_roomid();
- roomid_ = value;
- }
- // optional int32 enterWay = 4;
- inline bool packetl2c_southsea_treasurehunt_lottery_result::has_enterway() const {
- return (_has_bits_[0] & 0x00000008u) != 0;
- }
- inline void packetl2c_southsea_treasurehunt_lottery_result::set_has_enterway() {
- _has_bits_[0] |= 0x00000008u;
- }
- inline void packetl2c_southsea_treasurehunt_lottery_result::clear_has_enterway() {
- _has_bits_[0] &= ~0x00000008u;
- }
- inline void packetl2c_southsea_treasurehunt_lottery_result::clear_enterway() {
- enterway_ = 0;
- clear_has_enterway();
- }
- inline ::google::protobuf::int32 packetl2c_southsea_treasurehunt_lottery_result::enterway() const {
- return enterway_;
- }
- inline void packetl2c_southsea_treasurehunt_lottery_result::set_enterway(::google::protobuf::int32 value) {
- set_has_enterway();
- enterway_ = value;
- }
- // optional int32 rewardId = 5;
- inline bool packetl2c_southsea_treasurehunt_lottery_result::has_rewardid() const {
- return (_has_bits_[0] & 0x00000010u) != 0;
- }
- inline void packetl2c_southsea_treasurehunt_lottery_result::set_has_rewardid() {
- _has_bits_[0] |= 0x00000010u;
- }
- inline void packetl2c_southsea_treasurehunt_lottery_result::clear_has_rewardid() {
- _has_bits_[0] &= ~0x00000010u;
- }
- inline void packetl2c_southsea_treasurehunt_lottery_result::clear_rewardid() {
- rewardid_ = 0;
- clear_has_rewardid();
- }
- inline ::google::protobuf::int32 packetl2c_southsea_treasurehunt_lottery_result::rewardid() const {
- return rewardid_;
- }
- inline void packetl2c_southsea_treasurehunt_lottery_result::set_rewardid(::google::protobuf::int32 value) {
- set_has_rewardid();
- rewardid_ = value;
- }
- // repeated .fish_protocols.msg_item rewardList = 6;
- inline int packetl2c_southsea_treasurehunt_lottery_result::rewardlist_size() const {
- return rewardlist_.size();
- }
- inline void packetl2c_southsea_treasurehunt_lottery_result::clear_rewardlist() {
- rewardlist_.Clear();
- }
- inline const ::fish_protocols::msg_item& packetl2c_southsea_treasurehunt_lottery_result::rewardlist(int index) const {
- return rewardlist_.Get(index);
- }
- inline ::fish_protocols::msg_item* packetl2c_southsea_treasurehunt_lottery_result::mutable_rewardlist(int index) {
- return rewardlist_.Mutable(index);
- }
- inline ::fish_protocols::msg_item* packetl2c_southsea_treasurehunt_lottery_result::add_rewardlist() {
- return rewardlist_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::msg_item >&
- packetl2c_southsea_treasurehunt_lottery_result::rewardlist() const {
- return rewardlist_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::msg_item >*
- packetl2c_southsea_treasurehunt_lottery_result::mutable_rewardlist() {
- return &rewardlist_;
- }
- // -------------------------------------------------------------------
- // packetc2l_get_southsea_treasurehunt_notice
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_get_southsea_treasurehunt_notice];
- inline bool packetc2l_get_southsea_treasurehunt_notice::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetc2l_get_southsea_treasurehunt_notice::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetc2l_get_southsea_treasurehunt_notice::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetc2l_get_southsea_treasurehunt_notice::clear_packet_id() {
- packet_id_ = 10175;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetc2l_get_southsea_treasurehunt_notice::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetc2l_get_southsea_treasurehunt_notice::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 lastId = 2;
- inline bool packetc2l_get_southsea_treasurehunt_notice::has_lastid() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetc2l_get_southsea_treasurehunt_notice::set_has_lastid() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetc2l_get_southsea_treasurehunt_notice::clear_has_lastid() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetc2l_get_southsea_treasurehunt_notice::clear_lastid() {
- lastid_ = 0;
- clear_has_lastid();
- }
- inline ::google::protobuf::int32 packetc2l_get_southsea_treasurehunt_notice::lastid() const {
- return lastid_;
- }
- inline void packetc2l_get_southsea_treasurehunt_notice::set_lastid(::google::protobuf::int32 value) {
- set_has_lastid();
- lastid_ = value;
- }
- // optional int32 roomId = 3;
- inline bool packetc2l_get_southsea_treasurehunt_notice::has_roomid() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void packetc2l_get_southsea_treasurehunt_notice::set_has_roomid() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void packetc2l_get_southsea_treasurehunt_notice::clear_has_roomid() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void packetc2l_get_southsea_treasurehunt_notice::clear_roomid() {
- roomid_ = 0;
- clear_has_roomid();
- }
- inline ::google::protobuf::int32 packetc2l_get_southsea_treasurehunt_notice::roomid() const {
- return roomid_;
- }
- inline void packetc2l_get_southsea_treasurehunt_notice::set_roomid(::google::protobuf::int32 value) {
- set_has_roomid();
- roomid_ = value;
- }
- // -------------------------------------------------------------------
- // MTreasureHuntNoticeInfo
- // optional string nickName = 1;
- inline bool MTreasureHuntNoticeInfo::has_nickname() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void MTreasureHuntNoticeInfo::set_has_nickname() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void MTreasureHuntNoticeInfo::clear_has_nickname() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void MTreasureHuntNoticeInfo::clear_nickname() {
- if (nickname_ != &::google::protobuf::internal::kEmptyString) {
- nickname_->clear();
- }
- clear_has_nickname();
- }
- inline const ::std::string& MTreasureHuntNoticeInfo::nickname() const {
- return *nickname_;
- }
- inline void MTreasureHuntNoticeInfo::set_nickname(const ::std::string& value) {
- set_has_nickname();
- if (nickname_ == &::google::protobuf::internal::kEmptyString) {
- nickname_ = new ::std::string;
- }
- nickname_->assign(value);
- }
- inline void MTreasureHuntNoticeInfo::set_nickname(const char* value) {
- set_has_nickname();
- if (nickname_ == &::google::protobuf::internal::kEmptyString) {
- nickname_ = new ::std::string;
- }
- nickname_->assign(value);
- }
- inline void MTreasureHuntNoticeInfo::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* MTreasureHuntNoticeInfo::mutable_nickname() {
- set_has_nickname();
- if (nickname_ == &::google::protobuf::internal::kEmptyString) {
- nickname_ = new ::std::string;
- }
- return nickname_;
- }
- inline ::std::string* MTreasureHuntNoticeInfo::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 MTreasureHuntNoticeInfo::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 itemId = 2;
- inline bool MTreasureHuntNoticeInfo::has_itemid() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void MTreasureHuntNoticeInfo::set_has_itemid() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void MTreasureHuntNoticeInfo::clear_has_itemid() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void MTreasureHuntNoticeInfo::clear_itemid() {
- itemid_ = 0;
- clear_has_itemid();
- }
- inline ::google::protobuf::int32 MTreasureHuntNoticeInfo::itemid() const {
- return itemid_;
- }
- inline void MTreasureHuntNoticeInfo::set_itemid(::google::protobuf::int32 value) {
- set_has_itemid();
- itemid_ = value;
- }
- // optional int32 count = 3;
- inline bool MTreasureHuntNoticeInfo::has_count() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void MTreasureHuntNoticeInfo::set_has_count() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void MTreasureHuntNoticeInfo::clear_has_count() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void MTreasureHuntNoticeInfo::clear_count() {
- count_ = 0;
- clear_has_count();
- }
- inline ::google::protobuf::int32 MTreasureHuntNoticeInfo::count() const {
- return count_;
- }
- inline void MTreasureHuntNoticeInfo::set_count(::google::protobuf::int32 value) {
- set_has_count();
- count_ = value;
- }
- // -------------------------------------------------------------------
- // packetl2c_get_southsea_treasurehunt_notice_result
- // optional .fish_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_get_southsea_treasurehunt_notice_result];
- inline bool packetl2c_get_southsea_treasurehunt_notice_result::has_packet_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void packetl2c_get_southsea_treasurehunt_notice_result::set_has_packet_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void packetl2c_get_southsea_treasurehunt_notice_result::clear_has_packet_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void packetl2c_get_southsea_treasurehunt_notice_result::clear_packet_id() {
- packet_id_ = 16168;
- clear_has_packet_id();
- }
- inline ::fish_protocols::e_server_msg_type packetl2c_get_southsea_treasurehunt_notice_result::packet_id() const {
- return static_cast< ::fish_protocols::e_server_msg_type >(packet_id_);
- }
- inline void packetl2c_get_southsea_treasurehunt_notice_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 lastId = 2;
- inline bool packetl2c_get_southsea_treasurehunt_notice_result::has_lastid() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void packetl2c_get_southsea_treasurehunt_notice_result::set_has_lastid() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void packetl2c_get_southsea_treasurehunt_notice_result::clear_has_lastid() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void packetl2c_get_southsea_treasurehunt_notice_result::clear_lastid() {
- lastid_ = 0;
- clear_has_lastid();
- }
- inline ::google::protobuf::int32 packetl2c_get_southsea_treasurehunt_notice_result::lastid() const {
- return lastid_;
- }
- inline void packetl2c_get_southsea_treasurehunt_notice_result::set_lastid(::google::protobuf::int32 value) {
- set_has_lastid();
- lastid_ = value;
- }
- // repeated .fish_protocols.MTreasureHuntNoticeInfo noticeList = 3;
- inline int packetl2c_get_southsea_treasurehunt_notice_result::noticelist_size() const {
- return noticelist_.size();
- }
- inline void packetl2c_get_southsea_treasurehunt_notice_result::clear_noticelist() {
- noticelist_.Clear();
- }
- inline const ::fish_protocols::MTreasureHuntNoticeInfo& packetl2c_get_southsea_treasurehunt_notice_result::noticelist(int index) const {
- return noticelist_.Get(index);
- }
- inline ::fish_protocols::MTreasureHuntNoticeInfo* packetl2c_get_southsea_treasurehunt_notice_result::mutable_noticelist(int index) {
- return noticelist_.Mutable(index);
- }
- inline ::fish_protocols::MTreasureHuntNoticeInfo* packetl2c_get_southsea_treasurehunt_notice_result::add_noticelist() {
- return noticelist_.Add();
- }
- inline const ::google::protobuf::RepeatedPtrField< ::fish_protocols::MTreasureHuntNoticeInfo >&
- packetl2c_get_southsea_treasurehunt_notice_result::noticelist() const {
- return noticelist_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::fish_protocols::MTreasureHuntNoticeInfo >*
- packetl2c_get_southsea_treasurehunt_notice_result::mutable_noticelist() {
- return ¬icelist_;
- }
- // optional int32 roomId = 4;
- inline bool packetl2c_get_southsea_treasurehunt_notice_result::has_roomid() const {
- return (_has_bits_[0] & 0x00000008u) != 0;
- }
- inline void packetl2c_get_southsea_treasurehunt_notice_result::set_has_roomid() {
- _has_bits_[0] |= 0x00000008u;
- }
- inline void packetl2c_get_southsea_treasurehunt_notice_result::clear_has_roomid() {
- _has_bits_[0] &= ~0x00000008u;
- }
- inline void packetl2c_get_southsea_treasurehunt_notice_result::clear_roomid() {
- roomid_ = 0;
- clear_has_roomid();
- }
- inline ::google::protobuf::int32 packetl2c_get_southsea_treasurehunt_notice_result::roomid() const {
- return roomid_;
- }
- inline void packetl2c_get_southsea_treasurehunt_notice_result::set_roomid(::google::protobuf::int32 value) {
- set_has_roomid();
- roomid_ = value;
- }
- // @@protoc_insertion_point(namespace_scope)
- } // namespace fish_protocols
- #ifndef SWIG
- namespace google {
- namespace protobuf {
- } // namespace google
- } // namespace protobuf
- #endif // SWIG
- // @@protoc_insertion_point(global_scope)
- #endif // PROTOBUF_fish_5fbombfairyland_2eproto__INCLUDED
|