mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-12-18 18:05:05 +01:00
[Anime Game Version update] Support 2.7 (#1072)
* feature(2.7 version): support 2.7 version & upload new protos 1. Support GC in GI 2.7.0; 2. Upload new protos; 3. Fix some bugs cuz by new protos. BREAKING CHANGE: all * fix(database helper): fix player uid issues * fix(ability embryo): uint32 to fixed32 * fix(proto): map mark rename MAP_MARK_FROM_TYPE_NOE to MAP_MARK_FROM_TYPE_NONE * fix(game version): change game version to 2.7.0 * perf(proto): remove unused protos 1. Remove unused protos; 2. Temporarily commented out some of the proto fields. * fix(proto): uint32 to fixed32
This commit is contained in:
@@ -3,33 +3,28 @@ syntax = "proto3";
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
import "TowerCurLevelRecord.proto";
|
||||
import "TowerMonthlyBrief.proto";
|
||||
import "TowerFloorRecord.proto";
|
||||
import "TowerMonthlyBrief.proto";
|
||||
|
||||
// CmdId: 2449
|
||||
// EnetChannelId: 0
|
||||
// EnetIsReliable: true
|
||||
message TowerAllDataRsp {
|
||||
enum CmdId {
|
||||
option allow_alias = true;
|
||||
NONE = 0;
|
||||
ENET_CHANNEL_ID = 0;
|
||||
ENET_IS_RELIABLE = 1;
|
||||
CMD_ID = 2461;
|
||||
}
|
||||
|
||||
uint32 tower_schedule_id = 1;
|
||||
repeated TowerFloorRecord tower_floor_record_list = 2;
|
||||
uint32 daily_floor_id = 3;
|
||||
uint32 daily_level_index = 4;
|
||||
TowerCurLevelRecord cur_level_record = 5;
|
||||
uint32 next_schedule_change_time = 6;
|
||||
map<uint32, uint32> floor_open_time_map = 7;
|
||||
bool is_first_interact = 8;
|
||||
TowerMonthlyBrief monthly_brief = 9;
|
||||
uint32 skip_to_floor_index = 10;
|
||||
uint32 commemorative_reward_id = 11;
|
||||
map<uint32, uint32> skip_floor_granted_reward_item_map = 12;
|
||||
uint32 valid_tower_record_num = 13;
|
||||
int32 retcode = 14;
|
||||
bool is_finished_entrance_floor = 15;
|
||||
uint32 schedule_start_time = 16;
|
||||
TowerMonthlyBrief last_schedule_monthly_brief = 17;
|
||||
uint32 tower_schedule_id = 13;
|
||||
repeated TowerFloorRecord tower_floor_record_list = 12;
|
||||
uint32 daily_floor_id = 9;
|
||||
uint32 daily_level_index = 6;
|
||||
TowerCurLevelRecord cur_level_record = 2;
|
||||
uint32 next_schedule_change_time = 8;
|
||||
map<uint32, uint32> floor_open_time_map = 11;
|
||||
bool is_first_interact = 14;
|
||||
TowerMonthlyBrief monthly_brief = 1;
|
||||
uint32 skip_to_floor_index = 3;
|
||||
uint32 commemorative_reward_id = 15;
|
||||
map<uint32, uint32> skip_floor_granted_reward_item_map = 5;
|
||||
uint32 valid_tower_record_num = 10;
|
||||
int32 retcode = 4;
|
||||
bool is_finished_entrance_floor = 7;
|
||||
uint32 schedule_start_time = 490;
|
||||
TowerMonthlyBrief last_schedule_monthly_brief = 395;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user