2023-09-09 14:58:20 +02:00
|
|
|
|
using System.Collections.Immutable;
|
|
|
|
|
using Swan.Mapping;
|
|
|
|
|
using TaikoWebUI.Shared.Models;
|
|
|
|
|
|
|
|
|
|
namespace TaikoWebUI.Services;
|
|
|
|
|
|
|
|
|
|
public class GameDataService : IGameDataService
|
|
|
|
|
{
|
|
|
|
|
private readonly HttpClient client;
|
|
|
|
|
private readonly Dictionary<uint, MusicDetail> musicMap = new();
|
|
|
|
|
private ImmutableDictionary<uint, DanData> danMap = ImmutableDictionary<uint, DanData>.Empty;
|
|
|
|
|
private ImmutableHashSet<Title> titles = ImmutableHashSet<Title>.Empty;
|
|
|
|
|
|
2024-03-09 07:07:34 +01:00
|
|
|
|
private string[] bodyTitles = { };
|
|
|
|
|
private string[] faceTitles = { };
|
|
|
|
|
private string[] headTitles = { };
|
|
|
|
|
private string[] kigurumiTitles = { };
|
|
|
|
|
private string[] puchiTitles = { };
|
2024-05-01 17:13:47 +02:00
|
|
|
|
|
|
|
|
|
private List<uint> kigurumiUniqueIdList = new();
|
|
|
|
|
private List<uint> headUniqueIdList = new();
|
|
|
|
|
private List<uint> bodyUniqueIdList = new();
|
|
|
|
|
private List<uint> faceUniqueIdList = new();
|
|
|
|
|
private List<uint> puchiUniqueIdList = new();
|
|
|
|
|
|
|
|
|
|
private List<uint> titleUniqueIdList = new();
|
|
|
|
|
private List<uint> titlePlateIdList = new();
|
|
|
|
|
|
|
|
|
|
private List<uint> lockedKigurumiUniqueIdList = new();
|
|
|
|
|
private List<uint> lockedHeadUniqueIdList = new();
|
|
|
|
|
private List<uint> lockedBodyUniqueIdList = new();
|
|
|
|
|
private List<uint> lockedFaceUniqueIdList = new();
|
|
|
|
|
private List<uint> lockedPuchiUniqueIdList = new();
|
|
|
|
|
private List<uint> lockedTitleUniqueIdList = new();
|
|
|
|
|
private List<uint> lockedTitlePlateIdList = new();
|
2024-03-09 07:07:34 +01:00
|
|
|
|
|
2023-09-09 14:58:20 +02:00
|
|
|
|
public GameDataService(HttpClient client)
|
|
|
|
|
{
|
|
|
|
|
this.client = client;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task InitializeAsync(string dataBaseUrl)
|
|
|
|
|
{
|
|
|
|
|
dataBaseUrl = dataBaseUrl.TrimEnd('/');
|
|
|
|
|
var musicInfo = await GetData<MusicInfo>(dataBaseUrl, Constants.MUSIC_INFO_BASE_NAME);
|
2023-10-15 16:27:07 +02:00
|
|
|
|
var wordList = await GetData<WordList>(dataBaseUrl, Constants.WORDLIST_BASE_NAME);
|
2023-09-09 14:58:20 +02:00
|
|
|
|
var musicOrder = await GetData<MusicOrder>(dataBaseUrl, Constants.MUSIC_ORDER_BASE_NAME);
|
2023-10-15 16:27:07 +02:00
|
|
|
|
var donCosRewardData = await GetData<DonCosRewards>(dataBaseUrl, Constants.DON_COS_REWARD_BASE_NAME);
|
|
|
|
|
var shougouData = await GetData<Shougous>(dataBaseUrl, Constants.SHOUGOU_BASE_NAME);
|
2023-09-09 14:58:20 +02:00
|
|
|
|
var danData = await client.GetFromJsonAsync<List<DanData>>($"{dataBaseUrl}/data/dan_data.json");
|
|
|
|
|
|
|
|
|
|
danData.ThrowIfNull();
|
|
|
|
|
danMap = danData.ToImmutableDictionary(data => data.DanId);
|
|
|
|
|
|
|
|
|
|
// To prevent duplicate entries in wordlist
|
2024-05-01 17:13:47 +02:00
|
|
|
|
var wordlistDict = wordList.WordListEntries.GroupBy(entry => entry.Key)
|
2023-09-09 14:58:20 +02:00
|
|
|
|
.ToImmutableDictionary(group => group.Key, group => group.First());
|
2024-05-01 17:13:47 +02:00
|
|
|
|
await Task.Run(() => InitializeMusicMap(musicInfo, wordlistDict, musicOrder));
|
|
|
|
|
|
|
|
|
|
await Task.Run(() => InitializeCostumeIdLists(donCosRewardData));
|
|
|
|
|
await Task.Run(() => InitializeTitleIdList(shougouData));
|
|
|
|
|
|
|
|
|
|
await Task.Run(() => InitializeHeadTitles(wordlistDict));
|
|
|
|
|
await Task.Run(() => InitializeFaceTitles(wordlistDict));
|
|
|
|
|
await Task.Run(() => InitializeBodyTitles(wordlistDict));
|
|
|
|
|
await Task.Run(() => InitializePuchiTitles(wordlistDict));
|
|
|
|
|
await Task.Run(() => InitializeKigurumiTitles(wordlistDict));
|
|
|
|
|
await Task.Run(() => InitializeTitles(wordlistDict, shougouData));
|
|
|
|
|
|
|
|
|
|
var lockedCostumeDataDictionary = await client.GetFromJsonAsync<Dictionary<string, List<uint>>>($"{dataBaseUrl}/data/locked_costume_data.json") ?? throw new InvalidOperationException();
|
|
|
|
|
lockedKigurumiUniqueIdList = lockedCostumeDataDictionary.GetValueOrDefault("Kigurumi") ?? new List<uint>();
|
|
|
|
|
lockedHeadUniqueIdList = lockedCostumeDataDictionary.GetValueOrDefault("Head") ?? new List<uint>();
|
|
|
|
|
lockedBodyUniqueIdList = lockedCostumeDataDictionary.GetValueOrDefault("Body") ?? new List<uint>();
|
|
|
|
|
lockedFaceUniqueIdList = lockedCostumeDataDictionary.GetValueOrDefault("Face") ?? new List<uint>();
|
|
|
|
|
lockedPuchiUniqueIdList = lockedCostumeDataDictionary.GetValueOrDefault("Puchi") ?? new List<uint>();
|
|
|
|
|
|
|
|
|
|
var lockedTitleDataDictionary = await client.GetFromJsonAsync<Dictionary<string, List<uint>>>($"{dataBaseUrl}/data/locked_title_data.json") ?? throw new InvalidOperationException();
|
|
|
|
|
lockedTitleUniqueIdList = lockedTitleDataDictionary.GetValueOrDefault("TitleNo") ?? new List<uint>();
|
|
|
|
|
lockedTitlePlateIdList = lockedTitleDataDictionary.GetValueOrDefault("TitlePlateNo") ?? new List<uint>();
|
2023-09-09 14:58:20 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async Task<T> GetData<T>(string dataBaseUrl, string fileBaseName) where T : notnull
|
|
|
|
|
{
|
2023-10-16 12:59:55 +02:00
|
|
|
|
var data = await client.GetFromJsonAsync<T>($"{dataBaseUrl}/data/datatable/{fileBaseName}.json");
|
2023-10-04 20:09:37 +02:00
|
|
|
|
data.ThrowIfNull();
|
|
|
|
|
return data;
|
2023-09-09 14:58:20 +02:00
|
|
|
|
}
|
2024-03-09 00:42:56 +01:00
|
|
|
|
|
2024-03-14 03:30:15 +01:00
|
|
|
|
public List<MusicDetail> GetMusicList()
|
2024-03-14 03:27:55 +01:00
|
|
|
|
{
|
|
|
|
|
return musicMap.Values.Where(musicDetail => musicDetail.SongId != 0).ToList();
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-08 21:24:29 +01:00
|
|
|
|
public string GetMusicNameBySongId(uint songId, string? language = "ja")
|
2023-09-09 14:58:20 +02:00
|
|
|
|
{
|
2024-03-08 21:11:54 +01:00
|
|
|
|
return musicMap.TryGetValue(songId, out var musicDetail) ? language switch
|
|
|
|
|
{
|
|
|
|
|
"ja" => musicDetail.SongName,
|
|
|
|
|
"en-US" => musicDetail.SongNameEN,
|
|
|
|
|
"zh-Hans" => musicDetail.SongNameCN,
|
|
|
|
|
"zh-Hant" => musicDetail.SongNameCN,
|
|
|
|
|
"ko" => musicDetail.SongNameKO,
|
|
|
|
|
_ => musicDetail.SongName
|
|
|
|
|
} : string.Empty;
|
2023-09-09 14:58:20 +02:00
|
|
|
|
}
|
|
|
|
|
|
2024-03-08 21:24:29 +01:00
|
|
|
|
public string GetMusicArtistBySongId(uint songId, string? language = "ja")
|
2023-09-09 14:58:20 +02:00
|
|
|
|
{
|
2024-03-08 21:11:54 +01:00
|
|
|
|
return musicMap.TryGetValue(songId, out var musicDetail) ? language switch
|
|
|
|
|
{
|
|
|
|
|
"jp" => musicDetail.ArtistName,
|
|
|
|
|
"en-US" => musicDetail.ArtistNameEN,
|
|
|
|
|
"zh-Hans" => musicDetail.ArtistNameCN,
|
|
|
|
|
"zh-Hant" => musicDetail.ArtistNameCN,
|
|
|
|
|
"ko" => musicDetail.ArtistNameKO,
|
|
|
|
|
_ => musicDetail.ArtistName
|
|
|
|
|
} : string.Empty;
|
2023-09-09 14:58:20 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public DanData GetDanDataById(uint danId)
|
|
|
|
|
{
|
|
|
|
|
return danMap.GetValueOrDefault(danId, new DanData());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int GetMusicStarLevel(uint songId, Difficulty difficulty)
|
|
|
|
|
{
|
|
|
|
|
var success = musicMap.TryGetValue(songId, out var musicDetail);
|
|
|
|
|
return difficulty switch
|
|
|
|
|
{
|
|
|
|
|
Difficulty.None => throw new ArgumentException("Difficulty cannot be none"),
|
|
|
|
|
Difficulty.Easy => success ? musicDetail!.StarEasy : 0,
|
|
|
|
|
Difficulty.Normal => success ? musicDetail!.StarNormal : 0,
|
|
|
|
|
Difficulty.Hard => success ? musicDetail!.StarHard : 0,
|
|
|
|
|
Difficulty.Oni => success ? musicDetail!.StarOni : 0,
|
|
|
|
|
Difficulty.UraOni => success ? musicDetail!.StarUra : 0,
|
|
|
|
|
_ => throw new ArgumentOutOfRangeException(nameof(difficulty), difficulty, null)
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string GetHeadTitle(uint index)
|
|
|
|
|
{
|
|
|
|
|
return index < headTitles.Length ? headTitles[index] : string.Empty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string GetKigurumiTitle(uint index)
|
|
|
|
|
{
|
2023-10-15 16:27:07 +02:00
|
|
|
|
return index < kigurumiTitles.Length ? kigurumiTitles[index] : string.Empty;
|
2023-09-09 14:58:20 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string GetBodyTitle(uint index)
|
|
|
|
|
{
|
|
|
|
|
return index < bodyTitles.Length ? bodyTitles[index] : string.Empty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string GetFaceTitle(uint index)
|
|
|
|
|
{
|
|
|
|
|
return index < faceTitles.Length ? faceTitles[index] : string.Empty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string GetPuchiTitle(uint index)
|
|
|
|
|
{
|
|
|
|
|
return index < puchiTitles.Length ? puchiTitles[index] : string.Empty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ImmutableHashSet<Title> GetTitles()
|
|
|
|
|
{
|
|
|
|
|
return titles;
|
|
|
|
|
}
|
2024-05-01 17:13:47 +02:00
|
|
|
|
|
|
|
|
|
public List<uint> GetKigurumiUniqueIdList()
|
2023-10-15 16:27:07 +02:00
|
|
|
|
{
|
2024-05-01 17:13:47 +02:00
|
|
|
|
return kigurumiUniqueIdList;
|
2023-10-15 16:27:07 +02:00
|
|
|
|
}
|
2024-05-01 17:13:47 +02:00
|
|
|
|
|
|
|
|
|
public List<uint> GetHeadUniqueIdList()
|
2023-10-15 16:27:07 +02:00
|
|
|
|
{
|
2024-05-01 17:13:47 +02:00
|
|
|
|
return headUniqueIdList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<uint> GetBodyUniqueIdList()
|
|
|
|
|
{
|
|
|
|
|
return bodyUniqueIdList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<uint> GetFaceUniqueIdList()
|
|
|
|
|
{
|
|
|
|
|
return faceUniqueIdList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<uint> GetPuchiUniqueIdList()
|
|
|
|
|
{
|
|
|
|
|
return puchiUniqueIdList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<uint> GetTitleUniqueIdList()
|
|
|
|
|
{
|
|
|
|
|
return titleUniqueIdList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<uint> GetTitlePlateIdList()
|
|
|
|
|
{
|
|
|
|
|
return titlePlateIdList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void InitializeTitleIdList(Shougous? shougouData)
|
|
|
|
|
{
|
|
|
|
|
shougouData.ThrowIfNull("Shouldn't happen!");
|
|
|
|
|
titleUniqueIdList = shougouData.ShougouEntries.Select(entry => entry.UniqueId).ToList();
|
2023-10-15 16:27:07 +02:00
|
|
|
|
}
|
2023-09-09 14:58:20 +02:00
|
|
|
|
|
2023-11-13 00:12:54 +01:00
|
|
|
|
private void InitializeTitles(ImmutableDictionary<string, WordListEntry> dict, Shougous? shougouData)
|
2023-09-09 14:58:20 +02:00
|
|
|
|
{
|
2023-11-13 00:12:54 +01:00
|
|
|
|
shougouData.ThrowIfNull("Shouldn't happen!");
|
2024-03-09 00:42:56 +01:00
|
|
|
|
|
2023-09-09 14:58:20 +02:00
|
|
|
|
var set = ImmutableHashSet.CreateBuilder<Title>();
|
2024-05-01 17:13:47 +02:00
|
|
|
|
foreach (var i in titleUniqueIdList)
|
2023-09-09 14:58:20 +02:00
|
|
|
|
{
|
|
|
|
|
var key = $"syougou_{i}";
|
|
|
|
|
|
|
|
|
|
var titleWordlistItem = dict.GetValueOrDefault(key, new WordListEntry());
|
2024-03-09 00:42:56 +01:00
|
|
|
|
|
2023-11-13 00:12:54 +01:00
|
|
|
|
var titleRarity = shougouData.ShougouEntries
|
|
|
|
|
.Where(entry => entry.UniqueId == i)
|
|
|
|
|
.Select(entry => entry.Rarity)
|
|
|
|
|
.FirstOrDefault();
|
2023-09-09 14:58:20 +02:00
|
|
|
|
|
2024-03-09 00:42:56 +01:00
|
|
|
|
set.Add(new Title
|
|
|
|
|
{
|
2023-09-09 14:58:20 +02:00
|
|
|
|
TitleName = titleWordlistItem.JapaneseText,
|
2023-11-13 00:12:54 +01:00
|
|
|
|
TitleId = i,
|
|
|
|
|
TitleRarity = titleRarity
|
2023-09-09 14:58:20 +02:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
titles = set.ToImmutable();
|
|
|
|
|
}
|
2024-05-01 17:13:47 +02:00
|
|
|
|
|
|
|
|
|
private void InitializeCostumeIdLists(DonCosRewards? donCosRewardData)
|
2023-09-09 14:58:20 +02:00
|
|
|
|
{
|
2023-10-15 16:27:07 +02:00
|
|
|
|
donCosRewardData.ThrowIfNull("Shouldn't happen!");
|
2024-05-01 17:13:47 +02:00
|
|
|
|
kigurumiUniqueIdList = donCosRewardData.DonCosRewardEntries
|
2023-11-13 00:12:54 +01:00
|
|
|
|
.Where(entry => entry.CosType == "kigurumi")
|
2024-05-01 17:13:47 +02:00
|
|
|
|
.Select(entry => entry.UniqueId).ToList();
|
|
|
|
|
headUniqueIdList = donCosRewardData.DonCosRewardEntries
|
2023-11-13 00:12:54 +01:00
|
|
|
|
.Where(entry => entry.CosType == "head")
|
2024-05-01 17:13:47 +02:00
|
|
|
|
.Select(entry => entry.UniqueId).ToList();
|
|
|
|
|
bodyUniqueIdList = donCosRewardData.DonCosRewardEntries
|
2023-11-13 00:12:54 +01:00
|
|
|
|
.Where(entry => entry.CosType == "body")
|
2024-05-01 17:13:47 +02:00
|
|
|
|
.Select(entry => entry.UniqueId).ToList();
|
|
|
|
|
faceUniqueIdList = donCosRewardData.DonCosRewardEntries
|
2023-11-13 00:12:54 +01:00
|
|
|
|
.Where(entry => entry.CosType == "face")
|
2024-05-01 17:13:47 +02:00
|
|
|
|
.Select(entry => entry.UniqueId).ToList();
|
|
|
|
|
puchiUniqueIdList = donCosRewardData.DonCosRewardEntries
|
2023-11-13 00:12:54 +01:00
|
|
|
|
.Where(entry => entry.CosType == "puchi")
|
2024-05-01 17:13:47 +02:00
|
|
|
|
.Select(entry => entry.UniqueId).ToList();
|
2023-09-09 14:58:20 +02:00
|
|
|
|
}
|
2024-03-09 00:42:56 +01:00
|
|
|
|
|
2023-09-09 14:58:20 +02:00
|
|
|
|
private void InitializeKigurumiTitles(ImmutableDictionary<string, WordListEntry> dict)
|
|
|
|
|
{
|
2024-05-01 17:13:47 +02:00
|
|
|
|
kigurumiTitles = new string[kigurumiUniqueIdList.Max() + 1];
|
|
|
|
|
foreach (var i in kigurumiUniqueIdList)
|
2023-09-09 14:58:20 +02:00
|
|
|
|
{
|
|
|
|
|
var key = $"costume_kigurumi_{i}";
|
|
|
|
|
|
|
|
|
|
var costumeWordlistItem = dict.GetValueOrDefault(key, new WordListEntry());
|
2023-10-15 16:27:07 +02:00
|
|
|
|
kigurumiTitles[i] = costumeWordlistItem.JapaneseText;
|
2023-09-09 14:58:20 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2024-03-09 00:42:56 +01:00
|
|
|
|
|
2023-10-15 16:27:07 +02:00
|
|
|
|
private void InitializeHeadTitles(ImmutableDictionary<string, WordListEntry> dict)
|
|
|
|
|
{
|
2024-05-01 17:13:47 +02:00
|
|
|
|
headTitles = new string[headUniqueIdList.Max() + 1];
|
|
|
|
|
foreach (var i in headUniqueIdList)
|
2023-10-15 16:27:07 +02:00
|
|
|
|
{
|
|
|
|
|
var key = $"costume_head_{i}";
|
2023-09-09 14:58:20 +02:00
|
|
|
|
|
2023-10-15 16:27:07 +02:00
|
|
|
|
var costumeWordlistItem = dict.GetValueOrDefault(key, new WordListEntry());
|
|
|
|
|
headTitles[i] = costumeWordlistItem.JapaneseText;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-03-09 00:42:56 +01:00
|
|
|
|
|
2023-09-09 14:58:20 +02:00
|
|
|
|
private void InitializeBodyTitles(ImmutableDictionary<string, WordListEntry> dict)
|
|
|
|
|
{
|
2024-05-01 17:13:47 +02:00
|
|
|
|
bodyTitles = new string[bodyUniqueIdList.Max() + 1];
|
|
|
|
|
foreach (var i in bodyUniqueIdList)
|
2023-09-09 14:58:20 +02:00
|
|
|
|
{
|
|
|
|
|
var key = $"costume_body_{i}";
|
|
|
|
|
|
|
|
|
|
var costumeWordlistItem = dict.GetValueOrDefault(key, new WordListEntry());
|
|
|
|
|
bodyTitles[i] = costumeWordlistItem.JapaneseText;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-03-09 00:42:56 +01:00
|
|
|
|
|
2023-09-09 14:58:20 +02:00
|
|
|
|
private void InitializeFaceTitles(ImmutableDictionary<string, WordListEntry> dict)
|
|
|
|
|
{
|
2024-05-01 17:13:47 +02:00
|
|
|
|
faceTitles = new string[faceUniqueIdList.Max() + 1];
|
|
|
|
|
foreach (var i in faceUniqueIdList)
|
2023-09-09 14:58:20 +02:00
|
|
|
|
{
|
|
|
|
|
var key = $"costume_face_{i}";
|
|
|
|
|
|
|
|
|
|
var costumeWordlistItem = dict.GetValueOrDefault(key, new WordListEntry());
|
|
|
|
|
faceTitles[i] = costumeWordlistItem.JapaneseText;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-15 16:27:07 +02:00
|
|
|
|
private void InitializePuchiTitles(ImmutableDictionary<string, WordListEntry> dict)
|
2023-09-09 14:58:20 +02:00
|
|
|
|
{
|
2024-05-01 17:13:47 +02:00
|
|
|
|
puchiTitles = new string[puchiUniqueIdList.Max() + 1];
|
|
|
|
|
foreach (var i in puchiUniqueIdList)
|
2023-09-09 14:58:20 +02:00
|
|
|
|
{
|
2023-10-15 16:27:07 +02:00
|
|
|
|
var key = $"costume_puchi_{i}";
|
2023-09-09 14:58:20 +02:00
|
|
|
|
|
|
|
|
|
var costumeWordlistItem = dict.GetValueOrDefault(key, new WordListEntry());
|
2023-10-15 16:27:07 +02:00
|
|
|
|
puchiTitles[i] = costumeWordlistItem.JapaneseText;
|
2023-09-09 14:58:20 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void InitializeMusicMap(MusicInfo musicInfo, ImmutableDictionary<string, WordListEntry> dict,
|
|
|
|
|
MusicOrder musicOrder)
|
|
|
|
|
{
|
|
|
|
|
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 = music.CopyPropertiesToNew<MusicDetail>();
|
|
|
|
|
musicDetail.SongName = musicName.JapaneseText;
|
|
|
|
|
musicDetail.ArtistName = musicArtist.JapaneseText;
|
|
|
|
|
|
2024-03-08 21:11:54 +01:00
|
|
|
|
// Add localized names
|
|
|
|
|
musicDetail.SongNameEN = musicName.EnglishUsText;
|
|
|
|
|
musicDetail.ArtistNameEN = musicArtist.EnglishUsText;
|
|
|
|
|
|
|
|
|
|
musicDetail.SongNameCN = musicName.ChineseTText;
|
|
|
|
|
musicDetail.ArtistNameCN = musicArtist.ChineseTText;
|
|
|
|
|
|
|
|
|
|
musicDetail.SongNameKO = musicName.KoreanText;
|
|
|
|
|
musicDetail.ArtistNameKO = musicArtist.KoreanText;
|
|
|
|
|
|
2023-09-09 14:58:20 +02:00
|
|
|
|
musicMap.TryAdd(musicSongId, musicDetail);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (var index = 0; index < musicOrder.Order.Count; index++)
|
|
|
|
|
{
|
|
|
|
|
var musicOrderEntry = musicOrder.Order[index];
|
|
|
|
|
var songId = musicOrderEntry.SongId;
|
2023-10-21 13:33:00 +02:00
|
|
|
|
if (musicMap.TryGetValue(songId, out var value))
|
2023-09-09 14:58:20 +02:00
|
|
|
|
{
|
2023-10-21 13:33:00 +02:00
|
|
|
|
value.Index = index;
|
2023-09-09 14:58:20 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-01 17:13:47 +02:00
|
|
|
|
|
|
|
|
|
public List<uint> GetLockedKigurumiUniqueIdList()
|
|
|
|
|
{
|
|
|
|
|
return lockedKigurumiUniqueIdList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<uint> GetLockedHeadUniqueIdList()
|
|
|
|
|
{
|
|
|
|
|
return lockedHeadUniqueIdList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<uint> GetLockedBodyUniqueIdList()
|
|
|
|
|
{
|
|
|
|
|
return lockedBodyUniqueIdList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<uint> GetLockedFaceUniqueIdList()
|
|
|
|
|
{
|
|
|
|
|
return lockedFaceUniqueIdList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<uint> GetLockedPuchiUniqueIdList()
|
|
|
|
|
{
|
|
|
|
|
return lockedPuchiUniqueIdList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<uint> GetLockedTitleUniqueIdList()
|
|
|
|
|
{
|
|
|
|
|
return lockedTitleUniqueIdList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<uint> GetLockedTitlePlateIdList()
|
|
|
|
|
{
|
|
|
|
|
return lockedTitlePlateIdList;
|
|
|
|
|
}
|
2023-09-09 14:58:20 +02:00
|
|
|
|
}
|