This commit is contained in:
sk 2024-08-15 16:30:34 +08:00
parent 3785ce2859
commit 70e09ba502
6 changed files with 1553 additions and 699 deletions

View File

@ -6,7 +6,7 @@
"VerifyClientVersion":true,
"SrvMaintain":false,
"WhiteHttpAddr": [],
"HundredScenePreCreate":true,
"HundredScenePreCreate":false,
"WriteEventLog": true,
"SpreadAccountQPT":100,
"FakeVerifyCode":"123456",

View File

@ -66,7 +66,7 @@
- 2720~2739
#### tournament锦标赛
- 2740~2759
- 2740~2779
#### RankMatch 排位赛
- 2780~2800

File diff suppressed because it is too large Load Diff

View File

@ -20,6 +20,10 @@ enum TOURNAMENTID{
PACKET_TM_SCTMSeasonRank = 2754;//
PACKET_TM_CSTMSeasonAward = 2755;//
PACKET_TM_SCTMSeasonAward = 2756;//
PACKET_TM_CSMatchList = 2757;//
PACKET_TM_SCMatchList = 2758;//
PACKET_TM_CSRoomList = 2759; //
PACKET_TM_SCRoomList = 2760; //
}
//
//PACKET_TM_CSTMInfo
@ -65,6 +69,7 @@ message TMInfo{
repeated string OnChannelName = 21;//
int32 ShowId = 22; //
int32 AwardNum = 23; //
int32 AudienceSwitch = 27; // 1 2
}
message MatchTypeInfo{
@ -187,4 +192,57 @@ message CSTMSeasonAward {
message SCTMSeasonAward {
int32 Lv = 1;//
int32 Code = 2;//0 1
}
//PACKET_TM_CSMatchList
message CSMatchList{
int64 MatchId = 1; // id 0
int32 Tp = 2; // 0 1
}
message MatchPlayer{
int32 SnId = 1; // id
string Name = 2; //
string HeadUrl = 3;//
int32 UseRoleId = 4;//使id
int32 UseSkinId = 5; // id
int32 Rank = 6;//
int32 Score = 7;//
}
message MatchInfo{
int64 MatchId = 1; // id
int64 InstanceId = 2; // id
string Name = 3; //
int32 Round = 4; //
int32 TotalRound = 5; //
int32 RemainNum = 6; //
repeated MatchPlayer Players = 7; //
}
message SCTMMatchList{
repeated MatchInfo List = 1;
int64 MatchId = 2;
int32 Tp = 3;
}
//PACKET_TM_CSRoomList
message CSRoomList{
int64 Id = 1; // id 0
int32 Tp = 2; // 0 1
}
message MatchRoom{
int64 RoomId = 1; // id
int64 MatchId = 2; // id
int64 InstanceId = 3; // id
int32 Round = 4; //
int32 TotalRound = 5; //
repeated MatchPlayer Players = 7; //
}
message SCRoomList{
repeated MatchRoom List = 1;
int64 Id = 2;
int32 Tp = 3;
}

File diff suppressed because it is too large Load Diff

View File

@ -490,6 +490,7 @@ message GameMatchDate {
int32 CardType = 24; //
int32 ShowId = 25; //
int32 AwardNum = 26; //
int32 AudienceSwitch = 27; // 1 2
}
// etcd /game/game_match
@ -889,4 +890,11 @@ message GuideConfig {
string Platform = 1; //
int32 On = 2; // 1 2
int32 Skip = 3; // 1 2
}
// etcd /game/match_audience
message MatchAudience {
string Platform = 1; //
int32 SnId = 2; // ID
int64 Ts = 3; //
}