残りの画像の位置を自由に変更可能に (#372)
This commit is contained in:
parent
16027eb35f
commit
5591986939
@ -1620,6 +1620,34 @@ namespace TJAPlayer3
|
||||
{
|
||||
Config_SkinSample1[i] = int.Parse(strSplit[i]);
|
||||
}
|
||||
}
|
||||
else if (strCommand == "Config_KeyAssign")
|
||||
{
|
||||
string[] strSplit = strParam.Split(',');
|
||||
for (int i = 0; i < 2; i++)
|
||||
{
|
||||
Config_KeyAssign[i] = int.Parse(strSplit[i]);
|
||||
}
|
||||
}
|
||||
else if (strCommand == "Config_KeyAssign_Menu_Highlight")
|
||||
{
|
||||
string[] strSplit = strParam.Split(',');
|
||||
for (int i = 0; i < 2; i++)
|
||||
{
|
||||
Config_KeyAssign_Menu_Highlight[i] = int.Parse(strSplit[i]);
|
||||
}
|
||||
}
|
||||
else if (strCommand == "Config_KeyAssign_Font")
|
||||
{
|
||||
string[] strSplit = strParam.Split(',');
|
||||
for (int i = 0; i < 2; i++)
|
||||
{
|
||||
Config_KeyAssign_Font[i] = int.Parse(strSplit[i]);
|
||||
}
|
||||
}
|
||||
else if (strCommand == "Config_KeyAssign_Move")
|
||||
{
|
||||
Config_KeyAssign_Move = int.Parse(strParam);
|
||||
}
|
||||
#endregion
|
||||
|
||||
@ -1729,6 +1757,94 @@ namespace TJAPlayer3
|
||||
SongSelect_Bar_Anim_Y[i] = int.Parse(strSplit[i]);
|
||||
}
|
||||
}
|
||||
else if (strCommand == "SongSelect_DanStatus_Offset_X")
|
||||
{
|
||||
string[] strSplit = strParam.Split(',');
|
||||
for (int i = 0; i < 2; i++)
|
||||
{
|
||||
SongSelect_DanStatus_Offset_X[i] = int.Parse(strSplit[i]);
|
||||
}
|
||||
}
|
||||
else if (strCommand == "SongSelect_DanStatus_Offset_Y")
|
||||
{
|
||||
string[] strSplit = strParam.Split(',');
|
||||
for (int i = 0; i < 2; i++)
|
||||
{
|
||||
SongSelect_DanStatus_Offset_Y[i] = int.Parse(strSplit[i]);
|
||||
}
|
||||
}
|
||||
else if (strCommand == "SongSelect_TowerStatus_Offset_X")
|
||||
{
|
||||
string[] strSplit = strParam.Split(',');
|
||||
for (int i = 0; i < 2; i++)
|
||||
{
|
||||
SongSelect_TowerStatus_Offset_X[i] = int.Parse(strSplit[i]);
|
||||
}
|
||||
}
|
||||
else if (strCommand == "SongSelect_TowerStatus_Offset_Y")
|
||||
{
|
||||
string[] strSplit = strParam.Split(',');
|
||||
for (int i = 0; i < 2; i++)
|
||||
{
|
||||
SongSelect_TowerStatus_Offset_Y[i] = int.Parse(strSplit[i]);
|
||||
}
|
||||
}
|
||||
else if (strCommand == "SongSelect_RegularCrowns_Offset_X")
|
||||
{
|
||||
string[] strSplit = strParam.Split(',');
|
||||
for (int i = 0; i < 2; i++)
|
||||
{
|
||||
SongSelect_RegularCrowns_Offset_X[i] = int.Parse(strSplit[i]);
|
||||
}
|
||||
}
|
||||
else if (strCommand == "SongSelect_RegularCrowns_Offset_Y")
|
||||
{
|
||||
string[] strSplit = strParam.Split(',');
|
||||
for (int i = 0; i < 2; i++)
|
||||
{
|
||||
SongSelect_RegularCrowns_Offset_Y[i] = int.Parse(strSplit[i]);
|
||||
}
|
||||
}
|
||||
else if (strCommand == "SongSelect_RegularCrowns_ScoreRank_Offset_X")
|
||||
{
|
||||
string[] strSplit = strParam.Split(',');
|
||||
for (int i = 0; i < 2; i++)
|
||||
{
|
||||
SongSelect_RegularCrowns_ScoreRank_Offset_X[i] = int.Parse(strSplit[i]);
|
||||
}
|
||||
}
|
||||
else if (strCommand == "SongSelect_RegularCrowns_ScoreRank_Offset_Y")
|
||||
{
|
||||
string[] strSplit = strParam.Split(',');
|
||||
for (int i = 0; i < 2; i++)
|
||||
{
|
||||
SongSelect_RegularCrowns_ScoreRank_Offset_Y[i] = int.Parse(strSplit[i]);
|
||||
}
|
||||
}
|
||||
else if (strCommand == "SongSelect_RegularCrowns_Difficulty_Cymbol_Offset_X")
|
||||
{
|
||||
string[] strSplit = strParam.Split(',');
|
||||
for (int i = 0; i < 2; i++)
|
||||
{
|
||||
SongSelect_RegularCrowns_Difficulty_Cymbol_Offset_X[i] = int.Parse(strSplit[i]);
|
||||
}
|
||||
}
|
||||
else if (strCommand == "SongSelect_RegularCrowns_Difficulty_Cymbol_Offset_Y")
|
||||
{
|
||||
string[] strSplit = strParam.Split(',');
|
||||
for (int i = 0; i < 2; i++)
|
||||
{
|
||||
SongSelect_RegularCrowns_Difficulty_Cymbol_Offset_Y[i] = int.Parse(strSplit[i]);
|
||||
}
|
||||
}
|
||||
else if (strCommand == "SongSelect_FavoriteStatus_Offset")
|
||||
{
|
||||
string[] strSplit = strParam.Split(',');
|
||||
for (int i = 0; i < 2; i++)
|
||||
{
|
||||
SongSelect_FavoriteStatus_Offset[i] = int.Parse(strSplit[i]);
|
||||
}
|
||||
}
|
||||
else if (strCommand == "SongSelect_Bar_Title_Offset")
|
||||
{
|
||||
string[] strSplit = strParam.Split(',');
|
||||
@ -6335,6 +6451,11 @@ namespace TJAPlayer3
|
||||
public int[] Config_ExplanationPanel = new int[] { 67, 382 };
|
||||
public int[] Config_SkinSample1 = new int[] { 124, 449 };
|
||||
|
||||
public int[] Config_KeyAssign = new int[] { 389, 215 };
|
||||
public int[] Config_KeyAssign_Menu_Highlight = new int[] { 324, 66 };
|
||||
public int[] Config_KeyAssign_Font = new int[] { 308, 64 };
|
||||
public int Config_KeyAssign_Move = 20;
|
||||
|
||||
#endregion
|
||||
|
||||
#region Puchichara
|
||||
@ -6493,6 +6614,23 @@ namespace TJAPlayer3
|
||||
public int[] SongSelect_Bar_Title_Offset = new int[] { 316, 62 };
|
||||
public int[] SongSelect_Bar_SubTitle_Offset = new int[] { 316, 90 };
|
||||
|
||||
public int[] SongSelect_DanStatus_Offset_X = new int[] { 30, 602 };
|
||||
public int[] SongSelect_DanStatus_Offset_Y = new int[] { 30, 30 };
|
||||
|
||||
public int[] SongSelect_TowerStatus_Offset_X = new int[] { 30, 602 };
|
||||
public int[] SongSelect_TowerStatus_Offset_Y = new int[] { 30, 30 };
|
||||
|
||||
public int[] SongSelect_RegularCrowns_Offset_X = new int[] { 30, 602 };
|
||||
public int[] SongSelect_RegularCrowns_Offset_Y = new int[] { 30, 30 };
|
||||
|
||||
public int[] SongSelect_RegularCrowns_ScoreRank_Offset_X = new int[] { 0, 0 };
|
||||
public int[] SongSelect_RegularCrowns_ScoreRank_Offset_Y = new int[] { 0, 30 };
|
||||
|
||||
public int[] SongSelect_RegularCrowns_Difficulty_Cymbol_Offset_X = new int[] { 22, 22 };
|
||||
public int[] SongSelect_RegularCrowns_Difficulty_Cymbol_Offset_Y = new int[] { 22, 52 };
|
||||
|
||||
public int[] SongSelect_FavoriteStatus_Offset = new int[] { 90, 30 };
|
||||
|
||||
public int SongSelect_BoxName_Scale = 28;
|
||||
public int SongSelect_MusicName_Scale = 22;
|
||||
public int SongSelect_Subtitle_Scale = 13;
|
||||
|
@ -136,22 +136,27 @@ namespace TJAPlayer3
|
||||
}
|
||||
if(TJAPlayer3.Tx.Menu_Highlight != null )
|
||||
{
|
||||
int num = 20;
|
||||
int num2 = 0x144;
|
||||
int num3 = 0x3e + ( num * ( this.n現在の選択行 + 1 ) );
|
||||
TJAPlayer3.Tx.Menu_Highlight.t2D描画( TJAPlayer3.app.Device, num2, num3, new Rectangle( 0, 0, 0x10, 0x20 ) );
|
||||
num2 += 0x10;
|
||||
Rectangle rectangle = new Rectangle( 8, 0, 0x10, 0x20 );
|
||||
int num = TJAPlayer3.Skin.Config_KeyAssign_Move;
|
||||
int num2 = TJAPlayer3.Skin.Config_KeyAssign_Menu_Highlight[0];
|
||||
int num3 = TJAPlayer3.Skin.Config_KeyAssign_Menu_Highlight[1] + ( num * ( this.n現在の選択行 + 1 ) );
|
||||
//TJAPlayer3.Tx.Menu_Highlight.t2D描画( TJAPlayer3.app.Device, num2, num3, new Rectangle( 0, 0, 0x10, 0x20 ) );
|
||||
float scale = 0.55f;
|
||||
for( int j = 0; j < 14; j++ )
|
||||
{
|
||||
TJAPlayer3.Tx.Menu_Highlight.t2D描画( TJAPlayer3.app.Device, num2, num3, rectangle );
|
||||
num2 += 0x10;
|
||||
TJAPlayer3.Tx.Menu_Highlight.vc拡大縮小倍率.X = scale;
|
||||
TJAPlayer3.Tx.Menu_Highlight.vc拡大縮小倍率.Y = scale;
|
||||
|
||||
TJAPlayer3.Tx.Menu_Highlight.t2D描画( TJAPlayer3.app.Device, num2, num3 );
|
||||
num2 += (int)(TJAPlayer3.Tx.Menu_Highlight.szテクスチャサイズ.Width * scale);
|
||||
|
||||
TJAPlayer3.Tx.Menu_Highlight.vc拡大縮小倍率.X = 1;
|
||||
TJAPlayer3.Tx.Menu_Highlight.vc拡大縮小倍率.Y = 1;
|
||||
}
|
||||
TJAPlayer3.Tx.Menu_Highlight.t2D描画( TJAPlayer3.app.Device, num2, num3, new Rectangle( 0x10, 0, 0x10, 0x20 ) );
|
||||
//TJAPlayer3.Tx.Menu_Highlight.t2D描画( TJAPlayer3.app.Device, num2, num3, new Rectangle( 0x10, 0, 0x10, 0x20 ) );
|
||||
}
|
||||
int num5 = 20;
|
||||
int x = 0x134;
|
||||
int y = 0x40;
|
||||
int num5 = TJAPlayer3.Skin.Config_KeyAssign_Move;
|
||||
int x = TJAPlayer3.Skin.Config_KeyAssign_Font[0];
|
||||
int y = TJAPlayer3.Skin.Config_KeyAssign_Font[1];
|
||||
TJAPlayer3.stageコンフィグ.actFont.t文字列描画( x, y, this.strパッド名, false, 0.75f );
|
||||
y += num5;
|
||||
CConfigIni.CKeyAssign.STKEYASSIGN[] stkeyassignArray = TJAPlayer3.ConfigIni.KeyAssign[ (int) this.part ][ (int) this.pad ];
|
||||
@ -160,34 +165,34 @@ namespace TJAPlayer3
|
||||
switch( stkeyassignArray[ i ].入力デバイス )
|
||||
{
|
||||
case E入力デバイス.キーボード:
|
||||
this.tアサインコードの描画_Keyboard( i + 1, x + 20, y, stkeyassignArray[ i ].ID, stkeyassignArray[ i ].コード, this.n現在の選択行 == i );
|
||||
this.tアサインコードの描画_Keyboard( i + 1, x + num5, y, stkeyassignArray[ i ].ID, stkeyassignArray[ i ].コード, this.n現在の選択行 == i );
|
||||
break;
|
||||
|
||||
case E入力デバイス.MIDI入力:
|
||||
this.tアサインコードの描画_MidiIn( i + 1, x + 20, y, stkeyassignArray[ i ].ID, stkeyassignArray[ i ].コード, this.n現在の選択行 == i );
|
||||
this.tアサインコードの描画_MidiIn( i + 1, x + num5, y, stkeyassignArray[ i ].ID, stkeyassignArray[ i ].コード, this.n現在の選択行 == i );
|
||||
break;
|
||||
|
||||
case E入力デバイス.ジョイパッド:
|
||||
this.tアサインコードの描画_Joypad( i + 1, x + 20, y, stkeyassignArray[ i ].ID, stkeyassignArray[ i ].コード, this.n現在の選択行 == i );
|
||||
this.tアサインコードの描画_Joypad( i + 1, x + num5, y, stkeyassignArray[ i ].ID, stkeyassignArray[ i ].コード, this.n現在の選択行 == i );
|
||||
break;
|
||||
|
||||
case E入力デバイス.マウス:
|
||||
this.tアサインコードの描画_Mouse( i + 1, x + 20, y, stkeyassignArray[ i ].ID, stkeyassignArray[ i ].コード, this.n現在の選択行 == i );
|
||||
this.tアサインコードの描画_Mouse( i + 1, x + num5, y, stkeyassignArray[ i ].ID, stkeyassignArray[ i ].コード, this.n現在の選択行 == i );
|
||||
break;
|
||||
|
||||
default:
|
||||
TJAPlayer3.stageコンフィグ.actFont.t文字列描画( x + 20, y, string.Format( "{0,2}.", i + 1 ), this.n現在の選択行 == i, 0.75f );
|
||||
TJAPlayer3.stageコンフィグ.actFont.t文字列描画( x + num5, y, string.Format( "{0,2}.", i + 1 ), this.n現在の選択行 == i, 0.75f );
|
||||
break;
|
||||
}
|
||||
y += num5;
|
||||
}
|
||||
TJAPlayer3.stageコンフィグ.actFont.t文字列描画( x + 20, y, "Reset", this.n現在の選択行 == 0x10, 0.75f );
|
||||
TJAPlayer3.stageコンフィグ.actFont.t文字列描画( x + num5, y, "Reset", this.n現在の選択行 == 0x10, 0.75f );
|
||||
y += num5;
|
||||
TJAPlayer3.stageコンフィグ.actFont.t文字列描画( x + 20, y, "<< Returnto List", this.n現在の選択行 == 0x11, 0.75f );
|
||||
TJAPlayer3.stageコンフィグ.actFont.t文字列描画( x + num5, y, "<< Returnto List", this.n現在の選択行 == 0x11, 0.75f );
|
||||
y += num5;
|
||||
if( this.bキー入力待ち && ( TJAPlayer3.Tx.Config_KeyAssign != null ) )
|
||||
{
|
||||
TJAPlayer3.Tx.Config_KeyAssign.t2D描画( TJAPlayer3.app.Device, 0x185, 0xd7 );
|
||||
TJAPlayer3.Tx.Config_KeyAssign.t2D描画( TJAPlayer3.app.Device, TJAPlayer3.Skin.Config_KeyAssign[0], TJAPlayer3.Skin.Config_KeyAssign[1]);
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
|
@ -1569,14 +1569,16 @@ namespace TJAPlayer3
|
||||
|
||||
for (int i = 0; i < TJAPlayer3.ConfigIni.nPlayerCount; i++)
|
||||
{
|
||||
int diff = 640 - 354;
|
||||
int shift = 640 + ((i == 1) ? diff : -diff);
|
||||
int ap = TJAPlayer3.GetActualPlayer(i);
|
||||
|
||||
int[] clear = this.r現在選択中の曲.arスコア[(int)Difficulty.Dan].GPInfo[ap].nClear;
|
||||
|
||||
int currentRank = Math.Min(clear[0], 6) - 1;
|
||||
displayDanStatus(shift, (int)(344 - centerMove / 1.1f), currentRank, 0.2f);
|
||||
|
||||
int x = TJAPlayer3.Skin.SongSelect_Bar_X[barCenterNum] + TJAPlayer3.Skin.SongSelect_DanStatus_Offset_X[i];
|
||||
int y = TJAPlayer3.Skin.SongSelect_Bar_Y[barCenterNum] + TJAPlayer3.Skin.SongSelect_DanStatus_Offset_Y[i];
|
||||
|
||||
displayDanStatus(x, (int)(y - centerMove / 1.1f), currentRank, 0.2f);
|
||||
}
|
||||
|
||||
}
|
||||
@ -1586,14 +1588,16 @@ namespace TJAPlayer3
|
||||
|
||||
for (int i = 0; i < TJAPlayer3.ConfigIni.nPlayerCount; i++)
|
||||
{
|
||||
int diff = 640 - 354;
|
||||
int shift = 640 + ((i == 1) ? diff : -diff);
|
||||
int ap = TJAPlayer3.GetActualPlayer(i);
|
||||
|
||||
int[] clear = this.r現在選択中の曲.arスコア[(int)Difficulty.Tower].GPInfo[ap].nClear;
|
||||
|
||||
int currentRank = Math.Min(clear[0], 7) - 1;
|
||||
displayTowerStatus(shift, (int)(344 - centerMove / 1.1f), currentRank, 0.3f);
|
||||
|
||||
int x = TJAPlayer3.Skin.SongSelect_Bar_X[barCenterNum] + TJAPlayer3.Skin.SongSelect_TowerStatus_Offset_X[i];
|
||||
int y = TJAPlayer3.Skin.SongSelect_Bar_Y[barCenterNum] + TJAPlayer3.Skin.SongSelect_TowerStatus_Offset_Y[i];
|
||||
|
||||
displayTowerStatus(x, (int)(y - centerMove / 1.1f), currentRank, 0.3f);
|
||||
}
|
||||
}
|
||||
else if (this.r現在選択中の曲.arスコア[3] != null || this.r現在選択中の曲.arスコア[4] != null)
|
||||
@ -1602,15 +1606,16 @@ namespace TJAPlayer3
|
||||
|
||||
for (int i = 0; i < TJAPlayer3.ConfigIni.nPlayerCount; i++)
|
||||
{
|
||||
int diff = 640 - 354;
|
||||
int shift = 640 + ((i == 1) ? diff : -diff) - 354;
|
||||
int ap = TJAPlayer3.GetActualPlayer(i);
|
||||
|
||||
int[] クリア = sr.GPInfo[ap].nClear;
|
||||
|
||||
int[] スコアランク = sr.GPInfo[ap].nScoreRank;
|
||||
|
||||
displayRegularCrowns(TJAPlayer3.Skin.SongSelect_Bar_X[barCenterNum] + 30 + shift, (int)(TJAPlayer3.Skin.SongSelect_Bar_Y[barCenterNum] + 30 - centerMove / 1.1f), クリア, スコアランク, 0.8f + BarAnimeCount / 620f);
|
||||
int x = TJAPlayer3.Skin.SongSelect_Bar_X[barCenterNum] + TJAPlayer3.Skin.SongSelect_RegularCrowns_Offset_X[i];
|
||||
int y = TJAPlayer3.Skin.SongSelect_Bar_Y[barCenterNum] + TJAPlayer3.Skin.SongSelect_RegularCrowns_Offset_Y[i];
|
||||
|
||||
displayRegularCrowns(x, (int)(y - centerMove / 1.1f), クリア, スコアランク, 0.8f + BarAnimeCount / 620f);
|
||||
|
||||
}
|
||||
}
|
||||
@ -1620,7 +1625,8 @@ namespace TJAPlayer3
|
||||
|
||||
#region [Favorite status]
|
||||
|
||||
displayFavoriteStatus(TJAPlayer3.Skin.SongSelect_Bar_X[barCenterNum] + 90, (int)(TJAPlayer3.Skin.SongSelect_Bar_Y[barCenterNum] + 30 - centerMove / 1.1f), this.r現在選択中の曲.uniqueId, 1f + BarAnimeCount / 620f);
|
||||
displayFavoriteStatus(TJAPlayer3.Skin.SongSelect_Bar_X[barCenterNum] + TJAPlayer3.Skin.SongSelect_FavoriteStatus_Offset[0],
|
||||
(int)(TJAPlayer3.Skin.SongSelect_Bar_Y[barCenterNum] + TJAPlayer3.Skin.SongSelect_FavoriteStatus_Offset[1] - centerMove / 1.1f), this.r現在選択中の曲.uniqueId, 1f + BarAnimeCount / 620f);
|
||||
|
||||
#endregion
|
||||
|
||||
@ -2684,10 +2690,7 @@ namespace TJAPlayer3
|
||||
|
||||
for (int i = 0; i < TJAPlayer3.ConfigIni.nPlayerCount; i++)
|
||||
{
|
||||
int diff = 640 - 354;
|
||||
int shift = 640 + ((i == 1) ? diff : -diff) - 354;
|
||||
|
||||
displayDanStatus(x + 30 + shift, y + 30, Math.Min(クリア[i][0], 6) - 1, 0.2f);
|
||||
displayDanStatus(x + TJAPlayer3.Skin.SongSelect_DanStatus_Offset_X[i], y + TJAPlayer3.Skin.SongSelect_DanStatus_Offset_Y[i], Math.Min(クリア[i][0], 6) - 1, 0.2f);
|
||||
}
|
||||
}
|
||||
else if (_songType == 2)
|
||||
@ -2696,12 +2699,7 @@ namespace TJAPlayer3
|
||||
|
||||
for (int i = 0; i < TJAPlayer3.ConfigIni.nPlayerCount; i++)
|
||||
{
|
||||
int diff = 640 - 354;
|
||||
int shift = 640 + ((i == 1) ? diff : -diff) - 354;
|
||||
|
||||
displayTowerStatus(x + 30 + shift, y + 30, Math.Min(クリア[i][0], 7) - 1, 0.3f);
|
||||
|
||||
// TJAPlayer3.act文字コンソール.tPrint(x + 30 + shift - 50, y + 30, C文字コンソール.Eフォント種別.白, (Math.Min(クリア[i][0], 7) - 1).ToString());
|
||||
displayTowerStatus(x + TJAPlayer3.Skin.SongSelect_DanStatus_Offset_X[i], y + TJAPlayer3.Skin.SongSelect_DanStatus_Offset_Y[i], Math.Min(クリア[i][0], 7) - 1, 0.3f);
|
||||
}
|
||||
}
|
||||
else
|
||||
@ -2710,14 +2708,11 @@ namespace TJAPlayer3
|
||||
|
||||
for (int i = 0; i < TJAPlayer3.ConfigIni.nPlayerCount; i++)
|
||||
{
|
||||
int diff = 640 - 354;
|
||||
int shift = 640 + ((i == 1) ? diff : -diff) - 354;
|
||||
|
||||
displayRegularCrowns(x + 30 + shift, y + 30, クリア[i], スコアランク[i], 0.8f);
|
||||
displayRegularCrowns(x + TJAPlayer3.Skin.SongSelect_DanStatus_Offset_X[i], y + TJAPlayer3.Skin.SongSelect_DanStatus_Offset_Y[i], クリア[i], スコアランク[i], 0.8f);
|
||||
}
|
||||
}
|
||||
|
||||
displayFavoriteStatus(x + 90, y + 30, csu, 1f);
|
||||
displayFavoriteStatus(x + TJAPlayer3.Skin.SongSelect_FavoriteStatus_Offset[0], y + TJAPlayer3.Skin.SongSelect_FavoriteStatus_Offset[1], csu, 1f);
|
||||
tPrintLevelNumberBig(
|
||||
x + TJAPlayer3.Skin.SongSelect_Level_Offset[0],
|
||||
y + TJAPlayer3.Skin.SongSelect_Level_Offset[1],
|
||||
@ -2730,10 +2725,13 @@ namespace TJAPlayer3
|
||||
{
|
||||
if (grade >= 0 && TJAPlayer3.Tx.TowerResult_ScoreRankEffect != null)
|
||||
{
|
||||
int scoreRankEffect_width = TJAPlayer3.Tx.TowerResult_ScoreRankEffect.szテクスチャサイズ.Width / 7;
|
||||
int scoreRankEffect_height = TJAPlayer3.Tx.TowerResult_ScoreRankEffect.szテクスチャサイズ.Height;
|
||||
|
||||
TJAPlayer3.Tx.TowerResult_ScoreRankEffect.Opacity = 255;
|
||||
TJAPlayer3.Tx.TowerResult_ScoreRankEffect.vc拡大縮小倍率.X = _resize;
|
||||
TJAPlayer3.Tx.TowerResult_ScoreRankEffect.vc拡大縮小倍率.Y = _resize;
|
||||
TJAPlayer3.Tx.TowerResult_ScoreRankEffect.t2D拡大率考慮中央基準描画(TJAPlayer3.app.Device, x, y, new Rectangle(grade * 229, 0, 229, 194));
|
||||
TJAPlayer3.Tx.TowerResult_ScoreRankEffect.t2D拡大率考慮中央基準描画(TJAPlayer3.app.Device, x, y, new Rectangle(grade * scoreRankEffect_width, 0, scoreRankEffect_width, scoreRankEffect_height));
|
||||
TJAPlayer3.Tx.TowerResult_ScoreRankEffect.vc拡大縮小倍率.X = 1f;
|
||||
TJAPlayer3.Tx.TowerResult_ScoreRankEffect.vc拡大縮小倍率.Y = 1f;
|
||||
}
|
||||
@ -2743,10 +2741,13 @@ namespace TJAPlayer3
|
||||
{
|
||||
if (grade >= 0 && TJAPlayer3.Tx.DanResult_Rank != null)
|
||||
{
|
||||
int danResult_rank_width = TJAPlayer3.Tx.DanResult_Rank.szテクスチャサイズ.Width / 7;
|
||||
int danResult_rank_height = TJAPlayer3.Tx.DanResult_Rank.szテクスチャサイズ.Height;
|
||||
|
||||
TJAPlayer3.Tx.DanResult_Rank.Opacity = 255;
|
||||
TJAPlayer3.Tx.DanResult_Rank.vc拡大縮小倍率.X = _resize;
|
||||
TJAPlayer3.Tx.DanResult_Rank.vc拡大縮小倍率.Y = _resize;
|
||||
TJAPlayer3.Tx.DanResult_Rank.t2D拡大率考慮中央基準描画(TJAPlayer3.app.Device, x, y, new Rectangle(334 * (grade + 1), 0, 334, 334));
|
||||
TJAPlayer3.Tx.DanResult_Rank.t2D拡大率考慮中央基準描画(TJAPlayer3.app.Device, x, y, new Rectangle(danResult_rank_width * (grade + 1), 0, danResult_rank_width, danResult_rank_height));
|
||||
TJAPlayer3.Tx.DanResult_Rank.vc拡大縮小倍率.X = 1f;
|
||||
TJAPlayer3.Tx.DanResult_Rank.vc拡大縮小倍率.Y = 1f;
|
||||
}
|
||||
@ -2780,18 +2781,23 @@ namespace TJAPlayer3
|
||||
{
|
||||
float width = TJAPlayer3.Tx.SongSelect_Crown.szテクスチャサイズ.Width / 15.0f;
|
||||
int height = TJAPlayer3.Tx.SongSelect_Crown.szテクスチャサイズ.Height;
|
||||
TJAPlayer3.Tx.SongSelect_Crown?.t2D拡大率考慮中央基準描画(TJAPlayer3.app.Device, x, y, new RectangleF(12 * width + (クリア[bestCrown] - 1) * width, 0, width, height));
|
||||
TJAPlayer3.Tx.SongSelect_Crown?.t2D拡大率考慮中央基準描画(TJAPlayer3.app.Device, x + TJAPlayer3.Skin.SongSelect_RegularCrowns_ScoreRank_Offset_X[0], y + TJAPlayer3.Skin.SongSelect_RegularCrowns_ScoreRank_Offset_Y[0],
|
||||
new RectangleF(12 * width + (クリア[bestCrown] - 1) * width, 0, width, height));
|
||||
}
|
||||
|
||||
if (bestScoreRank >= 0)
|
||||
{
|
||||
int width = TJAPlayer3.Tx.SongSelect_ScoreRank.szテクスチャサイズ.Width;
|
||||
float height = TJAPlayer3.Tx.SongSelect_ScoreRank.szテクスチャサイズ.Height / 7.0f;
|
||||
TJAPlayer3.Tx.SongSelect_ScoreRank?.t2D拡大率考慮中央基準描画(TJAPlayer3.app.Device, x, y + 30, new RectangleF(0, (スコアランク[bestScoreRank] - 1) * height, width, height));
|
||||
TJAPlayer3.Tx.SongSelect_ScoreRank?.t2D拡大率考慮中央基準描画(TJAPlayer3.app.Device, x + TJAPlayer3.Skin.SongSelect_RegularCrowns_ScoreRank_Offset_X[1], y + TJAPlayer3.Skin.SongSelect_RegularCrowns_ScoreRank_Offset_Y[1],
|
||||
new RectangleF(0, (スコアランク[bestScoreRank] - 1) * height, width, height));
|
||||
}
|
||||
|
||||
if (TJAPlayer3.Tx.Dani_Difficulty_Cymbol != null)
|
||||
{
|
||||
{
|
||||
int dani_difficulty_cymbol_width = TJAPlayer3.Tx.Dani_Difficulty_Cymbol.szテクスチャサイズ.Width / 5;
|
||||
int dani_difficulty_cymbol_height = TJAPlayer3.Tx.Dani_Difficulty_Cymbol.szテクスチャサイズ.Height;
|
||||
|
||||
TJAPlayer3.Tx.Dani_Difficulty_Cymbol.Opacity = TJAPlayer3.Tx.SongSelect_Favorite.Opacity;
|
||||
TJAPlayer3.Tx.Dani_Difficulty_Cymbol.vc拡大縮小倍率.X = 0.5f;
|
||||
TJAPlayer3.Tx.Dani_Difficulty_Cymbol.vc拡大縮小倍率.Y = 0.5f;
|
||||
@ -2799,17 +2805,17 @@ namespace TJAPlayer3
|
||||
if (bestCrown >= 0)
|
||||
{
|
||||
TJAPlayer3.Tx.Dani_Difficulty_Cymbol.t2D中心基準描画(TJAPlayer3.app.Device,
|
||||
x + 22,
|
||||
y + 22,
|
||||
new Rectangle(bestCrown * 53, 0, 53, 53));
|
||||
x + TJAPlayer3.Skin.SongSelect_RegularCrowns_Difficulty_Cymbol_Offset_X[0],
|
||||
y + TJAPlayer3.Skin.SongSelect_RegularCrowns_Difficulty_Cymbol_Offset_Y[0],
|
||||
new Rectangle(bestCrown * dani_difficulty_cymbol_width, 0, dani_difficulty_cymbol_width, dani_difficulty_cymbol_height));
|
||||
}
|
||||
|
||||
if (bestScoreRank >= 0)
|
||||
{
|
||||
TJAPlayer3.Tx.Dani_Difficulty_Cymbol.t2D中心基準描画(TJAPlayer3.app.Device,
|
||||
x + 22,
|
||||
y + 52,
|
||||
new Rectangle(bestScoreRank * 53, 0, 53, 53));
|
||||
x + TJAPlayer3.Skin.SongSelect_RegularCrowns_Difficulty_Cymbol_Offset_X[1],
|
||||
y + TJAPlayer3.Skin.SongSelect_RegularCrowns_Difficulty_Cymbol_Offset_Y[1],
|
||||
new Rectangle(bestScoreRank * dani_difficulty_cymbol_width, 0, dani_difficulty_cymbol_width, dani_difficulty_cymbol_height));
|
||||
}
|
||||
|
||||
TJAPlayer3.Tx.Dani_Difficulty_Cymbol.Opacity = 255;
|
||||
|
@ -16,481 +16,6 @@ namespace TJAPlayer3
|
||||
|
||||
public CActDFPFont()
|
||||
{
|
||||
ST文字領域[] st文字領域Array = new ST文字領域[ 0x5d+2 ];
|
||||
ST文字領域 st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域 = st文字領域94;
|
||||
st文字領域.ch = ' ';
|
||||
st文字領域.rc = new Rectangle( 10, 3, 13, 0x1b );
|
||||
st文字領域Array[ 0 ] = st文字領域;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域2 = st文字領域94;
|
||||
st文字領域2.ch = '!';
|
||||
st文字領域2.rc = new Rectangle( 0x19, 3, 14, 0x1b );
|
||||
st文字領域Array[ 1 ] = st文字領域2;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域3 = st文字領域94;
|
||||
st文字領域3.ch = '"';
|
||||
st文字領域3.rc = new Rectangle( 0x2c, 3, 0x11, 0x1b );
|
||||
st文字領域Array[ 2 ] = st文字領域3;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域4 = st文字領域94;
|
||||
st文字領域4.ch = '#';
|
||||
st文字領域4.rc = new Rectangle( 0x40, 3, 0x18, 0x1b );
|
||||
st文字領域Array[ 3 ] = st文字領域4;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域5 = st文字領域94;
|
||||
st文字領域5.ch = '$';
|
||||
st文字領域5.rc = new Rectangle( 90, 3, 0x15, 0x1b );
|
||||
st文字領域Array[ 4 ] = st文字領域5;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域6 = st文字領域94;
|
||||
st文字領域6.ch = '%';
|
||||
st文字領域6.rc = new Rectangle( 0x71, 3, 0x1b, 0x1b );
|
||||
st文字領域Array[ 5 ] = st文字領域6;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域7 = st文字領域94;
|
||||
st文字領域7.ch = '&';
|
||||
st文字領域7.rc = new Rectangle( 0x8e, 3, 0x18, 0x1b );
|
||||
st文字領域Array[ 6 ] = st文字領域7;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域8 = st文字領域94;
|
||||
st文字領域8.ch = '\'';
|
||||
st文字領域8.rc = new Rectangle( 0xab, 3, 11, 0x1b );
|
||||
st文字領域Array[ 7 ] = st文字領域8;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域9 = st文字領域94;
|
||||
st文字領域9.ch = '(';
|
||||
st文字領域9.rc = new Rectangle( 0xc0, 3, 0x10, 0x1b );
|
||||
st文字領域Array[ 8 ] = st文字領域9;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域10 = st文字領域94;
|
||||
st文字領域10.ch = ')';
|
||||
st文字領域10.rc = new Rectangle( 0xd0, 3, 0x10, 0x1b );
|
||||
st文字領域Array[ 9 ] = st文字領域10;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域11 = st文字領域94;
|
||||
st文字領域11.ch = '*';
|
||||
st文字領域11.rc = new Rectangle( 0xe2, 3, 0x15, 0x1b );
|
||||
st文字領域Array[ 10 ] = st文字領域11;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域12 = st文字領域94;
|
||||
st文字領域12.ch = '+';
|
||||
st文字領域12.rc = new Rectangle( 2, 0x1f, 0x18, 0x1b );
|
||||
st文字領域Array[ 11 ] = st文字領域12;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域13 = st文字領域94;
|
||||
st文字領域13.ch = ',';
|
||||
st文字領域13.rc = new Rectangle( 0x1b, 0x1f, 11, 0x1b );
|
||||
st文字領域Array[ 12 ] = st文字領域13;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域14 = st文字領域94;
|
||||
st文字領域14.ch = '-';
|
||||
st文字領域14.rc = new Rectangle( 0x29, 0x1f, 13, 0x1b );
|
||||
st文字領域Array[ 13 ] = st文字領域14;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域15 = st文字領域94;
|
||||
st文字領域15.ch = '.';
|
||||
st文字領域15.rc = new Rectangle( 0x37, 0x1f, 11, 0x1b );
|
||||
st文字領域Array[ 14 ] = st文字領域15;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域16 = st文字領域94;
|
||||
st文字領域16.ch = '/';
|
||||
st文字領域16.rc = new Rectangle( 0x44, 0x1f, 0x15, 0x1b );
|
||||
st文字領域Array[ 15 ] = st文字領域16;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域17 = st文字領域94;
|
||||
st文字領域17.ch = '0';
|
||||
st文字領域17.rc = new Rectangle( 0x5b, 0x1f, 20, 0x1b );
|
||||
st文字領域Array[ 0x10 ] = st文字領域17;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域18 = st文字領域94;
|
||||
st文字領域18.ch = '1';
|
||||
st文字領域18.rc = new Rectangle( 0x75, 0x1f, 14, 0x1b );
|
||||
st文字領域Array[ 0x11 ] = st文字領域18;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域19 = st文字領域94;
|
||||
st文字領域19.ch = '2';
|
||||
st文字領域19.rc = new Rectangle( 0x86, 0x1f, 0x15, 0x1b );
|
||||
st文字領域Array[ 0x12 ] = st文字領域19;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域20 = st文字領域94;
|
||||
st文字領域20.ch = '3';
|
||||
st文字領域20.rc = new Rectangle( 0x9d, 0x1f, 20, 0x1b );
|
||||
st文字領域Array[ 0x13 ] = st文字領域20;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域21 = st文字領域94;
|
||||
st文字領域21.ch = '4';
|
||||
st文字領域21.rc = new Rectangle( 0xb3, 0x1f, 20, 0x1b );
|
||||
st文字領域Array[ 20 ] = st文字領域21;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域22 = st文字領域94;
|
||||
st文字領域22.ch = '5';
|
||||
st文字領域22.rc = new Rectangle( 0xca, 0x1f, 0x13, 0x1b );
|
||||
st文字領域Array[ 0x15 ] = st文字領域22;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域23 = st文字領域94;
|
||||
st文字領域23.ch = '6';
|
||||
st文字領域23.rc = new Rectangle( 0xe0, 0x1f, 20, 0x1b );
|
||||
st文字領域Array[ 0x16 ] = st文字領域23;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域24 = st文字領域94;
|
||||
st文字領域24.ch = '7';
|
||||
st文字領域24.rc = new Rectangle( 4, 0x3b, 0x13, 0x1b );
|
||||
st文字領域Array[ 0x17 ] = st文字領域24;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域25 = st文字領域94;
|
||||
st文字領域25.ch = '8';
|
||||
st文字領域25.rc = new Rectangle( 0x18, 0x3b, 20, 0x1b );
|
||||
st文字領域Array[ 0x18 ] = st文字領域25;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域26 = st文字領域94;
|
||||
st文字領域26.ch = '9';
|
||||
st文字領域26.rc = new Rectangle( 0x2f, 0x3b, 0x13, 0x1b );
|
||||
st文字領域Array[ 0x19 ] = st文字領域26;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域27 = st文字領域94;
|
||||
st文字領域27.ch = ':';
|
||||
st文字領域27.rc = new Rectangle( 0x44, 0x3b, 12, 0x1b );
|
||||
st文字領域Array[ 0x1a ] = st文字領域27;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域28 = st文字領域94;
|
||||
st文字領域28.ch = ';';
|
||||
st文字領域28.rc = new Rectangle( 0x51, 0x3b, 13, 0x1b );
|
||||
st文字領域Array[ 0x1b ] = st文字領域28;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域29 = st文字領域94;
|
||||
st文字領域29.ch = '<';
|
||||
st文字領域29.rc = new Rectangle( 0x60, 0x3b, 20, 0x1b );
|
||||
st文字領域Array[ 0x1c ] = st文字領域29;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域30 = st文字領域94;
|
||||
st文字領域30.ch = '=';
|
||||
st文字領域30.rc = new Rectangle( 0x74, 0x3b, 0x11, 0x1b );
|
||||
st文字領域Array[ 0x1d ] = st文字領域30;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域31 = st文字領域94;
|
||||
st文字領域31.ch = '>';
|
||||
st文字領域31.rc = new Rectangle( 0x85, 0x3b, 20, 0x1b );
|
||||
st文字領域Array[ 30 ] = st文字領域31;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域32 = st文字領域94;
|
||||
st文字領域32.ch = '?';
|
||||
st文字領域32.rc = new Rectangle( 0x9c, 0x3b, 20, 0x1b );
|
||||
st文字領域Array[ 0x1f ] = st文字領域32;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域33 = st文字領域94;
|
||||
st文字領域33.ch = 'A';
|
||||
st文字領域33.rc = new Rectangle( 0xb1, 0x3b, 0x17, 0x1b );
|
||||
st文字領域Array[ 0x20 ] = st文字領域33;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域34 = st文字領域94;
|
||||
st文字領域34.ch = 'B';
|
||||
st文字領域34.rc = new Rectangle( 0xcb, 0x3b, 0x15, 0x1b );
|
||||
st文字領域Array[ 0x21 ] = st文字領域34;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域35 = st文字領域94;
|
||||
st文字領域35.ch = 'C';
|
||||
st文字領域35.rc = new Rectangle( 0xe3, 0x3b, 0x16, 0x1b );
|
||||
st文字領域Array[ 0x22 ] = st文字領域35;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域36 = st文字領域94;
|
||||
st文字領域36.ch = 'D';
|
||||
st文字領域36.rc = new Rectangle( 2, 0x57, 0x16, 0x1b );
|
||||
st文字領域Array[ 0x23 ] = st文字領域36;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域37 = st文字領域94;
|
||||
st文字領域37.ch = 'E';
|
||||
st文字領域37.rc = new Rectangle( 0x1a, 0x57, 0x16, 0x1b );
|
||||
st文字領域Array[ 0x24 ] = st文字領域37;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域38 = st文字領域94;
|
||||
st文字領域38.ch = 'F';
|
||||
st文字領域38.rc = new Rectangle( 0x30, 0x57, 0x16, 0x1b );
|
||||
st文字領域Array[ 0x25 ] = st文字領域38;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域39 = st文字領域94;
|
||||
st文字領域39.ch = 'G';
|
||||
st文字領域39.rc = new Rectangle( 0x48, 0x57, 0x16, 0x1b );
|
||||
st文字領域Array[ 0x26 ] = st文字領域39;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域40 = st文字領域94;
|
||||
st文字領域40.ch = 'H';
|
||||
st文字領域40.rc = new Rectangle( 0x61, 0x57, 0x18, 0x1b );
|
||||
st文字領域Array[ 0x27 ] = st文字領域40;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域41 = st文字領域94;
|
||||
st文字領域41.ch = 'I';
|
||||
st文字領域41.rc = new Rectangle( 0x7a, 0x57, 13, 0x1b );
|
||||
st文字領域Array[ 40 ] = st文字領域41;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域42 = st文字領域94;
|
||||
st文字領域42.ch = 'J';
|
||||
st文字領域42.rc = new Rectangle( 0x88, 0x57, 20, 0x1b );
|
||||
st文字領域Array[ 0x29 ] = st文字領域42;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域43 = st文字領域94;
|
||||
st文字領域43.ch = 'K';
|
||||
st文字領域43.rc = new Rectangle( 0x9d, 0x57, 0x18, 0x1b );
|
||||
st文字領域Array[ 0x2a ] = st文字領域43;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域44 = st文字領域94;
|
||||
st文字領域44.ch = 'L';
|
||||
st文字領域44.rc = new Rectangle( 0xb7, 0x57, 20, 0x1b );
|
||||
st文字領域Array[ 0x2b ] = st文字領域44;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域45 = st文字領域94;
|
||||
st文字領域45.ch = 'M';
|
||||
st文字領域45.rc = new Rectangle( 0xce, 0x57, 0x1a, 0x1b );
|
||||
st文字領域Array[ 0x2c ] = st文字領域45;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域46 = st文字領域94;
|
||||
st文字領域46.ch = 'N';
|
||||
st文字領域46.rc = new Rectangle( 0xe9, 0x57, 0x17, 0x1b );
|
||||
st文字領域Array[ 0x2d ] = st文字領域46;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域47 = st文字領域94;
|
||||
st文字領域47.ch = 'O';
|
||||
st文字領域47.rc = new Rectangle( 2, 0x73, 0x18, 0x1b );
|
||||
st文字領域Array[ 0x2e ] = st文字領域47;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域48 = st文字領域94;
|
||||
st文字領域48.ch = 'P';
|
||||
st文字領域48.rc = new Rectangle( 0x1c, 0x73, 0x15, 0x1b );
|
||||
st文字領域Array[ 0x2f ] = st文字領域48;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域49 = st文字領域94;
|
||||
st文字領域49.ch = 'Q';
|
||||
st文字領域49.rc = new Rectangle( 0x33, 0x73, 0x17, 0x1b );
|
||||
st文字領域Array[ 0x30 ] = st文字領域49;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域50 = st文字領域94;
|
||||
st文字領域50.ch = 'R';
|
||||
st文字領域50.rc = new Rectangle( 0x4c, 0x73, 0x16, 0x1b );
|
||||
st文字領域Array[ 0x31 ] = st文字領域50;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域51 = st文字領域94;
|
||||
st文字領域51.ch = 'S';
|
||||
st文字領域51.rc = new Rectangle( 100, 0x73, 0x15, 0x1b );
|
||||
st文字領域Array[ 50 ] = st文字領域51;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域52 = st文字領域94;
|
||||
st文字領域52.ch = 'T';
|
||||
st文字領域52.rc = new Rectangle( 0x7c, 0x73, 0x16, 0x1b );
|
||||
st文字領域Array[ 0x33 ] = st文字領域52;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域53 = st文字領域94;
|
||||
st文字領域53.ch = 'U';
|
||||
st文字領域53.rc = new Rectangle( 0x93, 0x73, 0x16, 0x1b );
|
||||
st文字領域Array[ 0x34 ] = st文字領域53;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域54 = st文字領域94;
|
||||
st文字領域54.ch = 'V';
|
||||
st文字領域54.rc = new Rectangle( 0xad, 0x73, 0x16, 0x1b );
|
||||
st文字領域Array[ 0x35 ] = st文字領域54;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域55 = st文字領域94;
|
||||
st文字領域55.ch = 'W';
|
||||
st文字領域55.rc = new Rectangle( 0xc5, 0x73, 0x1a, 0x1b );
|
||||
st文字領域Array[ 0x36 ] = st文字領域55;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域56 = st文字領域94;
|
||||
st文字領域56.ch = 'X';
|
||||
st文字領域56.rc = new Rectangle( 0xe0, 0x73, 0x1a, 0x1b );
|
||||
st文字領域Array[ 0x37 ] = st文字領域56;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域57 = st文字領域94;
|
||||
st文字領域57.ch = 'Y';
|
||||
st文字領域57.rc = new Rectangle( 4, 0x8f, 0x17, 0x1b );
|
||||
st文字領域Array[ 0x38 ] = st文字領域57;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域58 = st文字領域94;
|
||||
st文字領域58.ch = 'Z';
|
||||
st文字領域58.rc = new Rectangle( 0x1b, 0x8f, 0x16, 0x1b );
|
||||
st文字領域Array[ 0x39 ] = st文字領域58;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域59 = st文字領域94;
|
||||
st文字領域59.ch = '[';
|
||||
st文字領域59.rc = new Rectangle( 0x31, 0x8f, 0x11, 0x1b );
|
||||
st文字領域Array[ 0x3a ] = st文字領域59;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域60 = st文字領域94;
|
||||
st文字領域60.ch = '\\';
|
||||
st文字領域60.rc = new Rectangle( 0x42, 0x8f, 0x19, 0x1b );
|
||||
st文字領域Array[ 0x3b ] = st文字領域60;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域61 = st文字領域94;
|
||||
st文字領域61.ch = ']';
|
||||
st文字領域61.rc = new Rectangle( 0x5c, 0x8f, 0x11, 0x1b );
|
||||
st文字領域Array[ 60 ] = st文字領域61;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域62 = st文字領域94;
|
||||
st文字領域62.ch = '^';
|
||||
st文字領域62.rc = new Rectangle( 0x71, 0x8f, 0x10, 0x1b );
|
||||
st文字領域Array[ 0x3d ] = st文字領域62;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域63 = st文字領域94;
|
||||
st文字領域63.ch = '_';
|
||||
st文字領域63.rc = new Rectangle( 0x81, 0x8f, 0x13, 0x1b );
|
||||
st文字領域Array[ 0x3e ] = st文字領域63;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域64 = st文字領域94;
|
||||
st文字領域64.ch = 'a';
|
||||
st文字領域64.rc = new Rectangle( 150, 0x8f, 0x13, 0x1b );
|
||||
st文字領域Array[ 0x3f ] = st文字領域64;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域65 = st文字領域94;
|
||||
st文字領域65.ch = 'b';
|
||||
st文字領域65.rc = new Rectangle( 0xac, 0x8f, 20, 0x1b );
|
||||
st文字領域Array[ 0x40 ] = st文字領域65;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域66 = st文字領域94;
|
||||
st文字領域66.ch = 'c';
|
||||
st文字領域66.rc = new Rectangle( 0xc3, 0x8f, 0x12, 0x1b );
|
||||
st文字領域Array[ 0x41 ] = st文字領域66;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域67 = st文字領域94;
|
||||
st文字領域67.ch = 'd';
|
||||
st文字領域67.rc = new Rectangle( 0xd8, 0x8f, 0x15, 0x1b );
|
||||
st文字領域Array[ 0x42 ] = st文字領域67;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域68 = st文字領域94;
|
||||
st文字領域68.ch = 'e';
|
||||
st文字領域68.rc = new Rectangle( 2, 0xab, 0x13, 0x1b );
|
||||
st文字領域Array[ 0x43 ] = st文字領域68;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域69 = st文字領域94;
|
||||
st文字領域69.ch = 'f';
|
||||
st文字領域69.rc = new Rectangle( 0x17, 0xab, 0x11, 0x1b );
|
||||
st文字領域Array[ 0x44 ] = st文字領域69;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域70 = st文字領域94;
|
||||
st文字領域70.ch = 'g';
|
||||
st文字領域70.rc = new Rectangle( 40, 0xab, 0x15, 0x1b );
|
||||
st文字領域Array[ 0x45 ] = st文字領域70;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域71 = st文字領域94;
|
||||
st文字領域71.ch = 'h';
|
||||
st文字領域71.rc = new Rectangle( 0x3f, 0xab, 20, 0x1b );
|
||||
st文字領域Array[ 70 ] = st文字領域71;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域72 = st文字領域94;
|
||||
st文字領域72.ch = 'i';
|
||||
st文字領域72.rc = new Rectangle( 0x55, 0xab, 13, 0x1b );
|
||||
st文字領域Array[ 0x47 ] = st文字領域72;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域73 = st文字領域94;
|
||||
st文字領域73.ch = 'j';
|
||||
st文字領域73.rc = new Rectangle( 0x62, 0xab, 0x10, 0x1b );
|
||||
st文字領域Array[ 0x48 ] = st文字領域73;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域74 = st文字領域94;
|
||||
st文字領域74.ch = 'k';
|
||||
st文字領域74.rc = new Rectangle( 0x74, 0xab, 20, 0x1b );
|
||||
st文字領域Array[ 0x49 ] = st文字領域74;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域75 = st文字領域94;
|
||||
st文字領域75.ch = 'l';
|
||||
st文字領域75.rc = new Rectangle( 0x8a, 0xab, 13, 0x1b );
|
||||
st文字領域Array[ 0x4a ] = st文字領域75;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域76 = st文字領域94;
|
||||
st文字領域76.ch = 'm';
|
||||
st文字領域76.rc = new Rectangle( 0x98, 0xab, 0x1a, 0x1b );
|
||||
st文字領域Array[ 0x4b ] = st文字領域76;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域77 = st文字領域94;
|
||||
st文字領域77.ch = 'n';
|
||||
st文字領域77.rc = new Rectangle( 0xb5, 0xab, 20, 0x1b );
|
||||
st文字領域Array[ 0x4c ] = st文字領域77;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域78 = st文字領域94;
|
||||
st文字領域78.ch = 'o';
|
||||
st文字領域78.rc = new Rectangle( 0xcc, 0xab, 0x13, 0x1b );
|
||||
st文字領域Array[ 0x4d ] = st文字領域78;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域79 = st文字領域94;
|
||||
st文字領域79.ch = 'p';
|
||||
st文字領域79.rc = new Rectangle( 0xe1, 0xab, 0x15, 0x1b );
|
||||
st文字領域Array[ 0x4e ] = st文字領域79;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域80 = st文字領域94;
|
||||
st文字領域80.ch = 'q';
|
||||
st文字領域80.rc = new Rectangle( 2, 0xc7, 20, 0x1b );
|
||||
st文字領域Array[ 0x4f ] = st文字領域80;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域81 = st文字領域94;
|
||||
st文字領域81.ch = 'r';
|
||||
st文字領域81.rc = new Rectangle( 0x18, 0xc7, 0x12, 0x1b );
|
||||
st文字領域Array[ 80 ] = st文字領域81;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域82 = st文字領域94;
|
||||
st文字領域82.ch = 's';
|
||||
st文字領域82.rc = new Rectangle( 0x2a, 0xc7, 0x13, 0x1b );
|
||||
st文字領域Array[ 0x51 ] = st文字領域82;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域83 = st文字領域94;
|
||||
st文字領域83.ch = 't';
|
||||
st文字領域83.rc = new Rectangle( 0x3f, 0xc7, 0x10, 0x1b );
|
||||
st文字領域Array[ 0x52 ] = st文字領域83;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域84 = st文字領域94;
|
||||
st文字領域84.ch = 'u';
|
||||
st文字領域84.rc = new Rectangle( 80, 0xc7, 20, 0x1b );
|
||||
st文字領域Array[ 0x53 ] = st文字領域84;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域85 = st文字領域94;
|
||||
st文字領域85.ch = 'v';
|
||||
st文字領域85.rc = new Rectangle( 0x68, 0xc7, 20, 0x1b );
|
||||
st文字領域Array[ 0x54 ] = st文字領域85;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域86 = st文字領域94;
|
||||
st文字領域86.ch = 'w';
|
||||
st文字領域86.rc = new Rectangle( 0x7f, 0xc7, 0x1a, 0x1b );
|
||||
st文字領域Array[ 0x55 ] = st文字領域86;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域87 = st文字領域94;
|
||||
st文字領域87.ch = 'x';
|
||||
st文字領域87.rc = new Rectangle( 0x9a, 0xc7, 0x16, 0x1b );
|
||||
st文字領域Array[ 0x56 ] = st文字領域87;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域88 = st文字領域94;
|
||||
st文字領域88.ch = 'y';
|
||||
st文字領域88.rc = new Rectangle( 0xb1, 0xc7, 0x16, 0x1b );
|
||||
st文字領域Array[ 0x57 ] = st文字領域88;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域89 = st文字領域94;
|
||||
st文字領域89.ch = 'z';
|
||||
st文字領域89.rc = new Rectangle( 200, 0xc7, 0x13, 0x1b );
|
||||
st文字領域Array[ 0x58 ] = st文字領域89;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域90 = st文字領域94;
|
||||
st文字領域90.ch = '{';
|
||||
st文字領域90.rc = new Rectangle( 220, 0xc7, 15, 0x1b );
|
||||
st文字領域Array[ 0x59 ] = st文字領域90;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域91 = st文字領域94;
|
||||
st文字領域91.ch = '|';
|
||||
st文字領域91.rc = new Rectangle( 0xeb, 0xc7, 13, 0x1b );
|
||||
st文字領域Array[ 90 ] = st文字領域91;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域92 = st文字領域94;
|
||||
st文字領域92.ch = '}';
|
||||
st文字領域92.rc = new Rectangle( 1, 0xe3, 15, 0x1b );
|
||||
st文字領域Array[ 0x5b ] = st文字領域92;
|
||||
ST文字領域 st文字領域93 = new ST文字領域();
|
||||
st文字領域93.ch = '~';
|
||||
st文字領域93.rc = new Rectangle( 0x12, 0xe3, 0x12, 0x1b );
|
||||
st文字領域Array[ 0x5c ] = st文字領域93;
|
||||
|
||||
st文字領域Array[ 0x5d ] = new ST文字領域(); // #24954 2011.4.23 yyagi
|
||||
st文字領域Array[ 0x5d ].ch = '@';
|
||||
st文字領域Array[ 0x5d ].rc = new Rectangle( 38, 227, 28, 28 );
|
||||
st文字領域Array[ 0x5e ] = new ST文字領域();
|
||||
st文字領域Array[ 0x5e ].ch = '`';
|
||||
st文字領域Array[ 0x5e ].rc = new Rectangle( 69, 226, 14, 29 );
|
||||
|
||||
|
||||
this.st文字領域 = st文字領域Array;
|
||||
}
|
||||
|
||||
|
||||
@ -561,6 +86,491 @@ namespace TJAPlayer3
|
||||
{
|
||||
//this.tx通常文字 = CDTXMania.tテクスチャの生成( CSkin.Path( @"Graphics\Screen font dfp.png" ), false );
|
||||
//this.tx強調文字 = CDTXMania.tテクスチャの生成( CSkin.Path( @"Graphics\Screen font dfp em.png" ), false );
|
||||
|
||||
|
||||
ST文字領域[] st文字領域Array = new ST文字領域[0x5d + 2];
|
||||
ST文字領域 st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域 = st文字領域94;
|
||||
st文字領域.ch = ' ';
|
||||
st文字領域.rc = new Rectangle(10, 3, 13, 0x1b);
|
||||
st文字領域Array[0] = st文字領域;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域2 = st文字領域94;
|
||||
st文字領域2.ch = '!';
|
||||
st文字領域2.rc = new Rectangle(0x19, 3, 14, 0x1b);
|
||||
st文字領域Array[1] = st文字領域2;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域3 = st文字領域94;
|
||||
st文字領域3.ch = '"';
|
||||
st文字領域3.rc = new Rectangle(0x2c, 3, 0x11, 0x1b);
|
||||
st文字領域Array[2] = st文字領域3;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域4 = st文字領域94;
|
||||
st文字領域4.ch = '#';
|
||||
st文字領域4.rc = new Rectangle(0x40, 3, 0x18, 0x1b);
|
||||
st文字領域Array[3] = st文字領域4;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域5 = st文字領域94;
|
||||
st文字領域5.ch = '$';
|
||||
st文字領域5.rc = new Rectangle(90, 3, 0x15, 0x1b);
|
||||
st文字領域Array[4] = st文字領域5;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域6 = st文字領域94;
|
||||
st文字領域6.ch = '%';
|
||||
st文字領域6.rc = new Rectangle(0x71, 3, 0x1b, 0x1b);
|
||||
st文字領域Array[5] = st文字領域6;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域7 = st文字領域94;
|
||||
st文字領域7.ch = '&';
|
||||
st文字領域7.rc = new Rectangle(0x8e, 3, 0x18, 0x1b);
|
||||
st文字領域Array[6] = st文字領域7;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域8 = st文字領域94;
|
||||
st文字領域8.ch = '\'';
|
||||
st文字領域8.rc = new Rectangle(0xab, 3, 11, 0x1b);
|
||||
st文字領域Array[7] = st文字領域8;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域9 = st文字領域94;
|
||||
st文字領域9.ch = '(';
|
||||
st文字領域9.rc = new Rectangle(0xc0, 3, 0x10, 0x1b);
|
||||
st文字領域Array[8] = st文字領域9;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域10 = st文字領域94;
|
||||
st文字領域10.ch = ')';
|
||||
st文字領域10.rc = new Rectangle(0xd0, 3, 0x10, 0x1b);
|
||||
st文字領域Array[9] = st文字領域10;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域11 = st文字領域94;
|
||||
st文字領域11.ch = '*';
|
||||
st文字領域11.rc = new Rectangle(0xe2, 3, 0x15, 0x1b);
|
||||
st文字領域Array[10] = st文字領域11;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域12 = st文字領域94;
|
||||
st文字領域12.ch = '+';
|
||||
st文字領域12.rc = new Rectangle(2, 0x1f, 0x18, 0x1b);
|
||||
st文字領域Array[11] = st文字領域12;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域13 = st文字領域94;
|
||||
st文字領域13.ch = ',';
|
||||
st文字領域13.rc = new Rectangle(0x1b, 0x1f, 11, 0x1b);
|
||||
st文字領域Array[12] = st文字領域13;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域14 = st文字領域94;
|
||||
st文字領域14.ch = '-';
|
||||
st文字領域14.rc = new Rectangle(0x29, 0x1f, 13, 0x1b);
|
||||
st文字領域Array[13] = st文字領域14;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域15 = st文字領域94;
|
||||
st文字領域15.ch = '.';
|
||||
st文字領域15.rc = new Rectangle(0x37, 0x1f, 11, 0x1b);
|
||||
st文字領域Array[14] = st文字領域15;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域16 = st文字領域94;
|
||||
st文字領域16.ch = '/';
|
||||
st文字領域16.rc = new Rectangle(0x44, 0x1f, 0x15, 0x1b);
|
||||
st文字領域Array[15] = st文字領域16;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域17 = st文字領域94;
|
||||
st文字領域17.ch = '0';
|
||||
st文字領域17.rc = new Rectangle(0x5b, 0x1f, 20, 0x1b);
|
||||
st文字領域Array[0x10] = st文字領域17;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域18 = st文字領域94;
|
||||
st文字領域18.ch = '1';
|
||||
st文字領域18.rc = new Rectangle(0x75, 0x1f, 14, 0x1b);
|
||||
st文字領域Array[0x11] = st文字領域18;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域19 = st文字領域94;
|
||||
st文字領域19.ch = '2';
|
||||
st文字領域19.rc = new Rectangle(0x86, 0x1f, 0x15, 0x1b);
|
||||
st文字領域Array[0x12] = st文字領域19;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域20 = st文字領域94;
|
||||
st文字領域20.ch = '3';
|
||||
st文字領域20.rc = new Rectangle(0x9d, 0x1f, 20, 0x1b);
|
||||
st文字領域Array[0x13] = st文字領域20;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域21 = st文字領域94;
|
||||
st文字領域21.ch = '4';
|
||||
st文字領域21.rc = new Rectangle(0xb3, 0x1f, 20, 0x1b);
|
||||
st文字領域Array[20] = st文字領域21;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域22 = st文字領域94;
|
||||
st文字領域22.ch = '5';
|
||||
st文字領域22.rc = new Rectangle(0xca, 0x1f, 0x13, 0x1b);
|
||||
st文字領域Array[0x15] = st文字領域22;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域23 = st文字領域94;
|
||||
st文字領域23.ch = '6';
|
||||
st文字領域23.rc = new Rectangle(0xe0, 0x1f, 20, 0x1b);
|
||||
st文字領域Array[0x16] = st文字領域23;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域24 = st文字領域94;
|
||||
st文字領域24.ch = '7';
|
||||
st文字領域24.rc = new Rectangle(4, 0x3b, 0x13, 0x1b);
|
||||
st文字領域Array[0x17] = st文字領域24;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域25 = st文字領域94;
|
||||
st文字領域25.ch = '8';
|
||||
st文字領域25.rc = new Rectangle(0x18, 0x3b, 20, 0x1b);
|
||||
st文字領域Array[0x18] = st文字領域25;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域26 = st文字領域94;
|
||||
st文字領域26.ch = '9';
|
||||
st文字領域26.rc = new Rectangle(0x2f, 0x3b, 0x13, 0x1b);
|
||||
st文字領域Array[0x19] = st文字領域26;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域27 = st文字領域94;
|
||||
st文字領域27.ch = ':';
|
||||
st文字領域27.rc = new Rectangle(0x44, 0x3b, 12, 0x1b);
|
||||
st文字領域Array[0x1a] = st文字領域27;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域28 = st文字領域94;
|
||||
st文字領域28.ch = ';';
|
||||
st文字領域28.rc = new Rectangle(0x51, 0x3b, 13, 0x1b);
|
||||
st文字領域Array[0x1b] = st文字領域28;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域29 = st文字領域94;
|
||||
st文字領域29.ch = '<';
|
||||
st文字領域29.rc = new Rectangle(0x60, 0x3b, 20, 0x1b);
|
||||
st文字領域Array[0x1c] = st文字領域29;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域30 = st文字領域94;
|
||||
st文字領域30.ch = '=';
|
||||
st文字領域30.rc = new Rectangle(0x74, 0x3b, 0x11, 0x1b);
|
||||
st文字領域Array[0x1d] = st文字領域30;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域31 = st文字領域94;
|
||||
st文字領域31.ch = '>';
|
||||
st文字領域31.rc = new Rectangle(0x85, 0x3b, 20, 0x1b);
|
||||
st文字領域Array[30] = st文字領域31;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域32 = st文字領域94;
|
||||
st文字領域32.ch = '?';
|
||||
st文字領域32.rc = new Rectangle(0x9c, 0x3b, 20, 0x1b);
|
||||
st文字領域Array[0x1f] = st文字領域32;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域33 = st文字領域94;
|
||||
st文字領域33.ch = 'A';
|
||||
st文字領域33.rc = new Rectangle(0xb1, 0x3b, 0x17, 0x1b);
|
||||
st文字領域Array[0x20] = st文字領域33;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域34 = st文字領域94;
|
||||
st文字領域34.ch = 'B';
|
||||
st文字領域34.rc = new Rectangle(0xcb, 0x3b, 0x15, 0x1b);
|
||||
st文字領域Array[0x21] = st文字領域34;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域35 = st文字領域94;
|
||||
st文字領域35.ch = 'C';
|
||||
st文字領域35.rc = new Rectangle(0xe3, 0x3b, 0x16, 0x1b);
|
||||
st文字領域Array[0x22] = st文字領域35;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域36 = st文字領域94;
|
||||
st文字領域36.ch = 'D';
|
||||
st文字領域36.rc = new Rectangle(2, 0x57, 0x16, 0x1b);
|
||||
st文字領域Array[0x23] = st文字領域36;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域37 = st文字領域94;
|
||||
st文字領域37.ch = 'E';
|
||||
st文字領域37.rc = new Rectangle(0x1a, 0x57, 0x16, 0x1b);
|
||||
st文字領域Array[0x24] = st文字領域37;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域38 = st文字領域94;
|
||||
st文字領域38.ch = 'F';
|
||||
st文字領域38.rc = new Rectangle(0x30, 0x57, 0x16, 0x1b);
|
||||
st文字領域Array[0x25] = st文字領域38;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域39 = st文字領域94;
|
||||
st文字領域39.ch = 'G';
|
||||
st文字領域39.rc = new Rectangle(0x48, 0x57, 0x16, 0x1b);
|
||||
st文字領域Array[0x26] = st文字領域39;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域40 = st文字領域94;
|
||||
st文字領域40.ch = 'H';
|
||||
st文字領域40.rc = new Rectangle(0x61, 0x57, 0x18, 0x1b);
|
||||
st文字領域Array[0x27] = st文字領域40;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域41 = st文字領域94;
|
||||
st文字領域41.ch = 'I';
|
||||
st文字領域41.rc = new Rectangle(0x7a, 0x57, 13, 0x1b);
|
||||
st文字領域Array[40] = st文字領域41;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域42 = st文字領域94;
|
||||
st文字領域42.ch = 'J';
|
||||
st文字領域42.rc = new Rectangle(0x88, 0x57, 20, 0x1b);
|
||||
st文字領域Array[0x29] = st文字領域42;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域43 = st文字領域94;
|
||||
st文字領域43.ch = 'K';
|
||||
st文字領域43.rc = new Rectangle(0x9d, 0x57, 0x18, 0x1b);
|
||||
st文字領域Array[0x2a] = st文字領域43;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域44 = st文字領域94;
|
||||
st文字領域44.ch = 'L';
|
||||
st文字領域44.rc = new Rectangle(0xb7, 0x57, 20, 0x1b);
|
||||
st文字領域Array[0x2b] = st文字領域44;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域45 = st文字領域94;
|
||||
st文字領域45.ch = 'M';
|
||||
st文字領域45.rc = new Rectangle(0xce, 0x57, 0x1a, 0x1b);
|
||||
st文字領域Array[0x2c] = st文字領域45;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域46 = st文字領域94;
|
||||
st文字領域46.ch = 'N';
|
||||
st文字領域46.rc = new Rectangle(0xe9, 0x57, 0x17, 0x1b);
|
||||
st文字領域Array[0x2d] = st文字領域46;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域47 = st文字領域94;
|
||||
st文字領域47.ch = 'O';
|
||||
st文字領域47.rc = new Rectangle(2, 0x73, 0x18, 0x1b);
|
||||
st文字領域Array[0x2e] = st文字領域47;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域48 = st文字領域94;
|
||||
st文字領域48.ch = 'P';
|
||||
st文字領域48.rc = new Rectangle(0x1c, 0x73, 0x15, 0x1b);
|
||||
st文字領域Array[0x2f] = st文字領域48;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域49 = st文字領域94;
|
||||
st文字領域49.ch = 'Q';
|
||||
st文字領域49.rc = new Rectangle(0x33, 0x73, 0x17, 0x1b);
|
||||
st文字領域Array[0x30] = st文字領域49;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域50 = st文字領域94;
|
||||
st文字領域50.ch = 'R';
|
||||
st文字領域50.rc = new Rectangle(0x4c, 0x73, 0x16, 0x1b);
|
||||
st文字領域Array[0x31] = st文字領域50;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域51 = st文字領域94;
|
||||
st文字領域51.ch = 'S';
|
||||
st文字領域51.rc = new Rectangle(100, 0x73, 0x15, 0x1b);
|
||||
st文字領域Array[50] = st文字領域51;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域52 = st文字領域94;
|
||||
st文字領域52.ch = 'T';
|
||||
st文字領域52.rc = new Rectangle(0x7c, 0x73, 0x16, 0x1b);
|
||||
st文字領域Array[0x33] = st文字領域52;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域53 = st文字領域94;
|
||||
st文字領域53.ch = 'U';
|
||||
st文字領域53.rc = new Rectangle(0x93, 0x73, 0x16, 0x1b);
|
||||
st文字領域Array[0x34] = st文字領域53;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域54 = st文字領域94;
|
||||
st文字領域54.ch = 'V';
|
||||
st文字領域54.rc = new Rectangle(0xad, 0x73, 0x16, 0x1b);
|
||||
st文字領域Array[0x35] = st文字領域54;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域55 = st文字領域94;
|
||||
st文字領域55.ch = 'W';
|
||||
st文字領域55.rc = new Rectangle(0xc5, 0x73, 0x1a, 0x1b);
|
||||
st文字領域Array[0x36] = st文字領域55;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域56 = st文字領域94;
|
||||
st文字領域56.ch = 'X';
|
||||
st文字領域56.rc = new Rectangle(0xe0, 0x73, 0x1a, 0x1b);
|
||||
st文字領域Array[0x37] = st文字領域56;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域57 = st文字領域94;
|
||||
st文字領域57.ch = 'Y';
|
||||
st文字領域57.rc = new Rectangle(4, 0x8f, 0x17, 0x1b);
|
||||
st文字領域Array[0x38] = st文字領域57;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域58 = st文字領域94;
|
||||
st文字領域58.ch = 'Z';
|
||||
st文字領域58.rc = new Rectangle(0x1b, 0x8f, 0x16, 0x1b);
|
||||
st文字領域Array[0x39] = st文字領域58;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域59 = st文字領域94;
|
||||
st文字領域59.ch = '[';
|
||||
st文字領域59.rc = new Rectangle(0x31, 0x8f, 0x11, 0x1b);
|
||||
st文字領域Array[0x3a] = st文字領域59;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域60 = st文字領域94;
|
||||
st文字領域60.ch = '\\';
|
||||
st文字領域60.rc = new Rectangle(0x42, 0x8f, 0x19, 0x1b);
|
||||
st文字領域Array[0x3b] = st文字領域60;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域61 = st文字領域94;
|
||||
st文字領域61.ch = ']';
|
||||
st文字領域61.rc = new Rectangle(0x5c, 0x8f, 0x11, 0x1b);
|
||||
st文字領域Array[60] = st文字領域61;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域62 = st文字領域94;
|
||||
st文字領域62.ch = '^';
|
||||
st文字領域62.rc = new Rectangle(0x71, 0x8f, 0x10, 0x1b);
|
||||
st文字領域Array[0x3d] = st文字領域62;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域63 = st文字領域94;
|
||||
st文字領域63.ch = '_';
|
||||
st文字領域63.rc = new Rectangle(0x81, 0x8f, 0x13, 0x1b);
|
||||
st文字領域Array[0x3e] = st文字領域63;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域64 = st文字領域94;
|
||||
st文字領域64.ch = 'a';
|
||||
st文字領域64.rc = new Rectangle(150, 0x8f, 0x13, 0x1b);
|
||||
st文字領域Array[0x3f] = st文字領域64;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域65 = st文字領域94;
|
||||
st文字領域65.ch = 'b';
|
||||
st文字領域65.rc = new Rectangle(0xac, 0x8f, 20, 0x1b);
|
||||
st文字領域Array[0x40] = st文字領域65;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域66 = st文字領域94;
|
||||
st文字領域66.ch = 'c';
|
||||
st文字領域66.rc = new Rectangle(0xc3, 0x8f, 0x12, 0x1b);
|
||||
st文字領域Array[0x41] = st文字領域66;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域67 = st文字領域94;
|
||||
st文字領域67.ch = 'd';
|
||||
st文字領域67.rc = new Rectangle(0xd8, 0x8f, 0x15, 0x1b);
|
||||
st文字領域Array[0x42] = st文字領域67;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域68 = st文字領域94;
|
||||
st文字領域68.ch = 'e';
|
||||
st文字領域68.rc = new Rectangle(2, 0xab, 0x13, 0x1b);
|
||||
st文字領域Array[0x43] = st文字領域68;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域69 = st文字領域94;
|
||||
st文字領域69.ch = 'f';
|
||||
st文字領域69.rc = new Rectangle(0x17, 0xab, 0x11, 0x1b);
|
||||
st文字領域Array[0x44] = st文字領域69;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域70 = st文字領域94;
|
||||
st文字領域70.ch = 'g';
|
||||
st文字領域70.rc = new Rectangle(40, 0xab, 0x15, 0x1b);
|
||||
st文字領域Array[0x45] = st文字領域70;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域71 = st文字領域94;
|
||||
st文字領域71.ch = 'h';
|
||||
st文字領域71.rc = new Rectangle(0x3f, 0xab, 20, 0x1b);
|
||||
st文字領域Array[70] = st文字領域71;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域72 = st文字領域94;
|
||||
st文字領域72.ch = 'i';
|
||||
st文字領域72.rc = new Rectangle(0x55, 0xab, 13, 0x1b);
|
||||
st文字領域Array[0x47] = st文字領域72;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域73 = st文字領域94;
|
||||
st文字領域73.ch = 'j';
|
||||
st文字領域73.rc = new Rectangle(0x62, 0xab, 0x10, 0x1b);
|
||||
st文字領域Array[0x48] = st文字領域73;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域74 = st文字領域94;
|
||||
st文字領域74.ch = 'k';
|
||||
st文字領域74.rc = new Rectangle(0x74, 0xab, 20, 0x1b);
|
||||
st文字領域Array[0x49] = st文字領域74;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域75 = st文字領域94;
|
||||
st文字領域75.ch = 'l';
|
||||
st文字領域75.rc = new Rectangle(0x8a, 0xab, 13, 0x1b);
|
||||
st文字領域Array[0x4a] = st文字領域75;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域76 = st文字領域94;
|
||||
st文字領域76.ch = 'm';
|
||||
st文字領域76.rc = new Rectangle(0x98, 0xab, 0x1a, 0x1b);
|
||||
st文字領域Array[0x4b] = st文字領域76;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域77 = st文字領域94;
|
||||
st文字領域77.ch = 'n';
|
||||
st文字領域77.rc = new Rectangle(0xb5, 0xab, 20, 0x1b);
|
||||
st文字領域Array[0x4c] = st文字領域77;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域78 = st文字領域94;
|
||||
st文字領域78.ch = 'o';
|
||||
st文字領域78.rc = new Rectangle(0xcc, 0xab, 0x13, 0x1b);
|
||||
st文字領域Array[0x4d] = st文字領域78;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域79 = st文字領域94;
|
||||
st文字領域79.ch = 'p';
|
||||
st文字領域79.rc = new Rectangle(0xe1, 0xab, 0x15, 0x1b);
|
||||
st文字領域Array[0x4e] = st文字領域79;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域80 = st文字領域94;
|
||||
st文字領域80.ch = 'q';
|
||||
st文字領域80.rc = new Rectangle(2, 0xc7, 20, 0x1b);
|
||||
st文字領域Array[0x4f] = st文字領域80;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域81 = st文字領域94;
|
||||
st文字領域81.ch = 'r';
|
||||
st文字領域81.rc = new Rectangle(0x18, 0xc7, 0x12, 0x1b);
|
||||
st文字領域Array[80] = st文字領域81;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域82 = st文字領域94;
|
||||
st文字領域82.ch = 's';
|
||||
st文字領域82.rc = new Rectangle(0x2a, 0xc7, 0x13, 0x1b);
|
||||
st文字領域Array[0x51] = st文字領域82;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域83 = st文字領域94;
|
||||
st文字領域83.ch = 't';
|
||||
st文字領域83.rc = new Rectangle(0x3f, 0xc7, 0x10, 0x1b);
|
||||
st文字領域Array[0x52] = st文字領域83;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域84 = st文字領域94;
|
||||
st文字領域84.ch = 'u';
|
||||
st文字領域84.rc = new Rectangle(80, 0xc7, 20, 0x1b);
|
||||
st文字領域Array[0x53] = st文字領域84;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域85 = st文字領域94;
|
||||
st文字領域85.ch = 'v';
|
||||
st文字領域85.rc = new Rectangle(0x68, 0xc7, 20, 0x1b);
|
||||
st文字領域Array[0x54] = st文字領域85;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域86 = st文字領域94;
|
||||
st文字領域86.ch = 'w';
|
||||
st文字領域86.rc = new Rectangle(0x7f, 0xc7, 0x1a, 0x1b);
|
||||
st文字領域Array[0x55] = st文字領域86;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域87 = st文字領域94;
|
||||
st文字領域87.ch = 'x';
|
||||
st文字領域87.rc = new Rectangle(0x9a, 0xc7, 0x16, 0x1b);
|
||||
st文字領域Array[0x56] = st文字領域87;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域88 = st文字領域94;
|
||||
st文字領域88.ch = 'y';
|
||||
st文字領域88.rc = new Rectangle(0xb1, 0xc7, 0x16, 0x1b);
|
||||
st文字領域Array[0x57] = st文字領域88;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域89 = st文字領域94;
|
||||
st文字領域89.ch = 'z';
|
||||
st文字領域89.rc = new Rectangle(200, 0xc7, 0x13, 0x1b);
|
||||
st文字領域Array[0x58] = st文字領域89;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域90 = st文字領域94;
|
||||
st文字領域90.ch = '{';
|
||||
st文字領域90.rc = new Rectangle(220, 0xc7, 15, 0x1b);
|
||||
st文字領域Array[0x59] = st文字領域90;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域91 = st文字領域94;
|
||||
st文字領域91.ch = '|';
|
||||
st文字領域91.rc = new Rectangle(0xeb, 0xc7, 13, 0x1b);
|
||||
st文字領域Array[90] = st文字領域91;
|
||||
st文字領域94 = new ST文字領域();
|
||||
ST文字領域 st文字領域92 = st文字領域94;
|
||||
st文字領域92.ch = '}';
|
||||
st文字領域92.rc = new Rectangle(1, 0xe3, 15, 0x1b);
|
||||
st文字領域Array[0x5b] = st文字領域92;
|
||||
ST文字領域 st文字領域93 = new ST文字領域();
|
||||
st文字領域93.ch = '~';
|
||||
st文字領域93.rc = new Rectangle(0x12, 0xe3, 0x12, 0x1b);
|
||||
st文字領域Array[0x5c] = st文字領域93;
|
||||
|
||||
st文字領域Array[0x5d] = new ST文字領域(); // #24954 2011.4.23 yyagi
|
||||
st文字領域Array[0x5d].ch = '@';
|
||||
st文字領域Array[0x5d].rc = new Rectangle(38, 227, 28, 28);
|
||||
st文字領域Array[0x5e] = new ST文字領域();
|
||||
st文字領域Array[0x5e].ch = '`';
|
||||
st文字領域Array[0x5e].rc = new Rectangle(69, 226, 14, 29);
|
||||
|
||||
float scaleX = TJAPlayer3.Tx.Config_Font.szテクスチャサイズ.Width / 256.0f;
|
||||
float scaleY = TJAPlayer3.Tx.Config_Font.szテクスチャサイズ.Height / 256.0f;
|
||||
|
||||
for (int i = 0; i < st文字領域Array.Length; i++)
|
||||
{
|
||||
st文字領域Array[i].rc = new Rectangle((int)(st文字領域Array[i].rc.X * scaleX), (int)(st文字領域Array[i].rc.Y * scaleY),
|
||||
(int)(st文字領域Array[i].rc.Width * scaleX), (int)(st文字領域Array[i].rc.Height * scaleY));
|
||||
}
|
||||
|
||||
this.st文字領域 = st文字領域Array;
|
||||
base.OnManagedリソースの作成();
|
||||
}
|
||||
}
|
||||
@ -594,7 +604,7 @@ namespace TJAPlayer3
|
||||
public Rectangle rc;
|
||||
}
|
||||
|
||||
private readonly ST文字領域[] st文字領域;
|
||||
private ST文字領域[] st文字領域;
|
||||
//private CTexture tx強調文字;
|
||||
//private CTexture tx通常文字;
|
||||
//-----------------
|
||||
|
@ -19,6 +19,7 @@ Config_Item_Font_Offset=0,8
|
||||
|
||||
|
||||
Config_Font_Scale=20
|
||||
Config_Font_Scale_Description=14.0
|
||||
|
||||
|
||||
Config_ItemBox_Count=10
|
||||
@ -35,4 +36,13 @@ Config_ItemBox_ItemValue_Font_Offset=400,12
|
||||
Config_ExplanationPanel=67,382
|
||||
|
||||
|
||||
Config_SkinSample1=124,449
|
||||
Config_SkinSample1=124,449
|
||||
|
||||
|
||||
Config_KeyAssign=389,215
|
||||
|
||||
Config_KeyAssign_Menu_Highlight=324,66
|
||||
|
||||
Config_KeyAssign_Font=308,64
|
||||
|
||||
Config_KeyAssign_Move=20
|
@ -182,6 +182,12 @@ Game_Gauge_ClearText_X=1038,1038
|
||||
|
||||
Game_Gauge_ClearText_Y=144,554
|
||||
|
||||
|
||||
Game_Gauge_ClearText_X_AI=1087
|
||||
|
||||
Game_Gauge_ClearText_Y_AI=153
|
||||
|
||||
|
||||
Game_Gauge_ClearText_Rect=0,44,58,24
|
||||
|
||||
Game_Gauge_ClearText_Clear_Rect=58,44,58,24
|
||||
|
@ -1,13 +1,6 @@
|
||||
;Included file
|
||||
;あとは通常通り設定できます
|
||||
|
||||
SongSelect_BoxExplanation_X=0
|
||||
SongSelect_BoxExplanation_Y=0
|
||||
SongSelect_Title_X=0
|
||||
SongSelect_Title_Y=0
|
||||
SongSelect_BoxExplanation_Interval=30
|
||||
|
||||
|
||||
PopupMenu_Menu_Title=460,40
|
||||
|
||||
PopupMenu_Title=540,44
|
||||
|
@ -3,6 +3,7 @@
|
||||
Name=OpenSkin
|
||||
Version=0.5.3.2
|
||||
Creator=0AuBSQ
|
||||
Resolution=1280,720
|
||||
|
||||
|
||||
; "#include ファイル名" 命令を使うことで
|
||||
|
@ -3,10 +3,50 @@
|
||||
|
||||
SongSelect_Bar_Count=9
|
||||
|
||||
|
||||
SongSelect_Bar_X=214,239,263,291,324,358,386,411,436
|
||||
|
||||
SongSelect_Bar_Y=-127,-36,55,145,314,485,574,665,756
|
||||
|
||||
|
||||
SongSelect_Bar_Anim_X=0,600,500,400,0,-400,-500,-600,0
|
||||
|
||||
SongSelect_Bar_Anim_Y=0,1800,1500,1200,0,-1200,-1500,-1800,0
|
||||
|
||||
|
||||
SongSelect_Bar_Title_Offset=316,62
|
||||
|
||||
SongSelect_Bar_SubTitle_Offset=316,90
|
||||
|
||||
|
||||
SongSelect_DanStatus_Offset_X=30,602
|
||||
|
||||
SongSelect_DanStatus_Offset_Y=30,30
|
||||
|
||||
|
||||
SongSelect_TowerStatus_Offset_X=30,602
|
||||
|
||||
SongSelect_TowerStatus_Offset_Y=30,30
|
||||
|
||||
|
||||
SongSelect_RegularCrowns_Offset_X=30,602
|
||||
|
||||
SongSelect_RegularCrowns_Offset_Y=30,30
|
||||
|
||||
|
||||
SongSelect_RegularCrowns_ScoreRank_Offset_X=0,0
|
||||
|
||||
SongSelect_RegularCrowns_ScoreRank_Offset_Y=0,30
|
||||
|
||||
|
||||
SongSelect_RegularCrowns_Difficulty_Cymbol_Offset_X=22,22
|
||||
|
||||
SongSelect_RegularCrowns_Difficulty_Cymbol_Offset_Y=22,52
|
||||
|
||||
|
||||
SongSelect_FavoriteStatus_Offset=90,30
|
||||
|
||||
|
||||
SongSelect_Bar_Title_Offset=316,62
|
||||
|
||||
SongSelect_Bar_SubTitle_Offset=316,90
|
||||
@ -39,6 +79,9 @@ SongSelect_Level_Number_Y=400,400,400,400
|
||||
SongSelect_Level_Number_Interval=11,0
|
||||
|
||||
|
||||
SongSelect_Box_Opening_Interval=1
|
||||
|
||||
|
||||
SongSelect_Difficulty_Select_Title=640,140
|
||||
|
||||
SongSelect_Difficulty_Select_SubTitle=640,180
|
||||
@ -108,7 +151,7 @@ SongSelect_BoardNumber_Interval=9,0
|
||||
|
||||
SongSelect_SongNumber_X=1090,1183
|
||||
|
||||
SongSelect_SongNumber_Y=167, 167
|
||||
SongSelect_SongNumber_Y=167,167
|
||||
|
||||
|
||||
SongSelect_SongNumber_Interval=16,0
|
||||
@ -186,7 +229,7 @@ SongSelect_Difficulty_Select_Bar_Move=25,0
|
||||
|
||||
SongSelect_Preimage=120,110
|
||||
|
||||
SongSelect_Preimage_Size=200, 200
|
||||
SongSelect_Preimage_Size=200,200
|
||||
|
||||
|
||||
SongSelect_Option_Select_Offset=0,-286
|
||||
|
Loading…
x
Reference in New Issue
Block a user