aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/Screens/UScreenName.pas
blob: a00f88317fad19d420ff001a56bae0bf5c9d8349 (plain) (blame)
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
unit UScreenName;

interface

uses
  UMenu, SDL, UDisplay, UMusic, UFiles, SysUtils, UThemes;

type
  TScreenName = class(TMenu)
    public
      Goto_SingScreen: Boolean; //If True then next Screen in SingScreen
      constructor Create; override;
      function ParseInput(PressedKey: Cardinal; ScanCode: byte; PressedDown: Boolean): Boolean; override;
      procedure onShow; override;
      procedure Refresh;
      procedure SetAnimationProgress(Progress: real); override;
  end;

const
  ID='ID_004';   //for help system

implementation

uses UGraphic, UMain, UIni, UTexture, UHelp, ULog;

function TScreenName.ParseInput(PressedKey: Cardinal; ScanCode: byte; PressedDown: Boolean): Boolean;
var
  I:    integer;
SDL_ModState:  Word;
begin
  Result := true;

  if not (ScanCode in [0..31, 127..159]) then
  begin
    Button[Interaction].Text[0].Text := Button[Interaction].Text[0].Text + chr(ScanCode);
    Exit;
  end;

  If (PressedDown) Then
  begin // Key Down

    SDL_ModState := SDL_GetModState and (KMOD_LSHIFT + KMOD_RSHIFT
    + KMOD_LCTRL + KMOD_RCTRL + KMOD_LALT  + KMOD_RALT);

    case PressedKey of
      SDLK_TAB:
        begin
          ScreenPopupHelp.ShowPopup();
        end;

      // Templates for Names Mod
      SDLK_F1:
        if (SDL_ModState = KMOD_LALT) then
        begin
          Ini.NameTemplate[0] := Button[Interaction].Text[0].Text;
        end else
        begin
          Button[Interaction].Text[0].Text := Ini.NameTemplate[0];
        end;
      SDLK_F2:
        if (SDL_ModState = KMOD_LALT) then
        begin
          Ini.NameTemplate[1] := Button[Interaction].Text[0].Text;
        end else
        begin
          Button[Interaction].Text[0].Text := Ini.NameTemplate[1];
        end;
      SDLK_F3:
        if (SDL_ModState = KMOD_LALT) then
        begin
          Ini.NameTemplate[2] := Button[Interaction].Text[0].Text;
        end else
        begin
          Button[Interaction].Text[0].Text := Ini.NameTemplate[2];
        end;
      SDLK_F4:
        if (SDL_ModState = KMOD_LALT) then
        begin
          Ini.NameTemplate[3] := Button[Interaction].Text[0].Text;
        end else
        begin
          Button[Interaction].Text[0].Text := Ini.NameTemplate[3];
        end;
      SDLK_F5:
        if (SDL_ModState = KMOD_LALT) then
        begin
          Ini.NameTemplate[4] := Button[Interaction].Text[0].Text;
        end else
        begin
          Button[Interaction].Text[0].Text := Ini.NameTemplate[4];
        end;
      SDLK_F6:
        if (SDL_ModState = KMOD_LALT) then
        begin
          Ini.NameTemplate[5] := Button[Interaction].Text[0].Text;
        end else
        begin
          Button[Interaction].Text[0].Text := Ini.NameTemplate[5];
        end;
      SDLK_F7:
        if (SDL_ModState = KMOD_LALT) then
        begin
          Ini.NameTemplate[6] := Button[Interaction].Text[0].Text;
        end else
        begin
          Button[Interaction].Text[0].Text := Ini.NameTemplate[6];
        end;
      SDLK_F8:
        if (SDL_ModState = KMOD_LALT) then
        begin
          Ini.NameTemplate[7] := Button[Interaction].Text[0].Text;
        end else
        begin
          Button[Interaction].Text[0].Text := Ini.NameTemplate[7];
        end;
      SDLK_F9:
        if (SDL_ModState = KMOD_LALT) then
        begin
          Ini.NameTemplate[8] := Button[Interaction].Text[0].Text;
        end else
        begin
          Button[Interaction].Text[0].Text := Ini.NameTemplate[8];
        end;
      SDLK_F10:
        if (SDL_ModState = KMOD_LALT) then
        begin
          Ini.NameTemplate[9] := Button[Interaction].Text[0].Text;
        end else
        begin
          Button[Interaction].Text[0].Text := Ini.NameTemplate[9];
        end;
      SDLK_F11:
        if (SDL_ModState = KMOD_LALT) then
        begin
          Ini.NameTemplate[10] := Button[Interaction].Text[0].Text;
        end else
        begin
          Button[Interaction].Text[0].Text := Ini.NameTemplate[10];
        end;
      SDLK_F12:
        if (SDL_ModState = KMOD_LALT) then
        begin
          Ini.NameTemplate[11] := Button[Interaction].Text[0].Text;
        end else
        begin
          Button[Interaction].Text[0].Text := Ini.NameTemplate[11];
        end;


      SDLK_BACKSPACE:
        begin
          Button[Interaction].Text[0].DeleteLastL;
        end;

      SDLK_ESCAPE:
        begin
          Ini.SaveNames;
          Music.PlayBack;
          if GoTo_SingScreen then
            FadeTo(@ScreenSong)
          else
            FadeTo(@ScreenMain);
        end;

      SDLK_RETURN:
        begin
          for I := 1 to 6 do
            Ini.Name[I-1] := Button[I-1].Text[0].Text;
          Ini.SaveNames;
          Music.PlayStart;

          if GoTo_SingScreen then
            FadeTo(@ScreenSing)
          else
            FadeTo(@ScreenLevel);

          GoTo_SingScreen := False;
        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:
        begin
          if (SDL_ModState = KMOD_LSHIFT) then
          begin
            if (Ini.Players>0) then
              Dec(Ini.Players);

            if (Ini.Players >= 0) and (Ini.Players <= 3) then PlayersPlay := Ini.Players + 1;
            if (Ini.Players = 4) then PlayersPlay := 6;

            Refresh;
          end else
            InteractNext;
        end;

      SDLK_UP:
        begin
          if (SDL_ModState = KMOD_LSHIFT) then
          begin
            if (Ini.Players<4) then
              Inc(Ini.Players);

            if (Ini.Players >= 0) and (Ini.Players <= 3) then PlayersPlay := Ini.Players + 1;
            if (Ini.Players = 4) then PlayersPlay := 6;
            Refresh;
          end else
            InteractPrev;
        end;

      SDLK_RIGHT:
        begin
          InteractNext;
        end;

      SDLK_LEFT:
        begin
          InteractPrev;
        end;

    end;
  end;
end;

constructor TScreenName.Create;
var
  I:    integer;
begin
  inherited Create;

  LoadFromTheme(Theme.Name);


  for I := 1 to 6 do
    AddButton(Theme.Name.ButtonPlayer[I]);

  Interaction := 0;
end;

procedure TScreenName.onShow;
var
  I:    integer;
begin
  for I := 1 to 6 do
    Button[I-1].Text[0].Text := Ini.Name[I-1];

  Refresh;

  if not Help.SetHelpID(ID) then
    Log.LogError('No Entry for Help-ID ' + ID + ' (ScreenName)');
end;

procedure TScreenName.Refresh;
var
  I:    integer;
begin
  for I := 1 to PlayersPlay do
  begin
    Button[I-1].Visible := true;
    Button[I-1].Selectable := true;
  end;

  for I := PlayersPlay+1 to 6 do
  begin
    Button[I-1].Visible := false;
    Button[I-1].Selectable := false;
  end;
end;

procedure TScreenName.SetAnimationProgress(Progress: real);
var
  I:    integer;
begin
  for I := 1 to 6 do
    Button[I-1].Texture.ScaleW := Progress;
end;

end.