Message.pb.go 157 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.26.0
  4. // protoc v4.25.1
  5. // source: Message.proto
  6. package message
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. // 通用操作结果码
  20. type GameStatus int32
  21. const (
  22. GameStatus_GAME_STATUS_OK GameStatus = 0
  23. GameStatus_GAME_STATUS_PLAYER_NIL GameStatus = 1001 // 玩家不存在
  24. GameStatus_GAME_STATUS_UID_PASSWD_NIL GameStatus = 1002 // 账号或密码不能为空
  25. GameStatus_GAME_STATUS_UID_ERROR GameStatus = 1003 // 账号不存在
  26. GameStatus_GAME_STATUS_PASSWD_ERROR GameStatus = 1004 // 密码错误
  27. GameStatus_GAME_STATUS_ROOM_NOT_EXIT GameStatus = 1005 // 房间不存在
  28. GameStatus_GAME_STATUS_PB_ERR GameStatus = 1006 //协议解析报错
  29. GameStatus_GAME_STATUS_INNER_ERR GameStatus = 1007 // 服务器内部错误
  30. GameStatus_GAME_STATUS_LOGIN_CHECK_ERR GameStatus = 1055 // 登录校验失败
  31. GameStatus_Player_Status_0 GameStatus = 11 //表示玩家在大厅,
  32. GameStatus_Player_Status_1 GameStatus = 1 //表示玩家开始匹配,
  33. GameStatus_Player_Status_2 GameStatus = 2 //玩家进入游戏房间,
  34. GameStatus_Player_Status_3 GameStatus = 3 //ready,玩家落座开始游戏
  35. GameStatus_Player_Status_4 GameStatus = 4 //play,
  36. GameStatus_Player_Status_5 GameStatus = 5 //胜利后观战,
  37. GameStatus_Player_Status_6 GameStatus = 6 //胜利后离开,
  38. GameStatus_Player_Status_7 GameStatus = 7 //组队逃跑,
  39. GameStatus_Player_Status_8 GameStatus = 8 //逃跑,
  40. GameStatus_Player_Status_9 GameStatus = 9 //托管,
  41. GameStatus_Player_Status_10 GameStatus = 10 //观战玩家,
  42. )
  43. // Enum value maps for GameStatus.
  44. var (
  45. GameStatus_name = map[int32]string{
  46. 0: "GAME_STATUS_OK",
  47. 1001: "GAME_STATUS_PLAYER_NIL",
  48. 1002: "GAME_STATUS_UID_PASSWD_NIL",
  49. 1003: "GAME_STATUS_UID_ERROR",
  50. 1004: "GAME_STATUS_PASSWD_ERROR",
  51. 1005: "GAME_STATUS_ROOM_NOT_EXIT",
  52. 1006: "GAME_STATUS_PB_ERR",
  53. 1007: "GAME_STATUS_INNER_ERR",
  54. 1055: "GAME_STATUS_LOGIN_CHECK_ERR",
  55. 11: "Player_Status_0",
  56. 1: "Player_Status_1",
  57. 2: "Player_Status_2",
  58. 3: "Player_Status_3",
  59. 4: "Player_Status_4",
  60. 5: "Player_Status_5",
  61. 6: "Player_Status_6",
  62. 7: "Player_Status_7",
  63. 8: "Player_Status_8",
  64. 9: "Player_Status_9",
  65. 10: "Player_Status_10",
  66. }
  67. GameStatus_value = map[string]int32{
  68. "GAME_STATUS_OK": 0,
  69. "GAME_STATUS_PLAYER_NIL": 1001,
  70. "GAME_STATUS_UID_PASSWD_NIL": 1002,
  71. "GAME_STATUS_UID_ERROR": 1003,
  72. "GAME_STATUS_PASSWD_ERROR": 1004,
  73. "GAME_STATUS_ROOM_NOT_EXIT": 1005,
  74. "GAME_STATUS_PB_ERR": 1006,
  75. "GAME_STATUS_INNER_ERR": 1007,
  76. "GAME_STATUS_LOGIN_CHECK_ERR": 1055,
  77. "Player_Status_0": 11,
  78. "Player_Status_1": 1,
  79. "Player_Status_2": 2,
  80. "Player_Status_3": 3,
  81. "Player_Status_4": 4,
  82. "Player_Status_5": 5,
  83. "Player_Status_6": 6,
  84. "Player_Status_7": 7,
  85. "Player_Status_8": 8,
  86. "Player_Status_9": 9,
  87. "Player_Status_10": 10,
  88. }
  89. )
  90. func (x GameStatus) Enum() *GameStatus {
  91. p := new(GameStatus)
  92. *p = x
  93. return p
  94. }
  95. func (x GameStatus) String() string {
  96. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  97. }
  98. func (GameStatus) Descriptor() protoreflect.EnumDescriptor {
  99. return file_Message_proto_enumTypes[0].Descriptor()
  100. }
  101. func (GameStatus) Type() protoreflect.EnumType {
  102. return &file_Message_proto_enumTypes[0]
  103. }
  104. func (x GameStatus) Number() protoreflect.EnumNumber {
  105. return protoreflect.EnumNumber(x)
  106. }
  107. // Deprecated: Use GameStatus.Descriptor instead.
  108. func (GameStatus) EnumDescriptor() ([]byte, []int) {
  109. return file_Message_proto_rawDescGZIP(), []int{0}
  110. }
  111. // 踢人原因
  112. type KickReason int32
  113. const (
  114. KickReason_KICK_REASON_UNKNOWN KickReason = 0
  115. KickReason_KICK_REASON_LOGIN_ELSEWHERE KickReason = 1
  116. KickReason_KICK_REASON_HEARTBEAT_TIMEOUT KickReason = 2
  117. KickReason_KICK_REASON_NOT_LOGIN KickReason = 3
  118. )
  119. // Enum value maps for KickReason.
  120. var (
  121. KickReason_name = map[int32]string{
  122. 0: "KICK_REASON_UNKNOWN",
  123. 1: "KICK_REASON_LOGIN_ELSEWHERE",
  124. 2: "KICK_REASON_HEARTBEAT_TIMEOUT",
  125. 3: "KICK_REASON_NOT_LOGIN",
  126. }
  127. KickReason_value = map[string]int32{
  128. "KICK_REASON_UNKNOWN": 0,
  129. "KICK_REASON_LOGIN_ELSEWHERE": 1,
  130. "KICK_REASON_HEARTBEAT_TIMEOUT": 2,
  131. "KICK_REASON_NOT_LOGIN": 3,
  132. }
  133. )
  134. func (x KickReason) Enum() *KickReason {
  135. p := new(KickReason)
  136. *p = x
  137. return p
  138. }
  139. func (x KickReason) String() string {
  140. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  141. }
  142. func (KickReason) Descriptor() protoreflect.EnumDescriptor {
  143. return file_Message_proto_enumTypes[1].Descriptor()
  144. }
  145. func (KickReason) Type() protoreflect.EnumType {
  146. return &file_Message_proto_enumTypes[1]
  147. }
  148. func (x KickReason) Number() protoreflect.EnumNumber {
  149. return protoreflect.EnumNumber(x)
  150. }
  151. // Deprecated: Use KickReason.Descriptor instead.
  152. func (KickReason) EnumDescriptor() ([]byte, []int) {
  153. return file_Message_proto_rawDescGZIP(), []int{1}
  154. }
  155. // 心跳包C->S, Cmd.MSGID_Heartbeat_Push(心跳包需要保持,不然玩家会被踢下线)
  156. type HeartbeatPush struct {
  157. state protoimpl.MessageState
  158. sizeCache protoimpl.SizeCache
  159. unknownFields protoimpl.UnknownFields
  160. }
  161. func (x *HeartbeatPush) Reset() {
  162. *x = HeartbeatPush{}
  163. if protoimpl.UnsafeEnabled {
  164. mi := &file_Message_proto_msgTypes[0]
  165. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  166. ms.StoreMessageInfo(mi)
  167. }
  168. }
  169. func (x *HeartbeatPush) String() string {
  170. return protoimpl.X.MessageStringOf(x)
  171. }
  172. func (*HeartbeatPush) ProtoMessage() {}
  173. func (x *HeartbeatPush) ProtoReflect() protoreflect.Message {
  174. mi := &file_Message_proto_msgTypes[0]
  175. if protoimpl.UnsafeEnabled && x != nil {
  176. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  177. if ms.LoadMessageInfo() == nil {
  178. ms.StoreMessageInfo(mi)
  179. }
  180. return ms
  181. }
  182. return mi.MessageOf(x)
  183. }
  184. // Deprecated: Use HeartbeatPush.ProtoReflect.Descriptor instead.
  185. func (*HeartbeatPush) Descriptor() ([]byte, []int) {
  186. return file_Message_proto_rawDescGZIP(), []int{0}
  187. }
  188. // 登录请求 C->S, Cmd.MSGID_Login
  189. type LoginReq struct {
  190. state protoimpl.MessageState
  191. sizeCache protoimpl.SizeCache
  192. unknownFields protoimpl.UnknownFields
  193. Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"` //账号ID
  194. PassWd string `protobuf:"bytes,2,opt,name=passWd,proto3" json:"passWd,omitempty"` //密码
  195. }
  196. func (x *LoginReq) Reset() {
  197. *x = LoginReq{}
  198. if protoimpl.UnsafeEnabled {
  199. mi := &file_Message_proto_msgTypes[1]
  200. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  201. ms.StoreMessageInfo(mi)
  202. }
  203. }
  204. func (x *LoginReq) String() string {
  205. return protoimpl.X.MessageStringOf(x)
  206. }
  207. func (*LoginReq) ProtoMessage() {}
  208. func (x *LoginReq) ProtoReflect() protoreflect.Message {
  209. mi := &file_Message_proto_msgTypes[1]
  210. if protoimpl.UnsafeEnabled && x != nil {
  211. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  212. if ms.LoadMessageInfo() == nil {
  213. ms.StoreMessageInfo(mi)
  214. }
  215. return ms
  216. }
  217. return mi.MessageOf(x)
  218. }
  219. // Deprecated: Use LoginReq.ProtoReflect.Descriptor instead.
  220. func (*LoginReq) Descriptor() ([]byte, []int) {
  221. return file_Message_proto_rawDescGZIP(), []int{1}
  222. }
  223. func (x *LoginReq) GetUid() string {
  224. if x != nil {
  225. return x.Uid
  226. }
  227. return ""
  228. }
  229. func (x *LoginReq) GetPassWd() string {
  230. if x != nil {
  231. return x.PassWd
  232. }
  233. return ""
  234. }
  235. // 登录响应 S->C, Cmd.MSGID_Login
  236. type LoginRsp struct {
  237. state protoimpl.MessageState
  238. sizeCache protoimpl.SizeCache
  239. unknownFields protoimpl.UnknownFields
  240. Result uint32 `protobuf:"varint,1,opt,name=result,proto3" json:"result,omitempty"` //结果
  241. PlayerId int64 `protobuf:"varint,2,opt,name=playerId,proto3" json:"playerId,omitempty"` //玩家ID
  242. IsNew bool `protobuf:"varint,3,opt,name=isNew,proto3" json:"isNew,omitempty"` //是否为新玩家
  243. }
  244. func (x *LoginRsp) Reset() {
  245. *x = LoginRsp{}
  246. if protoimpl.UnsafeEnabled {
  247. mi := &file_Message_proto_msgTypes[2]
  248. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  249. ms.StoreMessageInfo(mi)
  250. }
  251. }
  252. func (x *LoginRsp) String() string {
  253. return protoimpl.X.MessageStringOf(x)
  254. }
  255. func (*LoginRsp) ProtoMessage() {}
  256. func (x *LoginRsp) ProtoReflect() protoreflect.Message {
  257. mi := &file_Message_proto_msgTypes[2]
  258. if protoimpl.UnsafeEnabled && x != nil {
  259. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  260. if ms.LoadMessageInfo() == nil {
  261. ms.StoreMessageInfo(mi)
  262. }
  263. return ms
  264. }
  265. return mi.MessageOf(x)
  266. }
  267. // Deprecated: Use LoginRsp.ProtoReflect.Descriptor instead.
  268. func (*LoginRsp) Descriptor() ([]byte, []int) {
  269. return file_Message_proto_rawDescGZIP(), []int{2}
  270. }
  271. func (x *LoginRsp) GetResult() uint32 {
  272. if x != nil {
  273. return x.Result
  274. }
  275. return 0
  276. }
  277. func (x *LoginRsp) GetPlayerId() int64 {
  278. if x != nil {
  279. return x.PlayerId
  280. }
  281. return 0
  282. }
  283. func (x *LoginRsp) GetIsNew() bool {
  284. if x != nil {
  285. return x.IsNew
  286. }
  287. return false
  288. }
  289. type CreateGameReq struct {
  290. state protoimpl.MessageState
  291. sizeCache protoimpl.SizeCache
  292. unknownFields protoimpl.UnknownFields
  293. Mode uint32 `protobuf:"varint,1,opt,name=mode,proto3" json:"mode,omitempty"` //游戏模式,1是经典,2是匹配
  294. PlayerNum uint32 `protobuf:"varint,2,opt,name=playerNum,proto3" json:"playerNum,omitempty"` //选择玩家人数 2是两个人,4是四个人
  295. AdmissionFee uint32 `protobuf:"varint,3,opt,name=admissionFee,proto3" json:"admissionFee,omitempty"` //入场金额 500、1000、2000、5000、10000、20000
  296. IsRoom bool `protobuf:"varint,4,opt,name=isRoom,proto3" json:"isRoom,omitempty"` //是否房间内建房
  297. Uid string `protobuf:"bytes,5,opt,name=uid,proto3" json:"uid,omitempty"` //玩家id
  298. Name string `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"` //玩家名称
  299. HeadImg string `protobuf:"bytes,7,opt,name=headImg,proto3" json:"headImg,omitempty"` //玩家头像
  300. Money *uint32 `protobuf:"varint,8,opt,name=money,proto3,oneof" json:"money,omitempty"` //玩家金币
  301. ChatRoomId *uint32 `protobuf:"varint,9,opt,name=chatRoomId,proto3,oneof" json:"chatRoomId,omitempty"` //语聊房id
  302. }
  303. func (x *CreateGameReq) Reset() {
  304. *x = CreateGameReq{}
  305. if protoimpl.UnsafeEnabled {
  306. mi := &file_Message_proto_msgTypes[3]
  307. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  308. ms.StoreMessageInfo(mi)
  309. }
  310. }
  311. func (x *CreateGameReq) String() string {
  312. return protoimpl.X.MessageStringOf(x)
  313. }
  314. func (*CreateGameReq) ProtoMessage() {}
  315. func (x *CreateGameReq) ProtoReflect() protoreflect.Message {
  316. mi := &file_Message_proto_msgTypes[3]
  317. if protoimpl.UnsafeEnabled && x != nil {
  318. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  319. if ms.LoadMessageInfo() == nil {
  320. ms.StoreMessageInfo(mi)
  321. }
  322. return ms
  323. }
  324. return mi.MessageOf(x)
  325. }
  326. // Deprecated: Use CreateGameReq.ProtoReflect.Descriptor instead.
  327. func (*CreateGameReq) Descriptor() ([]byte, []int) {
  328. return file_Message_proto_rawDescGZIP(), []int{3}
  329. }
  330. func (x *CreateGameReq) GetMode() uint32 {
  331. if x != nil {
  332. return x.Mode
  333. }
  334. return 0
  335. }
  336. func (x *CreateGameReq) GetPlayerNum() uint32 {
  337. if x != nil {
  338. return x.PlayerNum
  339. }
  340. return 0
  341. }
  342. func (x *CreateGameReq) GetAdmissionFee() uint32 {
  343. if x != nil {
  344. return x.AdmissionFee
  345. }
  346. return 0
  347. }
  348. func (x *CreateGameReq) GetIsRoom() bool {
  349. if x != nil {
  350. return x.IsRoom
  351. }
  352. return false
  353. }
  354. func (x *CreateGameReq) GetUid() string {
  355. if x != nil {
  356. return x.Uid
  357. }
  358. return ""
  359. }
  360. func (x *CreateGameReq) GetName() string {
  361. if x != nil {
  362. return x.Name
  363. }
  364. return ""
  365. }
  366. func (x *CreateGameReq) GetHeadImg() string {
  367. if x != nil {
  368. return x.HeadImg
  369. }
  370. return ""
  371. }
  372. func (x *CreateGameReq) GetMoney() uint32 {
  373. if x != nil && x.Money != nil {
  374. return *x.Money
  375. }
  376. return 0
  377. }
  378. func (x *CreateGameReq) GetChatRoomId() uint32 {
  379. if x != nil && x.ChatRoomId != nil {
  380. return *x.ChatRoomId
  381. }
  382. return 0
  383. }
  384. type CreateGameRsp struct {
  385. state protoimpl.MessageState
  386. sizeCache protoimpl.SizeCache
  387. unknownFields protoimpl.UnknownFields
  388. RoomId *uint32 `protobuf:"varint,1,opt,name=roomId,proto3,oneof" json:"roomId,omitempty"` //房间id
  389. Uid string `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"` //用户id
  390. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"` //玩家名称
  391. HeadImg string `protobuf:"bytes,4,opt,name=headImg,proto3" json:"headImg,omitempty"` //玩家头像
  392. Money *uint32 `protobuf:"varint,5,opt,name=money,proto3,oneof" json:"money,omitempty"` //玩家金币
  393. }
  394. func (x *CreateGameRsp) Reset() {
  395. *x = CreateGameRsp{}
  396. if protoimpl.UnsafeEnabled {
  397. mi := &file_Message_proto_msgTypes[4]
  398. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  399. ms.StoreMessageInfo(mi)
  400. }
  401. }
  402. func (x *CreateGameRsp) String() string {
  403. return protoimpl.X.MessageStringOf(x)
  404. }
  405. func (*CreateGameRsp) ProtoMessage() {}
  406. func (x *CreateGameRsp) ProtoReflect() protoreflect.Message {
  407. mi := &file_Message_proto_msgTypes[4]
  408. if protoimpl.UnsafeEnabled && x != nil {
  409. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  410. if ms.LoadMessageInfo() == nil {
  411. ms.StoreMessageInfo(mi)
  412. }
  413. return ms
  414. }
  415. return mi.MessageOf(x)
  416. }
  417. // Deprecated: Use CreateGameRsp.ProtoReflect.Descriptor instead.
  418. func (*CreateGameRsp) Descriptor() ([]byte, []int) {
  419. return file_Message_proto_rawDescGZIP(), []int{4}
  420. }
  421. func (x *CreateGameRsp) GetRoomId() uint32 {
  422. if x != nil && x.RoomId != nil {
  423. return *x.RoomId
  424. }
  425. return 0
  426. }
  427. func (x *CreateGameRsp) GetUid() string {
  428. if x != nil {
  429. return x.Uid
  430. }
  431. return ""
  432. }
  433. func (x *CreateGameRsp) GetName() string {
  434. if x != nil {
  435. return x.Name
  436. }
  437. return ""
  438. }
  439. func (x *CreateGameRsp) GetHeadImg() string {
  440. if x != nil {
  441. return x.HeadImg
  442. }
  443. return ""
  444. }
  445. func (x *CreateGameRsp) GetMoney() uint32 {
  446. if x != nil && x.Money != nil {
  447. return *x.Money
  448. }
  449. return 0
  450. }
  451. type RoomInfoRsp struct {
  452. state protoimpl.MessageState
  453. sizeCache protoimpl.SizeCache
  454. unknownFields protoimpl.UnknownFields
  455. Result *uint32 `protobuf:"varint,1,opt,name=result,proto3,oneof" json:"result,omitempty"` //结果
  456. Money []uint32 `protobuf:"varint,2,rep,packed,name=money,proto3" json:"money,omitempty"`
  457. PlayerID []string `protobuf:"bytes,3,rep,name=playerID,proto3" json:"playerID,omitempty"`
  458. Nick []string `protobuf:"bytes,4,rep,name=nick,proto3" json:"nick,omitempty"` //昵称
  459. HeadUrl []string `protobuf:"bytes,5,rep,name=headUrl,proto3" json:"headUrl,omitempty"` //头像
  460. SeatId []uint32 `protobuf:"varint,9,rep,packed,name=seatId,proto3" json:"seatId,omitempty"` //头像
  461. Mode uint32 `protobuf:"varint,6,opt,name=mode,proto3" json:"mode,omitempty"` //游戏模式,1是经典,2是匹配
  462. PlayerNum uint32 `protobuf:"varint,7,opt,name=playerNum,proto3" json:"playerNum,omitempty"` //选择玩家人数 2是两个人,4是四个人
  463. AdmissionFee uint32 `protobuf:"varint,8,opt,name=admissionFee,proto3" json:"admissionFee,omitempty"` //入场金额 500、1000、2000、5000、10000、20000
  464. }
  465. func (x *RoomInfoRsp) Reset() {
  466. *x = RoomInfoRsp{}
  467. if protoimpl.UnsafeEnabled {
  468. mi := &file_Message_proto_msgTypes[5]
  469. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  470. ms.StoreMessageInfo(mi)
  471. }
  472. }
  473. func (x *RoomInfoRsp) String() string {
  474. return protoimpl.X.MessageStringOf(x)
  475. }
  476. func (*RoomInfoRsp) ProtoMessage() {}
  477. func (x *RoomInfoRsp) ProtoReflect() protoreflect.Message {
  478. mi := &file_Message_proto_msgTypes[5]
  479. if protoimpl.UnsafeEnabled && x != nil {
  480. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  481. if ms.LoadMessageInfo() == nil {
  482. ms.StoreMessageInfo(mi)
  483. }
  484. return ms
  485. }
  486. return mi.MessageOf(x)
  487. }
  488. // Deprecated: Use RoomInfoRsp.ProtoReflect.Descriptor instead.
  489. func (*RoomInfoRsp) Descriptor() ([]byte, []int) {
  490. return file_Message_proto_rawDescGZIP(), []int{5}
  491. }
  492. func (x *RoomInfoRsp) GetResult() uint32 {
  493. if x != nil && x.Result != nil {
  494. return *x.Result
  495. }
  496. return 0
  497. }
  498. func (x *RoomInfoRsp) GetMoney() []uint32 {
  499. if x != nil {
  500. return x.Money
  501. }
  502. return nil
  503. }
  504. func (x *RoomInfoRsp) GetPlayerID() []string {
  505. if x != nil {
  506. return x.PlayerID
  507. }
  508. return nil
  509. }
  510. func (x *RoomInfoRsp) GetNick() []string {
  511. if x != nil {
  512. return x.Nick
  513. }
  514. return nil
  515. }
  516. func (x *RoomInfoRsp) GetHeadUrl() []string {
  517. if x != nil {
  518. return x.HeadUrl
  519. }
  520. return nil
  521. }
  522. func (x *RoomInfoRsp) GetSeatId() []uint32 {
  523. if x != nil {
  524. return x.SeatId
  525. }
  526. return nil
  527. }
  528. func (x *RoomInfoRsp) GetMode() uint32 {
  529. if x != nil {
  530. return x.Mode
  531. }
  532. return 0
  533. }
  534. func (x *RoomInfoRsp) GetPlayerNum() uint32 {
  535. if x != nil {
  536. return x.PlayerNum
  537. }
  538. return 0
  539. }
  540. func (x *RoomInfoRsp) GetAdmissionFee() uint32 {
  541. if x != nil {
  542. return x.AdmissionFee
  543. }
  544. return 0
  545. }
  546. type JoinRoomReq struct {
  547. state protoimpl.MessageState
  548. sizeCache protoimpl.SizeCache
  549. unknownFields protoimpl.UnknownFields
  550. Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"` //uID
  551. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` //玩家名称
  552. HeadImg string `protobuf:"bytes,3,opt,name=headImg,proto3" json:"headImg,omitempty"` //玩家头像
  553. Money *uint32 `protobuf:"varint,4,opt,name=money,proto3,oneof" json:"money,omitempty"` //玩家金币
  554. RoomId *uint32 `protobuf:"varint,5,opt,name=roomId,proto3,oneof" json:"roomId,omitempty"` //房间id
  555. RestartBtn bool `protobuf:"varint,6,opt,name=restartBtn,proto3" json:"restartBtn,omitempty"` //是否是restart点击
  556. }
  557. func (x *JoinRoomReq) Reset() {
  558. *x = JoinRoomReq{}
  559. if protoimpl.UnsafeEnabled {
  560. mi := &file_Message_proto_msgTypes[6]
  561. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  562. ms.StoreMessageInfo(mi)
  563. }
  564. }
  565. func (x *JoinRoomReq) String() string {
  566. return protoimpl.X.MessageStringOf(x)
  567. }
  568. func (*JoinRoomReq) ProtoMessage() {}
  569. func (x *JoinRoomReq) ProtoReflect() protoreflect.Message {
  570. mi := &file_Message_proto_msgTypes[6]
  571. if protoimpl.UnsafeEnabled && x != nil {
  572. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  573. if ms.LoadMessageInfo() == nil {
  574. ms.StoreMessageInfo(mi)
  575. }
  576. return ms
  577. }
  578. return mi.MessageOf(x)
  579. }
  580. // Deprecated: Use JoinRoomReq.ProtoReflect.Descriptor instead.
  581. func (*JoinRoomReq) Descriptor() ([]byte, []int) {
  582. return file_Message_proto_rawDescGZIP(), []int{6}
  583. }
  584. func (x *JoinRoomReq) GetUid() string {
  585. if x != nil {
  586. return x.Uid
  587. }
  588. return ""
  589. }
  590. func (x *JoinRoomReq) GetName() string {
  591. if x != nil {
  592. return x.Name
  593. }
  594. return ""
  595. }
  596. func (x *JoinRoomReq) GetHeadImg() string {
  597. if x != nil {
  598. return x.HeadImg
  599. }
  600. return ""
  601. }
  602. func (x *JoinRoomReq) GetMoney() uint32 {
  603. if x != nil && x.Money != nil {
  604. return *x.Money
  605. }
  606. return 0
  607. }
  608. func (x *JoinRoomReq) GetRoomId() uint32 {
  609. if x != nil && x.RoomId != nil {
  610. return *x.RoomId
  611. }
  612. return 0
  613. }
  614. func (x *JoinRoomReq) GetRestartBtn() bool {
  615. if x != nil {
  616. return x.RestartBtn
  617. }
  618. return false
  619. }
  620. type RoomKickUserReq struct {
  621. state protoimpl.MessageState
  622. sizeCache protoimpl.SizeCache
  623. unknownFields protoimpl.UnknownFields
  624. Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"` //uID
  625. }
  626. func (x *RoomKickUserReq) Reset() {
  627. *x = RoomKickUserReq{}
  628. if protoimpl.UnsafeEnabled {
  629. mi := &file_Message_proto_msgTypes[7]
  630. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  631. ms.StoreMessageInfo(mi)
  632. }
  633. }
  634. func (x *RoomKickUserReq) String() string {
  635. return protoimpl.X.MessageStringOf(x)
  636. }
  637. func (*RoomKickUserReq) ProtoMessage() {}
  638. func (x *RoomKickUserReq) ProtoReflect() protoreflect.Message {
  639. mi := &file_Message_proto_msgTypes[7]
  640. if protoimpl.UnsafeEnabled && x != nil {
  641. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  642. if ms.LoadMessageInfo() == nil {
  643. ms.StoreMessageInfo(mi)
  644. }
  645. return ms
  646. }
  647. return mi.MessageOf(x)
  648. }
  649. // Deprecated: Use RoomKickUserReq.ProtoReflect.Descriptor instead.
  650. func (*RoomKickUserReq) Descriptor() ([]byte, []int) {
  651. return file_Message_proto_rawDescGZIP(), []int{7}
  652. }
  653. func (x *RoomKickUserReq) GetUid() string {
  654. if x != nil {
  655. return x.Uid
  656. }
  657. return ""
  658. }
  659. type RoomKickUserRsp struct {
  660. state protoimpl.MessageState
  661. sizeCache protoimpl.SizeCache
  662. unknownFields protoimpl.UnknownFields
  663. Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"` //uID
  664. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` //玩家名称
  665. }
  666. func (x *RoomKickUserRsp) Reset() {
  667. *x = RoomKickUserRsp{}
  668. if protoimpl.UnsafeEnabled {
  669. mi := &file_Message_proto_msgTypes[8]
  670. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  671. ms.StoreMessageInfo(mi)
  672. }
  673. }
  674. func (x *RoomKickUserRsp) String() string {
  675. return protoimpl.X.MessageStringOf(x)
  676. }
  677. func (*RoomKickUserRsp) ProtoMessage() {}
  678. func (x *RoomKickUserRsp) ProtoReflect() protoreflect.Message {
  679. mi := &file_Message_proto_msgTypes[8]
  680. if protoimpl.UnsafeEnabled && x != nil {
  681. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  682. if ms.LoadMessageInfo() == nil {
  683. ms.StoreMessageInfo(mi)
  684. }
  685. return ms
  686. }
  687. return mi.MessageOf(x)
  688. }
  689. // Deprecated: Use RoomKickUserRsp.ProtoReflect.Descriptor instead.
  690. func (*RoomKickUserRsp) Descriptor() ([]byte, []int) {
  691. return file_Message_proto_rawDescGZIP(), []int{8}
  692. }
  693. func (x *RoomKickUserRsp) GetUid() string {
  694. if x != nil {
  695. return x.Uid
  696. }
  697. return ""
  698. }
  699. func (x *RoomKickUserRsp) GetName() string {
  700. if x != nil {
  701. return x.Name
  702. }
  703. return ""
  704. }
  705. type RoomQuitUserReq struct {
  706. state protoimpl.MessageState
  707. sizeCache protoimpl.SizeCache
  708. unknownFields protoimpl.UnknownFields
  709. Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"` //uID
  710. }
  711. func (x *RoomQuitUserReq) Reset() {
  712. *x = RoomQuitUserReq{}
  713. if protoimpl.UnsafeEnabled {
  714. mi := &file_Message_proto_msgTypes[9]
  715. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  716. ms.StoreMessageInfo(mi)
  717. }
  718. }
  719. func (x *RoomQuitUserReq) String() string {
  720. return protoimpl.X.MessageStringOf(x)
  721. }
  722. func (*RoomQuitUserReq) ProtoMessage() {}
  723. func (x *RoomQuitUserReq) ProtoReflect() protoreflect.Message {
  724. mi := &file_Message_proto_msgTypes[9]
  725. if protoimpl.UnsafeEnabled && x != nil {
  726. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  727. if ms.LoadMessageInfo() == nil {
  728. ms.StoreMessageInfo(mi)
  729. }
  730. return ms
  731. }
  732. return mi.MessageOf(x)
  733. }
  734. // Deprecated: Use RoomQuitUserReq.ProtoReflect.Descriptor instead.
  735. func (*RoomQuitUserReq) Descriptor() ([]byte, []int) {
  736. return file_Message_proto_rawDescGZIP(), []int{9}
  737. }
  738. func (x *RoomQuitUserReq) GetUid() string {
  739. if x != nil {
  740. return x.Uid
  741. }
  742. return ""
  743. }
  744. type RoomInviteReq struct {
  745. state protoimpl.MessageState
  746. sizeCache protoimpl.SizeCache
  747. unknownFields protoimpl.UnknownFields
  748. Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"` //邀请的玩家id
  749. ChatRoomId *uint32 `protobuf:"varint,2,opt,name=chatRoomId,proto3,oneof" json:"chatRoomId,omitempty"` //语聊房id
  750. RoomId *uint32 `protobuf:"varint,3,opt,name=roomId,proto3,oneof" json:"roomId,omitempty"` //游戏房间id
  751. }
  752. func (x *RoomInviteReq) Reset() {
  753. *x = RoomInviteReq{}
  754. if protoimpl.UnsafeEnabled {
  755. mi := &file_Message_proto_msgTypes[10]
  756. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  757. ms.StoreMessageInfo(mi)
  758. }
  759. }
  760. func (x *RoomInviteReq) String() string {
  761. return protoimpl.X.MessageStringOf(x)
  762. }
  763. func (*RoomInviteReq) ProtoMessage() {}
  764. func (x *RoomInviteReq) ProtoReflect() protoreflect.Message {
  765. mi := &file_Message_proto_msgTypes[10]
  766. if protoimpl.UnsafeEnabled && x != nil {
  767. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  768. if ms.LoadMessageInfo() == nil {
  769. ms.StoreMessageInfo(mi)
  770. }
  771. return ms
  772. }
  773. return mi.MessageOf(x)
  774. }
  775. // Deprecated: Use RoomInviteReq.ProtoReflect.Descriptor instead.
  776. func (*RoomInviteReq) Descriptor() ([]byte, []int) {
  777. return file_Message_proto_rawDescGZIP(), []int{10}
  778. }
  779. func (x *RoomInviteReq) GetUid() string {
  780. if x != nil {
  781. return x.Uid
  782. }
  783. return ""
  784. }
  785. func (x *RoomInviteReq) GetChatRoomId() uint32 {
  786. if x != nil && x.ChatRoomId != nil {
  787. return *x.ChatRoomId
  788. }
  789. return 0
  790. }
  791. func (x *RoomInviteReq) GetRoomId() uint32 {
  792. if x != nil && x.RoomId != nil {
  793. return *x.RoomId
  794. }
  795. return 0
  796. }
  797. type RoomInviteRsp struct {
  798. state protoimpl.MessageState
  799. sizeCache protoimpl.SizeCache
  800. unknownFields protoimpl.UnknownFields
  801. Result *uint32 `protobuf:"varint,1,opt,name=result,proto3,oneof" json:"result,omitempty"` //结果
  802. }
  803. func (x *RoomInviteRsp) Reset() {
  804. *x = RoomInviteRsp{}
  805. if protoimpl.UnsafeEnabled {
  806. mi := &file_Message_proto_msgTypes[11]
  807. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  808. ms.StoreMessageInfo(mi)
  809. }
  810. }
  811. func (x *RoomInviteRsp) String() string {
  812. return protoimpl.X.MessageStringOf(x)
  813. }
  814. func (*RoomInviteRsp) ProtoMessage() {}
  815. func (x *RoomInviteRsp) ProtoReflect() protoreflect.Message {
  816. mi := &file_Message_proto_msgTypes[11]
  817. if protoimpl.UnsafeEnabled && x != nil {
  818. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  819. if ms.LoadMessageInfo() == nil {
  820. ms.StoreMessageInfo(mi)
  821. }
  822. return ms
  823. }
  824. return mi.MessageOf(x)
  825. }
  826. // Deprecated: Use RoomInviteRsp.ProtoReflect.Descriptor instead.
  827. func (*RoomInviteRsp) Descriptor() ([]byte, []int) {
  828. return file_Message_proto_rawDescGZIP(), []int{11}
  829. }
  830. func (x *RoomInviteRsp) GetResult() uint32 {
  831. if x != nil && x.Result != nil {
  832. return *x.Result
  833. }
  834. return 0
  835. }
  836. type RoomQuitUserRsp struct {
  837. state protoimpl.MessageState
  838. sizeCache protoimpl.SizeCache
  839. unknownFields protoimpl.UnknownFields
  840. Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"` //uID
  841. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` //玩家名称
  842. }
  843. func (x *RoomQuitUserRsp) Reset() {
  844. *x = RoomQuitUserRsp{}
  845. if protoimpl.UnsafeEnabled {
  846. mi := &file_Message_proto_msgTypes[12]
  847. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  848. ms.StoreMessageInfo(mi)
  849. }
  850. }
  851. func (x *RoomQuitUserRsp) String() string {
  852. return protoimpl.X.MessageStringOf(x)
  853. }
  854. func (*RoomQuitUserRsp) ProtoMessage() {}
  855. func (x *RoomQuitUserRsp) ProtoReflect() protoreflect.Message {
  856. mi := &file_Message_proto_msgTypes[12]
  857. if protoimpl.UnsafeEnabled && x != nil {
  858. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  859. if ms.LoadMessageInfo() == nil {
  860. ms.StoreMessageInfo(mi)
  861. }
  862. return ms
  863. }
  864. return mi.MessageOf(x)
  865. }
  866. // Deprecated: Use RoomQuitUserRsp.ProtoReflect.Descriptor instead.
  867. func (*RoomQuitUserRsp) Descriptor() ([]byte, []int) {
  868. return file_Message_proto_rawDescGZIP(), []int{12}
  869. }
  870. func (x *RoomQuitUserRsp) GetUid() string {
  871. if x != nil {
  872. return x.Uid
  873. }
  874. return ""
  875. }
  876. func (x *RoomQuitUserRsp) GetName() string {
  877. if x != nil {
  878. return x.Name
  879. }
  880. return ""
  881. }
  882. type JoinRoomInfoRsp struct {
  883. state protoimpl.MessageState
  884. sizeCache protoimpl.SizeCache
  885. unknownFields protoimpl.UnknownFields
  886. Result *uint32 `protobuf:"varint,1,opt,name=result,proto3,oneof" json:"result,omitempty"` //结果
  887. Money string `protobuf:"bytes,2,opt,name=money,proto3" json:"money,omitempty"`
  888. PlayerID string `protobuf:"bytes,3,opt,name=playerID,proto3" json:"playerID,omitempty"`
  889. PlayerStatus uint32 `protobuf:"varint,4,opt,name=playerStatus,proto3" json:"playerStatus,omitempty"` // 玩家的当前状态, 0、1 表示空位无玩家,2: sitdown, 3: ready, 4: play, 5: 胜利后观战, 6: 胜利后离开,7: 组队逃跑,8: 逃跑
  890. TableID uint32 `protobuf:"varint,5,opt,name=tableID,proto3" json:"tableID,omitempty"` // 桌子ID
  891. SeatID *uint32 `protobuf:"varint,6,opt,name=seatID,proto3,oneof" json:"seatID,omitempty"` //座位号
  892. Nick string `protobuf:"bytes,7,opt,name=nick,proto3" json:"nick,omitempty"` //昵称
  893. HeadUrl string `protobuf:"bytes,8,opt,name=headUrl,proto3" json:"headUrl,omitempty"` //头像
  894. Gender string `protobuf:"bytes,9,opt,name=gender,proto3" json:"gender,omitempty"` //性别
  895. PlayerNum *uint32 `protobuf:"varint,10,opt,name=playerNum,proto3,oneof" json:"playerNum,omitempty"` // 玩家数量
  896. PlayerType uint32 `protobuf:"varint,11,opt,name=playerType,proto3" json:"playerType,omitempty"` // 玩家类型1是正常玩家2是机器人
  897. }
  898. func (x *JoinRoomInfoRsp) Reset() {
  899. *x = JoinRoomInfoRsp{}
  900. if protoimpl.UnsafeEnabled {
  901. mi := &file_Message_proto_msgTypes[13]
  902. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  903. ms.StoreMessageInfo(mi)
  904. }
  905. }
  906. func (x *JoinRoomInfoRsp) String() string {
  907. return protoimpl.X.MessageStringOf(x)
  908. }
  909. func (*JoinRoomInfoRsp) ProtoMessage() {}
  910. func (x *JoinRoomInfoRsp) ProtoReflect() protoreflect.Message {
  911. mi := &file_Message_proto_msgTypes[13]
  912. if protoimpl.UnsafeEnabled && x != nil {
  913. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  914. if ms.LoadMessageInfo() == nil {
  915. ms.StoreMessageInfo(mi)
  916. }
  917. return ms
  918. }
  919. return mi.MessageOf(x)
  920. }
  921. // Deprecated: Use JoinRoomInfoRsp.ProtoReflect.Descriptor instead.
  922. func (*JoinRoomInfoRsp) Descriptor() ([]byte, []int) {
  923. return file_Message_proto_rawDescGZIP(), []int{13}
  924. }
  925. func (x *JoinRoomInfoRsp) GetResult() uint32 {
  926. if x != nil && x.Result != nil {
  927. return *x.Result
  928. }
  929. return 0
  930. }
  931. func (x *JoinRoomInfoRsp) GetMoney() string {
  932. if x != nil {
  933. return x.Money
  934. }
  935. return ""
  936. }
  937. func (x *JoinRoomInfoRsp) GetPlayerID() string {
  938. if x != nil {
  939. return x.PlayerID
  940. }
  941. return ""
  942. }
  943. func (x *JoinRoomInfoRsp) GetPlayerStatus() uint32 {
  944. if x != nil {
  945. return x.PlayerStatus
  946. }
  947. return 0
  948. }
  949. func (x *JoinRoomInfoRsp) GetTableID() uint32 {
  950. if x != nil {
  951. return x.TableID
  952. }
  953. return 0
  954. }
  955. func (x *JoinRoomInfoRsp) GetSeatID() uint32 {
  956. if x != nil && x.SeatID != nil {
  957. return *x.SeatID
  958. }
  959. return 0
  960. }
  961. func (x *JoinRoomInfoRsp) GetNick() string {
  962. if x != nil {
  963. return x.Nick
  964. }
  965. return ""
  966. }
  967. func (x *JoinRoomInfoRsp) GetHeadUrl() string {
  968. if x != nil {
  969. return x.HeadUrl
  970. }
  971. return ""
  972. }
  973. func (x *JoinRoomInfoRsp) GetGender() string {
  974. if x != nil {
  975. return x.Gender
  976. }
  977. return ""
  978. }
  979. func (x *JoinRoomInfoRsp) GetPlayerNum() uint32 {
  980. if x != nil && x.PlayerNum != nil {
  981. return *x.PlayerNum
  982. }
  983. return 0
  984. }
  985. func (x *JoinRoomInfoRsp) GetPlayerType() uint32 {
  986. if x != nil {
  987. return x.PlayerType
  988. }
  989. return 0
  990. }
  991. type RoomInfoReq struct {
  992. state protoimpl.MessageState
  993. sizeCache protoimpl.SizeCache
  994. unknownFields protoimpl.UnknownFields
  995. RoomId *uint32 `protobuf:"varint,1,opt,name=roomId,proto3,oneof" json:"roomId,omitempty"` //房间id
  996. Uid string `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"` //玩家id
  997. }
  998. func (x *RoomInfoReq) Reset() {
  999. *x = RoomInfoReq{}
  1000. if protoimpl.UnsafeEnabled {
  1001. mi := &file_Message_proto_msgTypes[14]
  1002. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1003. ms.StoreMessageInfo(mi)
  1004. }
  1005. }
  1006. func (x *RoomInfoReq) String() string {
  1007. return protoimpl.X.MessageStringOf(x)
  1008. }
  1009. func (*RoomInfoReq) ProtoMessage() {}
  1010. func (x *RoomInfoReq) ProtoReflect() protoreflect.Message {
  1011. mi := &file_Message_proto_msgTypes[14]
  1012. if protoimpl.UnsafeEnabled && x != nil {
  1013. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1014. if ms.LoadMessageInfo() == nil {
  1015. ms.StoreMessageInfo(mi)
  1016. }
  1017. return ms
  1018. }
  1019. return mi.MessageOf(x)
  1020. }
  1021. // Deprecated: Use RoomInfoReq.ProtoReflect.Descriptor instead.
  1022. func (*RoomInfoReq) Descriptor() ([]byte, []int) {
  1023. return file_Message_proto_rawDescGZIP(), []int{14}
  1024. }
  1025. func (x *RoomInfoReq) GetRoomId() uint32 {
  1026. if x != nil && x.RoomId != nil {
  1027. return *x.RoomId
  1028. }
  1029. return 0
  1030. }
  1031. func (x *RoomInfoReq) GetUid() string {
  1032. if x != nil {
  1033. return x.Uid
  1034. }
  1035. return ""
  1036. }
  1037. type CancelMatchReq struct {
  1038. state protoimpl.MessageState
  1039. sizeCache protoimpl.SizeCache
  1040. unknownFields protoimpl.UnknownFields
  1041. }
  1042. func (x *CancelMatchReq) Reset() {
  1043. *x = CancelMatchReq{}
  1044. if protoimpl.UnsafeEnabled {
  1045. mi := &file_Message_proto_msgTypes[15]
  1046. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1047. ms.StoreMessageInfo(mi)
  1048. }
  1049. }
  1050. func (x *CancelMatchReq) String() string {
  1051. return protoimpl.X.MessageStringOf(x)
  1052. }
  1053. func (*CancelMatchReq) ProtoMessage() {}
  1054. func (x *CancelMatchReq) ProtoReflect() protoreflect.Message {
  1055. mi := &file_Message_proto_msgTypes[15]
  1056. if protoimpl.UnsafeEnabled && x != nil {
  1057. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1058. if ms.LoadMessageInfo() == nil {
  1059. ms.StoreMessageInfo(mi)
  1060. }
  1061. return ms
  1062. }
  1063. return mi.MessageOf(x)
  1064. }
  1065. // Deprecated: Use CancelMatchReq.ProtoReflect.Descriptor instead.
  1066. func (*CancelMatchReq) Descriptor() ([]byte, []int) {
  1067. return file_Message_proto_rawDescGZIP(), []int{15}
  1068. }
  1069. type CancelMatchRsp struct {
  1070. state protoimpl.MessageState
  1071. sizeCache protoimpl.SizeCache
  1072. unknownFields protoimpl.UnknownFields
  1073. Result *uint32 `protobuf:"varint,1,opt,name=result,proto3,oneof" json:"result,omitempty"` //结果0表示成功,其他表示失败
  1074. Uid string `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"` //用户id
  1075. }
  1076. func (x *CancelMatchRsp) Reset() {
  1077. *x = CancelMatchRsp{}
  1078. if protoimpl.UnsafeEnabled {
  1079. mi := &file_Message_proto_msgTypes[16]
  1080. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1081. ms.StoreMessageInfo(mi)
  1082. }
  1083. }
  1084. func (x *CancelMatchRsp) String() string {
  1085. return protoimpl.X.MessageStringOf(x)
  1086. }
  1087. func (*CancelMatchRsp) ProtoMessage() {}
  1088. func (x *CancelMatchRsp) ProtoReflect() protoreflect.Message {
  1089. mi := &file_Message_proto_msgTypes[16]
  1090. if protoimpl.UnsafeEnabled && x != nil {
  1091. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1092. if ms.LoadMessageInfo() == nil {
  1093. ms.StoreMessageInfo(mi)
  1094. }
  1095. return ms
  1096. }
  1097. return mi.MessageOf(x)
  1098. }
  1099. // Deprecated: Use CancelMatchRsp.ProtoReflect.Descriptor instead.
  1100. func (*CancelMatchRsp) Descriptor() ([]byte, []int) {
  1101. return file_Message_proto_rawDescGZIP(), []int{16}
  1102. }
  1103. func (x *CancelMatchRsp) GetResult() uint32 {
  1104. if x != nil && x.Result != nil {
  1105. return *x.Result
  1106. }
  1107. return 0
  1108. }
  1109. func (x *CancelMatchRsp) GetUid() string {
  1110. if x != nil {
  1111. return x.Uid
  1112. }
  1113. return ""
  1114. }
  1115. type MatchRsp struct {
  1116. state protoimpl.MessageState
  1117. sizeCache protoimpl.SizeCache
  1118. unknownFields protoimpl.UnknownFields
  1119. Result *uint32 `protobuf:"varint,1,opt,name=result,proto3,oneof" json:"result,omitempty"` //结果 0表示成功,其他表示失败
  1120. }
  1121. func (x *MatchRsp) Reset() {
  1122. *x = MatchRsp{}
  1123. if protoimpl.UnsafeEnabled {
  1124. mi := &file_Message_proto_msgTypes[17]
  1125. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1126. ms.StoreMessageInfo(mi)
  1127. }
  1128. }
  1129. func (x *MatchRsp) String() string {
  1130. return protoimpl.X.MessageStringOf(x)
  1131. }
  1132. func (*MatchRsp) ProtoMessage() {}
  1133. func (x *MatchRsp) ProtoReflect() protoreflect.Message {
  1134. mi := &file_Message_proto_msgTypes[17]
  1135. if protoimpl.UnsafeEnabled && x != nil {
  1136. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1137. if ms.LoadMessageInfo() == nil {
  1138. ms.StoreMessageInfo(mi)
  1139. }
  1140. return ms
  1141. }
  1142. return mi.MessageOf(x)
  1143. }
  1144. // Deprecated: Use MatchRsp.ProtoReflect.Descriptor instead.
  1145. func (*MatchRsp) Descriptor() ([]byte, []int) {
  1146. return file_Message_proto_rawDescGZIP(), []int{17}
  1147. }
  1148. func (x *MatchRsp) GetResult() uint32 {
  1149. if x != nil && x.Result != nil {
  1150. return *x.Result
  1151. }
  1152. return 0
  1153. }
  1154. type MatchJoinUserRsp struct {
  1155. state protoimpl.MessageState
  1156. sizeCache protoimpl.SizeCache
  1157. unknownFields protoimpl.UnknownFields
  1158. Result *uint32 `protobuf:"varint,1,opt,name=result,proto3,oneof" json:"result,omitempty"` //结果
  1159. PlayerID string `protobuf:"bytes,2,opt,name=playerID,proto3" json:"playerID,omitempty"`
  1160. Nick string `protobuf:"bytes,3,opt,name=nick,proto3" json:"nick,omitempty"` //昵称
  1161. HeadUrl string `protobuf:"bytes,4,opt,name=headUrl,proto3" json:"headUrl,omitempty"` //头像
  1162. Gender string `protobuf:"bytes,5,opt,name=gender,proto3" json:"gender,omitempty"` //性别
  1163. PlayerNum uint32 `protobuf:"varint,6,opt,name=playerNum,proto3" json:"playerNum,omitempty"` // 玩家数量
  1164. }
  1165. func (x *MatchJoinUserRsp) Reset() {
  1166. *x = MatchJoinUserRsp{}
  1167. if protoimpl.UnsafeEnabled {
  1168. mi := &file_Message_proto_msgTypes[18]
  1169. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1170. ms.StoreMessageInfo(mi)
  1171. }
  1172. }
  1173. func (x *MatchJoinUserRsp) String() string {
  1174. return protoimpl.X.MessageStringOf(x)
  1175. }
  1176. func (*MatchJoinUserRsp) ProtoMessage() {}
  1177. func (x *MatchJoinUserRsp) ProtoReflect() protoreflect.Message {
  1178. mi := &file_Message_proto_msgTypes[18]
  1179. if protoimpl.UnsafeEnabled && x != nil {
  1180. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1181. if ms.LoadMessageInfo() == nil {
  1182. ms.StoreMessageInfo(mi)
  1183. }
  1184. return ms
  1185. }
  1186. return mi.MessageOf(x)
  1187. }
  1188. // Deprecated: Use MatchJoinUserRsp.ProtoReflect.Descriptor instead.
  1189. func (*MatchJoinUserRsp) Descriptor() ([]byte, []int) {
  1190. return file_Message_proto_rawDescGZIP(), []int{18}
  1191. }
  1192. func (x *MatchJoinUserRsp) GetResult() uint32 {
  1193. if x != nil && x.Result != nil {
  1194. return *x.Result
  1195. }
  1196. return 0
  1197. }
  1198. func (x *MatchJoinUserRsp) GetPlayerID() string {
  1199. if x != nil {
  1200. return x.PlayerID
  1201. }
  1202. return ""
  1203. }
  1204. func (x *MatchJoinUserRsp) GetNick() string {
  1205. if x != nil {
  1206. return x.Nick
  1207. }
  1208. return ""
  1209. }
  1210. func (x *MatchJoinUserRsp) GetHeadUrl() string {
  1211. if x != nil {
  1212. return x.HeadUrl
  1213. }
  1214. return ""
  1215. }
  1216. func (x *MatchJoinUserRsp) GetGender() string {
  1217. if x != nil {
  1218. return x.Gender
  1219. }
  1220. return ""
  1221. }
  1222. func (x *MatchJoinUserRsp) GetPlayerNum() uint32 {
  1223. if x != nil {
  1224. return x.PlayerNum
  1225. }
  1226. return 0
  1227. }
  1228. type RoomStartGameReq struct {
  1229. state protoimpl.MessageState
  1230. sizeCache protoimpl.SizeCache
  1231. unknownFields protoimpl.UnknownFields
  1232. }
  1233. func (x *RoomStartGameReq) Reset() {
  1234. *x = RoomStartGameReq{}
  1235. if protoimpl.UnsafeEnabled {
  1236. mi := &file_Message_proto_msgTypes[19]
  1237. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1238. ms.StoreMessageInfo(mi)
  1239. }
  1240. }
  1241. func (x *RoomStartGameReq) String() string {
  1242. return protoimpl.X.MessageStringOf(x)
  1243. }
  1244. func (*RoomStartGameReq) ProtoMessage() {}
  1245. func (x *RoomStartGameReq) ProtoReflect() protoreflect.Message {
  1246. mi := &file_Message_proto_msgTypes[19]
  1247. if protoimpl.UnsafeEnabled && x != nil {
  1248. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1249. if ms.LoadMessageInfo() == nil {
  1250. ms.StoreMessageInfo(mi)
  1251. }
  1252. return ms
  1253. }
  1254. return mi.MessageOf(x)
  1255. }
  1256. // Deprecated: Use RoomStartGameReq.ProtoReflect.Descriptor instead.
  1257. func (*RoomStartGameReq) Descriptor() ([]byte, []int) {
  1258. return file_Message_proto_rawDescGZIP(), []int{19}
  1259. }
  1260. type RoomStartGameRsp struct {
  1261. state protoimpl.MessageState
  1262. sizeCache protoimpl.SizeCache
  1263. unknownFields protoimpl.UnknownFields
  1264. }
  1265. func (x *RoomStartGameRsp) Reset() {
  1266. *x = RoomStartGameRsp{}
  1267. if protoimpl.UnsafeEnabled {
  1268. mi := &file_Message_proto_msgTypes[20]
  1269. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1270. ms.StoreMessageInfo(mi)
  1271. }
  1272. }
  1273. func (x *RoomStartGameRsp) String() string {
  1274. return protoimpl.X.MessageStringOf(x)
  1275. }
  1276. func (*RoomStartGameRsp) ProtoMessage() {}
  1277. func (x *RoomStartGameRsp) ProtoReflect() protoreflect.Message {
  1278. mi := &file_Message_proto_msgTypes[20]
  1279. if protoimpl.UnsafeEnabled && x != nil {
  1280. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1281. if ms.LoadMessageInfo() == nil {
  1282. ms.StoreMessageInfo(mi)
  1283. }
  1284. return ms
  1285. }
  1286. return mi.MessageOf(x)
  1287. }
  1288. // Deprecated: Use RoomStartGameRsp.ProtoReflect.Descriptor instead.
  1289. func (*RoomStartGameRsp) Descriptor() ([]byte, []int) {
  1290. return file_Message_proto_rawDescGZIP(), []int{20}
  1291. }
  1292. // 获取玩家数据
  1293. type GetUserInfoReq struct {
  1294. state protoimpl.MessageState
  1295. sizeCache protoimpl.SizeCache
  1296. unknownFields protoimpl.UnknownFields
  1297. Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"` //账号ID
  1298. RoomId uint32 `protobuf:"varint,2,opt,name=roomId,proto3" json:"roomId,omitempty"` //房间ID
  1299. }
  1300. func (x *GetUserInfoReq) Reset() {
  1301. *x = GetUserInfoReq{}
  1302. if protoimpl.UnsafeEnabled {
  1303. mi := &file_Message_proto_msgTypes[21]
  1304. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1305. ms.StoreMessageInfo(mi)
  1306. }
  1307. }
  1308. func (x *GetUserInfoReq) String() string {
  1309. return protoimpl.X.MessageStringOf(x)
  1310. }
  1311. func (*GetUserInfoReq) ProtoMessage() {}
  1312. func (x *GetUserInfoReq) ProtoReflect() protoreflect.Message {
  1313. mi := &file_Message_proto_msgTypes[21]
  1314. if protoimpl.UnsafeEnabled && x != nil {
  1315. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1316. if ms.LoadMessageInfo() == nil {
  1317. ms.StoreMessageInfo(mi)
  1318. }
  1319. return ms
  1320. }
  1321. return mi.MessageOf(x)
  1322. }
  1323. // Deprecated: Use GetUserInfoReq.ProtoReflect.Descriptor instead.
  1324. func (*GetUserInfoReq) Descriptor() ([]byte, []int) {
  1325. return file_Message_proto_rawDescGZIP(), []int{21}
  1326. }
  1327. func (x *GetUserInfoReq) GetUid() string {
  1328. if x != nil {
  1329. return x.Uid
  1330. }
  1331. return ""
  1332. }
  1333. func (x *GetUserInfoReq) GetRoomId() uint32 {
  1334. if x != nil {
  1335. return x.RoomId
  1336. }
  1337. return 0
  1338. }
  1339. // 获取玩家数据
  1340. type KickUserReq struct {
  1341. state protoimpl.MessageState
  1342. sizeCache protoimpl.SizeCache
  1343. unknownFields protoimpl.UnknownFields
  1344. Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"` //账号ID
  1345. }
  1346. func (x *KickUserReq) Reset() {
  1347. *x = KickUserReq{}
  1348. if protoimpl.UnsafeEnabled {
  1349. mi := &file_Message_proto_msgTypes[22]
  1350. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1351. ms.StoreMessageInfo(mi)
  1352. }
  1353. }
  1354. func (x *KickUserReq) String() string {
  1355. return protoimpl.X.MessageStringOf(x)
  1356. }
  1357. func (*KickUserReq) ProtoMessage() {}
  1358. func (x *KickUserReq) ProtoReflect() protoreflect.Message {
  1359. mi := &file_Message_proto_msgTypes[22]
  1360. if protoimpl.UnsafeEnabled && x != nil {
  1361. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1362. if ms.LoadMessageInfo() == nil {
  1363. ms.StoreMessageInfo(mi)
  1364. }
  1365. return ms
  1366. }
  1367. return mi.MessageOf(x)
  1368. }
  1369. // Deprecated: Use KickUserReq.ProtoReflect.Descriptor instead.
  1370. func (*KickUserReq) Descriptor() ([]byte, []int) {
  1371. return file_Message_proto_rawDescGZIP(), []int{22}
  1372. }
  1373. func (x *KickUserReq) GetUid() string {
  1374. if x != nil {
  1375. return x.Uid
  1376. }
  1377. return ""
  1378. }
  1379. type GetUserInfoRsp struct {
  1380. state protoimpl.MessageState
  1381. sizeCache protoimpl.SizeCache
  1382. unknownFields protoimpl.UnknownFields
  1383. Result *uint32 `protobuf:"varint,1,opt,name=result,proto3,oneof" json:"result,omitempty"` //结果
  1384. Money []string `protobuf:"bytes,2,rep,name=money,proto3" json:"money,omitempty"`
  1385. PlayerID []string `protobuf:"bytes,3,rep,name=playerID,proto3" json:"playerID,omitempty"`
  1386. PlayerStatus []uint32 `protobuf:"varint,4,rep,packed,name=playerStatus,proto3" json:"playerStatus,omitempty"` // 玩家的当前状态, 0、1 表示空位无玩家,2: sitdown, 3: ready, 4: play, 5: 胜利后观战, 6: 胜利后离开,7: 组队逃跑,8: 逃跑
  1387. TableID []uint32 `protobuf:"varint,5,rep,packed,name=tableID,proto3" json:"tableID,omitempty"` // 桌子ID
  1388. SeatID []uint32 `protobuf:"varint,6,rep,packed,name=seatID,proto3" json:"seatID,omitempty"` //座位号
  1389. Nick []string `protobuf:"bytes,7,rep,name=nick,proto3" json:"nick,omitempty"` //昵称
  1390. HeadUrl []string `protobuf:"bytes,8,rep,name=headUrl,proto3" json:"headUrl,omitempty"` //头像
  1391. Gender []string `protobuf:"bytes,9,rep,name=gender,proto3" json:"gender,omitempty"` //性别
  1392. PlayerNum uint32 `protobuf:"varint,10,opt,name=playerNum,proto3" json:"playerNum,omitempty"` // 玩家数量
  1393. PlayerType []uint32 `protobuf:"varint,11,rep,packed,name=playerType,proto3" json:"playerType,omitempty"` // 玩家类型1是正常玩家2是机器人
  1394. SelfSeatId *uint32 `protobuf:"varint,12,opt,name=selfSeatId,proto3,oneof" json:"selfSeatId,omitempty"` // 玩家座位号
  1395. WatchingPlayers *uint32 `protobuf:"varint,13,opt,name=watchingPlayers,proto3,oneof" json:"watchingPlayers,omitempty"` // 观战玩家数量
  1396. Countdown *uint32 `protobuf:"varint,14,opt,name=countdown,proto3,oneof" json:"countdown,omitempty"` // 游戏结束倒计时
  1397. GameType uint32 `protobuf:"varint,15,opt,name=gameType,proto3" json:"gameType,omitempty"` // 游戏类型,1经典,2匹配
  1398. }
  1399. func (x *GetUserInfoRsp) Reset() {
  1400. *x = GetUserInfoRsp{}
  1401. if protoimpl.UnsafeEnabled {
  1402. mi := &file_Message_proto_msgTypes[23]
  1403. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1404. ms.StoreMessageInfo(mi)
  1405. }
  1406. }
  1407. func (x *GetUserInfoRsp) String() string {
  1408. return protoimpl.X.MessageStringOf(x)
  1409. }
  1410. func (*GetUserInfoRsp) ProtoMessage() {}
  1411. func (x *GetUserInfoRsp) ProtoReflect() protoreflect.Message {
  1412. mi := &file_Message_proto_msgTypes[23]
  1413. if protoimpl.UnsafeEnabled && x != nil {
  1414. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1415. if ms.LoadMessageInfo() == nil {
  1416. ms.StoreMessageInfo(mi)
  1417. }
  1418. return ms
  1419. }
  1420. return mi.MessageOf(x)
  1421. }
  1422. // Deprecated: Use GetUserInfoRsp.ProtoReflect.Descriptor instead.
  1423. func (*GetUserInfoRsp) Descriptor() ([]byte, []int) {
  1424. return file_Message_proto_rawDescGZIP(), []int{23}
  1425. }
  1426. func (x *GetUserInfoRsp) GetResult() uint32 {
  1427. if x != nil && x.Result != nil {
  1428. return *x.Result
  1429. }
  1430. return 0
  1431. }
  1432. func (x *GetUserInfoRsp) GetMoney() []string {
  1433. if x != nil {
  1434. return x.Money
  1435. }
  1436. return nil
  1437. }
  1438. func (x *GetUserInfoRsp) GetPlayerID() []string {
  1439. if x != nil {
  1440. return x.PlayerID
  1441. }
  1442. return nil
  1443. }
  1444. func (x *GetUserInfoRsp) GetPlayerStatus() []uint32 {
  1445. if x != nil {
  1446. return x.PlayerStatus
  1447. }
  1448. return nil
  1449. }
  1450. func (x *GetUserInfoRsp) GetTableID() []uint32 {
  1451. if x != nil {
  1452. return x.TableID
  1453. }
  1454. return nil
  1455. }
  1456. func (x *GetUserInfoRsp) GetSeatID() []uint32 {
  1457. if x != nil {
  1458. return x.SeatID
  1459. }
  1460. return nil
  1461. }
  1462. func (x *GetUserInfoRsp) GetNick() []string {
  1463. if x != nil {
  1464. return x.Nick
  1465. }
  1466. return nil
  1467. }
  1468. func (x *GetUserInfoRsp) GetHeadUrl() []string {
  1469. if x != nil {
  1470. return x.HeadUrl
  1471. }
  1472. return nil
  1473. }
  1474. func (x *GetUserInfoRsp) GetGender() []string {
  1475. if x != nil {
  1476. return x.Gender
  1477. }
  1478. return nil
  1479. }
  1480. func (x *GetUserInfoRsp) GetPlayerNum() uint32 {
  1481. if x != nil {
  1482. return x.PlayerNum
  1483. }
  1484. return 0
  1485. }
  1486. func (x *GetUserInfoRsp) GetPlayerType() []uint32 {
  1487. if x != nil {
  1488. return x.PlayerType
  1489. }
  1490. return nil
  1491. }
  1492. func (x *GetUserInfoRsp) GetSelfSeatId() uint32 {
  1493. if x != nil && x.SelfSeatId != nil {
  1494. return *x.SelfSeatId
  1495. }
  1496. return 0
  1497. }
  1498. func (x *GetUserInfoRsp) GetWatchingPlayers() uint32 {
  1499. if x != nil && x.WatchingPlayers != nil {
  1500. return *x.WatchingPlayers
  1501. }
  1502. return 0
  1503. }
  1504. func (x *GetUserInfoRsp) GetCountdown() uint32 {
  1505. if x != nil && x.Countdown != nil {
  1506. return *x.Countdown
  1507. }
  1508. return 0
  1509. }
  1510. func (x *GetUserInfoRsp) GetGameType() uint32 {
  1511. if x != nil {
  1512. return x.GameType
  1513. }
  1514. return 0
  1515. }
  1516. type TKickEventRsp struct {
  1517. state protoimpl.MessageState
  1518. sizeCache protoimpl.SizeCache
  1519. unknownFields protoimpl.UnknownFields
  1520. PlayerNum *uint32 `protobuf:"varint,1,opt,name=PlayerNum,proto3,oneof" json:"PlayerNum,omitempty"` // 被踢玩家数
  1521. KickPlayer []*KickPlayerRsp `protobuf:"bytes,2,rep,name=kickPlayer,proto3" json:"kickPlayer,omitempty"`
  1522. }
  1523. func (x *TKickEventRsp) Reset() {
  1524. *x = TKickEventRsp{}
  1525. if protoimpl.UnsafeEnabled {
  1526. mi := &file_Message_proto_msgTypes[24]
  1527. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1528. ms.StoreMessageInfo(mi)
  1529. }
  1530. }
  1531. func (x *TKickEventRsp) String() string {
  1532. return protoimpl.X.MessageStringOf(x)
  1533. }
  1534. func (*TKickEventRsp) ProtoMessage() {}
  1535. func (x *TKickEventRsp) ProtoReflect() protoreflect.Message {
  1536. mi := &file_Message_proto_msgTypes[24]
  1537. if protoimpl.UnsafeEnabled && x != nil {
  1538. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1539. if ms.LoadMessageInfo() == nil {
  1540. ms.StoreMessageInfo(mi)
  1541. }
  1542. return ms
  1543. }
  1544. return mi.MessageOf(x)
  1545. }
  1546. // Deprecated: Use TKickEventRsp.ProtoReflect.Descriptor instead.
  1547. func (*TKickEventRsp) Descriptor() ([]byte, []int) {
  1548. return file_Message_proto_rawDescGZIP(), []int{24}
  1549. }
  1550. func (x *TKickEventRsp) GetPlayerNum() uint32 {
  1551. if x != nil && x.PlayerNum != nil {
  1552. return *x.PlayerNum
  1553. }
  1554. return 0
  1555. }
  1556. func (x *TKickEventRsp) GetKickPlayer() []*KickPlayerRsp {
  1557. if x != nil {
  1558. return x.KickPlayer
  1559. }
  1560. return nil
  1561. }
  1562. type KickPlayerRsp struct {
  1563. state protoimpl.MessageState
  1564. sizeCache protoimpl.SizeCache
  1565. unknownFields protoimpl.UnknownFields
  1566. SeatId *uint32 `protobuf:"varint,1,opt,name=seatId,proto3,oneof" json:"seatId,omitempty"` // 被踢玩家
  1567. PlaneNum *uint32 `protobuf:"varint,2,opt,name=planeNum,proto3,oneof" json:"planeNum,omitempty"` // 被踢飞机数
  1568. PlaneID string `protobuf:"bytes,3,opt,name=planeID,proto3" json:"planeID,omitempty"` // 飞机ID
  1569. }
  1570. func (x *KickPlayerRsp) Reset() {
  1571. *x = KickPlayerRsp{}
  1572. if protoimpl.UnsafeEnabled {
  1573. mi := &file_Message_proto_msgTypes[25]
  1574. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1575. ms.StoreMessageInfo(mi)
  1576. }
  1577. }
  1578. func (x *KickPlayerRsp) String() string {
  1579. return protoimpl.X.MessageStringOf(x)
  1580. }
  1581. func (*KickPlayerRsp) ProtoMessage() {}
  1582. func (x *KickPlayerRsp) ProtoReflect() protoreflect.Message {
  1583. mi := &file_Message_proto_msgTypes[25]
  1584. if protoimpl.UnsafeEnabled && x != nil {
  1585. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1586. if ms.LoadMessageInfo() == nil {
  1587. ms.StoreMessageInfo(mi)
  1588. }
  1589. return ms
  1590. }
  1591. return mi.MessageOf(x)
  1592. }
  1593. // Deprecated: Use KickPlayerRsp.ProtoReflect.Descriptor instead.
  1594. func (*KickPlayerRsp) Descriptor() ([]byte, []int) {
  1595. return file_Message_proto_rawDescGZIP(), []int{25}
  1596. }
  1597. func (x *KickPlayerRsp) GetSeatId() uint32 {
  1598. if x != nil && x.SeatId != nil {
  1599. return *x.SeatId
  1600. }
  1601. return 0
  1602. }
  1603. func (x *KickPlayerRsp) GetPlaneNum() uint32 {
  1604. if x != nil && x.PlaneNum != nil {
  1605. return *x.PlaneNum
  1606. }
  1607. return 0
  1608. }
  1609. func (x *KickPlayerRsp) GetPlaneID() string {
  1610. if x != nil {
  1611. return x.PlaneID
  1612. }
  1613. return ""
  1614. }
  1615. type FinishEventRsp struct {
  1616. state protoimpl.MessageState
  1617. sizeCache protoimpl.SizeCache
  1618. unknownFields protoimpl.UnknownFields
  1619. SeatId *uint32 `protobuf:"varint,1,opt,name=seatId,proto3,oneof" json:"seatId,omitempty"` // 到达玩家
  1620. PlaneId string `protobuf:"bytes,2,opt,name=planeId,proto3" json:"planeId,omitempty"` // 飞机ID
  1621. }
  1622. func (x *FinishEventRsp) Reset() {
  1623. *x = FinishEventRsp{}
  1624. if protoimpl.UnsafeEnabled {
  1625. mi := &file_Message_proto_msgTypes[26]
  1626. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1627. ms.StoreMessageInfo(mi)
  1628. }
  1629. }
  1630. func (x *FinishEventRsp) String() string {
  1631. return protoimpl.X.MessageStringOf(x)
  1632. }
  1633. func (*FinishEventRsp) ProtoMessage() {}
  1634. func (x *FinishEventRsp) ProtoReflect() protoreflect.Message {
  1635. mi := &file_Message_proto_msgTypes[26]
  1636. if protoimpl.UnsafeEnabled && x != nil {
  1637. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1638. if ms.LoadMessageInfo() == nil {
  1639. ms.StoreMessageInfo(mi)
  1640. }
  1641. return ms
  1642. }
  1643. return mi.MessageOf(x)
  1644. }
  1645. // Deprecated: Use FinishEventRsp.ProtoReflect.Descriptor instead.
  1646. func (*FinishEventRsp) Descriptor() ([]byte, []int) {
  1647. return file_Message_proto_rawDescGZIP(), []int{26}
  1648. }
  1649. func (x *FinishEventRsp) GetSeatId() uint32 {
  1650. if x != nil && x.SeatId != nil {
  1651. return *x.SeatId
  1652. }
  1653. return 0
  1654. }
  1655. func (x *FinishEventRsp) GetPlaneId() string {
  1656. if x != nil {
  1657. return x.PlaneId
  1658. }
  1659. return ""
  1660. }
  1661. type PlayerRsp struct {
  1662. state protoimpl.MessageState
  1663. sizeCache protoimpl.SizeCache
  1664. unknownFields protoimpl.UnknownFields
  1665. SeatId *uint32 `protobuf:"varint,1,opt,name=seatId,proto3,oneof" json:"seatId,omitempty"` // 到达玩家
  1666. Planes []*PlaneRsp `protobuf:"bytes,2,rep,name=planes,proto3" json:"planes,omitempty"` // 飞机
  1667. }
  1668. func (x *PlayerRsp) Reset() {
  1669. *x = PlayerRsp{}
  1670. if protoimpl.UnsafeEnabled {
  1671. mi := &file_Message_proto_msgTypes[27]
  1672. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1673. ms.StoreMessageInfo(mi)
  1674. }
  1675. }
  1676. func (x *PlayerRsp) String() string {
  1677. return protoimpl.X.MessageStringOf(x)
  1678. }
  1679. func (*PlayerRsp) ProtoMessage() {}
  1680. func (x *PlayerRsp) ProtoReflect() protoreflect.Message {
  1681. mi := &file_Message_proto_msgTypes[27]
  1682. if protoimpl.UnsafeEnabled && x != nil {
  1683. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1684. if ms.LoadMessageInfo() == nil {
  1685. ms.StoreMessageInfo(mi)
  1686. }
  1687. return ms
  1688. }
  1689. return mi.MessageOf(x)
  1690. }
  1691. // Deprecated: Use PlayerRsp.ProtoReflect.Descriptor instead.
  1692. func (*PlayerRsp) Descriptor() ([]byte, []int) {
  1693. return file_Message_proto_rawDescGZIP(), []int{27}
  1694. }
  1695. func (x *PlayerRsp) GetSeatId() uint32 {
  1696. if x != nil && x.SeatId != nil {
  1697. return *x.SeatId
  1698. }
  1699. return 0
  1700. }
  1701. func (x *PlayerRsp) GetPlanes() []*PlaneRsp {
  1702. if x != nil {
  1703. return x.Planes
  1704. }
  1705. return nil
  1706. }
  1707. type PlaneRsp struct {
  1708. state protoimpl.MessageState
  1709. sizeCache protoimpl.SizeCache
  1710. unknownFields protoimpl.UnknownFields
  1711. PlaneId string `protobuf:"bytes,1,opt,name=planeId,proto3" json:"planeId,omitempty"` // 飞机ID
  1712. CurrentIndex *uint32 `protobuf:"varint,2,opt,name=currentIndex,proto3,oneof" json:"currentIndex,omitempty"` // 飞机下标
  1713. PlaneStatus *uint32 `protobuf:"varint,3,opt,name=planeStatus,proto3,oneof" json:"planeStatus,omitempty"` // 0是未起飞,1是移动中,2是到达终点
  1714. }
  1715. func (x *PlaneRsp) Reset() {
  1716. *x = PlaneRsp{}
  1717. if protoimpl.UnsafeEnabled {
  1718. mi := &file_Message_proto_msgTypes[28]
  1719. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1720. ms.StoreMessageInfo(mi)
  1721. }
  1722. }
  1723. func (x *PlaneRsp) String() string {
  1724. return protoimpl.X.MessageStringOf(x)
  1725. }
  1726. func (*PlaneRsp) ProtoMessage() {}
  1727. func (x *PlaneRsp) ProtoReflect() protoreflect.Message {
  1728. mi := &file_Message_proto_msgTypes[28]
  1729. if protoimpl.UnsafeEnabled && x != nil {
  1730. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1731. if ms.LoadMessageInfo() == nil {
  1732. ms.StoreMessageInfo(mi)
  1733. }
  1734. return ms
  1735. }
  1736. return mi.MessageOf(x)
  1737. }
  1738. // Deprecated: Use PlaneRsp.ProtoReflect.Descriptor instead.
  1739. func (*PlaneRsp) Descriptor() ([]byte, []int) {
  1740. return file_Message_proto_rawDescGZIP(), []int{28}
  1741. }
  1742. func (x *PlaneRsp) GetPlaneId() string {
  1743. if x != nil {
  1744. return x.PlaneId
  1745. }
  1746. return ""
  1747. }
  1748. func (x *PlaneRsp) GetCurrentIndex() uint32 {
  1749. if x != nil && x.CurrentIndex != nil {
  1750. return *x.CurrentIndex
  1751. }
  1752. return 0
  1753. }
  1754. func (x *PlaneRsp) GetPlaneStatus() uint32 {
  1755. if x != nil && x.PlaneStatus != nil {
  1756. return *x.PlaneStatus
  1757. }
  1758. return 0
  1759. }
  1760. type RoomDjsRsp struct {
  1761. state protoimpl.MessageState
  1762. sizeCache protoimpl.SizeCache
  1763. unknownFields protoimpl.UnknownFields
  1764. Time *uint32 `protobuf:"varint,1,opt,name=time,proto3,oneof" json:"time,omitempty"` // 倒计时时间
  1765. }
  1766. func (x *RoomDjsRsp) Reset() {
  1767. *x = RoomDjsRsp{}
  1768. if protoimpl.UnsafeEnabled {
  1769. mi := &file_Message_proto_msgTypes[29]
  1770. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1771. ms.StoreMessageInfo(mi)
  1772. }
  1773. }
  1774. func (x *RoomDjsRsp) String() string {
  1775. return protoimpl.X.MessageStringOf(x)
  1776. }
  1777. func (*RoomDjsRsp) ProtoMessage() {}
  1778. func (x *RoomDjsRsp) ProtoReflect() protoreflect.Message {
  1779. mi := &file_Message_proto_msgTypes[29]
  1780. if protoimpl.UnsafeEnabled && x != nil {
  1781. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1782. if ms.LoadMessageInfo() == nil {
  1783. ms.StoreMessageInfo(mi)
  1784. }
  1785. return ms
  1786. }
  1787. return mi.MessageOf(x)
  1788. }
  1789. // Deprecated: Use RoomDjsRsp.ProtoReflect.Descriptor instead.
  1790. func (*RoomDjsRsp) Descriptor() ([]byte, []int) {
  1791. return file_Message_proto_rawDescGZIP(), []int{29}
  1792. }
  1793. func (x *RoomDjsRsp) GetTime() uint32 {
  1794. if x != nil && x.Time != nil {
  1795. return *x.Time
  1796. }
  1797. return 0
  1798. }
  1799. // 加入房间通知其他玩家
  1800. type RoomJoinUserRsp struct {
  1801. state protoimpl.MessageState
  1802. sizeCache protoimpl.SizeCache
  1803. unknownFields protoimpl.UnknownFields
  1804. Result *uint32 `protobuf:"varint,1,opt,name=result,proto3,oneof" json:"result,omitempty"` //结果
  1805. Money string `protobuf:"bytes,2,opt,name=money,proto3" json:"money,omitempty"`
  1806. PlayerID string `protobuf:"bytes,3,opt,name=playerID,proto3" json:"playerID,omitempty"`
  1807. PlayerStatus uint32 `protobuf:"varint,4,opt,name=playerStatus,proto3" json:"playerStatus,omitempty"` // 玩家的当前状态, 0、1 表示空位无玩家,2: sitdown, 3: ready, 4: play, 5: 胜利后观战, 6: 胜利后离开,7: 组队逃跑,8: 逃跑
  1808. TableID uint32 `protobuf:"varint,5,opt,name=tableID,proto3" json:"tableID,omitempty"` // 桌子ID
  1809. SeatID uint32 `protobuf:"varint,6,opt,name=seatID,proto3" json:"seatID,omitempty"` //座位号
  1810. Nick string `protobuf:"bytes,7,opt,name=nick,proto3" json:"nick,omitempty"` //昵称
  1811. HeadUrl string `protobuf:"bytes,8,opt,name=headUrl,proto3" json:"headUrl,omitempty"` //头像
  1812. Gender string `protobuf:"bytes,9,opt,name=gender,proto3" json:"gender,omitempty"` //性别
  1813. PlayerNum uint32 `protobuf:"varint,10,opt,name=playerNum,proto3" json:"playerNum,omitempty"` // 玩家数量
  1814. PlayerType uint32 `protobuf:"varint,11,opt,name=playerType,proto3" json:"playerType,omitempty"` // 玩家类型1是正常玩家2是机器人
  1815. }
  1816. func (x *RoomJoinUserRsp) Reset() {
  1817. *x = RoomJoinUserRsp{}
  1818. if protoimpl.UnsafeEnabled {
  1819. mi := &file_Message_proto_msgTypes[30]
  1820. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1821. ms.StoreMessageInfo(mi)
  1822. }
  1823. }
  1824. func (x *RoomJoinUserRsp) String() string {
  1825. return protoimpl.X.MessageStringOf(x)
  1826. }
  1827. func (*RoomJoinUserRsp) ProtoMessage() {}
  1828. func (x *RoomJoinUserRsp) ProtoReflect() protoreflect.Message {
  1829. mi := &file_Message_proto_msgTypes[30]
  1830. if protoimpl.UnsafeEnabled && x != nil {
  1831. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1832. if ms.LoadMessageInfo() == nil {
  1833. ms.StoreMessageInfo(mi)
  1834. }
  1835. return ms
  1836. }
  1837. return mi.MessageOf(x)
  1838. }
  1839. // Deprecated: Use RoomJoinUserRsp.ProtoReflect.Descriptor instead.
  1840. func (*RoomJoinUserRsp) Descriptor() ([]byte, []int) {
  1841. return file_Message_proto_rawDescGZIP(), []int{30}
  1842. }
  1843. func (x *RoomJoinUserRsp) GetResult() uint32 {
  1844. if x != nil && x.Result != nil {
  1845. return *x.Result
  1846. }
  1847. return 0
  1848. }
  1849. func (x *RoomJoinUserRsp) GetMoney() string {
  1850. if x != nil {
  1851. return x.Money
  1852. }
  1853. return ""
  1854. }
  1855. func (x *RoomJoinUserRsp) GetPlayerID() string {
  1856. if x != nil {
  1857. return x.PlayerID
  1858. }
  1859. return ""
  1860. }
  1861. func (x *RoomJoinUserRsp) GetPlayerStatus() uint32 {
  1862. if x != nil {
  1863. return x.PlayerStatus
  1864. }
  1865. return 0
  1866. }
  1867. func (x *RoomJoinUserRsp) GetTableID() uint32 {
  1868. if x != nil {
  1869. return x.TableID
  1870. }
  1871. return 0
  1872. }
  1873. func (x *RoomJoinUserRsp) GetSeatID() uint32 {
  1874. if x != nil {
  1875. return x.SeatID
  1876. }
  1877. return 0
  1878. }
  1879. func (x *RoomJoinUserRsp) GetNick() string {
  1880. if x != nil {
  1881. return x.Nick
  1882. }
  1883. return ""
  1884. }
  1885. func (x *RoomJoinUserRsp) GetHeadUrl() string {
  1886. if x != nil {
  1887. return x.HeadUrl
  1888. }
  1889. return ""
  1890. }
  1891. func (x *RoomJoinUserRsp) GetGender() string {
  1892. if x != nil {
  1893. return x.Gender
  1894. }
  1895. return ""
  1896. }
  1897. func (x *RoomJoinUserRsp) GetPlayerNum() uint32 {
  1898. if x != nil {
  1899. return x.PlayerNum
  1900. }
  1901. return 0
  1902. }
  1903. func (x *RoomJoinUserRsp) GetPlayerType() uint32 {
  1904. if x != nil {
  1905. return x.PlayerType
  1906. }
  1907. return 0
  1908. }
  1909. // 1,通知开始掷子并且开始倒计时
  1910. type GameStartRsp struct {
  1911. state protoimpl.MessageState
  1912. sizeCache protoimpl.SizeCache
  1913. unknownFields protoimpl.UnknownFields
  1914. Result *uint32 `protobuf:"varint,1,opt,name=result,proto3,oneof" json:"result,omitempty"` //结果
  1915. SeatID *uint32 `protobuf:"varint,2,opt,name=seatID,proto3,oneof" json:"seatID,omitempty"` //掷子玩家座位号
  1916. CastSecond *uint32 `protobuf:"varint,3,opt,name=castSecond,proto3,oneof" json:"castSecond,omitempty"` //结果
  1917. }
  1918. func (x *GameStartRsp) Reset() {
  1919. *x = GameStartRsp{}
  1920. if protoimpl.UnsafeEnabled {
  1921. mi := &file_Message_proto_msgTypes[31]
  1922. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1923. ms.StoreMessageInfo(mi)
  1924. }
  1925. }
  1926. func (x *GameStartRsp) String() string {
  1927. return protoimpl.X.MessageStringOf(x)
  1928. }
  1929. func (*GameStartRsp) ProtoMessage() {}
  1930. func (x *GameStartRsp) ProtoReflect() protoreflect.Message {
  1931. mi := &file_Message_proto_msgTypes[31]
  1932. if protoimpl.UnsafeEnabled && x != nil {
  1933. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1934. if ms.LoadMessageInfo() == nil {
  1935. ms.StoreMessageInfo(mi)
  1936. }
  1937. return ms
  1938. }
  1939. return mi.MessageOf(x)
  1940. }
  1941. // Deprecated: Use GameStartRsp.ProtoReflect.Descriptor instead.
  1942. func (*GameStartRsp) Descriptor() ([]byte, []int) {
  1943. return file_Message_proto_rawDescGZIP(), []int{31}
  1944. }
  1945. func (x *GameStartRsp) GetResult() uint32 {
  1946. if x != nil && x.Result != nil {
  1947. return *x.Result
  1948. }
  1949. return 0
  1950. }
  1951. func (x *GameStartRsp) GetSeatID() uint32 {
  1952. if x != nil && x.SeatID != nil {
  1953. return *x.SeatID
  1954. }
  1955. return 0
  1956. }
  1957. func (x *GameStartRsp) GetCastSecond() uint32 {
  1958. if x != nil && x.CastSecond != nil {
  1959. return *x.CastSecond
  1960. }
  1961. return 0
  1962. }
  1963. // 2,客户端请求掷子,空消息
  1964. type ThrowTheDiceReq struct {
  1965. state protoimpl.MessageState
  1966. sizeCache protoimpl.SizeCache
  1967. unknownFields protoimpl.UnknownFields
  1968. }
  1969. func (x *ThrowTheDiceReq) Reset() {
  1970. *x = ThrowTheDiceReq{}
  1971. if protoimpl.UnsafeEnabled {
  1972. mi := &file_Message_proto_msgTypes[32]
  1973. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1974. ms.StoreMessageInfo(mi)
  1975. }
  1976. }
  1977. func (x *ThrowTheDiceReq) String() string {
  1978. return protoimpl.X.MessageStringOf(x)
  1979. }
  1980. func (*ThrowTheDiceReq) ProtoMessage() {}
  1981. func (x *ThrowTheDiceReq) ProtoReflect() protoreflect.Message {
  1982. mi := &file_Message_proto_msgTypes[32]
  1983. if protoimpl.UnsafeEnabled && x != nil {
  1984. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1985. if ms.LoadMessageInfo() == nil {
  1986. ms.StoreMessageInfo(mi)
  1987. }
  1988. return ms
  1989. }
  1990. return mi.MessageOf(x)
  1991. }
  1992. // Deprecated: Use ThrowTheDiceReq.ProtoReflect.Descriptor instead.
  1993. func (*ThrowTheDiceReq) Descriptor() ([]byte, []int) {
  1994. return file_Message_proto_rawDescGZIP(), []int{32}
  1995. }
  1996. // 3,通知掷子结果
  1997. type ThrowTheDiceRsp struct {
  1998. state protoimpl.MessageState
  1999. sizeCache protoimpl.SizeCache
  2000. unknownFields protoimpl.UnknownFields
  2001. Result *uint32 `protobuf:"varint,1,opt,name=result,proto3,oneof" json:"result,omitempty"` //结果 0表示成功,其他表示失败
  2002. SeatID *uint32 `protobuf:"varint,2,opt,name=seatID,proto3,oneof" json:"seatID,omitempty"` //座位id
  2003. Point uint32 `protobuf:"varint,3,opt,name=point,proto3" json:"point,omitempty"` //掷子点数
  2004. SkipReason *uint32 `protobuf:"varint,4,opt,name=skipReason,proto3,oneof" json:"skipReason,omitempty"` //玩家是否可以行棋,不为0表示不能行棋
  2005. NextTurn *uint32 `protobuf:"varint,5,opt,name=nextTurn,proto3,oneof" json:"nextTurn,omitempty"` //玩家不能行走时下一玩家
  2006. AutoMove *uint32 `protobuf:"varint,6,opt,name=autoMove,proto3,oneof" json:"autoMove,omitempty"` //1代表正常 2自动骰子 3自动起飞,4自动行走
  2007. Players []*PlayerRsp `protobuf:"bytes,7,rep,name=players,proto3" json:"players,omitempty"`
  2008. }
  2009. func (x *ThrowTheDiceRsp) Reset() {
  2010. *x = ThrowTheDiceRsp{}
  2011. if protoimpl.UnsafeEnabled {
  2012. mi := &file_Message_proto_msgTypes[33]
  2013. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2014. ms.StoreMessageInfo(mi)
  2015. }
  2016. }
  2017. func (x *ThrowTheDiceRsp) String() string {
  2018. return protoimpl.X.MessageStringOf(x)
  2019. }
  2020. func (*ThrowTheDiceRsp) ProtoMessage() {}
  2021. func (x *ThrowTheDiceRsp) ProtoReflect() protoreflect.Message {
  2022. mi := &file_Message_proto_msgTypes[33]
  2023. if protoimpl.UnsafeEnabled && x != nil {
  2024. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2025. if ms.LoadMessageInfo() == nil {
  2026. ms.StoreMessageInfo(mi)
  2027. }
  2028. return ms
  2029. }
  2030. return mi.MessageOf(x)
  2031. }
  2032. // Deprecated: Use ThrowTheDiceRsp.ProtoReflect.Descriptor instead.
  2033. func (*ThrowTheDiceRsp) Descriptor() ([]byte, []int) {
  2034. return file_Message_proto_rawDescGZIP(), []int{33}
  2035. }
  2036. func (x *ThrowTheDiceRsp) GetResult() uint32 {
  2037. if x != nil && x.Result != nil {
  2038. return *x.Result
  2039. }
  2040. return 0
  2041. }
  2042. func (x *ThrowTheDiceRsp) GetSeatID() uint32 {
  2043. if x != nil && x.SeatID != nil {
  2044. return *x.SeatID
  2045. }
  2046. return 0
  2047. }
  2048. func (x *ThrowTheDiceRsp) GetPoint() uint32 {
  2049. if x != nil {
  2050. return x.Point
  2051. }
  2052. return 0
  2053. }
  2054. func (x *ThrowTheDiceRsp) GetSkipReason() uint32 {
  2055. if x != nil && x.SkipReason != nil {
  2056. return *x.SkipReason
  2057. }
  2058. return 0
  2059. }
  2060. func (x *ThrowTheDiceRsp) GetNextTurn() uint32 {
  2061. if x != nil && x.NextTurn != nil {
  2062. return *x.NextTurn
  2063. }
  2064. return 0
  2065. }
  2066. func (x *ThrowTheDiceRsp) GetAutoMove() uint32 {
  2067. if x != nil && x.AutoMove != nil {
  2068. return *x.AutoMove
  2069. }
  2070. return 0
  2071. }
  2072. func (x *ThrowTheDiceRsp) GetPlayers() []*PlayerRsp {
  2073. if x != nil {
  2074. return x.Players
  2075. }
  2076. return nil
  2077. }
  2078. // 4,客户端请求起飞
  2079. type PlaneStartReq struct {
  2080. state protoimpl.MessageState
  2081. sizeCache protoimpl.SizeCache
  2082. unknownFields protoimpl.UnknownFields
  2083. PlaneID string `protobuf:"bytes,1,opt,name=planeID,proto3" json:"planeID,omitempty"` //飞机id,从0开始
  2084. }
  2085. func (x *PlaneStartReq) Reset() {
  2086. *x = PlaneStartReq{}
  2087. if protoimpl.UnsafeEnabled {
  2088. mi := &file_Message_proto_msgTypes[34]
  2089. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2090. ms.StoreMessageInfo(mi)
  2091. }
  2092. }
  2093. func (x *PlaneStartReq) String() string {
  2094. return protoimpl.X.MessageStringOf(x)
  2095. }
  2096. func (*PlaneStartReq) ProtoMessage() {}
  2097. func (x *PlaneStartReq) ProtoReflect() protoreflect.Message {
  2098. mi := &file_Message_proto_msgTypes[34]
  2099. if protoimpl.UnsafeEnabled && x != nil {
  2100. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2101. if ms.LoadMessageInfo() == nil {
  2102. ms.StoreMessageInfo(mi)
  2103. }
  2104. return ms
  2105. }
  2106. return mi.MessageOf(x)
  2107. }
  2108. // Deprecated: Use PlaneStartReq.ProtoReflect.Descriptor instead.
  2109. func (*PlaneStartReq) Descriptor() ([]byte, []int) {
  2110. return file_Message_proto_rawDescGZIP(), []int{34}
  2111. }
  2112. func (x *PlaneStartReq) GetPlaneID() string {
  2113. if x != nil {
  2114. return x.PlaneID
  2115. }
  2116. return ""
  2117. }
  2118. // 5,通知起飞结果
  2119. type PlaneStartRsp struct {
  2120. state protoimpl.MessageState
  2121. sizeCache protoimpl.SizeCache
  2122. unknownFields protoimpl.UnknownFields
  2123. Result *uint32 `protobuf:"varint,1,opt,name=result,proto3,oneof" json:"result,omitempty"` //结果
  2124. SeatID *uint32 `protobuf:"varint,2,opt,name=seatID,proto3,oneof" json:"seatID,omitempty"` //起飞玩家座位id
  2125. PlaneID string `protobuf:"bytes,3,opt,name=planeID,proto3" json:"planeID,omitempty"` //起飞飞机ID
  2126. NextTurn *uint32 `protobuf:"varint,4,opt,name=nextTurn,proto3,oneof" json:"nextTurn,omitempty"` //下一个玩家座位id
  2127. PlayerNum uint32 `protobuf:"varint,5,opt,name=playerNum,proto3" json:"playerNum,omitempty"` //玩家数
  2128. Players []*PlayerRsp `protobuf:"bytes,6,rep,name=players,proto3" json:"players,omitempty"`
  2129. }
  2130. func (x *PlaneStartRsp) Reset() {
  2131. *x = PlaneStartRsp{}
  2132. if protoimpl.UnsafeEnabled {
  2133. mi := &file_Message_proto_msgTypes[35]
  2134. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2135. ms.StoreMessageInfo(mi)
  2136. }
  2137. }
  2138. func (x *PlaneStartRsp) String() string {
  2139. return protoimpl.X.MessageStringOf(x)
  2140. }
  2141. func (*PlaneStartRsp) ProtoMessage() {}
  2142. func (x *PlaneStartRsp) ProtoReflect() protoreflect.Message {
  2143. mi := &file_Message_proto_msgTypes[35]
  2144. if protoimpl.UnsafeEnabled && x != nil {
  2145. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2146. if ms.LoadMessageInfo() == nil {
  2147. ms.StoreMessageInfo(mi)
  2148. }
  2149. return ms
  2150. }
  2151. return mi.MessageOf(x)
  2152. }
  2153. // Deprecated: Use PlaneStartRsp.ProtoReflect.Descriptor instead.
  2154. func (*PlaneStartRsp) Descriptor() ([]byte, []int) {
  2155. return file_Message_proto_rawDescGZIP(), []int{35}
  2156. }
  2157. func (x *PlaneStartRsp) GetResult() uint32 {
  2158. if x != nil && x.Result != nil {
  2159. return *x.Result
  2160. }
  2161. return 0
  2162. }
  2163. func (x *PlaneStartRsp) GetSeatID() uint32 {
  2164. if x != nil && x.SeatID != nil {
  2165. return *x.SeatID
  2166. }
  2167. return 0
  2168. }
  2169. func (x *PlaneStartRsp) GetPlaneID() string {
  2170. if x != nil {
  2171. return x.PlaneID
  2172. }
  2173. return ""
  2174. }
  2175. func (x *PlaneStartRsp) GetNextTurn() uint32 {
  2176. if x != nil && x.NextTurn != nil {
  2177. return *x.NextTurn
  2178. }
  2179. return 0
  2180. }
  2181. func (x *PlaneStartRsp) GetPlayerNum() uint32 {
  2182. if x != nil {
  2183. return x.PlayerNum
  2184. }
  2185. return 0
  2186. }
  2187. func (x *PlaneStartRsp) GetPlayers() []*PlayerRsp {
  2188. if x != nil {
  2189. return x.Players
  2190. }
  2191. return nil
  2192. }
  2193. // 6,客户端请求行走
  2194. type MoveReq struct {
  2195. state protoimpl.MessageState
  2196. sizeCache protoimpl.SizeCache
  2197. unknownFields protoimpl.UnknownFields
  2198. PlaneID string `protobuf:"bytes,1,opt,name=planeID,proto3" json:"planeID,omitempty"` //飞机id,从0开始
  2199. }
  2200. func (x *MoveReq) Reset() {
  2201. *x = MoveReq{}
  2202. if protoimpl.UnsafeEnabled {
  2203. mi := &file_Message_proto_msgTypes[36]
  2204. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2205. ms.StoreMessageInfo(mi)
  2206. }
  2207. }
  2208. func (x *MoveReq) String() string {
  2209. return protoimpl.X.MessageStringOf(x)
  2210. }
  2211. func (*MoveReq) ProtoMessage() {}
  2212. func (x *MoveReq) ProtoReflect() protoreflect.Message {
  2213. mi := &file_Message_proto_msgTypes[36]
  2214. if protoimpl.UnsafeEnabled && x != nil {
  2215. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2216. if ms.LoadMessageInfo() == nil {
  2217. ms.StoreMessageInfo(mi)
  2218. }
  2219. return ms
  2220. }
  2221. return mi.MessageOf(x)
  2222. }
  2223. // Deprecated: Use MoveReq.ProtoReflect.Descriptor instead.
  2224. func (*MoveReq) Descriptor() ([]byte, []int) {
  2225. return file_Message_proto_rawDescGZIP(), []int{36}
  2226. }
  2227. func (x *MoveReq) GetPlaneID() string {
  2228. if x != nil {
  2229. return x.PlaneID
  2230. }
  2231. return ""
  2232. }
  2233. // 7,通知移动结果
  2234. type MoveRsp struct {
  2235. state protoimpl.MessageState
  2236. sizeCache protoimpl.SizeCache
  2237. unknownFields protoimpl.UnknownFields
  2238. Result *uint32 `protobuf:"varint,1,opt,name=result,proto3,oneof" json:"result,omitempty"` //0表示成功,其他表示失败
  2239. SeatID *uint32 `protobuf:"varint,2,opt,name=seatID,proto3,oneof" json:"seatID,omitempty"` //起飞玩家座位id
  2240. PlaneID string `protobuf:"bytes,3,opt,name=planeID,proto3" json:"planeID,omitempty"` //行走飞机ID
  2241. Step *uint32 `protobuf:"varint,4,opt,name=step,proto3,oneof" json:"step,omitempty"` //行走的步数
  2242. CurPosIndex *uint32 `protobuf:"varint,5,opt,name=curPosIndex,proto3,oneof" json:"curPosIndex,omitempty"` // 棋子当前相对于行走路线的索引
  2243. NextTurn *uint32 `protobuf:"varint,6,opt,name=nextTurn,proto3,oneof" json:"nextTurn,omitempty"` //下一个玩家
  2244. HasWin *uint32 `protobuf:"varint,7,opt,name=hasWin,proto3,oneof" json:"hasWin,omitempty"` //玩家是否已经获胜,1表示已经获胜,0表示还没有获胜
  2245. PlayerNum uint32 `protobuf:"varint,8,opt,name=playerNum,proto3" json:"playerNum,omitempty"` //玩家数
  2246. FinishEvent *FinishEventRsp `protobuf:"bytes,9,opt,name=finishEvent,proto3" json:"finishEvent,omitempty"`
  2247. TKickEvent *TKickEventRsp `protobuf:"bytes,10,opt,name=tKickEvent,proto3" json:"tKickEvent,omitempty"`
  2248. Players []*PlayerRsp `protobuf:"bytes,11,rep,name=players,proto3" json:"players,omitempty"`
  2249. }
  2250. func (x *MoveRsp) Reset() {
  2251. *x = MoveRsp{}
  2252. if protoimpl.UnsafeEnabled {
  2253. mi := &file_Message_proto_msgTypes[37]
  2254. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2255. ms.StoreMessageInfo(mi)
  2256. }
  2257. }
  2258. func (x *MoveRsp) String() string {
  2259. return protoimpl.X.MessageStringOf(x)
  2260. }
  2261. func (*MoveRsp) ProtoMessage() {}
  2262. func (x *MoveRsp) ProtoReflect() protoreflect.Message {
  2263. mi := &file_Message_proto_msgTypes[37]
  2264. if protoimpl.UnsafeEnabled && x != nil {
  2265. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2266. if ms.LoadMessageInfo() == nil {
  2267. ms.StoreMessageInfo(mi)
  2268. }
  2269. return ms
  2270. }
  2271. return mi.MessageOf(x)
  2272. }
  2273. // Deprecated: Use MoveRsp.ProtoReflect.Descriptor instead.
  2274. func (*MoveRsp) Descriptor() ([]byte, []int) {
  2275. return file_Message_proto_rawDescGZIP(), []int{37}
  2276. }
  2277. func (x *MoveRsp) GetResult() uint32 {
  2278. if x != nil && x.Result != nil {
  2279. return *x.Result
  2280. }
  2281. return 0
  2282. }
  2283. func (x *MoveRsp) GetSeatID() uint32 {
  2284. if x != nil && x.SeatID != nil {
  2285. return *x.SeatID
  2286. }
  2287. return 0
  2288. }
  2289. func (x *MoveRsp) GetPlaneID() string {
  2290. if x != nil {
  2291. return x.PlaneID
  2292. }
  2293. return ""
  2294. }
  2295. func (x *MoveRsp) GetStep() uint32 {
  2296. if x != nil && x.Step != nil {
  2297. return *x.Step
  2298. }
  2299. return 0
  2300. }
  2301. func (x *MoveRsp) GetCurPosIndex() uint32 {
  2302. if x != nil && x.CurPosIndex != nil {
  2303. return *x.CurPosIndex
  2304. }
  2305. return 0
  2306. }
  2307. func (x *MoveRsp) GetNextTurn() uint32 {
  2308. if x != nil && x.NextTurn != nil {
  2309. return *x.NextTurn
  2310. }
  2311. return 0
  2312. }
  2313. func (x *MoveRsp) GetHasWin() uint32 {
  2314. if x != nil && x.HasWin != nil {
  2315. return *x.HasWin
  2316. }
  2317. return 0
  2318. }
  2319. func (x *MoveRsp) GetPlayerNum() uint32 {
  2320. if x != nil {
  2321. return x.PlayerNum
  2322. }
  2323. return 0
  2324. }
  2325. func (x *MoveRsp) GetFinishEvent() *FinishEventRsp {
  2326. if x != nil {
  2327. return x.FinishEvent
  2328. }
  2329. return nil
  2330. }
  2331. func (x *MoveRsp) GetTKickEvent() *TKickEventRsp {
  2332. if x != nil {
  2333. return x.TKickEvent
  2334. }
  2335. return nil
  2336. }
  2337. func (x *MoveRsp) GetPlayers() []*PlayerRsp {
  2338. if x != nil {
  2339. return x.Players
  2340. }
  2341. return nil
  2342. }
  2343. // 9,客户端请求托管
  2344. type TrusteeshipReq struct {
  2345. state protoimpl.MessageState
  2346. sizeCache protoimpl.SizeCache
  2347. unknownFields protoimpl.UnknownFields
  2348. Trust bool `protobuf:"varint,1,opt,name=trust,proto3" json:"trust,omitempty"` //true表示托管,2表示不托管
  2349. }
  2350. func (x *TrusteeshipReq) Reset() {
  2351. *x = TrusteeshipReq{}
  2352. if protoimpl.UnsafeEnabled {
  2353. mi := &file_Message_proto_msgTypes[38]
  2354. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2355. ms.StoreMessageInfo(mi)
  2356. }
  2357. }
  2358. func (x *TrusteeshipReq) String() string {
  2359. return protoimpl.X.MessageStringOf(x)
  2360. }
  2361. func (*TrusteeshipReq) ProtoMessage() {}
  2362. func (x *TrusteeshipReq) ProtoReflect() protoreflect.Message {
  2363. mi := &file_Message_proto_msgTypes[38]
  2364. if protoimpl.UnsafeEnabled && x != nil {
  2365. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2366. if ms.LoadMessageInfo() == nil {
  2367. ms.StoreMessageInfo(mi)
  2368. }
  2369. return ms
  2370. }
  2371. return mi.MessageOf(x)
  2372. }
  2373. // Deprecated: Use TrusteeshipReq.ProtoReflect.Descriptor instead.
  2374. func (*TrusteeshipReq) Descriptor() ([]byte, []int) {
  2375. return file_Message_proto_rawDescGZIP(), []int{38}
  2376. }
  2377. func (x *TrusteeshipReq) GetTrust() bool {
  2378. if x != nil {
  2379. return x.Trust
  2380. }
  2381. return false
  2382. }
  2383. // 8,通知玩家托管
  2384. type TrusteeshipRsp struct {
  2385. state protoimpl.MessageState
  2386. sizeCache protoimpl.SizeCache
  2387. unknownFields protoimpl.UnknownFields
  2388. Trust bool `protobuf:"varint,1,opt,name=trust,proto3" json:"trust,omitempty"` //true表示托管,false表示不托管
  2389. SeatID *uint32 `protobuf:"varint,2,opt,name=seatID,proto3,oneof" json:"seatID,omitempty"` //座位id
  2390. }
  2391. func (x *TrusteeshipRsp) Reset() {
  2392. *x = TrusteeshipRsp{}
  2393. if protoimpl.UnsafeEnabled {
  2394. mi := &file_Message_proto_msgTypes[39]
  2395. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2396. ms.StoreMessageInfo(mi)
  2397. }
  2398. }
  2399. func (x *TrusteeshipRsp) String() string {
  2400. return protoimpl.X.MessageStringOf(x)
  2401. }
  2402. func (*TrusteeshipRsp) ProtoMessage() {}
  2403. func (x *TrusteeshipRsp) ProtoReflect() protoreflect.Message {
  2404. mi := &file_Message_proto_msgTypes[39]
  2405. if protoimpl.UnsafeEnabled && x != nil {
  2406. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2407. if ms.LoadMessageInfo() == nil {
  2408. ms.StoreMessageInfo(mi)
  2409. }
  2410. return ms
  2411. }
  2412. return mi.MessageOf(x)
  2413. }
  2414. // Deprecated: Use TrusteeshipRsp.ProtoReflect.Descriptor instead.
  2415. func (*TrusteeshipRsp) Descriptor() ([]byte, []int) {
  2416. return file_Message_proto_rawDescGZIP(), []int{39}
  2417. }
  2418. func (x *TrusteeshipRsp) GetTrust() bool {
  2419. if x != nil {
  2420. return x.Trust
  2421. }
  2422. return false
  2423. }
  2424. func (x *TrusteeshipRsp) GetSeatID() uint32 {
  2425. if x != nil && x.SeatID != nil {
  2426. return *x.SeatID
  2427. }
  2428. return 0
  2429. }
  2430. // 退出游戏请求
  2431. type QuitReq struct {
  2432. state protoimpl.MessageState
  2433. sizeCache protoimpl.SizeCache
  2434. unknownFields protoimpl.UnknownFields
  2435. }
  2436. func (x *QuitReq) Reset() {
  2437. *x = QuitReq{}
  2438. if protoimpl.UnsafeEnabled {
  2439. mi := &file_Message_proto_msgTypes[40]
  2440. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2441. ms.StoreMessageInfo(mi)
  2442. }
  2443. }
  2444. func (x *QuitReq) String() string {
  2445. return protoimpl.X.MessageStringOf(x)
  2446. }
  2447. func (*QuitReq) ProtoMessage() {}
  2448. func (x *QuitReq) ProtoReflect() protoreflect.Message {
  2449. mi := &file_Message_proto_msgTypes[40]
  2450. if protoimpl.UnsafeEnabled && x != nil {
  2451. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2452. if ms.LoadMessageInfo() == nil {
  2453. ms.StoreMessageInfo(mi)
  2454. }
  2455. return ms
  2456. }
  2457. return mi.MessageOf(x)
  2458. }
  2459. // Deprecated: Use QuitReq.ProtoReflect.Descriptor instead.
  2460. func (*QuitReq) Descriptor() ([]byte, []int) {
  2461. return file_Message_proto_rawDescGZIP(), []int{40}
  2462. }
  2463. // 通知玩家退出游戏,直接剔除这个玩家
  2464. type QuitRsp struct {
  2465. state protoimpl.MessageState
  2466. sizeCache protoimpl.SizeCache
  2467. unknownFields protoimpl.UnknownFields
  2468. PlayerStatus uint32 `protobuf:"varint,1,opt,name=playerStatus,proto3" json:"playerStatus,omitempty"` // 玩家的当前状态, 0、1 表示空位无玩家,2: sitdown, 3: ready, 4: play, 5: 胜利后观战, 6: 胜利后离开,7: 组队逃跑,8: 逃跑 10,观战玩家
  2469. SeatID *uint32 `protobuf:"varint,2,opt,name=seatID,proto3,oneof" json:"seatID,omitempty"` //座位号
  2470. NextTurn *uint32 `protobuf:"varint,3,opt,name=nextTurn,proto3,oneof" json:"nextTurn,omitempty"` //下一个座位号
  2471. Uid string `protobuf:"bytes,4,opt,name=uid,proto3" json:"uid,omitempty"` //用户id
  2472. }
  2473. func (x *QuitRsp) Reset() {
  2474. *x = QuitRsp{}
  2475. if protoimpl.UnsafeEnabled {
  2476. mi := &file_Message_proto_msgTypes[41]
  2477. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2478. ms.StoreMessageInfo(mi)
  2479. }
  2480. }
  2481. func (x *QuitRsp) String() string {
  2482. return protoimpl.X.MessageStringOf(x)
  2483. }
  2484. func (*QuitRsp) ProtoMessage() {}
  2485. func (x *QuitRsp) ProtoReflect() protoreflect.Message {
  2486. mi := &file_Message_proto_msgTypes[41]
  2487. if protoimpl.UnsafeEnabled && x != nil {
  2488. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2489. if ms.LoadMessageInfo() == nil {
  2490. ms.StoreMessageInfo(mi)
  2491. }
  2492. return ms
  2493. }
  2494. return mi.MessageOf(x)
  2495. }
  2496. // Deprecated: Use QuitRsp.ProtoReflect.Descriptor instead.
  2497. func (*QuitRsp) Descriptor() ([]byte, []int) {
  2498. return file_Message_proto_rawDescGZIP(), []int{41}
  2499. }
  2500. func (x *QuitRsp) GetPlayerStatus() uint32 {
  2501. if x != nil {
  2502. return x.PlayerStatus
  2503. }
  2504. return 0
  2505. }
  2506. func (x *QuitRsp) GetSeatID() uint32 {
  2507. if x != nil && x.SeatID != nil {
  2508. return *x.SeatID
  2509. }
  2510. return 0
  2511. }
  2512. func (x *QuitRsp) GetNextTurn() uint32 {
  2513. if x != nil && x.NextTurn != nil {
  2514. return *x.NextTurn
  2515. }
  2516. return 0
  2517. }
  2518. func (x *QuitRsp) GetUid() string {
  2519. if x != nil {
  2520. return x.Uid
  2521. }
  2522. return ""
  2523. }
  2524. // 通知玩家游戏结束
  2525. type EndGameRsp struct {
  2526. state protoimpl.MessageState
  2527. sizeCache protoimpl.SizeCache
  2528. unknownFields protoimpl.UnknownFields
  2529. SeatID []uint32 `protobuf:"varint,1,rep,packed,name=seatID,proto3" json:"seatID,omitempty"` //座位号
  2530. PlayerStatus []string `protobuf:"bytes,2,rep,name=playerStatus,proto3" json:"playerStatus,omitempty"` //玩家状态
  2531. Kick []uint32 `protobuf:"varint,3,rep,packed,name=kick,proto3" json:"kick,omitempty"` //- 玩家当局撞棋数量
  2532. BeKick []uint32 `protobuf:"varint,4,rep,packed,name=beKick,proto3" json:"beKick,omitempty"` //- 玩家当局被撞棋数量
  2533. Money []uint32 `protobuf:"varint,5,rep,packed,name=money,proto3" json:"money,omitempty"` //- 胜方当局赢得金额
  2534. }
  2535. func (x *EndGameRsp) Reset() {
  2536. *x = EndGameRsp{}
  2537. if protoimpl.UnsafeEnabled {
  2538. mi := &file_Message_proto_msgTypes[42]
  2539. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2540. ms.StoreMessageInfo(mi)
  2541. }
  2542. }
  2543. func (x *EndGameRsp) String() string {
  2544. return protoimpl.X.MessageStringOf(x)
  2545. }
  2546. func (*EndGameRsp) ProtoMessage() {}
  2547. func (x *EndGameRsp) ProtoReflect() protoreflect.Message {
  2548. mi := &file_Message_proto_msgTypes[42]
  2549. if protoimpl.UnsafeEnabled && x != nil {
  2550. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2551. if ms.LoadMessageInfo() == nil {
  2552. ms.StoreMessageInfo(mi)
  2553. }
  2554. return ms
  2555. }
  2556. return mi.MessageOf(x)
  2557. }
  2558. // Deprecated: Use EndGameRsp.ProtoReflect.Descriptor instead.
  2559. func (*EndGameRsp) Descriptor() ([]byte, []int) {
  2560. return file_Message_proto_rawDescGZIP(), []int{42}
  2561. }
  2562. func (x *EndGameRsp) GetSeatID() []uint32 {
  2563. if x != nil {
  2564. return x.SeatID
  2565. }
  2566. return nil
  2567. }
  2568. func (x *EndGameRsp) GetPlayerStatus() []string {
  2569. if x != nil {
  2570. return x.PlayerStatus
  2571. }
  2572. return nil
  2573. }
  2574. func (x *EndGameRsp) GetKick() []uint32 {
  2575. if x != nil {
  2576. return x.Kick
  2577. }
  2578. return nil
  2579. }
  2580. func (x *EndGameRsp) GetBeKick() []uint32 {
  2581. if x != nil {
  2582. return x.BeKick
  2583. }
  2584. return nil
  2585. }
  2586. func (x *EndGameRsp) GetMoney() []uint32 {
  2587. if x != nil {
  2588. return x.Money
  2589. }
  2590. return nil
  2591. }
  2592. // 拉房失败解散游戏
  2593. type DissolveTheGameReq struct {
  2594. state protoimpl.MessageState
  2595. sizeCache protoimpl.SizeCache
  2596. unknownFields protoimpl.UnknownFields
  2597. }
  2598. func (x *DissolveTheGameReq) Reset() {
  2599. *x = DissolveTheGameReq{}
  2600. if protoimpl.UnsafeEnabled {
  2601. mi := &file_Message_proto_msgTypes[43]
  2602. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2603. ms.StoreMessageInfo(mi)
  2604. }
  2605. }
  2606. func (x *DissolveTheGameReq) String() string {
  2607. return protoimpl.X.MessageStringOf(x)
  2608. }
  2609. func (*DissolveTheGameReq) ProtoMessage() {}
  2610. func (x *DissolveTheGameReq) ProtoReflect() protoreflect.Message {
  2611. mi := &file_Message_proto_msgTypes[43]
  2612. if protoimpl.UnsafeEnabled && x != nil {
  2613. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2614. if ms.LoadMessageInfo() == nil {
  2615. ms.StoreMessageInfo(mi)
  2616. }
  2617. return ms
  2618. }
  2619. return mi.MessageOf(x)
  2620. }
  2621. // Deprecated: Use DissolveTheGameReq.ProtoReflect.Descriptor instead.
  2622. func (*DissolveTheGameReq) Descriptor() ([]byte, []int) {
  2623. return file_Message_proto_rawDescGZIP(), []int{43}
  2624. }
  2625. // 拉房失败解散游戏
  2626. type DissolveTheGameRsp struct {
  2627. state protoimpl.MessageState
  2628. sizeCache protoimpl.SizeCache
  2629. unknownFields protoimpl.UnknownFields
  2630. }
  2631. func (x *DissolveTheGameRsp) Reset() {
  2632. *x = DissolveTheGameRsp{}
  2633. if protoimpl.UnsafeEnabled {
  2634. mi := &file_Message_proto_msgTypes[44]
  2635. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2636. ms.StoreMessageInfo(mi)
  2637. }
  2638. }
  2639. func (x *DissolveTheGameRsp) String() string {
  2640. return protoimpl.X.MessageStringOf(x)
  2641. }
  2642. func (*DissolveTheGameRsp) ProtoMessage() {}
  2643. func (x *DissolveTheGameRsp) ProtoReflect() protoreflect.Message {
  2644. mi := &file_Message_proto_msgTypes[44]
  2645. if protoimpl.UnsafeEnabled && x != nil {
  2646. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2647. if ms.LoadMessageInfo() == nil {
  2648. ms.StoreMessageInfo(mi)
  2649. }
  2650. return ms
  2651. }
  2652. return mi.MessageOf(x)
  2653. }
  2654. // Deprecated: Use DissolveTheGameRsp.ProtoReflect.Descriptor instead.
  2655. func (*DissolveTheGameRsp) Descriptor() ([]byte, []int) {
  2656. return file_Message_proto_rawDescGZIP(), []int{44}
  2657. }
  2658. // pb解析失败
  2659. type PbErrorRsp struct {
  2660. state protoimpl.MessageState
  2661. sizeCache protoimpl.SizeCache
  2662. unknownFields protoimpl.UnknownFields
  2663. MessageData string `protobuf:"bytes,1,opt,name=messageData,proto3" json:"messageData,omitempty"` //错误信息
  2664. }
  2665. func (x *PbErrorRsp) Reset() {
  2666. *x = PbErrorRsp{}
  2667. if protoimpl.UnsafeEnabled {
  2668. mi := &file_Message_proto_msgTypes[45]
  2669. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2670. ms.StoreMessageInfo(mi)
  2671. }
  2672. }
  2673. func (x *PbErrorRsp) String() string {
  2674. return protoimpl.X.MessageStringOf(x)
  2675. }
  2676. func (*PbErrorRsp) ProtoMessage() {}
  2677. func (x *PbErrorRsp) ProtoReflect() protoreflect.Message {
  2678. mi := &file_Message_proto_msgTypes[45]
  2679. if protoimpl.UnsafeEnabled && x != nil {
  2680. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2681. if ms.LoadMessageInfo() == nil {
  2682. ms.StoreMessageInfo(mi)
  2683. }
  2684. return ms
  2685. }
  2686. return mi.MessageOf(x)
  2687. }
  2688. // Deprecated: Use PbErrorRsp.ProtoReflect.Descriptor instead.
  2689. func (*PbErrorRsp) Descriptor() ([]byte, []int) {
  2690. return file_Message_proto_rawDescGZIP(), []int{45}
  2691. }
  2692. func (x *PbErrorRsp) GetMessageData() string {
  2693. if x != nil {
  2694. return x.MessageData
  2695. }
  2696. return ""
  2697. }
  2698. // //////////////////////////房间消息//////////////////////////////
  2699. // 拉取房间列表 C->S, Cmd.MSGID_Get_Room_List
  2700. type GetRoomListReq struct {
  2701. state protoimpl.MessageState
  2702. sizeCache protoimpl.SizeCache
  2703. unknownFields protoimpl.UnknownFields
  2704. }
  2705. func (x *GetRoomListReq) Reset() {
  2706. *x = GetRoomListReq{}
  2707. if protoimpl.UnsafeEnabled {
  2708. mi := &file_Message_proto_msgTypes[46]
  2709. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2710. ms.StoreMessageInfo(mi)
  2711. }
  2712. }
  2713. func (x *GetRoomListReq) String() string {
  2714. return protoimpl.X.MessageStringOf(x)
  2715. }
  2716. func (*GetRoomListReq) ProtoMessage() {}
  2717. func (x *GetRoomListReq) ProtoReflect() protoreflect.Message {
  2718. mi := &file_Message_proto_msgTypes[46]
  2719. if protoimpl.UnsafeEnabled && x != nil {
  2720. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2721. if ms.LoadMessageInfo() == nil {
  2722. ms.StoreMessageInfo(mi)
  2723. }
  2724. return ms
  2725. }
  2726. return mi.MessageOf(x)
  2727. }
  2728. // Deprecated: Use GetRoomListReq.ProtoReflect.Descriptor instead.
  2729. func (*GetRoomListReq) Descriptor() ([]byte, []int) {
  2730. return file_Message_proto_rawDescGZIP(), []int{46}
  2731. }
  2732. // 拉取房间列表 S->C, Cmd.MSGID_Get_Room_List
  2733. type GetRoomListRsp struct {
  2734. state protoimpl.MessageState
  2735. sizeCache protoimpl.SizeCache
  2736. unknownFields protoimpl.UnknownFields
  2737. Result uint32 `protobuf:"varint,1,opt,name=result,proto3" json:"result,omitempty"` //结果
  2738. }
  2739. func (x *GetRoomListRsp) Reset() {
  2740. *x = GetRoomListRsp{}
  2741. if protoimpl.UnsafeEnabled {
  2742. mi := &file_Message_proto_msgTypes[47]
  2743. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2744. ms.StoreMessageInfo(mi)
  2745. }
  2746. }
  2747. func (x *GetRoomListRsp) String() string {
  2748. return protoimpl.X.MessageStringOf(x)
  2749. }
  2750. func (*GetRoomListRsp) ProtoMessage() {}
  2751. func (x *GetRoomListRsp) ProtoReflect() protoreflect.Message {
  2752. mi := &file_Message_proto_msgTypes[47]
  2753. if protoimpl.UnsafeEnabled && x != nil {
  2754. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2755. if ms.LoadMessageInfo() == nil {
  2756. ms.StoreMessageInfo(mi)
  2757. }
  2758. return ms
  2759. }
  2760. return mi.MessageOf(x)
  2761. }
  2762. // Deprecated: Use GetRoomListRsp.ProtoReflect.Descriptor instead.
  2763. func (*GetRoomListRsp) Descriptor() ([]byte, []int) {
  2764. return file_Message_proto_rawDescGZIP(), []int{47}
  2765. }
  2766. func (x *GetRoomListRsp) GetResult() uint32 {
  2767. if x != nil {
  2768. return x.Result
  2769. }
  2770. return 0
  2771. }
  2772. // 踢人通知 S->C, Cmd.MSGID_Kick_Notify
  2773. type KickNotify struct {
  2774. state protoimpl.MessageState
  2775. sizeCache protoimpl.SizeCache
  2776. unknownFields protoimpl.UnknownFields
  2777. Reason uint32 `protobuf:"varint,1,opt,name=reason,proto3" json:"reason,omitempty"`
  2778. }
  2779. func (x *KickNotify) Reset() {
  2780. *x = KickNotify{}
  2781. if protoimpl.UnsafeEnabled {
  2782. mi := &file_Message_proto_msgTypes[48]
  2783. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2784. ms.StoreMessageInfo(mi)
  2785. }
  2786. }
  2787. func (x *KickNotify) String() string {
  2788. return protoimpl.X.MessageStringOf(x)
  2789. }
  2790. func (*KickNotify) ProtoMessage() {}
  2791. func (x *KickNotify) ProtoReflect() protoreflect.Message {
  2792. mi := &file_Message_proto_msgTypes[48]
  2793. if protoimpl.UnsafeEnabled && x != nil {
  2794. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2795. if ms.LoadMessageInfo() == nil {
  2796. ms.StoreMessageInfo(mi)
  2797. }
  2798. return ms
  2799. }
  2800. return mi.MessageOf(x)
  2801. }
  2802. // Deprecated: Use KickNotify.ProtoReflect.Descriptor instead.
  2803. func (*KickNotify) Descriptor() ([]byte, []int) {
  2804. return file_Message_proto_rawDescGZIP(), []int{48}
  2805. }
  2806. func (x *KickNotify) GetReason() uint32 {
  2807. if x != nil {
  2808. return x.Reason
  2809. }
  2810. return 0
  2811. }
  2812. // 退出客户端房主变更
  2813. type RoomChangeOfHomeownerRsp struct {
  2814. state protoimpl.MessageState
  2815. sizeCache protoimpl.SizeCache
  2816. unknownFields protoimpl.UnknownFields
  2817. Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"` //玩家ID
  2818. }
  2819. func (x *RoomChangeOfHomeownerRsp) Reset() {
  2820. *x = RoomChangeOfHomeownerRsp{}
  2821. if protoimpl.UnsafeEnabled {
  2822. mi := &file_Message_proto_msgTypes[49]
  2823. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2824. ms.StoreMessageInfo(mi)
  2825. }
  2826. }
  2827. func (x *RoomChangeOfHomeownerRsp) String() string {
  2828. return protoimpl.X.MessageStringOf(x)
  2829. }
  2830. func (*RoomChangeOfHomeownerRsp) ProtoMessage() {}
  2831. func (x *RoomChangeOfHomeownerRsp) ProtoReflect() protoreflect.Message {
  2832. mi := &file_Message_proto_msgTypes[49]
  2833. if protoimpl.UnsafeEnabled && x != nil {
  2834. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2835. if ms.LoadMessageInfo() == nil {
  2836. ms.StoreMessageInfo(mi)
  2837. }
  2838. return ms
  2839. }
  2840. return mi.MessageOf(x)
  2841. }
  2842. // Deprecated: Use RoomChangeOfHomeownerRsp.ProtoReflect.Descriptor instead.
  2843. func (*RoomChangeOfHomeownerRsp) Descriptor() ([]byte, []int) {
  2844. return file_Message_proto_rawDescGZIP(), []int{49}
  2845. }
  2846. func (x *RoomChangeOfHomeownerRsp) GetUid() string {
  2847. if x != nil {
  2848. return x.Uid
  2849. }
  2850. return ""
  2851. }
  2852. type GetUserMoneyReq struct {
  2853. state protoimpl.MessageState
  2854. sizeCache protoimpl.SizeCache
  2855. unknownFields protoimpl.UnknownFields
  2856. Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"` //玩家ID
  2857. }
  2858. func (x *GetUserMoneyReq) Reset() {
  2859. *x = GetUserMoneyReq{}
  2860. if protoimpl.UnsafeEnabled {
  2861. mi := &file_Message_proto_msgTypes[50]
  2862. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2863. ms.StoreMessageInfo(mi)
  2864. }
  2865. }
  2866. func (x *GetUserMoneyReq) String() string {
  2867. return protoimpl.X.MessageStringOf(x)
  2868. }
  2869. func (*GetUserMoneyReq) ProtoMessage() {}
  2870. func (x *GetUserMoneyReq) ProtoReflect() protoreflect.Message {
  2871. mi := &file_Message_proto_msgTypes[50]
  2872. if protoimpl.UnsafeEnabled && x != nil {
  2873. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2874. if ms.LoadMessageInfo() == nil {
  2875. ms.StoreMessageInfo(mi)
  2876. }
  2877. return ms
  2878. }
  2879. return mi.MessageOf(x)
  2880. }
  2881. // Deprecated: Use GetUserMoneyReq.ProtoReflect.Descriptor instead.
  2882. func (*GetUserMoneyReq) Descriptor() ([]byte, []int) {
  2883. return file_Message_proto_rawDescGZIP(), []int{50}
  2884. }
  2885. func (x *GetUserMoneyReq) GetUid() string {
  2886. if x != nil {
  2887. return x.Uid
  2888. }
  2889. return ""
  2890. }
  2891. type GetUserMoneyRsp struct {
  2892. state protoimpl.MessageState
  2893. sizeCache protoimpl.SizeCache
  2894. unknownFields protoimpl.UnknownFields
  2895. Money *uint32 `protobuf:"varint,1,opt,name=money,proto3,oneof" json:"money,omitempty"` //玩家金币
  2896. }
  2897. func (x *GetUserMoneyRsp) Reset() {
  2898. *x = GetUserMoneyRsp{}
  2899. if protoimpl.UnsafeEnabled {
  2900. mi := &file_Message_proto_msgTypes[51]
  2901. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2902. ms.StoreMessageInfo(mi)
  2903. }
  2904. }
  2905. func (x *GetUserMoneyRsp) String() string {
  2906. return protoimpl.X.MessageStringOf(x)
  2907. }
  2908. func (*GetUserMoneyRsp) ProtoMessage() {}
  2909. func (x *GetUserMoneyRsp) ProtoReflect() protoreflect.Message {
  2910. mi := &file_Message_proto_msgTypes[51]
  2911. if protoimpl.UnsafeEnabled && x != nil {
  2912. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2913. if ms.LoadMessageInfo() == nil {
  2914. ms.StoreMessageInfo(mi)
  2915. }
  2916. return ms
  2917. }
  2918. return mi.MessageOf(x)
  2919. }
  2920. // Deprecated: Use GetUserMoneyRsp.ProtoReflect.Descriptor instead.
  2921. func (*GetUserMoneyRsp) Descriptor() ([]byte, []int) {
  2922. return file_Message_proto_rawDescGZIP(), []int{51}
  2923. }
  2924. func (x *GetUserMoneyRsp) GetMoney() uint32 {
  2925. if x != nil && x.Money != nil {
  2926. return *x.Money
  2927. }
  2928. return 0
  2929. }
  2930. type DiscReq struct {
  2931. state protoimpl.MessageState
  2932. sizeCache protoimpl.SizeCache
  2933. unknownFields protoimpl.UnknownFields
  2934. Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"` //玩家ID
  2935. RoomId uint32 `protobuf:"varint,2,opt,name=roomId,proto3" json:"roomId,omitempty"` //房间ID
  2936. }
  2937. func (x *DiscReq) Reset() {
  2938. *x = DiscReq{}
  2939. if protoimpl.UnsafeEnabled {
  2940. mi := &file_Message_proto_msgTypes[52]
  2941. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2942. ms.StoreMessageInfo(mi)
  2943. }
  2944. }
  2945. func (x *DiscReq) String() string {
  2946. return protoimpl.X.MessageStringOf(x)
  2947. }
  2948. func (*DiscReq) ProtoMessage() {}
  2949. func (x *DiscReq) ProtoReflect() protoreflect.Message {
  2950. mi := &file_Message_proto_msgTypes[52]
  2951. if protoimpl.UnsafeEnabled && x != nil {
  2952. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2953. if ms.LoadMessageInfo() == nil {
  2954. ms.StoreMessageInfo(mi)
  2955. }
  2956. return ms
  2957. }
  2958. return mi.MessageOf(x)
  2959. }
  2960. // Deprecated: Use DiscReq.ProtoReflect.Descriptor instead.
  2961. func (*DiscReq) Descriptor() ([]byte, []int) {
  2962. return file_Message_proto_rawDescGZIP(), []int{52}
  2963. }
  2964. func (x *DiscReq) GetUid() string {
  2965. if x != nil {
  2966. return x.Uid
  2967. }
  2968. return ""
  2969. }
  2970. func (x *DiscReq) GetRoomId() uint32 {
  2971. if x != nil {
  2972. return x.RoomId
  2973. }
  2974. return 0
  2975. }
  2976. type RoomQuitReq struct {
  2977. state protoimpl.MessageState
  2978. sizeCache protoimpl.SizeCache
  2979. unknownFields protoimpl.UnknownFields
  2980. }
  2981. func (x *RoomQuitReq) Reset() {
  2982. *x = RoomQuitReq{}
  2983. if protoimpl.UnsafeEnabled {
  2984. mi := &file_Message_proto_msgTypes[53]
  2985. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2986. ms.StoreMessageInfo(mi)
  2987. }
  2988. }
  2989. func (x *RoomQuitReq) String() string {
  2990. return protoimpl.X.MessageStringOf(x)
  2991. }
  2992. func (*RoomQuitReq) ProtoMessage() {}
  2993. func (x *RoomQuitReq) ProtoReflect() protoreflect.Message {
  2994. mi := &file_Message_proto_msgTypes[53]
  2995. if protoimpl.UnsafeEnabled && x != nil {
  2996. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2997. if ms.LoadMessageInfo() == nil {
  2998. ms.StoreMessageInfo(mi)
  2999. }
  3000. return ms
  3001. }
  3002. return mi.MessageOf(x)
  3003. }
  3004. // Deprecated: Use RoomQuitReq.ProtoReflect.Descriptor instead.
  3005. func (*RoomQuitReq) Descriptor() ([]byte, []int) {
  3006. return file_Message_proto_rawDescGZIP(), []int{53}
  3007. }
  3008. type RoomRestartReq struct {
  3009. state protoimpl.MessageState
  3010. sizeCache protoimpl.SizeCache
  3011. unknownFields protoimpl.UnknownFields
  3012. }
  3013. func (x *RoomRestartReq) Reset() {
  3014. *x = RoomRestartReq{}
  3015. if protoimpl.UnsafeEnabled {
  3016. mi := &file_Message_proto_msgTypes[54]
  3017. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3018. ms.StoreMessageInfo(mi)
  3019. }
  3020. }
  3021. func (x *RoomRestartReq) String() string {
  3022. return protoimpl.X.MessageStringOf(x)
  3023. }
  3024. func (*RoomRestartReq) ProtoMessage() {}
  3025. func (x *RoomRestartReq) ProtoReflect() protoreflect.Message {
  3026. mi := &file_Message_proto_msgTypes[54]
  3027. if protoimpl.UnsafeEnabled && x != nil {
  3028. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3029. if ms.LoadMessageInfo() == nil {
  3030. ms.StoreMessageInfo(mi)
  3031. }
  3032. return ms
  3033. }
  3034. return mi.MessageOf(x)
  3035. }
  3036. // Deprecated: Use RoomRestartReq.ProtoReflect.Descriptor instead.
  3037. func (*RoomRestartReq) Descriptor() ([]byte, []int) {
  3038. return file_Message_proto_rawDescGZIP(), []int{54}
  3039. }
  3040. type SendMsgReq struct {
  3041. state protoimpl.MessageState
  3042. sizeCache protoimpl.SizeCache
  3043. unknownFields protoimpl.UnknownFields
  3044. Data string `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"` //消息数据
  3045. }
  3046. func (x *SendMsgReq) Reset() {
  3047. *x = SendMsgReq{}
  3048. if protoimpl.UnsafeEnabled {
  3049. mi := &file_Message_proto_msgTypes[55]
  3050. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3051. ms.StoreMessageInfo(mi)
  3052. }
  3053. }
  3054. func (x *SendMsgReq) String() string {
  3055. return protoimpl.X.MessageStringOf(x)
  3056. }
  3057. func (*SendMsgReq) ProtoMessage() {}
  3058. func (x *SendMsgReq) ProtoReflect() protoreflect.Message {
  3059. mi := &file_Message_proto_msgTypes[55]
  3060. if protoimpl.UnsafeEnabled && x != nil {
  3061. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3062. if ms.LoadMessageInfo() == nil {
  3063. ms.StoreMessageInfo(mi)
  3064. }
  3065. return ms
  3066. }
  3067. return mi.MessageOf(x)
  3068. }
  3069. // Deprecated: Use SendMsgReq.ProtoReflect.Descriptor instead.
  3070. func (*SendMsgReq) Descriptor() ([]byte, []int) {
  3071. return file_Message_proto_rawDescGZIP(), []int{55}
  3072. }
  3073. func (x *SendMsgReq) GetData() string {
  3074. if x != nil {
  3075. return x.Data
  3076. }
  3077. return ""
  3078. }
  3079. type SendMsgRsp struct {
  3080. state protoimpl.MessageState
  3081. sizeCache protoimpl.SizeCache
  3082. unknownFields protoimpl.UnknownFields
  3083. Data string `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"` //消息数据
  3084. Uid string `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"` //消息数据
  3085. }
  3086. func (x *SendMsgRsp) Reset() {
  3087. *x = SendMsgRsp{}
  3088. if protoimpl.UnsafeEnabled {
  3089. mi := &file_Message_proto_msgTypes[56]
  3090. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3091. ms.StoreMessageInfo(mi)
  3092. }
  3093. }
  3094. func (x *SendMsgRsp) String() string {
  3095. return protoimpl.X.MessageStringOf(x)
  3096. }
  3097. func (*SendMsgRsp) ProtoMessage() {}
  3098. func (x *SendMsgRsp) ProtoReflect() protoreflect.Message {
  3099. mi := &file_Message_proto_msgTypes[56]
  3100. if protoimpl.UnsafeEnabled && x != nil {
  3101. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3102. if ms.LoadMessageInfo() == nil {
  3103. ms.StoreMessageInfo(mi)
  3104. }
  3105. return ms
  3106. }
  3107. return mi.MessageOf(x)
  3108. }
  3109. // Deprecated: Use SendMsgRsp.ProtoReflect.Descriptor instead.
  3110. func (*SendMsgRsp) Descriptor() ([]byte, []int) {
  3111. return file_Message_proto_rawDescGZIP(), []int{56}
  3112. }
  3113. func (x *SendMsgRsp) GetData() string {
  3114. if x != nil {
  3115. return x.Data
  3116. }
  3117. return ""
  3118. }
  3119. func (x *SendMsgRsp) GetUid() string {
  3120. if x != nil {
  3121. return x.Uid
  3122. }
  3123. return ""
  3124. }
  3125. var File_Message_proto protoreflect.FileDescriptor
  3126. var file_Message_proto_rawDesc = []byte{
  3127. 0x0a, 0x0d, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
  3128. 0x09, 0x42, 0x42, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x0f, 0x0a, 0x0d, 0x48, 0x65,
  3129. 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x50, 0x75, 0x73, 0x68, 0x22, 0x34, 0x0a, 0x08, 0x4c,
  3130. 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01,
  3131. 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x73,
  3132. 0x73, 0x57, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x73, 0x73, 0x57,
  3133. 0x64, 0x22, 0x54, 0x0a, 0x08, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x73, 0x70, 0x12, 0x16, 0x0a,
  3134. 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x72,
  3135. 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49,
  3136. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49,
  3137. 0x64, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x73, 0x4e, 0x65, 0x77, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08,
  3138. 0x52, 0x05, 0x69, 0x73, 0x4e, 0x65, 0x77, 0x22, 0x96, 0x02, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61,
  3139. 0x74, 0x65, 0x47, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6d, 0x6f, 0x64,
  3140. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x6d, 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x0a,
  3141. 0x09, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d,
  3142. 0x52, 0x09, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x12, 0x22, 0x0a, 0x0c, 0x61,
  3143. 0x64, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  3144. 0x0d, 0x52, 0x0c, 0x61, 0x64, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x12,
  3145. 0x16, 0x0a, 0x06, 0x69, 0x73, 0x52, 0x6f, 0x6f, 0x6d, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52,
  3146. 0x06, 0x69, 0x73, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x05,
  3147. 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
  3148. 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a,
  3149. 0x07, 0x68, 0x65, 0x61, 0x64, 0x49, 0x6d, 0x67, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  3150. 0x68, 0x65, 0x61, 0x64, 0x49, 0x6d, 0x67, 0x12, 0x19, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79,
  3151. 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x88,
  3152. 0x01, 0x01, 0x12, 0x23, 0x0a, 0x0a, 0x63, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x64,
  3153. 0x18, 0x09, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x01, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x74, 0x52, 0x6f,
  3154. 0x6f, 0x6d, 0x49, 0x64, 0x88, 0x01, 0x01, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x6d, 0x6f, 0x6e, 0x65,
  3155. 0x79, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x63, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x64,
  3156. 0x22, 0x9c, 0x01, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x47, 0x61, 0x6d, 0x65, 0x52,
  3157. 0x73, 0x70, 0x12, 0x1b, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  3158. 0x28, 0x0d, 0x48, 0x00, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12,
  3159. 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69,
  3160. 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  3161. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x68, 0x65, 0x61, 0x64, 0x49, 0x6d, 0x67,
  3162. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x68, 0x65, 0x61, 0x64, 0x49, 0x6d, 0x67, 0x12,
  3163. 0x19, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x01,
  3164. 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x88, 0x01, 0x01, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x72,
  3165. 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x22,
  3166. 0x83, 0x02, 0x0a, 0x0b, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x73, 0x70, 0x12,
  3167. 0x1b, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x48,
  3168. 0x00, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x88, 0x01, 0x01, 0x12, 0x14, 0x0a, 0x05,
  3169. 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x05, 0x6d, 0x6f, 0x6e,
  3170. 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x44, 0x18, 0x03,
  3171. 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x44, 0x12, 0x12,
  3172. 0x0a, 0x04, 0x6e, 0x69, 0x63, 0x6b, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x69,
  3173. 0x63, 0x6b, 0x12, 0x18, 0x0a, 0x07, 0x68, 0x65, 0x61, 0x64, 0x55, 0x72, 0x6c, 0x18, 0x05, 0x20,
  3174. 0x03, 0x28, 0x09, 0x52, 0x07, 0x68, 0x65, 0x61, 0x64, 0x55, 0x72, 0x6c, 0x12, 0x16, 0x0a, 0x06,
  3175. 0x73, 0x65, 0x61, 0x74, 0x49, 0x64, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x06, 0x73, 0x65,
  3176. 0x61, 0x74, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6d, 0x6f, 0x64, 0x65, 0x18, 0x06, 0x20, 0x01,
  3177. 0x28, 0x0d, 0x52, 0x04, 0x6d, 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x6c, 0x61, 0x79,
  3178. 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x70, 0x6c, 0x61,
  3179. 0x79, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x12, 0x22, 0x0a, 0x0c, 0x61, 0x64, 0x6d, 0x69, 0x73, 0x73,
  3180. 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x61, 0x64,
  3181. 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x72,
  3182. 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0xba, 0x01, 0x0a, 0x0b, 0x4a, 0x6f, 0x69, 0x6e, 0x52, 0x6f,
  3183. 0x6f, 0x6d, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  3184. 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  3185. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x68,
  3186. 0x65, 0x61, 0x64, 0x49, 0x6d, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x68, 0x65,
  3187. 0x61, 0x64, 0x49, 0x6d, 0x67, 0x12, 0x19, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x04,
  3188. 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x88, 0x01, 0x01,
  3189. 0x12, 0x1b, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d,
  3190. 0x48, 0x01, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a,
  3191. 0x0a, 0x72, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x42, 0x74, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28,
  3192. 0x08, 0x52, 0x0a, 0x72, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x42, 0x74, 0x6e, 0x42, 0x08, 0x0a,
  3193. 0x06, 0x5f, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x72, 0x6f, 0x6f, 0x6d,
  3194. 0x49, 0x64, 0x22, 0x23, 0x0a, 0x0f, 0x52, 0x6f, 0x6f, 0x6d, 0x4b, 0x69, 0x63, 0x6b, 0x55, 0x73,
  3195. 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  3196. 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x22, 0x37, 0x0a, 0x0f, 0x52, 0x6f, 0x6f, 0x6d, 0x4b,
  3197. 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x52, 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69,
  3198. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04,
  3199. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
  3200. 0x22, 0x23, 0x0a, 0x0f, 0x52, 0x6f, 0x6f, 0x6d, 0x51, 0x75, 0x69, 0x74, 0x55, 0x73, 0x65, 0x72,
  3201. 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  3202. 0x52, 0x03, 0x75, 0x69, 0x64, 0x22, 0x7d, 0x0a, 0x0d, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x6e, 0x76,
  3203. 0x69, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20,
  3204. 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x23, 0x0a, 0x0a, 0x63, 0x68, 0x61, 0x74,
  3205. 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x0a,
  3206. 0x63, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1b, 0x0a,
  3207. 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x01, 0x52,
  3208. 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x88, 0x01, 0x01, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x63,
  3209. 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x72, 0x6f,
  3210. 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x37, 0x0a, 0x0d, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x6e, 0x76, 0x69,
  3211. 0x74, 0x65, 0x52, 0x73, 0x70, 0x12, 0x1b, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18,
  3212. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x88,
  3213. 0x01, 0x01, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x37, 0x0a,
  3214. 0x0f, 0x52, 0x6f, 0x6f, 0x6d, 0x51, 0x75, 0x69, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x73, 0x70,
  3215. 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75,
  3216. 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  3217. 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0xe8, 0x02, 0x0a, 0x0f, 0x4a, 0x6f, 0x69, 0x6e, 0x52,
  3218. 0x6f, 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x73, 0x70, 0x12, 0x1b, 0x0a, 0x06, 0x72, 0x65,
  3219. 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x06, 0x72, 0x65,
  3220. 0x73, 0x75, 0x6c, 0x74, 0x88, 0x01, 0x01, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79,
  3221. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x1a, 0x0a,
  3222. 0x08, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  3223. 0x08, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x6c, 0x61,
  3224. 0x79, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52,
  3225. 0x0c, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a,
  3226. 0x07, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07,
  3227. 0x74, 0x61, 0x62, 0x6c, 0x65, 0x49, 0x44, 0x12, 0x1b, 0x0a, 0x06, 0x73, 0x65, 0x61, 0x74, 0x49,
  3228. 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x01, 0x52, 0x06, 0x73, 0x65, 0x61, 0x74, 0x49,
  3229. 0x44, 0x88, 0x01, 0x01, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x69, 0x63, 0x6b, 0x18, 0x07, 0x20, 0x01,
  3230. 0x28, 0x09, 0x52, 0x04, 0x6e, 0x69, 0x63, 0x6b, 0x12, 0x18, 0x0a, 0x07, 0x68, 0x65, 0x61, 0x64,
  3231. 0x55, 0x72, 0x6c, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x68, 0x65, 0x61, 0x64, 0x55,
  3232. 0x72, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x09, 0x20, 0x01,
  3233. 0x28, 0x09, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x21, 0x0a, 0x09, 0x70, 0x6c,
  3234. 0x61, 0x79, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x02, 0x52,
  3235. 0x09, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a,
  3236. 0x0a, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28,
  3237. 0x0d, 0x52, 0x0a, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x42, 0x09, 0x0a,
  3238. 0x07, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x65, 0x61,
  3239. 0x74, 0x49, 0x44, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4e, 0x75,
  3240. 0x6d, 0x22, 0x47, 0x0a, 0x0b, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71,
  3241. 0x12, 0x1b, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d,
  3242. 0x48, 0x00, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x10, 0x0a,
  3243. 0x03, 0x75, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x42,
  3244. 0x09, 0x0a, 0x07, 0x5f, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x10, 0x0a, 0x0e, 0x43, 0x61,
  3245. 0x6e, 0x63, 0x65, 0x6c, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x22, 0x4a, 0x0a, 0x0e,
  3246. 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x52, 0x73, 0x70, 0x12, 0x1b,
  3247. 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00,
  3248. 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x88, 0x01, 0x01, 0x12, 0x10, 0x0a, 0x03, 0x75,
  3249. 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x42, 0x09, 0x0a,
  3250. 0x07, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x32, 0x0a, 0x08, 0x4d, 0x61, 0x74, 0x63,
  3251. 0x68, 0x52, 0x73, 0x70, 0x12, 0x1b, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01,
  3252. 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x88, 0x01,
  3253. 0x01, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0xba, 0x01, 0x0a,
  3254. 0x10, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x69, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x73,
  3255. 0x70, 0x12, 0x1b, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
  3256. 0x0d, 0x48, 0x00, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x88, 0x01, 0x01, 0x12, 0x1a,
  3257. 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  3258. 0x52, 0x08, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x44, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x69,
  3259. 0x63, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x69, 0x63, 0x6b, 0x12, 0x18,
  3260. 0x0a, 0x07, 0x68, 0x65, 0x61, 0x64, 0x55, 0x72, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  3261. 0x07, 0x68, 0x65, 0x61, 0x64, 0x55, 0x72, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64,
  3262. 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72,
  3263. 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x18, 0x06, 0x20,
  3264. 0x01, 0x28, 0x0d, 0x52, 0x09, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x42, 0x09,
  3265. 0x0a, 0x07, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x12, 0x0a, 0x10, 0x52, 0x6f, 0x6f,
  3266. 0x6d, 0x53, 0x74, 0x61, 0x72, 0x74, 0x47, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x22, 0x12, 0x0a,
  3267. 0x10, 0x52, 0x6f, 0x6f, 0x6d, 0x53, 0x74, 0x61, 0x72, 0x74, 0x47, 0x61, 0x6d, 0x65, 0x52, 0x73,
  3268. 0x70, 0x22, 0x3a, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f,
  3269. 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  3270. 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18,
  3271. 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x1f, 0x0a,
  3272. 0x0b, 0x4b, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03,
  3273. 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x22, 0x88,
  3274. 0x04, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x73,
  3275. 0x70, 0x12, 0x1b, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
  3276. 0x0d, 0x48, 0x00, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x88, 0x01, 0x01, 0x12, 0x14,
  3277. 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x6d,
  3278. 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x44,
  3279. 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x44,
  3280. 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  3281. 0x18, 0x04, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0c, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x53, 0x74,
  3282. 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x49, 0x44, 0x18,
  3283. 0x05, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x07, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x49, 0x44, 0x12, 0x16,
  3284. 0x0a, 0x06, 0x73, 0x65, 0x61, 0x74, 0x49, 0x44, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x06,
  3285. 0x73, 0x65, 0x61, 0x74, 0x49, 0x44, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x69, 0x63, 0x6b, 0x18, 0x07,
  3286. 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x69, 0x63, 0x6b, 0x12, 0x18, 0x0a, 0x07, 0x68, 0x65,
  3287. 0x61, 0x64, 0x55, 0x72, 0x6c, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x68, 0x65, 0x61,
  3288. 0x64, 0x55, 0x72, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x09,
  3289. 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x1c, 0x0a, 0x09,
  3290. 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0d, 0x52,
  3291. 0x09, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6c,
  3292. 0x61, 0x79, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0a,
  3293. 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x23, 0x0a, 0x0a, 0x73, 0x65,
  3294. 0x6c, 0x66, 0x53, 0x65, 0x61, 0x74, 0x49, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x01,
  3295. 0x52, 0x0a, 0x73, 0x65, 0x6c, 0x66, 0x53, 0x65, 0x61, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12,
  3296. 0x2d, 0x0a, 0x0f, 0x77, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x50, 0x6c, 0x61, 0x79, 0x65,
  3297. 0x72, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x02, 0x52, 0x0f, 0x77, 0x61, 0x74, 0x63,
  3298. 0x68, 0x69, 0x6e, 0x67, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x88, 0x01, 0x01, 0x12, 0x21,
  3299. 0x0a, 0x09, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x18, 0x0e, 0x20, 0x01, 0x28,
  3300. 0x0d, 0x48, 0x03, 0x52, 0x09, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x88, 0x01,
  3301. 0x01, 0x12, 0x1a, 0x0a, 0x08, 0x67, 0x61, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0f, 0x20,
  3302. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x67, 0x61, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x42, 0x09, 0x0a,
  3303. 0x07, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x73, 0x65, 0x6c,
  3304. 0x66, 0x53, 0x65, 0x61, 0x74, 0x49, 0x64, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x77, 0x61, 0x74, 0x63,
  3305. 0x68, 0x69, 0x6e, 0x67, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x42, 0x0c, 0x0a, 0x0a, 0x5f,
  3306. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x22, 0x7a, 0x0a, 0x0d, 0x54, 0x4b, 0x69,
  3307. 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x73, 0x70, 0x12, 0x21, 0x0a, 0x09, 0x50, 0x6c,
  3308. 0x61, 0x79, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52,
  3309. 0x09, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x88, 0x01, 0x01, 0x12, 0x38, 0x0a,
  3310. 0x0a, 0x6b, 0x69, 0x63, 0x6b, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x18, 0x02, 0x20, 0x03, 0x28,
  3311. 0x0b, 0x32, 0x18, 0x2e, 0x42, 0x42, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x4b, 0x69,
  3312. 0x63, 0x6b, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x52, 0x73, 0x70, 0x52, 0x0a, 0x6b, 0x69, 0x63,
  3313. 0x6b, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x50, 0x6c, 0x61, 0x79,
  3314. 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x22, 0x7f, 0x0a, 0x0d, 0x4b, 0x69, 0x63, 0x6b, 0x50, 0x6c, 0x61,
  3315. 0x79, 0x65, 0x72, 0x52, 0x73, 0x70, 0x12, 0x1b, 0x0a, 0x06, 0x73, 0x65, 0x61, 0x74, 0x49, 0x64,
  3316. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x06, 0x73, 0x65, 0x61, 0x74, 0x49, 0x64,
  3317. 0x88, 0x01, 0x01, 0x12, 0x1f, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x18,
  3318. 0x02, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x01, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x6e, 0x65, 0x4e, 0x75,
  3319. 0x6d, 0x88, 0x01, 0x01, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x6c, 0x61, 0x6e, 0x65, 0x49, 0x44, 0x18,
  3320. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x6c, 0x61, 0x6e, 0x65, 0x49, 0x44, 0x42, 0x09,
  3321. 0x0a, 0x07, 0x5f, 0x73, 0x65, 0x61, 0x74, 0x49, 0x64, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x70, 0x6c,
  3322. 0x61, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x22, 0x52, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68,
  3323. 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x73, 0x70, 0x12, 0x1b, 0x0a, 0x06, 0x73, 0x65, 0x61, 0x74,
  3324. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x06, 0x73, 0x65, 0x61, 0x74,
  3325. 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x6c, 0x61, 0x6e, 0x65, 0x49, 0x64,
  3326. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x6c, 0x61, 0x6e, 0x65, 0x49, 0x64, 0x42,
  3327. 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x65, 0x61, 0x74, 0x49, 0x64, 0x22, 0x60, 0x0a, 0x09, 0x50, 0x6c,
  3328. 0x61, 0x79, 0x65, 0x72, 0x52, 0x73, 0x70, 0x12, 0x1b, 0x0a, 0x06, 0x73, 0x65, 0x61, 0x74, 0x49,
  3329. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x06, 0x73, 0x65, 0x61, 0x74, 0x49,
  3330. 0x64, 0x88, 0x01, 0x01, 0x12, 0x2b, 0x0a, 0x06, 0x70, 0x6c, 0x61, 0x6e, 0x65, 0x73, 0x18, 0x02,
  3331. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x42, 0x42, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  3332. 0x2e, 0x50, 0x6c, 0x61, 0x6e, 0x65, 0x52, 0x73, 0x70, 0x52, 0x06, 0x70, 0x6c, 0x61, 0x6e, 0x65,
  3333. 0x73, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x65, 0x61, 0x74, 0x49, 0x64, 0x22, 0x95, 0x01, 0x0a,
  3334. 0x08, 0x50, 0x6c, 0x61, 0x6e, 0x65, 0x52, 0x73, 0x70, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x6c, 0x61,
  3335. 0x6e, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x6c, 0x61, 0x6e,
  3336. 0x65, 0x49, 0x64, 0x12, 0x27, 0x0a, 0x0c, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x6e,
  3337. 0x64, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x0c, 0x63, 0x75, 0x72,
  3338. 0x72, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x88, 0x01, 0x01, 0x12, 0x25, 0x0a, 0x0b,
  3339. 0x70, 0x6c, 0x61, 0x6e, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28,
  3340. 0x0d, 0x48, 0x01, 0x52, 0x0b, 0x70, 0x6c, 0x61, 0x6e, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  3341. 0x88, 0x01, 0x01, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x49,
  3342. 0x6e, 0x64, 0x65, 0x78, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x65, 0x53, 0x74,
  3343. 0x61, 0x74, 0x75, 0x73, 0x22, 0x2e, 0x0a, 0x0a, 0x52, 0x6f, 0x6f, 0x6d, 0x44, 0x6a, 0x73, 0x52,
  3344. 0x73, 0x70, 0x12, 0x17, 0x0a, 0x04, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d,
  3345. 0x48, 0x00, 0x52, 0x04, 0x74, 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x42, 0x07, 0x0a, 0x05, 0x5f,
  3346. 0x74, 0x69, 0x6d, 0x65, 0x22, 0xc5, 0x02, 0x0a, 0x0f, 0x52, 0x6f, 0x6f, 0x6d, 0x4a, 0x6f, 0x69,
  3347. 0x6e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x73, 0x70, 0x12, 0x1b, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75,
  3348. 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75,
  3349. 0x6c, 0x74, 0x88, 0x01, 0x01, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x02,
  3350. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x70,
  3351. 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70,
  3352. 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x6c, 0x61, 0x79, 0x65,
  3353. 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x70,
  3354. 0x6c, 0x61, 0x79, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x74,
  3355. 0x61, 0x62, 0x6c, 0x65, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x74, 0x61,
  3356. 0x62, 0x6c, 0x65, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x65, 0x61, 0x74, 0x49, 0x44, 0x18,
  3357. 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x73, 0x65, 0x61, 0x74, 0x49, 0x44, 0x12, 0x12, 0x0a,
  3358. 0x04, 0x6e, 0x69, 0x63, 0x6b, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x69, 0x63,
  3359. 0x6b, 0x12, 0x18, 0x0a, 0x07, 0x68, 0x65, 0x61, 0x64, 0x55, 0x72, 0x6c, 0x18, 0x08, 0x20, 0x01,
  3360. 0x28, 0x09, 0x52, 0x07, 0x68, 0x65, 0x61, 0x64, 0x55, 0x72, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x67,
  3361. 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x67, 0x65, 0x6e,
  3362. 0x64, 0x65, 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4e, 0x75, 0x6d,
  3363. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4e, 0x75,
  3364. 0x6d, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x18,
  3365. 0x0b, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x54, 0x79, 0x70,
  3366. 0x65, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x92, 0x01, 0x0a,
  3367. 0x0c, 0x47, 0x61, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x73, 0x70, 0x12, 0x1b, 0x0a,
  3368. 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52,
  3369. 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x88, 0x01, 0x01, 0x12, 0x1b, 0x0a, 0x06, 0x73, 0x65,
  3370. 0x61, 0x74, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x01, 0x52, 0x06, 0x73, 0x65,
  3371. 0x61, 0x74, 0x49, 0x44, 0x88, 0x01, 0x01, 0x12, 0x23, 0x0a, 0x0a, 0x63, 0x61, 0x73, 0x74, 0x53,
  3372. 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x02, 0x52, 0x0a, 0x63,
  3373. 0x61, 0x73, 0x74, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x88, 0x01, 0x01, 0x42, 0x09, 0x0a, 0x07,
  3374. 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x65, 0x61, 0x74,
  3375. 0x49, 0x44, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x63, 0x61, 0x73, 0x74, 0x53, 0x65, 0x63, 0x6f, 0x6e,
  3376. 0x64, 0x22, 0x11, 0x0a, 0x0f, 0x54, 0x68, 0x72, 0x6f, 0x77, 0x54, 0x68, 0x65, 0x44, 0x69, 0x63,
  3377. 0x65, 0x52, 0x65, 0x71, 0x22, 0xb7, 0x02, 0x0a, 0x0f, 0x54, 0x68, 0x72, 0x6f, 0x77, 0x54, 0x68,
  3378. 0x65, 0x44, 0x69, 0x63, 0x65, 0x52, 0x73, 0x70, 0x12, 0x1b, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75,
  3379. 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75,
  3380. 0x6c, 0x74, 0x88, 0x01, 0x01, 0x12, 0x1b, 0x0a, 0x06, 0x73, 0x65, 0x61, 0x74, 0x49, 0x44, 0x18,
  3381. 0x02, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x01, 0x52, 0x06, 0x73, 0x65, 0x61, 0x74, 0x49, 0x44, 0x88,
  3382. 0x01, 0x01, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
  3383. 0x0d, 0x52, 0x05, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x12, 0x23, 0x0a, 0x0a, 0x73, 0x6b, 0x69, 0x70,
  3384. 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x02, 0x52, 0x0a,
  3385. 0x73, 0x6b, 0x69, 0x70, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x1f, 0x0a,
  3386. 0x08, 0x6e, 0x65, 0x78, 0x74, 0x54, 0x75, 0x72, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x48,
  3387. 0x03, 0x52, 0x08, 0x6e, 0x65, 0x78, 0x74, 0x54, 0x75, 0x72, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x1f,
  3388. 0x0a, 0x08, 0x61, 0x75, 0x74, 0x6f, 0x4d, 0x6f, 0x76, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d,
  3389. 0x48, 0x04, 0x52, 0x08, 0x61, 0x75, 0x74, 0x6f, 0x4d, 0x6f, 0x76, 0x65, 0x88, 0x01, 0x01, 0x12,
  3390. 0x2e, 0x0a, 0x07, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b,
  3391. 0x32, 0x14, 0x2e, 0x42, 0x42, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x50, 0x6c, 0x61,
  3392. 0x79, 0x65, 0x72, 0x52, 0x73, 0x70, 0x52, 0x07, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x42,
  3393. 0x09, 0x0a, 0x07, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73,
  3394. 0x65, 0x61, 0x74, 0x49, 0x44, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x73, 0x6b, 0x69, 0x70, 0x52, 0x65,
  3395. 0x61, 0x73, 0x6f, 0x6e, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6e, 0x65, 0x78, 0x74, 0x54, 0x75, 0x72,
  3396. 0x6e, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x4d, 0x6f, 0x76, 0x65, 0x22, 0x29,
  3397. 0x0a, 0x0d, 0x50, 0x6c, 0x61, 0x6e, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x71, 0x12,
  3398. 0x18, 0x0a, 0x07, 0x70, 0x6c, 0x61, 0x6e, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  3399. 0x52, 0x07, 0x70, 0x6c, 0x61, 0x6e, 0x65, 0x49, 0x44, 0x22, 0xf5, 0x01, 0x0a, 0x0d, 0x50, 0x6c,
  3400. 0x61, 0x6e, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x73, 0x70, 0x12, 0x1b, 0x0a, 0x06, 0x72,
  3401. 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x06, 0x72,
  3402. 0x65, 0x73, 0x75, 0x6c, 0x74, 0x88, 0x01, 0x01, 0x12, 0x1b, 0x0a, 0x06, 0x73, 0x65, 0x61, 0x74,
  3403. 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x01, 0x52, 0x06, 0x73, 0x65, 0x61, 0x74,
  3404. 0x49, 0x44, 0x88, 0x01, 0x01, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x6c, 0x61, 0x6e, 0x65, 0x49, 0x44,
  3405. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x6c, 0x61, 0x6e, 0x65, 0x49, 0x44, 0x12,
  3406. 0x1f, 0x0a, 0x08, 0x6e, 0x65, 0x78, 0x74, 0x54, 0x75, 0x72, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28,
  3407. 0x0d, 0x48, 0x02, 0x52, 0x08, 0x6e, 0x65, 0x78, 0x74, 0x54, 0x75, 0x72, 0x6e, 0x88, 0x01, 0x01,
  3408. 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x18, 0x05, 0x20,
  3409. 0x01, 0x28, 0x0d, 0x52, 0x09, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x12, 0x2e,
  3410. 0x0a, 0x07, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32,
  3411. 0x14, 0x2e, 0x42, 0x42, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x50, 0x6c, 0x61, 0x79,
  3412. 0x65, 0x72, 0x52, 0x73, 0x70, 0x52, 0x07, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x42, 0x09,
  3413. 0x0a, 0x07, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x65,
  3414. 0x61, 0x74, 0x49, 0x44, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6e, 0x65, 0x78, 0x74, 0x54, 0x75, 0x72,
  3415. 0x6e, 0x22, 0x23, 0x0a, 0x07, 0x4d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x71, 0x12, 0x18, 0x0a, 0x07,
  3416. 0x70, 0x6c, 0x61, 0x6e, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70,
  3417. 0x6c, 0x61, 0x6e, 0x65, 0x49, 0x44, 0x22, 0xe7, 0x03, 0x0a, 0x07, 0x4d, 0x6f, 0x76, 0x65, 0x52,
  3418. 0x73, 0x70, 0x12, 0x1b, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01,
  3419. 0x28, 0x0d, 0x48, 0x00, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x88, 0x01, 0x01, 0x12,
  3420. 0x1b, 0x0a, 0x06, 0x73, 0x65, 0x61, 0x74, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x48,
  3421. 0x01, 0x52, 0x06, 0x73, 0x65, 0x61, 0x74, 0x49, 0x44, 0x88, 0x01, 0x01, 0x12, 0x18, 0x0a, 0x07,
  3422. 0x70, 0x6c, 0x61, 0x6e, 0x65, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70,
  3423. 0x6c, 0x61, 0x6e, 0x65, 0x49, 0x44, 0x12, 0x17, 0x0a, 0x04, 0x73, 0x74, 0x65, 0x70, 0x18, 0x04,
  3424. 0x20, 0x01, 0x28, 0x0d, 0x48, 0x02, 0x52, 0x04, 0x73, 0x74, 0x65, 0x70, 0x88, 0x01, 0x01, 0x12,
  3425. 0x25, 0x0a, 0x0b, 0x63, 0x75, 0x72, 0x50, 0x6f, 0x73, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x05,
  3426. 0x20, 0x01, 0x28, 0x0d, 0x48, 0x03, 0x52, 0x0b, 0x63, 0x75, 0x72, 0x50, 0x6f, 0x73, 0x49, 0x6e,
  3427. 0x64, 0x65, 0x78, 0x88, 0x01, 0x01, 0x12, 0x1f, 0x0a, 0x08, 0x6e, 0x65, 0x78, 0x74, 0x54, 0x75,
  3428. 0x72, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x78, 0x74,
  3429. 0x54, 0x75, 0x72, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x1b, 0x0a, 0x06, 0x68, 0x61, 0x73, 0x57, 0x69,
  3430. 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x05, 0x52, 0x06, 0x68, 0x61, 0x73, 0x57, 0x69,
  3431. 0x6e, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4e, 0x75,
  3432. 0x6d, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4e,
  3433. 0x75, 0x6d, 0x12, 0x3b, 0x0a, 0x0b, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x45, 0x76, 0x65, 0x6e,
  3434. 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x42, 0x42, 0x4d, 0x65, 0x73, 0x73,
  3435. 0x61, 0x67, 0x65, 0x2e, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52,
  3436. 0x73, 0x70, 0x52, 0x0b, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12,
  3437. 0x38, 0x0a, 0x0a, 0x74, 0x4b, 0x69, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x0a, 0x20,
  3438. 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x42, 0x42, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e,
  3439. 0x54, 0x4b, 0x69, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x73, 0x70, 0x52, 0x0a, 0x74,
  3440. 0x4b, 0x69, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x2e, 0x0a, 0x07, 0x70, 0x6c, 0x61,
  3441. 0x79, 0x65, 0x72, 0x73, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x42, 0x42, 0x4d,
  3442. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x52, 0x73, 0x70,
  3443. 0x52, 0x07, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x72, 0x65,
  3444. 0x73, 0x75, 0x6c, 0x74, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x65, 0x61, 0x74, 0x49, 0x44, 0x42,
  3445. 0x07, 0x0a, 0x05, 0x5f, 0x73, 0x74, 0x65, 0x70, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x63, 0x75, 0x72,
  3446. 0x50, 0x6f, 0x73, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6e, 0x65, 0x78,
  3447. 0x74, 0x54, 0x75, 0x72, 0x6e, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x68, 0x61, 0x73, 0x57, 0x69, 0x6e,
  3448. 0x22, 0x26, 0x0a, 0x0e, 0x54, 0x72, 0x75, 0x73, 0x74, 0x65, 0x65, 0x73, 0x68, 0x69, 0x70, 0x52,
  3449. 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x72, 0x75, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
  3450. 0x08, 0x52, 0x05, 0x74, 0x72, 0x75, 0x73, 0x74, 0x22, 0x4e, 0x0a, 0x0e, 0x54, 0x72, 0x75, 0x73,
  3451. 0x74, 0x65, 0x65, 0x73, 0x68, 0x69, 0x70, 0x52, 0x73, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x72,
  3452. 0x75, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x74, 0x72, 0x75, 0x73, 0x74,
  3453. 0x12, 0x1b, 0x0a, 0x06, 0x73, 0x65, 0x61, 0x74, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d,
  3454. 0x48, 0x00, 0x52, 0x06, 0x73, 0x65, 0x61, 0x74, 0x49, 0x44, 0x88, 0x01, 0x01, 0x42, 0x09, 0x0a,
  3455. 0x07, 0x5f, 0x73, 0x65, 0x61, 0x74, 0x49, 0x44, 0x22, 0x09, 0x0a, 0x07, 0x51, 0x75, 0x69, 0x74,
  3456. 0x52, 0x65, 0x71, 0x22, 0x95, 0x01, 0x0a, 0x07, 0x51, 0x75, 0x69, 0x74, 0x52, 0x73, 0x70, 0x12,
  3457. 0x22, 0x0a, 0x0c, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
  3458. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x53, 0x74, 0x61,
  3459. 0x74, 0x75, 0x73, 0x12, 0x1b, 0x0a, 0x06, 0x73, 0x65, 0x61, 0x74, 0x49, 0x44, 0x18, 0x02, 0x20,
  3460. 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x06, 0x73, 0x65, 0x61, 0x74, 0x49, 0x44, 0x88, 0x01, 0x01,
  3461. 0x12, 0x1f, 0x0a, 0x08, 0x6e, 0x65, 0x78, 0x74, 0x54, 0x75, 0x72, 0x6e, 0x18, 0x03, 0x20, 0x01,
  3462. 0x28, 0x0d, 0x48, 0x01, 0x52, 0x08, 0x6e, 0x65, 0x78, 0x74, 0x54, 0x75, 0x72, 0x6e, 0x88, 0x01,
  3463. 0x01, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  3464. 0x75, 0x69, 0x64, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x65, 0x61, 0x74, 0x49, 0x44, 0x42, 0x0b,
  3465. 0x0a, 0x09, 0x5f, 0x6e, 0x65, 0x78, 0x74, 0x54, 0x75, 0x72, 0x6e, 0x22, 0x8a, 0x01, 0x0a, 0x0a,
  3466. 0x45, 0x6e, 0x64, 0x47, 0x61, 0x6d, 0x65, 0x52, 0x73, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x65,
  3467. 0x61, 0x74, 0x49, 0x44, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x06, 0x73, 0x65, 0x61, 0x74,
  3468. 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74,
  3469. 0x75, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72,
  3470. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6b, 0x69, 0x63, 0x6b, 0x18, 0x03,
  3471. 0x20, 0x03, 0x28, 0x0d, 0x52, 0x04, 0x6b, 0x69, 0x63, 0x6b, 0x12, 0x16, 0x0a, 0x06, 0x62, 0x65,
  3472. 0x4b, 0x69, 0x63, 0x6b, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x06, 0x62, 0x65, 0x4b, 0x69,
  3473. 0x63, 0x6b, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x05, 0x20, 0x03, 0x28,
  3474. 0x0d, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x22, 0x14, 0x0a, 0x12, 0x44, 0x69, 0x73, 0x73,
  3475. 0x6f, 0x6c, 0x76, 0x65, 0x54, 0x68, 0x65, 0x47, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x22, 0x14,
  3476. 0x0a, 0x12, 0x44, 0x69, 0x73, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x54, 0x68, 0x65, 0x47, 0x61, 0x6d,
  3477. 0x65, 0x52, 0x73, 0x70, 0x22, 0x2e, 0x0a, 0x0a, 0x50, 0x62, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52,
  3478. 0x73, 0x70, 0x12, 0x20, 0x0a, 0x0b, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x44, 0x61, 0x74,
  3479. 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  3480. 0x44, 0x61, 0x74, 0x61, 0x22, 0x10, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4c,
  3481. 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x22, 0x28, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f,
  3482. 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x73, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75,
  3483. 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
  3484. 0x22, 0x24, 0x0a, 0x0a, 0x4b, 0x69, 0x63, 0x6b, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x12, 0x16,
  3485. 0x0a, 0x06, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06,
  3486. 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x22, 0x2c, 0x0a, 0x18, 0x52, 0x6f, 0x6f, 0x6d, 0x43, 0x68,
  3487. 0x61, 0x6e, 0x67, 0x65, 0x4f, 0x66, 0x48, 0x6f, 0x6d, 0x65, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x52,
  3488. 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  3489. 0x03, 0x75, 0x69, 0x64, 0x22, 0x23, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4d,
  3490. 0x6f, 0x6e, 0x65, 0x79, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01,
  3491. 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x22, 0x36, 0x0a, 0x0f, 0x47, 0x65, 0x74,
  3492. 0x55, 0x73, 0x65, 0x72, 0x4d, 0x6f, 0x6e, 0x65, 0x79, 0x52, 0x73, 0x70, 0x12, 0x19, 0x0a, 0x05,
  3493. 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x05, 0x6d,
  3494. 0x6f, 0x6e, 0x65, 0x79, 0x88, 0x01, 0x01, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x6d, 0x6f, 0x6e, 0x65,
  3495. 0x79, 0x22, 0x33, 0x0a, 0x07, 0x44, 0x69, 0x73, 0x63, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03,
  3496. 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x16,
  3497. 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06,
  3498. 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x0d, 0x0a, 0x0b, 0x52, 0x6f, 0x6f, 0x6d, 0x51, 0x75,
  3499. 0x69, 0x74, 0x52, 0x65, 0x71, 0x22, 0x10, 0x0a, 0x0e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x73,
  3500. 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x71, 0x22, 0x20, 0x0a, 0x0a, 0x53, 0x65, 0x6e, 0x64, 0x4d,
  3501. 0x73, 0x67, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20,
  3502. 0x01, 0x28, 0x09, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x32, 0x0a, 0x0a, 0x53, 0x65, 0x6e,
  3503. 0x64, 0x4d, 0x73, 0x67, 0x52, 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18,
  3504. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x10, 0x0a, 0x03, 0x75,
  3505. 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x2a, 0xf8, 0x03,
  3506. 0x0a, 0x0a, 0x47, 0x61, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x12, 0x0a, 0x0e,
  3507. 0x47, 0x41, 0x4d, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x4f, 0x4b, 0x10, 0x00,
  3508. 0x12, 0x1b, 0x0a, 0x16, 0x47, 0x41, 0x4d, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f,
  3509. 0x50, 0x4c, 0x41, 0x59, 0x45, 0x52, 0x5f, 0x4e, 0x49, 0x4c, 0x10, 0xe9, 0x07, 0x12, 0x1f, 0x0a,
  3510. 0x1a, 0x47, 0x41, 0x4d, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x55, 0x49, 0x44,
  3511. 0x5f, 0x50, 0x41, 0x53, 0x53, 0x57, 0x44, 0x5f, 0x4e, 0x49, 0x4c, 0x10, 0xea, 0x07, 0x12, 0x1a,
  3512. 0x0a, 0x15, 0x47, 0x41, 0x4d, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x55, 0x49,
  3513. 0x44, 0x5f, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x10, 0xeb, 0x07, 0x12, 0x1d, 0x0a, 0x18, 0x47, 0x41,
  3514. 0x4d, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x50, 0x41, 0x53, 0x53, 0x57, 0x44,
  3515. 0x5f, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x10, 0xec, 0x07, 0x12, 0x1e, 0x0a, 0x19, 0x47, 0x41, 0x4d,
  3516. 0x45, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x52, 0x4f, 0x4f, 0x4d, 0x5f, 0x4e, 0x4f,
  3517. 0x54, 0x5f, 0x45, 0x58, 0x49, 0x54, 0x10, 0xed, 0x07, 0x12, 0x17, 0x0a, 0x12, 0x47, 0x41, 0x4d,
  3518. 0x45, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x50, 0x42, 0x5f, 0x45, 0x52, 0x52, 0x10,
  3519. 0xee, 0x07, 0x12, 0x1a, 0x0a, 0x15, 0x47, 0x41, 0x4d, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55,
  3520. 0x53, 0x5f, 0x49, 0x4e, 0x4e, 0x45, 0x52, 0x5f, 0x45, 0x52, 0x52, 0x10, 0xef, 0x07, 0x12, 0x20,
  3521. 0x0a, 0x1b, 0x47, 0x41, 0x4d, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x4c, 0x4f,
  3522. 0x47, 0x49, 0x4e, 0x5f, 0x43, 0x48, 0x45, 0x43, 0x4b, 0x5f, 0x45, 0x52, 0x52, 0x10, 0x9f, 0x08,
  3523. 0x12, 0x13, 0x0a, 0x0f, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x5f, 0x53, 0x74, 0x61, 0x74, 0x75,
  3524. 0x73, 0x5f, 0x30, 0x10, 0x0b, 0x12, 0x13, 0x0a, 0x0f, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x5f,
  3525. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x31, 0x10, 0x01, 0x12, 0x13, 0x0a, 0x0f, 0x50, 0x6c,
  3526. 0x61, 0x79, 0x65, 0x72, 0x5f, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x32, 0x10, 0x02, 0x12,
  3527. 0x13, 0x0a, 0x0f, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x5f, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  3528. 0x5f, 0x33, 0x10, 0x03, 0x12, 0x13, 0x0a, 0x0f, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x5f, 0x53,
  3529. 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x34, 0x10, 0x04, 0x12, 0x13, 0x0a, 0x0f, 0x50, 0x6c, 0x61,
  3530. 0x79, 0x65, 0x72, 0x5f, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x35, 0x10, 0x05, 0x12, 0x13,
  3531. 0x0a, 0x0f, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x5f, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f,
  3532. 0x36, 0x10, 0x06, 0x12, 0x13, 0x0a, 0x0f, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x5f, 0x53, 0x74,
  3533. 0x61, 0x74, 0x75, 0x73, 0x5f, 0x37, 0x10, 0x07, 0x12, 0x13, 0x0a, 0x0f, 0x50, 0x6c, 0x61, 0x79,
  3534. 0x65, 0x72, 0x5f, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x38, 0x10, 0x08, 0x12, 0x13, 0x0a,
  3535. 0x0f, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x5f, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x39,
  3536. 0x10, 0x09, 0x12, 0x14, 0x0a, 0x10, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x5f, 0x53, 0x74, 0x61,
  3537. 0x74, 0x75, 0x73, 0x5f, 0x31, 0x30, 0x10, 0x0a, 0x2a, 0x84, 0x01, 0x0a, 0x0a, 0x4b, 0x69, 0x63,
  3538. 0x6b, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x17, 0x0a, 0x13, 0x4b, 0x49, 0x43, 0x4b, 0x5f,
  3539. 0x52, 0x45, 0x41, 0x53, 0x4f, 0x4e, 0x5f, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00,
  3540. 0x12, 0x1f, 0x0a, 0x1b, 0x4b, 0x49, 0x43, 0x4b, 0x5f, 0x52, 0x45, 0x41, 0x53, 0x4f, 0x4e, 0x5f,
  3541. 0x4c, 0x4f, 0x47, 0x49, 0x4e, 0x5f, 0x45, 0x4c, 0x53, 0x45, 0x57, 0x48, 0x45, 0x52, 0x45, 0x10,
  3542. 0x01, 0x12, 0x21, 0x0a, 0x1d, 0x4b, 0x49, 0x43, 0x4b, 0x5f, 0x52, 0x45, 0x41, 0x53, 0x4f, 0x4e,
  3543. 0x5f, 0x48, 0x45, 0x41, 0x52, 0x54, 0x42, 0x45, 0x41, 0x54, 0x5f, 0x54, 0x49, 0x4d, 0x45, 0x4f,
  3544. 0x55, 0x54, 0x10, 0x02, 0x12, 0x19, 0x0a, 0x15, 0x4b, 0x49, 0x43, 0x4b, 0x5f, 0x52, 0x45, 0x41,
  3545. 0x53, 0x4f, 0x4e, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x4c, 0x4f, 0x47, 0x49, 0x4e, 0x10, 0x03, 0x42,
  3546. 0x0c, 0x5a, 0x0a, 0x2e, 0x2f, 0x3b, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x62, 0x06, 0x70,
  3547. 0x72, 0x6f, 0x74, 0x6f, 0x33,
  3548. }
  3549. var (
  3550. file_Message_proto_rawDescOnce sync.Once
  3551. file_Message_proto_rawDescData = file_Message_proto_rawDesc
  3552. )
  3553. func file_Message_proto_rawDescGZIP() []byte {
  3554. file_Message_proto_rawDescOnce.Do(func() {
  3555. file_Message_proto_rawDescData = protoimpl.X.CompressGZIP(file_Message_proto_rawDescData)
  3556. })
  3557. return file_Message_proto_rawDescData
  3558. }
  3559. var file_Message_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
  3560. var file_Message_proto_msgTypes = make([]protoimpl.MessageInfo, 57)
  3561. var file_Message_proto_goTypes = []interface{}{
  3562. (GameStatus)(0), // 0: BBMessage.GameStatus
  3563. (KickReason)(0), // 1: BBMessage.KickReason
  3564. (*HeartbeatPush)(nil), // 2: BBMessage.HeartbeatPush
  3565. (*LoginReq)(nil), // 3: BBMessage.LoginReq
  3566. (*LoginRsp)(nil), // 4: BBMessage.LoginRsp
  3567. (*CreateGameReq)(nil), // 5: BBMessage.CreateGameReq
  3568. (*CreateGameRsp)(nil), // 6: BBMessage.CreateGameRsp
  3569. (*RoomInfoRsp)(nil), // 7: BBMessage.RoomInfoRsp
  3570. (*JoinRoomReq)(nil), // 8: BBMessage.JoinRoomReq
  3571. (*RoomKickUserReq)(nil), // 9: BBMessage.RoomKickUserReq
  3572. (*RoomKickUserRsp)(nil), // 10: BBMessage.RoomKickUserRsp
  3573. (*RoomQuitUserReq)(nil), // 11: BBMessage.RoomQuitUserReq
  3574. (*RoomInviteReq)(nil), // 12: BBMessage.RoomInviteReq
  3575. (*RoomInviteRsp)(nil), // 13: BBMessage.RoomInviteRsp
  3576. (*RoomQuitUserRsp)(nil), // 14: BBMessage.RoomQuitUserRsp
  3577. (*JoinRoomInfoRsp)(nil), // 15: BBMessage.JoinRoomInfoRsp
  3578. (*RoomInfoReq)(nil), // 16: BBMessage.RoomInfoReq
  3579. (*CancelMatchReq)(nil), // 17: BBMessage.CancelMatchReq
  3580. (*CancelMatchRsp)(nil), // 18: BBMessage.CancelMatchRsp
  3581. (*MatchRsp)(nil), // 19: BBMessage.MatchRsp
  3582. (*MatchJoinUserRsp)(nil), // 20: BBMessage.MatchJoinUserRsp
  3583. (*RoomStartGameReq)(nil), // 21: BBMessage.RoomStartGameReq
  3584. (*RoomStartGameRsp)(nil), // 22: BBMessage.RoomStartGameRsp
  3585. (*GetUserInfoReq)(nil), // 23: BBMessage.GetUserInfoReq
  3586. (*KickUserReq)(nil), // 24: BBMessage.KickUserReq
  3587. (*GetUserInfoRsp)(nil), // 25: BBMessage.GetUserInfoRsp
  3588. (*TKickEventRsp)(nil), // 26: BBMessage.TKickEventRsp
  3589. (*KickPlayerRsp)(nil), // 27: BBMessage.KickPlayerRsp
  3590. (*FinishEventRsp)(nil), // 28: BBMessage.FinishEventRsp
  3591. (*PlayerRsp)(nil), // 29: BBMessage.PlayerRsp
  3592. (*PlaneRsp)(nil), // 30: BBMessage.PlaneRsp
  3593. (*RoomDjsRsp)(nil), // 31: BBMessage.RoomDjsRsp
  3594. (*RoomJoinUserRsp)(nil), // 32: BBMessage.RoomJoinUserRsp
  3595. (*GameStartRsp)(nil), // 33: BBMessage.GameStartRsp
  3596. (*ThrowTheDiceReq)(nil), // 34: BBMessage.ThrowTheDiceReq
  3597. (*ThrowTheDiceRsp)(nil), // 35: BBMessage.ThrowTheDiceRsp
  3598. (*PlaneStartReq)(nil), // 36: BBMessage.PlaneStartReq
  3599. (*PlaneStartRsp)(nil), // 37: BBMessage.PlaneStartRsp
  3600. (*MoveReq)(nil), // 38: BBMessage.MoveReq
  3601. (*MoveRsp)(nil), // 39: BBMessage.MoveRsp
  3602. (*TrusteeshipReq)(nil), // 40: BBMessage.TrusteeshipReq
  3603. (*TrusteeshipRsp)(nil), // 41: BBMessage.TrusteeshipRsp
  3604. (*QuitReq)(nil), // 42: BBMessage.QuitReq
  3605. (*QuitRsp)(nil), // 43: BBMessage.QuitRsp
  3606. (*EndGameRsp)(nil), // 44: BBMessage.EndGameRsp
  3607. (*DissolveTheGameReq)(nil), // 45: BBMessage.DissolveTheGameReq
  3608. (*DissolveTheGameRsp)(nil), // 46: BBMessage.DissolveTheGameRsp
  3609. (*PbErrorRsp)(nil), // 47: BBMessage.PbErrorRsp
  3610. (*GetRoomListReq)(nil), // 48: BBMessage.GetRoomListReq
  3611. (*GetRoomListRsp)(nil), // 49: BBMessage.GetRoomListRsp
  3612. (*KickNotify)(nil), // 50: BBMessage.KickNotify
  3613. (*RoomChangeOfHomeownerRsp)(nil), // 51: BBMessage.RoomChangeOfHomeownerRsp
  3614. (*GetUserMoneyReq)(nil), // 52: BBMessage.GetUserMoneyReq
  3615. (*GetUserMoneyRsp)(nil), // 53: BBMessage.GetUserMoneyRsp
  3616. (*DiscReq)(nil), // 54: BBMessage.DiscReq
  3617. (*RoomQuitReq)(nil), // 55: BBMessage.RoomQuitReq
  3618. (*RoomRestartReq)(nil), // 56: BBMessage.RoomRestartReq
  3619. (*SendMsgReq)(nil), // 57: BBMessage.SendMsgReq
  3620. (*SendMsgRsp)(nil), // 58: BBMessage.SendMsgRsp
  3621. }
  3622. var file_Message_proto_depIdxs = []int32{
  3623. 27, // 0: BBMessage.TKickEventRsp.kickPlayer:type_name -> BBMessage.KickPlayerRsp
  3624. 30, // 1: BBMessage.PlayerRsp.planes:type_name -> BBMessage.PlaneRsp
  3625. 29, // 2: BBMessage.ThrowTheDiceRsp.players:type_name -> BBMessage.PlayerRsp
  3626. 29, // 3: BBMessage.PlaneStartRsp.players:type_name -> BBMessage.PlayerRsp
  3627. 28, // 4: BBMessage.MoveRsp.finishEvent:type_name -> BBMessage.FinishEventRsp
  3628. 26, // 5: BBMessage.MoveRsp.tKickEvent:type_name -> BBMessage.TKickEventRsp
  3629. 29, // 6: BBMessage.MoveRsp.players:type_name -> BBMessage.PlayerRsp
  3630. 7, // [7:7] is the sub-list for method output_type
  3631. 7, // [7:7] is the sub-list for method input_type
  3632. 7, // [7:7] is the sub-list for extension type_name
  3633. 7, // [7:7] is the sub-list for extension extendee
  3634. 0, // [0:7] is the sub-list for field type_name
  3635. }
  3636. func init() { file_Message_proto_init() }
  3637. func file_Message_proto_init() {
  3638. if File_Message_proto != nil {
  3639. return
  3640. }
  3641. if !protoimpl.UnsafeEnabled {
  3642. file_Message_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  3643. switch v := v.(*HeartbeatPush); i {
  3644. case 0:
  3645. return &v.state
  3646. case 1:
  3647. return &v.sizeCache
  3648. case 2:
  3649. return &v.unknownFields
  3650. default:
  3651. return nil
  3652. }
  3653. }
  3654. file_Message_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  3655. switch v := v.(*LoginReq); i {
  3656. case 0:
  3657. return &v.state
  3658. case 1:
  3659. return &v.sizeCache
  3660. case 2:
  3661. return &v.unknownFields
  3662. default:
  3663. return nil
  3664. }
  3665. }
  3666. file_Message_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  3667. switch v := v.(*LoginRsp); i {
  3668. case 0:
  3669. return &v.state
  3670. case 1:
  3671. return &v.sizeCache
  3672. case 2:
  3673. return &v.unknownFields
  3674. default:
  3675. return nil
  3676. }
  3677. }
  3678. file_Message_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  3679. switch v := v.(*CreateGameReq); i {
  3680. case 0:
  3681. return &v.state
  3682. case 1:
  3683. return &v.sizeCache
  3684. case 2:
  3685. return &v.unknownFields
  3686. default:
  3687. return nil
  3688. }
  3689. }
  3690. file_Message_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  3691. switch v := v.(*CreateGameRsp); i {
  3692. case 0:
  3693. return &v.state
  3694. case 1:
  3695. return &v.sizeCache
  3696. case 2:
  3697. return &v.unknownFields
  3698. default:
  3699. return nil
  3700. }
  3701. }
  3702. file_Message_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  3703. switch v := v.(*RoomInfoRsp); i {
  3704. case 0:
  3705. return &v.state
  3706. case 1:
  3707. return &v.sizeCache
  3708. case 2:
  3709. return &v.unknownFields
  3710. default:
  3711. return nil
  3712. }
  3713. }
  3714. file_Message_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  3715. switch v := v.(*JoinRoomReq); i {
  3716. case 0:
  3717. return &v.state
  3718. case 1:
  3719. return &v.sizeCache
  3720. case 2:
  3721. return &v.unknownFields
  3722. default:
  3723. return nil
  3724. }
  3725. }
  3726. file_Message_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  3727. switch v := v.(*RoomKickUserReq); i {
  3728. case 0:
  3729. return &v.state
  3730. case 1:
  3731. return &v.sizeCache
  3732. case 2:
  3733. return &v.unknownFields
  3734. default:
  3735. return nil
  3736. }
  3737. }
  3738. file_Message_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  3739. switch v := v.(*RoomKickUserRsp); i {
  3740. case 0:
  3741. return &v.state
  3742. case 1:
  3743. return &v.sizeCache
  3744. case 2:
  3745. return &v.unknownFields
  3746. default:
  3747. return nil
  3748. }
  3749. }
  3750. file_Message_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  3751. switch v := v.(*RoomQuitUserReq); i {
  3752. case 0:
  3753. return &v.state
  3754. case 1:
  3755. return &v.sizeCache
  3756. case 2:
  3757. return &v.unknownFields
  3758. default:
  3759. return nil
  3760. }
  3761. }
  3762. file_Message_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  3763. switch v := v.(*RoomInviteReq); i {
  3764. case 0:
  3765. return &v.state
  3766. case 1:
  3767. return &v.sizeCache
  3768. case 2:
  3769. return &v.unknownFields
  3770. default:
  3771. return nil
  3772. }
  3773. }
  3774. file_Message_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  3775. switch v := v.(*RoomInviteRsp); i {
  3776. case 0:
  3777. return &v.state
  3778. case 1:
  3779. return &v.sizeCache
  3780. case 2:
  3781. return &v.unknownFields
  3782. default:
  3783. return nil
  3784. }
  3785. }
  3786. file_Message_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  3787. switch v := v.(*RoomQuitUserRsp); i {
  3788. case 0:
  3789. return &v.state
  3790. case 1:
  3791. return &v.sizeCache
  3792. case 2:
  3793. return &v.unknownFields
  3794. default:
  3795. return nil
  3796. }
  3797. }
  3798. file_Message_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  3799. switch v := v.(*JoinRoomInfoRsp); i {
  3800. case 0:
  3801. return &v.state
  3802. case 1:
  3803. return &v.sizeCache
  3804. case 2:
  3805. return &v.unknownFields
  3806. default:
  3807. return nil
  3808. }
  3809. }
  3810. file_Message_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  3811. switch v := v.(*RoomInfoReq); i {
  3812. case 0:
  3813. return &v.state
  3814. case 1:
  3815. return &v.sizeCache
  3816. case 2:
  3817. return &v.unknownFields
  3818. default:
  3819. return nil
  3820. }
  3821. }
  3822. file_Message_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  3823. switch v := v.(*CancelMatchReq); i {
  3824. case 0:
  3825. return &v.state
  3826. case 1:
  3827. return &v.sizeCache
  3828. case 2:
  3829. return &v.unknownFields
  3830. default:
  3831. return nil
  3832. }
  3833. }
  3834. file_Message_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  3835. switch v := v.(*CancelMatchRsp); i {
  3836. case 0:
  3837. return &v.state
  3838. case 1:
  3839. return &v.sizeCache
  3840. case 2:
  3841. return &v.unknownFields
  3842. default:
  3843. return nil
  3844. }
  3845. }
  3846. file_Message_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  3847. switch v := v.(*MatchRsp); i {
  3848. case 0:
  3849. return &v.state
  3850. case 1:
  3851. return &v.sizeCache
  3852. case 2:
  3853. return &v.unknownFields
  3854. default:
  3855. return nil
  3856. }
  3857. }
  3858. file_Message_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  3859. switch v := v.(*MatchJoinUserRsp); i {
  3860. case 0:
  3861. return &v.state
  3862. case 1:
  3863. return &v.sizeCache
  3864. case 2:
  3865. return &v.unknownFields
  3866. default:
  3867. return nil
  3868. }
  3869. }
  3870. file_Message_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  3871. switch v := v.(*RoomStartGameReq); i {
  3872. case 0:
  3873. return &v.state
  3874. case 1:
  3875. return &v.sizeCache
  3876. case 2:
  3877. return &v.unknownFields
  3878. default:
  3879. return nil
  3880. }
  3881. }
  3882. file_Message_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  3883. switch v := v.(*RoomStartGameRsp); i {
  3884. case 0:
  3885. return &v.state
  3886. case 1:
  3887. return &v.sizeCache
  3888. case 2:
  3889. return &v.unknownFields
  3890. default:
  3891. return nil
  3892. }
  3893. }
  3894. file_Message_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  3895. switch v := v.(*GetUserInfoReq); i {
  3896. case 0:
  3897. return &v.state
  3898. case 1:
  3899. return &v.sizeCache
  3900. case 2:
  3901. return &v.unknownFields
  3902. default:
  3903. return nil
  3904. }
  3905. }
  3906. file_Message_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  3907. switch v := v.(*KickUserReq); i {
  3908. case 0:
  3909. return &v.state
  3910. case 1:
  3911. return &v.sizeCache
  3912. case 2:
  3913. return &v.unknownFields
  3914. default:
  3915. return nil
  3916. }
  3917. }
  3918. file_Message_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  3919. switch v := v.(*GetUserInfoRsp); i {
  3920. case 0:
  3921. return &v.state
  3922. case 1:
  3923. return &v.sizeCache
  3924. case 2:
  3925. return &v.unknownFields
  3926. default:
  3927. return nil
  3928. }
  3929. }
  3930. file_Message_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  3931. switch v := v.(*TKickEventRsp); i {
  3932. case 0:
  3933. return &v.state
  3934. case 1:
  3935. return &v.sizeCache
  3936. case 2:
  3937. return &v.unknownFields
  3938. default:
  3939. return nil
  3940. }
  3941. }
  3942. file_Message_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  3943. switch v := v.(*KickPlayerRsp); i {
  3944. case 0:
  3945. return &v.state
  3946. case 1:
  3947. return &v.sizeCache
  3948. case 2:
  3949. return &v.unknownFields
  3950. default:
  3951. return nil
  3952. }
  3953. }
  3954. file_Message_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  3955. switch v := v.(*FinishEventRsp); i {
  3956. case 0:
  3957. return &v.state
  3958. case 1:
  3959. return &v.sizeCache
  3960. case 2:
  3961. return &v.unknownFields
  3962. default:
  3963. return nil
  3964. }
  3965. }
  3966. file_Message_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  3967. switch v := v.(*PlayerRsp); i {
  3968. case 0:
  3969. return &v.state
  3970. case 1:
  3971. return &v.sizeCache
  3972. case 2:
  3973. return &v.unknownFields
  3974. default:
  3975. return nil
  3976. }
  3977. }
  3978. file_Message_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  3979. switch v := v.(*PlaneRsp); i {
  3980. case 0:
  3981. return &v.state
  3982. case 1:
  3983. return &v.sizeCache
  3984. case 2:
  3985. return &v.unknownFields
  3986. default:
  3987. return nil
  3988. }
  3989. }
  3990. file_Message_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  3991. switch v := v.(*RoomDjsRsp); i {
  3992. case 0:
  3993. return &v.state
  3994. case 1:
  3995. return &v.sizeCache
  3996. case 2:
  3997. return &v.unknownFields
  3998. default:
  3999. return nil
  4000. }
  4001. }
  4002. file_Message_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  4003. switch v := v.(*RoomJoinUserRsp); i {
  4004. case 0:
  4005. return &v.state
  4006. case 1:
  4007. return &v.sizeCache
  4008. case 2:
  4009. return &v.unknownFields
  4010. default:
  4011. return nil
  4012. }
  4013. }
  4014. file_Message_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  4015. switch v := v.(*GameStartRsp); i {
  4016. case 0:
  4017. return &v.state
  4018. case 1:
  4019. return &v.sizeCache
  4020. case 2:
  4021. return &v.unknownFields
  4022. default:
  4023. return nil
  4024. }
  4025. }
  4026. file_Message_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  4027. switch v := v.(*ThrowTheDiceReq); i {
  4028. case 0:
  4029. return &v.state
  4030. case 1:
  4031. return &v.sizeCache
  4032. case 2:
  4033. return &v.unknownFields
  4034. default:
  4035. return nil
  4036. }
  4037. }
  4038. file_Message_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  4039. switch v := v.(*ThrowTheDiceRsp); i {
  4040. case 0:
  4041. return &v.state
  4042. case 1:
  4043. return &v.sizeCache
  4044. case 2:
  4045. return &v.unknownFields
  4046. default:
  4047. return nil
  4048. }
  4049. }
  4050. file_Message_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  4051. switch v := v.(*PlaneStartReq); i {
  4052. case 0:
  4053. return &v.state
  4054. case 1:
  4055. return &v.sizeCache
  4056. case 2:
  4057. return &v.unknownFields
  4058. default:
  4059. return nil
  4060. }
  4061. }
  4062. file_Message_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  4063. switch v := v.(*PlaneStartRsp); i {
  4064. case 0:
  4065. return &v.state
  4066. case 1:
  4067. return &v.sizeCache
  4068. case 2:
  4069. return &v.unknownFields
  4070. default:
  4071. return nil
  4072. }
  4073. }
  4074. file_Message_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  4075. switch v := v.(*MoveReq); i {
  4076. case 0:
  4077. return &v.state
  4078. case 1:
  4079. return &v.sizeCache
  4080. case 2:
  4081. return &v.unknownFields
  4082. default:
  4083. return nil
  4084. }
  4085. }
  4086. file_Message_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  4087. switch v := v.(*MoveRsp); i {
  4088. case 0:
  4089. return &v.state
  4090. case 1:
  4091. return &v.sizeCache
  4092. case 2:
  4093. return &v.unknownFields
  4094. default:
  4095. return nil
  4096. }
  4097. }
  4098. file_Message_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  4099. switch v := v.(*TrusteeshipReq); i {
  4100. case 0:
  4101. return &v.state
  4102. case 1:
  4103. return &v.sizeCache
  4104. case 2:
  4105. return &v.unknownFields
  4106. default:
  4107. return nil
  4108. }
  4109. }
  4110. file_Message_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  4111. switch v := v.(*TrusteeshipRsp); i {
  4112. case 0:
  4113. return &v.state
  4114. case 1:
  4115. return &v.sizeCache
  4116. case 2:
  4117. return &v.unknownFields
  4118. default:
  4119. return nil
  4120. }
  4121. }
  4122. file_Message_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  4123. switch v := v.(*QuitReq); i {
  4124. case 0:
  4125. return &v.state
  4126. case 1:
  4127. return &v.sizeCache
  4128. case 2:
  4129. return &v.unknownFields
  4130. default:
  4131. return nil
  4132. }
  4133. }
  4134. file_Message_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  4135. switch v := v.(*QuitRsp); i {
  4136. case 0:
  4137. return &v.state
  4138. case 1:
  4139. return &v.sizeCache
  4140. case 2:
  4141. return &v.unknownFields
  4142. default:
  4143. return nil
  4144. }
  4145. }
  4146. file_Message_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  4147. switch v := v.(*EndGameRsp); i {
  4148. case 0:
  4149. return &v.state
  4150. case 1:
  4151. return &v.sizeCache
  4152. case 2:
  4153. return &v.unknownFields
  4154. default:
  4155. return nil
  4156. }
  4157. }
  4158. file_Message_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  4159. switch v := v.(*DissolveTheGameReq); i {
  4160. case 0:
  4161. return &v.state
  4162. case 1:
  4163. return &v.sizeCache
  4164. case 2:
  4165. return &v.unknownFields
  4166. default:
  4167. return nil
  4168. }
  4169. }
  4170. file_Message_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  4171. switch v := v.(*DissolveTheGameRsp); i {
  4172. case 0:
  4173. return &v.state
  4174. case 1:
  4175. return &v.sizeCache
  4176. case 2:
  4177. return &v.unknownFields
  4178. default:
  4179. return nil
  4180. }
  4181. }
  4182. file_Message_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  4183. switch v := v.(*PbErrorRsp); i {
  4184. case 0:
  4185. return &v.state
  4186. case 1:
  4187. return &v.sizeCache
  4188. case 2:
  4189. return &v.unknownFields
  4190. default:
  4191. return nil
  4192. }
  4193. }
  4194. file_Message_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  4195. switch v := v.(*GetRoomListReq); i {
  4196. case 0:
  4197. return &v.state
  4198. case 1:
  4199. return &v.sizeCache
  4200. case 2:
  4201. return &v.unknownFields
  4202. default:
  4203. return nil
  4204. }
  4205. }
  4206. file_Message_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  4207. switch v := v.(*GetRoomListRsp); i {
  4208. case 0:
  4209. return &v.state
  4210. case 1:
  4211. return &v.sizeCache
  4212. case 2:
  4213. return &v.unknownFields
  4214. default:
  4215. return nil
  4216. }
  4217. }
  4218. file_Message_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  4219. switch v := v.(*KickNotify); i {
  4220. case 0:
  4221. return &v.state
  4222. case 1:
  4223. return &v.sizeCache
  4224. case 2:
  4225. return &v.unknownFields
  4226. default:
  4227. return nil
  4228. }
  4229. }
  4230. file_Message_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  4231. switch v := v.(*RoomChangeOfHomeownerRsp); i {
  4232. case 0:
  4233. return &v.state
  4234. case 1:
  4235. return &v.sizeCache
  4236. case 2:
  4237. return &v.unknownFields
  4238. default:
  4239. return nil
  4240. }
  4241. }
  4242. file_Message_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  4243. switch v := v.(*GetUserMoneyReq); i {
  4244. case 0:
  4245. return &v.state
  4246. case 1:
  4247. return &v.sizeCache
  4248. case 2:
  4249. return &v.unknownFields
  4250. default:
  4251. return nil
  4252. }
  4253. }
  4254. file_Message_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
  4255. switch v := v.(*GetUserMoneyRsp); i {
  4256. case 0:
  4257. return &v.state
  4258. case 1:
  4259. return &v.sizeCache
  4260. case 2:
  4261. return &v.unknownFields
  4262. default:
  4263. return nil
  4264. }
  4265. }
  4266. file_Message_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
  4267. switch v := v.(*DiscReq); i {
  4268. case 0:
  4269. return &v.state
  4270. case 1:
  4271. return &v.sizeCache
  4272. case 2:
  4273. return &v.unknownFields
  4274. default:
  4275. return nil
  4276. }
  4277. }
  4278. file_Message_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
  4279. switch v := v.(*RoomQuitReq); i {
  4280. case 0:
  4281. return &v.state
  4282. case 1:
  4283. return &v.sizeCache
  4284. case 2:
  4285. return &v.unknownFields
  4286. default:
  4287. return nil
  4288. }
  4289. }
  4290. file_Message_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
  4291. switch v := v.(*RoomRestartReq); i {
  4292. case 0:
  4293. return &v.state
  4294. case 1:
  4295. return &v.sizeCache
  4296. case 2:
  4297. return &v.unknownFields
  4298. default:
  4299. return nil
  4300. }
  4301. }
  4302. file_Message_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
  4303. switch v := v.(*SendMsgReq); i {
  4304. case 0:
  4305. return &v.state
  4306. case 1:
  4307. return &v.sizeCache
  4308. case 2:
  4309. return &v.unknownFields
  4310. default:
  4311. return nil
  4312. }
  4313. }
  4314. file_Message_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
  4315. switch v := v.(*SendMsgRsp); i {
  4316. case 0:
  4317. return &v.state
  4318. case 1:
  4319. return &v.sizeCache
  4320. case 2:
  4321. return &v.unknownFields
  4322. default:
  4323. return nil
  4324. }
  4325. }
  4326. }
  4327. file_Message_proto_msgTypes[3].OneofWrappers = []interface{}{}
  4328. file_Message_proto_msgTypes[4].OneofWrappers = []interface{}{}
  4329. file_Message_proto_msgTypes[5].OneofWrappers = []interface{}{}
  4330. file_Message_proto_msgTypes[6].OneofWrappers = []interface{}{}
  4331. file_Message_proto_msgTypes[10].OneofWrappers = []interface{}{}
  4332. file_Message_proto_msgTypes[11].OneofWrappers = []interface{}{}
  4333. file_Message_proto_msgTypes[13].OneofWrappers = []interface{}{}
  4334. file_Message_proto_msgTypes[14].OneofWrappers = []interface{}{}
  4335. file_Message_proto_msgTypes[16].OneofWrappers = []interface{}{}
  4336. file_Message_proto_msgTypes[17].OneofWrappers = []interface{}{}
  4337. file_Message_proto_msgTypes[18].OneofWrappers = []interface{}{}
  4338. file_Message_proto_msgTypes[23].OneofWrappers = []interface{}{}
  4339. file_Message_proto_msgTypes[24].OneofWrappers = []interface{}{}
  4340. file_Message_proto_msgTypes[25].OneofWrappers = []interface{}{}
  4341. file_Message_proto_msgTypes[26].OneofWrappers = []interface{}{}
  4342. file_Message_proto_msgTypes[27].OneofWrappers = []interface{}{}
  4343. file_Message_proto_msgTypes[28].OneofWrappers = []interface{}{}
  4344. file_Message_proto_msgTypes[29].OneofWrappers = []interface{}{}
  4345. file_Message_proto_msgTypes[30].OneofWrappers = []interface{}{}
  4346. file_Message_proto_msgTypes[31].OneofWrappers = []interface{}{}
  4347. file_Message_proto_msgTypes[33].OneofWrappers = []interface{}{}
  4348. file_Message_proto_msgTypes[35].OneofWrappers = []interface{}{}
  4349. file_Message_proto_msgTypes[37].OneofWrappers = []interface{}{}
  4350. file_Message_proto_msgTypes[39].OneofWrappers = []interface{}{}
  4351. file_Message_proto_msgTypes[41].OneofWrappers = []interface{}{}
  4352. file_Message_proto_msgTypes[51].OneofWrappers = []interface{}{}
  4353. type x struct{}
  4354. out := protoimpl.TypeBuilder{
  4355. File: protoimpl.DescBuilder{
  4356. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  4357. RawDescriptor: file_Message_proto_rawDesc,
  4358. NumEnums: 2,
  4359. NumMessages: 57,
  4360. NumExtensions: 0,
  4361. NumServices: 0,
  4362. },
  4363. GoTypes: file_Message_proto_goTypes,
  4364. DependencyIndexes: file_Message_proto_depIdxs,
  4365. EnumInfos: file_Message_proto_enumTypes,
  4366. MessageInfos: file_Message_proto_msgTypes,
  4367. }.Build()
  4368. File_Message_proto = out.File
  4369. file_Message_proto_rawDesc = nil
  4370. file_Message_proto_goTypes = nil
  4371. file_Message_proto_depIdxs = nil
  4372. }