62d0e6b4d7
Add tabs for play result Reformat game data manager
83 lines
2.8 KiB
C#
83 lines
2.8 KiB
C#
using System.Collections.Immutable;
|
|
using System.Net.Http.Json;
|
|
using SharedProject.Enums;
|
|
using TaikoWebUI.Shared.Models;
|
|
using Throw;
|
|
|
|
namespace TaikoWebUI.Services;
|
|
|
|
public class GameDataService : IGameDataService
|
|
{
|
|
private readonly HttpClient client;
|
|
|
|
private readonly Dictionary<uint, MusicDetail> musicMap = new();
|
|
|
|
public GameDataService(HttpClient client)
|
|
{
|
|
this.client = client;
|
|
}
|
|
|
|
public async Task InitializeAsync(string dataBaseUrl)
|
|
{
|
|
var musicInfo = await client.GetFromJsonAsync<MusicInfo>($"{dataBaseUrl}/data/musicinfo.json");
|
|
var wordList = await client.GetFromJsonAsync<WordList>($"{dataBaseUrl}/data/wordlist.json");
|
|
var musicOrder = await client.GetFromJsonAsync<MusicOrder>($"{dataBaseUrl}/data/music_order.json");
|
|
|
|
musicInfo.ThrowIfNull();
|
|
wordList.ThrowIfNull();
|
|
musicOrder.ThrowIfNull();
|
|
|
|
// To prevent duplicate entries in wordlist
|
|
var dict = wordList.WordListEntries.GroupBy(entry => entry.Key)
|
|
.ToImmutableDictionary(group => group.Key, group => group.First());
|
|
foreach (var music in musicInfo.Items)
|
|
{
|
|
var songNameKey = $"song_{music.Id}";
|
|
var songArtistKey = $"song_sub_{music.Id}";
|
|
|
|
var musicName = dict.GetValueOrDefault(songNameKey, new WordListEntry());
|
|
var musicArtist = dict.GetValueOrDefault(songArtistKey, new WordListEntry());
|
|
|
|
var musicSongId = music.SongId;
|
|
var musicDetail = new MusicDetail
|
|
{
|
|
SongId = musicSongId,
|
|
SongName = musicName.JapaneseText,
|
|
ArtistName = musicArtist.JapaneseText,
|
|
Genre = music.Genre
|
|
};
|
|
|
|
musicMap.TryAdd(musicSongId, musicDetail);
|
|
}
|
|
|
|
for (var index = 0; index < musicOrder.Order.Count; index++)
|
|
{
|
|
var musicOrderEntry = musicOrder.Order[index];
|
|
var songId = musicOrderEntry.SongId;
|
|
if (musicMap.ContainsKey(songId))
|
|
{
|
|
musicMap[songId].Index = index;
|
|
}
|
|
}
|
|
}
|
|
|
|
public string GetMusicNameBySongId(uint songId)
|
|
{
|
|
return musicMap.TryGetValue(songId, out var musicDetail) ? musicDetail.SongName : string.Empty;
|
|
}
|
|
|
|
public string GetMusicArtistBySongId(uint songId)
|
|
{
|
|
return musicMap.TryGetValue(songId, out var musicDetail) ? musicDetail.ArtistName : string.Empty;
|
|
}
|
|
public SongGenre GetMusicGenreBySongId(uint songId)
|
|
{
|
|
return musicMap.TryGetValue(songId, out var musicDetail) ? musicDetail.Genre : SongGenre.Variety;
|
|
}
|
|
|
|
public int GetMusicIndexBySongId(uint songId)
|
|
{
|
|
return musicMap.TryGetValue(songId, out var musicDetail) ? musicDetail.Index : int.MaxValue;
|
|
}
|
|
|
|
} |