From fd51fcd89cc3d7d2aef94137165e7875b8033524 Mon Sep 17 00:00:00 2001 From: yuanshuai <243578945@qq.com> Date: Thu, 30 Sep 2021 11:49:55 +0800 Subject: [PATCH 1/7] =?UTF-8?q?=E7=A5=9E=E9=AD=82=E5=8D=8F=E8=AE=AE?= =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/CommonProto.proto | 14 +++++++++++++- protos/MessageTypeProto.proto | 3 ++- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index c26c1d8..6022937 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -107,6 +107,8 @@ option optimize_for = SPEED; repeated string jewels = 14;//宝器 optional int32 createtype = 15;//创建类型 1猎妖援助 optional int32 changeId = 16;//置换模板id 默认0 + repeated HeroGodSoulInfo godSoulList=17;//神魂绑定数据 + repeated HeroBeBindGodSoulInfo godSoulBeBindList=18;//神魂反绑数据 } message PokemonInfo{ @@ -1096,4 +1098,14 @@ option optimize_for = SPEED; optional int32 heroStaticid = 1;//英雄静态id optional int32 likableNum = 2;//好感度值 } - \ No newline at end of file + ///神魂绑定数据 + message HeroGodSoulInfo{ + optional int32 level = 1;//神魂等级 + repeated string heros = 2;//当前等级绑定的神将 + } + + //神魂被绑定(反绑)数据 + message HeroBeBindGodSoulInfo{ + optional int32 level = 1;//神魂等级 + optional string heroId = 2;//当前等级绑定的神将 + } \ No newline at end of file diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 1e5ebe7..2f77b4e 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1113,7 +1113,8 @@ enum MessageType{ GET_LIKABLE_DATA_REQUEST = 20207;//获取英雄好感度数据请求 GET_LIKABLE_DATA_RESPONSE = 20208; - + HERO_GOD_SOUL_BIND_REQUEST = 20209;//神将绑定神魂请求 + HERO_GOD_SOUL_BIND_RESPONSE = 20210; From 9f5403b8663ea9cf27d9b0f594f6d662c6846861 Mon Sep 17 00:00:00 2001 From: yuanshuai <243578945@qq.com> Date: Wed, 13 Oct 2021 18:12:39 +0800 Subject: [PATCH 2/7] =?UTF-8?q?=E7=A5=9E=E9=AD=82=E6=BC=8F=E6=8F=90?= =?UTF-8?q?=E4=BA=A4=E5=8D=8F=E8=AE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/HeroInfoProto.proto | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/protos/HeroInfoProto.proto b/protos/HeroInfoProto.proto index f3ab6f0..1be83d3 100644 --- a/protos/HeroInfoProto.proto +++ b/protos/HeroInfoProto.proto @@ -458,7 +458,12 @@ import "CommonProto.proto"; } - + //英雄神魂绑定协议 + message HeroGodSoulBindRequest{ + optional string heroId = 1;//当前神魂升级神将 + optional int32 godSoulLv = 2;//神魂等级 + repeated string bindHeros=3;//被绑定神将 + } From d02da5bb58954a60d7a41dbe0e6f1a6f0b56cd05 Mon Sep 17 00:00:00 2001 From: yuanshuai <243578945@qq.com> Date: Thu, 21 Oct 2021 18:31:04 +0800 Subject: [PATCH 3/7] =?UTF-8?q?=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/MessageTypeProto.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 7b86631..1d16f31 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1122,8 +1122,8 @@ enum MessageType{ PRACTICE_SKILL_UP_REQUEST=20209;//修行技能升级请求 PRACTICE_SKILL_UP_RESPONSE=20210; - HERO_GOD_SOUL_BIND_REQUEST = 20209;//神将绑定神魂请求 - HERO_GOD_SOUL_BIND_RESPONSE = 20210; + HERO_GOD_SOUL_BIND_REQUEST = 20211;//神将绑定神魂请求 + HERO_GOD_SOUL_BIND_RESPONSE = 20212; From fd69df13e911810571f9c7b23184fdb93decd192 Mon Sep 17 00:00:00 2001 From: yuanshuai <243578945@qq.com> Date: Fri, 22 Oct 2021 16:12:50 +0800 Subject: [PATCH 4/7] =?UTF-8?q?=E7=A5=9E=E9=AD=82=E7=9B=B8=E5=85=B3?= =?UTF-8?q?=E5=8D=8F=E8=AE=AE=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/CommonProto.proto | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index 4962433..b3d5149 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -87,6 +87,18 @@ option optimize_for = SPEED; } + ///神魂绑定数据 + message HeroGodSoulInfo{ + optional int32 level = 1;//神魂等级 + repeated string heros = 2;//当前等级绑定的神将 + } + + //神魂被绑定(反绑)数据 + message HeroBeBindGodSoulInfo{ + optional int32 level = 1;//神魂等级 + optional string heroId = 2;//当前等级绑定的神将 + } + message Hero{ optional string id = 1; optional int32 heroId = 2; @@ -1102,17 +1114,7 @@ option optimize_for = SPEED; optional int32 likableNum = 2;//好感度值 } - ///神魂绑定数据 - message HeroGodSoulInfo{ - optional int32 level = 1;//神魂等级 - repeated string heros = 2;//当前等级绑定的神将 - } - - //神魂被绑定(反绑)数据 - message HeroBeBindGodSoulInfo{ - optional int32 level = 1;//神魂等级 - optional string heroId = 2;//当前等级绑定的神将 - } + // 御剑飞行,人物信息 message ModelUserInfo{ From 660197647446e35633d4300fc765ae4246e15cee Mon Sep 17 00:00:00 2001 From: yuanshuai <243578945@qq.com> Date: Mon, 25 Oct 2021 10:27:37 +0800 Subject: [PATCH 5/7] =?UTF-8?q?=E7=A5=9E=E9=AD=82=E5=8D=8F=E8=AE=AE?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/CommonProto.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index b3d5149..007400a 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -98,7 +98,7 @@ option optimize_for = SPEED; optional int32 level = 1;//神魂等级 optional string heroId = 2;//当前等级绑定的神将 } - + message Hero{ optional string id = 1; optional int32 heroId = 2; @@ -119,7 +119,7 @@ option optimize_for = SPEED; optional int32 createtype = 15;//创建类型 1猎妖援助 optional int32 changeId = 16;//置换模板id 默认0 repeated HeroGodSoulInfo godSoulList=17;//神魂绑定数据 - repeated HeroBeBindGodSoulInfo godSoulBeBindList=18;//神魂反绑数据 + optional int32 godSoulLv=18;//神将神魂等级 } message PokemonInfo{ From 04d0c38171ca32352a2eef4021077e86c26e11ce Mon Sep 17 00:00:00 2001 From: yuanshuai <243578945@qq.com> Date: Tue, 26 Oct 2021 16:00:37 +0800 Subject: [PATCH 6/7] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=A5=9E=E9=AD=82?= =?UTF-8?q?=E7=AD=89=E7=BA=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/CommonProto.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index b796731..73b6a27 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -672,6 +672,7 @@ option optimize_for = SPEED; optional int32 level =4; optional int32 position=5; optional int32 skinId = 6; + optional int32 godSoulLv = 7;//神魂等级 } message TeamOneTeamInfo{ From 8a2a6ec9ab4979948c9154dbcc1b23f3308a6034 Mon Sep 17 00:00:00 2001 From: yuanshuai <243578945@qq.com> Date: Fri, 29 Oct 2021 11:37:35 +0800 Subject: [PATCH 7/7] =?UTF-8?q?=E6=88=98=E4=B8=AD=E7=A5=9E=E9=AD=82?= =?UTF-8?q?=E7=AD=89=E7=BA=A7=E6=95=B0=E6=8D=AE=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/CommonProto.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index e4c6da7..e68b396 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -139,6 +139,7 @@ option optimize_for = SPEED; optional string realId = 7;//唯一id optional int64 forceScore = 8;//历史最高战斗力 optional int32 playerSex=9;//用户性别(为了主角技能施法展示) + optional int32 godSoulLv=10;//神魂等级 }