1
0
mirror of synced 2024-11-28 09:20:53 +01:00

HSOption display Added (#188)

* HS用

* HS用2

* HS用画像追加
This commit is contained in:
OtinkoMann 2022-04-30 19:39:15 +09:00 committed by GitHub
parent 94a3d07892
commit aa90a3d0cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 1245 additions and 1169 deletions

View File

@ -52,7 +52,7 @@ namespace TJAPlayer3
const string TRAINING = @"19_Training\";
const string DANC = @"17_DanC\";
const string TOWER = @"20_Tower\";
const string HSOPTION = @"HSOption\";
// Tower infos
const string TOWERDON = @"Tower_Don\";
const string TOWERFLOOR = @"Tower_Floors\";
@ -432,6 +432,23 @@ namespace TJAPlayer3
{
Couse_Symbol[i] = TxC(GAME + COURSESYMBOL + Couse_Symbols[i] + ".png");
}
HiSp = new CTexture[14];
HiSp[0] = TxC(GAME + COURSESYMBOL + HSOPTION + @"0.png");
HiSp[1] = TxC(GAME + COURSESYMBOL + HSOPTION + @"1.png");
HiSp[2] = TxC(GAME + COURSESYMBOL + HSOPTION + @"2.png");
HiSp[3] = TxC(GAME + COURSESYMBOL + HSOPTION + @"3.png");
HiSp[4] = TxC(GAME + COURSESYMBOL + HSOPTION + @"4.png");
HiSp[5] = TxC(GAME + COURSESYMBOL + HSOPTION + @"5.png");
HiSp[6] = TxC(GAME + COURSESYMBOL + HSOPTION + @"6.png");
HiSp[7] = TxC(GAME + COURSESYMBOL + HSOPTION + @"7.png");
HiSp[8] = TxC(GAME + COURSESYMBOL + HSOPTION + @"8.png");
HiSp[9] = TxC(GAME + COURSESYMBOL + HSOPTION + @"9.png");
HiSp[10] = TxC(GAME + COURSESYMBOL + HSOPTION + @"10.png");
HiSp[11] = TxC(GAME + COURSESYMBOL + HSOPTION + @"11.png");
HiSp[12] = TxC(GAME + COURSESYMBOL + HSOPTION + @"12.png");
HiSp[13] = TxC(GAME + COURSESYMBOL + HSOPTION + @"13.png");
Taiko_Score = new CTexture[3];
Taiko_Score[0] = TxC(GAME + TAIKO + @"Score.png");
Taiko_Score[1] = TxC(GAME + TAIKO + @"Score_1P.png");
@ -1515,6 +1532,7 @@ namespace TJAPlayer3
Taiko_Combo_Text;
public CTexture[] Couse_Symbol, // コースシンボル
Taiko_PlayerNumber,
HiSp,
Taiko_NamePlate; // ネームプレート
public CTexture[] Taiko_Score,
Taiko_Combo,

View File

@ -243,6 +243,64 @@ namespace TJAPlayer3
);
}
//強引な実装すまぬ1P用
if (TJAPlayer3.ConfigIni.n譜面スクロール速度[0] == 10)
{
TJAPlayer3.Tx.HiSp[0].t2D描画(TJAPlayer3.app.Device, 114, 236);
}
if (TJAPlayer3.ConfigIni.n譜面スクロール速度[0] == 11)
{
TJAPlayer3.Tx.HiSp[1].t2D描画(TJAPlayer3.app.Device, 114, 236);
}
if (TJAPlayer3.ConfigIni.n譜面スクロール速度[0] == 12)
{
TJAPlayer3.Tx.HiSp[2].t2D描画(TJAPlayer3.app.Device, 114, 236);
}
if (TJAPlayer3.ConfigIni.n譜面スクロール速度[0] == 13)
{
TJAPlayer3.Tx.HiSp[3].t2D描画(TJAPlayer3.app.Device, 114, 236);
}
if (TJAPlayer3.ConfigIni.n譜面スクロール速度[0] == 14)
{
TJAPlayer3.Tx.HiSp[4].t2D描画(TJAPlayer3.app.Device, 114, 236);
}
if (TJAPlayer3.ConfigIni.n譜面スクロール速度[0] == 15)
{
TJAPlayer3.Tx.HiSp[5].t2D描画(TJAPlayer3.app.Device, 114, 236);
}
if (TJAPlayer3.ConfigIni.n譜面スクロール速度[0] == 16)
{
TJAPlayer3.Tx.HiSp[6].t2D描画(TJAPlayer3.app.Device, 114, 236);
}
if (TJAPlayer3.ConfigIni.n譜面スクロール速度[0] == 17)
{
TJAPlayer3.Tx.HiSp[7].t2D描画(TJAPlayer3.app.Device, 114, 236);
}
if (TJAPlayer3.ConfigIni.n譜面スクロール速度[0] == 18)
{
TJAPlayer3.Tx.HiSp[8].t2D描画(TJAPlayer3.app.Device, 114, 236);
}
if (TJAPlayer3.ConfigIni.n譜面スクロール速度[0] == 19)
{
TJAPlayer3.Tx.HiSp[9].t2D描画(TJAPlayer3.app.Device, 114, 236);
}
if (TJAPlayer3.ConfigIni.n譜面スクロール速度[0] == 24)
{
TJAPlayer3.Tx.HiSp[10].t2D描画(TJAPlayer3.app.Device, 114, 236);
}
if (TJAPlayer3.ConfigIni.n譜面スクロール速度[0] == 39)
{
TJAPlayer3.Tx.HiSp[11].t2D描画(TJAPlayer3.app.Device, 114, 236);
}
if (TJAPlayer3.ConfigIni.n譜面スクロール速度[0] == 44)
{
TJAPlayer3.Tx.HiSp[12].t2D描画(TJAPlayer3.app.Device, 114, 236);
}
if (TJAPlayer3.ConfigIni.n譜面スクロール速度[0] == 49)
{
TJAPlayer3.Tx.HiSp[13].t2D描画(TJAPlayer3.app.Device, 114, 236);
}
if (TJAPlayer3.ConfigIni.ShinuchiMode)
{
if (TJAPlayer3.Tx.Couse_Symbol[(int)Difficulty.Total] != null)

Binary file not shown.

After

Width:  |  Height:  |  Size: 412 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 452 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 504 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 535 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 523 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 530 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 477 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 447 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 469 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 478 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 402 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 501 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 474 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 519 B