Merge branch 'master_test_hw' into master_test_hw_four_challenge

master_huanxiang
duhui 2021-03-08 15:18:50 +08:00
commit df7f70ea43
3 changed files with 81 additions and 2 deletions

View File

@ -283,6 +283,56 @@ import "CommonProto.proto";
optional SkinInfo skinInfo = 1;//
}
//
message OpenResonanceRequest {
optional int32 gridId = 1; // id
}
//
message ResonanceRequest{
optional string heroId = 1; // id
optional int32 gridId = 2; // id
optional int32 type = 3; // 1: 2 3:鸿使 4:鸿使
}
message ResonanceResponse{
optional int32 leftTime = 1; //
}
//
message CleanResonanceTimeRequest{
optional int32 gridId = 2; // id
optional int32 type = 1; // 1cd 2鸿使cd
}
// 鸿鸿使
message HongmengHeroInfo{
optional int32 gridId = 1; //
optional string heroId = 2; // id
optional int64 time = 3; //
}
//
message HongmengAddition{
optional int32 additionType = 1; // 1 2 3 4 5
optional int32 value = 2; //
optional int32 heroTid = 3; // 0鸿-1id
}
// 鸿
message GetHongmengInfoResponse{
}
// 鸿
message HongmengInfoIndication{
repeated HongmengHeroInfo hongmengGuards = 1; // 鸿鸿使
repeated HongmengAddition hongmengAdditions = 2; //
repeated HongmengHeroInfo hongmengResonacnes = 3; // 使
optional int32 hongmengTabletMax = 4; // 鸿,0鸿
}
// 鸿
message HongmengSteleNewHandIndication{
optional int32 state = 1;// 鸿
}

View File

@ -531,6 +531,27 @@ enum MessageType{
HERO_SKIN_CHANGE_RESPONSE = 10712;
HERO_SKIN_USE_INDICATION = 10713;//
HONGMENG_OPEN_RESONANCE_REQUEST = 10714; //
HONGMENG_OPEN_RESONANCE_RESPONSE = 10715;
HONGMENG_RESONANCE_REQUEST = 10716; //
HONGMENG_RESONANCE_RESPONSE = 10717;
HONGMENG_CLEAN_TIME_RESQUEST = 10718; //
HONGMENG_CLEAN_TIME_RESPONSE = 10719;
HONGMENG_UPGRADE_REQUEST = 10720; // 鸿
HONGMENG_UPGRADE_RESPONSE = 10721;
HONGMENG_GET_INFO_REQUEST = 10722; // 鸿
HONGMENG_GET_INFO_RESPONSE = 10723;
HONGMENG_INFO_INDICATION = 10724; // 鸿
HONGMENG_STELE_NEW_HAND_INDICATION = 10725;//鸿
// I 10800
// J 10900
@ -584,6 +605,8 @@ enum MessageType{
LUCKWHEEL_POOL_INDICATION = 11102;//
LOGIN_CONFIRM_REQUEST = 11103; //
LOGIN_CONFIRM_RESPONSE = 11104;
// M 11200
MAP_ENTER_REQUEST = 11200; //
MAP_ENTER_RESPONSE = 11201;

View File

@ -37,6 +37,7 @@ import "CommonProto.proto";
optional string str = 2;
}
message GetPlayerInfoResponse{
optional Player player = 1;
repeated NewPlayerGuidePoint newPlayerGuidePoint =2;
@ -203,6 +204,8 @@ import "CommonProto.proto";
message RandomNameResponse{
optional string randomName =1;
optional string preName = 2;
optional string postName = 3;
}
message ReNameRequest{
@ -663,6 +666,7 @@ import "CommonProto.proto";
message RankRequest{
optional int32 type = 1;//
optional int32 activiteId = 2;//id
optional int32 index = 3;//1.1-20 20.21-40....
}
message RankResponse{
repeated UserRank ranks = 1;
@ -837,4 +841,6 @@ import "CommonProto.proto";
}
message UseHeadFrameResponse{
optional int32 validTime = 1;//
}
message LoginConfirmRequest{
}