1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
|
unit UScreenSongMenu;
interface
uses
UMenu, SDL, UDisplay, UMusic, UPliki, SysUtils, UThemes;
type
TScreenSongMenu = class(TMenu)
private
CurMenu: Byte; //Num of the cur. Shown Menu
public
Visible: Boolean; //Whether the Menu should be Drawn
constructor Create; override;
function ParseInput(PressedKey: Cardinal; ScanCode: byte; PressedDown: Boolean): Boolean; override;
procedure onShow; override;
function Draw: boolean; override;
procedure MenuShow(sMenu: Byte);
procedure HandleReturn;
end;
const
SM_Main = 1;
SM_PlayList = 64 or 1;
SM_Party_Main = 128 or 1;
SM_Party_Joker = 128 or 2;
var
ISelections: Array of String;
SelectValue: Integer;
implementation
uses UGraphic, UMain, UIni, UTexture, ULanguage, UParty;
function TScreenSongMenu.ParseInput(PressedKey: Cardinal; ScanCode: byte; PressedDown: Boolean): Boolean;
function IsVisible: Boolean;
begin
Result := True;
if (Interactions[Interaction].Typ = 0) then
begin
Result := Button[Interactions[Interaction].Num].Visible;
end
else if (Interactions[Interaction].Typ = 1) then
begin
//Result := Selects[Interactions[Interaction].Num].Visible;
end
else if (Interactions[Interaction].Typ = 3) then
begin
Result := SelectsS[Interactions[Interaction].Num].Visible;
end;
end;
Procedure SelectNext;
begin
repeat
InteractNext;
until IsVisible;
end;
Procedure SelectPrev;
begin
repeat
InteractPrev;
until IsVisible;
end;
begin
Result := true;
If (PressedDown) Then
begin // Key Down
case PressedKey of
SDLK_Q:
begin
Result := false;
end;
SDLK_ESCAPE :
begin
Music.PlayBack;
Visible := False;
end;
SDLK_RETURN:
begin
HandleReturn;
end;
// Up and Down could be done at the same time,
// but I don't want to declare variables inside
// functions like this one, called so many times
SDLK_DOWN: SelectNext;
SDLK_UP: SelectPrev;
SDLK_RIGHT:
begin
if (Interaction=3) then
InteractInc;
end;
SDLK_LEFT:
begin
if (Interaction=3) then
InteractDec;
end;
end;
end
else // Key Up
case PressedKey of
SDLK_RETURN :
begin
end;
end;
end;
constructor TScreenSongMenu.Create;
var
I: integer;
begin
inherited Create;
SetLength(ISelections, 1);
ISelections[0] := 'Dummy';
AddBackground(Theme.SongMenu.Background.Tex);
AddButton(Theme.SongMenu.Button1);
if (Length(Button[0].Text) = 0) then
AddButtonText(14, 20, 'Button 1');
AddButton(Theme.SongMenu.Button2);
if (Length(Button[1].Text) = 0) then
AddButtonText(14, 20, 'Button 2');
AddButton(Theme.SongMenu.Button3);
if (Length(Button[2].Text) = 0) then
AddButtonText(14, 20, 'Button 3');
AddSelectSlide(Theme.SongMenu.SelectSlide3, SelectValue, ISelections);
AddButton(Theme.SongMenu.Button4);
if (Length(Button[3].Text) = 0) then
AddButtonText(14, 20, 'Button 4');
AddText(Theme.SongMenu.TextMenu);
for I := 0 to High(Theme.SongMenu.Static) do
AddStatic(Theme.SongMenu.Static[I]);
for I := 0 to High(Theme.SongMenu.Text) do
AddText(Theme.SongMenu.Text[I]);
Interaction := 0;
end;
function TScreenSongMenu.Draw: boolean;
begin
inherited Draw;
end;
procedure TScreenSongMenu.onShow;
begin
end;
procedure TScreenSongMenu.MenuShow(sMenu: Byte);
begin
Interaction := 0; //Reset Interaction
Case sMenu of
SM_Main:
begin
CurMenu := sMenu;
Text[0].Text := Language.Translate('SONG_MENU_NAME_MAIN');
Button[0].Visible := True;
Button[1].Visible := True;
Button[2].Visible := True;
Button[3].Visible := True;
SelectsS[0].Visible := False;
Button[0].Text[0].Text := Language.Translate('SONG_MENU_PLAY');
Button[1].Text[0].Text := Language.Translate('SONG_MENU_EDIT');
Button[2].Text[0].Text := Language.Translate('SONG_MENU_PLAYMODI');
Button[3].Text[0].Text := Language.Translate('SONG_MENU_CANCEL');
end;
SM_PlayList:
begin
CurMenu := sMenu;
Text[0].Text := Language.Translate('SONG_MENU_NAME_PLAYLIST');
Button[0].Visible := True;
Button[1].Visible := False;
Button[2].Visible := False;
Button[3].Visible := True;
SelectsS[0].Visible := False;
Button[0].Text[0].Text := Language.Translate('SONG_MENU_PLAYLIST_ADD');
Button[1].Text[0].Text := '';
Button[2].Text[0].Text := '';
Button[3].Text[0].Text := Language.Translate('SONG_MENU_CANCEL');
end;
SM_Party_Main:
begin
CurMenu := sMenu;
Text[0].Text := Language.Translate('SONG_MENU_NAME_PARTY_MAIN');
Button[0].Visible := True;
Button[1].Visible := False;
Button[2].Visible := False;
Button[3].Visible := True;
SelectsS[0].Visible := False;
Button[0].Text[0].Text := Language.Translate('SONG_MENU_PLAY');
Button[1].Text[0].Text := Language.Translate('SONG_MENU_JOKER');
Button[2].Text[0].Text := Language.Translate('SONG_MENU_PLAYMODI');
Button[3].Text[0].Text := Language.Translate('SONG_MENU_JOKER');
end;
SM_Party_Joker:
begin
CurMenu := sMenu;
Text[0].Text := Language.Translate('SONG_MENU_NAME_PARTY_JOKER');
Button[0].Visible := (PartySession.Teams.NumTeams >= 1) AND (PartySession.Teams.Teaminfo[0].Joker > 0);
Button[1].Visible := (PartySession.Teams.NumTeams >= 2) AND (PartySession.Teams.Teaminfo[1].Joker > 0);
Button[2].Visible := (PartySession.Teams.NumTeams >= 3) AND (PartySession.Teams.Teaminfo[2].Joker > 0);
Button[3].Visible := True;
SelectsS[0].Visible := False;
Button[0].Text[0].Text := String(PartySession.Teams.Teaminfo[0].Name);
Button[1].Text[0].Text := String(PartySession.Teams.Teaminfo[1].Name);
Button[2].Text[0].Text := String(PartySession.Teams.Teaminfo[2].Name);
Button[3].Text[0].Text := Language.Translate('SONG_MENU_CANCEL');
end;
end;
end;
procedure TScreenSongMenu.HandleReturn;
begin
Case CurMenu of
SM_Main:
begin
Visible := False;
Case Interaction of
0: //Button 1
begin
ScreenSong.StartSong;
end;
1: //Button 2
begin
ScreenSong.OpenEditor;
end;
2: //Button 3
begin
//Todo: Add SingleRound Modi Support
end;
3: //SelectSlide 3
begin
//Dummy
end;
4: //Button 4
begin
//Cancel... (Do Nothing)
end;
end;
end;
SM_PlayList:
begin
Visible := False;
Case Interaction of
0: //Button 1
begin
//
end;
1: //Button 2
begin
//
end;
2: //Button 3
begin
//Todo
end;
3: //SelectSlide 3
begin
//Dummy
end;
4: //Button 4
begin
//
end;
end;
end;
SM_Party_Main:
begin
Case Interaction of
0: //Button 1
begin
//Start Singing
ScreenSong.StartSong;
Visible := False;
end;
4: //Button 4
begin
//Joker
MenuShow(SM_Party_Joker);
end;
end;
end;
SM_Party_Joker:
begin
Visible := False;
Case Interaction of
0: //Button 1
begin
//Joker Team 1
ScreenSong.DoJoker(0);
end;
1: //Button 2
begin
//Joker Team 2
ScreenSong.DoJoker(1);
end;
2: //Button 3
begin
//Joker Team 3
ScreenSong.DoJoker(2);
end;
4: //Button 4
begin
//Cancel... (Fo back to old Menu)
MenuShow(SM_Party_Main);
end;
end;
end;
end;
end;
end.
|