|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893 |
- // Generated by the protocol buffer compiler. DO NOT EDIT!
- // source: Message2Server.proto
-
- #ifndef GOOGLE_PROTOBUF_INCLUDED_Message2Server_2eproto
- #define GOOGLE_PROTOBUF_INCLUDED_Message2Server_2eproto
-
- #include <limits>
- #include <string>
-
- #include <google/protobuf/port_def.inc>
- #if PROTOBUF_VERSION < 3021000
- #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 3021009 < 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/port_undef.inc>
- #include <google/protobuf/io/coded_stream.h>
- #include <google/protobuf/arena.h>
- #include <google/protobuf/arenastring.h>
- #include <google/protobuf/generated_message_util.h>
- #include <google/protobuf/metadata_lite.h>
- #include <google/protobuf/generated_message_reflection.h>
- #include <google/protobuf/message.h>
- #include <google/protobuf/repeated_field.h> // IWYU pragma: export
- #include <google/protobuf/extension_set.h> // IWYU pragma: export
- #include <google/protobuf/unknown_field_set.h>
- #include "MessageType.pb.h"
- // @@protoc_insertion_point(includes)
- #include <google/protobuf/port_def.inc>
- #define PROTOBUF_INTERNAL_EXPORT_Message2Server_2eproto
- PROTOBUF_NAMESPACE_OPEN
- namespace internal
- {
- class AnyMetadata;
- } // namespace internal
- PROTOBUF_NAMESPACE_CLOSE
-
- // Internal implementation detail -- do not use these members.
- struct TableStruct_Message2Server_2eproto
- {
- static const uint32_t offsets[];
- };
- extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_Message2Server_2eproto;
- namespace protobuf
- {
- class AttackMsg;
- struct AttackMsgDefaultTypeInternal;
- extern AttackMsgDefaultTypeInternal _AttackMsg_default_instance_;
- class IDMsg;
- struct IDMsgDefaultTypeInternal;
- extern IDMsgDefaultTypeInternal _IDMsg_default_instance_;
- class MoveMsg;
- struct MoveMsgDefaultTypeInternal;
- extern MoveMsgDefaultTypeInternal _MoveMsg_default_instance_;
- class PickMsg;
- struct PickMsgDefaultTypeInternal;
- extern PickMsgDefaultTypeInternal _PickMsg_default_instance_;
- class PlayerMsg;
- struct PlayerMsgDefaultTypeInternal;
- extern PlayerMsgDefaultTypeInternal _PlayerMsg_default_instance_;
- class SendMsg;
- struct SendMsgDefaultTypeInternal;
- extern SendMsgDefaultTypeInternal _SendMsg_default_instance_;
- } // namespace protobuf
- PROTOBUF_NAMESPACE_OPEN
- template<>
- ::protobuf::AttackMsg* Arena::CreateMaybeMessage<::protobuf::AttackMsg>(Arena*);
- template<>
- ::protobuf::IDMsg* Arena::CreateMaybeMessage<::protobuf::IDMsg>(Arena*);
- template<>
- ::protobuf::MoveMsg* Arena::CreateMaybeMessage<::protobuf::MoveMsg>(Arena*);
- template<>
- ::protobuf::PickMsg* Arena::CreateMaybeMessage<::protobuf::PickMsg>(Arena*);
- template<>
- ::protobuf::PlayerMsg* Arena::CreateMaybeMessage<::protobuf::PlayerMsg>(Arena*);
- template<>
- ::protobuf::SendMsg* Arena::CreateMaybeMessage<::protobuf::SendMsg>(Arena*);
- PROTOBUF_NAMESPACE_CLOSE
- namespace protobuf
- {
-
- // ===================================================================
-
- class PlayerMsg final :
- public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:protobuf.PlayerMsg) */
- {
- public:
- inline PlayerMsg() :
- PlayerMsg(nullptr)
- {
- }
- ~PlayerMsg() override;
- explicit PROTOBUF_CONSTEXPR PlayerMsg(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
-
- PlayerMsg(const PlayerMsg& from);
- PlayerMsg(PlayerMsg&& from) noexcept
- :
- PlayerMsg()
- {
- *this = ::std::move(from);
- }
-
- inline PlayerMsg& operator=(const PlayerMsg& from)
- {
- CopyFrom(from);
- return *this;
- }
- inline PlayerMsg& operator=(PlayerMsg&& from) noexcept
- {
- if (this == &from)
- return *this;
- if (GetOwningArena() == from.GetOwningArena()
- #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
- && GetOwningArena() != nullptr
- #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
- )
- {
- InternalSwap(&from);
- }
- else
- {
- CopyFrom(from);
- }
- return *this;
- }
-
- static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor()
- {
- return GetDescriptor();
- }
- static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor()
- {
- return default_instance().GetMetadata().descriptor;
- }
- static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection()
- {
- return default_instance().GetMetadata().reflection;
- }
- static const PlayerMsg& default_instance()
- {
- return *internal_default_instance();
- }
- enum JobTypeCase
- {
- kHumanType = 3,
- kButcherType = 4,
- JOB_TYPE_NOT_SET = 0,
- };
-
- static inline const PlayerMsg* internal_default_instance()
- {
- return reinterpret_cast<const PlayerMsg*>(
- &_PlayerMsg_default_instance_
- );
- }
- static constexpr int kIndexInFileMessages =
- 0;
-
- friend void swap(PlayerMsg& a, PlayerMsg& b)
- {
- a.Swap(&b);
- }
- inline void Swap(PlayerMsg* other)
- {
- if (other == this)
- return;
- #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() != nullptr &&
- GetOwningArena() == other->GetOwningArena())
- {
- #else // PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() == other->GetOwningArena())
- {
- #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
- InternalSwap(other);
- }
- else
- {
- ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
- }
- }
- void UnsafeArenaSwap(PlayerMsg* other)
- {
- if (other == this)
- return;
- GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
- InternalSwap(other);
- }
-
- // implements Message ----------------------------------------------
-
- PlayerMsg* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final
- {
- return CreateMaybeMessage<PlayerMsg>(arena);
- }
- using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
- void CopyFrom(const PlayerMsg& from);
- using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
- void MergeFrom(const PlayerMsg& from)
- {
- PlayerMsg::MergeImpl(*this, from);
- }
-
- private:
- static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg);
-
- public:
- PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
- bool IsInitialized() const final;
-
- size_t ByteSizeLong() const final;
- const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
- uint8_t* _InternalSerialize(
- uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream
- ) const final;
- int GetCachedSize() const final
- {
- return _impl_._cached_size_.Get();
- }
-
- private:
- void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned);
- void SharedDtor();
- void SetCachedSize(int size) const final;
- void InternalSwap(PlayerMsg* other);
-
- private:
- friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
- static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName()
- {
- return "protobuf.PlayerMsg";
- }
-
- protected:
- explicit PlayerMsg(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false);
-
- public:
- static const ClassData _class_data_;
- const ::PROTOBUF_NAMESPACE_ID::Message::ClassData* GetClassData() const final;
-
- ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
-
- // nested types ----------------------------------------------------
-
- // accessors -------------------------------------------------------
-
- enum : int
- {
- kPlayerIdFieldNumber = 1,
- kPlayerTypeFieldNumber = 2,
- kHumanTypeFieldNumber = 3,
- kButcherTypeFieldNumber = 4,
- };
- // int64 player_id = 1;
- void clear_player_id();
- int64_t player_id() const;
- void set_player_id(int64_t value);
-
- private:
- int64_t _internal_player_id() const;
- void _internal_set_player_id(int64_t value);
-
- public:
- // .protobuf.PlayerType player_type = 2;
- void clear_player_type();
- ::protobuf::PlayerType player_type() const;
- void set_player_type(::protobuf::PlayerType value);
-
- private:
- ::protobuf::PlayerType _internal_player_type() const;
- void _internal_set_player_type(::protobuf::PlayerType value);
-
- public:
- // .protobuf.HumanType human_type = 3;
- bool has_human_type() const;
-
- private:
- bool _internal_has_human_type() const;
-
- public:
- void clear_human_type();
- ::protobuf::HumanType human_type() const;
- void set_human_type(::protobuf::HumanType value);
-
- private:
- ::protobuf::HumanType _internal_human_type() const;
- void _internal_set_human_type(::protobuf::HumanType value);
-
- public:
- // .protobuf.ButcherType butcher_type = 4;
- bool has_butcher_type() const;
-
- private:
- bool _internal_has_butcher_type() const;
-
- public:
- void clear_butcher_type();
- ::protobuf::ButcherType butcher_type() const;
- void set_butcher_type(::protobuf::ButcherType value);
-
- private:
- ::protobuf::ButcherType _internal_butcher_type() const;
- void _internal_set_butcher_type(::protobuf::ButcherType value);
-
- public:
- void clear_job_type();
- JobTypeCase job_type_case() const;
- // @@protoc_insertion_point(class_scope:protobuf.PlayerMsg)
-
- private:
- class _Internal;
- void set_has_human_type();
- void set_has_butcher_type();
-
- inline bool has_job_type() const;
- inline void clear_has_job_type();
-
- template<typename T>
- friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
- typedef void InternalArenaConstructable_;
- typedef void DestructorSkippable_;
- struct Impl_
- {
- int64_t player_id_;
- int player_type_;
- union JobTypeUnion
- {
- constexpr JobTypeUnion() :
- _constinit_{}
- {
- }
- ::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized _constinit_;
- int human_type_;
- int butcher_type_;
- } job_type_;
- mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
- uint32_t _oneof_case_[1];
- };
- union
- {
- Impl_ _impl_;
- };
- friend struct ::TableStruct_Message2Server_2eproto;
- };
- // -------------------------------------------------------------------
-
- class MoveMsg final :
- public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:protobuf.MoveMsg) */
- {
- public:
- inline MoveMsg() :
- MoveMsg(nullptr)
- {
- }
- ~MoveMsg() override;
- explicit PROTOBUF_CONSTEXPR MoveMsg(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
-
- MoveMsg(const MoveMsg& from);
- MoveMsg(MoveMsg&& from) noexcept
- :
- MoveMsg()
- {
- *this = ::std::move(from);
- }
-
- inline MoveMsg& operator=(const MoveMsg& from)
- {
- CopyFrom(from);
- return *this;
- }
- inline MoveMsg& operator=(MoveMsg&& from) noexcept
- {
- if (this == &from)
- return *this;
- if (GetOwningArena() == from.GetOwningArena()
- #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
- && GetOwningArena() != nullptr
- #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
- )
- {
- InternalSwap(&from);
- }
- else
- {
- CopyFrom(from);
- }
- return *this;
- }
-
- static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor()
- {
- return GetDescriptor();
- }
- static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor()
- {
- return default_instance().GetMetadata().descriptor;
- }
- static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection()
- {
- return default_instance().GetMetadata().reflection;
- }
- static const MoveMsg& default_instance()
- {
- return *internal_default_instance();
- }
- static inline const MoveMsg* internal_default_instance()
- {
- return reinterpret_cast<const MoveMsg*>(
- &_MoveMsg_default_instance_
- );
- }
- static constexpr int kIndexInFileMessages =
- 1;
-
- friend void swap(MoveMsg& a, MoveMsg& b)
- {
- a.Swap(&b);
- }
- inline void Swap(MoveMsg* other)
- {
- if (other == this)
- return;
- #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() != nullptr &&
- GetOwningArena() == other->GetOwningArena())
- {
- #else // PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() == other->GetOwningArena())
- {
- #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
- InternalSwap(other);
- }
- else
- {
- ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
- }
- }
- void UnsafeArenaSwap(MoveMsg* other)
- {
- if (other == this)
- return;
- GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
- InternalSwap(other);
- }
-
- // implements Message ----------------------------------------------
-
- MoveMsg* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final
- {
- return CreateMaybeMessage<MoveMsg>(arena);
- }
- using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
- void CopyFrom(const MoveMsg& from);
- using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
- void MergeFrom(const MoveMsg& from)
- {
- MoveMsg::MergeImpl(*this, from);
- }
-
- private:
- static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg);
-
- public:
- PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
- bool IsInitialized() const final;
-
- size_t ByteSizeLong() const final;
- const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
- uint8_t* _InternalSerialize(
- uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream
- ) const final;
- int GetCachedSize() const final
- {
- return _impl_._cached_size_.Get();
- }
-
- private:
- void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned);
- void SharedDtor();
- void SetCachedSize(int size) const final;
- void InternalSwap(MoveMsg* other);
-
- private:
- friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
- static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName()
- {
- return "protobuf.MoveMsg";
- }
-
- protected:
- explicit MoveMsg(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false);
-
- public:
- static const ClassData _class_data_;
- const ::PROTOBUF_NAMESPACE_ID::Message::ClassData* GetClassData() const final;
-
- ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
-
- // nested types ----------------------------------------------------
-
- // accessors -------------------------------------------------------
-
- enum : int
- {
- kPlayerIdFieldNumber = 1,
- kAngleFieldNumber = 2,
- kTimeInMillisecondsFieldNumber = 3,
- };
- // int64 player_id = 1;
- void clear_player_id();
- int64_t player_id() const;
- void set_player_id(int64_t value);
-
- private:
- int64_t _internal_player_id() const;
- void _internal_set_player_id(int64_t value);
-
- public:
- // double angle = 2;
- void clear_angle();
- double angle() const;
- void set_angle(double value);
-
- private:
- double _internal_angle() const;
- void _internal_set_angle(double value);
-
- public:
- // int64 time_in_milliseconds = 3;
- void clear_time_in_milliseconds();
- int64_t time_in_milliseconds() const;
- void set_time_in_milliseconds(int64_t value);
-
- private:
- int64_t _internal_time_in_milliseconds() const;
- void _internal_set_time_in_milliseconds(int64_t value);
-
- public:
- // @@protoc_insertion_point(class_scope:protobuf.MoveMsg)
-
- private:
- class _Internal;
-
- template<typename T>
- friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
- typedef void InternalArenaConstructable_;
- typedef void DestructorSkippable_;
- struct Impl_
- {
- int64_t player_id_;
- double angle_;
- int64_t time_in_milliseconds_;
- mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
- };
- union
- {
- Impl_ _impl_;
- };
- friend struct ::TableStruct_Message2Server_2eproto;
- };
- // -------------------------------------------------------------------
-
- class PickMsg final :
- public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:protobuf.PickMsg) */
- {
- public:
- inline PickMsg() :
- PickMsg(nullptr)
- {
- }
- ~PickMsg() override;
- explicit PROTOBUF_CONSTEXPR PickMsg(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
-
- PickMsg(const PickMsg& from);
- PickMsg(PickMsg&& from) noexcept
- :
- PickMsg()
- {
- *this = ::std::move(from);
- }
-
- inline PickMsg& operator=(const PickMsg& from)
- {
- CopyFrom(from);
- return *this;
- }
- inline PickMsg& operator=(PickMsg&& from) noexcept
- {
- if (this == &from)
- return *this;
- if (GetOwningArena() == from.GetOwningArena()
- #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
- && GetOwningArena() != nullptr
- #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
- )
- {
- InternalSwap(&from);
- }
- else
- {
- CopyFrom(from);
- }
- return *this;
- }
-
- static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor()
- {
- return GetDescriptor();
- }
- static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor()
- {
- return default_instance().GetMetadata().descriptor;
- }
- static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection()
- {
- return default_instance().GetMetadata().reflection;
- }
- static const PickMsg& default_instance()
- {
- return *internal_default_instance();
- }
- static inline const PickMsg* internal_default_instance()
- {
- return reinterpret_cast<const PickMsg*>(
- &_PickMsg_default_instance_
- );
- }
- static constexpr int kIndexInFileMessages =
- 2;
-
- friend void swap(PickMsg& a, PickMsg& b)
- {
- a.Swap(&b);
- }
- inline void Swap(PickMsg* other)
- {
- if (other == this)
- return;
- #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() != nullptr &&
- GetOwningArena() == other->GetOwningArena())
- {
- #else // PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() == other->GetOwningArena())
- {
- #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
- InternalSwap(other);
- }
- else
- {
- ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
- }
- }
- void UnsafeArenaSwap(PickMsg* other)
- {
- if (other == this)
- return;
- GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
- InternalSwap(other);
- }
-
- // implements Message ----------------------------------------------
-
- PickMsg* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final
- {
- return CreateMaybeMessage<PickMsg>(arena);
- }
- using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
- void CopyFrom(const PickMsg& from);
- using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
- void MergeFrom(const PickMsg& from)
- {
- PickMsg::MergeImpl(*this, from);
- }
-
- private:
- static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg);
-
- public:
- PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
- bool IsInitialized() const final;
-
- size_t ByteSizeLong() const final;
- const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
- uint8_t* _InternalSerialize(
- uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream
- ) const final;
- int GetCachedSize() const final
- {
- return _impl_._cached_size_.Get();
- }
-
- private:
- void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned);
- void SharedDtor();
- void SetCachedSize(int size) const final;
- void InternalSwap(PickMsg* other);
-
- private:
- friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
- static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName()
- {
- return "protobuf.PickMsg";
- }
-
- protected:
- explicit PickMsg(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false);
-
- public:
- static const ClassData _class_data_;
- const ::PROTOBUF_NAMESPACE_ID::Message::ClassData* GetClassData() const final;
-
- ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
-
- // nested types ----------------------------------------------------
-
- // accessors -------------------------------------------------------
-
- enum : int
- {
- kPlayerIdFieldNumber = 1,
- kPropTypeFieldNumber = 2,
- };
- // int64 player_id = 1;
- void clear_player_id();
- int64_t player_id() const;
- void set_player_id(int64_t value);
-
- private:
- int64_t _internal_player_id() const;
- void _internal_set_player_id(int64_t value);
-
- public:
- // .protobuf.PropType prop_type = 2;
- void clear_prop_type();
- ::protobuf::PropType prop_type() const;
- void set_prop_type(::protobuf::PropType value);
-
- private:
- ::protobuf::PropType _internal_prop_type() const;
- void _internal_set_prop_type(::protobuf::PropType value);
-
- public:
- // @@protoc_insertion_point(class_scope:protobuf.PickMsg)
-
- private:
- class _Internal;
-
- template<typename T>
- friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
- typedef void InternalArenaConstructable_;
- typedef void DestructorSkippable_;
- struct Impl_
- {
- int64_t player_id_;
- int prop_type_;
- mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
- };
- union
- {
- Impl_ _impl_;
- };
- friend struct ::TableStruct_Message2Server_2eproto;
- };
- // -------------------------------------------------------------------
-
- class SendMsg final :
- public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:protobuf.SendMsg) */
- {
- public:
- inline SendMsg() :
- SendMsg(nullptr)
- {
- }
- ~SendMsg() override;
- explicit PROTOBUF_CONSTEXPR SendMsg(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
-
- SendMsg(const SendMsg& from);
- SendMsg(SendMsg&& from) noexcept
- :
- SendMsg()
- {
- *this = ::std::move(from);
- }
-
- inline SendMsg& operator=(const SendMsg& from)
- {
- CopyFrom(from);
- return *this;
- }
- inline SendMsg& operator=(SendMsg&& from) noexcept
- {
- if (this == &from)
- return *this;
- if (GetOwningArena() == from.GetOwningArena()
- #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
- && GetOwningArena() != nullptr
- #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
- )
- {
- InternalSwap(&from);
- }
- else
- {
- CopyFrom(from);
- }
- return *this;
- }
-
- static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor()
- {
- return GetDescriptor();
- }
- static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor()
- {
- return default_instance().GetMetadata().descriptor;
- }
- static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection()
- {
- return default_instance().GetMetadata().reflection;
- }
- static const SendMsg& default_instance()
- {
- return *internal_default_instance();
- }
- static inline const SendMsg* internal_default_instance()
- {
- return reinterpret_cast<const SendMsg*>(
- &_SendMsg_default_instance_
- );
- }
- static constexpr int kIndexInFileMessages =
- 3;
-
- friend void swap(SendMsg& a, SendMsg& b)
- {
- a.Swap(&b);
- }
- inline void Swap(SendMsg* other)
- {
- if (other == this)
- return;
- #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() != nullptr &&
- GetOwningArena() == other->GetOwningArena())
- {
- #else // PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() == other->GetOwningArena())
- {
- #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
- InternalSwap(other);
- }
- else
- {
- ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
- }
- }
- void UnsafeArenaSwap(SendMsg* other)
- {
- if (other == this)
- return;
- GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
- InternalSwap(other);
- }
-
- // implements Message ----------------------------------------------
-
- SendMsg* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final
- {
- return CreateMaybeMessage<SendMsg>(arena);
- }
- using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
- void CopyFrom(const SendMsg& from);
- using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
- void MergeFrom(const SendMsg& from)
- {
- SendMsg::MergeImpl(*this, from);
- }
-
- private:
- static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg);
-
- public:
- PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
- bool IsInitialized() const final;
-
- size_t ByteSizeLong() const final;
- const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
- uint8_t* _InternalSerialize(
- uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream
- ) const final;
- int GetCachedSize() const final
- {
- return _impl_._cached_size_.Get();
- }
-
- private:
- void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned);
- void SharedDtor();
- void SetCachedSize(int size) const final;
- void InternalSwap(SendMsg* other);
-
- private:
- friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
- static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName()
- {
- return "protobuf.SendMsg";
- }
-
- protected:
- explicit SendMsg(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false);
-
- public:
- static const ClassData _class_data_;
- const ::PROTOBUF_NAMESPACE_ID::Message::ClassData* GetClassData() const final;
-
- ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
-
- // nested types ----------------------------------------------------
-
- // accessors -------------------------------------------------------
-
- enum : int
- {
- kMessageFieldNumber = 3,
- kPlayerIdFieldNumber = 1,
- kToPlayerIdFieldNumber = 2,
- };
- // string message = 3;
- void clear_message();
- const std::string& message() const;
- template<typename ArgT0 = const std::string&, typename... ArgT>
- void set_message(ArgT0&& arg0, ArgT... args);
- std::string* mutable_message();
- PROTOBUF_NODISCARD std::string* release_message();
- void set_allocated_message(std::string* message);
-
- private:
- const std::string& _internal_message() const;
- inline PROTOBUF_ALWAYS_INLINE void _internal_set_message(const std::string& value);
- std::string* _internal_mutable_message();
-
- public:
- // int64 player_id = 1;
- void clear_player_id();
- int64_t player_id() const;
- void set_player_id(int64_t value);
-
- private:
- int64_t _internal_player_id() const;
- void _internal_set_player_id(int64_t value);
-
- public:
- // int64 to_player_id = 2;
- void clear_to_player_id();
- int64_t to_player_id() const;
- void set_to_player_id(int64_t value);
-
- private:
- int64_t _internal_to_player_id() const;
- void _internal_set_to_player_id(int64_t value);
-
- public:
- // @@protoc_insertion_point(class_scope:protobuf.SendMsg)
-
- private:
- class _Internal;
-
- template<typename T>
- friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
- typedef void InternalArenaConstructable_;
- typedef void DestructorSkippable_;
- struct Impl_
- {
- ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr message_;
- int64_t player_id_;
- int64_t to_player_id_;
- mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
- };
- union
- {
- Impl_ _impl_;
- };
- friend struct ::TableStruct_Message2Server_2eproto;
- };
- // -------------------------------------------------------------------
-
- class AttackMsg final :
- public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:protobuf.AttackMsg) */
- {
- public:
- inline AttackMsg() :
- AttackMsg(nullptr)
- {
- }
- ~AttackMsg() override;
- explicit PROTOBUF_CONSTEXPR AttackMsg(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
-
- AttackMsg(const AttackMsg& from);
- AttackMsg(AttackMsg&& from) noexcept
- :
- AttackMsg()
- {
- *this = ::std::move(from);
- }
-
- inline AttackMsg& operator=(const AttackMsg& from)
- {
- CopyFrom(from);
- return *this;
- }
- inline AttackMsg& operator=(AttackMsg&& from) noexcept
- {
- if (this == &from)
- return *this;
- if (GetOwningArena() == from.GetOwningArena()
- #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
- && GetOwningArena() != nullptr
- #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
- )
- {
- InternalSwap(&from);
- }
- else
- {
- CopyFrom(from);
- }
- return *this;
- }
-
- static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor()
- {
- return GetDescriptor();
- }
- static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor()
- {
- return default_instance().GetMetadata().descriptor;
- }
- static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection()
- {
- return default_instance().GetMetadata().reflection;
- }
- static const AttackMsg& default_instance()
- {
- return *internal_default_instance();
- }
- static inline const AttackMsg* internal_default_instance()
- {
- return reinterpret_cast<const AttackMsg*>(
- &_AttackMsg_default_instance_
- );
- }
- static constexpr int kIndexInFileMessages =
- 4;
-
- friend void swap(AttackMsg& a, AttackMsg& b)
- {
- a.Swap(&b);
- }
- inline void Swap(AttackMsg* other)
- {
- if (other == this)
- return;
- #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() != nullptr &&
- GetOwningArena() == other->GetOwningArena())
- {
- #else // PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() == other->GetOwningArena())
- {
- #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
- InternalSwap(other);
- }
- else
- {
- ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
- }
- }
- void UnsafeArenaSwap(AttackMsg* other)
- {
- if (other == this)
- return;
- GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
- InternalSwap(other);
- }
-
- // implements Message ----------------------------------------------
-
- AttackMsg* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final
- {
- return CreateMaybeMessage<AttackMsg>(arena);
- }
- using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
- void CopyFrom(const AttackMsg& from);
- using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
- void MergeFrom(const AttackMsg& from)
- {
- AttackMsg::MergeImpl(*this, from);
- }
-
- private:
- static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg);
-
- public:
- PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
- bool IsInitialized() const final;
-
- size_t ByteSizeLong() const final;
- const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
- uint8_t* _InternalSerialize(
- uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream
- ) const final;
- int GetCachedSize() const final
- {
- return _impl_._cached_size_.Get();
- }
-
- private:
- void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned);
- void SharedDtor();
- void SetCachedSize(int size) const final;
- void InternalSwap(AttackMsg* other);
-
- private:
- friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
- static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName()
- {
- return "protobuf.AttackMsg";
- }
-
- protected:
- explicit AttackMsg(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false);
-
- public:
- static const ClassData _class_data_;
- const ::PROTOBUF_NAMESPACE_ID::Message::ClassData* GetClassData() const final;
-
- ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
-
- // nested types ----------------------------------------------------
-
- // accessors -------------------------------------------------------
-
- enum : int
- {
- kPlayerIdFieldNumber = 1,
- kAngleFieldNumber = 2,
- };
- // int64 player_id = 1;
- void clear_player_id();
- int64_t player_id() const;
- void set_player_id(int64_t value);
-
- private:
- int64_t _internal_player_id() const;
- void _internal_set_player_id(int64_t value);
-
- public:
- // double angle = 2;
- void clear_angle();
- double angle() const;
- void set_angle(double value);
-
- private:
- double _internal_angle() const;
- void _internal_set_angle(double value);
-
- public:
- // @@protoc_insertion_point(class_scope:protobuf.AttackMsg)
-
- private:
- class _Internal;
-
- template<typename T>
- friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
- typedef void InternalArenaConstructable_;
- typedef void DestructorSkippable_;
- struct Impl_
- {
- int64_t player_id_;
- double angle_;
- mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
- };
- union
- {
- Impl_ _impl_;
- };
- friend struct ::TableStruct_Message2Server_2eproto;
- };
- // -------------------------------------------------------------------
-
- class IDMsg final :
- public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:protobuf.IDMsg) */
- {
- public:
- inline IDMsg() :
- IDMsg(nullptr)
- {
- }
- ~IDMsg() override;
- explicit PROTOBUF_CONSTEXPR IDMsg(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
-
- IDMsg(const IDMsg& from);
- IDMsg(IDMsg&& from) noexcept
- :
- IDMsg()
- {
- *this = ::std::move(from);
- }
-
- inline IDMsg& operator=(const IDMsg& from)
- {
- CopyFrom(from);
- return *this;
- }
- inline IDMsg& operator=(IDMsg&& from) noexcept
- {
- if (this == &from)
- return *this;
- if (GetOwningArena() == from.GetOwningArena()
- #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
- && GetOwningArena() != nullptr
- #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
- )
- {
- InternalSwap(&from);
- }
- else
- {
- CopyFrom(from);
- }
- return *this;
- }
-
- static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor()
- {
- return GetDescriptor();
- }
- static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor()
- {
- return default_instance().GetMetadata().descriptor;
- }
- static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection()
- {
- return default_instance().GetMetadata().reflection;
- }
- static const IDMsg& default_instance()
- {
- return *internal_default_instance();
- }
- static inline const IDMsg* internal_default_instance()
- {
- return reinterpret_cast<const IDMsg*>(
- &_IDMsg_default_instance_
- );
- }
- static constexpr int kIndexInFileMessages =
- 5;
-
- friend void swap(IDMsg& a, IDMsg& b)
- {
- a.Swap(&b);
- }
- inline void Swap(IDMsg* other)
- {
- if (other == this)
- return;
- #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() != nullptr &&
- GetOwningArena() == other->GetOwningArena())
- {
- #else // PROTOBUF_FORCE_COPY_IN_SWAP
- if (GetOwningArena() == other->GetOwningArena())
- {
- #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
- InternalSwap(other);
- }
- else
- {
- ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
- }
- }
- void UnsafeArenaSwap(IDMsg* other)
- {
- if (other == this)
- return;
- GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
- InternalSwap(other);
- }
-
- // implements Message ----------------------------------------------
-
- IDMsg* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final
- {
- return CreateMaybeMessage<IDMsg>(arena);
- }
- using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
- void CopyFrom(const IDMsg& from);
- using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
- void MergeFrom(const IDMsg& from)
- {
- IDMsg::MergeImpl(*this, from);
- }
-
- private:
- static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg);
-
- public:
- PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
- bool IsInitialized() const final;
-
- size_t ByteSizeLong() const final;
- const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
- uint8_t* _InternalSerialize(
- uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream
- ) const final;
- int GetCachedSize() const final
- {
- return _impl_._cached_size_.Get();
- }
-
- private:
- void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned);
- void SharedDtor();
- void SetCachedSize(int size) const final;
- void InternalSwap(IDMsg* other);
-
- private:
- friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
- static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName()
- {
- return "protobuf.IDMsg";
- }
-
- protected:
- explicit IDMsg(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false);
-
- public:
- static const ClassData _class_data_;
- const ::PROTOBUF_NAMESPACE_ID::Message::ClassData* GetClassData() const final;
-
- ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
-
- // nested types ----------------------------------------------------
-
- // accessors -------------------------------------------------------
-
- enum : int
- {
- kPlayerIdFieldNumber = 1,
- };
- // int64 player_id = 1;
- void clear_player_id();
- int64_t player_id() const;
- void set_player_id(int64_t value);
-
- private:
- int64_t _internal_player_id() const;
- void _internal_set_player_id(int64_t value);
-
- public:
- // @@protoc_insertion_point(class_scope:protobuf.IDMsg)
-
- private:
- class _Internal;
-
- template<typename T>
- friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
- typedef void InternalArenaConstructable_;
- typedef void DestructorSkippable_;
- struct Impl_
- {
- int64_t player_id_;
- mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
- };
- union
- {
- Impl_ _impl_;
- };
- friend struct ::TableStruct_Message2Server_2eproto;
- };
- // ===================================================================
-
- // ===================================================================
-
- #ifdef __GNUC__
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wstrict-aliasing"
- #endif // __GNUC__
- // PlayerMsg
-
- // int64 player_id = 1;
- inline void PlayerMsg::clear_player_id()
- {
- _impl_.player_id_ = int64_t{0};
- }
- inline int64_t PlayerMsg::_internal_player_id() const
- {
- return _impl_.player_id_;
- }
- inline int64_t PlayerMsg::player_id() const
- {
- // @@protoc_insertion_point(field_get:protobuf.PlayerMsg.player_id)
- return _internal_player_id();
- }
- inline void PlayerMsg::_internal_set_player_id(int64_t value)
- {
- _impl_.player_id_ = value;
- }
- inline void PlayerMsg::set_player_id(int64_t value)
- {
- _internal_set_player_id(value);
- // @@protoc_insertion_point(field_set:protobuf.PlayerMsg.player_id)
- }
-
- // .protobuf.PlayerType player_type = 2;
- inline void PlayerMsg::clear_player_type()
- {
- _impl_.player_type_ = 0;
- }
- inline ::protobuf::PlayerType PlayerMsg::_internal_player_type() const
- {
- return static_cast<::protobuf::PlayerType>(_impl_.player_type_);
- }
- inline ::protobuf::PlayerType PlayerMsg::player_type() const
- {
- // @@protoc_insertion_point(field_get:protobuf.PlayerMsg.player_type)
- return _internal_player_type();
- }
- inline void PlayerMsg::_internal_set_player_type(::protobuf::PlayerType value)
- {
- _impl_.player_type_ = value;
- }
- inline void PlayerMsg::set_player_type(::protobuf::PlayerType value)
- {
- _internal_set_player_type(value);
- // @@protoc_insertion_point(field_set:protobuf.PlayerMsg.player_type)
- }
-
- // .protobuf.HumanType human_type = 3;
- inline bool PlayerMsg::_internal_has_human_type() const
- {
- return job_type_case() == kHumanType;
- }
- inline bool PlayerMsg::has_human_type() const
- {
- return _internal_has_human_type();
- }
- inline void PlayerMsg::set_has_human_type()
- {
- _impl_._oneof_case_[0] = kHumanType;
- }
- inline void PlayerMsg::clear_human_type()
- {
- if (_internal_has_human_type())
- {
- _impl_.job_type_.human_type_ = 0;
- clear_has_job_type();
- }
- }
- inline ::protobuf::HumanType PlayerMsg::_internal_human_type() const
- {
- if (_internal_has_human_type())
- {
- return static_cast<::protobuf::HumanType>(_impl_.job_type_.human_type_);
- }
- return static_cast<::protobuf::HumanType>(0);
- }
- inline ::protobuf::HumanType PlayerMsg::human_type() const
- {
- // @@protoc_insertion_point(field_get:protobuf.PlayerMsg.human_type)
- return _internal_human_type();
- }
- inline void PlayerMsg::_internal_set_human_type(::protobuf::HumanType value)
- {
- if (!_internal_has_human_type())
- {
- clear_job_type();
- set_has_human_type();
- }
- _impl_.job_type_.human_type_ = value;
- }
- inline void PlayerMsg::set_human_type(::protobuf::HumanType value)
- {
- _internal_set_human_type(value);
- // @@protoc_insertion_point(field_set:protobuf.PlayerMsg.human_type)
- }
-
- // .protobuf.ButcherType butcher_type = 4;
- inline bool PlayerMsg::_internal_has_butcher_type() const
- {
- return job_type_case() == kButcherType;
- }
- inline bool PlayerMsg::has_butcher_type() const
- {
- return _internal_has_butcher_type();
- }
- inline void PlayerMsg::set_has_butcher_type()
- {
- _impl_._oneof_case_[0] = kButcherType;
- }
- inline void PlayerMsg::clear_butcher_type()
- {
- if (_internal_has_butcher_type())
- {
- _impl_.job_type_.butcher_type_ = 0;
- clear_has_job_type();
- }
- }
- inline ::protobuf::ButcherType PlayerMsg::_internal_butcher_type() const
- {
- if (_internal_has_butcher_type())
- {
- return static_cast<::protobuf::ButcherType>(_impl_.job_type_.butcher_type_);
- }
- return static_cast<::protobuf::ButcherType>(0);
- }
- inline ::protobuf::ButcherType PlayerMsg::butcher_type() const
- {
- // @@protoc_insertion_point(field_get:protobuf.PlayerMsg.butcher_type)
- return _internal_butcher_type();
- }
- inline void PlayerMsg::_internal_set_butcher_type(::protobuf::ButcherType value)
- {
- if (!_internal_has_butcher_type())
- {
- clear_job_type();
- set_has_butcher_type();
- }
- _impl_.job_type_.butcher_type_ = value;
- }
- inline void PlayerMsg::set_butcher_type(::protobuf::ButcherType value)
- {
- _internal_set_butcher_type(value);
- // @@protoc_insertion_point(field_set:protobuf.PlayerMsg.butcher_type)
- }
-
- inline bool PlayerMsg::has_job_type() const
- {
- return job_type_case() != JOB_TYPE_NOT_SET;
- }
- inline void PlayerMsg::clear_has_job_type()
- {
- _impl_._oneof_case_[0] = JOB_TYPE_NOT_SET;
- }
- inline PlayerMsg::JobTypeCase PlayerMsg::job_type_case() const
- {
- return PlayerMsg::JobTypeCase(_impl_._oneof_case_[0]);
- }
- // -------------------------------------------------------------------
-
- // MoveMsg
-
- // int64 player_id = 1;
- inline void MoveMsg::clear_player_id()
- {
- _impl_.player_id_ = int64_t{0};
- }
- inline int64_t MoveMsg::_internal_player_id() const
- {
- return _impl_.player_id_;
- }
- inline int64_t MoveMsg::player_id() const
- {
- // @@protoc_insertion_point(field_get:protobuf.MoveMsg.player_id)
- return _internal_player_id();
- }
- inline void MoveMsg::_internal_set_player_id(int64_t value)
- {
- _impl_.player_id_ = value;
- }
- inline void MoveMsg::set_player_id(int64_t value)
- {
- _internal_set_player_id(value);
- // @@protoc_insertion_point(field_set:protobuf.MoveMsg.player_id)
- }
-
- // double angle = 2;
- inline void MoveMsg::clear_angle()
- {
- _impl_.angle_ = 0;
- }
- inline double MoveMsg::_internal_angle() const
- {
- return _impl_.angle_;
- }
- inline double MoveMsg::angle() const
- {
- // @@protoc_insertion_point(field_get:protobuf.MoveMsg.angle)
- return _internal_angle();
- }
- inline void MoveMsg::_internal_set_angle(double value)
- {
- _impl_.angle_ = value;
- }
- inline void MoveMsg::set_angle(double value)
- {
- _internal_set_angle(value);
- // @@protoc_insertion_point(field_set:protobuf.MoveMsg.angle)
- }
-
- // int64 time_in_milliseconds = 3;
- inline void MoveMsg::clear_time_in_milliseconds()
- {
- _impl_.time_in_milliseconds_ = int64_t{0};
- }
- inline int64_t MoveMsg::_internal_time_in_milliseconds() const
- {
- return _impl_.time_in_milliseconds_;
- }
- inline int64_t MoveMsg::time_in_milliseconds() const
- {
- // @@protoc_insertion_point(field_get:protobuf.MoveMsg.time_in_milliseconds)
- return _internal_time_in_milliseconds();
- }
- inline void MoveMsg::_internal_set_time_in_milliseconds(int64_t value)
- {
- _impl_.time_in_milliseconds_ = value;
- }
- inline void MoveMsg::set_time_in_milliseconds(int64_t value)
- {
- _internal_set_time_in_milliseconds(value);
- // @@protoc_insertion_point(field_set:protobuf.MoveMsg.time_in_milliseconds)
- }
-
- // -------------------------------------------------------------------
-
- // PickMsg
-
- // int64 player_id = 1;
- inline void PickMsg::clear_player_id()
- {
- _impl_.player_id_ = int64_t{0};
- }
- inline int64_t PickMsg::_internal_player_id() const
- {
- return _impl_.player_id_;
- }
- inline int64_t PickMsg::player_id() const
- {
- // @@protoc_insertion_point(field_get:protobuf.PickMsg.player_id)
- return _internal_player_id();
- }
- inline void PickMsg::_internal_set_player_id(int64_t value)
- {
- _impl_.player_id_ = value;
- }
- inline void PickMsg::set_player_id(int64_t value)
- {
- _internal_set_player_id(value);
- // @@protoc_insertion_point(field_set:protobuf.PickMsg.player_id)
- }
-
- // .protobuf.PropType prop_type = 2;
- inline void PickMsg::clear_prop_type()
- {
- _impl_.prop_type_ = 0;
- }
- inline ::protobuf::PropType PickMsg::_internal_prop_type() const
- {
- return static_cast<::protobuf::PropType>(_impl_.prop_type_);
- }
- inline ::protobuf::PropType PickMsg::prop_type() const
- {
- // @@protoc_insertion_point(field_get:protobuf.PickMsg.prop_type)
- return _internal_prop_type();
- }
- inline void PickMsg::_internal_set_prop_type(::protobuf::PropType value)
- {
- _impl_.prop_type_ = value;
- }
- inline void PickMsg::set_prop_type(::protobuf::PropType value)
- {
- _internal_set_prop_type(value);
- // @@protoc_insertion_point(field_set:protobuf.PickMsg.prop_type)
- }
-
- // -------------------------------------------------------------------
-
- // SendMsg
-
- // int64 player_id = 1;
- inline void SendMsg::clear_player_id()
- {
- _impl_.player_id_ = int64_t{0};
- }
- inline int64_t SendMsg::_internal_player_id() const
- {
- return _impl_.player_id_;
- }
- inline int64_t SendMsg::player_id() const
- {
- // @@protoc_insertion_point(field_get:protobuf.SendMsg.player_id)
- return _internal_player_id();
- }
- inline void SendMsg::_internal_set_player_id(int64_t value)
- {
- _impl_.player_id_ = value;
- }
- inline void SendMsg::set_player_id(int64_t value)
- {
- _internal_set_player_id(value);
- // @@protoc_insertion_point(field_set:protobuf.SendMsg.player_id)
- }
-
- // int64 to_player_id = 2;
- inline void SendMsg::clear_to_player_id()
- {
- _impl_.to_player_id_ = int64_t{0};
- }
- inline int64_t SendMsg::_internal_to_player_id() const
- {
- return _impl_.to_player_id_;
- }
- inline int64_t SendMsg::to_player_id() const
- {
- // @@protoc_insertion_point(field_get:protobuf.SendMsg.to_player_id)
- return _internal_to_player_id();
- }
- inline void SendMsg::_internal_set_to_player_id(int64_t value)
- {
- _impl_.to_player_id_ = value;
- }
- inline void SendMsg::set_to_player_id(int64_t value)
- {
- _internal_set_to_player_id(value);
- // @@protoc_insertion_point(field_set:protobuf.SendMsg.to_player_id)
- }
-
- // string message = 3;
- inline void SendMsg::clear_message()
- {
- _impl_.message_.ClearToEmpty();
- }
- inline const std::string& SendMsg::message() const
- {
- // @@protoc_insertion_point(field_get:protobuf.SendMsg.message)
- return _internal_message();
- }
- template<typename ArgT0, typename... ArgT>
- inline PROTOBUF_ALWAYS_INLINE void SendMsg::set_message(ArgT0&& arg0, ArgT... args)
- {
- _impl_.message_.Set(static_cast<ArgT0&&>(arg0), args..., GetArenaForAllocation());
- // @@protoc_insertion_point(field_set:protobuf.SendMsg.message)
- }
- inline std::string* SendMsg::mutable_message()
- {
- std::string* _s = _internal_mutable_message();
- // @@protoc_insertion_point(field_mutable:protobuf.SendMsg.message)
- return _s;
- }
- inline const std::string& SendMsg::_internal_message() const
- {
- return _impl_.message_.Get();
- }
- inline void SendMsg::_internal_set_message(const std::string& value)
- {
- _impl_.message_.Set(value, GetArenaForAllocation());
- }
- inline std::string* SendMsg::_internal_mutable_message()
- {
- return _impl_.message_.Mutable(GetArenaForAllocation());
- }
- inline std::string* SendMsg::release_message()
- {
- // @@protoc_insertion_point(field_release:protobuf.SendMsg.message)
- return _impl_.message_.Release();
- }
- inline void SendMsg::set_allocated_message(std::string* message)
- {
- if (message != nullptr)
- {
- }
- else
- {
- }
- _impl_.message_.SetAllocated(message, GetArenaForAllocation());
- #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
- if (_impl_.message_.IsDefault())
- {
- _impl_.message_.Set("", GetArenaForAllocation());
- }
- #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
- // @@protoc_insertion_point(field_set_allocated:protobuf.SendMsg.message)
- }
-
- // -------------------------------------------------------------------
-
- // AttackMsg
-
- // int64 player_id = 1;
- inline void AttackMsg::clear_player_id()
- {
- _impl_.player_id_ = int64_t{0};
- }
- inline int64_t AttackMsg::_internal_player_id() const
- {
- return _impl_.player_id_;
- }
- inline int64_t AttackMsg::player_id() const
- {
- // @@protoc_insertion_point(field_get:protobuf.AttackMsg.player_id)
- return _internal_player_id();
- }
- inline void AttackMsg::_internal_set_player_id(int64_t value)
- {
- _impl_.player_id_ = value;
- }
- inline void AttackMsg::set_player_id(int64_t value)
- {
- _internal_set_player_id(value);
- // @@protoc_insertion_point(field_set:protobuf.AttackMsg.player_id)
- }
-
- // double angle = 2;
- inline void AttackMsg::clear_angle()
- {
- _impl_.angle_ = 0;
- }
- inline double AttackMsg::_internal_angle() const
- {
- return _impl_.angle_;
- }
- inline double AttackMsg::angle() const
- {
- // @@protoc_insertion_point(field_get:protobuf.AttackMsg.angle)
- return _internal_angle();
- }
- inline void AttackMsg::_internal_set_angle(double value)
- {
- _impl_.angle_ = value;
- }
- inline void AttackMsg::set_angle(double value)
- {
- _internal_set_angle(value);
- // @@protoc_insertion_point(field_set:protobuf.AttackMsg.angle)
- }
-
- // -------------------------------------------------------------------
-
- // IDMsg
-
- // int64 player_id = 1;
- inline void IDMsg::clear_player_id()
- {
- _impl_.player_id_ = int64_t{0};
- }
- inline int64_t IDMsg::_internal_player_id() const
- {
- return _impl_.player_id_;
- }
- inline int64_t IDMsg::player_id() const
- {
- // @@protoc_insertion_point(field_get:protobuf.IDMsg.player_id)
- return _internal_player_id();
- }
- inline void IDMsg::_internal_set_player_id(int64_t value)
- {
- _impl_.player_id_ = value;
- }
- inline void IDMsg::set_player_id(int64_t value)
- {
- _internal_set_player_id(value);
- // @@protoc_insertion_point(field_set:protobuf.IDMsg.player_id)
- }
-
- #ifdef __GNUC__
- #pragma GCC diagnostic pop
- #endif // __GNUC__
- // -------------------------------------------------------------------
-
- // -------------------------------------------------------------------
-
- // -------------------------------------------------------------------
-
- // -------------------------------------------------------------------
-
- // -------------------------------------------------------------------
-
- // @@protoc_insertion_point(namespace_scope)
-
- } // namespace protobuf
-
- // @@protoc_insertion_point(global_scope)
-
- #include <google/protobuf/port_undef.inc>
- #endif // GOOGLE_PROTOBUF_INCLUDED_GOOGLE_PROTOBUF_INCLUDED_Message2Server_2eproto
|