diff --git a/GameDatabase/Entities/UserDatum.cs b/GameDatabase/Entities/UserDatum.cs
index 5a33c78..2dc25b2 100644
--- a/GameDatabase/Entities/UserDatum.cs
+++ b/GameDatabase/Entities/UserDatum.cs
@@ -6,6 +6,7 @@ namespace GameDatabase.Entities
{
public ulong Baid { get; set; }
public string MyDonName { get; set; } = string.Empty;
+ public uint MyDonNameLanguage { get; set; }
public string Title { get; set; } = string.Empty;
public uint TitlePlateId { get; set; }
public string FavoriteSongsArray { get; set; } = "[]";
diff --git a/GameDatabase/Migrations/20230918101009_AddMyDonNameLanguageToUserData.Designer.cs b/GameDatabase/Migrations/20230918101009_AddMyDonNameLanguageToUserData.Designer.cs
new file mode 100644
index 0000000..9e38bac
--- /dev/null
+++ b/GameDatabase/Migrations/20230918101009_AddMyDonNameLanguageToUserData.Designer.cs
@@ -0,0 +1,454 @@
+//
+using System;
+using GameDatabase.Context;
+using Microsoft.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore.Infrastructure;
+using Microsoft.EntityFrameworkCore.Migrations;
+using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
+
+#nullable disable
+
+namespace TaikoLocalServer.Migrations
+{
+ [DbContext(typeof(TaikoDbContext))]
+ [Migration("20230918101009_AddMyDonNameLanguageToUserData")]
+ partial class AddMyDonNameLanguageToUserData
+ {
+ ///
+ protected override void BuildTargetModel(ModelBuilder modelBuilder)
+ {
+#pragma warning disable 612, 618
+ modelBuilder.HasAnnotation("ProductVersion", "7.0.0-rc.1.22426.7");
+
+ modelBuilder.Entity("GameDatabase.Entities.AiScoreDatum", b =>
+ {
+ b.Property("Baid")
+ .HasColumnType("INTEGER");
+
+ b.Property("SongId")
+ .HasColumnType("INTEGER");
+
+ b.Property("Difficulty")
+ .HasColumnType("INTEGER");
+
+ b.Property("IsWin")
+ .HasColumnType("INTEGER");
+
+ b.HasKey("Baid", "SongId", "Difficulty");
+
+ b.ToTable("AiScoreData");
+ });
+
+ modelBuilder.Entity("GameDatabase.Entities.AiSectionScoreDatum", b =>
+ {
+ b.Property("Baid")
+ .HasColumnType("INTEGER");
+
+ b.Property("SongId")
+ .HasColumnType("INTEGER");
+
+ b.Property("Difficulty")
+ .HasColumnType("INTEGER");
+
+ b.Property("SectionIndex")
+ .HasColumnType("INTEGER");
+
+ b.Property("Crown")
+ .HasColumnType("INTEGER");
+
+ b.Property("DrumrollCount")
+ .HasColumnType("INTEGER");
+
+ b.Property("GoodCount")
+ .HasColumnType("INTEGER");
+
+ b.Property("IsWin")
+ .HasColumnType("INTEGER");
+
+ b.Property("MissCount")
+ .HasColumnType("INTEGER");
+
+ b.Property("OkCount")
+ .HasColumnType("INTEGER");
+
+ b.Property("Score")
+ .HasColumnType("INTEGER");
+
+ b.HasKey("Baid", "SongId", "Difficulty", "SectionIndex");
+
+ b.ToTable("AiSectionScoreData");
+ });
+
+ modelBuilder.Entity("GameDatabase.Entities.Card", b =>
+ {
+ b.Property("AccessCode")
+ .HasColumnType("TEXT");
+
+ b.Property("Baid")
+ .HasColumnType("INTEGER");
+
+ b.HasKey("AccessCode");
+
+ b.HasIndex(new[] { "Baid" }, "IX_Card_Baid")
+ .IsUnique();
+
+ b.ToTable("Card", (string)null);
+ });
+
+ modelBuilder.Entity("GameDatabase.Entities.DanScoreDatum", b =>
+ {
+ b.Property("Baid")
+ .HasColumnType("INTEGER");
+
+ b.Property("DanId")
+ .HasColumnType("INTEGER");
+
+ b.Property("ArrivalSongCount")
+ .HasColumnType("INTEGER");
+
+ b.Property("ClearState")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("INTEGER")
+ .HasDefaultValue(0u);
+
+ b.Property("ComboCountTotal")
+ .HasColumnType("INTEGER");
+
+ b.Property("SoulGaugeTotal")
+ .HasColumnType("INTEGER");
+
+ b.HasKey("Baid", "DanId");
+
+ b.ToTable("DanScoreData");
+ });
+
+ modelBuilder.Entity("GameDatabase.Entities.DanStageScoreDatum", b =>
+ {
+ b.Property("Baid")
+ .HasColumnType("INTEGER");
+
+ b.Property("DanId")
+ .HasColumnType("INTEGER");
+
+ b.Property("SongNumber")
+ .HasColumnType("INTEGER");
+
+ b.Property("BadCount")
+ .HasColumnType("INTEGER");
+
+ b.Property("ComboCount")
+ .HasColumnType("INTEGER");
+
+ b.Property("DrumrollCount")
+ .HasColumnType("INTEGER");
+
+ b.Property("GoodCount")
+ .HasColumnType("INTEGER");
+
+ b.Property("HighScore")
+ .HasColumnType("INTEGER");
+
+ b.Property("OkCount")
+ .HasColumnType("INTEGER");
+
+ b.Property("PlayScore")
+ .HasColumnType("INTEGER");
+
+ b.Property("TotalHitCount")
+ .HasColumnType("INTEGER");
+
+ b.HasKey("Baid", "DanId", "SongNumber");
+
+ b.ToTable("DanStageScoreData");
+ });
+
+ modelBuilder.Entity("GameDatabase.Entities.SongBestDatum", b =>
+ {
+ b.Property("Baid")
+ .HasColumnType("INTEGER");
+
+ b.Property("SongId")
+ .HasColumnType("INTEGER");
+
+ b.Property("Difficulty")
+ .HasColumnType("INTEGER");
+
+ b.Property("BestCrown")
+ .HasColumnType("INTEGER");
+
+ b.Property("BestRate")
+ .HasColumnType("INTEGER");
+
+ b.Property("BestScore")
+ .HasColumnType("INTEGER");
+
+ b.Property("BestScoreRank")
+ .HasColumnType("INTEGER");
+
+ b.HasKey("Baid", "SongId", "Difficulty");
+
+ b.ToTable("SongBestData");
+ });
+
+ modelBuilder.Entity("GameDatabase.Entities.SongPlayDatum", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("INTEGER");
+
+ b.Property("Baid")
+ .HasColumnType("INTEGER");
+
+ b.Property("ComboCount")
+ .HasColumnType("INTEGER");
+
+ b.Property("Crown")
+ .HasColumnType("INTEGER");
+
+ b.Property("Difficulty")
+ .HasColumnType("INTEGER");
+
+ b.Property("DrumrollCount")
+ .HasColumnType("INTEGER");
+
+ b.Property("GoodCount")
+ .HasColumnType("INTEGER");
+
+ b.Property("HitCount")
+ .HasColumnType("INTEGER");
+
+ b.Property("MissCount")
+ .HasColumnType("INTEGER");
+
+ b.Property("OkCount")
+ .HasColumnType("INTEGER");
+
+ b.Property("PlayTime")
+ .HasColumnType("datetime");
+
+ b.Property("Score")
+ .HasColumnType("INTEGER");
+
+ b.Property("ScoreRank")
+ .HasColumnType("INTEGER");
+
+ b.Property("ScoreRate")
+ .HasColumnType("INTEGER");
+
+ b.Property("Skipped")
+ .HasColumnType("INTEGER");
+
+ b.Property("SongId")
+ .HasColumnType("INTEGER");
+
+ b.Property("SongNumber")
+ .HasColumnType("INTEGER");
+
+ b.HasKey("Id");
+
+ b.HasIndex("Baid");
+
+ b.ToTable("SongPlayData");
+ });
+
+ modelBuilder.Entity("GameDatabase.Entities.UserDatum", b =>
+ {
+ b.Property("Baid")
+ .HasColumnType("INTEGER");
+
+ b.Property("AchievementDisplayDifficulty")
+ .HasColumnType("INTEGER");
+
+ b.Property("AiWinCount")
+ .HasColumnType("INTEGER");
+
+ b.Property("ColorBody")
+ .HasColumnType("INTEGER");
+
+ b.Property("ColorFace")
+ .HasColumnType("INTEGER");
+
+ b.Property("ColorLimb")
+ .HasColumnType("INTEGER");
+
+ b.Property("CostumeData")
+ .IsRequired()
+ .HasColumnType("TEXT");
+
+ b.Property("CostumeFlgArray")
+ .IsRequired()
+ .HasColumnType("TEXT");
+
+ b.Property("DifficultyPlayedArray")
+ .IsRequired()
+ .HasColumnType("TEXT");
+
+ b.Property("DifficultySettingArray")
+ .IsRequired()
+ .HasColumnType("TEXT");
+
+ b.Property("DisplayAchievement")
+ .HasColumnType("INTEGER");
+
+ b.Property("DisplayDan")
+ .HasColumnType("INTEGER");
+
+ b.Property("FavoriteSongsArray")
+ .IsRequired()
+ .HasColumnType("TEXT");
+
+ b.Property("GenericInfoFlgArray")
+ .IsRequired()
+ .HasColumnType("TEXT");
+
+ b.Property("IsSkipOn")
+ .HasColumnType("INTEGER");
+
+ b.Property("IsVoiceOn")
+ .HasColumnType("INTEGER");
+
+ b.Property("LastPlayDatetime")
+ .HasColumnType("datetime");
+
+ b.Property("LastPlayMode")
+ .HasColumnType("INTEGER");
+
+ b.Property("MyDonName")
+ .IsRequired()
+ .HasColumnType("TEXT");
+
+ b.Property("MyDonNameLanguage")
+ .HasColumnType("INTEGER");
+
+ b.Property("NotesPosition")
+ .HasColumnType("INTEGER");
+
+ b.Property("OptionSetting")
+ .HasColumnType("INTEGER");
+
+ b.Property("SelectedToneId")
+ .HasColumnType("INTEGER");
+
+ b.Property("Title")
+ .IsRequired()
+ .HasColumnType("TEXT");
+
+ b.Property("TitleFlgArray")
+ .IsRequired()
+ .HasColumnType("TEXT");
+
+ b.Property("TitlePlateId")
+ .HasColumnType("INTEGER");
+
+ b.Property("TokenCountDict")
+ .IsRequired()
+ .HasColumnType("TEXT");
+
+ b.Property("ToneFlgArray")
+ .IsRequired()
+ .HasColumnType("TEXT");
+
+ b.Property("UnlockedSongIdList")
+ .IsRequired()
+ .HasColumnType("TEXT");
+
+ b.HasKey("Baid");
+
+ b.ToTable("UserData");
+ });
+
+ modelBuilder.Entity("GameDatabase.Entities.AiScoreDatum", b =>
+ {
+ b.HasOne("GameDatabase.Entities.Card", "Ba")
+ .WithMany()
+ .HasForeignKey("Baid")
+ .HasPrincipalKey("Baid")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.Navigation("Ba");
+ });
+
+ modelBuilder.Entity("GameDatabase.Entities.AiSectionScoreDatum", b =>
+ {
+ b.HasOne("GameDatabase.Entities.AiScoreDatum", "Parent")
+ .WithMany("AiSectionScoreData")
+ .HasForeignKey("Baid", "SongId", "Difficulty")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.Navigation("Parent");
+ });
+
+ modelBuilder.Entity("GameDatabase.Entities.DanScoreDatum", b =>
+ {
+ b.HasOne("GameDatabase.Entities.Card", "Ba")
+ .WithMany()
+ .HasForeignKey("Baid")
+ .HasPrincipalKey("Baid")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.Navigation("Ba");
+ });
+
+ modelBuilder.Entity("GameDatabase.Entities.DanStageScoreDatum", b =>
+ {
+ b.HasOne("GameDatabase.Entities.DanScoreDatum", "Parent")
+ .WithMany("DanStageScoreData")
+ .HasForeignKey("Baid", "DanId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.Navigation("Parent");
+ });
+
+ modelBuilder.Entity("GameDatabase.Entities.SongBestDatum", b =>
+ {
+ b.HasOne("GameDatabase.Entities.Card", "Ba")
+ .WithMany()
+ .HasForeignKey("Baid")
+ .HasPrincipalKey("Baid")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.Navigation("Ba");
+ });
+
+ modelBuilder.Entity("GameDatabase.Entities.SongPlayDatum", b =>
+ {
+ b.HasOne("GameDatabase.Entities.Card", "Ba")
+ .WithMany()
+ .HasForeignKey("Baid")
+ .HasPrincipalKey("Baid")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.Navigation("Ba");
+ });
+
+ modelBuilder.Entity("GameDatabase.Entities.UserDatum", b =>
+ {
+ b.HasOne("GameDatabase.Entities.Card", "Ba")
+ .WithMany()
+ .HasForeignKey("Baid")
+ .HasPrincipalKey("Baid")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.Navigation("Ba");
+ });
+
+ modelBuilder.Entity("GameDatabase.Entities.AiScoreDatum", b =>
+ {
+ b.Navigation("AiSectionScoreData");
+ });
+
+ modelBuilder.Entity("GameDatabase.Entities.DanScoreDatum", b =>
+ {
+ b.Navigation("DanStageScoreData");
+ });
+#pragma warning restore 612, 618
+ }
+ }
+}
diff --git a/GameDatabase/Migrations/20230918101009_AddMyDonNameLanguageToUserData.cs b/GameDatabase/Migrations/20230918101009_AddMyDonNameLanguageToUserData.cs
new file mode 100644
index 0000000..27bc80a
--- /dev/null
+++ b/GameDatabase/Migrations/20230918101009_AddMyDonNameLanguageToUserData.cs
@@ -0,0 +1,29 @@
+using Microsoft.EntityFrameworkCore.Migrations;
+
+#nullable disable
+
+namespace TaikoLocalServer.Migrations
+{
+ ///
+ public partial class AddMyDonNameLanguageToUserData : Migration
+ {
+ ///
+ protected override void Up(MigrationBuilder migrationBuilder)
+ {
+ migrationBuilder.AddColumn(
+ name: "MyDonNameLanguage",
+ table: "UserData",
+ type: "INTEGER",
+ nullable: false,
+ defaultValue: 0u);
+ }
+
+ ///
+ protected override void Down(MigrationBuilder migrationBuilder)
+ {
+ migrationBuilder.DropColumn(
+ name: "MyDonNameLanguage",
+ table: "UserData");
+ }
+ }
+}
diff --git a/GameDatabase/Migrations/TaikoDbContextModelSnapshot.cs b/GameDatabase/Migrations/TaikoDbContextModelSnapshot.cs
index 2c0118c..dd61194 100644
--- a/GameDatabase/Migrations/TaikoDbContextModelSnapshot.cs
+++ b/GameDatabase/Migrations/TaikoDbContextModelSnapshot.cs
@@ -314,6 +314,9 @@ namespace TaikoLocalServer.Migrations
.IsRequired()
.HasColumnType("TEXT");
+ b.Property("MyDonNameLanguage")
+ .HasColumnType("INTEGER");
+
b.Property("NotesPosition")
.HasColumnType("INTEGER");
diff --git a/TaikoLocalServer/Controllers/Game/BaidController.cs b/TaikoLocalServer/Controllers/Game/BaidController.cs
index e411c66..fa02809 100644
--- a/TaikoLocalServer/Controllers/Game/BaidController.cs
+++ b/TaikoLocalServer/Controllers/Game/BaidController.cs
@@ -118,7 +118,7 @@ public class BaidController : BaseController
PlayerType = 0,
Baid = baid,
MydonName = userData.MyDonName,
- MydonNameLanguage = 4,
+ MydonNameLanguage = userData.MyDonNameLanguage,
Title = userData.Title,
TitleplateId = userData.TitlePlateId,
ColorFace = userData.ColorFace,
diff --git a/TaikoLocalServer/Controllers/Game/MyDonEntryController.cs b/TaikoLocalServer/Controllers/Game/MyDonEntryController.cs
index 45aeb79..fe16623 100644
--- a/TaikoLocalServer/Controllers/Game/MyDonEntryController.cs
+++ b/TaikoLocalServer/Controllers/Game/MyDonEntryController.cs
@@ -33,6 +33,7 @@ public class MyDonEntryController : BaseController
{
Baid = newId,
MyDonName = request.MydonName,
+ MyDonNameLanguage = 0,
DisplayDan = true,
DisplayAchievement = true,
AchievementDisplayDifficulty = Difficulty.None,
@@ -55,7 +56,7 @@ public class MyDonEntryController : BaseController
Result = 1,
Baid = newId,
MydonName = request.MydonName,
- MydonNameLanguage = 4
+ MydonNameLanguage = 0
};
return Ok(response);