Default displayed score summary is now defined by the Default difficulty option
This commit is contained in:
parent
c3a67e236d
commit
3af02dce62
@ -1486,7 +1486,7 @@ namespace TJAPlayer3
|
||||
|
||||
this.bBranchGuide = false;
|
||||
this.nScoreMode = 2;
|
||||
this.nDefaultCourse = 3;
|
||||
this.nDefaultCourse = (int)Difficulty.Edit + 1;
|
||||
this.nBranchAnime = 1;
|
||||
|
||||
this.b大音符判定 = false;
|
||||
|
@ -276,6 +276,13 @@ namespace TJAPlayer3
|
||||
[1033] = "Dan Title",
|
||||
[1034] = "Nameplate Title",
|
||||
|
||||
[1040] = "Easy",
|
||||
[1041] = "Normal",
|
||||
[1042] = "Hard",
|
||||
[1043] = "Extreme",
|
||||
[1044] = "Extra",
|
||||
[1045] = "Extreme / Extra",
|
||||
|
||||
[90000] = "[ERROR] Invalid condition",
|
||||
[90001] = "Item only avaliable at the Shop.",
|
||||
[90002] = "Coin price : ",
|
||||
|
@ -267,6 +267,13 @@ namespace TJAPlayer3
|
||||
[1033] = "Titre Dan",
|
||||
[1034] = "Titre",
|
||||
|
||||
[1040] = "Facile",
|
||||
[1041] = "Normal",
|
||||
[1042] = "Difficile",
|
||||
[1043] = "Extrême",
|
||||
[1044] = "Extra",
|
||||
[1045] = "Extrême / Extra",
|
||||
|
||||
[90000] = "[ERREUR] Condition invalide",
|
||||
[90001] = "L'article n'est disponible que dans le Magasin.",
|
||||
[90002] = "Prix en jetons : ",
|
||||
|
@ -331,6 +331,13 @@ namespace TJAPlayer3
|
||||
[1033] = "段位称号",
|
||||
[1034] = "名札称号",
|
||||
|
||||
[1040] = "かんたん",
|
||||
[1041] = "ふつう",
|
||||
[1042] = "むずかしい",
|
||||
[1043] = "おに(表)",
|
||||
[1044] = "おに(裏)",
|
||||
[1045] = "おに(裏表)",
|
||||
|
||||
[90000] = "[エラー] 無効な条件",
|
||||
[90001] = "上記の商品はコイン商店に限りです、部屋に購入ができません。",
|
||||
[90002] = "コインの値段 : ",
|
||||
|
@ -367,7 +367,13 @@ namespace TJAPlayer3
|
||||
|
||||
this.iTaikoDefaultCourse = new CItemList(CLangManager.LangInstance.GetString(80), CItemBase.Eパネル種別.通常, TJAPlayer3.ConfigIni.nDefaultCourse,
|
||||
CLangManager.LangInstance.GetString(81),
|
||||
new string[] { "Easy", "Normal", "Hard", "Oni", "Edit" });
|
||||
new string[] {
|
||||
CLangManager.LangInstance.GetString(1040),
|
||||
CLangManager.LangInstance.GetString(1041),
|
||||
CLangManager.LangInstance.GetString(1042),
|
||||
CLangManager.LangInstance.GetString(1043),
|
||||
CLangManager.LangInstance.GetString(1044),
|
||||
CLangManager.LangInstance.GetString(1045) });
|
||||
this.list項目リスト.Add(this.iTaikoDefaultCourse);
|
||||
|
||||
this.iTaikoScoreMode = new CItemList(CLangManager.LangInstance.GetString(82), CItemBase.Eパネル種別.通常, TJAPlayer3.ConfigIni.nScoreMode,
|
||||
|
@ -136,7 +136,7 @@ namespace TJAPlayer3
|
||||
#endregion
|
||||
|
||||
this.r現在選択中の曲 = null;
|
||||
this.n現在のアンカ難易度レベル = TJAPlayer3.ConfigIni.nDefaultCourse;
|
||||
this.n現在のアンカ難易度レベル = Math.Min((int)Difficulty.Edit, TJAPlayer3.ConfigIni.nDefaultCourse);
|
||||
base.b活性化してない = true;
|
||||
this.bIsEnumeratingSongs = false;
|
||||
}
|
||||
@ -287,6 +287,14 @@ namespace TJAPlayer3
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
public void tReturnToRootBox()
|
||||
{
|
||||
while (this.r現在選択中の曲.r親ノード != null)
|
||||
tBOXを出る();
|
||||
}
|
||||
|
||||
|
||||
public bool tBOXを出る()
|
||||
{
|
||||
//Trace.TraceInformation( "box exit" );
|
||||
|
@ -912,7 +912,11 @@ namespace TJAPlayer3
|
||||
|
||||
#region [Pad displayables]
|
||||
|
||||
int[] currentPads = new int[2] { (int)Difficulty.Edit + 1, (int)Difficulty.Edit + 1 };
|
||||
int defaultTable = Math.Max(0, Math.Min((int)Difficulty.Edit + 1, TJAPlayer3.ConfigIni.nDefaultCourse));
|
||||
|
||||
int[] currentPads = new int[2] {
|
||||
defaultTable,
|
||||
defaultTable };
|
||||
|
||||
int tablesGap = 1034;
|
||||
|
||||
|
@ -231,6 +231,15 @@
|
||||
1033 : Dan title
|
||||
1034 : Plate title
|
||||
|
||||
# Difficulties (0104X)
|
||||
|
||||
1040 : Easy
|
||||
1041 : Normal
|
||||
1042 : Hard
|
||||
1043 : Extreme (Oni)
|
||||
1044 : Extra (Ura)
|
||||
1045 : Extreme / Extra
|
||||
|
||||
# Feature specific errors (9XXXX)
|
||||
|
||||
90000 : "Invalid condition" error message
|
||||
|
Loading…
Reference in New Issue
Block a user