diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index 56d7ffb..41677cd 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -338,3 +338,23 @@ option optimize_for = SPEED; optional int32 arenaLevel = 10; //区域等级 } + + message UserMissionInfo{ + optional int32 missionId =1; + optional int32 progress =2; //进度 + optional int32 state = 3; //0:未完成 1:完成未领取 2:已达成(已领取) + optional int32 type =4 ;// 任务类型 1:vip任务 + + } + + message VipMissionInfo{ + optional int32 vipLevel =1; //vip等级 + repeated UserMissionInfo UserMissionInfo =2; //VIP任务详情 + optional int32 hadTaked = 3 ;//是否领取特权等级礼包 1:已领取 0:未领取 + } + + message MissionUpdateListIndication{ + repeated UserMissionInfo UserMissionInfo =2; //任务更新详情 + } + + diff --git a/protos/FightInfoProto.proto b/protos/FightInfoProto.proto index f7f698d..9737211 100644 --- a/protos/FightInfoProto.proto +++ b/protos/FightInfoProto.proto @@ -89,8 +89,6 @@ import "CommonProto.proto"; message GetAdventureStateInfoResponse{ repeated AdventureStateInfo adventureStateInfoList = 1; optional int32 nextBossFlushTime = 2; //boss发现下次时间(下次请求刷新发现boss ADVENTURE_FLUSH_BOSS_REQUEST) - optional int32 buyTimsPerDay =3; // 每日已消耗材料快速领取挂机奖励次数 - optional int32 dayChallengeTimes =4;// 每日已消耗挑战次数 } diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 1030b28..373cc08 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -133,6 +133,9 @@ enum MessageType{ GET_FUNCTIONOFTIME_REQUEST = 16630; //获取功能开放时间 GET_FUNCTIONOFTIME_RESPONSE = 16631; + GET_VIP_MISSION_REQUEST = 16632; //获取vip任务详情 + GET_VIP_MISSION_REPONSE = 16633; + // H 10700 HERO_RAND_REQQUEST = 10701; HERO_RAND_RESPONSE = 10702; @@ -176,6 +179,8 @@ enum MessageType{ MAP_FAST_FIGHT_REQUEST = 11218; // 快速战斗结算 MAP_FAST_FIGHT_RESPONSE = 11219; + + MISSION_UPDATE_INDICATION = 111220; //任务更细 // N 11300 // O 11400 // P 11500 @@ -241,6 +246,12 @@ enum MessageType{ // V 12100 VIEW_FIGHTREPLAY_REQUEST = 12100; // 查看战斗回放 VIEW_FIGHTREPLAY_RESPONSE = 12101; + + VIP_LEVELUP_REQEUST = 12102; //VIP等级提升 + VIP_LEVELUP_RESPONSE = 12103; + + VIP_TAKE_LEVELREWARD_REQUEST = 12104; //领取vip等级礼包 + VIP_TAKE_LEVELREWARD_RESPONSE = 12105; // W 12200 WORKSHOP_FOUNDATION_REQUEST = 12200; //基础打造 WORKSHOP_FOUNDATION_RESPONSE = 12201; diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index 1fb009f..3f89ebb 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -156,7 +156,6 @@ import "CommonProto.proto"; message GetSecretBoxInfoResponse{ optional int32 season =1;//当前周期id optional int32 count =2; //总抽取次数 - optional int32 dayCount=3; // 今日抽取次数 repeated SecretBoxFreeUseInfo secretBoxFreeUseInfo =4; // 免费已使用信息 } @@ -198,4 +197,15 @@ import "CommonProto.proto"; } + message GetVipMissionResponse{ + optional VipMissionInfo vipMissionInfo =1; + } + + message VipLevelUpResponse{ + optional VipMissionInfo vipMissionInfo =1; + } + + + +