From 16545af2e9ee4b504a3268ade90afa0425a96e8d Mon Sep 17 00:00:00 2001 From: xuexinpeng Date: Tue, 7 Sep 2021 13:56:44 +0800 Subject: [PATCH] =?UTF-8?q?=E7=8E=89=E8=99=9A=E8=AE=BA=E9=81=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/ArenaInfoProto.proto | 15 +++++++-------- protos/MessageTypeProto.proto | 15 +++++++++++++-- 2 files changed, 20 insertions(+), 10 deletions(-) diff --git a/protos/ArenaInfoProto.proto b/protos/ArenaInfoProto.proto index 895687e..a66922f 100644 --- a/protos/ArenaInfoProto.proto +++ b/protos/ArenaInfoProto.proto @@ -160,13 +160,12 @@ import "CommonProto.proto"; message CrossYuXuLunDaoChallengeResponse{ optional int32 myScore = 1 ; //我的分数值 optional int32 defScore =2; // 对手分数值 - repeated ArenaEnemy arenaEnemys = 3; //新的一批对手信息 - optional FightData fightData =4; // 战斗数据 - optional int32 fightResult = 5 ;// 战斗结果 + repeated ArenaPersonInfo arenaEnemys = 3; //新的一批对手信息 + repeated FightData fightData =4; // 战斗数据 + repeated int32 fightResult = 5 ;// 战斗结果 optional Drop drop = 6; - optional int32 myscore = 7; //我的积分 - optional int32 myRank =8 ;// 我的排名 - optional int32 freeTimes =9 ;// 今日免费次数 + optional int32 myRank =7 ;// 我的排名 + optional int32 freeTimes =8 ;// 今日免费次数 } message CrossYuXuLunDaoGetInfoRequest{ @@ -174,7 +173,7 @@ import "CommonProto.proto"; message CrossYuXuLunDaoGetInfoResponse{ optional bool isFirst= 1;//是否赛季第一次请求 - repeated ArenaEnemy arenaEnemys = 2; //新的一批对手信息 + repeated ArenaPersonInfo arenaEnemys = 2; //新的一批对手信息 optional int32 oldMyscore = 3; //被挑战前积分 optional int32 newMyscore = 4; //被挑战后积分 optional int32 oldLevelId = 5; //被挑战前段位 @@ -187,7 +186,7 @@ import "CommonProto.proto"; message CrossYuXuLunDaoChangeEnemyInfoRequest{ } message CrossYuXuLunDaoChangeEnemyInfoResponse{ - repeated ArenaEnemy arenaEnemys = 1; //新的一批对手信息 + repeated ArenaPersonInfo arenaEnemys = 1; //新的一批对手信息 } diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 341ebe4..5df8332 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1286,8 +1286,7 @@ enum MessageType{ //跨服天梯挑战与被挑战 战斗记录 GetWorldArenaRecordInfoRequest= 900007; GetWorldArenaRecordInfoResponse= 900008; - - + //gs --》word GetGSUserArenaInfoRequest = 900009; GetGSUserArenaInfoResponse = 900010; @@ -1314,6 +1313,14 @@ enum MessageType{ ArenaClearInfoRequest = 900021; GetWorldArenaInfoIndication = 900022; + //跨服玉虚论道 + CrossYuXuLunDaoGetInfoRequest = 900023; + CrossYuXuLunDaoGetInfoResponse = 900024; + CrossYuXuLunDaoChallengeRequest = 900025; + CrossYuXuLunDaoChallengeResponse = 900026; + CrossYuXuLunDaoChangeEnemyInfoRequest = 900027; + CrossYuXuLunDaoChangeEnemyInfoResponse = 900028; + ReplayWorldArenaRequest = 9000023; ReplayWorldArenaResponse = 9000024; @@ -1321,6 +1328,10 @@ enum MessageType{ IsCrossResponse = 9000026; IsCrossIndication = 9000027; + + + + }