aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormota23 <mota23@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-04-30 09:24:50 +0000
committermota23 <mota23@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-04-30 09:24:50 +0000
commit37f734e1943563ca121791eabb9bff067a591e3d (patch)
tree35cdb1970a062dd32b40bfdea133da90693e0234
parentcc06446d0a651113083478fda94dfaa9a25d1d7e (diff)
downloadusdx-37f734e1943563ca121791eabb9bff067a591e3d.tar.gz
usdx-37f734e1943563ca121791eabb9bff067a591e3d.tar.xz
usdx-37f734e1943563ca121791eabb9bff067a591e3d.zip
Added new Static to ScreenPartyNewRound.
Some Themework in Party-Mode. Still needs work. git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@151 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r--Game/Code/Classes/UThemes.pas6
-rw-r--r--Game/Code/Screens/UScreenPartyNewRound.pas16
-rw-r--r--Languages/German.ini6
-rw-r--r--Skins/Deluxe/Blue.ini138
-rw-r--r--Skins/Deluxe/W&C.ini9
-rw-r--r--Skins/Deluxe/[party]playerButton.jpgbin0 -> 1519 bytes
-rw-r--r--Skins/Deluxe/[party]playerTeamButton.jpgbin0 -> 2428 bytes
-rw-r--r--Skins/Deluxe/[party]roundBG1.jpgbin0 -> 1043 bytes
-rw-r--r--Skins/Deluxe/[party]roundBG2.jpgbin0 -> 978 bytes
-rw-r--r--Skins/Deluxe/[party]roundBG3.jpgbin0 -> 1251 bytes
-rw-r--r--Skins/Deluxe/[party]roundBG4.jpgbin0 -> 1229 bytes
-rw-r--r--Skins/Deluxe/[party]roundTeamButton.jpgbin0 -> 2887 bytes
-rw-r--r--Themes/Deluxe.ini772
13 files changed, 531 insertions, 416 deletions
diff --git a/Game/Code/Classes/UThemes.pas b/Game/Code/Classes/UThemes.pas
index 31081f23..414da72f 100644
--- a/Game/Code/Classes/UThemes.pas
+++ b/Game/Code/Classes/UThemes.pas
@@ -520,6 +520,9 @@ type
StaticTeam1: TThemeStatic;
StaticTeam2: TThemeStatic;
StaticTeam3: TThemeStatic;
+ StaticNextPlayer1: TThemeStatic;
+ StaticNextPlayer2: TThemeStatic;
+ StaticNextPlayer3: TThemeStatic;
ButtonNext: TThemeButton;
end;
@@ -1214,6 +1217,9 @@ begin
ThemeLoadStatic (PartyNewRound.StaticTeam1, 'PartyNewRoundStaticTeam1');
ThemeLoadStatic (PartyNewRound.StaticTeam2, 'PartyNewRoundStaticTeam2');
ThemeLoadStatic (PartyNewRound.StaticTeam3, 'PartyNewRoundStaticTeam3');
+ ThemeLoadStatic (PartyNewRound.StaticNextPlayer1, 'PartyNewRoundStaticNextPlayer1');
+ ThemeLoadStatic (PartyNewRound.StaticNextPlayer2, 'PartyNewRoundStaticNextPlayer2');
+ ThemeLoadStatic (PartyNewRound.StaticNextPlayer3, 'PartyNewRoundStaticNextPlayer3');
ThemeLoadButton (PartyNewRound.ButtonNext, 'PartyNewRoundButtonNext');
diff --git a/Game/Code/Screens/UScreenPartyNewRound.pas b/Game/Code/Screens/UScreenPartyNewRound.pas
index cf643310..8c1b8369 100644
--- a/Game/Code/Screens/UScreenPartyNewRound.pas
+++ b/Game/Code/Screens/UScreenPartyNewRound.pas
@@ -30,6 +30,7 @@ type
TextNextPlayer1: Cardinal;
TextNextPlayer2: Cardinal;
TextNextPlayer3: Cardinal;
+
//Statics
StaticRound1: Cardinal;
StaticRound2: Cardinal;
@@ -50,6 +51,12 @@ type
StaticTeam1: Cardinal;
StaticTeam2: Cardinal;
StaticTeam3: Cardinal;
+ StaticNextPlayer1: Cardinal;
+ StaticNextPlayer2: Cardinal;
+ StaticNextPlayer3: Cardinal;
+
+
+
constructor Create; override;
function ParseInput(PressedKey: Cardinal; ScanCode: byte; PressedDown: Boolean): Boolean; override;
@@ -157,6 +164,9 @@ begin
StaticTeam1 := AddStatic (Theme.PartyNewRound.StaticTeam1);
StaticTeam2 := AddStatic (Theme.PartyNewRound.StaticTeam2);
StaticTeam3 := AddStatic (Theme.PartyNewRound.StaticTeam3);
+ StaticNextPlayer1 := AddStatic (Theme.PartyNewRound.StaticNextPlayer1);
+ StaticNextPlayer2 := AddStatic (Theme.PartyNewRound.StaticNextPlayer2);
+ StaticNextPlayer3 := AddStatic (Theme.PartyNewRound.StaticNextPlayer3);
LoadFromTheme(Theme.PartyNewRound);
end;
@@ -297,12 +307,14 @@ begin
Text[TextScoreTeam1].Visible := True;
Text[TextNameTeam1].Visible := True;
Static[StaticTeam1].Visible := True;
+ Static[StaticNextPlayer1].Visible := True;
end
else
begin
Text[TextScoreTeam1].Visible := False;
Text[TextNameTeam1].Visible := False;
Static[StaticTeam1].Visible := False;
+ Static[StaticNextPlayer1].Visible := False;
end;
if (PartySession.Teams.NumTeams >= 2) then
@@ -313,12 +325,14 @@ begin
Text[TextScoreTeam2].Visible := True;
Text[TextNameTeam2].Visible := True;
Static[StaticTeam2].Visible := True;
+ Static[StaticNextPlayer2].Visible := True;
end
else
begin
Text[TextScoreTeam2].Visible := False;
Text[TextNameTeam2].Visible := False;
Static[StaticTeam2].Visible := False;
+ Static[StaticNextPlayer2].Visible := False;
end;
if (PartySession.Teams.NumTeams >= 3) then
@@ -329,12 +343,14 @@ begin
Text[TextScoreTeam3].Visible := True;
Text[TextNameTeam3].Visible := True;
Static[StaticTeam3].Visible := True;
+ Static[StaticNextPlayer3].Visible := True;
end
else
begin
Text[TextScoreTeam3].Visible := False;
Text[TextNameTeam3].Visible := False;
Static[StaticTeam3].Visible := False;
+ Static[StaticNextPlayer3].Visible := False;
end;
//nextRound Texts
diff --git a/Languages/German.ini b/Languages/German.ini
index 2ca72d4d..a4c46742 100644
--- a/Languages/German.ini
+++ b/Languages/German.ini
@@ -203,11 +203,11 @@ PARTY_NOBODY=Niemand
PLUGIN_HDL_NAME=Balken halten
PLUGIN_HDL_DESC=Halte die Bewertugnsanzeige im angezeigten Bereich
PLUGIN_UNTIL5000_NAME=Bis 5000
-PLUGIN_UNTIL5000_DESC=Wer zuerst 5000 Punkte hat gewinnt
+PLUGIN_UNTIL5000_DESC=Wer zuerst 5000 Punkte hat gewinnt.
PLUGIN_DUELL_NAME=Duell
-PLUGIN_DUELL_DESC=Normales Spiel
+PLUGIN_DUELL_DESC=Normales Spiel. Höchste Punkzahl gewinnt.
PLUGIN_BLIND_NAME=Blind Mode
-PLUGIN_BLIND_DESC=Erreiche Blind die höchste Punktzahl
+PLUGIN_BLIND_DESC=Erreiche Blind die höchste Punktzahl.
STAT_MAIN_DESC=Statistiken
diff --git a/Skins/Deluxe/Blue.ini b/Skins/Deluxe/Blue.ini
index bd43846a..b7c3c7b2 100644
--- a/Skins/Deluxe/Blue.ini
+++ b/Skins/Deluxe/Blue.ini
@@ -9,56 +9,112 @@ Name=Blue
Color=Blue
[Textures]
-GrayLeft=Left Gray.bmp
-GrayMid=Mid Gray.bmp
-GrayRight=Right Gray.bmp
-NoteBGLeft=Note BG Left.bmp
-NoteBGMid=Note BG Mid.bmp
-NoteBGRight=Note BG Right.bmp
-NoteStar=Note Star.jpg
-NotePerfectStar=NotePerfectStar.jpg
-Ball=Ball.bmp
-SongCover=Song Cover.jpg
+MainBar=Main Bar.jpg
+Logo=Main Bar2.jpg
+Bar=Bar.jpg
+ButtonF=Buttonf.jpg
+HDL_Pointer=Pointer.BMP
+# # # M A I N # # #
Button=Button.jpg
-LoadingBG=LoadingBackground.jpg
-MainBG=MainBG_Blue.jpg
-SongBG=Blue.jpg
-ScoreBG=Blue.jpg
-Top5BG=Blue.jpg
-OptionsBG=Blue.jpg
+#Backgrounds
+LoadingBG = LoadingBackground.jpg
+MainBG = Blue.jpg
+SongBG = Blue.jpg
+ScoreScreenBG = Blue.jpg
+Top5BG = Blue.jpg
+OptionsBG = Blue.jpg
+PartyBG = Blue.jpg
-MainSolo=Sing.jpg
-MainMulti=Editor.jpg
-MainOptions=Options.jpg
-MainExit=Exit.jpg
+#Icons on screen
+SongCD = [icon]cd.jpg
+MainIcon = [icon]main.jpg
+MainSearch = [icon]search.jpg
+IconOption = [icon]options.jpg
+IconSongMenu = [icon]songmenu.jpg
+ScoreIcon = [icon]score.jpg
+PartyIcon = [icon]party.jpg
-SongCD=cd.jpg
+# # # S O N G S E L E C E T # # #
+SongSelection1 = [main]songSelection1.jpg
+SongSelection2 = [main]songSelection2.jpg
+SongCover = [main]songCover.jpg
-Leiste1=Leiste1.jpg
-Leiste2=Leiste2.jpg
-MainBar=Main Bar.jpg
-Logo=Main Bar2.jpg
+# # # S I N G # # #
+#the bar where the lyrics reside
+LyricBar = [sing]textBar.jpg
-SongSelection1=Song Selection1.jpg
-SongSelection2=Song Selection2.jpg
-Bar=Bar.jpg
-ButtonF=Buttonf.jpg
-P=P.jpg
-ScoreLine=Score Line.jpg
-ScoreBox=Score Box.jpg
-ScoreLevel=Score Level.jpg
-ScoreLevelRound=Score Level Round.jpg
+#this one slides in, to tell you that singing starts immediately
+LyricHelpBar = [sing]lyricsHelpBar.bmp
+
+#linebonus, the thing that pop ups at the score
+LineBonusBack = [sing]lineBonusPopUp.jpg
+
+#Singbar (the thing beneath the scores)
+SingBarBack = [sing]singBarBack.jpg
+SingBarBar = [sing]singBarBar.jpg
+SingBarFront = [sing]singBarFront.jpg
+
+#Background for scores
+ScoreBG = [sing]scoreBg.jpg
+
+#Background for the P1, P2 and so on
+P = [sing]p.jpg
+
+#Pointer for lyrics
+Ball = Ball.bmp
+
+
+# # # S C O R E / T O P 5 # # #
+ScoreBox = Score Box.jpg
+ScoreLevel = Score Level.jpg
+ScoreLevelRound = Score Level Round.jpg
+ScoreEndCap = [score]endcap.jpg
+ScoreLine = [main]scoreLine.jpg
+PlayerNumberBox = [main]playerNumberBox.jpg
+
+
+# # # P A R T Y # # #
+Joker=Joker.jpg
+[BG]PartyRound=[BG]PartyRound.jpg
+PartyPlayerButton=[party]playerButton.jpg
+PartyTeamButton1=[party]roundTeamButton.jpg
+PartyTeamButton2=[party]playerTeamButton.jpg
+PartyRoundBG1=[party]roundBG1.jpg
+PartyRoundBG2=[party]roundBG2.jpg
+PartyRoundBG3=[party]roundBG3.jpg
+PartyRoundBG4=[party]roundBG4.jpg
+
+# # # N A V I # # #
+ButtonP = button_p.jpg
+ButtonM = button_m.jpg
+ButtonJ = button_j.jpg
+ButtonAlt = button_alt.jpg
+ButtonAZ = button_az.jpg
+ButtonEnter= button_enter.jpg
+
+Leiste1 = [special]bar1.jpg
+Leiste2 = [special]bar2.jpg
+
+JumpToBG = [menu]jumpToBg.jpg
+SongMenuBG = [menu]songMenuBg.jpg
+
+# # # N O T E S # # #
+GrayLeft = [sing]notesLeft.bmp
+GrayMid = [sing]notesMid.bmp
+GrayRight = [sing]notesRight.bmp
+NoteBGLeft = [sing]notesBgLeft.bmp
+NoteBGMid = [sing]notesBgMid.bmp
+NoteBGRight = [sing]notesBgRight.bmp
-ScoreBG=Sing Score BG.jpg
-LyricBar=Text Bar.jpg
-LyricHelpBar=[sing]lyricsHelpBar.bmp
+# # # E F F E C T S # # #
+NoteStar = [effect]goldenNoteStar.jpg
+NotePerfectStar = [effect]perfectNoteStar.jpg
-SingBarBack=Sing Bar Back.jpg
-SingBarBar=Sing Bar Bar.jpg
-SingBarFront=Sing Bar Front.jpg
-LineBonusBack=Line Bonus PopUp.jpg \ No newline at end of file
+#dirty helpers
+Rectangle = Rectangle.jpg
+ButtonFade = ButtonFade.jpg \ No newline at end of file
diff --git a/Skins/Deluxe/W&C.ini b/Skins/Deluxe/W&C.ini
index 965eeaf7..9fbc403b 100644
--- a/Skins/Deluxe/W&C.ini
+++ b/Skins/Deluxe/W&C.ini
@@ -78,7 +78,14 @@ PlayerNumberBox = [main]playerNumberBox.jpg
# # # P A R T Y # # #
Joker=Joker.jpg
-PartyRounds=[BG]PartyRounds.jpg
+[BG]PartyRound=[BG]PartyRound.jpg
+PartyPlayerButton=[party]playerButton.jpg
+PartyTeamButton1=[party]roundTeamButton.jpg
+PartyTeamButton2=[party]playerTeamButton.jpg
+PartyRoundBG1=[party]roundBG1.jpg
+PartyRoundBG2=[party]roundBG2.jpg
+PartyRoundBG3=[party]roundBG3.jpg
+PartyRoundBG4=[party]roundBG4.jpg
# # # N A V I # # #
ButtonP = button_p.jpg
diff --git a/Skins/Deluxe/[party]playerButton.jpg b/Skins/Deluxe/[party]playerButton.jpg
new file mode 100644
index 00000000..15a34c66
--- /dev/null
+++ b/Skins/Deluxe/[party]playerButton.jpg
Binary files differ
diff --git a/Skins/Deluxe/[party]playerTeamButton.jpg b/Skins/Deluxe/[party]playerTeamButton.jpg
new file mode 100644
index 00000000..2faf9c4b
--- /dev/null
+++ b/Skins/Deluxe/[party]playerTeamButton.jpg
Binary files differ
diff --git a/Skins/Deluxe/[party]roundBG1.jpg b/Skins/Deluxe/[party]roundBG1.jpg
new file mode 100644
index 00000000..464aabea
--- /dev/null
+++ b/Skins/Deluxe/[party]roundBG1.jpg
Binary files differ
diff --git a/Skins/Deluxe/[party]roundBG2.jpg b/Skins/Deluxe/[party]roundBG2.jpg
new file mode 100644
index 00000000..3413958f
--- /dev/null
+++ b/Skins/Deluxe/[party]roundBG2.jpg
Binary files differ
diff --git a/Skins/Deluxe/[party]roundBG3.jpg b/Skins/Deluxe/[party]roundBG3.jpg
new file mode 100644
index 00000000..c6b53caf
--- /dev/null
+++ b/Skins/Deluxe/[party]roundBG3.jpg
Binary files differ
diff --git a/Skins/Deluxe/[party]roundBG4.jpg b/Skins/Deluxe/[party]roundBG4.jpg
new file mode 100644
index 00000000..5e4da0ac
--- /dev/null
+++ b/Skins/Deluxe/[party]roundBG4.jpg
Binary files differ
diff --git a/Skins/Deluxe/[party]roundTeamButton.jpg b/Skins/Deluxe/[party]roundTeamButton.jpg
new file mode 100644
index 00000000..692db1bd
--- /dev/null
+++ b/Skins/Deluxe/[party]roundTeamButton.jpg
Binary files differ
diff --git a/Themes/Deluxe.ini b/Themes/Deluxe.ini
index 40951ee5..8f415335 100644
--- a/Themes/Deluxe.ini
+++ b/Themes/Deluxe.ini
@@ -315,7 +315,7 @@ Reflections=1
[SongEqualizer]
Visible=1
Direction=1
-Color= White
+Color=White
Alpha=1
X=205
Y=514
@@ -324,7 +324,7 @@ PieceW=6
PieceH=6
Space=1
Bands=5
-Length=26
+Length=16
[SongText1]
X =70
@@ -3972,8 +3972,8 @@ Y =270
W =150
H =50
Tex =Button
-Color =DarkBlue
-DColor = LightBlue
+Color =P1Dark
+DColor = P1Light
Type=Font Black
Texts=1
Reflection=1
@@ -3993,8 +3993,8 @@ Y =270
W =150
H =50
Tex =Button
-Color =DarkRed
-DColor = LightRed
+Color =P2Dark
+DColor = P2Light
Type=Font Black
Texts=1
Reflection=1
@@ -4015,8 +4015,8 @@ Y =270
W =150
H =50
Tex =Button
-Color =DarkGreen
-DColor = LightGreen
+Color =P3Dark
+DColor = P3Light
Type=Font Black
Texts=1
Reflection=1
@@ -4094,7 +4094,7 @@ Color=White
Text=
[PartyNewRound]
-Texts =0
+Texts =8
[PartyNewRoundBackground]
Tex=MainBG
@@ -4102,111 +4102,86 @@ Tex=MainBG
[PartyNewRoundText1]
X =70
Y =6
-ColR = 0.7
-ColG = 0.7
-ColB = 0.7
-Font = 0
-Size = 20
Color =White
-Text =PARTY_MODE
+Font =0
+Size =20
+Text =Party Modus
+Align=0
[PartyNewRoundText2]
-X =370
-Y =160
+X =460
+Y =100
Color =White
Font =0
-Size =13
+Size =10
Text =PARTY_ROUND
Align=0
[PartyNewRoundText3]
-X =540
-Y =160
+X =600
+Y =100
Color =White
Font =0
-Size =13
+Size =10
Text =PARTY_ROUND_WINNER
Align=0
[PartyNewRoundText4]
-X =40
-Y =200
-Color =White
+X =290
+Y =552
+Color=Black
Font =0
-Size =12
-Text =NEXT_ROUND
+Size =7
Align=0
+Text=PARTY_ROUND_DESC
[PartyNewRoundText5]
-X =40
-Y =330
+X =448
+Y =350
Color =White
Font =0
-Size =12
-Text =NEXT_ROUND_PLAYER
-Align=0
+Size =18
+Text =PARTY_ROUND
+Align=2
[PartyNewRoundText6]
-X =120
-Y =552
-Color=Black
+X =30
+Y =137
+Color=White
Font =0
Size =7
Align=0
-Text=PARTY_MODE
+Text=Dummytext, Player2, Player3, Player4
[PartyNewRoundText7]
-X =290
-Y =552
-Color=Black
+X =30
+Y =218
+Color=White
Font =0
Size =7
Align=0
-Text=SING_LEGEND_CONTINUE
+Text=Dummytext, Player2, Player3, Player4
+
+[PartyNewRoundText8]
+X =30
+Y =299
+Color=White
+Font =0
+Size =7
+Align=0
+Text=Dummytext, Player2, Player3, Player4
[PartyNewRoundStatic1]
-Tex =PartyRounds
-X =350
-Y =160
-W = 450
-H = 380
+Tex =PartyRoundBG1
+X =450
+Y =103
+W = 330
+H = 24
Int=1
Color =DarkBlue
Type=Font Black
[PartyNewRoundStatic2]
-Tex =Button
-X =40
-Y =70
-W =200
-H =80
-Int=1
-Color =P1Dark
-Type=Font Black
-
-[PartyNewRoundStatic3]
-Tex =Button
-X =280
-Y =70
-W =200
-H =80
-Int=1
-Color =P2Dark
-Type=Font Black
-
-[PartyNewRoundStatic4]
-Tex =
-X =310
-Y =80
-W =130
-H =80
-Int=1
-Color =P3Dark
-Type=Font Black
-Reflection=1
-ReflectionSpacing=5
-
-[PartyNewRoundStatic5]
X =0
Y =549
W =252
@@ -4217,7 +4192,7 @@ Type=Plain
Reflection=1
ReflectionSpacing=1
-[PartyNewRoundStatic6]
+[PartyNewRoundStatic3]
X =254
Y =549
W =548
@@ -4228,7 +4203,7 @@ Type=Plain
Reflection=1
ReflectionSpacing=1
-[PartyNewRoundStatic7]
+[PartyNewRoundStatic4]
X =260
Y =553
W =26
@@ -4237,7 +4212,7 @@ Tex=ButtonEnter
Color =White
Type=Plain
-[PartyNewRoundStatic8]
+[PartyNewRoundStatic5]
X =40
Y =22
W =27
@@ -4246,290 +4221,333 @@ Color =White
Tex =PartyIcon
Type=Font Black
-[PartyNewRoundStatic9]
-X =40
-Y =360
-W =290
-H =3
-Color =White
-Tex =ScoreLine
+[PartyNewRoundStatic6]
+Tex =PartyRoundBG3
+X =250
+Y =350
+W = 300
+H = 50
+Int=1
+Color =DarkBlue
Type=Font Black
-[PartyNewRoundStatic10]
-X =40
-Y =230
-W =215
-H =3
-Color =White
-Tex =ScoreLine
+[PartyNewRoundStatic7]
+Tex =PartyRoundBG4
+X =50
+Y =495
+W = 700
+H = 30
+Int=1
+Color =LightBlue
+Type=Font Black
+
+[PartyNewRoundStaticTeam1]
+Tex =PartyTeamButton1
+X =20
+Y =110
+W =400
+H =50
+Int=1
+Color =P1Dark
+Type=Font Black
+Reflection=0
+
+[PartyNewRoundStaticTeam2]
+Tex =PartyTeamButton1
+X =20
+Y =191
+W =400
+H =50
+Int=1
+Color =P2Dark
+Type=Font Black
+Reflection=0
+
+[PartyNewRoundStaticTeam3]
+Tex =PartyTeamButton1
+X =20
+Y =272
+W =400
+H =50
+Int=1
+Color =P3Dark
+Type=Font Black
+Reflection=0
+
+[PartyNewRoundStaticNextPlayer1]
+Tex=PartyPlayerButton
+X=155
+Y=415
+W=150
+H=50
+Type=Font Black
+Texts=1
+Color =P1Light
+Reflection=1
+ReflectionSpacing=2
+
+[PartyNewRoundStaticNextPlayer2]
+Tex=PartyPlayerButton
+X=325
+Y=415
+W=150
+H=50
Type=Font Black
+Texts=1
+Color =P2Light
+Reflection=1
+ReflectionSpacing=2
+
+[PartyNewRoundStaticNextPlayer3]
+Tex=PartyPlayerButton
+X=495
+Y=415
+W=150
+H=50
+Type=Font Black
+Texts=1
+Color =P3Light
+Reflection=1
+ReflectionSpacing=2
+
[PartyNewRoundTextRound1]
-X =370
-Y =210
+X =460
+Y =133
Color =White
Font =0
-Size =11
+Size =8
Text =Round 1
Align=0
[PartyNewRoundTextRound2]
-X =370
-Y =250
+X =460
+Y =162
Color =White
Font =0
-Size =11
+Size =8
Text =Round 2
Align=0
[PartyNewRoundTextRound3]
-X =370
-Y =290
+X =460
+Y =191
Color =White
Font =0
-Size =11
+Size =8
Text =Round 3
Align=0
[PartyNewRoundTextRound4]
-X =370
-Y =330
+X =460
+Y =220
Color =White
Font =0
-Size =11
+Size =8
Text =Round 4
Align=0
[PartyNewRoundTextRound5]
-X =370
-Y =370
+X =460
+Y =249
Color =White
Font =0
-Size =11
+Size =8
Text =Round 5
Align=0
[PartyNewRoundTextRound6]
-X =370
-Y =410
+X =460
+Y =278
Color =White
Font =0
-Size =11
+Size =8
Text =Round 6
Align=0
[PartyNewRoundTextRound7]
-X =370
-Y =450
+X =460
+Y =307
Color =White
Font =0
-Size =11
+Size =8
Text =Round 7
Align=0
[PartyNewRoundTextWinner1]
-X =540
-Y =210
+X =600
+Y =133
Color =White
Font =0
-Size =11
+Size =8
Text =Winner 1
Align=0
[PartyNewRoundTextWinner2]
-X =540
-Y =250
+X =600
+Y =162
Color =White
Font =0
-Size =11
+Size =8
Text =Winner 2
Align=0
[PartyNewRoundTextWinner3]
-X =540
-Y =290
+X =600
+Y =191
Color =White
Font =0
-Size =11
+Size =8
Text =Winner 3
Align=0
[PartyNewRoundTextWinner4]
-X =540
-Y =330
+X =600
+Y =220
Color =White
Font =0
-Size =11
+Size =8
Text =Winner 4
Align=0
[PartyNewRoundTextWinner5]
-X =540
-Y =370
+X =600
+Y =249
Color =White
Font =0
-Size =11
+Size =8
Text =Winner 5
Align=0
[PartyNewRoundTextWinner6]
-X =540
-Y =410
+X =600
+Y =278
Color =White
Font =0
-Size =11
+Size =8
Text =Winner 6
Align=0
[PartyNewRoundTextWinner7]
-X =540
-Y =450
+X =600
+Y =307
Color =White
Font =0
-Size =11
+Size =8
Text =Winner 7
Align=0
[PartyNewRoundStaticRound1]
-Tex =
-X =40
-Y =300
-W =240
-H =35
-Color =GrayDark
+Tex =PartyRoundBG2
+X =450
+Y =135
+W = 330
+H = 20
+Color =LightBlue
Type =Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
[PartyNewRoundStaticRound2]
-Tex =
-X =40
-Y =350
-W =240
-H =35
-Color =GrayDark
+Tex =PartyRoundBG2
+X =450
+Y =164
+W = 330
+H = 20
+Color =LightBlue
Type =Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
[PartyNewRoundStaticRound3]
-Tex =
-X =40
-Y =400
-W =240
-H =35
-Color =GrayDark
+Tex =PartyRoundBG2
+X =450
+Y =193
+W = 330
+H = 20
+Color =LightBlue
Type =Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
[PartyNewRoundStaticRound4]
-Tex =
-X =40
-Y =450
-W =240
-H =35
-Color =GrayDark
+Tex =PartyRoundBG2
+X =450
+Y =222
+W = 330
+H = 20
+Color =LightBlue
Type =Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
[PartyNewRoundStaticRound5]
-Tex =
-X =40
-Y =500
-W =240
-H =35
-Color =GrayDark
+Tex =PartyRoundBG2
+X =450
+Y =251
+W = 330
+H = 20
+Color =LightBlue
Type =Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
[PartyNewRoundStaticRound6]
-Tex =
-X =40
-Y =550
-W =240
-H =35
-Color =GrayDark
+Tex =PartyRoundBG2
+X =450
+Y =280
+W = 330
+H = 20
+Color =LightBlue
Type =Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
[PartyNewRoundStaticRound7]
-Tex =
-X =40
-Y =590
-W =240
-H =35
-Color =GrayDark
+Tex =PartyRoundBG2
+X =450
+Y =309
+W = 330
+H = 20
+Color =LightBlue
Type =Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
[PartyNewRoundTextNextRound]
-X =40
-Y =250
-W = 310
+X =400
+Y =495
Color =White
Font =0
Size =10
Text =Next Round
-Align=0
+Align=1
[PartyNewRoundTextNextRoundNo]
-X =
-Y =
+X =457
+Y =350
Color =White
-Font =
-Size =1
+Font =0
+Size =18
Text =99
Align=0
[PartyNewRoundTextScoreTeam1]
-X =130
-Y = 110
+X =390
+Y =110
Color =White
Font =0
-Size =15
+Size =17
Text =3000
-Align=0
+Align=1
[PartyNewRoundTextScoreTeam2]
-X =370
-Y =110
+X =390
+Y =191
Color =White
Font =0
-Size =15
+Size =17
Text =2000
-Align=0
+Align=1
[PartyNewRoundTextScoreTeam3]
-X =610
-Y =110
+X =390
+Y =272
Color =White
Font =0
-Size =15
+Size =17
Text =1000
-Align=0
+Align=1
[PartyNewRoundTextNameTeam1]
-X =90
-Y =80
+X =30
+Y =108
Color =White
Font =0
Size =12
@@ -4537,8 +4555,8 @@ Text =Team 1
Align=0
[PartyNewRoundTextNameTeam2]
-X =330
-Y =80
+X =30
+Y =189
Color =White
Font =0
Size =12
@@ -4546,8 +4564,8 @@ Text =Team 2
Align=0
[PartyNewRoundTextNameTeam3]
-X =570
-Y =80
+X =30
+Y =270
Color =White
Font =0
Size =12
@@ -4555,31 +4573,32 @@ Text =Team 3
Align=0
[PartyNewRoundTextNextPlayer1]
-X =40
-Y =390
-Color =P1Dark
+X =230
+Y =425
+Color =White
Font =0
Size =10
Text =Player 1
-Align=0
+Align=1
[PartyNewRoundTextNextPlayer2]
-X =40
-Y =420
-Color =P2Dark
+X =400
+Y =425
+Color =White
Font =0
Size =10
Text =Player 2
-Align=0
+Align=1
[PartyNewRoundTextNextPlayer3]
-X =40
-Y =450
-Color =P3Dark
+X =570
+Y =425
+Color =White
Font =0
Size =10
Text =Player 3
-Align=0
+Align=1
+
[PartyScore]
Texts=0
@@ -4656,7 +4675,7 @@ Y =100
W =300
H =30
Tex=Leiste1
-Color =AquaLightGreen
+Color =P1Light
Int = 1
Type=Font Black
@@ -4666,7 +4685,7 @@ Y =250
W =300
H =30
Tex=Leiste1
-Color =AquaLightGreen
+Color =P2Light
Int = 1
Type=Font Black
@@ -4676,7 +4695,7 @@ Y =400
W =300
H =30
Tex=Leiste1
-Color =AquaLightGreen
+Color =P3Light
Int = 1
Type=Font Black
@@ -4851,7 +4870,7 @@ Tex = MainBar
TexSBG = MainBar
Text =PARTY_DIFFICULTY
X = 40
-Y = 50
+Y = 85
W = 230
H = 70
SkipX = 50
@@ -4872,7 +4891,7 @@ Tex = MainBar
TexSBG = MainBar
Text =PARTY_PLAYLIST
X = 40
-Y = 110
+Y = 140
W = 230
H = 70
SkipX = 50
@@ -4893,7 +4912,7 @@ Tex = MainBar
TexSBG = MainBar
Text =PARTY_PLAYLIST
X = 40
-Y = 170
+Y = 195
W = 230
H = 70
SkipX = 50
@@ -4914,7 +4933,7 @@ Tex = MainBar
TexSBG = MainBar
Text =PARTY_ROUNDS
X = 40
-Y = 230
+Y = 250
W = 230
H = 70
SkipX = 50
@@ -4935,7 +4954,7 @@ Tex = MainBar
TexSBG = MainBar
Text =PARTY_TEAMS
X = 40
-Y = 290
+Y = 305
W = 230
H = 70
SkipX = 50
@@ -4956,7 +4975,7 @@ Tex = MainBar
TexSBG = MainBar
Text =PARTY_TEAMS_PLAYER1
X = 40
-Y = 350
+Y = 360
W = 230
H = 70
SkipX = 50
@@ -4977,7 +4996,7 @@ Tex = MainBar
TexSBG = MainBar
Text =PARTY_TEAMS_PLAYER2
X = 40
-Y = 410
+Y = 415
W = 230
H = 70
SkipX = 50
@@ -5022,6 +5041,35 @@ Texts=3
[PartyPlayerBackground]
Tex=PartyBG
+[PartyPlayerText1]
+X =70
+Y =6
+ColR = 0.7
+ColG = 0.7
+ColB = 0.7
+Font = 0
+Size = 20
+Color =White
+Text=PARTY_OPTIONS_DESC
+
+[PartyPlayerText2]
+X =120
+Y =552
+Color=Black
+Font =0
+Size =7
+Align=0
+Text=SING_OPTIONS_GAME_PLAYERS
+
+[PartyPlayerText3]
+X =300
+Y =552
+Color=Black
+Font =0
+Size =7
+Align=0
+Text=PARTY_SELECT_PLAYER
+
[PartyPlayerStatic1]
X =0
Y =549
@@ -5044,24 +5092,6 @@ Type=Plain
Reflection=1
ReflectionSpacing=1
-[PartyPlayerText2]
-X =120
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_OPTIONS_GAME_PLAYERS
-
-[PartyPlayerText3]
-X =300
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=PARTY_SELECT_PLAYER
-
[PartyPlayerStatic3]
X =40
Y =22
@@ -5071,48 +5101,38 @@ Color =White
Tex =PartyIcon
Type=Font Black
-[PartyPlayerText1]
-X =70
-Y =6
-Color=White
-Font =0
-Size =20
-Text=SING_ENTER_PLAYER_NAME
-Color=White
-
-
[PartyPlayerTeam1Name]
-Tex=Button
-X=105
+Tex=PartyTeamButton2
+X=85
Y=100
-W=150
+W=310
H=50
Type=Font Black
Texts=1
-Color =P1Dark
-DColor =P1Light
-Reflection=0
+Color =P1Lightest
+DColor =P1Dark
[PartyPlayerTeam1NameText1]
-X =75
-Y =10
+X =155
+Y =8
Font=0
-Size=10
+Size=12
Align=1
Text=Team 1
Color=White
[PartyPlayerPlayer1Name]
Tex=Button
-X=105
-Y=190
+X=85
+Y=160
W =150
H =50
Type=Font Black
Texts=1
-Color =P1Dark
-DColor = GrayLight
-Reflection=0
+Color =P1Lightest
+DColor =P1Light
+Reflection=1
+ReflectionSpacing=1
[PartyPlayerPlayer1NameText1]
X =75
@@ -5125,15 +5145,16 @@ Color=White
[PartyPlayerPlayer2Name]
Tex=Button
-X=105
-Y=270
+X=245
+Y=160
W =150
H =50
Type=Font Black
Texts=1
-Color =P1Dark
-DColor = GrayLight
-Reflection=0
+Color =P1Lightest
+DColor =P1Light
+Reflection=1
+ReflectionSpacing=1
[PartyPlayerPlayer2NameText1]
X =75
@@ -5146,15 +5167,16 @@ Color=White
[PartyPlayerPlayer3Name]
Tex=Button
-X=105
-Y=350
+X=405
+Y=160
W =150
H =50
Type=Font Black
Texts=1
-Color =P1Dark
-DColor = GrayLight
-Reflection=0
+Color =P1Lightest
+DColor =P1Light
+Reflection=1
+ReflectionSpacing=1
[PartyPlayerPlayer3NameText1]
X =75
@@ -5167,15 +5189,16 @@ Color=White
[PartyPlayerPlayer4Name]
Tex=Button
-X=105
-Y=430
+X=565
+Y=160
W =150
H =50
Type=Font Black
Texts=1
-Color =P1Dark
-DColor = GrayLight
-Reflection=0
+Color =P1Lightest
+DColor =P1Light
+Reflection=1
+ReflectionSpacing=1
[PartyPlayerPlayer4NameText1]
X =75
@@ -5187,37 +5210,37 @@ Text=Player 4
Color=White
[PartyPlayerTeam2Name]
-Tex=Button
-X=325
-Y=100
-W =150
-H =50
+Tex=PartyTeamButton2
+X=85
+Y=240
+W=310
+H=50
Type=Font Black
Texts=1
-Color =P2Dark
-DColor =P2Light
-Reflection=0
+Color =P2Lightest
+DColor =P2Dark
[PartyPlayerTeam2NameText1]
-X =75
-Y =10
+X =155
+Y =8
Font=0
-Size=10
+Size=12
Align=1
Text=Team 2
Color=White
[PartyPlayerPlayer5Name]
Tex=Button
-X=325
-Y=190
+X=85
+Y=300
W =150
H =50
Type=Font Black
Texts=1
-Color =P2Dark
-DColor = GrayLight
-Reflection=0
+Color =P2Lightest
+DColor =P2Light
+Reflection=1
+ReflectionSpacing=1
[PartyPlayerPlayer5NameText1]
X =75
@@ -5230,15 +5253,16 @@ Color=White
[PartyPlayerPlayer6Name]
Tex=Button
-X=325
-Y=270
+X=245
+Y=300
W =150
H =50
Type=Font Black
Texts=1
-Color =P2Dark
-DColor = GrayLight
-Reflection=0
+Color =P2Lightest
+DColor =P2Light
+Reflection=1
+ReflectionSpacing=1
[PartyPlayerPlayer6NameText1]
X =75
@@ -5251,15 +5275,16 @@ Color=White
[PartyPlayerPlayer7Name]
Tex=Button
-X=325
-Y=350
+X=405
+Y=300
W =150
H =50
Type=Font Black
Texts=1
-Color =P2Dark
-DColor = GrayLight
-Reflection=0
+Color =P2Lightest
+DColor =P2Light
+Reflection=1
+ReflectionSpacing=1
[PartyPlayerPlayer7NameText1]
X =75
@@ -5272,15 +5297,16 @@ Color=White
[PartyPlayerPlayer8Name]
Tex=Button
-X=325
-Y=430
+X=565
+Y=300
W =150
H =50
Type=Font Black
Texts=1
-Color =P2Dark
-DColor = GrayLight
-Reflection=0
+Color =P2Lightest
+DColor =P2Light
+Reflection=1
+ReflectionSpacing=1
[PartyPlayerPlayer8NameText1]
X =75
@@ -5293,36 +5319,37 @@ Color=White
[PartyPlayerTeam3Name]
Tex=Button
-X=545
-Y=100
-W =150
-H =50
+Tex=PartyTeamButton2
+X=85
+Y=380
+W=310
+H=50
Type=Font Black
Texts=1
-Color =P3Dark
-DColor =P3Light
-Reflection=0
+Color =P3Lightest
+DColor =P3Dark
[PartyPlayerTeam3NameText1]
-X =75
-Y =10
+X =155
+Y =8
Font=0
-Size=10
+Size=12
Align=1
Text=Team 3
Color=White
[PartyPlayerPlayer9Name]
Tex=Button
-X=545
-Y=190
+X=85
+Y=440
W =150
H =50
Type=Font Black
Texts=1
-Color =P3Dark
-DColor = GrayLight
-Reflection=0
+Color =P3Lightest
+DColor =P3Light
+Reflection=1
+ReflectionSpacing=1
[PartyPlayerPlayer9NameText1]
X =75
@@ -5335,15 +5362,16 @@ Color=White
[PartyPlayerPlayer10Name]
Tex=Button
-X=545
-Y=270
+X=245
+Y=440
W =150
H =50
Type=Font Black
Texts=1
-Color =P3Dark
-DColor = GrayLight
-Reflection=0
+Color =P3Lightest
+DColor =P3Light
+Reflection=1
+ReflectionSpacing=1
[PartyPlayerPlayer10NameText1]
X =75
@@ -5356,15 +5384,16 @@ Color=White
[PartyPlayerPlayer11Name]
Tex=Button
-X=545
-Y=350
+X=405
+Y=440
W =150
H =50
Type=Font Black
Texts=1
-Color =P3Dark
-DColor = GrayLight
-Reflection=0
+Color =P3Lightest
+DColor =P3Light
+Reflection=1
+ReflectionSpacing=1
[PartyPlayerPlayer11NameText1]
X =75
@@ -5377,15 +5406,16 @@ Color=White
[PartyPlayerPlayer12Name]
Tex=Button
-X=545
-Y=430
+X=565
+Y=440
W =150
H =50
Type=Font Black
Texts=1
-Color =P3Dark
-DColor = GrayLight
-Reflection=0
+Color =P3Lightest
+DColor =P3Light
+Reflection=1
+ReflectionSpacing=1
[PartyPlayerPlayer12NameText1]
X =75