-
Notifications
You must be signed in to change notification settings - Fork 1
/
unitframejoysticksetup.pas
539 lines (472 loc) · 15.1 KB
/
unitframejoysticksetup.pas
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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
unit UnitFrameJoystickSetup;
// Copyright 2022-2024 Zoran Vučenović
// SPDX-License-Identifier: Apache-2.0
{$mode ObjFPC}{$H+}
{$i zxinc.inc}
{$ScopedEnums on}
interface
uses
Classes, SysUtils, UnitKeyMaps, CommonFunctionsLCL, UnitFormPressAKey,
UnitJoystick, UnitFormForOptionsBasic, UnitOptions, UnitCommon, Forms,
Controls, Graphics, Dialogs, ExtCtrls, StdCtrls;
type
TFrameJoystickSetup = class(TFrame, ICheckStateValid)
CheckBox1: TCheckBox;
ComboBox1: TComboBox;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
Panel1: TPanel;
Panel2: TPanel;
Panel3: TPanel;
Panel4: TPanel;
Panel5: TPanel;
Panel6: TPanel;
strict private
type
TJoystickKey = class(TCustomControl)
public
type
TCheckSameKeysEvent = function(var ADirection: TJoystick.TJoystickDirection; AKey: Word): Boolean of object;
strict private
type
TLabelKeyControl = class(TCustomControl)
private
FHasFrame: Boolean;
procedure SetHasFrame(AValue: Boolean);
public
constructor Create(AOwner: TComponent); override;
procedure Paint; override;
property HasFrame: Boolean read FHasFrame write SetHasFrame;
end;
strict private
FDirection: TJoystick.TJoystickDirection;
FOnCheckSameKeys: TCheckSameKeysEvent;
LabelDirection: TLabel;
LabelKey: TLabel;
LabelKeyControl: TLabelKeyControl;
LabelEdit: TCustomLabel;
FKey: Word;
procedure SetDirection(AValue: TJoystick.TJoystickDirection);
procedure SetKey(AValue: Word);
procedure UpdateLabelKey;
procedure UpdateLabelDirection;
procedure OnEditClick(Sender: TObject);
public
constructor Create(AOwner: TComponent); override;
constructor Create(AOwner: TComponent; ADirection: TJoystick.TJoystickDirection);
property Key: Word read FKey write SetKey;
property Direction: TJoystick.TJoystickDirection read FDirection write SetDirection;
property OnCheckSameKeys: TCheckSameKeysEvent read FOnCheckSameKeys write FOnCheckSameKeys;
end;
TJoystickTypeObj = class(TObject)
public
JT: TJoystick.TJoystickType;
end;
strict private
JoystickKeys: Array[TJoystick.TJoystickDirection] of TJoystickKey;
function GetJoystickType: TJoystick.TJoystickType;
procedure SetJoystickType(const AValue: TJoystick.TJoystickType);
procedure GetDirectionsKeys(out AValue: TJoystick.TJoystickDirectionsKeys);
procedure SetDirectionsKeys(const AValue: TJoystick.TJoystickDirectionsKeys);
function CheckSameKeys(var ADirection: TJoystick.TJoystickDirection; AKey: Word): Boolean;
procedure AfterShow(Data: PtrInt);
procedure FillCombo;
procedure ClearCombo;
procedure FormOnCloseQuery(Sender: TObject; var CanClose: Boolean);
procedure FormOnFirstShow(Sender: TObject);
procedure InitJoystickSetup(const AJoystickType: TJoystick.TJoystickType;
const AKeys: TJoystick.TJoystickDirectionsKeys; const AEnabled: Boolean);
property JoystickType: TJoystick.TJoystickType read GetJoystickType write SetJoystickType;
public
constructor Create(TheOwner: TComponent); override;
destructor Destroy; override;
procedure GetJoystickSetup(out AJoystickType: TJoystick.TJoystickType;
out AKeys: TJoystick.TJoystickDirectionsKeys; out AEnabled: Boolean);
function IsStateValid: Boolean;
class function ShowJoystickOptionsDialog(var AJoystickType: TJoystick.TJoystickType;
var AKeys: TJoystick.TJoystickDirectionsKeys; var AEnabled: Boolean): Boolean;
class function CreateForAllOptions(
AOptionsDialog: TFormOptions; const AJoystickType: TJoystick.TJoystickType;
const AKeys: TJoystick.TJoystickDirectionsKeys; const AEnabled: Boolean
): TFrameJoystickSetup;
end;
implementation
{$R *.lfm}
{ TFrameJoystickSetup.TJoystickKey.TLabelKeyControl }
procedure TFrameJoystickSetup.TJoystickKey.TLabelKeyControl.SetHasFrame(
AValue: Boolean);
begin
if FHasFrame = AValue then Exit;
FHasFrame := AValue;
Invalidate;
end;
constructor TFrameJoystickSetup.TJoystickKey.TLabelKeyControl.Create(
AOwner: TComponent);
begin
inherited Create(AOwner);
FHasFrame := False;
end;
procedure TFrameJoystickSetup.TJoystickKey.TLabelKeyControl.Paint;
var
R: TRect;
begin
inherited Paint;
if FHasFrame then begin
R := Rect(0, 0, ClientWidth - 1, ClientHeight - 1);
Canvas.Pen.Color := $00ABCDDE;
Canvas.Polyline([R.TopLeft, Point(R.Right, R.Top), R.BottomRight,
Point(R.Left, R.Bottom), R.TopLeft]);
end;
end;
{ TFrameJoystickSetup.TJoystickKey }
procedure TFrameJoystickSetup.TJoystickKey.UpdateLabelKey;
var
S: String;
begin
if FKey <> 0 then begin
S := DecodePCKey(FKey);
if S = '' then
S := FKey.ToString;
LabelKey.Font.Style := LabelKey.Font.Style + [fsBold] - [fsItalic];
LabelKey.Caption := S;
LabelKeyControl.Color := $00DAE8EF;
LabelKeyControl.HasFrame := True;
end else begin
LabelKey.Font.Style := LabelKey.Font.Style - [fsBold] + [fsItalic];
LabelKey.Caption := '<none>';
LabelKeyControl.ParentColor := True;
LabelKeyControl.HasFrame := False;
end;
end;
procedure TFrameJoystickSetup.TJoystickKey.UpdateLabelDirection;
begin
LabelDirection.Caption := TJoystick.DirectionToString(FDirection);
end;
procedure TFrameJoystickSetup.TJoystickKey.OnEditClick(Sender: TObject);
var
W: Word;
D: TJoystick.TJoystickDirection;
S, S1: String;
begin
W := Key;
if TFormPressAKey.ShowFormPressAKey(W) then begin
D := Direction;
if Assigned(FOnCheckSameKeys) and FOnCheckSameKeys(D, W) then begin
S := DecodePCKey(W);
if S = '' then
S := W.ToString;
S1 := TJoystick.DirectionToString(D);
if D = TJoystick.TJoystickDirection.diFire then
S1 := S1 + ' button'
else
S1 := S1 + ' direction';
MessageDlg('Key ' + S + ' is already assigned to ' + S1 + '.',
mtError, [mbClose], 0);
end else
SetKey(W);
end;
end;
procedure TFrameJoystickSetup.TJoystickKey.SetKey(AValue: Word);
begin
FKey := AValue;
UpdateLabelKey;
end;
procedure TFrameJoystickSetup.TJoystickKey.SetDirection(
AValue: TJoystick.TJoystickDirection);
begin
FDirection := AValue;
UpdateLabelDirection;
end;
constructor TFrameJoystickSetup.TJoystickKey.Create(AOwner: TComponent;
ADirection: TJoystick.TJoystickDirection);
var
C: TCustomControl;
begin
inherited Create(AOwner);
LabelDirection := TLabel.Create(Self);
LabelDirection.Anchors := [];
LabelDirection.AnchorParallel(akTop, 0, Self);
LabelDirection.AnchorParallel(akLeft, 0, Self);
C := TCustomControl.Create(Self);
C.Anchors := [];
C.AnchorToNeighbour(akTop, 1, LabelDirection);
C.AnchorParallel(akLeft, 1, Self);
LabelKeyControl := TLabelKeyControl.Create(C);
LabelKeyControl.Anchors := [];
LabelKeyControl.AnchorVerticalCenterTo(C);
LabelKeyControl.AnchorParallel(akLeft, 0, C);
LabelKey := TLabel.Create(LabelKeyControl);
LabelKey.Anchors := [];
LabelKey.AnchorVerticalCenterTo(LabelKeyControl);
LabelKey.AnchorParallel(akLeft, 0, LabelKeyControl);
LabelKey.BorderSpacing.Around := 2;
LabelKey.Font.Size := 10;
LabelEdit := TCommonFunctionsLCL.CreateLinkLabel(C, 'Edit');
LabelEdit.Anchors := [];
LabelEdit.AnchorVerticalCenterTo(C);
LabelEdit.AnchorToNeighbour(akLeft, 3, LabelKeyControl);
SetKey(0);
SetDirection(ADirection);
LabelKeyControl.AutoSize := True;
LabelKey.Parent := LabelKeyControl;
C.AutoSize := True;
LabelKeyControl.Parent := C;
LabelEdit.Parent := C;
LabelDirection.Parent := Self;
C.Parent := Self;
AutoSize := True;
LabelEdit.OnClick := @OnEditClick;
end;
constructor TFrameJoystickSetup.TJoystickKey.Create(AOwner: TComponent);
begin
Create(AOwner, TJoystick.TJoystickDirection.diFire);
end;
{ TFrameJoystickSetup }
procedure TFrameJoystickSetup.FormOnFirstShow(Sender: TObject);
begin
AfterShow(2);
end;
procedure TFrameJoystickSetup.InitJoystickSetup(
const AJoystickType: TJoystick.TJoystickType;
const AKeys: TJoystick.TJoystickDirectionsKeys; const AEnabled: Boolean);
begin
SetDirectionsKeys(AKeys);
JoystickType := AJoystickType;
CheckBox1.Checked := AEnabled;
end;
function TFrameJoystickSetup.GetJoystickType: TJoystick.TJoystickType;
var
Obj: TObject;
begin
Result := Low(TJoystick.TJoystickType);
if ComboBox1.ItemIndex >= 0 then begin
Obj := ComboBox1.Items.Objects[ComboBox1.ItemIndex];
if Obj is TJoystickTypeObj then begin
Result := TJoystickTypeObj(Obj).JT;
end;
end;
end;
procedure TFrameJoystickSetup.SetJoystickType(
const AValue: TJoystick.TJoystickType);
var
Obj: TObject;
I: Integer;
begin
for I := 0 to ComboBox1.Items.Count - 1 do begin
Obj := ComboBox1.Items.Objects[I];
if Obj is TJoystickTypeObj then
if TJoystickTypeObj(Obj).JT = AValue then begin
ComboBox1.ItemIndex := I;
Break;
end;
end;
end;
procedure TFrameJoystickSetup.FormOnCloseQuery(Sender: TObject;
var CanClose: Boolean);
begin
Application.RemoveAsyncCalls(Self);
if Sender is TCustomForm then begin
if TCustomForm(Sender).ModalResult = mrOK then begin
CanClose := IsStateValid;
end;
end;
end;
procedure TFrameJoystickSetup.GetDirectionsKeys(out
AValue: TJoystick.TJoystickDirectionsKeys);
var
JD: TJoystick.TJoystickDirection;
begin
for JD := Low(TJoystick.TJoystickDirection) to High(TJoystick.TJoystickDirection) do begin
AValue[JD] := JoystickKeys[JD].Key;
end;
end;
procedure TFrameJoystickSetup.SetDirectionsKeys(
const AValue: TJoystick.TJoystickDirectionsKeys);
var
JD: TJoystick.TJoystickDirection;
begin
for JD := Low(TJoystick.TJoystickDirection) to High(TJoystick.TJoystickDirection) do begin
JoystickKeys[JD].Key := AValue[JD];
end;
end;
function TFrameJoystickSetup.CheckSameKeys(var ADirection: TJoystick.TJoystickDirection;
AKey: Word): Boolean;
var
JD: TJoystick.TJoystickDirection;
begin
for JD := Low(TJoystick.TJoystickDirection) to High(TJoystick.TJoystickDirection) do begin
if JD <> ADirection then begin
if JoystickKeys[JD].Key = AKey then begin
ADirection := JD;
Exit(True);
end;
end;
end;
Result := False;
end;
procedure TFrameJoystickSetup.AfterShow(Data: PtrInt);
begin
if Data > 0 then begin
Application.QueueAsyncCall(@AfterShow, Data - 1);
end else begin
Self.AutoSize := False;
Panel3.AnchorParallel(akRight, 0, Self);
Panel3.AnchorParallel(akBottom, 0, Self);
Panel2.AnchorParallel(akRight, 0, Panel3);
Panel2.AnchorParallel(akBottom, 0, Panel3);
end;
end;
procedure TFrameJoystickSetup.FillCombo;
var
JT: TJoystick.TJoystickType;
S: String;
JTO: TJoystickTypeObj;
begin
ClearCombo;
for JT := Low(TJoystick.TJoystickType) to High(TJoystick.TJoystickType) do begin
S := TJoystick.JoystickTypeToString(JT);
JTO := TJoystickTypeObj.Create;
JTO.JT := JT;
ComboBox1.Items.AddObject(S, JTO);
end;
end;
procedure TFrameJoystickSetup.ClearCombo;
var
I: Integer;
begin
for I := 0 to ComboBox1.Items.Count - 1 do begin
ComboBox1.Items.Objects[I].Free;
ComboBox1.Items.Objects[I] := nil;
end;
ComboBox1.Clear;
end;
function TFrameJoystickSetup.IsStateValid: Boolean;
var
JD: TJoystick.TJoystickDirection;
begin
Result := True;
if CheckBox1.Checked then begin
for JD := Low(TJoystick.TJoystickDirection) to High(TJoystick.TJoystickDirection) do begin
if JoystickKeys[JD].Key = 0 then begin
Result := False;
MessageDlg('Joystick cannot be enabled, because not all keys are assigned.'
+ LineEnding + LineEnding
+ 'To be able to enable joystick, you have to assign a key to each joystick direction/button.',
mtError, [mbClose], 0);
Break;
end;
end;
end;
end;
constructor TFrameJoystickSetup.Create(TheOwner: TComponent);
var
JD: TJoystick.TJoystickDirection;
JK: TJoystickKey;
begin
inherited Create(TheOwner);
Name := TCommonFunctions.GlobalObjectNameGenerator(Self);
Caption := 'Joystick options';
Label2.Font.Color := clMaroon;
Label3.Font.Color := clMaroon;
Label3.Font.Style := Label3.Font.Style + [fsBold];
Label3.Caption := 'Note: ';
Label2.Caption := 'When Joystick is enabled, then key mappings to joystick, defined here, take precedence over key mappings to spectrum keys.';
Panel1.BevelOuter := bvNone;
Panel2.BevelOuter := bvNone;
FillCombo;
for JD := Low(TJoystick.TJoystickDirection) to High(TJoystick.TJoystickDirection) do begin
JK := TJoystickKey.Create(Panel2, JD);
JoystickKeys[JD] := JK;
JK.Anchors := [];
case JD of
TJoystick.TJoystickDirection.diUp:
begin
JK.AnchorParallel(akTop, 0, Panel2);
JK.AnchorHorizontalCenterTo(Panel2);
end;
TJoystick.TJoystickDirection.diDown:
begin
JK.AnchorParallel(akBottom, 0, Panel2);
JK.AnchorHorizontalCenterTo(Panel2);
end;
TJoystick.TJoystickDirection.diLeft:
begin
JK.AnchorVerticalCenterTo(Panel2);
JK.AnchorParallel(akLeft, 0, Panel2);
end;
TJoystick.TJoystickDirection.diRight:
begin
JK.AnchorVerticalCenterTo(Panel2);
JK.AnchorParallel(akRight, 0, Panel2);
end;
otherwise
JK.AnchorVerticalCenterTo(Panel2);
JK.AnchorHorizontalCenterTo(Panel2);
end;
JK.Parent := Panel2;
JK.OnCheckSameKeys := @CheckSameKeys;
end;
Panel6.AutoSize := True;
Self.AutoSize := True;
end;
destructor TFrameJoystickSetup.Destroy;
begin
ClearCombo;
inherited Destroy;
end;
procedure TFrameJoystickSetup.GetJoystickSetup(out
AJoystickType: TJoystick.TJoystickType; out
AKeys: TJoystick.TJoystickDirectionsKeys; out AEnabled: Boolean);
begin
GetDirectionsKeys(AKeys);
AJoystickType := JoystickType;
AEnabled := CheckBox1.Checked;
end;
class function TFrameJoystickSetup.ShowJoystickOptionsDialog(
var AJoystickType: TJoystick.TJoystickType;
var AKeys: TJoystick.TJoystickDirectionsKeys; var AEnabled: Boolean): Boolean;
var
Fm: TFrameJoystickSetup;
F: TFormForOptionsBasic;
begin
Result := False;
Fm := TFrameJoystickSetup.Create(nil);
try
Fm.InitJoystickSetup(AJoystickType, AKeys, AEnabled);
F := TFormForOptionsBasic.CreateForControl(nil, Fm, True);
try
F.AddHandlerFirstShow(@(Fm.FormOnFirstShow));
F.AddCloseQuery(@(Fm.FormOnCloseQuery));
if F.ShowModal = mrOK then begin
Fm.GetJoystickSetup(AJoystickType, AKeys, AEnabled);
Result := True;
end;
finally
F.Free;
end;
finally
Fm.Free;
end;
end;
class function TFrameJoystickSetup.CreateForAllOptions(
AOptionsDialog: TFormOptions; const AJoystickType: TJoystick.TJoystickType;
const AKeys: TJoystick.TJoystickDirectionsKeys; const AEnabled: Boolean
): TFrameJoystickSetup;
var
Fm: TFrameJoystickSetup;
begin
Result := nil;
Fm := TFrameJoystickSetup.Create(AOptionsDialog);
try
Fm.InitJoystickSetup(AJoystickType, AKeys, AEnabled);
AOptionsDialog.AddHandlerFirstShow(@Fm.FormOnFirstShow);
AOptionsDialog.AddCloseQuery(@Fm.FormOnCloseQuery);
AOptionsDialog.AddAnOptionControl(Fm, 'Joystick');
Result := Fm;
except
FreeAndNil(Fm);
end;
end;
end.