aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/Classes/UThemes.pas
diff options
context:
space:
mode:
authorwhiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-03-28 13:08:41 +0000
committerwhiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-03-28 13:08:41 +0000
commit3ba33f8e920a9e9a3114f159e2b6fda4273a6efb (patch)
tree34b408b1d3c5df1c0e40c6d94b7bb85f203118aa /Game/Code/Classes/UThemes.pas
parent158ee45acaa045b91e7614d756a353de00414f1f (diff)
downloadusdx-3ba33f8e920a9e9a3114f159e2b6fda4273a6efb.tar.gz
usdx-3ba33f8e920a9e9a3114f159e2b6fda4273a6efb.tar.xz
usdx-3ba33f8e920a9e9a3114f159e2b6fda4273a6efb.zip
Added Jumpto Ability to SongScreen (Press J)
Fixed: Golden Notes are not shown in PartyMode git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@39 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/Classes/UThemes.pas')
-rw-r--r--Game/Code/Classes/UThemes.pas16
1 files changed, 15 insertions, 1 deletions
diff --git a/Game/Code/Classes/UThemes.pas b/Game/Code/Classes/UThemes.pas
index e9aa2141..e31e94d2 100644
--- a/Game/Code/Classes/UThemes.pas
+++ b/Game/Code/Classes/UThemes.pas
@@ -393,6 +393,12 @@ type
TextMenu: TThemeText;
end;
+ TThemeSongJumpTo = class(TThemeBasic)
+ ButtonSearchText: TThemeButton;
+ SelectSlideType: TThemeSelectSlide;
+ TextFound: TThemeText;
+ end;
+
//Party Screens
TThemePartyNewRound = class(TThemeBasic)
TextRound1: TThemeText;
@@ -525,6 +531,7 @@ type
OptionsRecord: TThemeOptionsRecord;
//Menu
SongMenu: TThemeSongMenu;
+ SongJumpto: TThemeSongJumpTo;
//Party Screens:
PartyNewRound: TThemePartyNewRound;
PartyScore: TThemePartyScore;
@@ -606,6 +613,7 @@ begin
OptionsRecord := TThemeOptionsRecord.Create;
SongMenu := TThemeSongMenu.Create;
+ SongJumpto := TThemeSongJumpto.Create;
//Party Screens
PartyNewRound := TThemePartyNewRound.Create;
PartyWin := TThemePartyWin.Create;
@@ -980,7 +988,7 @@ begin
ThemeLoadSelectSlide(OptionsRecord.SelectSlideChannelR, 'OptionsRecordSelectSlideChannelR');
ThemeLoadButton(OptionsRecord.ButtonExit, 'OptionsRecordButtonExit');
- //Song Menu
+ //Song Menu
ThemeLoadBasic (SongMenu, 'SongMenu');
ThemeLoadButton(SongMenu.Button1, 'SongMenuButton1');
ThemeLoadButton(SongMenu.Button2, 'SongMenuButton2');
@@ -990,6 +998,12 @@ begin
ThemeLoadText(SongMenu.TextMenu, 'SongMenuTextMenu');
+ //Song Jumpto
+ ThemeLoadBasic (SongJumpto, 'SongJumpto');
+ ThemeLoadButton(SongJumpto.ButtonSearchText, 'SongJumptoButtonSearchText');
+ ThemeLoadSelectSlide(SongJumpto.SelectSlideType, 'SongJumptoSelectSlideType');
+ ThemeLoadText(SongJumpto.TextFound, 'SongJumptoTextFound');
+
//Party Screens:
//Party NewRound
ThemeLoadBasic(PartyNewRound, 'PartyNewRound');