1
0
mirror of synced 2025-02-21 04:47:15 +01:00

Add PREIMAGE support, still have to adapt it to the current UI

This commit is contained in:
0aubsq 2022-04-10 23:15:17 +02:00
parent 73dedf4886
commit 5b3311243e
4 changed files with 10 additions and 11 deletions

View File

@ -4924,6 +4924,10 @@ namespace TJAPlayer3
var life = (int)Convert.ToDouble(strCommandParam);
this.LIFE = life;
}
else if (strCommandName.Equals("PREIMAGE"))
{
this.PREIMAGE = strCommandParam;
}
else if (strCommandName.Equals("TOWERTYPE"))
{
var tt = (int)Convert.ToDouble(strCommandParam);

View File

@ -41,16 +41,6 @@ namespace TJAPlayer3
SkipSaveFileStep();
/*
this.stModeBar = new STModeBar[CMainMenuTab.__MenuCount];
for (int i = 0; i < this.stModeBar.Length; i++)
{
this.stModeBar[i].BarTexture = TJAPlayer3.Tx.ModeSelect_Bar[i];
this.stModeBar[i].n現在存在している行 = i + 1 - n現在の選択行モード選択;
}
*/
usedMenus = new int[] {
0,
1,

View File

@ -507,7 +507,10 @@ namespace TJAPlayer3
double num = ( (double) this.ct登場アニメ用.n現在の値 ) / 100.0;
double num2 = Math.Cos( ( 1.5 + ( 0.5 * num ) ) * Math.PI );
this.n本体X = 8;
this.n本体Y = 0x39 - ( (int) ( this.txパネル本体.sz画像サイズ.Height * ( 1.0 - ( num2 * num2 ) ) ) );
if (this.txパネル本体 != null)
this.n本体Y = 0x39 - ( (int) ( this.txパネル本体.sz画像サイズ.Height * ( 1.0 - ( num2 * num2 ) ) ) );
else
this.n本体Y = 8;
}
if( this.txパネル本体 != null )
{

View File

@ -461,6 +461,8 @@ namespace TJAPlayer3
#endregion
this.actPreimageパネル.On進行描画();
this.actPresound.On進行描画();
this.act演奏履歴パネル.On進行描画();