mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-15 08:24:52 +01:00
33 lines
1.0 KiB
C#
33 lines
1.0 KiB
C#
using Google.Protobuf.WellKnownTypes;
|
|
using nksrv.Utils;
|
|
|
|
namespace nksrv.LobbyServer.Msgs.Simroom
|
|
{
|
|
[PacketPath("/simroom/get")]
|
|
public class GetSimRoomData : LobbyMsgHandler
|
|
{
|
|
protected override async Task HandleAsync()
|
|
{
|
|
var req = await ReadData<ReqGetSimRoom>();
|
|
|
|
var response = new ResGetSimRoom()
|
|
{
|
|
OverclockData = new()
|
|
{
|
|
CurrentSeasonData = new()
|
|
{
|
|
SeasonStartDate = Timestamp.FromDateTimeOffset(DateTime.UtcNow),
|
|
SeasonEndDate = Timestamp.FromDateTimeOffset(DateTime.UtcNow.AddDays(7))
|
|
},
|
|
CurrentSeasonHighScore = new(),
|
|
CurrentSubSeasonHighScore = new(),
|
|
LatestOption = new()
|
|
},
|
|
NextLegacyBuffResetDate = Timestamp.FromDateTimeOffset(DateTime.UtcNow.AddDays(7))
|
|
};
|
|
// TODO
|
|
await WriteDataAsync(response);
|
|
}
|
|
}
|
|
}
|