From d8190106f1103909ebcf0598a32180c7a8db7955 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?DragonRatTiger=20/=20=E3=83=AA=E3=83=A5=E3=82=A6=E3=82=B3?= Date: Sun, 7 Apr 2024 01:39:22 -0500 Subject: [PATCH] Support Bongo as an alias for Konga in GAMETYPE (#588) * Support Bongo as an alias for Konga in GAMETYPE * Delete CVeirticalSongNameFont.cs --- OpenTaiko/src/Common/CConfigIni.cs | 2 +- .../src/Common/CVeirticalSongNameFont.cs | 34 ------------------- OpenTaiko/src/Songs/CDTX.cs | 1 + 3 files changed, 2 insertions(+), 35 deletions(-) delete mode 100644 OpenTaiko/src/Common/CVeirticalSongNameFont.cs diff --git a/OpenTaiko/src/Common/CConfigIni.cs b/OpenTaiko/src/Common/CConfigIni.cs index ce19317f..c591b81a 100644 --- a/OpenTaiko/src/Common/CConfigIni.cs +++ b/OpenTaiko/src/Common/CConfigIni.cs @@ -2689,7 +2689,7 @@ namespace TJAPlayer3 sw.WriteLine("TimingZones4P={0}", this.nTimingZones[3]); sw.WriteLine("TimingZones5P={0}", this.nTimingZones[4]); sw.WriteLine(); - sw.WriteLine("; Gametype (0 : Taiko, 1 : Konga)"); + sw.WriteLine("; Gametype (0 : Taiko, 1 : Bongo)"); sw.WriteLine("Gametype1P={0}", (int)this.nGameType[0]); sw.WriteLine("Gametype2P={0}", (int)this.nGameType[1]); sw.WriteLine("Gametype3P={0}", (int)this.nGameType[2]); diff --git a/OpenTaiko/src/Common/CVeirticalSongNameFont.cs b/OpenTaiko/src/Common/CVeirticalSongNameFont.cs deleted file mode 100644 index 7f999ed5..00000000 --- a/OpenTaiko/src/Common/CVeirticalSongNameFont.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; -using System.IO; -using System.Runtime.InteropServices; -using System.Drawing; -using System.Drawing.Drawing2D; -using System.Diagnostics; -using FDK; - -namespace TJAPlayer3 -{ - public class CVerticalSongNameFont - { - //必要な値 - //_タイトル - //_サブタイトル(とりあえず最初は無しで進める) - //_ - //_ - //_ - - - - - - - - #region [ private ] - //----------------- - private const string str回転させる文字 = "「」~()ー-~-∞—()《》{}<>『』[]…"; - //----------------- - #endregion - } -} diff --git a/OpenTaiko/src/Songs/CDTX.cs b/OpenTaiko/src/Songs/CDTX.cs index 12dea545..d890bef0 100644 --- a/OpenTaiko/src/Songs/CDTX.cs +++ b/OpenTaiko/src/Songs/CDTX.cs @@ -5933,6 +5933,7 @@ namespace TJAPlayer3 case "Taiko": chip.eGameType = EGameType.TAIKO; break; + case "Bongo": case "Konga": chip.eGameType = EGameType.KONGA; break;