-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHostBattleFormUnit.pas
687 lines (586 loc) · 22.7 KB
/
HostBattleFormUnit.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
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
unit HostBattleFormUnit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Mask, ComCtrls, Buttons, Menus,SpTBXSkins, OverbyteIcsHttpProt,
SpTBXEditors, SpTBXControls, TntStdCtrls, SpTBXItem,
JvExControls, JvComponent, JvArrowButton, ExtCtrls, JvXPCore, JvXPButtons,
TB2Item, TB2ExtItems,
TB2Dock, TB2Toolbar, MainUnit, StrUtils,JclUnicode, LobbyScriptUnit,
OverbyteIcsWndControl;
type
THostBattleForm = class(TForm)
SpTBXTitleBar1: TSpTBXTitleBar;
Label1: TSpTBXLabel;
Label2: TSpTBXLabel;
Label3: TSpTBXLabel;
Label4: TSpTBXLabel;
Label5: TSpTBXLabel;
SpeedButton1: TSpTBXSpeedButton;
Label6: TSpTBXLabel;
Label7: TSpTBXLabel;
Label8: TSpTBXLabel;
PortEdit: TSpTBXEdit;
PasswordEdit: TSpTBXEdit;
TitleEdit: TSpTBXEdit;
ModsComboBox: TSpTBXComboBox;
RankComboBox: TSpTBXComboBox;
NATRadioGroup: TSpTBXRadioGroup;
CancelButton: TSpTBXButton;
AutoSendDescCheckbox: TSpTBXCheckBox;
HttpCli1: THttpCli;
RefreshModListButton: TSpTBXButton;
PlayersTracker: TSpTBXSpinEdit;
HostButton: TSpTBXButton;
HostTypeButton: TSpTBXButton;
HostPopupMenu: TSpTBXPopupMenu;
mnuHost: TSpTBXItem;
mnuHostReplay: TSpTBXItem;
RelayChatCheckBox: TSpTBXCheckBox;
pnlRelayHosting: TSpTBXPanel;
RelayHostCheckBox: TSpTBXCheckBox;
cmbRelayList: TSpTBXComboBox;
btRefreshRelayManagersList: TSpTBXButton;
SpTBXPanel2: TSpTBXPanel;
DownloadModButton: TSpTBXButton;
procedure CreateParams(var Params: TCreateParams); override;
procedure TryToHostBattle;
procedure TryToHostReplay;
procedure CancelButtonClick(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure SpeedButton1Click(Sender: TObject);
procedure FormShow(Sender: TObject);
procedure Host1Click(Sender: TObject);
procedure HostReplay1Click(Sender: TObject);
procedure NATRadioGroupClick(Sender: TObject);
procedure RefreshModListButtonClick(Sender: TObject);
procedure HostButtonClick(Sender: TObject);
procedure RankComboBoxDrawItem(Sender: TObject; ACanvas: TCanvas;
var ARect: TRect; Index: Integer; const State: TOwnerDrawState;
const PaintStage: TSpTBXPaintStage; var PaintDefault: Boolean);
procedure btRefreshRelayManagersListClick(Sender: TObject);
procedure RelayHostCheckBoxClick(Sender: TObject);
procedure cmbRelayListDrawItem(Sender: TObject; ACanvas: TCanvas;
var ARect: TRect; Index: Integer; const State: TOwnerDrawState;
const PaintStage: TSpTBXPaintStage; var PaintDefault: Boolean);
procedure DownloadModButtonClick(Sender: TObject);
private
{ Private declarations }
public
relayHoster: TClient;
relayHosterName: string;
relayHostManagerName: string;
relayHostOpenBattleCmd: string;
relayHostPassword: string;
replay: TReplay;
relayHostManagerList: TList;
procedure checkBattleReadyToBeHosted;
end;
var
HostBattleForm: THostBattleForm;
BattleReplayScript: string;
implementation
uses WaitForAckUnit, BattleFormUnit, Utility, InitWaitFormUnit,
DisableUnitsFormUnit, HostInfoUnit, Misc, PreferencesFormUnit,
ReplaysUnit, Math, TntWideStrings, gnugettext, RapidDownloaderFormUnit;
{$R *.dfm}
procedure THostBattleForm.CreateParams(var Params: TCreateParams);
begin
inherited CreateParams(Params);
if not Preferences.TaskbarButtons then Exit;
with Params do begin
ExStyle := ExStyle or WS_EX_APPWINDOW;
WndParent := GetDesktopWindow;
end;
end;
function ValidatePassword(p: string): Boolean;
var
i: Integer;
begin
Result := False;
for i := 1 to Length(p) do if not (p[i] in ['0'..'9', 'a'..'z', 'A'..'Z']) then Exit;
Result := True;
end;
procedure THostBattleForm.CancelButtonClick(Sender: TObject);
begin
HostButton.Enabled := True;
Close;
end;
procedure THostBattleForm.TryToHostBattle;
var
i,j: Integer;
s: WideString;
begin
try
i := StrToInt(Trim(PortEdit.Text));
if not RelayHostCheckBox.Checked and ((i < 1024) or (i > 65535)) then raise Exception.Create('Number out of range');
except
if not LobbyScriptUnit.ScriptHostingRunning and not LobbyScriptUnit.ScriptHostingReplayRunning then
MessageDlg(_('Port number must be a whole number within a proper range (1024..65535)'), mtError, [mbOK], 0);
Exit;
end;
if not (PasswordEdit.Text = '') then if not ValidatePassword(PasswordEdit.Text) then
begin
if not LobbyScriptUnit.ScriptHostingRunning and not LobbyScriptUnit.ScriptHostingReplayRunning then
MessageDlg(_('Invalid password! Must contain letters and numbers only!'), mtError, [mbOK], 0);
Exit;
end;
if BattleForm.CurrentMapIndex = -1 then // this should not happen!
begin
if not LobbyScriptUnit.ScriptHostingRunning and not LobbyScriptUnit.ScriptHostingReplayRunning then
MessageDlg(_('Cannot proceed: no map is selected!'), mtWarning, [mbOK], 0);
Exit;
end;
if not RelayHostCheckBox.Checked then
begin
ReInitLib;
LoadMod(Utility.ModArchiveList[Utility.ModList.IndexOf(ModsComboBox.Items[ModsComboBox.ItemIndex])]);
if Utility.ModValidMaps.Count > 0 then
begin
i:=0;
while (i < Utility.ModValidMaps.Count) and (Utility.MapList.IndexOf(Utility.ModValidMaps[i]) = -1) do
i := i+1;
if i = Utility.ModValidMaps.Count then
begin
if not LobbyScriptUnit.ScriptHostingRunning and not LobbyScriptUnit.ScriptHostingReplayRunning then
MessageDlg(_('Cannot proceed: this mod requires one of the following map :')+EOL+Misc.JoinStringList(Utility.ModValidMaps,' ; '), mtWarning, [mbOK], 0);
Exit;
end;
end;
end;
{
if RankComboBox.ItemIndex > 0 then
if MessageDlg('You should try to avoid limiting games to a certain rank unless it is absolutely necessary'+#13+
'as new players will have a limited enough opportunity to play as is.'+#13+#13+
'Are you sure you wish to continue?', mtConfirmation, [mbYes, mbNo], 0) = mrNo then Exit;
}
if (Status.MyRank < RankComboBox.ItemIndex) then
if not LobbyScriptUnit.ScriptHostingRunning and not LobbyScriptUnit.ScriptHostingReplayRunning then
if MessageDlg(Format(_('Your rank (%s) is lower than the battle rank limit (%s). Do you wish to continue anyway?'),[Ranks[Status.MyRank], Ranks[RankComboBox.ItemIndex]]), mtConfirmation, [mbYes, mbNo], 0) = mrNo then Exit;
// loading default battle preferences
PreferencesForm.LoadDefaultBattlePreferencesFromRegistry;
if not RelayHostCheckBox.Checked then
begin
// we have to change mod and update unit list:
InitWaitForm.ChangeCaption(MSG_MODCHANGE);
InitWaitForm.TakeAction := 0; // change mod
InitWaitForm.ChangeToMod := ModsComboBox.Text;
InitWaitForm.ShowModal; // this changes mod (see OnFormActivate event)
// now let's update units:
InitWaitForm.ChangeCaption(MSG_GETUNITS);
InitWaitForm.TakeAction := 1; // load unit lists
InitWaitForm.ShowModal; // this loads unit lists (see OnFormActivate event)
//DisableUnitsForm.VDTUnits.RootNodeCount := UnitNames.Count;
DisableUnitsForm.PopulateUnitList;
end;
s := '';
// type:
s := s + '0' + ' ';
// NAT traversal method type:
s := s + IntToStr(NATRadioGroup.ItemIndex) + ' ';
// password (must be "*" for none):
if PasswordEdit.Text = '' then s := s + '* ' else s := s + PasswordEdit.Text + ' ';
// port:
if NATRadioGroup.ItemIndex = 1 then s := s + IntToStr(NATTraversal.MyPublicUDPSourcePort) + ' '
else s := s + Trim(PortEdit.Text) + ' ';
// max. players:
s := s + IntToStr(PlayersTracker.SpinOptions.ValueAsInteger) + ' ';
// hash code:
s := s + IntToStr(GetModHash(ModsComboBox.Items[ModsComboBox.ItemIndex])) + ' ';
// rank limit:
s := s + IntToStr(RankComboBox.ItemIndex) + ' ';
// map hash:
s := s + IntToStr(Utility.MapChecksums.Items[BattleForm.CurrentMapIndex]) + ' ';
// engine name:
s := s + 'spring' + #9;
// engine version:
s := s + Status.MySpringVersion + #9;
// map:
s := s + Utility.MapList[BattleForm.CurrentMapIndex] + #9;
// title (description):
if TitleEdit.Text = '' then
s := s + '(none)' + #9
else
s := s + TitleEdit.Text + #9; // we should not send empty line for title!
// name of mod:
s := s + ModsComboBox.Text;
// send the command:
if RelayHostCheckBox.Checked then
begin
relayHostOpenBattleCmd := '!openbattle '+s;
relayHostPassword := PasswordEdit.Text;
BattleState.AutoSendDescription := AutoSendDescCheckbox.Checked;
BattleState.AutoKickRankLimit := BattleForm.mnuLimitRankAutoKick.Checked;
relayHostManagerName := TClient(relayHostManagerList[cmbRelayList.ItemIndex]).Name;
MainForm.TryToSendCommand('SAYPRIVATE',relayHostManagerName+' !spawn');
Close;
end
else
begin
MainForm.TryToSendCommand('OPENBATTLE', s);
BattleState.AutoSendDescription := AutoSendDescCheckbox.Checked;
BattleState.AutoKickRankLimit := BattleForm.mnuLimitRankAutoKick.Checked;
BattleState.Password := PasswordEdit.Text;
WaitForAckForm.ShowModal;
end;
end;
procedure THostBattleForm.TryToHostReplay;
var
i: Integer;
s: WideString;
begin
try
i := StrToInt(Trim(PortEdit.Text));
if (i < 1024) or (i > 65535) then raise Exception.Create('Number out of range');
except
MessageDlg(_('Port number must be a whole number within a proper range (1024..65535)'), mtError, [mbOK], 0);
Exit;
end;
if not (PasswordEdit.Text = '') then if not ValidatePassword(PasswordEdit.Text) then
begin
MessageDlg(_('Invalid password! Must contain letters and numbers only!'), mtError, [mbOK], 0);
Exit;
end;
{
if RankComboBox.ItemIndex > 0 then
if MessageDlg('You should try to avoid limiting games to a certain rank unless it is absolutely necessary'+#13+
'as new players will have a limited enough opportunity to play as is.'+#13+#13+
'Are you sure you wish to continue?', mtConfirmation, [mbYes, mbNo], 0) = mrNo then Exit;
}
if (Status.MyRank < RankComboBox.ItemIndex) then
if MessageDlg(Format(_('Your rank (%s) is lower than the battle rank limit (%s). Do you wish to continue anyway?'),[Ranks[Status.MyRank], Ranks[RankComboBox.ItemIndex]]), mtConfirmation, [mbYes, mbNo], 0) = mrNo then Exit;
// we have to change mod and update unit list:
InitWaitForm.ChangeCaption(MSG_MODCHANGE);
InitWaitForm.TakeAction := 0; // change mod
InitWaitForm.ChangeToMod := ModsComboBox.Text;
InitWaitForm.ShowModal; // this changes mod (see OnFormActivate event)
// now let's update units:
InitWaitForm.ChangeCaption(MSG_GETUNITS);
InitWaitForm.TakeAction := 1; // load unit lists
InitWaitForm.ShowModal; // this loads unit lists (see OnFormActivate event)
//DisableUnitsForm.VDTUnits.RootNodeCount := UnitNames.Count;
DisableUnitsForm.PopulateUnitList;
// change map in battle window to the one used in this replay:
if Utility.MapList.IndexOf(replay.Script.ReadKeyValue('GAME/mapname')) = -1 then // this can not really happen since we already checked if we have this map
begin
MessageDlg(_('You don''t have the map: ') + replay.Script.ReadKeyValue('GAME/mapname'), mtWarning, [mbOK], 0);
Exit;
end
else
begin
i := Utility.MapList.IndexOf(replay.Script.ReadKeyValue('GAME/mapname'));
if BattleForm.CurrentMapIndex <> i then BattleForm.ChangeMap(i);
end;
s := '';
// type:
s := s + '1' + ' ';
// NAT traversal method type:
s := s + IntToStr(NATRadioGroup.ItemIndex) + ' ';
// password (must be "*" for none):
if PasswordEdit.Text = '' then s := s + '* ' else s := s + PasswordEdit.Text + ' ';
// port:
if NATRadioGroup.ItemIndex = 1 then s := s + IntToStr(NATTraversal.MyPublicUDPSourcePort) + ' '
else s := s + Trim(PortEdit.Text) + ' ';
// max. players:
s := s + IntToStr(PlayersTracker.SpinOptions.ValueAsInteger) + ' ';
// hash code:
s := s + IntToStr(GetModHash(ModsComboBox.Items[ModsComboBox.ItemIndex])) + ' ';
// rank limit:
s := s + IntToStr(RankComboBox.ItemIndex) + ' ';
// map hash:
s := s + IntToStr(Utility.MapChecksums.Items[Utility.MapList.IndexOf(replay.Script.ReadKeyValue('GAME/mapname'))]) + ' ';
// map:
s := s + replay.Script.ReadKeyValue('GAME/mapname') + #9;
// title (description):
if TitleEdit.Text = '' then s := s + '(none)' + #9 else s := s + TitleEdit.Text + #9; // we should not send empty line for title!
// name of mod:
if ModArchiveList.IndexOf(replay.Script.ReadKeyValue('GAME/gametype')) = -1 then
s := s + replay.Script.ReadKeyValue('GAME/gametype')
else
s := s + ModList[ModArchiveList.IndexOf(replay.Script.ReadKeyValue('GAME/gametype'))];
// send the command:
MainForm.TryToSendCommand('OPENBATTLE', s);
BattleState.AutoSendDescription := AutoSendDescCheckbox.Checked;
BattleState.AutoKickRankLimit := BattleForm.mnuLimitRankAutoKick.Checked;
BattleState.Password := PasswordEdit.Text;
WaitForAckForm.Show;
end;
procedure THostBattleForm.FormCreate(Sender: TObject);
var
i: Integer;
begin
TranslateComponent(self);
ModsComboBox.Items.Assign(Utility.ModList);
ModsComboBox.ItemIndex := 0;
PlayersTracker.SpinOptions.MaxValue := MAX_TEAMS;
relayHoster := nil;
relayHostManagerList := TList.Create;
RankComboBox.Items.Add('(No limit)');
for i := 1 to High(Ranks) do RankComboBox.Items.Add(Ranks[i]);
RankComboBox.ItemIndex := 0;
end;
procedure THostBattleForm.SpeedButton1Click(Sender: TObject);
begin
HostInfoForm.ShowModal;
end;
procedure THostBattleForm.FormShow(Sender: TObject);
var
s:string;
sl: TStringList;
begin
Host1Click(HostPopupMenu.Items[0]);
s := HostBattleForm.ModsComboBox.Text;
sl := TStringList.Create;
sl.Assign(Utility.ModList);
sl.Sort;
HostBattleForm.ModsComboBox.Items.Assign(sl);
HostBattleForm.ModsComboBox.ItemIndex := Max(0, HostBattleForm.ModsComboBox.Items.IndexOf(s));
if HostButtonMenuIndex = 0 then
Host1Click(mnuHost)
else if HostButtonMenuIndex = 2 then
HostReplay1Click(mnuHostReplay);
HostButtonMenuIndex := 0;
end;
procedure THostBattleForm.Host1Click(Sender: TObject);
var
s : string;
begin
replay := nil;
pnlRelayHosting.Visible := True;
ModsComboBox.Enabled := True;
RankComboBox.Enabled := True;
AutoSendDescCheckbox.Enabled := True;
TitleEdit.Enabled := True;
Label4.Enabled := True;
PlayersTracker.Enabled := true;
Label4.Visible := True;
AutoSendDescCheckbox.Visible := True;
TitleEdit.Visible := True;
PlayersTracker.SpinOptions.MinValue := 2;
PlayersTracker.SpinOptions.MaxValue := MAX_TEAMS;
Label3.Visible := True;
Label8.Visible := True;
PasswordEdit.Visible := True;
// s := ModsComboBox.Items[ModsComboBox.ItemIndex];
//ModsComboBox.Items.Assign(Utility.ModList);
//ModsComboBox.ItemIndex := ModsComboBox.Items.IndexOf(s);
(Sender as TSpTBXItem).Checked := True;
HostButton.Caption := _('Host battle');
checkBattleReadyToBeHosted;
end;
procedure THostBattleForm.HostReplay1Click(Sender: TObject);
begin
pnlRelayHosting.Visible := False;
ReplaysForm.WatchButton.Visible := False;
ReplaysForm.HostReplayButton.Visible := True;
AutoSendDescCheckbox.Enabled := True;
TitleEdit.Enabled := True;
Label4.Enabled := True;
PlayersTracker.Enabled := true;
Label4.Visible := True;
AutoSendDescCheckbox.Visible := True;
TitleEdit.Visible := True;
PlayersTracker.SpinOptions.MinValue := 2;
PlayersTracker.SpinOptions.MaxValue := 16;
Label3.Visible := True;
Label8.Visible := True;
PasswordEdit.Visible := True;
if not LobbyScriptUnit.ScriptHostingReplayRunning then
begin
if ReplaysForm.ShowModal <> mrOK then
begin
ReplaysForm.WatchButton.Visible := True;
ReplaysForm.HostReplayButton.Visible := False;
Exit;
end;
replay := ReplaysForm.GetReplayFromNode(ReplaysForm.VDTReplays.FocusedNode);
end;
if Utility.MapList.IndexOf(replay.Script.ReadKeyValue('GAME/mapname')) = -1 then
begin
MessageDlg(_('You don''t have the map: ') + replay.Script.ReadKeyValue('GAME/mapname'), mtWarning, [mbOK], 0);
ReplaysForm.WatchButton.Visible := True;
ReplaysForm.HostReplayButton.Visible := False;
Exit;
end;
if (ModArchiveList.IndexOf(replay.Script.ReadKeyValue('GAME/gametype')) = -1) and (ModList.IndexOf(replay.Script.ReadKeyValue('GAME/gametype')) = -1) then
begin
MessageDlg(_('You don''t have the mod: ') + replay.Script.ReadKeyValue('GAME/gametype'), mtWarning, [mbOK], 0);
ReplaysForm.WatchButton.Visible := True;
ReplaysForm.HostReplayButton.Visible := False;
Exit;
end
else
if ModArchiveList.IndexOf(replay.Script.ReadKeyValue('GAME/gametype')) = -1 then
ModsComboBox.ItemIndex := ModList.IndexOf(replay.Script.ReadKeyValue('GAME/gametype'))
else
ModsComboBox.ItemIndex := ModArchiveList.IndexOf(replay.Script.ReadKeyValue('GAME/gametype'));
// success:
ReplaysForm.WatchButton.Visible := True;
ReplaysForm.HostReplayButton.Visible := False;
ModsComboBox.Enabled := False;
RankComboBox.Enabled := False;
RankComboBox.ItemIndex := 0;
BattleReplayInfo.Replay := ReplaysForm.GetReplayFromNode(ReplaysForm.VDTReplays.FocusedNode);
BattleReplayInfo.Script := TScript.Create(BattleReplayInfo.Replay.Script);
(Sender as TSpTBXItem).Checked := True;
HostButton.Caption := _('Host replay');
checkBattleReadyToBeHosted;
end;
procedure THostBattleForm.NATRadioGroupClick(Sender: TObject);
begin
if NATRadioGroup.ItemIndex = 1 then PortEdit.Enabled := False
else PortEdit.Enabled := True;
end;
procedure THostBattleForm.RefreshModListButtonClick(Sender: TObject);
var
s: string;
sl: TStringList;
begin
Utility.ReInitLibWithDialog;
if mnuHost.Checked then
begin
s := HostBattleForm.ModsComboBox.Text;
sl := TStringList.Create;
sl.Assign(Utility.ModList);
sl.Sort;
HostBattleForm.ModsComboBox.Items.Assign(sl);
HostBattleForm.ModsComboBox.ItemIndex := Max(0, HostBattleForm.ModsComboBox.Items.IndexOf(s));
end;
MainForm.PrintUnitsyncErrors;
end;
procedure THostBattleForm.HostButtonClick(Sender: TObject);
var
res: Integer;
begin
{ we don't really need to acquire port now, since we will do
it when starting the game, but we do it here nevertheless,
since this way we can find out if "hole punching" is going
to work for us at all (better to find that now then later
when already starting the game). }
if ModsComboBox.ItemIndex = -1 then
begin
MessageDlg(_('You must select a mod fist !'), mtWarning, [mbOK], 0);
Exit;
end;
if BattleForm.IsBattleActive then
begin
if MessageDlg(_('You are already in a battle, do you want to leave it ?'),mtInformation,[mbYes, mbNo],0) = mrYes then
BattleForm.DisconnectButtonClick(nil)
else
Exit;
end;
if NATRadioGroup.ItemIndex = 1 then // "hole punching" method
begin
// let's acquire our public UDP source port from the server:
InitWaitForm.ChangeCaption(MSG_GETHOSTPORT);
InitWaitForm.TakeAction := 2; // get host port
res := InitWaitForm.ShowModal;
if res <> mrOK then
begin
MessageDlg(_('Unable to acquire UDP source port from server. Try choosing another NAT traversal technique!'), mtWarning, [mbOK], 0);
Exit;
end;
end;
BattleState.RelayChat := RelayChatCheckBox.Checked;
if mnuHost.Checked then
TryToHostBattle
else
TryToHostReplay;
Close;
end;
procedure THostBattleForm.RankComboBoxDrawItem(Sender: TObject;
ACanvas: TCanvas; var ARect: TRect; Index: Integer;
const State: TOwnerDrawState; const PaintStage: TSpTBXPaintStage;
var PaintDefault: Boolean);
begin
PaintDefault := False;
if SkinManager.GetSkinType = sknSkin then
if State = [odHotLight] then
begin
SkinManager.CurrentSkin.PaintBackground(Canvas,ARect,skncListItem,sknsHotTrack,True,True);
ACanvas.Font.Color := SkinManager.CurrentSkin.GetTextColor(skncListItem,sknsHotTrack);
end
else
begin
SkinManager.CurrentSkin.PaintBackground(Canvas,ARect,skncListItem,sknsNormal,True,True);
ACanvas.Font.Color := SkinManager.CurrentSkin.GetTextColor(skncListItem,sknsNormal);
end
else
(Sender as TSpTBXComboBox).Canvas.FillRect(ARect);
ACanvas.Brush.Style := bsClear;
if Index <> 0 then MainForm.RanksImageList.Draw(ACanvas, ARect.Left, ARect.Top, Index);
if Index <> 0 then ACanvas.TextOut(ARect.Left + MainForm.RanksImageList.Width + 3, ARect.Top, (Sender as TSpTBxComboBox).Items[Index])
else ACanvas.TextOut(ARect.Left + 3, ARect.Top, (Sender as TSpTBXComboBox).Items[Index]);
end;
procedure THostBattleForm.btRefreshRelayManagersListClick(Sender: TObject);
begin
if MainForm.GetClient(RELAYHOST_MANAGER_NAME) = nil then
begin
MessageDlg(_('RelayHostManager offline, you can''t relay host until it gets back online'),mtError,[mbOk],0)
end
else
begin
btRefreshRelayManagersList.Enabled := False;
cmbRelayList.Enabled := False;
cmbRelayList.Clear;
relayHostManagerList.Clear;
// display a refresh msg
cmbRelayList.Items.Add('');
cmbRelayList.ItemIndex := 0;
checkBattleReadyToBeHosted;
MainForm.TryToSendCommand('SAYPRIVATE',RELAYHOST_MANAGER_NAME+' !listmanagers');
end;
end;
procedure THostBattleForm.checkBattleReadyToBeHosted;
begin
HostButton.Enabled := mnuHostReplay.Checked or not RelayHostCheckBox.Checked or (relayHostManagerList.Count > 0);
end;
procedure THostBattleForm.RelayHostCheckBoxClick(Sender: TObject);
begin
checkBattleReadyToBeHosted;
end;
procedure THostBattleForm.cmbRelayListDrawItem(Sender: TObject;
ACanvas: TCanvas; var ARect: TRect; Index: Integer;
const State: TOwnerDrawState; const PaintStage: TSpTBXPaintStage;
var PaintDefault: Boolean);
var
selectedManager: TClient;
FlagBitmap: TBitmap;
msg: WideString;
begin
PaintDefault := False;
if SkinManager.GetSkinType = sknSkin then
if State = [odHotLight] then
begin
SkinManager.CurrentSkin.PaintBackground(Canvas,ARect,skncListItem,sknsHotTrack,True,True);
ACanvas.Font.Color := SkinManager.CurrentSkin.GetTextColor(skncListItem,sknsHotTrack);
end
else
begin
SkinManager.CurrentSkin.PaintBackground(Canvas,ARect,skncListItem,sknsNormal,True,True);
ACanvas.Font.Color := SkinManager.CurrentSkin.GetTextColor(skncListItem,sknsNormal);
end
else
(Sender as TSpTBXComboBox).Canvas.FillRect(ARect);
ACanvas.Brush.Style := bsClear;
if relayHostManagerList.Count = 0 then
begin
if btRefreshRelayManagersList.Enabled then
msg := _('No relay host is available, please try again later.')
else
msg := _('Refreshing ...');
DrawTextW(ACanvas.Handle, PWideChar(msg), Length(msg), ARect, DT_TOP or DT_LEFT or DT_VCENTER or DT_SINGLELINE);
end
else
begin
selectedManager := TClient(relayHostManagerList[Index]);
FlagBitmap := MainForm.GetFlagBitmap(selectedManager.Country);
ACanvas.Draw(ARect.Left,ARect.Top,FlagBitmap);
ACanvas.TextOut(ARect.Left + FlagBitmap.Width + 5, ARect.Top, selectedManager.Name);
end;
end;
procedure THostBattleForm.DownloadModButtonClick(Sender: TObject);
begin
RapidDownloaderForm.ShowModal;
end;
end.