From 1764c308d78c1d8aeb89c21c7605f675ea4bc9b8 Mon Sep 17 00:00:00 2001 From: lvxinran Date: Mon, 5 Aug 2019 20:28:40 +0800 Subject: [PATCH 1/4] =?UTF-8?q?=E8=8E=B7=E5=8F=96=E7=AC=AC=E4=B8=80?= =?UTF-8?q?=E7=BC=96=E9=98=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/CommonProto.proto | 11 +++++++++++ protos/MessageTypeProto.proto | 3 +++ 2 files changed, 14 insertions(+) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index 5d595e1..d38d1f0 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -524,3 +524,14 @@ option optimize_for = SPEED; optional int32 score = 2; optional int32 rank =3; } + + message PlayerTeamInfo{ + optional int32 uid = 1; + optional int32 level =2; + optional string name =3; + optional int32 head =4; + optional int32 headFrame = 5; + optional Team team = 6; + optional int32 totalForce=7; + + } diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index ad0917f..6c89fb4 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -294,6 +294,9 @@ enum MessageType{ GETF_EXPERT_RANK_INFO_REQUEST = 16648; GETF_EXPERT_RANK_INFO_RESPONSE = 16649; + + GET_PLAYER_ONE_TEAM_INFO_REQUEST = 16650;//获取第一编队信息 + GET_PLAYER_ONE_TEAM_INFO_RESPONSE = 16651; // H 10700 HERO_RAND_REQQUEST = 10701; From 83ecb337f2d2420ab1405e553ca50933e5d924e8 Mon Sep 17 00:00:00 2001 From: lvxinran Date: Mon, 5 Aug 2019 20:31:40 +0800 Subject: [PATCH 2/4] =?UTF-8?q?=E5=86=B2=E7=AA=81=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/CommonProto.proto | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index d38d1f0..5c6956c 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -533,5 +533,9 @@ option optimize_for = SPEED; optional int32 headFrame = 5; optional Team team = 6; optional int32 totalForce=7; - + } + + message SignInInfo{ + optional int32 dayIndex = 1; + optional int32 state = 2; } From edc539754caaee840cc0af23478925ac3b553f0e Mon Sep 17 00:00:00 2001 From: lvxinran Date: Mon, 5 Aug 2019 20:36:55 +0800 Subject: [PATCH 3/4] =?UTF-8?q?=E8=8E=B7=E5=8F=96=E5=8D=8F=E8=AE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/CommonProto.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index 5c6956c..58eafe6 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -533,6 +533,8 @@ option optimize_for = SPEED; optional int32 headFrame = 5; optional Team team = 6; optional int32 totalForce=7; + repeated int32 specialMons = 8 + } message SignInInfo{ From b6811294a3aeb24c6b772a386026a101aaba4fc3 Mon Sep 17 00:00:00 2001 From: lvxinran Date: Mon, 5 Aug 2019 20:42:26 +0800 Subject: [PATCH 4/4] =?UTF-8?q?=E8=8E=B7=E5=8F=96=E5=BC=82=E5=A6=96?= =?UTF-8?q?=E7=BC=96=E9=98=9F=E5=8D=8F=E8=AE=AE=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/CommonProto.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index 58eafe6..f06be5f 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -533,7 +533,7 @@ option optimize_for = SPEED; optional int32 headFrame = 5; optional Team team = 6; optional int32 totalForce=7; - repeated int32 specialMons = 8 + repeated int32 PokemonInfos = 8; }