message.pb.h 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212
  1. // Generated by the protocol buffer compiler. DO NOT EDIT!
  2. // source: message.proto
  3. #ifndef GOOGLE_PROTOBUF_INCLUDED_message_2eproto
  4. #define GOOGLE_PROTOBUF_INCLUDED_message_2eproto
  5. #include <limits>
  6. #include <string>
  7. #include <google/protobuf/port_def.inc>
  8. #if PROTOBUF_VERSION < 3013000
  9. #error This file was generated by a newer version of protoc which is
  10. #error incompatible with your Protocol Buffer headers. Please update
  11. #error your headers.
  12. #endif
  13. #if 3013000 < PROTOBUF_MIN_PROTOC_VERSION
  14. #error This file was generated by an older version of protoc which is
  15. #error incompatible with your Protocol Buffer headers. Please
  16. #error regenerate this file with a newer version of protoc.
  17. #endif
  18. #include <google/protobuf/port_undef.inc>
  19. #include <google/protobuf/io/coded_stream.h>
  20. #include <google/protobuf/arena.h>
  21. #include <google/protobuf/arenastring.h>
  22. #include <google/protobuf/generated_message_table_driven.h>
  23. #include <google/protobuf/generated_message_util.h>
  24. #include <google/protobuf/inlined_string_field.h>
  25. #include <google/protobuf/metadata_lite.h>
  26. #include <google/protobuf/generated_message_reflection.h>
  27. #include <google/protobuf/message.h>
  28. #include <google/protobuf/repeated_field.h> // IWYU pragma: export
  29. #include <google/protobuf/extension_set.h> // IWYU pragma: export
  30. #include <google/protobuf/unknown_field_set.h>
  31. // @@protoc_insertion_point(includes)
  32. #include <google/protobuf/port_def.inc>
  33. #define PROTOBUF_INTERNAL_EXPORT_message_2eproto
  34. PROTOBUF_NAMESPACE_OPEN
  35. namespace internal {
  36. class AnyMetadata;
  37. } // namespace internal
  38. PROTOBUF_NAMESPACE_CLOSE
  39. // Internal implementation detail -- do not use these members.
  40. struct TableStruct_message_2eproto {
  41. static const ::PROTOBUF_NAMESPACE_ID::internal::ParseTableField entries[]
  42. PROTOBUF_SECTION_VARIABLE(protodesc_cold);
  43. static const ::PROTOBUF_NAMESPACE_ID::internal::AuxiliaryParseTableField aux[]
  44. PROTOBUF_SECTION_VARIABLE(protodesc_cold);
  45. static const ::PROTOBUF_NAMESPACE_ID::internal::ParseTable schema[11]
  46. PROTOBUF_SECTION_VARIABLE(protodesc_cold);
  47. static const ::PROTOBUF_NAMESPACE_ID::internal::FieldMetadata field_metadata[];
  48. static const ::PROTOBUF_NAMESPACE_ID::internal::SerializationTable serialization_table[];
  49. static const ::PROTOBUF_NAMESPACE_ID::uint32 offsets[];
  50. };
  51. extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_message_2eproto;
  52. namespace NavMessage {
  53. class AgvStatu;
  54. class AgvStatuDefaultTypeInternal;
  55. extern AgvStatuDefaultTypeInternal _AgvStatu_default_instance_;
  56. class LidarOdomStatu;
  57. class LidarOdomStatuDefaultTypeInternal;
  58. extern LidarOdomStatuDefaultTypeInternal _LidarOdomStatu_default_instance_;
  59. class NavCmd;
  60. class NavCmdDefaultTypeInternal;
  61. extern NavCmdDefaultTypeInternal _NavCmd_default_instance_;
  62. class NavStatu;
  63. class NavStatuDefaultTypeInternal;
  64. extern NavStatuDefaultTypeInternal _NavStatu_default_instance_;
  65. class NewAction;
  66. class NewActionDefaultTypeInternal;
  67. extern NewActionDefaultTypeInternal _NewAction_default_instance_;
  68. class PathNode;
  69. class PathNodeDefaultTypeInternal;
  70. extern PathNodeDefaultTypeInternal _PathNode_default_instance_;
  71. class Pose2d;
  72. class Pose2dDefaultTypeInternal;
  73. extern Pose2dDefaultTypeInternal _Pose2d_default_instance_;
  74. class RobotStatu;
  75. class RobotStatuDefaultTypeInternal;
  76. extern RobotStatuDefaultTypeInternal _RobotStatu_default_instance_;
  77. class SpeedLimit;
  78. class SpeedLimitDefaultTypeInternal;
  79. extern SpeedLimitDefaultTypeInternal _SpeedLimit_default_instance_;
  80. class ToAgvCmd;
  81. class ToAgvCmdDefaultTypeInternal;
  82. extern ToAgvCmdDefaultTypeInternal _ToAgvCmd_default_instance_;
  83. class Trajectory;
  84. class TrajectoryDefaultTypeInternal;
  85. extern TrajectoryDefaultTypeInternal _Trajectory_default_instance_;
  86. } // namespace NavMessage
  87. PROTOBUF_NAMESPACE_OPEN
  88. template<> ::NavMessage::AgvStatu* Arena::CreateMaybeMessage<::NavMessage::AgvStatu>(Arena*);
  89. template<> ::NavMessage::LidarOdomStatu* Arena::CreateMaybeMessage<::NavMessage::LidarOdomStatu>(Arena*);
  90. template<> ::NavMessage::NavCmd* Arena::CreateMaybeMessage<::NavMessage::NavCmd>(Arena*);
  91. template<> ::NavMessage::NavStatu* Arena::CreateMaybeMessage<::NavMessage::NavStatu>(Arena*);
  92. template<> ::NavMessage::NewAction* Arena::CreateMaybeMessage<::NavMessage::NewAction>(Arena*);
  93. template<> ::NavMessage::PathNode* Arena::CreateMaybeMessage<::NavMessage::PathNode>(Arena*);
  94. template<> ::NavMessage::Pose2d* Arena::CreateMaybeMessage<::NavMessage::Pose2d>(Arena*);
  95. template<> ::NavMessage::RobotStatu* Arena::CreateMaybeMessage<::NavMessage::RobotStatu>(Arena*);
  96. template<> ::NavMessage::SpeedLimit* Arena::CreateMaybeMessage<::NavMessage::SpeedLimit>(Arena*);
  97. template<> ::NavMessage::ToAgvCmd* Arena::CreateMaybeMessage<::NavMessage::ToAgvCmd>(Arena*);
  98. template<> ::NavMessage::Trajectory* Arena::CreateMaybeMessage<::NavMessage::Trajectory>(Arena*);
  99. PROTOBUF_NAMESPACE_CLOSE
  100. namespace NavMessage {
  101. // ===================================================================
  102. class LidarOdomStatu PROTOBUF_FINAL :
  103. public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:NavMessage.LidarOdomStatu) */ {
  104. public:
  105. inline LidarOdomStatu() : LidarOdomStatu(nullptr) {}
  106. virtual ~LidarOdomStatu();
  107. LidarOdomStatu(const LidarOdomStatu& from);
  108. LidarOdomStatu(LidarOdomStatu&& from) noexcept
  109. : LidarOdomStatu() {
  110. *this = ::std::move(from);
  111. }
  112. inline LidarOdomStatu& operator=(const LidarOdomStatu& from) {
  113. CopyFrom(from);
  114. return *this;
  115. }
  116. inline LidarOdomStatu& operator=(LidarOdomStatu&& from) noexcept {
  117. if (GetArena() == from.GetArena()) {
  118. if (this != &from) InternalSwap(&from);
  119. } else {
  120. CopyFrom(from);
  121. }
  122. return *this;
  123. }
  124. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
  125. return GetDescriptor();
  126. }
  127. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
  128. return GetMetadataStatic().descriptor;
  129. }
  130. static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
  131. return GetMetadataStatic().reflection;
  132. }
  133. static const LidarOdomStatu& default_instance();
  134. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  135. static inline const LidarOdomStatu* internal_default_instance() {
  136. return reinterpret_cast<const LidarOdomStatu*>(
  137. &_LidarOdomStatu_default_instance_);
  138. }
  139. static constexpr int kIndexInFileMessages =
  140. 0;
  141. friend void swap(LidarOdomStatu& a, LidarOdomStatu& b) {
  142. a.Swap(&b);
  143. }
  144. inline void Swap(LidarOdomStatu* other) {
  145. if (other == this) return;
  146. if (GetArena() == other->GetArena()) {
  147. InternalSwap(other);
  148. } else {
  149. ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
  150. }
  151. }
  152. void UnsafeArenaSwap(LidarOdomStatu* other) {
  153. if (other == this) return;
  154. GOOGLE_DCHECK(GetArena() == other->GetArena());
  155. InternalSwap(other);
  156. }
  157. // implements Message ----------------------------------------------
  158. inline LidarOdomStatu* New() const final {
  159. return CreateMaybeMessage<LidarOdomStatu>(nullptr);
  160. }
  161. LidarOdomStatu* New(::PROTOBUF_NAMESPACE_ID::Arena* arena) const final {
  162. return CreateMaybeMessage<LidarOdomStatu>(arena);
  163. }
  164. void CopyFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
  165. void MergeFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
  166. void CopyFrom(const LidarOdomStatu& from);
  167. void MergeFrom(const LidarOdomStatu& from);
  168. PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
  169. bool IsInitialized() const final;
  170. size_t ByteSizeLong() const final;
  171. const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
  172. ::PROTOBUF_NAMESPACE_ID::uint8* _InternalSerialize(
  173. ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
  174. int GetCachedSize() const final { return _cached_size_.Get(); }
  175. private:
  176. inline void SharedCtor();
  177. inline void SharedDtor();
  178. void SetCachedSize(int size) const final;
  179. void InternalSwap(LidarOdomStatu* other);
  180. friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
  181. static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
  182. return "NavMessage.LidarOdomStatu";
  183. }
  184. protected:
  185. explicit LidarOdomStatu(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  186. private:
  187. static void ArenaDtor(void* object);
  188. inline void RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  189. public:
  190. ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
  191. private:
  192. static ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadataStatic() {
  193. ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(&::descriptor_table_message_2eproto);
  194. return ::descriptor_table_message_2eproto.file_level_metadata[kIndexInFileMessages];
  195. }
  196. public:
  197. // nested types ----------------------------------------------------
  198. // accessors -------------------------------------------------------
  199. enum : int {
  200. kXFieldNumber = 1,
  201. kYFieldNumber = 2,
  202. kThetaFieldNumber = 3,
  203. kVFieldNumber = 4,
  204. kVthFieldNumber = 5,
  205. };
  206. // float x = 1;
  207. void clear_x();
  208. float x() const;
  209. void set_x(float value);
  210. private:
  211. float _internal_x() const;
  212. void _internal_set_x(float value);
  213. public:
  214. // float y = 2;
  215. void clear_y();
  216. float y() const;
  217. void set_y(float value);
  218. private:
  219. float _internal_y() const;
  220. void _internal_set_y(float value);
  221. public:
  222. // float theta = 3;
  223. void clear_theta();
  224. float theta() const;
  225. void set_theta(float value);
  226. private:
  227. float _internal_theta() const;
  228. void _internal_set_theta(float value);
  229. public:
  230. // float v = 4;
  231. void clear_v();
  232. float v() const;
  233. void set_v(float value);
  234. private:
  235. float _internal_v() const;
  236. void _internal_set_v(float value);
  237. public:
  238. // float vth = 5;
  239. void clear_vth();
  240. float vth() const;
  241. void set_vth(float value);
  242. private:
  243. float _internal_vth() const;
  244. void _internal_set_vth(float value);
  245. public:
  246. // @@protoc_insertion_point(class_scope:NavMessage.LidarOdomStatu)
  247. private:
  248. class _Internal;
  249. template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
  250. typedef void InternalArenaConstructable_;
  251. typedef void DestructorSkippable_;
  252. float x_;
  253. float y_;
  254. float theta_;
  255. float v_;
  256. float vth_;
  257. mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
  258. friend struct ::TableStruct_message_2eproto;
  259. };
  260. // -------------------------------------------------------------------
  261. class AgvStatu PROTOBUF_FINAL :
  262. public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:NavMessage.AgvStatu) */ {
  263. public:
  264. inline AgvStatu() : AgvStatu(nullptr) {}
  265. virtual ~AgvStatu();
  266. AgvStatu(const AgvStatu& from);
  267. AgvStatu(AgvStatu&& from) noexcept
  268. : AgvStatu() {
  269. *this = ::std::move(from);
  270. }
  271. inline AgvStatu& operator=(const AgvStatu& from) {
  272. CopyFrom(from);
  273. return *this;
  274. }
  275. inline AgvStatu& operator=(AgvStatu&& from) noexcept {
  276. if (GetArena() == from.GetArena()) {
  277. if (this != &from) InternalSwap(&from);
  278. } else {
  279. CopyFrom(from);
  280. }
  281. return *this;
  282. }
  283. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
  284. return GetDescriptor();
  285. }
  286. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
  287. return GetMetadataStatic().descriptor;
  288. }
  289. static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
  290. return GetMetadataStatic().reflection;
  291. }
  292. static const AgvStatu& default_instance();
  293. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  294. static inline const AgvStatu* internal_default_instance() {
  295. return reinterpret_cast<const AgvStatu*>(
  296. &_AgvStatu_default_instance_);
  297. }
  298. static constexpr int kIndexInFileMessages =
  299. 1;
  300. friend void swap(AgvStatu& a, AgvStatu& b) {
  301. a.Swap(&b);
  302. }
  303. inline void Swap(AgvStatu* other) {
  304. if (other == this) return;
  305. if (GetArena() == other->GetArena()) {
  306. InternalSwap(other);
  307. } else {
  308. ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
  309. }
  310. }
  311. void UnsafeArenaSwap(AgvStatu* other) {
  312. if (other == this) return;
  313. GOOGLE_DCHECK(GetArena() == other->GetArena());
  314. InternalSwap(other);
  315. }
  316. // implements Message ----------------------------------------------
  317. inline AgvStatu* New() const final {
  318. return CreateMaybeMessage<AgvStatu>(nullptr);
  319. }
  320. AgvStatu* New(::PROTOBUF_NAMESPACE_ID::Arena* arena) const final {
  321. return CreateMaybeMessage<AgvStatu>(arena);
  322. }
  323. void CopyFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
  324. void MergeFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
  325. void CopyFrom(const AgvStatu& from);
  326. void MergeFrom(const AgvStatu& from);
  327. PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
  328. bool IsInitialized() const final;
  329. size_t ByteSizeLong() const final;
  330. const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
  331. ::PROTOBUF_NAMESPACE_ID::uint8* _InternalSerialize(
  332. ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
  333. int GetCachedSize() const final { return _cached_size_.Get(); }
  334. private:
  335. inline void SharedCtor();
  336. inline void SharedDtor();
  337. void SetCachedSize(int size) const final;
  338. void InternalSwap(AgvStatu* other);
  339. friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
  340. static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
  341. return "NavMessage.AgvStatu";
  342. }
  343. protected:
  344. explicit AgvStatu(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  345. private:
  346. static void ArenaDtor(void* object);
  347. inline void RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  348. public:
  349. ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
  350. private:
  351. static ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadataStatic() {
  352. ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(&::descriptor_table_message_2eproto);
  353. return ::descriptor_table_message_2eproto.file_level_metadata[kIndexInFileMessages];
  354. }
  355. public:
  356. // nested types ----------------------------------------------------
  357. // accessors -------------------------------------------------------
  358. enum : int {
  359. kVFieldNumber = 1,
  360. kWFieldNumber = 2,
  361. kClampFieldNumber = 3,
  362. kClampOtherFieldNumber = 4,
  363. };
  364. // float v = 1;
  365. void clear_v();
  366. float v() const;
  367. void set_v(float value);
  368. private:
  369. float _internal_v() const;
  370. void _internal_set_v(float value);
  371. public:
  372. // float w = 2;
  373. void clear_w();
  374. float w() const;
  375. void set_w(float value);
  376. private:
  377. float _internal_w() const;
  378. void _internal_set_w(float value);
  379. public:
  380. // int32 clamp = 3;
  381. void clear_clamp();
  382. ::PROTOBUF_NAMESPACE_ID::int32 clamp() const;
  383. void set_clamp(::PROTOBUF_NAMESPACE_ID::int32 value);
  384. private:
  385. ::PROTOBUF_NAMESPACE_ID::int32 _internal_clamp() const;
  386. void _internal_set_clamp(::PROTOBUF_NAMESPACE_ID::int32 value);
  387. public:
  388. // int32 clamp_other = 4;
  389. void clear_clamp_other();
  390. ::PROTOBUF_NAMESPACE_ID::int32 clamp_other() const;
  391. void set_clamp_other(::PROTOBUF_NAMESPACE_ID::int32 value);
  392. private:
  393. ::PROTOBUF_NAMESPACE_ID::int32 _internal_clamp_other() const;
  394. void _internal_set_clamp_other(::PROTOBUF_NAMESPACE_ID::int32 value);
  395. public:
  396. // @@protoc_insertion_point(class_scope:NavMessage.AgvStatu)
  397. private:
  398. class _Internal;
  399. template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
  400. typedef void InternalArenaConstructable_;
  401. typedef void DestructorSkippable_;
  402. float v_;
  403. float w_;
  404. ::PROTOBUF_NAMESPACE_ID::int32 clamp_;
  405. ::PROTOBUF_NAMESPACE_ID::int32 clamp_other_;
  406. mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
  407. friend struct ::TableStruct_message_2eproto;
  408. };
  409. // -------------------------------------------------------------------
  410. class ToAgvCmd PROTOBUF_FINAL :
  411. public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:NavMessage.ToAgvCmd) */ {
  412. public:
  413. inline ToAgvCmd() : ToAgvCmd(nullptr) {}
  414. virtual ~ToAgvCmd();
  415. ToAgvCmd(const ToAgvCmd& from);
  416. ToAgvCmd(ToAgvCmd&& from) noexcept
  417. : ToAgvCmd() {
  418. *this = ::std::move(from);
  419. }
  420. inline ToAgvCmd& operator=(const ToAgvCmd& from) {
  421. CopyFrom(from);
  422. return *this;
  423. }
  424. inline ToAgvCmd& operator=(ToAgvCmd&& from) noexcept {
  425. if (GetArena() == from.GetArena()) {
  426. if (this != &from) InternalSwap(&from);
  427. } else {
  428. CopyFrom(from);
  429. }
  430. return *this;
  431. }
  432. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
  433. return GetDescriptor();
  434. }
  435. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
  436. return GetMetadataStatic().descriptor;
  437. }
  438. static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
  439. return GetMetadataStatic().reflection;
  440. }
  441. static const ToAgvCmd& default_instance();
  442. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  443. static inline const ToAgvCmd* internal_default_instance() {
  444. return reinterpret_cast<const ToAgvCmd*>(
  445. &_ToAgvCmd_default_instance_);
  446. }
  447. static constexpr int kIndexInFileMessages =
  448. 2;
  449. friend void swap(ToAgvCmd& a, ToAgvCmd& b) {
  450. a.Swap(&b);
  451. }
  452. inline void Swap(ToAgvCmd* other) {
  453. if (other == this) return;
  454. if (GetArena() == other->GetArena()) {
  455. InternalSwap(other);
  456. } else {
  457. ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
  458. }
  459. }
  460. void UnsafeArenaSwap(ToAgvCmd* other) {
  461. if (other == this) return;
  462. GOOGLE_DCHECK(GetArena() == other->GetArena());
  463. InternalSwap(other);
  464. }
  465. // implements Message ----------------------------------------------
  466. inline ToAgvCmd* New() const final {
  467. return CreateMaybeMessage<ToAgvCmd>(nullptr);
  468. }
  469. ToAgvCmd* New(::PROTOBUF_NAMESPACE_ID::Arena* arena) const final {
  470. return CreateMaybeMessage<ToAgvCmd>(arena);
  471. }
  472. void CopyFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
  473. void MergeFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
  474. void CopyFrom(const ToAgvCmd& from);
  475. void MergeFrom(const ToAgvCmd& from);
  476. PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
  477. bool IsInitialized() const final;
  478. size_t ByteSizeLong() const final;
  479. const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
  480. ::PROTOBUF_NAMESPACE_ID::uint8* _InternalSerialize(
  481. ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
  482. int GetCachedSize() const final { return _cached_size_.Get(); }
  483. private:
  484. inline void SharedCtor();
  485. inline void SharedDtor();
  486. void SetCachedSize(int size) const final;
  487. void InternalSwap(ToAgvCmd* other);
  488. friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
  489. static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
  490. return "NavMessage.ToAgvCmd";
  491. }
  492. protected:
  493. explicit ToAgvCmd(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  494. private:
  495. static void ArenaDtor(void* object);
  496. inline void RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  497. public:
  498. ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
  499. private:
  500. static ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadataStatic() {
  501. ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(&::descriptor_table_message_2eproto);
  502. return ::descriptor_table_message_2eproto.file_level_metadata[kIndexInFileMessages];
  503. }
  504. public:
  505. // nested types ----------------------------------------------------
  506. // accessors -------------------------------------------------------
  507. enum : int {
  508. kHFieldNumber = 1,
  509. kMFieldNumber = 2,
  510. kTFieldNumber = 3,
  511. kVFieldNumber = 4,
  512. kWFieldNumber = 5,
  513. kLFieldNumber = 6,
  514. kEndFieldNumber = 7,
  515. };
  516. // int32 H = 1;
  517. void clear_h();
  518. ::PROTOBUF_NAMESPACE_ID::int32 h() const;
  519. void set_h(::PROTOBUF_NAMESPACE_ID::int32 value);
  520. private:
  521. ::PROTOBUF_NAMESPACE_ID::int32 _internal_h() const;
  522. void _internal_set_h(::PROTOBUF_NAMESPACE_ID::int32 value);
  523. public:
  524. // int32 M = 2;
  525. void clear_m();
  526. ::PROTOBUF_NAMESPACE_ID::int32 m() const;
  527. void set_m(::PROTOBUF_NAMESPACE_ID::int32 value);
  528. private:
  529. ::PROTOBUF_NAMESPACE_ID::int32 _internal_m() const;
  530. void _internal_set_m(::PROTOBUF_NAMESPACE_ID::int32 value);
  531. public:
  532. // int32 T = 3;
  533. void clear_t();
  534. ::PROTOBUF_NAMESPACE_ID::int32 t() const;
  535. void set_t(::PROTOBUF_NAMESPACE_ID::int32 value);
  536. private:
  537. ::PROTOBUF_NAMESPACE_ID::int32 _internal_t() const;
  538. void _internal_set_t(::PROTOBUF_NAMESPACE_ID::int32 value);
  539. public:
  540. // float V = 4;
  541. void clear_v();
  542. float v() const;
  543. void set_v(float value);
  544. private:
  545. float _internal_v() const;
  546. void _internal_set_v(float value);
  547. public:
  548. // float W = 5;
  549. void clear_w();
  550. float w() const;
  551. void set_w(float value);
  552. private:
  553. float _internal_w() const;
  554. void _internal_set_w(float value);
  555. public:
  556. // float L = 6;
  557. void clear_l();
  558. float l() const;
  559. void set_l(float value);
  560. private:
  561. float _internal_l() const;
  562. void _internal_set_l(float value);
  563. public:
  564. // int32 end = 7;
  565. void clear_end();
  566. ::PROTOBUF_NAMESPACE_ID::int32 end() const;
  567. void set_end(::PROTOBUF_NAMESPACE_ID::int32 value);
  568. private:
  569. ::PROTOBUF_NAMESPACE_ID::int32 _internal_end() const;
  570. void _internal_set_end(::PROTOBUF_NAMESPACE_ID::int32 value);
  571. public:
  572. // @@protoc_insertion_point(class_scope:NavMessage.ToAgvCmd)
  573. private:
  574. class _Internal;
  575. template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
  576. typedef void InternalArenaConstructable_;
  577. typedef void DestructorSkippable_;
  578. ::PROTOBUF_NAMESPACE_ID::int32 h_;
  579. ::PROTOBUF_NAMESPACE_ID::int32 m_;
  580. ::PROTOBUF_NAMESPACE_ID::int32 t_;
  581. float v_;
  582. float w_;
  583. float l_;
  584. ::PROTOBUF_NAMESPACE_ID::int32 end_;
  585. mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
  586. friend struct ::TableStruct_message_2eproto;
  587. };
  588. // -------------------------------------------------------------------
  589. class SpeedLimit PROTOBUF_FINAL :
  590. public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:NavMessage.SpeedLimit) */ {
  591. public:
  592. inline SpeedLimit() : SpeedLimit(nullptr) {}
  593. virtual ~SpeedLimit();
  594. SpeedLimit(const SpeedLimit& from);
  595. SpeedLimit(SpeedLimit&& from) noexcept
  596. : SpeedLimit() {
  597. *this = ::std::move(from);
  598. }
  599. inline SpeedLimit& operator=(const SpeedLimit& from) {
  600. CopyFrom(from);
  601. return *this;
  602. }
  603. inline SpeedLimit& operator=(SpeedLimit&& from) noexcept {
  604. if (GetArena() == from.GetArena()) {
  605. if (this != &from) InternalSwap(&from);
  606. } else {
  607. CopyFrom(from);
  608. }
  609. return *this;
  610. }
  611. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
  612. return GetDescriptor();
  613. }
  614. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
  615. return GetMetadataStatic().descriptor;
  616. }
  617. static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
  618. return GetMetadataStatic().reflection;
  619. }
  620. static const SpeedLimit& default_instance();
  621. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  622. static inline const SpeedLimit* internal_default_instance() {
  623. return reinterpret_cast<const SpeedLimit*>(
  624. &_SpeedLimit_default_instance_);
  625. }
  626. static constexpr int kIndexInFileMessages =
  627. 3;
  628. friend void swap(SpeedLimit& a, SpeedLimit& b) {
  629. a.Swap(&b);
  630. }
  631. inline void Swap(SpeedLimit* other) {
  632. if (other == this) return;
  633. if (GetArena() == other->GetArena()) {
  634. InternalSwap(other);
  635. } else {
  636. ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
  637. }
  638. }
  639. void UnsafeArenaSwap(SpeedLimit* other) {
  640. if (other == this) return;
  641. GOOGLE_DCHECK(GetArena() == other->GetArena());
  642. InternalSwap(other);
  643. }
  644. // implements Message ----------------------------------------------
  645. inline SpeedLimit* New() const final {
  646. return CreateMaybeMessage<SpeedLimit>(nullptr);
  647. }
  648. SpeedLimit* New(::PROTOBUF_NAMESPACE_ID::Arena* arena) const final {
  649. return CreateMaybeMessage<SpeedLimit>(arena);
  650. }
  651. void CopyFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
  652. void MergeFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
  653. void CopyFrom(const SpeedLimit& from);
  654. void MergeFrom(const SpeedLimit& from);
  655. PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
  656. bool IsInitialized() const final;
  657. size_t ByteSizeLong() const final;
  658. const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
  659. ::PROTOBUF_NAMESPACE_ID::uint8* _InternalSerialize(
  660. ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
  661. int GetCachedSize() const final { return _cached_size_.Get(); }
  662. private:
  663. inline void SharedCtor();
  664. inline void SharedDtor();
  665. void SetCachedSize(int size) const final;
  666. void InternalSwap(SpeedLimit* other);
  667. friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
  668. static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
  669. return "NavMessage.SpeedLimit";
  670. }
  671. protected:
  672. explicit SpeedLimit(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  673. private:
  674. static void ArenaDtor(void* object);
  675. inline void RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  676. public:
  677. ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
  678. private:
  679. static ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadataStatic() {
  680. ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(&::descriptor_table_message_2eproto);
  681. return ::descriptor_table_message_2eproto.file_level_metadata[kIndexInFileMessages];
  682. }
  683. public:
  684. // nested types ----------------------------------------------------
  685. // accessors -------------------------------------------------------
  686. enum : int {
  687. kMinFieldNumber = 1,
  688. kMaxFieldNumber = 2,
  689. };
  690. // float min = 1;
  691. void clear_min();
  692. float min() const;
  693. void set_min(float value);
  694. private:
  695. float _internal_min() const;
  696. void _internal_set_min(float value);
  697. public:
  698. // float max = 2;
  699. void clear_max();
  700. float max() const;
  701. void set_max(float value);
  702. private:
  703. float _internal_max() const;
  704. void _internal_set_max(float value);
  705. public:
  706. // @@protoc_insertion_point(class_scope:NavMessage.SpeedLimit)
  707. private:
  708. class _Internal;
  709. template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
  710. typedef void InternalArenaConstructable_;
  711. typedef void DestructorSkippable_;
  712. float min_;
  713. float max_;
  714. mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
  715. friend struct ::TableStruct_message_2eproto;
  716. };
  717. // -------------------------------------------------------------------
  718. class Pose2d PROTOBUF_FINAL :
  719. public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:NavMessage.Pose2d) */ {
  720. public:
  721. inline Pose2d() : Pose2d(nullptr) {}
  722. virtual ~Pose2d();
  723. Pose2d(const Pose2d& from);
  724. Pose2d(Pose2d&& from) noexcept
  725. : Pose2d() {
  726. *this = ::std::move(from);
  727. }
  728. inline Pose2d& operator=(const Pose2d& from) {
  729. CopyFrom(from);
  730. return *this;
  731. }
  732. inline Pose2d& operator=(Pose2d&& from) noexcept {
  733. if (GetArena() == from.GetArena()) {
  734. if (this != &from) InternalSwap(&from);
  735. } else {
  736. CopyFrom(from);
  737. }
  738. return *this;
  739. }
  740. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
  741. return GetDescriptor();
  742. }
  743. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
  744. return GetMetadataStatic().descriptor;
  745. }
  746. static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
  747. return GetMetadataStatic().reflection;
  748. }
  749. static const Pose2d& default_instance();
  750. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  751. static inline const Pose2d* internal_default_instance() {
  752. return reinterpret_cast<const Pose2d*>(
  753. &_Pose2d_default_instance_);
  754. }
  755. static constexpr int kIndexInFileMessages =
  756. 4;
  757. friend void swap(Pose2d& a, Pose2d& b) {
  758. a.Swap(&b);
  759. }
  760. inline void Swap(Pose2d* other) {
  761. if (other == this) return;
  762. if (GetArena() == other->GetArena()) {
  763. InternalSwap(other);
  764. } else {
  765. ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
  766. }
  767. }
  768. void UnsafeArenaSwap(Pose2d* other) {
  769. if (other == this) return;
  770. GOOGLE_DCHECK(GetArena() == other->GetArena());
  771. InternalSwap(other);
  772. }
  773. // implements Message ----------------------------------------------
  774. inline Pose2d* New() const final {
  775. return CreateMaybeMessage<Pose2d>(nullptr);
  776. }
  777. Pose2d* New(::PROTOBUF_NAMESPACE_ID::Arena* arena) const final {
  778. return CreateMaybeMessage<Pose2d>(arena);
  779. }
  780. void CopyFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
  781. void MergeFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
  782. void CopyFrom(const Pose2d& from);
  783. void MergeFrom(const Pose2d& from);
  784. PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
  785. bool IsInitialized() const final;
  786. size_t ByteSizeLong() const final;
  787. const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
  788. ::PROTOBUF_NAMESPACE_ID::uint8* _InternalSerialize(
  789. ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
  790. int GetCachedSize() const final { return _cached_size_.Get(); }
  791. private:
  792. inline void SharedCtor();
  793. inline void SharedDtor();
  794. void SetCachedSize(int size) const final;
  795. void InternalSwap(Pose2d* other);
  796. friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
  797. static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
  798. return "NavMessage.Pose2d";
  799. }
  800. protected:
  801. explicit Pose2d(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  802. private:
  803. static void ArenaDtor(void* object);
  804. inline void RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  805. public:
  806. ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
  807. private:
  808. static ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadataStatic() {
  809. ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(&::descriptor_table_message_2eproto);
  810. return ::descriptor_table_message_2eproto.file_level_metadata[kIndexInFileMessages];
  811. }
  812. public:
  813. // nested types ----------------------------------------------------
  814. // accessors -------------------------------------------------------
  815. enum : int {
  816. kXFieldNumber = 1,
  817. kYFieldNumber = 2,
  818. kThetaFieldNumber = 3,
  819. };
  820. // float x = 1;
  821. void clear_x();
  822. float x() const;
  823. void set_x(float value);
  824. private:
  825. float _internal_x() const;
  826. void _internal_set_x(float value);
  827. public:
  828. // float y = 2;
  829. void clear_y();
  830. float y() const;
  831. void set_y(float value);
  832. private:
  833. float _internal_y() const;
  834. void _internal_set_y(float value);
  835. public:
  836. // float theta = 3;
  837. void clear_theta();
  838. float theta() const;
  839. void set_theta(float value);
  840. private:
  841. float _internal_theta() const;
  842. void _internal_set_theta(float value);
  843. public:
  844. // @@protoc_insertion_point(class_scope:NavMessage.Pose2d)
  845. private:
  846. class _Internal;
  847. template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
  848. typedef void InternalArenaConstructable_;
  849. typedef void DestructorSkippable_;
  850. float x_;
  851. float y_;
  852. float theta_;
  853. mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
  854. friend struct ::TableStruct_message_2eproto;
  855. };
  856. // -------------------------------------------------------------------
  857. class PathNode PROTOBUF_FINAL :
  858. public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:NavMessage.PathNode) */ {
  859. public:
  860. inline PathNode() : PathNode(nullptr) {}
  861. virtual ~PathNode();
  862. PathNode(const PathNode& from);
  863. PathNode(PathNode&& from) noexcept
  864. : PathNode() {
  865. *this = ::std::move(from);
  866. }
  867. inline PathNode& operator=(const PathNode& from) {
  868. CopyFrom(from);
  869. return *this;
  870. }
  871. inline PathNode& operator=(PathNode&& from) noexcept {
  872. if (GetArena() == from.GetArena()) {
  873. if (this != &from) InternalSwap(&from);
  874. } else {
  875. CopyFrom(from);
  876. }
  877. return *this;
  878. }
  879. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
  880. return GetDescriptor();
  881. }
  882. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
  883. return GetMetadataStatic().descriptor;
  884. }
  885. static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
  886. return GetMetadataStatic().reflection;
  887. }
  888. static const PathNode& default_instance();
  889. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  890. static inline const PathNode* internal_default_instance() {
  891. return reinterpret_cast<const PathNode*>(
  892. &_PathNode_default_instance_);
  893. }
  894. static constexpr int kIndexInFileMessages =
  895. 5;
  896. friend void swap(PathNode& a, PathNode& b) {
  897. a.Swap(&b);
  898. }
  899. inline void Swap(PathNode* other) {
  900. if (other == this) return;
  901. if (GetArena() == other->GetArena()) {
  902. InternalSwap(other);
  903. } else {
  904. ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
  905. }
  906. }
  907. void UnsafeArenaSwap(PathNode* other) {
  908. if (other == this) return;
  909. GOOGLE_DCHECK(GetArena() == other->GetArena());
  910. InternalSwap(other);
  911. }
  912. // implements Message ----------------------------------------------
  913. inline PathNode* New() const final {
  914. return CreateMaybeMessage<PathNode>(nullptr);
  915. }
  916. PathNode* New(::PROTOBUF_NAMESPACE_ID::Arena* arena) const final {
  917. return CreateMaybeMessage<PathNode>(arena);
  918. }
  919. void CopyFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
  920. void MergeFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
  921. void CopyFrom(const PathNode& from);
  922. void MergeFrom(const PathNode& from);
  923. PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
  924. bool IsInitialized() const final;
  925. size_t ByteSizeLong() const final;
  926. const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
  927. ::PROTOBUF_NAMESPACE_ID::uint8* _InternalSerialize(
  928. ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
  929. int GetCachedSize() const final { return _cached_size_.Get(); }
  930. private:
  931. inline void SharedCtor();
  932. inline void SharedDtor();
  933. void SetCachedSize(int size) const final;
  934. void InternalSwap(PathNode* other);
  935. friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
  936. static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
  937. return "NavMessage.PathNode";
  938. }
  939. protected:
  940. explicit PathNode(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  941. private:
  942. static void ArenaDtor(void* object);
  943. inline void RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  944. public:
  945. ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
  946. private:
  947. static ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadataStatic() {
  948. ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(&::descriptor_table_message_2eproto);
  949. return ::descriptor_table_message_2eproto.file_level_metadata[kIndexInFileMessages];
  950. }
  951. public:
  952. // nested types ----------------------------------------------------
  953. // accessors -------------------------------------------------------
  954. enum : int {
  955. kPoseFieldNumber = 1,
  956. kAccuracyFieldNumber = 2,
  957. };
  958. // .NavMessage.Pose2d pose = 1;
  959. bool has_pose() const;
  960. private:
  961. bool _internal_has_pose() const;
  962. public:
  963. void clear_pose();
  964. const ::NavMessage::Pose2d& pose() const;
  965. ::NavMessage::Pose2d* release_pose();
  966. ::NavMessage::Pose2d* mutable_pose();
  967. void set_allocated_pose(::NavMessage::Pose2d* pose);
  968. private:
  969. const ::NavMessage::Pose2d& _internal_pose() const;
  970. ::NavMessage::Pose2d* _internal_mutable_pose();
  971. public:
  972. void unsafe_arena_set_allocated_pose(
  973. ::NavMessage::Pose2d* pose);
  974. ::NavMessage::Pose2d* unsafe_arena_release_pose();
  975. // .NavMessage.Pose2d accuracy = 2;
  976. bool has_accuracy() const;
  977. private:
  978. bool _internal_has_accuracy() const;
  979. public:
  980. void clear_accuracy();
  981. const ::NavMessage::Pose2d& accuracy() const;
  982. ::NavMessage::Pose2d* release_accuracy();
  983. ::NavMessage::Pose2d* mutable_accuracy();
  984. void set_allocated_accuracy(::NavMessage::Pose2d* accuracy);
  985. private:
  986. const ::NavMessage::Pose2d& _internal_accuracy() const;
  987. ::NavMessage::Pose2d* _internal_mutable_accuracy();
  988. public:
  989. void unsafe_arena_set_allocated_accuracy(
  990. ::NavMessage::Pose2d* accuracy);
  991. ::NavMessage::Pose2d* unsafe_arena_release_accuracy();
  992. // @@protoc_insertion_point(class_scope:NavMessage.PathNode)
  993. private:
  994. class _Internal;
  995. template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
  996. typedef void InternalArenaConstructable_;
  997. typedef void DestructorSkippable_;
  998. ::NavMessage::Pose2d* pose_;
  999. ::NavMessage::Pose2d* accuracy_;
  1000. mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
  1001. friend struct ::TableStruct_message_2eproto;
  1002. };
  1003. // -------------------------------------------------------------------
  1004. class Trajectory PROTOBUF_FINAL :
  1005. public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:NavMessage.Trajectory) */ {
  1006. public:
  1007. inline Trajectory() : Trajectory(nullptr) {}
  1008. virtual ~Trajectory();
  1009. Trajectory(const Trajectory& from);
  1010. Trajectory(Trajectory&& from) noexcept
  1011. : Trajectory() {
  1012. *this = ::std::move(from);
  1013. }
  1014. inline Trajectory& operator=(const Trajectory& from) {
  1015. CopyFrom(from);
  1016. return *this;
  1017. }
  1018. inline Trajectory& operator=(Trajectory&& from) noexcept {
  1019. if (GetArena() == from.GetArena()) {
  1020. if (this != &from) InternalSwap(&from);
  1021. } else {
  1022. CopyFrom(from);
  1023. }
  1024. return *this;
  1025. }
  1026. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
  1027. return GetDescriptor();
  1028. }
  1029. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
  1030. return GetMetadataStatic().descriptor;
  1031. }
  1032. static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
  1033. return GetMetadataStatic().reflection;
  1034. }
  1035. static const Trajectory& default_instance();
  1036. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1037. static inline const Trajectory* internal_default_instance() {
  1038. return reinterpret_cast<const Trajectory*>(
  1039. &_Trajectory_default_instance_);
  1040. }
  1041. static constexpr int kIndexInFileMessages =
  1042. 6;
  1043. friend void swap(Trajectory& a, Trajectory& b) {
  1044. a.Swap(&b);
  1045. }
  1046. inline void Swap(Trajectory* other) {
  1047. if (other == this) return;
  1048. if (GetArena() == other->GetArena()) {
  1049. InternalSwap(other);
  1050. } else {
  1051. ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
  1052. }
  1053. }
  1054. void UnsafeArenaSwap(Trajectory* other) {
  1055. if (other == this) return;
  1056. GOOGLE_DCHECK(GetArena() == other->GetArena());
  1057. InternalSwap(other);
  1058. }
  1059. // implements Message ----------------------------------------------
  1060. inline Trajectory* New() const final {
  1061. return CreateMaybeMessage<Trajectory>(nullptr);
  1062. }
  1063. Trajectory* New(::PROTOBUF_NAMESPACE_ID::Arena* arena) const final {
  1064. return CreateMaybeMessage<Trajectory>(arena);
  1065. }
  1066. void CopyFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
  1067. void MergeFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
  1068. void CopyFrom(const Trajectory& from);
  1069. void MergeFrom(const Trajectory& from);
  1070. PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
  1071. bool IsInitialized() const final;
  1072. size_t ByteSizeLong() const final;
  1073. const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
  1074. ::PROTOBUF_NAMESPACE_ID::uint8* _InternalSerialize(
  1075. ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
  1076. int GetCachedSize() const final { return _cached_size_.Get(); }
  1077. private:
  1078. inline void SharedCtor();
  1079. inline void SharedDtor();
  1080. void SetCachedSize(int size) const final;
  1081. void InternalSwap(Trajectory* other);
  1082. friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
  1083. static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
  1084. return "NavMessage.Trajectory";
  1085. }
  1086. protected:
  1087. explicit Trajectory(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  1088. private:
  1089. static void ArenaDtor(void* object);
  1090. inline void RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  1091. public:
  1092. ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
  1093. private:
  1094. static ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadataStatic() {
  1095. ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(&::descriptor_table_message_2eproto);
  1096. return ::descriptor_table_message_2eproto.file_level_metadata[kIndexInFileMessages];
  1097. }
  1098. public:
  1099. // nested types ----------------------------------------------------
  1100. // accessors -------------------------------------------------------
  1101. enum : int {
  1102. kPosesFieldNumber = 1,
  1103. };
  1104. // repeated .NavMessage.Pose2d poses = 1;
  1105. int poses_size() const;
  1106. private:
  1107. int _internal_poses_size() const;
  1108. public:
  1109. void clear_poses();
  1110. ::NavMessage::Pose2d* mutable_poses(int index);
  1111. ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::NavMessage::Pose2d >*
  1112. mutable_poses();
  1113. private:
  1114. const ::NavMessage::Pose2d& _internal_poses(int index) const;
  1115. ::NavMessage::Pose2d* _internal_add_poses();
  1116. public:
  1117. const ::NavMessage::Pose2d& poses(int index) const;
  1118. ::NavMessage::Pose2d* add_poses();
  1119. const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::NavMessage::Pose2d >&
  1120. poses() const;
  1121. // @@protoc_insertion_point(class_scope:NavMessage.Trajectory)
  1122. private:
  1123. class _Internal;
  1124. template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
  1125. typedef void InternalArenaConstructable_;
  1126. typedef void DestructorSkippable_;
  1127. ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::NavMessage::Pose2d > poses_;
  1128. mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
  1129. friend struct ::TableStruct_message_2eproto;
  1130. };
  1131. // -------------------------------------------------------------------
  1132. class NewAction PROTOBUF_FINAL :
  1133. public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:NavMessage.NewAction) */ {
  1134. public:
  1135. inline NewAction() : NewAction(nullptr) {}
  1136. virtual ~NewAction();
  1137. NewAction(const NewAction& from);
  1138. NewAction(NewAction&& from) noexcept
  1139. : NewAction() {
  1140. *this = ::std::move(from);
  1141. }
  1142. inline NewAction& operator=(const NewAction& from) {
  1143. CopyFrom(from);
  1144. return *this;
  1145. }
  1146. inline NewAction& operator=(NewAction&& from) noexcept {
  1147. if (GetArena() == from.GetArena()) {
  1148. if (this != &from) InternalSwap(&from);
  1149. } else {
  1150. CopyFrom(from);
  1151. }
  1152. return *this;
  1153. }
  1154. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
  1155. return GetDescriptor();
  1156. }
  1157. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
  1158. return GetMetadataStatic().descriptor;
  1159. }
  1160. static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
  1161. return GetMetadataStatic().reflection;
  1162. }
  1163. static const NewAction& default_instance();
  1164. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1165. static inline const NewAction* internal_default_instance() {
  1166. return reinterpret_cast<const NewAction*>(
  1167. &_NewAction_default_instance_);
  1168. }
  1169. static constexpr int kIndexInFileMessages =
  1170. 7;
  1171. friend void swap(NewAction& a, NewAction& b) {
  1172. a.Swap(&b);
  1173. }
  1174. inline void Swap(NewAction* other) {
  1175. if (other == this) return;
  1176. if (GetArena() == other->GetArena()) {
  1177. InternalSwap(other);
  1178. } else {
  1179. ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
  1180. }
  1181. }
  1182. void UnsafeArenaSwap(NewAction* other) {
  1183. if (other == this) return;
  1184. GOOGLE_DCHECK(GetArena() == other->GetArena());
  1185. InternalSwap(other);
  1186. }
  1187. // implements Message ----------------------------------------------
  1188. inline NewAction* New() const final {
  1189. return CreateMaybeMessage<NewAction>(nullptr);
  1190. }
  1191. NewAction* New(::PROTOBUF_NAMESPACE_ID::Arena* arena) const final {
  1192. return CreateMaybeMessage<NewAction>(arena);
  1193. }
  1194. void CopyFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
  1195. void MergeFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
  1196. void CopyFrom(const NewAction& from);
  1197. void MergeFrom(const NewAction& from);
  1198. PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
  1199. bool IsInitialized() const final;
  1200. size_t ByteSizeLong() const final;
  1201. const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
  1202. ::PROTOBUF_NAMESPACE_ID::uint8* _InternalSerialize(
  1203. ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
  1204. int GetCachedSize() const final { return _cached_size_.Get(); }
  1205. private:
  1206. inline void SharedCtor();
  1207. inline void SharedDtor();
  1208. void SetCachedSize(int size) const final;
  1209. void InternalSwap(NewAction* other);
  1210. friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
  1211. static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
  1212. return "NavMessage.NewAction";
  1213. }
  1214. protected:
  1215. explicit NewAction(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  1216. private:
  1217. static void ArenaDtor(void* object);
  1218. inline void RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  1219. public:
  1220. ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
  1221. private:
  1222. static ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadataStatic() {
  1223. ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(&::descriptor_table_message_2eproto);
  1224. return ::descriptor_table_message_2eproto.file_level_metadata[kIndexInFileMessages];
  1225. }
  1226. public:
  1227. // nested types ----------------------------------------------------
  1228. // accessors -------------------------------------------------------
  1229. enum : int {
  1230. kPathNodesFieldNumber = 5,
  1231. kSpaceNodeFieldNumber = 2,
  1232. kPassNodeFieldNumber = 3,
  1233. kStreetNodeFieldNumber = 4,
  1234. kInOutVLimitFieldNumber = 6,
  1235. kNodeVelocityLimitFieldNumber = 7,
  1236. kNodeAngularLimitFieldNumber = 8,
  1237. kAdjustVelocitylimitFieldNumber = 9,
  1238. kAdjustHorizonLimitFieldNumber = 10,
  1239. kTypeFieldNumber = 1,
  1240. kWheelbaseFieldNumber = 11,
  1241. kChangedModeFieldNumber = 12,
  1242. };
  1243. // repeated .NavMessage.PathNode pathNodes = 5;
  1244. int pathnodes_size() const;
  1245. private:
  1246. int _internal_pathnodes_size() const;
  1247. public:
  1248. void clear_pathnodes();
  1249. ::NavMessage::PathNode* mutable_pathnodes(int index);
  1250. ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::NavMessage::PathNode >*
  1251. mutable_pathnodes();
  1252. private:
  1253. const ::NavMessage::PathNode& _internal_pathnodes(int index) const;
  1254. ::NavMessage::PathNode* _internal_add_pathnodes();
  1255. public:
  1256. const ::NavMessage::PathNode& pathnodes(int index) const;
  1257. ::NavMessage::PathNode* add_pathnodes();
  1258. const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::NavMessage::PathNode >&
  1259. pathnodes() const;
  1260. // .NavMessage.PathNode spaceNode = 2;
  1261. bool has_spacenode() const;
  1262. private:
  1263. bool _internal_has_spacenode() const;
  1264. public:
  1265. void clear_spacenode();
  1266. const ::NavMessage::PathNode& spacenode() const;
  1267. ::NavMessage::PathNode* release_spacenode();
  1268. ::NavMessage::PathNode* mutable_spacenode();
  1269. void set_allocated_spacenode(::NavMessage::PathNode* spacenode);
  1270. private:
  1271. const ::NavMessage::PathNode& _internal_spacenode() const;
  1272. ::NavMessage::PathNode* _internal_mutable_spacenode();
  1273. public:
  1274. void unsafe_arena_set_allocated_spacenode(
  1275. ::NavMessage::PathNode* spacenode);
  1276. ::NavMessage::PathNode* unsafe_arena_release_spacenode();
  1277. // .NavMessage.PathNode passNode = 3;
  1278. bool has_passnode() const;
  1279. private:
  1280. bool _internal_has_passnode() const;
  1281. public:
  1282. void clear_passnode();
  1283. const ::NavMessage::PathNode& passnode() const;
  1284. ::NavMessage::PathNode* release_passnode();
  1285. ::NavMessage::PathNode* mutable_passnode();
  1286. void set_allocated_passnode(::NavMessage::PathNode* passnode);
  1287. private:
  1288. const ::NavMessage::PathNode& _internal_passnode() const;
  1289. ::NavMessage::PathNode* _internal_mutable_passnode();
  1290. public:
  1291. void unsafe_arena_set_allocated_passnode(
  1292. ::NavMessage::PathNode* passnode);
  1293. ::NavMessage::PathNode* unsafe_arena_release_passnode();
  1294. // .NavMessage.PathNode streetNode = 4;
  1295. bool has_streetnode() const;
  1296. private:
  1297. bool _internal_has_streetnode() const;
  1298. public:
  1299. void clear_streetnode();
  1300. const ::NavMessage::PathNode& streetnode() const;
  1301. ::NavMessage::PathNode* release_streetnode();
  1302. ::NavMessage::PathNode* mutable_streetnode();
  1303. void set_allocated_streetnode(::NavMessage::PathNode* streetnode);
  1304. private:
  1305. const ::NavMessage::PathNode& _internal_streetnode() const;
  1306. ::NavMessage::PathNode* _internal_mutable_streetnode();
  1307. public:
  1308. void unsafe_arena_set_allocated_streetnode(
  1309. ::NavMessage::PathNode* streetnode);
  1310. ::NavMessage::PathNode* unsafe_arena_release_streetnode();
  1311. // .NavMessage.SpeedLimit InOutVLimit = 6;
  1312. bool has_inoutvlimit() const;
  1313. private:
  1314. bool _internal_has_inoutvlimit() const;
  1315. public:
  1316. void clear_inoutvlimit();
  1317. const ::NavMessage::SpeedLimit& inoutvlimit() const;
  1318. ::NavMessage::SpeedLimit* release_inoutvlimit();
  1319. ::NavMessage::SpeedLimit* mutable_inoutvlimit();
  1320. void set_allocated_inoutvlimit(::NavMessage::SpeedLimit* inoutvlimit);
  1321. private:
  1322. const ::NavMessage::SpeedLimit& _internal_inoutvlimit() const;
  1323. ::NavMessage::SpeedLimit* _internal_mutable_inoutvlimit();
  1324. public:
  1325. void unsafe_arena_set_allocated_inoutvlimit(
  1326. ::NavMessage::SpeedLimit* inoutvlimit);
  1327. ::NavMessage::SpeedLimit* unsafe_arena_release_inoutvlimit();
  1328. // .NavMessage.SpeedLimit NodeVelocityLimit = 7;
  1329. bool has_nodevelocitylimit() const;
  1330. private:
  1331. bool _internal_has_nodevelocitylimit() const;
  1332. public:
  1333. void clear_nodevelocitylimit();
  1334. const ::NavMessage::SpeedLimit& nodevelocitylimit() const;
  1335. ::NavMessage::SpeedLimit* release_nodevelocitylimit();
  1336. ::NavMessage::SpeedLimit* mutable_nodevelocitylimit();
  1337. void set_allocated_nodevelocitylimit(::NavMessage::SpeedLimit* nodevelocitylimit);
  1338. private:
  1339. const ::NavMessage::SpeedLimit& _internal_nodevelocitylimit() const;
  1340. ::NavMessage::SpeedLimit* _internal_mutable_nodevelocitylimit();
  1341. public:
  1342. void unsafe_arena_set_allocated_nodevelocitylimit(
  1343. ::NavMessage::SpeedLimit* nodevelocitylimit);
  1344. ::NavMessage::SpeedLimit* unsafe_arena_release_nodevelocitylimit();
  1345. // .NavMessage.SpeedLimit NodeAngularLimit = 8;
  1346. bool has_nodeangularlimit() const;
  1347. private:
  1348. bool _internal_has_nodeangularlimit() const;
  1349. public:
  1350. void clear_nodeangularlimit();
  1351. const ::NavMessage::SpeedLimit& nodeangularlimit() const;
  1352. ::NavMessage::SpeedLimit* release_nodeangularlimit();
  1353. ::NavMessage::SpeedLimit* mutable_nodeangularlimit();
  1354. void set_allocated_nodeangularlimit(::NavMessage::SpeedLimit* nodeangularlimit);
  1355. private:
  1356. const ::NavMessage::SpeedLimit& _internal_nodeangularlimit() const;
  1357. ::NavMessage::SpeedLimit* _internal_mutable_nodeangularlimit();
  1358. public:
  1359. void unsafe_arena_set_allocated_nodeangularlimit(
  1360. ::NavMessage::SpeedLimit* nodeangularlimit);
  1361. ::NavMessage::SpeedLimit* unsafe_arena_release_nodeangularlimit();
  1362. // .NavMessage.SpeedLimit adjustVelocitylimit = 9;
  1363. bool has_adjustvelocitylimit() const;
  1364. private:
  1365. bool _internal_has_adjustvelocitylimit() const;
  1366. public:
  1367. void clear_adjustvelocitylimit();
  1368. const ::NavMessage::SpeedLimit& adjustvelocitylimit() const;
  1369. ::NavMessage::SpeedLimit* release_adjustvelocitylimit();
  1370. ::NavMessage::SpeedLimit* mutable_adjustvelocitylimit();
  1371. void set_allocated_adjustvelocitylimit(::NavMessage::SpeedLimit* adjustvelocitylimit);
  1372. private:
  1373. const ::NavMessage::SpeedLimit& _internal_adjustvelocitylimit() const;
  1374. ::NavMessage::SpeedLimit* _internal_mutable_adjustvelocitylimit();
  1375. public:
  1376. void unsafe_arena_set_allocated_adjustvelocitylimit(
  1377. ::NavMessage::SpeedLimit* adjustvelocitylimit);
  1378. ::NavMessage::SpeedLimit* unsafe_arena_release_adjustvelocitylimit();
  1379. // .NavMessage.SpeedLimit adjustHorizonLimit = 10;
  1380. bool has_adjusthorizonlimit() const;
  1381. private:
  1382. bool _internal_has_adjusthorizonlimit() const;
  1383. public:
  1384. void clear_adjusthorizonlimit();
  1385. const ::NavMessage::SpeedLimit& adjusthorizonlimit() const;
  1386. ::NavMessage::SpeedLimit* release_adjusthorizonlimit();
  1387. ::NavMessage::SpeedLimit* mutable_adjusthorizonlimit();
  1388. void set_allocated_adjusthorizonlimit(::NavMessage::SpeedLimit* adjusthorizonlimit);
  1389. private:
  1390. const ::NavMessage::SpeedLimit& _internal_adjusthorizonlimit() const;
  1391. ::NavMessage::SpeedLimit* _internal_mutable_adjusthorizonlimit();
  1392. public:
  1393. void unsafe_arena_set_allocated_adjusthorizonlimit(
  1394. ::NavMessage::SpeedLimit* adjusthorizonlimit);
  1395. ::NavMessage::SpeedLimit* unsafe_arena_release_adjusthorizonlimit();
  1396. // int32 type = 1;
  1397. void clear_type();
  1398. ::PROTOBUF_NAMESPACE_ID::int32 type() const;
  1399. void set_type(::PROTOBUF_NAMESPACE_ID::int32 value);
  1400. private:
  1401. ::PROTOBUF_NAMESPACE_ID::int32 _internal_type() const;
  1402. void _internal_set_type(::PROTOBUF_NAMESPACE_ID::int32 value);
  1403. public:
  1404. // float wheelbase = 11;
  1405. void clear_wheelbase();
  1406. float wheelbase() const;
  1407. void set_wheelbase(float value);
  1408. private:
  1409. float _internal_wheelbase() const;
  1410. void _internal_set_wheelbase(float value);
  1411. public:
  1412. // int32 changedMode = 12;
  1413. void clear_changedmode();
  1414. ::PROTOBUF_NAMESPACE_ID::int32 changedmode() const;
  1415. void set_changedmode(::PROTOBUF_NAMESPACE_ID::int32 value);
  1416. private:
  1417. ::PROTOBUF_NAMESPACE_ID::int32 _internal_changedmode() const;
  1418. void _internal_set_changedmode(::PROTOBUF_NAMESPACE_ID::int32 value);
  1419. public:
  1420. // @@protoc_insertion_point(class_scope:NavMessage.NewAction)
  1421. private:
  1422. class _Internal;
  1423. template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
  1424. typedef void InternalArenaConstructable_;
  1425. typedef void DestructorSkippable_;
  1426. ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::NavMessage::PathNode > pathnodes_;
  1427. ::NavMessage::PathNode* spacenode_;
  1428. ::NavMessage::PathNode* passnode_;
  1429. ::NavMessage::PathNode* streetnode_;
  1430. ::NavMessage::SpeedLimit* inoutvlimit_;
  1431. ::NavMessage::SpeedLimit* nodevelocitylimit_;
  1432. ::NavMessage::SpeedLimit* nodeangularlimit_;
  1433. ::NavMessage::SpeedLimit* adjustvelocitylimit_;
  1434. ::NavMessage::SpeedLimit* adjusthorizonlimit_;
  1435. ::PROTOBUF_NAMESPACE_ID::int32 type_;
  1436. float wheelbase_;
  1437. ::PROTOBUF_NAMESPACE_ID::int32 changedmode_;
  1438. mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
  1439. friend struct ::TableStruct_message_2eproto;
  1440. };
  1441. // -------------------------------------------------------------------
  1442. class NavCmd PROTOBUF_FINAL :
  1443. public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:NavMessage.NavCmd) */ {
  1444. public:
  1445. inline NavCmd() : NavCmd(nullptr) {}
  1446. virtual ~NavCmd();
  1447. NavCmd(const NavCmd& from);
  1448. NavCmd(NavCmd&& from) noexcept
  1449. : NavCmd() {
  1450. *this = ::std::move(from);
  1451. }
  1452. inline NavCmd& operator=(const NavCmd& from) {
  1453. CopyFrom(from);
  1454. return *this;
  1455. }
  1456. inline NavCmd& operator=(NavCmd&& from) noexcept {
  1457. if (GetArena() == from.GetArena()) {
  1458. if (this != &from) InternalSwap(&from);
  1459. } else {
  1460. CopyFrom(from);
  1461. }
  1462. return *this;
  1463. }
  1464. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
  1465. return GetDescriptor();
  1466. }
  1467. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
  1468. return GetMetadataStatic().descriptor;
  1469. }
  1470. static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
  1471. return GetMetadataStatic().reflection;
  1472. }
  1473. static const NavCmd& default_instance();
  1474. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1475. static inline const NavCmd* internal_default_instance() {
  1476. return reinterpret_cast<const NavCmd*>(
  1477. &_NavCmd_default_instance_);
  1478. }
  1479. static constexpr int kIndexInFileMessages =
  1480. 8;
  1481. friend void swap(NavCmd& a, NavCmd& b) {
  1482. a.Swap(&b);
  1483. }
  1484. inline void Swap(NavCmd* other) {
  1485. if (other == this) return;
  1486. if (GetArena() == other->GetArena()) {
  1487. InternalSwap(other);
  1488. } else {
  1489. ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
  1490. }
  1491. }
  1492. void UnsafeArenaSwap(NavCmd* other) {
  1493. if (other == this) return;
  1494. GOOGLE_DCHECK(GetArena() == other->GetArena());
  1495. InternalSwap(other);
  1496. }
  1497. // implements Message ----------------------------------------------
  1498. inline NavCmd* New() const final {
  1499. return CreateMaybeMessage<NavCmd>(nullptr);
  1500. }
  1501. NavCmd* New(::PROTOBUF_NAMESPACE_ID::Arena* arena) const final {
  1502. return CreateMaybeMessage<NavCmd>(arena);
  1503. }
  1504. void CopyFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
  1505. void MergeFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
  1506. void CopyFrom(const NavCmd& from);
  1507. void MergeFrom(const NavCmd& from);
  1508. PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
  1509. bool IsInitialized() const final;
  1510. size_t ByteSizeLong() const final;
  1511. const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
  1512. ::PROTOBUF_NAMESPACE_ID::uint8* _InternalSerialize(
  1513. ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
  1514. int GetCachedSize() const final { return _cached_size_.Get(); }
  1515. private:
  1516. inline void SharedCtor();
  1517. inline void SharedDtor();
  1518. void SetCachedSize(int size) const final;
  1519. void InternalSwap(NavCmd* other);
  1520. friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
  1521. static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
  1522. return "NavMessage.NavCmd";
  1523. }
  1524. protected:
  1525. explicit NavCmd(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  1526. private:
  1527. static void ArenaDtor(void* object);
  1528. inline void RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  1529. public:
  1530. ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
  1531. private:
  1532. static ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadataStatic() {
  1533. ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(&::descriptor_table_message_2eproto);
  1534. return ::descriptor_table_message_2eproto.file_level_metadata[kIndexInFileMessages];
  1535. }
  1536. public:
  1537. // nested types ----------------------------------------------------
  1538. // accessors -------------------------------------------------------
  1539. enum : int {
  1540. kNewActionsFieldNumber = 5,
  1541. kKeyFieldNumber = 2,
  1542. kActionFieldNumber = 1,
  1543. };
  1544. // repeated .NavMessage.NewAction newActions = 5;
  1545. int newactions_size() const;
  1546. private:
  1547. int _internal_newactions_size() const;
  1548. public:
  1549. void clear_newactions();
  1550. ::NavMessage::NewAction* mutable_newactions(int index);
  1551. ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::NavMessage::NewAction >*
  1552. mutable_newactions();
  1553. private:
  1554. const ::NavMessage::NewAction& _internal_newactions(int index) const;
  1555. ::NavMessage::NewAction* _internal_add_newactions();
  1556. public:
  1557. const ::NavMessage::NewAction& newactions(int index) const;
  1558. ::NavMessage::NewAction* add_newactions();
  1559. const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::NavMessage::NewAction >&
  1560. newactions() const;
  1561. // string key = 2;
  1562. void clear_key();
  1563. const std::string& key() const;
  1564. void set_key(const std::string& value);
  1565. void set_key(std::string&& value);
  1566. void set_key(const char* value);
  1567. void set_key(const char* value, size_t size);
  1568. std::string* mutable_key();
  1569. std::string* release_key();
  1570. void set_allocated_key(std::string* key);
  1571. private:
  1572. const std::string& _internal_key() const;
  1573. void _internal_set_key(const std::string& value);
  1574. std::string* _internal_mutable_key();
  1575. public:
  1576. // int32 action = 1;
  1577. void clear_action();
  1578. ::PROTOBUF_NAMESPACE_ID::int32 action() const;
  1579. void set_action(::PROTOBUF_NAMESPACE_ID::int32 value);
  1580. private:
  1581. ::PROTOBUF_NAMESPACE_ID::int32 _internal_action() const;
  1582. void _internal_set_action(::PROTOBUF_NAMESPACE_ID::int32 value);
  1583. public:
  1584. // @@protoc_insertion_point(class_scope:NavMessage.NavCmd)
  1585. private:
  1586. class _Internal;
  1587. template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
  1588. typedef void InternalArenaConstructable_;
  1589. typedef void DestructorSkippable_;
  1590. ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::NavMessage::NewAction > newactions_;
  1591. ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr key_;
  1592. ::PROTOBUF_NAMESPACE_ID::int32 action_;
  1593. mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
  1594. friend struct ::TableStruct_message_2eproto;
  1595. };
  1596. // -------------------------------------------------------------------
  1597. class NavStatu PROTOBUF_FINAL :
  1598. public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:NavMessage.NavStatu) */ {
  1599. public:
  1600. inline NavStatu() : NavStatu(nullptr) {}
  1601. virtual ~NavStatu();
  1602. NavStatu(const NavStatu& from);
  1603. NavStatu(NavStatu&& from) noexcept
  1604. : NavStatu() {
  1605. *this = ::std::move(from);
  1606. }
  1607. inline NavStatu& operator=(const NavStatu& from) {
  1608. CopyFrom(from);
  1609. return *this;
  1610. }
  1611. inline NavStatu& operator=(NavStatu&& from) noexcept {
  1612. if (GetArena() == from.GetArena()) {
  1613. if (this != &from) InternalSwap(&from);
  1614. } else {
  1615. CopyFrom(from);
  1616. }
  1617. return *this;
  1618. }
  1619. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
  1620. return GetDescriptor();
  1621. }
  1622. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
  1623. return GetMetadataStatic().descriptor;
  1624. }
  1625. static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
  1626. return GetMetadataStatic().reflection;
  1627. }
  1628. static const NavStatu& default_instance();
  1629. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1630. static inline const NavStatu* internal_default_instance() {
  1631. return reinterpret_cast<const NavStatu*>(
  1632. &_NavStatu_default_instance_);
  1633. }
  1634. static constexpr int kIndexInFileMessages =
  1635. 9;
  1636. friend void swap(NavStatu& a, NavStatu& b) {
  1637. a.Swap(&b);
  1638. }
  1639. inline void Swap(NavStatu* other) {
  1640. if (other == this) return;
  1641. if (GetArena() == other->GetArena()) {
  1642. InternalSwap(other);
  1643. } else {
  1644. ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
  1645. }
  1646. }
  1647. void UnsafeArenaSwap(NavStatu* other) {
  1648. if (other == this) return;
  1649. GOOGLE_DCHECK(GetArena() == other->GetArena());
  1650. InternalSwap(other);
  1651. }
  1652. // implements Message ----------------------------------------------
  1653. inline NavStatu* New() const final {
  1654. return CreateMaybeMessage<NavStatu>(nullptr);
  1655. }
  1656. NavStatu* New(::PROTOBUF_NAMESPACE_ID::Arena* arena) const final {
  1657. return CreateMaybeMessage<NavStatu>(arena);
  1658. }
  1659. void CopyFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
  1660. void MergeFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
  1661. void CopyFrom(const NavStatu& from);
  1662. void MergeFrom(const NavStatu& from);
  1663. PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
  1664. bool IsInitialized() const final;
  1665. size_t ByteSizeLong() const final;
  1666. const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
  1667. ::PROTOBUF_NAMESPACE_ID::uint8* _InternalSerialize(
  1668. ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
  1669. int GetCachedSize() const final { return _cached_size_.Get(); }
  1670. private:
  1671. inline void SharedCtor();
  1672. inline void SharedDtor();
  1673. void SetCachedSize(int size) const final;
  1674. void InternalSwap(NavStatu* other);
  1675. friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
  1676. static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
  1677. return "NavMessage.NavStatu";
  1678. }
  1679. protected:
  1680. explicit NavStatu(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  1681. private:
  1682. static void ArenaDtor(void* object);
  1683. inline void RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  1684. public:
  1685. ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
  1686. private:
  1687. static ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadataStatic() {
  1688. ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(&::descriptor_table_message_2eproto);
  1689. return ::descriptor_table_message_2eproto.file_level_metadata[kIndexInFileMessages];
  1690. }
  1691. public:
  1692. // nested types ----------------------------------------------------
  1693. // accessors -------------------------------------------------------
  1694. enum : int {
  1695. kKeyFieldNumber = 4,
  1696. kSelectedTrajFieldNumber = 6,
  1697. kPredictTrajFieldNumber = 7,
  1698. kStatuFieldNumber = 1,
  1699. kMainAgvFieldNumber = 2,
  1700. kMoveModeFieldNumber = 3,
  1701. };
  1702. // string key = 4;
  1703. void clear_key();
  1704. const std::string& key() const;
  1705. void set_key(const std::string& value);
  1706. void set_key(std::string&& value);
  1707. void set_key(const char* value);
  1708. void set_key(const char* value, size_t size);
  1709. std::string* mutable_key();
  1710. std::string* release_key();
  1711. void set_allocated_key(std::string* key);
  1712. private:
  1713. const std::string& _internal_key() const;
  1714. void _internal_set_key(const std::string& value);
  1715. std::string* _internal_mutable_key();
  1716. public:
  1717. // .NavMessage.Trajectory selected_traj = 6;
  1718. bool has_selected_traj() const;
  1719. private:
  1720. bool _internal_has_selected_traj() const;
  1721. public:
  1722. void clear_selected_traj();
  1723. const ::NavMessage::Trajectory& selected_traj() const;
  1724. ::NavMessage::Trajectory* release_selected_traj();
  1725. ::NavMessage::Trajectory* mutable_selected_traj();
  1726. void set_allocated_selected_traj(::NavMessage::Trajectory* selected_traj);
  1727. private:
  1728. const ::NavMessage::Trajectory& _internal_selected_traj() const;
  1729. ::NavMessage::Trajectory* _internal_mutable_selected_traj();
  1730. public:
  1731. void unsafe_arena_set_allocated_selected_traj(
  1732. ::NavMessage::Trajectory* selected_traj);
  1733. ::NavMessage::Trajectory* unsafe_arena_release_selected_traj();
  1734. // .NavMessage.Trajectory predict_traj = 7;
  1735. bool has_predict_traj() const;
  1736. private:
  1737. bool _internal_has_predict_traj() const;
  1738. public:
  1739. void clear_predict_traj();
  1740. const ::NavMessage::Trajectory& predict_traj() const;
  1741. ::NavMessage::Trajectory* release_predict_traj();
  1742. ::NavMessage::Trajectory* mutable_predict_traj();
  1743. void set_allocated_predict_traj(::NavMessage::Trajectory* predict_traj);
  1744. private:
  1745. const ::NavMessage::Trajectory& _internal_predict_traj() const;
  1746. ::NavMessage::Trajectory* _internal_mutable_predict_traj();
  1747. public:
  1748. void unsafe_arena_set_allocated_predict_traj(
  1749. ::NavMessage::Trajectory* predict_traj);
  1750. ::NavMessage::Trajectory* unsafe_arena_release_predict_traj();
  1751. // int32 statu = 1;
  1752. void clear_statu();
  1753. ::PROTOBUF_NAMESPACE_ID::int32 statu() const;
  1754. void set_statu(::PROTOBUF_NAMESPACE_ID::int32 value);
  1755. private:
  1756. ::PROTOBUF_NAMESPACE_ID::int32 _internal_statu() const;
  1757. void _internal_set_statu(::PROTOBUF_NAMESPACE_ID::int32 value);
  1758. public:
  1759. // bool main_agv = 2;
  1760. void clear_main_agv();
  1761. bool main_agv() const;
  1762. void set_main_agv(bool value);
  1763. private:
  1764. bool _internal_main_agv() const;
  1765. void _internal_set_main_agv(bool value);
  1766. public:
  1767. // int32 move_mode = 3;
  1768. void clear_move_mode();
  1769. ::PROTOBUF_NAMESPACE_ID::int32 move_mode() const;
  1770. void set_move_mode(::PROTOBUF_NAMESPACE_ID::int32 value);
  1771. private:
  1772. ::PROTOBUF_NAMESPACE_ID::int32 _internal_move_mode() const;
  1773. void _internal_set_move_mode(::PROTOBUF_NAMESPACE_ID::int32 value);
  1774. public:
  1775. // @@protoc_insertion_point(class_scope:NavMessage.NavStatu)
  1776. private:
  1777. class _Internal;
  1778. template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
  1779. typedef void InternalArenaConstructable_;
  1780. typedef void DestructorSkippable_;
  1781. ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr key_;
  1782. ::NavMessage::Trajectory* selected_traj_;
  1783. ::NavMessage::Trajectory* predict_traj_;
  1784. ::PROTOBUF_NAMESPACE_ID::int32 statu_;
  1785. bool main_agv_;
  1786. ::PROTOBUF_NAMESPACE_ID::int32 move_mode_;
  1787. mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
  1788. friend struct ::TableStruct_message_2eproto;
  1789. };
  1790. // -------------------------------------------------------------------
  1791. class RobotStatu PROTOBUF_FINAL :
  1792. public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:NavMessage.RobotStatu) */ {
  1793. public:
  1794. inline RobotStatu() : RobotStatu(nullptr) {}
  1795. virtual ~RobotStatu();
  1796. RobotStatu(const RobotStatu& from);
  1797. RobotStatu(RobotStatu&& from) noexcept
  1798. : RobotStatu() {
  1799. *this = ::std::move(from);
  1800. }
  1801. inline RobotStatu& operator=(const RobotStatu& from) {
  1802. CopyFrom(from);
  1803. return *this;
  1804. }
  1805. inline RobotStatu& operator=(RobotStatu&& from) noexcept {
  1806. if (GetArena() == from.GetArena()) {
  1807. if (this != &from) InternalSwap(&from);
  1808. } else {
  1809. CopyFrom(from);
  1810. }
  1811. return *this;
  1812. }
  1813. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
  1814. return GetDescriptor();
  1815. }
  1816. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
  1817. return GetMetadataStatic().descriptor;
  1818. }
  1819. static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
  1820. return GetMetadataStatic().reflection;
  1821. }
  1822. static const RobotStatu& default_instance();
  1823. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1824. static inline const RobotStatu* internal_default_instance() {
  1825. return reinterpret_cast<const RobotStatu*>(
  1826. &_RobotStatu_default_instance_);
  1827. }
  1828. static constexpr int kIndexInFileMessages =
  1829. 10;
  1830. friend void swap(RobotStatu& a, RobotStatu& b) {
  1831. a.Swap(&b);
  1832. }
  1833. inline void Swap(RobotStatu* other) {
  1834. if (other == this) return;
  1835. if (GetArena() == other->GetArena()) {
  1836. InternalSwap(other);
  1837. } else {
  1838. ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
  1839. }
  1840. }
  1841. void UnsafeArenaSwap(RobotStatu* other) {
  1842. if (other == this) return;
  1843. GOOGLE_DCHECK(GetArena() == other->GetArena());
  1844. InternalSwap(other);
  1845. }
  1846. // implements Message ----------------------------------------------
  1847. inline RobotStatu* New() const final {
  1848. return CreateMaybeMessage<RobotStatu>(nullptr);
  1849. }
  1850. RobotStatu* New(::PROTOBUF_NAMESPACE_ID::Arena* arena) const final {
  1851. return CreateMaybeMessage<RobotStatu>(arena);
  1852. }
  1853. void CopyFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
  1854. void MergeFrom(const ::PROTOBUF_NAMESPACE_ID::Message& from) final;
  1855. void CopyFrom(const RobotStatu& from);
  1856. void MergeFrom(const RobotStatu& from);
  1857. PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
  1858. bool IsInitialized() const final;
  1859. size_t ByteSizeLong() const final;
  1860. const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
  1861. ::PROTOBUF_NAMESPACE_ID::uint8* _InternalSerialize(
  1862. ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
  1863. int GetCachedSize() const final { return _cached_size_.Get(); }
  1864. private:
  1865. inline void SharedCtor();
  1866. inline void SharedDtor();
  1867. void SetCachedSize(int size) const final;
  1868. void InternalSwap(RobotStatu* other);
  1869. friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
  1870. static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
  1871. return "NavMessage.RobotStatu";
  1872. }
  1873. protected:
  1874. explicit RobotStatu(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  1875. private:
  1876. static void ArenaDtor(void* object);
  1877. inline void RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  1878. public:
  1879. ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
  1880. private:
  1881. static ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadataStatic() {
  1882. ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors(&::descriptor_table_message_2eproto);
  1883. return ::descriptor_table_message_2eproto.file_level_metadata[kIndexInFileMessages];
  1884. }
  1885. public:
  1886. // nested types ----------------------------------------------------
  1887. // accessors -------------------------------------------------------
  1888. enum : int {
  1889. kAgvStatuFieldNumber = 4,
  1890. kXFieldNumber = 1,
  1891. kYFieldNumber = 2,
  1892. kThetaFieldNumber = 3,
  1893. };
  1894. // .NavMessage.AgvStatu agvStatu = 4;
  1895. bool has_agvstatu() const;
  1896. private:
  1897. bool _internal_has_agvstatu() const;
  1898. public:
  1899. void clear_agvstatu();
  1900. const ::NavMessage::AgvStatu& agvstatu() const;
  1901. ::NavMessage::AgvStatu* release_agvstatu();
  1902. ::NavMessage::AgvStatu* mutable_agvstatu();
  1903. void set_allocated_agvstatu(::NavMessage::AgvStatu* agvstatu);
  1904. private:
  1905. const ::NavMessage::AgvStatu& _internal_agvstatu() const;
  1906. ::NavMessage::AgvStatu* _internal_mutable_agvstatu();
  1907. public:
  1908. void unsafe_arena_set_allocated_agvstatu(
  1909. ::NavMessage::AgvStatu* agvstatu);
  1910. ::NavMessage::AgvStatu* unsafe_arena_release_agvstatu();
  1911. // float x = 1;
  1912. void clear_x();
  1913. float x() const;
  1914. void set_x(float value);
  1915. private:
  1916. float _internal_x() const;
  1917. void _internal_set_x(float value);
  1918. public:
  1919. // float y = 2;
  1920. void clear_y();
  1921. float y() const;
  1922. void set_y(float value);
  1923. private:
  1924. float _internal_y() const;
  1925. void _internal_set_y(float value);
  1926. public:
  1927. // float theta = 3;
  1928. void clear_theta();
  1929. float theta() const;
  1930. void set_theta(float value);
  1931. private:
  1932. float _internal_theta() const;
  1933. void _internal_set_theta(float value);
  1934. public:
  1935. // @@protoc_insertion_point(class_scope:NavMessage.RobotStatu)
  1936. private:
  1937. class _Internal;
  1938. template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
  1939. typedef void InternalArenaConstructable_;
  1940. typedef void DestructorSkippable_;
  1941. ::NavMessage::AgvStatu* agvstatu_;
  1942. float x_;
  1943. float y_;
  1944. float theta_;
  1945. mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
  1946. friend struct ::TableStruct_message_2eproto;
  1947. };
  1948. // ===================================================================
  1949. // ===================================================================
  1950. #ifdef __GNUC__
  1951. #pragma GCC diagnostic push
  1952. #pragma GCC diagnostic ignored "-Wstrict-aliasing"
  1953. #endif // __GNUC__
  1954. // LidarOdomStatu
  1955. // float x = 1;
  1956. inline void LidarOdomStatu::clear_x() {
  1957. x_ = 0;
  1958. }
  1959. inline float LidarOdomStatu::_internal_x() const {
  1960. return x_;
  1961. }
  1962. inline float LidarOdomStatu::x() const {
  1963. // @@protoc_insertion_point(field_get:NavMessage.LidarOdomStatu.x)
  1964. return _internal_x();
  1965. }
  1966. inline void LidarOdomStatu::_internal_set_x(float value) {
  1967. x_ = value;
  1968. }
  1969. inline void LidarOdomStatu::set_x(float value) {
  1970. _internal_set_x(value);
  1971. // @@protoc_insertion_point(field_set:NavMessage.LidarOdomStatu.x)
  1972. }
  1973. // float y = 2;
  1974. inline void LidarOdomStatu::clear_y() {
  1975. y_ = 0;
  1976. }
  1977. inline float LidarOdomStatu::_internal_y() const {
  1978. return y_;
  1979. }
  1980. inline float LidarOdomStatu::y() const {
  1981. // @@protoc_insertion_point(field_get:NavMessage.LidarOdomStatu.y)
  1982. return _internal_y();
  1983. }
  1984. inline void LidarOdomStatu::_internal_set_y(float value) {
  1985. y_ = value;
  1986. }
  1987. inline void LidarOdomStatu::set_y(float value) {
  1988. _internal_set_y(value);
  1989. // @@protoc_insertion_point(field_set:NavMessage.LidarOdomStatu.y)
  1990. }
  1991. // float theta = 3;
  1992. inline void LidarOdomStatu::clear_theta() {
  1993. theta_ = 0;
  1994. }
  1995. inline float LidarOdomStatu::_internal_theta() const {
  1996. return theta_;
  1997. }
  1998. inline float LidarOdomStatu::theta() const {
  1999. // @@protoc_insertion_point(field_get:NavMessage.LidarOdomStatu.theta)
  2000. return _internal_theta();
  2001. }
  2002. inline void LidarOdomStatu::_internal_set_theta(float value) {
  2003. theta_ = value;
  2004. }
  2005. inline void LidarOdomStatu::set_theta(float value) {
  2006. _internal_set_theta(value);
  2007. // @@protoc_insertion_point(field_set:NavMessage.LidarOdomStatu.theta)
  2008. }
  2009. // float v = 4;
  2010. inline void LidarOdomStatu::clear_v() {
  2011. v_ = 0;
  2012. }
  2013. inline float LidarOdomStatu::_internal_v() const {
  2014. return v_;
  2015. }
  2016. inline float LidarOdomStatu::v() const {
  2017. // @@protoc_insertion_point(field_get:NavMessage.LidarOdomStatu.v)
  2018. return _internal_v();
  2019. }
  2020. inline void LidarOdomStatu::_internal_set_v(float value) {
  2021. v_ = value;
  2022. }
  2023. inline void LidarOdomStatu::set_v(float value) {
  2024. _internal_set_v(value);
  2025. // @@protoc_insertion_point(field_set:NavMessage.LidarOdomStatu.v)
  2026. }
  2027. // float vth = 5;
  2028. inline void LidarOdomStatu::clear_vth() {
  2029. vth_ = 0;
  2030. }
  2031. inline float LidarOdomStatu::_internal_vth() const {
  2032. return vth_;
  2033. }
  2034. inline float LidarOdomStatu::vth() const {
  2035. // @@protoc_insertion_point(field_get:NavMessage.LidarOdomStatu.vth)
  2036. return _internal_vth();
  2037. }
  2038. inline void LidarOdomStatu::_internal_set_vth(float value) {
  2039. vth_ = value;
  2040. }
  2041. inline void LidarOdomStatu::set_vth(float value) {
  2042. _internal_set_vth(value);
  2043. // @@protoc_insertion_point(field_set:NavMessage.LidarOdomStatu.vth)
  2044. }
  2045. // -------------------------------------------------------------------
  2046. // AgvStatu
  2047. // float v = 1;
  2048. inline void AgvStatu::clear_v() {
  2049. v_ = 0;
  2050. }
  2051. inline float AgvStatu::_internal_v() const {
  2052. return v_;
  2053. }
  2054. inline float AgvStatu::v() const {
  2055. // @@protoc_insertion_point(field_get:NavMessage.AgvStatu.v)
  2056. return _internal_v();
  2057. }
  2058. inline void AgvStatu::_internal_set_v(float value) {
  2059. v_ = value;
  2060. }
  2061. inline void AgvStatu::set_v(float value) {
  2062. _internal_set_v(value);
  2063. // @@protoc_insertion_point(field_set:NavMessage.AgvStatu.v)
  2064. }
  2065. // float w = 2;
  2066. inline void AgvStatu::clear_w() {
  2067. w_ = 0;
  2068. }
  2069. inline float AgvStatu::_internal_w() const {
  2070. return w_;
  2071. }
  2072. inline float AgvStatu::w() const {
  2073. // @@protoc_insertion_point(field_get:NavMessage.AgvStatu.w)
  2074. return _internal_w();
  2075. }
  2076. inline void AgvStatu::_internal_set_w(float value) {
  2077. w_ = value;
  2078. }
  2079. inline void AgvStatu::set_w(float value) {
  2080. _internal_set_w(value);
  2081. // @@protoc_insertion_point(field_set:NavMessage.AgvStatu.w)
  2082. }
  2083. // int32 clamp = 3;
  2084. inline void AgvStatu::clear_clamp() {
  2085. clamp_ = 0;
  2086. }
  2087. inline ::PROTOBUF_NAMESPACE_ID::int32 AgvStatu::_internal_clamp() const {
  2088. return clamp_;
  2089. }
  2090. inline ::PROTOBUF_NAMESPACE_ID::int32 AgvStatu::clamp() const {
  2091. // @@protoc_insertion_point(field_get:NavMessage.AgvStatu.clamp)
  2092. return _internal_clamp();
  2093. }
  2094. inline void AgvStatu::_internal_set_clamp(::PROTOBUF_NAMESPACE_ID::int32 value) {
  2095. clamp_ = value;
  2096. }
  2097. inline void AgvStatu::set_clamp(::PROTOBUF_NAMESPACE_ID::int32 value) {
  2098. _internal_set_clamp(value);
  2099. // @@protoc_insertion_point(field_set:NavMessage.AgvStatu.clamp)
  2100. }
  2101. // int32 clamp_other = 4;
  2102. inline void AgvStatu::clear_clamp_other() {
  2103. clamp_other_ = 0;
  2104. }
  2105. inline ::PROTOBUF_NAMESPACE_ID::int32 AgvStatu::_internal_clamp_other() const {
  2106. return clamp_other_;
  2107. }
  2108. inline ::PROTOBUF_NAMESPACE_ID::int32 AgvStatu::clamp_other() const {
  2109. // @@protoc_insertion_point(field_get:NavMessage.AgvStatu.clamp_other)
  2110. return _internal_clamp_other();
  2111. }
  2112. inline void AgvStatu::_internal_set_clamp_other(::PROTOBUF_NAMESPACE_ID::int32 value) {
  2113. clamp_other_ = value;
  2114. }
  2115. inline void AgvStatu::set_clamp_other(::PROTOBUF_NAMESPACE_ID::int32 value) {
  2116. _internal_set_clamp_other(value);
  2117. // @@protoc_insertion_point(field_set:NavMessage.AgvStatu.clamp_other)
  2118. }
  2119. // -------------------------------------------------------------------
  2120. // ToAgvCmd
  2121. // int32 H = 1;
  2122. inline void ToAgvCmd::clear_h() {
  2123. h_ = 0;
  2124. }
  2125. inline ::PROTOBUF_NAMESPACE_ID::int32 ToAgvCmd::_internal_h() const {
  2126. return h_;
  2127. }
  2128. inline ::PROTOBUF_NAMESPACE_ID::int32 ToAgvCmd::h() const {
  2129. // @@protoc_insertion_point(field_get:NavMessage.ToAgvCmd.H)
  2130. return _internal_h();
  2131. }
  2132. inline void ToAgvCmd::_internal_set_h(::PROTOBUF_NAMESPACE_ID::int32 value) {
  2133. h_ = value;
  2134. }
  2135. inline void ToAgvCmd::set_h(::PROTOBUF_NAMESPACE_ID::int32 value) {
  2136. _internal_set_h(value);
  2137. // @@protoc_insertion_point(field_set:NavMessage.ToAgvCmd.H)
  2138. }
  2139. // int32 M = 2;
  2140. inline void ToAgvCmd::clear_m() {
  2141. m_ = 0;
  2142. }
  2143. inline ::PROTOBUF_NAMESPACE_ID::int32 ToAgvCmd::_internal_m() const {
  2144. return m_;
  2145. }
  2146. inline ::PROTOBUF_NAMESPACE_ID::int32 ToAgvCmd::m() const {
  2147. // @@protoc_insertion_point(field_get:NavMessage.ToAgvCmd.M)
  2148. return _internal_m();
  2149. }
  2150. inline void ToAgvCmd::_internal_set_m(::PROTOBUF_NAMESPACE_ID::int32 value) {
  2151. m_ = value;
  2152. }
  2153. inline void ToAgvCmd::set_m(::PROTOBUF_NAMESPACE_ID::int32 value) {
  2154. _internal_set_m(value);
  2155. // @@protoc_insertion_point(field_set:NavMessage.ToAgvCmd.M)
  2156. }
  2157. // int32 T = 3;
  2158. inline void ToAgvCmd::clear_t() {
  2159. t_ = 0;
  2160. }
  2161. inline ::PROTOBUF_NAMESPACE_ID::int32 ToAgvCmd::_internal_t() const {
  2162. return t_;
  2163. }
  2164. inline ::PROTOBUF_NAMESPACE_ID::int32 ToAgvCmd::t() const {
  2165. // @@protoc_insertion_point(field_get:NavMessage.ToAgvCmd.T)
  2166. return _internal_t();
  2167. }
  2168. inline void ToAgvCmd::_internal_set_t(::PROTOBUF_NAMESPACE_ID::int32 value) {
  2169. t_ = value;
  2170. }
  2171. inline void ToAgvCmd::set_t(::PROTOBUF_NAMESPACE_ID::int32 value) {
  2172. _internal_set_t(value);
  2173. // @@protoc_insertion_point(field_set:NavMessage.ToAgvCmd.T)
  2174. }
  2175. // float V = 4;
  2176. inline void ToAgvCmd::clear_v() {
  2177. v_ = 0;
  2178. }
  2179. inline float ToAgvCmd::_internal_v() const {
  2180. return v_;
  2181. }
  2182. inline float ToAgvCmd::v() const {
  2183. // @@protoc_insertion_point(field_get:NavMessage.ToAgvCmd.V)
  2184. return _internal_v();
  2185. }
  2186. inline void ToAgvCmd::_internal_set_v(float value) {
  2187. v_ = value;
  2188. }
  2189. inline void ToAgvCmd::set_v(float value) {
  2190. _internal_set_v(value);
  2191. // @@protoc_insertion_point(field_set:NavMessage.ToAgvCmd.V)
  2192. }
  2193. // float W = 5;
  2194. inline void ToAgvCmd::clear_w() {
  2195. w_ = 0;
  2196. }
  2197. inline float ToAgvCmd::_internal_w() const {
  2198. return w_;
  2199. }
  2200. inline float ToAgvCmd::w() const {
  2201. // @@protoc_insertion_point(field_get:NavMessage.ToAgvCmd.W)
  2202. return _internal_w();
  2203. }
  2204. inline void ToAgvCmd::_internal_set_w(float value) {
  2205. w_ = value;
  2206. }
  2207. inline void ToAgvCmd::set_w(float value) {
  2208. _internal_set_w(value);
  2209. // @@protoc_insertion_point(field_set:NavMessage.ToAgvCmd.W)
  2210. }
  2211. // float L = 6;
  2212. inline void ToAgvCmd::clear_l() {
  2213. l_ = 0;
  2214. }
  2215. inline float ToAgvCmd::_internal_l() const {
  2216. return l_;
  2217. }
  2218. inline float ToAgvCmd::l() const {
  2219. // @@protoc_insertion_point(field_get:NavMessage.ToAgvCmd.L)
  2220. return _internal_l();
  2221. }
  2222. inline void ToAgvCmd::_internal_set_l(float value) {
  2223. l_ = value;
  2224. }
  2225. inline void ToAgvCmd::set_l(float value) {
  2226. _internal_set_l(value);
  2227. // @@protoc_insertion_point(field_set:NavMessage.ToAgvCmd.L)
  2228. }
  2229. // int32 end = 7;
  2230. inline void ToAgvCmd::clear_end() {
  2231. end_ = 0;
  2232. }
  2233. inline ::PROTOBUF_NAMESPACE_ID::int32 ToAgvCmd::_internal_end() const {
  2234. return end_;
  2235. }
  2236. inline ::PROTOBUF_NAMESPACE_ID::int32 ToAgvCmd::end() const {
  2237. // @@protoc_insertion_point(field_get:NavMessage.ToAgvCmd.end)
  2238. return _internal_end();
  2239. }
  2240. inline void ToAgvCmd::_internal_set_end(::PROTOBUF_NAMESPACE_ID::int32 value) {
  2241. end_ = value;
  2242. }
  2243. inline void ToAgvCmd::set_end(::PROTOBUF_NAMESPACE_ID::int32 value) {
  2244. _internal_set_end(value);
  2245. // @@protoc_insertion_point(field_set:NavMessage.ToAgvCmd.end)
  2246. }
  2247. // -------------------------------------------------------------------
  2248. // SpeedLimit
  2249. // float min = 1;
  2250. inline void SpeedLimit::clear_min() {
  2251. min_ = 0;
  2252. }
  2253. inline float SpeedLimit::_internal_min() const {
  2254. return min_;
  2255. }
  2256. inline float SpeedLimit::min() const {
  2257. // @@protoc_insertion_point(field_get:NavMessage.SpeedLimit.min)
  2258. return _internal_min();
  2259. }
  2260. inline void SpeedLimit::_internal_set_min(float value) {
  2261. min_ = value;
  2262. }
  2263. inline void SpeedLimit::set_min(float value) {
  2264. _internal_set_min(value);
  2265. // @@protoc_insertion_point(field_set:NavMessage.SpeedLimit.min)
  2266. }
  2267. // float max = 2;
  2268. inline void SpeedLimit::clear_max() {
  2269. max_ = 0;
  2270. }
  2271. inline float SpeedLimit::_internal_max() const {
  2272. return max_;
  2273. }
  2274. inline float SpeedLimit::max() const {
  2275. // @@protoc_insertion_point(field_get:NavMessage.SpeedLimit.max)
  2276. return _internal_max();
  2277. }
  2278. inline void SpeedLimit::_internal_set_max(float value) {
  2279. max_ = value;
  2280. }
  2281. inline void SpeedLimit::set_max(float value) {
  2282. _internal_set_max(value);
  2283. // @@protoc_insertion_point(field_set:NavMessage.SpeedLimit.max)
  2284. }
  2285. // -------------------------------------------------------------------
  2286. // Pose2d
  2287. // float x = 1;
  2288. inline void Pose2d::clear_x() {
  2289. x_ = 0;
  2290. }
  2291. inline float Pose2d::_internal_x() const {
  2292. return x_;
  2293. }
  2294. inline float Pose2d::x() const {
  2295. // @@protoc_insertion_point(field_get:NavMessage.Pose2d.x)
  2296. return _internal_x();
  2297. }
  2298. inline void Pose2d::_internal_set_x(float value) {
  2299. x_ = value;
  2300. }
  2301. inline void Pose2d::set_x(float value) {
  2302. _internal_set_x(value);
  2303. // @@protoc_insertion_point(field_set:NavMessage.Pose2d.x)
  2304. }
  2305. // float y = 2;
  2306. inline void Pose2d::clear_y() {
  2307. y_ = 0;
  2308. }
  2309. inline float Pose2d::_internal_y() const {
  2310. return y_;
  2311. }
  2312. inline float Pose2d::y() const {
  2313. // @@protoc_insertion_point(field_get:NavMessage.Pose2d.y)
  2314. return _internal_y();
  2315. }
  2316. inline void Pose2d::_internal_set_y(float value) {
  2317. y_ = value;
  2318. }
  2319. inline void Pose2d::set_y(float value) {
  2320. _internal_set_y(value);
  2321. // @@protoc_insertion_point(field_set:NavMessage.Pose2d.y)
  2322. }
  2323. // float theta = 3;
  2324. inline void Pose2d::clear_theta() {
  2325. theta_ = 0;
  2326. }
  2327. inline float Pose2d::_internal_theta() const {
  2328. return theta_;
  2329. }
  2330. inline float Pose2d::theta() const {
  2331. // @@protoc_insertion_point(field_get:NavMessage.Pose2d.theta)
  2332. return _internal_theta();
  2333. }
  2334. inline void Pose2d::_internal_set_theta(float value) {
  2335. theta_ = value;
  2336. }
  2337. inline void Pose2d::set_theta(float value) {
  2338. _internal_set_theta(value);
  2339. // @@protoc_insertion_point(field_set:NavMessage.Pose2d.theta)
  2340. }
  2341. // -------------------------------------------------------------------
  2342. // PathNode
  2343. // .NavMessage.Pose2d pose = 1;
  2344. inline bool PathNode::_internal_has_pose() const {
  2345. return this != internal_default_instance() && pose_ != nullptr;
  2346. }
  2347. inline bool PathNode::has_pose() const {
  2348. return _internal_has_pose();
  2349. }
  2350. inline void PathNode::clear_pose() {
  2351. if (GetArena() == nullptr && pose_ != nullptr) {
  2352. delete pose_;
  2353. }
  2354. pose_ = nullptr;
  2355. }
  2356. inline const ::NavMessage::Pose2d& PathNode::_internal_pose() const {
  2357. const ::NavMessage::Pose2d* p = pose_;
  2358. return p != nullptr ? *p : *reinterpret_cast<const ::NavMessage::Pose2d*>(
  2359. &::NavMessage::_Pose2d_default_instance_);
  2360. }
  2361. inline const ::NavMessage::Pose2d& PathNode::pose() const {
  2362. // @@protoc_insertion_point(field_get:NavMessage.PathNode.pose)
  2363. return _internal_pose();
  2364. }
  2365. inline void PathNode::unsafe_arena_set_allocated_pose(
  2366. ::NavMessage::Pose2d* pose) {
  2367. if (GetArena() == nullptr) {
  2368. delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(pose_);
  2369. }
  2370. pose_ = pose;
  2371. if (pose) {
  2372. } else {
  2373. }
  2374. // @@protoc_insertion_point(field_unsafe_arena_set_allocated:NavMessage.PathNode.pose)
  2375. }
  2376. inline ::NavMessage::Pose2d* PathNode::release_pose() {
  2377. ::NavMessage::Pose2d* temp = pose_;
  2378. pose_ = nullptr;
  2379. if (GetArena() != nullptr) {
  2380. temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
  2381. }
  2382. return temp;
  2383. }
  2384. inline ::NavMessage::Pose2d* PathNode::unsafe_arena_release_pose() {
  2385. // @@protoc_insertion_point(field_release:NavMessage.PathNode.pose)
  2386. ::NavMessage::Pose2d* temp = pose_;
  2387. pose_ = nullptr;
  2388. return temp;
  2389. }
  2390. inline ::NavMessage::Pose2d* PathNode::_internal_mutable_pose() {
  2391. if (pose_ == nullptr) {
  2392. auto* p = CreateMaybeMessage<::NavMessage::Pose2d>(GetArena());
  2393. pose_ = p;
  2394. }
  2395. return pose_;
  2396. }
  2397. inline ::NavMessage::Pose2d* PathNode::mutable_pose() {
  2398. // @@protoc_insertion_point(field_mutable:NavMessage.PathNode.pose)
  2399. return _internal_mutable_pose();
  2400. }
  2401. inline void PathNode::set_allocated_pose(::NavMessage::Pose2d* pose) {
  2402. ::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
  2403. if (message_arena == nullptr) {
  2404. delete pose_;
  2405. }
  2406. if (pose) {
  2407. ::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
  2408. ::PROTOBUF_NAMESPACE_ID::Arena::GetArena(pose);
  2409. if (message_arena != submessage_arena) {
  2410. pose = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
  2411. message_arena, pose, submessage_arena);
  2412. }
  2413. } else {
  2414. }
  2415. pose_ = pose;
  2416. // @@protoc_insertion_point(field_set_allocated:NavMessage.PathNode.pose)
  2417. }
  2418. // .NavMessage.Pose2d accuracy = 2;
  2419. inline bool PathNode::_internal_has_accuracy() const {
  2420. return this != internal_default_instance() && accuracy_ != nullptr;
  2421. }
  2422. inline bool PathNode::has_accuracy() const {
  2423. return _internal_has_accuracy();
  2424. }
  2425. inline void PathNode::clear_accuracy() {
  2426. if (GetArena() == nullptr && accuracy_ != nullptr) {
  2427. delete accuracy_;
  2428. }
  2429. accuracy_ = nullptr;
  2430. }
  2431. inline const ::NavMessage::Pose2d& PathNode::_internal_accuracy() const {
  2432. const ::NavMessage::Pose2d* p = accuracy_;
  2433. return p != nullptr ? *p : *reinterpret_cast<const ::NavMessage::Pose2d*>(
  2434. &::NavMessage::_Pose2d_default_instance_);
  2435. }
  2436. inline const ::NavMessage::Pose2d& PathNode::accuracy() const {
  2437. // @@protoc_insertion_point(field_get:NavMessage.PathNode.accuracy)
  2438. return _internal_accuracy();
  2439. }
  2440. inline void PathNode::unsafe_arena_set_allocated_accuracy(
  2441. ::NavMessage::Pose2d* accuracy) {
  2442. if (GetArena() == nullptr) {
  2443. delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(accuracy_);
  2444. }
  2445. accuracy_ = accuracy;
  2446. if (accuracy) {
  2447. } else {
  2448. }
  2449. // @@protoc_insertion_point(field_unsafe_arena_set_allocated:NavMessage.PathNode.accuracy)
  2450. }
  2451. inline ::NavMessage::Pose2d* PathNode::release_accuracy() {
  2452. ::NavMessage::Pose2d* temp = accuracy_;
  2453. accuracy_ = nullptr;
  2454. if (GetArena() != nullptr) {
  2455. temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
  2456. }
  2457. return temp;
  2458. }
  2459. inline ::NavMessage::Pose2d* PathNode::unsafe_arena_release_accuracy() {
  2460. // @@protoc_insertion_point(field_release:NavMessage.PathNode.accuracy)
  2461. ::NavMessage::Pose2d* temp = accuracy_;
  2462. accuracy_ = nullptr;
  2463. return temp;
  2464. }
  2465. inline ::NavMessage::Pose2d* PathNode::_internal_mutable_accuracy() {
  2466. if (accuracy_ == nullptr) {
  2467. auto* p = CreateMaybeMessage<::NavMessage::Pose2d>(GetArena());
  2468. accuracy_ = p;
  2469. }
  2470. return accuracy_;
  2471. }
  2472. inline ::NavMessage::Pose2d* PathNode::mutable_accuracy() {
  2473. // @@protoc_insertion_point(field_mutable:NavMessage.PathNode.accuracy)
  2474. return _internal_mutable_accuracy();
  2475. }
  2476. inline void PathNode::set_allocated_accuracy(::NavMessage::Pose2d* accuracy) {
  2477. ::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
  2478. if (message_arena == nullptr) {
  2479. delete accuracy_;
  2480. }
  2481. if (accuracy) {
  2482. ::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
  2483. ::PROTOBUF_NAMESPACE_ID::Arena::GetArena(accuracy);
  2484. if (message_arena != submessage_arena) {
  2485. accuracy = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
  2486. message_arena, accuracy, submessage_arena);
  2487. }
  2488. } else {
  2489. }
  2490. accuracy_ = accuracy;
  2491. // @@protoc_insertion_point(field_set_allocated:NavMessage.PathNode.accuracy)
  2492. }
  2493. // -------------------------------------------------------------------
  2494. // Trajectory
  2495. // repeated .NavMessage.Pose2d poses = 1;
  2496. inline int Trajectory::_internal_poses_size() const {
  2497. return poses_.size();
  2498. }
  2499. inline int Trajectory::poses_size() const {
  2500. return _internal_poses_size();
  2501. }
  2502. inline void Trajectory::clear_poses() {
  2503. poses_.Clear();
  2504. }
  2505. inline ::NavMessage::Pose2d* Trajectory::mutable_poses(int index) {
  2506. // @@protoc_insertion_point(field_mutable:NavMessage.Trajectory.poses)
  2507. return poses_.Mutable(index);
  2508. }
  2509. inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::NavMessage::Pose2d >*
  2510. Trajectory::mutable_poses() {
  2511. // @@protoc_insertion_point(field_mutable_list:NavMessage.Trajectory.poses)
  2512. return &poses_;
  2513. }
  2514. inline const ::NavMessage::Pose2d& Trajectory::_internal_poses(int index) const {
  2515. return poses_.Get(index);
  2516. }
  2517. inline const ::NavMessage::Pose2d& Trajectory::poses(int index) const {
  2518. // @@protoc_insertion_point(field_get:NavMessage.Trajectory.poses)
  2519. return _internal_poses(index);
  2520. }
  2521. inline ::NavMessage::Pose2d* Trajectory::_internal_add_poses() {
  2522. return poses_.Add();
  2523. }
  2524. inline ::NavMessage::Pose2d* Trajectory::add_poses() {
  2525. // @@protoc_insertion_point(field_add:NavMessage.Trajectory.poses)
  2526. return _internal_add_poses();
  2527. }
  2528. inline const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::NavMessage::Pose2d >&
  2529. Trajectory::poses() const {
  2530. // @@protoc_insertion_point(field_list:NavMessage.Trajectory.poses)
  2531. return poses_;
  2532. }
  2533. // -------------------------------------------------------------------
  2534. // NewAction
  2535. // int32 type = 1;
  2536. inline void NewAction::clear_type() {
  2537. type_ = 0;
  2538. }
  2539. inline ::PROTOBUF_NAMESPACE_ID::int32 NewAction::_internal_type() const {
  2540. return type_;
  2541. }
  2542. inline ::PROTOBUF_NAMESPACE_ID::int32 NewAction::type() const {
  2543. // @@protoc_insertion_point(field_get:NavMessage.NewAction.type)
  2544. return _internal_type();
  2545. }
  2546. inline void NewAction::_internal_set_type(::PROTOBUF_NAMESPACE_ID::int32 value) {
  2547. type_ = value;
  2548. }
  2549. inline void NewAction::set_type(::PROTOBUF_NAMESPACE_ID::int32 value) {
  2550. _internal_set_type(value);
  2551. // @@protoc_insertion_point(field_set:NavMessage.NewAction.type)
  2552. }
  2553. // .NavMessage.PathNode spaceNode = 2;
  2554. inline bool NewAction::_internal_has_spacenode() const {
  2555. return this != internal_default_instance() && spacenode_ != nullptr;
  2556. }
  2557. inline bool NewAction::has_spacenode() const {
  2558. return _internal_has_spacenode();
  2559. }
  2560. inline void NewAction::clear_spacenode() {
  2561. if (GetArena() == nullptr && spacenode_ != nullptr) {
  2562. delete spacenode_;
  2563. }
  2564. spacenode_ = nullptr;
  2565. }
  2566. inline const ::NavMessage::PathNode& NewAction::_internal_spacenode() const {
  2567. const ::NavMessage::PathNode* p = spacenode_;
  2568. return p != nullptr ? *p : *reinterpret_cast<const ::NavMessage::PathNode*>(
  2569. &::NavMessage::_PathNode_default_instance_);
  2570. }
  2571. inline const ::NavMessage::PathNode& NewAction::spacenode() const {
  2572. // @@protoc_insertion_point(field_get:NavMessage.NewAction.spaceNode)
  2573. return _internal_spacenode();
  2574. }
  2575. inline void NewAction::unsafe_arena_set_allocated_spacenode(
  2576. ::NavMessage::PathNode* spacenode) {
  2577. if (GetArena() == nullptr) {
  2578. delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(spacenode_);
  2579. }
  2580. spacenode_ = spacenode;
  2581. if (spacenode) {
  2582. } else {
  2583. }
  2584. // @@protoc_insertion_point(field_unsafe_arena_set_allocated:NavMessage.NewAction.spaceNode)
  2585. }
  2586. inline ::NavMessage::PathNode* NewAction::release_spacenode() {
  2587. ::NavMessage::PathNode* temp = spacenode_;
  2588. spacenode_ = nullptr;
  2589. if (GetArena() != nullptr) {
  2590. temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
  2591. }
  2592. return temp;
  2593. }
  2594. inline ::NavMessage::PathNode* NewAction::unsafe_arena_release_spacenode() {
  2595. // @@protoc_insertion_point(field_release:NavMessage.NewAction.spaceNode)
  2596. ::NavMessage::PathNode* temp = spacenode_;
  2597. spacenode_ = nullptr;
  2598. return temp;
  2599. }
  2600. inline ::NavMessage::PathNode* NewAction::_internal_mutable_spacenode() {
  2601. if (spacenode_ == nullptr) {
  2602. auto* p = CreateMaybeMessage<::NavMessage::PathNode>(GetArena());
  2603. spacenode_ = p;
  2604. }
  2605. return spacenode_;
  2606. }
  2607. inline ::NavMessage::PathNode* NewAction::mutable_spacenode() {
  2608. // @@protoc_insertion_point(field_mutable:NavMessage.NewAction.spaceNode)
  2609. return _internal_mutable_spacenode();
  2610. }
  2611. inline void NewAction::set_allocated_spacenode(::NavMessage::PathNode* spacenode) {
  2612. ::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
  2613. if (message_arena == nullptr) {
  2614. delete spacenode_;
  2615. }
  2616. if (spacenode) {
  2617. ::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
  2618. ::PROTOBUF_NAMESPACE_ID::Arena::GetArena(spacenode);
  2619. if (message_arena != submessage_arena) {
  2620. spacenode = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
  2621. message_arena, spacenode, submessage_arena);
  2622. }
  2623. } else {
  2624. }
  2625. spacenode_ = spacenode;
  2626. // @@protoc_insertion_point(field_set_allocated:NavMessage.NewAction.spaceNode)
  2627. }
  2628. // .NavMessage.PathNode passNode = 3;
  2629. inline bool NewAction::_internal_has_passnode() const {
  2630. return this != internal_default_instance() && passnode_ != nullptr;
  2631. }
  2632. inline bool NewAction::has_passnode() const {
  2633. return _internal_has_passnode();
  2634. }
  2635. inline void NewAction::clear_passnode() {
  2636. if (GetArena() == nullptr && passnode_ != nullptr) {
  2637. delete passnode_;
  2638. }
  2639. passnode_ = nullptr;
  2640. }
  2641. inline const ::NavMessage::PathNode& NewAction::_internal_passnode() const {
  2642. const ::NavMessage::PathNode* p = passnode_;
  2643. return p != nullptr ? *p : *reinterpret_cast<const ::NavMessage::PathNode*>(
  2644. &::NavMessage::_PathNode_default_instance_);
  2645. }
  2646. inline const ::NavMessage::PathNode& NewAction::passnode() const {
  2647. // @@protoc_insertion_point(field_get:NavMessage.NewAction.passNode)
  2648. return _internal_passnode();
  2649. }
  2650. inline void NewAction::unsafe_arena_set_allocated_passnode(
  2651. ::NavMessage::PathNode* passnode) {
  2652. if (GetArena() == nullptr) {
  2653. delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(passnode_);
  2654. }
  2655. passnode_ = passnode;
  2656. if (passnode) {
  2657. } else {
  2658. }
  2659. // @@protoc_insertion_point(field_unsafe_arena_set_allocated:NavMessage.NewAction.passNode)
  2660. }
  2661. inline ::NavMessage::PathNode* NewAction::release_passnode() {
  2662. ::NavMessage::PathNode* temp = passnode_;
  2663. passnode_ = nullptr;
  2664. if (GetArena() != nullptr) {
  2665. temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
  2666. }
  2667. return temp;
  2668. }
  2669. inline ::NavMessage::PathNode* NewAction::unsafe_arena_release_passnode() {
  2670. // @@protoc_insertion_point(field_release:NavMessage.NewAction.passNode)
  2671. ::NavMessage::PathNode* temp = passnode_;
  2672. passnode_ = nullptr;
  2673. return temp;
  2674. }
  2675. inline ::NavMessage::PathNode* NewAction::_internal_mutable_passnode() {
  2676. if (passnode_ == nullptr) {
  2677. auto* p = CreateMaybeMessage<::NavMessage::PathNode>(GetArena());
  2678. passnode_ = p;
  2679. }
  2680. return passnode_;
  2681. }
  2682. inline ::NavMessage::PathNode* NewAction::mutable_passnode() {
  2683. // @@protoc_insertion_point(field_mutable:NavMessage.NewAction.passNode)
  2684. return _internal_mutable_passnode();
  2685. }
  2686. inline void NewAction::set_allocated_passnode(::NavMessage::PathNode* passnode) {
  2687. ::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
  2688. if (message_arena == nullptr) {
  2689. delete passnode_;
  2690. }
  2691. if (passnode) {
  2692. ::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
  2693. ::PROTOBUF_NAMESPACE_ID::Arena::GetArena(passnode);
  2694. if (message_arena != submessage_arena) {
  2695. passnode = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
  2696. message_arena, passnode, submessage_arena);
  2697. }
  2698. } else {
  2699. }
  2700. passnode_ = passnode;
  2701. // @@protoc_insertion_point(field_set_allocated:NavMessage.NewAction.passNode)
  2702. }
  2703. // .NavMessage.PathNode streetNode = 4;
  2704. inline bool NewAction::_internal_has_streetnode() const {
  2705. return this != internal_default_instance() && streetnode_ != nullptr;
  2706. }
  2707. inline bool NewAction::has_streetnode() const {
  2708. return _internal_has_streetnode();
  2709. }
  2710. inline void NewAction::clear_streetnode() {
  2711. if (GetArena() == nullptr && streetnode_ != nullptr) {
  2712. delete streetnode_;
  2713. }
  2714. streetnode_ = nullptr;
  2715. }
  2716. inline const ::NavMessage::PathNode& NewAction::_internal_streetnode() const {
  2717. const ::NavMessage::PathNode* p = streetnode_;
  2718. return p != nullptr ? *p : *reinterpret_cast<const ::NavMessage::PathNode*>(
  2719. &::NavMessage::_PathNode_default_instance_);
  2720. }
  2721. inline const ::NavMessage::PathNode& NewAction::streetnode() const {
  2722. // @@protoc_insertion_point(field_get:NavMessage.NewAction.streetNode)
  2723. return _internal_streetnode();
  2724. }
  2725. inline void NewAction::unsafe_arena_set_allocated_streetnode(
  2726. ::NavMessage::PathNode* streetnode) {
  2727. if (GetArena() == nullptr) {
  2728. delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(streetnode_);
  2729. }
  2730. streetnode_ = streetnode;
  2731. if (streetnode) {
  2732. } else {
  2733. }
  2734. // @@protoc_insertion_point(field_unsafe_arena_set_allocated:NavMessage.NewAction.streetNode)
  2735. }
  2736. inline ::NavMessage::PathNode* NewAction::release_streetnode() {
  2737. ::NavMessage::PathNode* temp = streetnode_;
  2738. streetnode_ = nullptr;
  2739. if (GetArena() != nullptr) {
  2740. temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
  2741. }
  2742. return temp;
  2743. }
  2744. inline ::NavMessage::PathNode* NewAction::unsafe_arena_release_streetnode() {
  2745. // @@protoc_insertion_point(field_release:NavMessage.NewAction.streetNode)
  2746. ::NavMessage::PathNode* temp = streetnode_;
  2747. streetnode_ = nullptr;
  2748. return temp;
  2749. }
  2750. inline ::NavMessage::PathNode* NewAction::_internal_mutable_streetnode() {
  2751. if (streetnode_ == nullptr) {
  2752. auto* p = CreateMaybeMessage<::NavMessage::PathNode>(GetArena());
  2753. streetnode_ = p;
  2754. }
  2755. return streetnode_;
  2756. }
  2757. inline ::NavMessage::PathNode* NewAction::mutable_streetnode() {
  2758. // @@protoc_insertion_point(field_mutable:NavMessage.NewAction.streetNode)
  2759. return _internal_mutable_streetnode();
  2760. }
  2761. inline void NewAction::set_allocated_streetnode(::NavMessage::PathNode* streetnode) {
  2762. ::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
  2763. if (message_arena == nullptr) {
  2764. delete streetnode_;
  2765. }
  2766. if (streetnode) {
  2767. ::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
  2768. ::PROTOBUF_NAMESPACE_ID::Arena::GetArena(streetnode);
  2769. if (message_arena != submessage_arena) {
  2770. streetnode = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
  2771. message_arena, streetnode, submessage_arena);
  2772. }
  2773. } else {
  2774. }
  2775. streetnode_ = streetnode;
  2776. // @@protoc_insertion_point(field_set_allocated:NavMessage.NewAction.streetNode)
  2777. }
  2778. // repeated .NavMessage.PathNode pathNodes = 5;
  2779. inline int NewAction::_internal_pathnodes_size() const {
  2780. return pathnodes_.size();
  2781. }
  2782. inline int NewAction::pathnodes_size() const {
  2783. return _internal_pathnodes_size();
  2784. }
  2785. inline void NewAction::clear_pathnodes() {
  2786. pathnodes_.Clear();
  2787. }
  2788. inline ::NavMessage::PathNode* NewAction::mutable_pathnodes(int index) {
  2789. // @@protoc_insertion_point(field_mutable:NavMessage.NewAction.pathNodes)
  2790. return pathnodes_.Mutable(index);
  2791. }
  2792. inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::NavMessage::PathNode >*
  2793. NewAction::mutable_pathnodes() {
  2794. // @@protoc_insertion_point(field_mutable_list:NavMessage.NewAction.pathNodes)
  2795. return &pathnodes_;
  2796. }
  2797. inline const ::NavMessage::PathNode& NewAction::_internal_pathnodes(int index) const {
  2798. return pathnodes_.Get(index);
  2799. }
  2800. inline const ::NavMessage::PathNode& NewAction::pathnodes(int index) const {
  2801. // @@protoc_insertion_point(field_get:NavMessage.NewAction.pathNodes)
  2802. return _internal_pathnodes(index);
  2803. }
  2804. inline ::NavMessage::PathNode* NewAction::_internal_add_pathnodes() {
  2805. return pathnodes_.Add();
  2806. }
  2807. inline ::NavMessage::PathNode* NewAction::add_pathnodes() {
  2808. // @@protoc_insertion_point(field_add:NavMessage.NewAction.pathNodes)
  2809. return _internal_add_pathnodes();
  2810. }
  2811. inline const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::NavMessage::PathNode >&
  2812. NewAction::pathnodes() const {
  2813. // @@protoc_insertion_point(field_list:NavMessage.NewAction.pathNodes)
  2814. return pathnodes_;
  2815. }
  2816. // .NavMessage.SpeedLimit InOutVLimit = 6;
  2817. inline bool NewAction::_internal_has_inoutvlimit() const {
  2818. return this != internal_default_instance() && inoutvlimit_ != nullptr;
  2819. }
  2820. inline bool NewAction::has_inoutvlimit() const {
  2821. return _internal_has_inoutvlimit();
  2822. }
  2823. inline void NewAction::clear_inoutvlimit() {
  2824. if (GetArena() == nullptr && inoutvlimit_ != nullptr) {
  2825. delete inoutvlimit_;
  2826. }
  2827. inoutvlimit_ = nullptr;
  2828. }
  2829. inline const ::NavMessage::SpeedLimit& NewAction::_internal_inoutvlimit() const {
  2830. const ::NavMessage::SpeedLimit* p = inoutvlimit_;
  2831. return p != nullptr ? *p : *reinterpret_cast<const ::NavMessage::SpeedLimit*>(
  2832. &::NavMessage::_SpeedLimit_default_instance_);
  2833. }
  2834. inline const ::NavMessage::SpeedLimit& NewAction::inoutvlimit() const {
  2835. // @@protoc_insertion_point(field_get:NavMessage.NewAction.InOutVLimit)
  2836. return _internal_inoutvlimit();
  2837. }
  2838. inline void NewAction::unsafe_arena_set_allocated_inoutvlimit(
  2839. ::NavMessage::SpeedLimit* inoutvlimit) {
  2840. if (GetArena() == nullptr) {
  2841. delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(inoutvlimit_);
  2842. }
  2843. inoutvlimit_ = inoutvlimit;
  2844. if (inoutvlimit) {
  2845. } else {
  2846. }
  2847. // @@protoc_insertion_point(field_unsafe_arena_set_allocated:NavMessage.NewAction.InOutVLimit)
  2848. }
  2849. inline ::NavMessage::SpeedLimit* NewAction::release_inoutvlimit() {
  2850. ::NavMessage::SpeedLimit* temp = inoutvlimit_;
  2851. inoutvlimit_ = nullptr;
  2852. if (GetArena() != nullptr) {
  2853. temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
  2854. }
  2855. return temp;
  2856. }
  2857. inline ::NavMessage::SpeedLimit* NewAction::unsafe_arena_release_inoutvlimit() {
  2858. // @@protoc_insertion_point(field_release:NavMessage.NewAction.InOutVLimit)
  2859. ::NavMessage::SpeedLimit* temp = inoutvlimit_;
  2860. inoutvlimit_ = nullptr;
  2861. return temp;
  2862. }
  2863. inline ::NavMessage::SpeedLimit* NewAction::_internal_mutable_inoutvlimit() {
  2864. if (inoutvlimit_ == nullptr) {
  2865. auto* p = CreateMaybeMessage<::NavMessage::SpeedLimit>(GetArena());
  2866. inoutvlimit_ = p;
  2867. }
  2868. return inoutvlimit_;
  2869. }
  2870. inline ::NavMessage::SpeedLimit* NewAction::mutable_inoutvlimit() {
  2871. // @@protoc_insertion_point(field_mutable:NavMessage.NewAction.InOutVLimit)
  2872. return _internal_mutable_inoutvlimit();
  2873. }
  2874. inline void NewAction::set_allocated_inoutvlimit(::NavMessage::SpeedLimit* inoutvlimit) {
  2875. ::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
  2876. if (message_arena == nullptr) {
  2877. delete inoutvlimit_;
  2878. }
  2879. if (inoutvlimit) {
  2880. ::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
  2881. ::PROTOBUF_NAMESPACE_ID::Arena::GetArena(inoutvlimit);
  2882. if (message_arena != submessage_arena) {
  2883. inoutvlimit = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
  2884. message_arena, inoutvlimit, submessage_arena);
  2885. }
  2886. } else {
  2887. }
  2888. inoutvlimit_ = inoutvlimit;
  2889. // @@protoc_insertion_point(field_set_allocated:NavMessage.NewAction.InOutVLimit)
  2890. }
  2891. // .NavMessage.SpeedLimit NodeVelocityLimit = 7;
  2892. inline bool NewAction::_internal_has_nodevelocitylimit() const {
  2893. return this != internal_default_instance() && nodevelocitylimit_ != nullptr;
  2894. }
  2895. inline bool NewAction::has_nodevelocitylimit() const {
  2896. return _internal_has_nodevelocitylimit();
  2897. }
  2898. inline void NewAction::clear_nodevelocitylimit() {
  2899. if (GetArena() == nullptr && nodevelocitylimit_ != nullptr) {
  2900. delete nodevelocitylimit_;
  2901. }
  2902. nodevelocitylimit_ = nullptr;
  2903. }
  2904. inline const ::NavMessage::SpeedLimit& NewAction::_internal_nodevelocitylimit() const {
  2905. const ::NavMessage::SpeedLimit* p = nodevelocitylimit_;
  2906. return p != nullptr ? *p : *reinterpret_cast<const ::NavMessage::SpeedLimit*>(
  2907. &::NavMessage::_SpeedLimit_default_instance_);
  2908. }
  2909. inline const ::NavMessage::SpeedLimit& NewAction::nodevelocitylimit() const {
  2910. // @@protoc_insertion_point(field_get:NavMessage.NewAction.NodeVelocityLimit)
  2911. return _internal_nodevelocitylimit();
  2912. }
  2913. inline void NewAction::unsafe_arena_set_allocated_nodevelocitylimit(
  2914. ::NavMessage::SpeedLimit* nodevelocitylimit) {
  2915. if (GetArena() == nullptr) {
  2916. delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(nodevelocitylimit_);
  2917. }
  2918. nodevelocitylimit_ = nodevelocitylimit;
  2919. if (nodevelocitylimit) {
  2920. } else {
  2921. }
  2922. // @@protoc_insertion_point(field_unsafe_arena_set_allocated:NavMessage.NewAction.NodeVelocityLimit)
  2923. }
  2924. inline ::NavMessage::SpeedLimit* NewAction::release_nodevelocitylimit() {
  2925. ::NavMessage::SpeedLimit* temp = nodevelocitylimit_;
  2926. nodevelocitylimit_ = nullptr;
  2927. if (GetArena() != nullptr) {
  2928. temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
  2929. }
  2930. return temp;
  2931. }
  2932. inline ::NavMessage::SpeedLimit* NewAction::unsafe_arena_release_nodevelocitylimit() {
  2933. // @@protoc_insertion_point(field_release:NavMessage.NewAction.NodeVelocityLimit)
  2934. ::NavMessage::SpeedLimit* temp = nodevelocitylimit_;
  2935. nodevelocitylimit_ = nullptr;
  2936. return temp;
  2937. }
  2938. inline ::NavMessage::SpeedLimit* NewAction::_internal_mutable_nodevelocitylimit() {
  2939. if (nodevelocitylimit_ == nullptr) {
  2940. auto* p = CreateMaybeMessage<::NavMessage::SpeedLimit>(GetArena());
  2941. nodevelocitylimit_ = p;
  2942. }
  2943. return nodevelocitylimit_;
  2944. }
  2945. inline ::NavMessage::SpeedLimit* NewAction::mutable_nodevelocitylimit() {
  2946. // @@protoc_insertion_point(field_mutable:NavMessage.NewAction.NodeVelocityLimit)
  2947. return _internal_mutable_nodevelocitylimit();
  2948. }
  2949. inline void NewAction::set_allocated_nodevelocitylimit(::NavMessage::SpeedLimit* nodevelocitylimit) {
  2950. ::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
  2951. if (message_arena == nullptr) {
  2952. delete nodevelocitylimit_;
  2953. }
  2954. if (nodevelocitylimit) {
  2955. ::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
  2956. ::PROTOBUF_NAMESPACE_ID::Arena::GetArena(nodevelocitylimit);
  2957. if (message_arena != submessage_arena) {
  2958. nodevelocitylimit = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
  2959. message_arena, nodevelocitylimit, submessage_arena);
  2960. }
  2961. } else {
  2962. }
  2963. nodevelocitylimit_ = nodevelocitylimit;
  2964. // @@protoc_insertion_point(field_set_allocated:NavMessage.NewAction.NodeVelocityLimit)
  2965. }
  2966. // .NavMessage.SpeedLimit NodeAngularLimit = 8;
  2967. inline bool NewAction::_internal_has_nodeangularlimit() const {
  2968. return this != internal_default_instance() && nodeangularlimit_ != nullptr;
  2969. }
  2970. inline bool NewAction::has_nodeangularlimit() const {
  2971. return _internal_has_nodeangularlimit();
  2972. }
  2973. inline void NewAction::clear_nodeangularlimit() {
  2974. if (GetArena() == nullptr && nodeangularlimit_ != nullptr) {
  2975. delete nodeangularlimit_;
  2976. }
  2977. nodeangularlimit_ = nullptr;
  2978. }
  2979. inline const ::NavMessage::SpeedLimit& NewAction::_internal_nodeangularlimit() const {
  2980. const ::NavMessage::SpeedLimit* p = nodeangularlimit_;
  2981. return p != nullptr ? *p : *reinterpret_cast<const ::NavMessage::SpeedLimit*>(
  2982. &::NavMessage::_SpeedLimit_default_instance_);
  2983. }
  2984. inline const ::NavMessage::SpeedLimit& NewAction::nodeangularlimit() const {
  2985. // @@protoc_insertion_point(field_get:NavMessage.NewAction.NodeAngularLimit)
  2986. return _internal_nodeangularlimit();
  2987. }
  2988. inline void NewAction::unsafe_arena_set_allocated_nodeangularlimit(
  2989. ::NavMessage::SpeedLimit* nodeangularlimit) {
  2990. if (GetArena() == nullptr) {
  2991. delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(nodeangularlimit_);
  2992. }
  2993. nodeangularlimit_ = nodeangularlimit;
  2994. if (nodeangularlimit) {
  2995. } else {
  2996. }
  2997. // @@protoc_insertion_point(field_unsafe_arena_set_allocated:NavMessage.NewAction.NodeAngularLimit)
  2998. }
  2999. inline ::NavMessage::SpeedLimit* NewAction::release_nodeangularlimit() {
  3000. ::NavMessage::SpeedLimit* temp = nodeangularlimit_;
  3001. nodeangularlimit_ = nullptr;
  3002. if (GetArena() != nullptr) {
  3003. temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
  3004. }
  3005. return temp;
  3006. }
  3007. inline ::NavMessage::SpeedLimit* NewAction::unsafe_arena_release_nodeangularlimit() {
  3008. // @@protoc_insertion_point(field_release:NavMessage.NewAction.NodeAngularLimit)
  3009. ::NavMessage::SpeedLimit* temp = nodeangularlimit_;
  3010. nodeangularlimit_ = nullptr;
  3011. return temp;
  3012. }
  3013. inline ::NavMessage::SpeedLimit* NewAction::_internal_mutable_nodeangularlimit() {
  3014. if (nodeangularlimit_ == nullptr) {
  3015. auto* p = CreateMaybeMessage<::NavMessage::SpeedLimit>(GetArena());
  3016. nodeangularlimit_ = p;
  3017. }
  3018. return nodeangularlimit_;
  3019. }
  3020. inline ::NavMessage::SpeedLimit* NewAction::mutable_nodeangularlimit() {
  3021. // @@protoc_insertion_point(field_mutable:NavMessage.NewAction.NodeAngularLimit)
  3022. return _internal_mutable_nodeangularlimit();
  3023. }
  3024. inline void NewAction::set_allocated_nodeangularlimit(::NavMessage::SpeedLimit* nodeangularlimit) {
  3025. ::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
  3026. if (message_arena == nullptr) {
  3027. delete nodeangularlimit_;
  3028. }
  3029. if (nodeangularlimit) {
  3030. ::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
  3031. ::PROTOBUF_NAMESPACE_ID::Arena::GetArena(nodeangularlimit);
  3032. if (message_arena != submessage_arena) {
  3033. nodeangularlimit = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
  3034. message_arena, nodeangularlimit, submessage_arena);
  3035. }
  3036. } else {
  3037. }
  3038. nodeangularlimit_ = nodeangularlimit;
  3039. // @@protoc_insertion_point(field_set_allocated:NavMessage.NewAction.NodeAngularLimit)
  3040. }
  3041. // .NavMessage.SpeedLimit adjustVelocitylimit = 9;
  3042. inline bool NewAction::_internal_has_adjustvelocitylimit() const {
  3043. return this != internal_default_instance() && adjustvelocitylimit_ != nullptr;
  3044. }
  3045. inline bool NewAction::has_adjustvelocitylimit() const {
  3046. return _internal_has_adjustvelocitylimit();
  3047. }
  3048. inline void NewAction::clear_adjustvelocitylimit() {
  3049. if (GetArena() == nullptr && adjustvelocitylimit_ != nullptr) {
  3050. delete adjustvelocitylimit_;
  3051. }
  3052. adjustvelocitylimit_ = nullptr;
  3053. }
  3054. inline const ::NavMessage::SpeedLimit& NewAction::_internal_adjustvelocitylimit() const {
  3055. const ::NavMessage::SpeedLimit* p = adjustvelocitylimit_;
  3056. return p != nullptr ? *p : *reinterpret_cast<const ::NavMessage::SpeedLimit*>(
  3057. &::NavMessage::_SpeedLimit_default_instance_);
  3058. }
  3059. inline const ::NavMessage::SpeedLimit& NewAction::adjustvelocitylimit() const {
  3060. // @@protoc_insertion_point(field_get:NavMessage.NewAction.adjustVelocitylimit)
  3061. return _internal_adjustvelocitylimit();
  3062. }
  3063. inline void NewAction::unsafe_arena_set_allocated_adjustvelocitylimit(
  3064. ::NavMessage::SpeedLimit* adjustvelocitylimit) {
  3065. if (GetArena() == nullptr) {
  3066. delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(adjustvelocitylimit_);
  3067. }
  3068. adjustvelocitylimit_ = adjustvelocitylimit;
  3069. if (adjustvelocitylimit) {
  3070. } else {
  3071. }
  3072. // @@protoc_insertion_point(field_unsafe_arena_set_allocated:NavMessage.NewAction.adjustVelocitylimit)
  3073. }
  3074. inline ::NavMessage::SpeedLimit* NewAction::release_adjustvelocitylimit() {
  3075. ::NavMessage::SpeedLimit* temp = adjustvelocitylimit_;
  3076. adjustvelocitylimit_ = nullptr;
  3077. if (GetArena() != nullptr) {
  3078. temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
  3079. }
  3080. return temp;
  3081. }
  3082. inline ::NavMessage::SpeedLimit* NewAction::unsafe_arena_release_adjustvelocitylimit() {
  3083. // @@protoc_insertion_point(field_release:NavMessage.NewAction.adjustVelocitylimit)
  3084. ::NavMessage::SpeedLimit* temp = adjustvelocitylimit_;
  3085. adjustvelocitylimit_ = nullptr;
  3086. return temp;
  3087. }
  3088. inline ::NavMessage::SpeedLimit* NewAction::_internal_mutable_adjustvelocitylimit() {
  3089. if (adjustvelocitylimit_ == nullptr) {
  3090. auto* p = CreateMaybeMessage<::NavMessage::SpeedLimit>(GetArena());
  3091. adjustvelocitylimit_ = p;
  3092. }
  3093. return adjustvelocitylimit_;
  3094. }
  3095. inline ::NavMessage::SpeedLimit* NewAction::mutable_adjustvelocitylimit() {
  3096. // @@protoc_insertion_point(field_mutable:NavMessage.NewAction.adjustVelocitylimit)
  3097. return _internal_mutable_adjustvelocitylimit();
  3098. }
  3099. inline void NewAction::set_allocated_adjustvelocitylimit(::NavMessage::SpeedLimit* adjustvelocitylimit) {
  3100. ::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
  3101. if (message_arena == nullptr) {
  3102. delete adjustvelocitylimit_;
  3103. }
  3104. if (adjustvelocitylimit) {
  3105. ::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
  3106. ::PROTOBUF_NAMESPACE_ID::Arena::GetArena(adjustvelocitylimit);
  3107. if (message_arena != submessage_arena) {
  3108. adjustvelocitylimit = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
  3109. message_arena, adjustvelocitylimit, submessage_arena);
  3110. }
  3111. } else {
  3112. }
  3113. adjustvelocitylimit_ = adjustvelocitylimit;
  3114. // @@protoc_insertion_point(field_set_allocated:NavMessage.NewAction.adjustVelocitylimit)
  3115. }
  3116. // .NavMessage.SpeedLimit adjustHorizonLimit = 10;
  3117. inline bool NewAction::_internal_has_adjusthorizonlimit() const {
  3118. return this != internal_default_instance() && adjusthorizonlimit_ != nullptr;
  3119. }
  3120. inline bool NewAction::has_adjusthorizonlimit() const {
  3121. return _internal_has_adjusthorizonlimit();
  3122. }
  3123. inline void NewAction::clear_adjusthorizonlimit() {
  3124. if (GetArena() == nullptr && adjusthorizonlimit_ != nullptr) {
  3125. delete adjusthorizonlimit_;
  3126. }
  3127. adjusthorizonlimit_ = nullptr;
  3128. }
  3129. inline const ::NavMessage::SpeedLimit& NewAction::_internal_adjusthorizonlimit() const {
  3130. const ::NavMessage::SpeedLimit* p = adjusthorizonlimit_;
  3131. return p != nullptr ? *p : *reinterpret_cast<const ::NavMessage::SpeedLimit*>(
  3132. &::NavMessage::_SpeedLimit_default_instance_);
  3133. }
  3134. inline const ::NavMessage::SpeedLimit& NewAction::adjusthorizonlimit() const {
  3135. // @@protoc_insertion_point(field_get:NavMessage.NewAction.adjustHorizonLimit)
  3136. return _internal_adjusthorizonlimit();
  3137. }
  3138. inline void NewAction::unsafe_arena_set_allocated_adjusthorizonlimit(
  3139. ::NavMessage::SpeedLimit* adjusthorizonlimit) {
  3140. if (GetArena() == nullptr) {
  3141. delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(adjusthorizonlimit_);
  3142. }
  3143. adjusthorizonlimit_ = adjusthorizonlimit;
  3144. if (adjusthorizonlimit) {
  3145. } else {
  3146. }
  3147. // @@protoc_insertion_point(field_unsafe_arena_set_allocated:NavMessage.NewAction.adjustHorizonLimit)
  3148. }
  3149. inline ::NavMessage::SpeedLimit* NewAction::release_adjusthorizonlimit() {
  3150. ::NavMessage::SpeedLimit* temp = adjusthorizonlimit_;
  3151. adjusthorizonlimit_ = nullptr;
  3152. if (GetArena() != nullptr) {
  3153. temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
  3154. }
  3155. return temp;
  3156. }
  3157. inline ::NavMessage::SpeedLimit* NewAction::unsafe_arena_release_adjusthorizonlimit() {
  3158. // @@protoc_insertion_point(field_release:NavMessage.NewAction.adjustHorizonLimit)
  3159. ::NavMessage::SpeedLimit* temp = adjusthorizonlimit_;
  3160. adjusthorizonlimit_ = nullptr;
  3161. return temp;
  3162. }
  3163. inline ::NavMessage::SpeedLimit* NewAction::_internal_mutable_adjusthorizonlimit() {
  3164. if (adjusthorizonlimit_ == nullptr) {
  3165. auto* p = CreateMaybeMessage<::NavMessage::SpeedLimit>(GetArena());
  3166. adjusthorizonlimit_ = p;
  3167. }
  3168. return adjusthorizonlimit_;
  3169. }
  3170. inline ::NavMessage::SpeedLimit* NewAction::mutable_adjusthorizonlimit() {
  3171. // @@protoc_insertion_point(field_mutable:NavMessage.NewAction.adjustHorizonLimit)
  3172. return _internal_mutable_adjusthorizonlimit();
  3173. }
  3174. inline void NewAction::set_allocated_adjusthorizonlimit(::NavMessage::SpeedLimit* adjusthorizonlimit) {
  3175. ::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
  3176. if (message_arena == nullptr) {
  3177. delete adjusthorizonlimit_;
  3178. }
  3179. if (adjusthorizonlimit) {
  3180. ::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
  3181. ::PROTOBUF_NAMESPACE_ID::Arena::GetArena(adjusthorizonlimit);
  3182. if (message_arena != submessage_arena) {
  3183. adjusthorizonlimit = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
  3184. message_arena, adjusthorizonlimit, submessage_arena);
  3185. }
  3186. } else {
  3187. }
  3188. adjusthorizonlimit_ = adjusthorizonlimit;
  3189. // @@protoc_insertion_point(field_set_allocated:NavMessage.NewAction.adjustHorizonLimit)
  3190. }
  3191. // float wheelbase = 11;
  3192. inline void NewAction::clear_wheelbase() {
  3193. wheelbase_ = 0;
  3194. }
  3195. inline float NewAction::_internal_wheelbase() const {
  3196. return wheelbase_;
  3197. }
  3198. inline float NewAction::wheelbase() const {
  3199. // @@protoc_insertion_point(field_get:NavMessage.NewAction.wheelbase)
  3200. return _internal_wheelbase();
  3201. }
  3202. inline void NewAction::_internal_set_wheelbase(float value) {
  3203. wheelbase_ = value;
  3204. }
  3205. inline void NewAction::set_wheelbase(float value) {
  3206. _internal_set_wheelbase(value);
  3207. // @@protoc_insertion_point(field_set:NavMessage.NewAction.wheelbase)
  3208. }
  3209. // int32 changedMode = 12;
  3210. inline void NewAction::clear_changedmode() {
  3211. changedmode_ = 0;
  3212. }
  3213. inline ::PROTOBUF_NAMESPACE_ID::int32 NewAction::_internal_changedmode() const {
  3214. return changedmode_;
  3215. }
  3216. inline ::PROTOBUF_NAMESPACE_ID::int32 NewAction::changedmode() const {
  3217. // @@protoc_insertion_point(field_get:NavMessage.NewAction.changedMode)
  3218. return _internal_changedmode();
  3219. }
  3220. inline void NewAction::_internal_set_changedmode(::PROTOBUF_NAMESPACE_ID::int32 value) {
  3221. changedmode_ = value;
  3222. }
  3223. inline void NewAction::set_changedmode(::PROTOBUF_NAMESPACE_ID::int32 value) {
  3224. _internal_set_changedmode(value);
  3225. // @@protoc_insertion_point(field_set:NavMessage.NewAction.changedMode)
  3226. }
  3227. // -------------------------------------------------------------------
  3228. // NavCmd
  3229. // int32 action = 1;
  3230. inline void NavCmd::clear_action() {
  3231. action_ = 0;
  3232. }
  3233. inline ::PROTOBUF_NAMESPACE_ID::int32 NavCmd::_internal_action() const {
  3234. return action_;
  3235. }
  3236. inline ::PROTOBUF_NAMESPACE_ID::int32 NavCmd::action() const {
  3237. // @@protoc_insertion_point(field_get:NavMessage.NavCmd.action)
  3238. return _internal_action();
  3239. }
  3240. inline void NavCmd::_internal_set_action(::PROTOBUF_NAMESPACE_ID::int32 value) {
  3241. action_ = value;
  3242. }
  3243. inline void NavCmd::set_action(::PROTOBUF_NAMESPACE_ID::int32 value) {
  3244. _internal_set_action(value);
  3245. // @@protoc_insertion_point(field_set:NavMessage.NavCmd.action)
  3246. }
  3247. // string key = 2;
  3248. inline void NavCmd::clear_key() {
  3249. key_.ClearToEmpty(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArena());
  3250. }
  3251. inline const std::string& NavCmd::key() const {
  3252. // @@protoc_insertion_point(field_get:NavMessage.NavCmd.key)
  3253. return _internal_key();
  3254. }
  3255. inline void NavCmd::set_key(const std::string& value) {
  3256. _internal_set_key(value);
  3257. // @@protoc_insertion_point(field_set:NavMessage.NavCmd.key)
  3258. }
  3259. inline std::string* NavCmd::mutable_key() {
  3260. // @@protoc_insertion_point(field_mutable:NavMessage.NavCmd.key)
  3261. return _internal_mutable_key();
  3262. }
  3263. inline const std::string& NavCmd::_internal_key() const {
  3264. return key_.Get();
  3265. }
  3266. inline void NavCmd::_internal_set_key(const std::string& value) {
  3267. key_.Set(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), value, GetArena());
  3268. }
  3269. inline void NavCmd::set_key(std::string&& value) {
  3270. key_.Set(
  3271. &::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), ::std::move(value), GetArena());
  3272. // @@protoc_insertion_point(field_set_rvalue:NavMessage.NavCmd.key)
  3273. }
  3274. inline void NavCmd::set_key(const char* value) {
  3275. GOOGLE_DCHECK(value != nullptr);
  3276. key_.Set(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), ::std::string(value),
  3277. GetArena());
  3278. // @@protoc_insertion_point(field_set_char:NavMessage.NavCmd.key)
  3279. }
  3280. inline void NavCmd::set_key(const char* value,
  3281. size_t size) {
  3282. key_.Set(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), ::std::string(
  3283. reinterpret_cast<const char*>(value), size), GetArena());
  3284. // @@protoc_insertion_point(field_set_pointer:NavMessage.NavCmd.key)
  3285. }
  3286. inline std::string* NavCmd::_internal_mutable_key() {
  3287. return key_.Mutable(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArena());
  3288. }
  3289. inline std::string* NavCmd::release_key() {
  3290. // @@protoc_insertion_point(field_release:NavMessage.NavCmd.key)
  3291. return key_.Release(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArena());
  3292. }
  3293. inline void NavCmd::set_allocated_key(std::string* key) {
  3294. if (key != nullptr) {
  3295. } else {
  3296. }
  3297. key_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), key,
  3298. GetArena());
  3299. // @@protoc_insertion_point(field_set_allocated:NavMessage.NavCmd.key)
  3300. }
  3301. // repeated .NavMessage.NewAction newActions = 5;
  3302. inline int NavCmd::_internal_newactions_size() const {
  3303. return newactions_.size();
  3304. }
  3305. inline int NavCmd::newactions_size() const {
  3306. return _internal_newactions_size();
  3307. }
  3308. inline void NavCmd::clear_newactions() {
  3309. newactions_.Clear();
  3310. }
  3311. inline ::NavMessage::NewAction* NavCmd::mutable_newactions(int index) {
  3312. // @@protoc_insertion_point(field_mutable:NavMessage.NavCmd.newActions)
  3313. return newactions_.Mutable(index);
  3314. }
  3315. inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::NavMessage::NewAction >*
  3316. NavCmd::mutable_newactions() {
  3317. // @@protoc_insertion_point(field_mutable_list:NavMessage.NavCmd.newActions)
  3318. return &newactions_;
  3319. }
  3320. inline const ::NavMessage::NewAction& NavCmd::_internal_newactions(int index) const {
  3321. return newactions_.Get(index);
  3322. }
  3323. inline const ::NavMessage::NewAction& NavCmd::newactions(int index) const {
  3324. // @@protoc_insertion_point(field_get:NavMessage.NavCmd.newActions)
  3325. return _internal_newactions(index);
  3326. }
  3327. inline ::NavMessage::NewAction* NavCmd::_internal_add_newactions() {
  3328. return newactions_.Add();
  3329. }
  3330. inline ::NavMessage::NewAction* NavCmd::add_newactions() {
  3331. // @@protoc_insertion_point(field_add:NavMessage.NavCmd.newActions)
  3332. return _internal_add_newactions();
  3333. }
  3334. inline const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::NavMessage::NewAction >&
  3335. NavCmd::newactions() const {
  3336. // @@protoc_insertion_point(field_list:NavMessage.NavCmd.newActions)
  3337. return newactions_;
  3338. }
  3339. // -------------------------------------------------------------------
  3340. // NavStatu
  3341. // int32 statu = 1;
  3342. inline void NavStatu::clear_statu() {
  3343. statu_ = 0;
  3344. }
  3345. inline ::PROTOBUF_NAMESPACE_ID::int32 NavStatu::_internal_statu() const {
  3346. return statu_;
  3347. }
  3348. inline ::PROTOBUF_NAMESPACE_ID::int32 NavStatu::statu() const {
  3349. // @@protoc_insertion_point(field_get:NavMessage.NavStatu.statu)
  3350. return _internal_statu();
  3351. }
  3352. inline void NavStatu::_internal_set_statu(::PROTOBUF_NAMESPACE_ID::int32 value) {
  3353. statu_ = value;
  3354. }
  3355. inline void NavStatu::set_statu(::PROTOBUF_NAMESPACE_ID::int32 value) {
  3356. _internal_set_statu(value);
  3357. // @@protoc_insertion_point(field_set:NavMessage.NavStatu.statu)
  3358. }
  3359. // bool main_agv = 2;
  3360. inline void NavStatu::clear_main_agv() {
  3361. main_agv_ = false;
  3362. }
  3363. inline bool NavStatu::_internal_main_agv() const {
  3364. return main_agv_;
  3365. }
  3366. inline bool NavStatu::main_agv() const {
  3367. // @@protoc_insertion_point(field_get:NavMessage.NavStatu.main_agv)
  3368. return _internal_main_agv();
  3369. }
  3370. inline void NavStatu::_internal_set_main_agv(bool value) {
  3371. main_agv_ = value;
  3372. }
  3373. inline void NavStatu::set_main_agv(bool value) {
  3374. _internal_set_main_agv(value);
  3375. // @@protoc_insertion_point(field_set:NavMessage.NavStatu.main_agv)
  3376. }
  3377. // int32 move_mode = 3;
  3378. inline void NavStatu::clear_move_mode() {
  3379. move_mode_ = 0;
  3380. }
  3381. inline ::PROTOBUF_NAMESPACE_ID::int32 NavStatu::_internal_move_mode() const {
  3382. return move_mode_;
  3383. }
  3384. inline ::PROTOBUF_NAMESPACE_ID::int32 NavStatu::move_mode() const {
  3385. // @@protoc_insertion_point(field_get:NavMessage.NavStatu.move_mode)
  3386. return _internal_move_mode();
  3387. }
  3388. inline void NavStatu::_internal_set_move_mode(::PROTOBUF_NAMESPACE_ID::int32 value) {
  3389. move_mode_ = value;
  3390. }
  3391. inline void NavStatu::set_move_mode(::PROTOBUF_NAMESPACE_ID::int32 value) {
  3392. _internal_set_move_mode(value);
  3393. // @@protoc_insertion_point(field_set:NavMessage.NavStatu.move_mode)
  3394. }
  3395. // string key = 4;
  3396. inline void NavStatu::clear_key() {
  3397. key_.ClearToEmpty(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArena());
  3398. }
  3399. inline const std::string& NavStatu::key() const {
  3400. // @@protoc_insertion_point(field_get:NavMessage.NavStatu.key)
  3401. return _internal_key();
  3402. }
  3403. inline void NavStatu::set_key(const std::string& value) {
  3404. _internal_set_key(value);
  3405. // @@protoc_insertion_point(field_set:NavMessage.NavStatu.key)
  3406. }
  3407. inline std::string* NavStatu::mutable_key() {
  3408. // @@protoc_insertion_point(field_mutable:NavMessage.NavStatu.key)
  3409. return _internal_mutable_key();
  3410. }
  3411. inline const std::string& NavStatu::_internal_key() const {
  3412. return key_.Get();
  3413. }
  3414. inline void NavStatu::_internal_set_key(const std::string& value) {
  3415. key_.Set(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), value, GetArena());
  3416. }
  3417. inline void NavStatu::set_key(std::string&& value) {
  3418. key_.Set(
  3419. &::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), ::std::move(value), GetArena());
  3420. // @@protoc_insertion_point(field_set_rvalue:NavMessage.NavStatu.key)
  3421. }
  3422. inline void NavStatu::set_key(const char* value) {
  3423. GOOGLE_DCHECK(value != nullptr);
  3424. key_.Set(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), ::std::string(value),
  3425. GetArena());
  3426. // @@protoc_insertion_point(field_set_char:NavMessage.NavStatu.key)
  3427. }
  3428. inline void NavStatu::set_key(const char* value,
  3429. size_t size) {
  3430. key_.Set(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), ::std::string(
  3431. reinterpret_cast<const char*>(value), size), GetArena());
  3432. // @@protoc_insertion_point(field_set_pointer:NavMessage.NavStatu.key)
  3433. }
  3434. inline std::string* NavStatu::_internal_mutable_key() {
  3435. return key_.Mutable(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArena());
  3436. }
  3437. inline std::string* NavStatu::release_key() {
  3438. // @@protoc_insertion_point(field_release:NavMessage.NavStatu.key)
  3439. return key_.Release(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArena());
  3440. }
  3441. inline void NavStatu::set_allocated_key(std::string* key) {
  3442. if (key != nullptr) {
  3443. } else {
  3444. }
  3445. key_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), key,
  3446. GetArena());
  3447. // @@protoc_insertion_point(field_set_allocated:NavMessage.NavStatu.key)
  3448. }
  3449. // .NavMessage.Trajectory selected_traj = 6;
  3450. inline bool NavStatu::_internal_has_selected_traj() const {
  3451. return this != internal_default_instance() && selected_traj_ != nullptr;
  3452. }
  3453. inline bool NavStatu::has_selected_traj() const {
  3454. return _internal_has_selected_traj();
  3455. }
  3456. inline void NavStatu::clear_selected_traj() {
  3457. if (GetArena() == nullptr && selected_traj_ != nullptr) {
  3458. delete selected_traj_;
  3459. }
  3460. selected_traj_ = nullptr;
  3461. }
  3462. inline const ::NavMessage::Trajectory& NavStatu::_internal_selected_traj() const {
  3463. const ::NavMessage::Trajectory* p = selected_traj_;
  3464. return p != nullptr ? *p : *reinterpret_cast<const ::NavMessage::Trajectory*>(
  3465. &::NavMessage::_Trajectory_default_instance_);
  3466. }
  3467. inline const ::NavMessage::Trajectory& NavStatu::selected_traj() const {
  3468. // @@protoc_insertion_point(field_get:NavMessage.NavStatu.selected_traj)
  3469. return _internal_selected_traj();
  3470. }
  3471. inline void NavStatu::unsafe_arena_set_allocated_selected_traj(
  3472. ::NavMessage::Trajectory* selected_traj) {
  3473. if (GetArena() == nullptr) {
  3474. delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(selected_traj_);
  3475. }
  3476. selected_traj_ = selected_traj;
  3477. if (selected_traj) {
  3478. } else {
  3479. }
  3480. // @@protoc_insertion_point(field_unsafe_arena_set_allocated:NavMessage.NavStatu.selected_traj)
  3481. }
  3482. inline ::NavMessage::Trajectory* NavStatu::release_selected_traj() {
  3483. ::NavMessage::Trajectory* temp = selected_traj_;
  3484. selected_traj_ = nullptr;
  3485. if (GetArena() != nullptr) {
  3486. temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
  3487. }
  3488. return temp;
  3489. }
  3490. inline ::NavMessage::Trajectory* NavStatu::unsafe_arena_release_selected_traj() {
  3491. // @@protoc_insertion_point(field_release:NavMessage.NavStatu.selected_traj)
  3492. ::NavMessage::Trajectory* temp = selected_traj_;
  3493. selected_traj_ = nullptr;
  3494. return temp;
  3495. }
  3496. inline ::NavMessage::Trajectory* NavStatu::_internal_mutable_selected_traj() {
  3497. if (selected_traj_ == nullptr) {
  3498. auto* p = CreateMaybeMessage<::NavMessage::Trajectory>(GetArena());
  3499. selected_traj_ = p;
  3500. }
  3501. return selected_traj_;
  3502. }
  3503. inline ::NavMessage::Trajectory* NavStatu::mutable_selected_traj() {
  3504. // @@protoc_insertion_point(field_mutable:NavMessage.NavStatu.selected_traj)
  3505. return _internal_mutable_selected_traj();
  3506. }
  3507. inline void NavStatu::set_allocated_selected_traj(::NavMessage::Trajectory* selected_traj) {
  3508. ::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
  3509. if (message_arena == nullptr) {
  3510. delete selected_traj_;
  3511. }
  3512. if (selected_traj) {
  3513. ::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
  3514. ::PROTOBUF_NAMESPACE_ID::Arena::GetArena(selected_traj);
  3515. if (message_arena != submessage_arena) {
  3516. selected_traj = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
  3517. message_arena, selected_traj, submessage_arena);
  3518. }
  3519. } else {
  3520. }
  3521. selected_traj_ = selected_traj;
  3522. // @@protoc_insertion_point(field_set_allocated:NavMessage.NavStatu.selected_traj)
  3523. }
  3524. // .NavMessage.Trajectory predict_traj = 7;
  3525. inline bool NavStatu::_internal_has_predict_traj() const {
  3526. return this != internal_default_instance() && predict_traj_ != nullptr;
  3527. }
  3528. inline bool NavStatu::has_predict_traj() const {
  3529. return _internal_has_predict_traj();
  3530. }
  3531. inline void NavStatu::clear_predict_traj() {
  3532. if (GetArena() == nullptr && predict_traj_ != nullptr) {
  3533. delete predict_traj_;
  3534. }
  3535. predict_traj_ = nullptr;
  3536. }
  3537. inline const ::NavMessage::Trajectory& NavStatu::_internal_predict_traj() const {
  3538. const ::NavMessage::Trajectory* p = predict_traj_;
  3539. return p != nullptr ? *p : *reinterpret_cast<const ::NavMessage::Trajectory*>(
  3540. &::NavMessage::_Trajectory_default_instance_);
  3541. }
  3542. inline const ::NavMessage::Trajectory& NavStatu::predict_traj() const {
  3543. // @@protoc_insertion_point(field_get:NavMessage.NavStatu.predict_traj)
  3544. return _internal_predict_traj();
  3545. }
  3546. inline void NavStatu::unsafe_arena_set_allocated_predict_traj(
  3547. ::NavMessage::Trajectory* predict_traj) {
  3548. if (GetArena() == nullptr) {
  3549. delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(predict_traj_);
  3550. }
  3551. predict_traj_ = predict_traj;
  3552. if (predict_traj) {
  3553. } else {
  3554. }
  3555. // @@protoc_insertion_point(field_unsafe_arena_set_allocated:NavMessage.NavStatu.predict_traj)
  3556. }
  3557. inline ::NavMessage::Trajectory* NavStatu::release_predict_traj() {
  3558. ::NavMessage::Trajectory* temp = predict_traj_;
  3559. predict_traj_ = nullptr;
  3560. if (GetArena() != nullptr) {
  3561. temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
  3562. }
  3563. return temp;
  3564. }
  3565. inline ::NavMessage::Trajectory* NavStatu::unsafe_arena_release_predict_traj() {
  3566. // @@protoc_insertion_point(field_release:NavMessage.NavStatu.predict_traj)
  3567. ::NavMessage::Trajectory* temp = predict_traj_;
  3568. predict_traj_ = nullptr;
  3569. return temp;
  3570. }
  3571. inline ::NavMessage::Trajectory* NavStatu::_internal_mutable_predict_traj() {
  3572. if (predict_traj_ == nullptr) {
  3573. auto* p = CreateMaybeMessage<::NavMessage::Trajectory>(GetArena());
  3574. predict_traj_ = p;
  3575. }
  3576. return predict_traj_;
  3577. }
  3578. inline ::NavMessage::Trajectory* NavStatu::mutable_predict_traj() {
  3579. // @@protoc_insertion_point(field_mutable:NavMessage.NavStatu.predict_traj)
  3580. return _internal_mutable_predict_traj();
  3581. }
  3582. inline void NavStatu::set_allocated_predict_traj(::NavMessage::Trajectory* predict_traj) {
  3583. ::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
  3584. if (message_arena == nullptr) {
  3585. delete predict_traj_;
  3586. }
  3587. if (predict_traj) {
  3588. ::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
  3589. ::PROTOBUF_NAMESPACE_ID::Arena::GetArena(predict_traj);
  3590. if (message_arena != submessage_arena) {
  3591. predict_traj = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
  3592. message_arena, predict_traj, submessage_arena);
  3593. }
  3594. } else {
  3595. }
  3596. predict_traj_ = predict_traj;
  3597. // @@protoc_insertion_point(field_set_allocated:NavMessage.NavStatu.predict_traj)
  3598. }
  3599. // -------------------------------------------------------------------
  3600. // RobotStatu
  3601. // float x = 1;
  3602. inline void RobotStatu::clear_x() {
  3603. x_ = 0;
  3604. }
  3605. inline float RobotStatu::_internal_x() const {
  3606. return x_;
  3607. }
  3608. inline float RobotStatu::x() const {
  3609. // @@protoc_insertion_point(field_get:NavMessage.RobotStatu.x)
  3610. return _internal_x();
  3611. }
  3612. inline void RobotStatu::_internal_set_x(float value) {
  3613. x_ = value;
  3614. }
  3615. inline void RobotStatu::set_x(float value) {
  3616. _internal_set_x(value);
  3617. // @@protoc_insertion_point(field_set:NavMessage.RobotStatu.x)
  3618. }
  3619. // float y = 2;
  3620. inline void RobotStatu::clear_y() {
  3621. y_ = 0;
  3622. }
  3623. inline float RobotStatu::_internal_y() const {
  3624. return y_;
  3625. }
  3626. inline float RobotStatu::y() const {
  3627. // @@protoc_insertion_point(field_get:NavMessage.RobotStatu.y)
  3628. return _internal_y();
  3629. }
  3630. inline void RobotStatu::_internal_set_y(float value) {
  3631. y_ = value;
  3632. }
  3633. inline void RobotStatu::set_y(float value) {
  3634. _internal_set_y(value);
  3635. // @@protoc_insertion_point(field_set:NavMessage.RobotStatu.y)
  3636. }
  3637. // float theta = 3;
  3638. inline void RobotStatu::clear_theta() {
  3639. theta_ = 0;
  3640. }
  3641. inline float RobotStatu::_internal_theta() const {
  3642. return theta_;
  3643. }
  3644. inline float RobotStatu::theta() const {
  3645. // @@protoc_insertion_point(field_get:NavMessage.RobotStatu.theta)
  3646. return _internal_theta();
  3647. }
  3648. inline void RobotStatu::_internal_set_theta(float value) {
  3649. theta_ = value;
  3650. }
  3651. inline void RobotStatu::set_theta(float value) {
  3652. _internal_set_theta(value);
  3653. // @@protoc_insertion_point(field_set:NavMessage.RobotStatu.theta)
  3654. }
  3655. // .NavMessage.AgvStatu agvStatu = 4;
  3656. inline bool RobotStatu::_internal_has_agvstatu() const {
  3657. return this != internal_default_instance() && agvstatu_ != nullptr;
  3658. }
  3659. inline bool RobotStatu::has_agvstatu() const {
  3660. return _internal_has_agvstatu();
  3661. }
  3662. inline void RobotStatu::clear_agvstatu() {
  3663. if (GetArena() == nullptr && agvstatu_ != nullptr) {
  3664. delete agvstatu_;
  3665. }
  3666. agvstatu_ = nullptr;
  3667. }
  3668. inline const ::NavMessage::AgvStatu& RobotStatu::_internal_agvstatu() const {
  3669. const ::NavMessage::AgvStatu* p = agvstatu_;
  3670. return p != nullptr ? *p : *reinterpret_cast<const ::NavMessage::AgvStatu*>(
  3671. &::NavMessage::_AgvStatu_default_instance_);
  3672. }
  3673. inline const ::NavMessage::AgvStatu& RobotStatu::agvstatu() const {
  3674. // @@protoc_insertion_point(field_get:NavMessage.RobotStatu.agvStatu)
  3675. return _internal_agvstatu();
  3676. }
  3677. inline void RobotStatu::unsafe_arena_set_allocated_agvstatu(
  3678. ::NavMessage::AgvStatu* agvstatu) {
  3679. if (GetArena() == nullptr) {
  3680. delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(agvstatu_);
  3681. }
  3682. agvstatu_ = agvstatu;
  3683. if (agvstatu) {
  3684. } else {
  3685. }
  3686. // @@protoc_insertion_point(field_unsafe_arena_set_allocated:NavMessage.RobotStatu.agvStatu)
  3687. }
  3688. inline ::NavMessage::AgvStatu* RobotStatu::release_agvstatu() {
  3689. ::NavMessage::AgvStatu* temp = agvstatu_;
  3690. agvstatu_ = nullptr;
  3691. if (GetArena() != nullptr) {
  3692. temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
  3693. }
  3694. return temp;
  3695. }
  3696. inline ::NavMessage::AgvStatu* RobotStatu::unsafe_arena_release_agvstatu() {
  3697. // @@protoc_insertion_point(field_release:NavMessage.RobotStatu.agvStatu)
  3698. ::NavMessage::AgvStatu* temp = agvstatu_;
  3699. agvstatu_ = nullptr;
  3700. return temp;
  3701. }
  3702. inline ::NavMessage::AgvStatu* RobotStatu::_internal_mutable_agvstatu() {
  3703. if (agvstatu_ == nullptr) {
  3704. auto* p = CreateMaybeMessage<::NavMessage::AgvStatu>(GetArena());
  3705. agvstatu_ = p;
  3706. }
  3707. return agvstatu_;
  3708. }
  3709. inline ::NavMessage::AgvStatu* RobotStatu::mutable_agvstatu() {
  3710. // @@protoc_insertion_point(field_mutable:NavMessage.RobotStatu.agvStatu)
  3711. return _internal_mutable_agvstatu();
  3712. }
  3713. inline void RobotStatu::set_allocated_agvstatu(::NavMessage::AgvStatu* agvstatu) {
  3714. ::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArena();
  3715. if (message_arena == nullptr) {
  3716. delete agvstatu_;
  3717. }
  3718. if (agvstatu) {
  3719. ::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
  3720. ::PROTOBUF_NAMESPACE_ID::Arena::GetArena(agvstatu);
  3721. if (message_arena != submessage_arena) {
  3722. agvstatu = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
  3723. message_arena, agvstatu, submessage_arena);
  3724. }
  3725. } else {
  3726. }
  3727. agvstatu_ = agvstatu;
  3728. // @@protoc_insertion_point(field_set_allocated:NavMessage.RobotStatu.agvStatu)
  3729. }
  3730. #ifdef __GNUC__
  3731. #pragma GCC diagnostic pop
  3732. #endif // __GNUC__
  3733. // -------------------------------------------------------------------
  3734. // -------------------------------------------------------------------
  3735. // -------------------------------------------------------------------
  3736. // -------------------------------------------------------------------
  3737. // -------------------------------------------------------------------
  3738. // -------------------------------------------------------------------
  3739. // -------------------------------------------------------------------
  3740. // -------------------------------------------------------------------
  3741. // -------------------------------------------------------------------
  3742. // -------------------------------------------------------------------
  3743. // @@protoc_insertion_point(namespace_scope)
  3744. } // namespace NavMessage
  3745. // @@protoc_insertion_point(global_scope)
  3746. #include <google/protobuf/port_undef.inc>
  3747. #endif // GOOGLE_PROTOBUF_INCLUDED_GOOGLE_PROTOBUF_INCLUDED_message_2eproto