-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLobbyScriptUnit.pas
4136 lines (3684 loc) · 139 KB
/
LobbyScriptUnit.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
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
unit LobbyScriptUnit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls,
Dialogs,Misc,ExtCtrls, WrapDelphi, WrapDelphiClasses,PythonEngine,
PythonGUIInputOutput, StrUtils, JclDebug,TntWideStrings,
OverbyteIcsWSocket,MainUnit, class_TIntegerList, RichEdit2, ExRichEdit,
SyncObjs,SpTBXItem, TB2Item, JvDesktopAlert, GR32,
SpTBXControls, SpTBXTabs,Forms, ComCtrls, pngimage,
Jpeg, Math, Dockpanel, RichEdit, SpTBXSkins,ActiveX,JclUnicode,
ColorsPreferenceUnit;
type
TScriptForm = class(TForm)
procedure CreateParams(var Params: TCreateParams); override;
private
{ Private declarations }
public
{ Public declarations }
end;
TScriptSimpleCallback = record
func: PPyObject;
args: PPyObject;
end;
PScriptSimpleCallback = ^TScriptSimpleCallback;
TScriptDownloadCallback = record
func: PPyObject;
args: PPyObject;
form: TForm;
end;
PScriptDownloadCallback = ^TScriptDownloadCallback;
TScriptMenuItemCallBack = record
func: PPyObject;
menu: TTBCustomItem;
args: PPyObject;
end;
PScriptMenuItemCallBack = ^TScriptMenuItemCallBack;
TScriptMenuItem = record
id : integer;
item: TTBCustomItem;
end;
PScriptMenuItem = ^TScriptMenuItem;
TScriptEventHandler = class(TObject)
protected
Ffunc: PPyObject;
public
constructor Create(func: PPyObject);
function wrapEvent(args: PPyObject): Variant;
end;
TScriptEventHandlerDefault = class(TScriptEventHandler)
published
procedure eventHandler(Sender: TObject);
end;
TScriptEventHandlerTMouseEvent = class(TScriptEventHandler)
published
procedure eventHandler(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
end;
TScriptEventHandlerTMouseMoveEvent = class(TScriptEventHandler)
published
procedure eventHandler(Sender: TObject; Shift: TShiftState; X, Y: Integer);
end;
TScriptEventHandlerTKeyEvent = class(TScriptEventHandler)
published
procedure eventHandler(Sender: TObject; var Key: Word; Shift: TShiftState);
end;
TScriptEventHandlerTKeyPressEvent = class(TScriptEventHandler)
published
procedure eventHandler(Sender: TObject; var Key: Word);
end;
TScriptEventHandlerTWebBrowserBeforeNavigate2 = class(TScriptEventHandler)
published
procedure eventHandler(Sender: TObject; const pDisp: IDispatch; var URL, Flags, TargetFrameName, PostData, Headers: OleVariant; var Cancel: WordBool);
end;
{$METHODINFO ON}
TGUIUpdateCallback = record
func: PPyObject;
args: PPyObject;
end;
PGUIUpdateCallback = ^TGUIUpdateCallback;
TGUI = class(TPersistent)
protected
menuIdInc : integer;
MenuItemList: TList;
textBoxStringList: TStringList;
textBoxList: TList;
ddMenuList: TList;
ddButtonList: TList;
ddControlList: TList;
pyProperties: PPyObject;
pyTextBoxes: PPyObject;
pyColors: PPyObject;
FStackLayoutChanges: boolean;
function GetMenu(name: string): TTBCustomItem;
procedure AddSelectionArgs(m: PScriptMenuItemCallBack);
procedure MenuItemClick(Sender: TObject);
function GetFreeMenuId: integer;
procedure SimpleCallbackEvent(Sender: TObject);
procedure LockGUI;
procedure UnlockGUI;
procedure RefreshRichEditLists;
procedure ClearRefs;
procedure onDropDownButtonClick(Sender: TObject);
procedure Print(data : string);
procedure EventHandler(Sender: TObject);
public
constructor Create;
function AddItemToMenu(menu: string;compName: string; callbackArgs: Variant; callbackModuleName: string; callbackFunctionName: string;itemCaption: string): Integer;
function AddItemToMenu2(callbackArgs: Variant; callbackFunction: Variant;menu: string;compName: string; itemCaption: string): Integer;
function AddSubmenuToMenu(menu: string;compName: string; itemCaption: string): Integer;
function AddSeparatorToMenu(menu: string;compName: string): Integer;
procedure SetMenuItemState(id: integer; c: boolean; e: boolean);
procedure RemoveFromMenu(id: integer);
procedure DisplaySimpleNotification(title: string; msg: string; displayTime: integer);
procedure DisplayNotification(title: string; msg: string; callbackArgs: Variant; callbackModuleName: string; callbackFunctionName: string; displayTime: integer);
procedure DisplayNotification2(callbackArgs: Variant; callbackFunction: Variant;title: string; msg: string; displayTime: integer);
function GetControlProperties(component: string; prop: string): Variant;
function SetControlProperties(component: string; prop : string; propertiesV : Variant): boolean;
function AddTab(caption: string;name: string;tabsPanel : string):boolean;
function AddForm(name: string;caption: string; style: integer; dockableForm: boolean=false):boolean;
function AddControl(name: string;parent: string; className: string):boolean;
function AddToRichEdit(richedit : string; msg : string; color : integer): boolean;
procedure AddEvent(component: string; event: string;moduleName: string; functionName: string);
procedure AddEvent2(component: string; event: string;callbackFunction: Variant);
function ExecMethod(component: string;methodName: string; parameters: Variant): integer;
function GetRichEditList: Variant;
function GetColors: Variant;
function AddDropDownButton(caption: string; buttonName: string;menuName: string; parent: string): boolean;
procedure DeleteControl(name: string);
procedure StackLayoutChanges(b: boolean);
procedure AddOrReplaceIconList(iconListName: string; icons: Variant);
procedure SetPlayerIconId(playerName: string; iconTypeName: string; iconId: integer);
procedure SetBattleVisible(battleId: integer; bVisible: integer);
procedure SetUserDisplayName(userId: integer; displayName: string);
procedure ManualDock(component: string; dockDest: string);
procedure SynchronizedUpdate(callbackModuleName: string; callbackFunctionName: string;callbackArgs: Variant);
procedure SynchronizedUpdate2(callbackFunction: Variant;callbackArgs: Variant);
end;
TCallback = class(TPersistent)
private
userRefCountList: TIntegerList;
pyUserList: TList;
pyBattleList: TList;
pyGroupList: TList;
pyMods: PPyObject;
pyMaps: PPyObject;
pyUsers: PPyObject;
pyBattles: PPyObject;
pyReplays: PPyObject;
pyGroups: PPyObject;
pyCurrentBattle: PPyObject;
pyServers: PPyObject;
CS: TCriticalSection;
tstate: PPyThreadState;
protected
function GetPyBattle(Battle: TBattle): PPyObject;
function GetPyReplay(Replay: TReplay): PPyObject;
function GetPyReplayPlayer(ReplayPlayer: TReplayPlayer): PPyObject;
function GetPyUser(user: TClient): PPyObject;
function GetPyGroup(group: TClientGroup): PPyObject;
procedure RefreshPythonLists;
procedure LockCallback;
procedure UnlockCallback;
public
procedure ClearRefs;
// tasclient special functions
procedure ShowDebugWindow;
procedure Print(data : string);
function GetVersion:String;
function GetSettings: Variant;
function SetSettings(newSettings: Variant): Boolean;
// official api
procedure ExitLobby;
procedure SocketConnect(adress: string; port: integer);
procedure PerformConnected;
procedure PerformDisconnected;
procedure Disconnect;
procedure LoadScripts;
procedure ReloadScripts;
procedure ReloadScript(name: WideString);
procedure SendProtocol(data: WideString);
procedure HandleProtocol(data: WideString);
procedure ProcessCommand(command: WideString; fromBattleScreen: Boolean);
function GetUsers: Variant;
function GetMyUser: Variant;
function GetBattles: Variant;
function GetReplays: Variant;
function GetGroups: Variant;
procedure SetGroups(gV : Variant);
function GetMaps: Variant;
function GetMods: Variant;
function HostBattle(nbPlayers: integer; RankLimit: Integer; ModName: string; Description: string; Password: string; UDPHostPort: integer; NatTraversal: integer) : Boolean;
function HostReplay(replayFile: string; nbPlayers: integer; RankLimit: Integer; Description: string; Password: string; UDPHostPort: integer; NatTraversal: integer) : Boolean;
function JoinBattle(battleId: integer; Password: String; spectator: Boolean) : Boolean;
procedure LeaveBattle;
function StartBattle: Boolean;
function SetMyReadyStatus(b: Boolean): Boolean;
procedure SetMyBattleStatus(spec: boolean);
function GetCurrentBattle: Variant;
function GetServers: Variant;
procedure SetServers(sV : Variant);
function ChangeMap(mapName: string): Boolean;
function GetSpringExe: String;
// spring downloader api
procedure DownloadMap(mapName: string; callbackArgs: Variant; callbackModuleName: string; callbackFunctionName: string);
procedure DownloadMap2(mapName: string; callbackArgs: Variant; callbackFunction: Variant);
procedure DownloadMod(modName: string; callbackArgs: Variant; callbackModuleName: string; callbackFunctionName: string);
procedure DownloadMod2(modName: string; callbackArgs: Variant; callbackFunction: Variant);
procedure DownloadRapid(rapidName: string; callbackArgs: Variant; callbackModuleName: string; callbackFunctionName: string);
procedure DownloadRapid2(rapidName: string; callbackArgs: Variant; callbackFunction: Variant);
procedure DownloadEngine(engineName: string; engineVersion: string; callbackArgs: Variant; callbackModuleName: string; callbackFunctionName: string);
procedure DownloadEngine2(engineName: string; engineVersion: string; callbackArgs: Variant; callbackFunction: Variant);
procedure ListRapidTags(callbackArgs: Variant; callbackModuleName: string; callbackFunctionName: string);
procedure ListRapidTags2(callbackArgs: Variant; callbackFunction: Variant);
// widget db api
procedure RefreshWidgetList;
function GetWidgets: Variant;
function InstallOrUpdateWidget(id: integer): boolean;
function UninstallWidget(id: integer): boolean;
// Must not be called from python
procedure DownloadCallbackEvent(snc: PScriptDownloadCallback;progress: integer);
constructor Create;
destructor Destroy;
end;
TFileDownloadInfo = record
name: string;
engineName: string;
engineVersion: string;
params: PScriptDownloadCallback;
cb: TCallBack;
end;
PFileDownloadInfo = ^TFileDownloadInfo;
{$METHODINFO OFF}
TPyCallback = class(TPyDelphiPersistent)
// Constructors & Destructors
constructor Create( APythonType : TPythonType ); override;
constructor CreateWith( PythonType : TPythonType; args : PPyObject ); override;
// Basic services
function Repr : PPyObject; override;
class function DelphiObjectClass : TClass; override;
end;
TPyGUI = class(TPyDelphiPersistent)
// Constructors & Destructors
constructor Create( APythonType : TPythonType ); override;
constructor CreateWith( PythonType : TPythonType; args : PPyObject ); override;
// Basic services
function Repr : PPyObject; override;
class function DelphiObjectClass : TClass; override;
end;
TScriptThread = class(TPythonThread)
private
functionName: string;
tuple: TStrings;
protected
procedure ExecuteWithPython; override;
public
constructor Create(fName: string; tup: Variant);
end;
function AcquireMainThread:boolean;
function ReleaseMainThread: Boolean;
procedure PyDict_SetItemStringDecRef(dp: PPyObject; Key: PAnsiChar; const V : Variant);
function PyListFromStrings(sl: TStrings):PPyObject;
function PyListFromWideStrings(sl: TWideStrings):PPyObject;
procedure PyDict_SetItemDecRef(dp: PPyObject; Key: PPyObject; const V : Variant);
procedure PyList_AppendDecRef(list: PPyObject; const item : Variant);
procedure PyDict_SetItemStringIncRef(dp: PPyObject; Key: PAnsiChar; o : PPyObject);
procedure PyDict_SetItemIncRef(dp: PPyObject; Key: PPyObject; o : PPyObject);
function PyDict_GetVariantItemString(dict: PPyObject; key: PAnsiChar; defaultValue: Variant): Variant;
procedure SafeDecRef(var o : PPyObject);
procedure PostMsgs;
procedure HostBattle;
procedure JoinBattle;
procedure ChangeMap;
procedure StartDownloads;
function GetComponentFromString(component: string): TComponent;
function GetStringFromComponent(component : TComponent): string;
procedure DebugPrint(s: string);
procedure GUISynchronizedUpdate(ucb: PGUIUpdateCallback);
procedure ExecuteNextWidgetAction;
var
MainThreadState: PPyThreadState;
MainInterpreterState: PPyInterpreterState;
ScriptHostingRunning: Boolean;
ScriptHostingReplayRunning: Boolean;
ScriptJoining: Boolean;
ScriptStart: Boolean;
StartBattleSuccess: Boolean;
MsgList: TStringList;
MsgColor: TIntegerList;
RichEditList: TList;
MainThreadFocused: Boolean;
JoinBattleId: integer;
JoinBattlePassword: string;
JoinBattleSpectator: Boolean;
NotificationTempList: TList;
ScriptsInitialized: Boolean = False;
ChangeMapIndex: integer;
MapDownloadList: TList;
ModDownloadList: TList;
RapidDownloadList: TList;
EngineDownloadList: TList;
InstallWidgetIds: TIntegerList;
UninstallWidgetIds: TIntegerList;
RefreshWidgetListAction: Boolean;
GUICS: TCriticalSection;
PlayerIconTypeNames: TStringList;
PlayerIconTypeIcons: TList;
PlayerIconTypeIconsNames: TList;
implementation
uses PythonScriptDebugFormUnit, Utility, MapListFormUnit, HostBattleFormUnit,
BattleFormUnit, ReplaysUnit, PreferencesFormUnit, CustomizeGUIFormUnit,
TypInfo, SpringDownloaderFormUnit, StdCtrls, SpringSettingsProfileFormUnit,
PerformFormUnit, HighlightingUnit, NotificationsUnit,WidgetDBFormUnit,
gnugettext;
//------------------------------------------------------------------------------------------------------
// TCallback
//------------------------------------------------------------------------------------------------------
constructor TCallback.Create;
begin
with GetPythonEngine do
begin
{pyGroups := Py_None;
pyBattles := Py_None;
pyUsers := Py_None;
pyMods := Py_None;
pyMaps := Py_None;
pyCurrentBattle := Py_None;
pyReplays := Py_None;
pyServers := Py_None;}
pyGroups := nil;
pyBattles := nil;
pyUsers := nil;
pyMods := nil;
pyMaps := nil;
pyCurrentBattle := nil;
pyReplays := nil;
pyServers := nil;
pyUserList := TList.Create;
pyBattleList := TList.Create;
pyGroupList := TList.Create;
userRefCountList := TIntegerList.Create;
CS := TCriticalSection.Create;
end;
end;
destructor TCallback.Destroy;
var
i,j: integer;
begin
with GetPythonEngine do
begin
for i:=0 to pyUserList.Count-1 do
for j:=1 to userRefCountList.Items[i] do
Py_XDECREF(pyUserList[i]);
for i:=0 to pyBattleList.Count-1 do
Py_XDECREF(pyBattleList[i]);
for i:=0 to pyGroupList.Count-1 do
Py_XDECREF(pyGroupList[i]);
pyUserList.Clear;
pyBattleList.Clear;
pyGroupList.Clear;
userRefCountList.Clear;
ClearRefs;
end;
inherited;
end;
procedure TCallback.ShowDebugWindow;
begin
PythonScriptDebugForm.Show;
end;
function TCallback.GetVersion:String;
begin
Result := VERSION_NUMBER+'.'+IntToStr(Misc.GetLobbyRevision);
end;
procedure TCallback.ExitLobby;
begin
try
MainForm.Close;
except
on E:Exception do
Print(E.Message);
end;
end;
procedure TCallback.Disconnect;
var
mtReleased: Boolean;
begin
mtReleased := ReleaseMainThread;
try
MainForm.TryToDisconnect;
except
on E:Exception do
Print(E.Message);
end;
if mtReleased then
AcquireMainThread;
end;
procedure TCallback.SocketConnect(adress: string; port: integer);
var
mtReleased: Boolean;
begin
mtReleased := ReleaseMainThread;
MainForm.TryToConnect(adress,IntToStr(port),true);
if mtReleased then
AcquireMainThread;
end;
procedure TCallback.PerformConnected;
var
mtReleased: Boolean;
begin
mtReleased := ReleaseMainThread;
MainForm.SocketSessionConnected(nil,0);
if mtReleased then
AcquireMainThread;
end;
procedure TCallback.PerformDisconnected;
var
mtReleased: Boolean;
begin
mtReleased := ReleaseMainThread;
MainForm.SocketChangeState(nil,wsConnected,wsClosed);
if mtReleased then
AcquireMainThread;
end;
procedure TCallback.LoadScripts;
begin
AcquireMainThread;
try handlers._load; except end;
ReleaseMainThread;
end;
procedure TCallback.ReloadScripts;
begin
AcquireMainThread;
try handlers._reloadall; except end;
ReleaseMainThread;
end;
procedure TCallback.ReloadScript(name: WideString);
begin
AcquireMainThread;
try if not Preferences.ScriptsDisabled then handlers._reload(name); except end;
ReleaseMainThread;
end;
procedure TCallback.SendProtocol(data: WideString);
var
mtReleased: Boolean;
i:integer;
begin
i := Pos(' ',data);
mtReleased := ReleaseMainThread;
try
MainForm.TryToSendCommand(LeftStr(data,i-1),MidStr(data,i+1,9999999));
except
on E:Exception do
Print(E.Message);
end;
if mtReleased then
AcquireMainThread;
end;
procedure TCallback.HandleProtocol(data: WideString);
var
mtReleased: Boolean;
begin
if Status.ConnectionState <> Connected then Exit;
mtReleased := ReleaseMainThread;
Status.TimeOfLastDataReceived := GetTickCount;
try
MainForm.ProcessRemoteCommand(data);
except
on E:Exception do
Print(E.Message);
end;
if mtReleased then
AcquireMainThread;
end;
procedure TCallback.ProcessCommand(command: WideString; fromBattleScreen: Boolean);
var
mtReleased: Boolean;
begin
mtReleased := ReleaseMainThread;
try
MainForm.ProcessCommand(command,fromBattleScreen);
except
on E:Exception do
Print(E.Message);
end;
if mtReleased then
AcquireMainThread;
end;
{procedure TCallback.NewThread(functionName: String;tuple: Variant);
begin
TScriptThread.Create(functionName, tuple);
end;}
procedure TCallback.Print(data : string);
begin
PythonScriptDebugFormUnit.printList.BeginUpdate;
PythonScriptDebugFormUnit.printList.Add(data);
PythonScriptDebugFormUnit.printList.EndUpdate;
PostMessage(PythonScriptDebugForm.Handle, WM_REFRESHOUTPUT, 0, 0);
end;
procedure TCallback.RefreshPythonLists;
var
i,j,k: integer;
battleClients: PPyObject;
groupUsers: PPyObject;
begin
with GetPythonEngine do
begin
// make the python user list
for i:=0 to AllClients.Count-1 do
begin
pyUserList.Add(GetPyUser(TClient(AllClients[i])));
userRefCountList.Add(1);
end;
// make the python battle list
for i:=0 to Battles.Count-1 do
pyBattleList.Add(GetPyBattle(TBattle(Battles[i])));
// make the python group list
for i:=0 to ClientGroups.Count-1 do
pyGroupList.Add(GetPyGroup(TClientGroup(ClientGroups[i])));
// add battle to users
for i:=0 to pyUserList.Count-1 do
with TClient(AllClients[i]) do
if InBattle then
begin
j := GetBattleId;
PyDict_SetItemString(PPyObject(pyUserList[i]),'Battle',PPyObject(pyBattleList[MainForm.GetBattleIndex(j)]));
end;
// add groups to users
for i:=0 to pyUserList.Count-1 do
with TClient(AllClients[i]) do
if GetGroup <> nil then
begin
j := ClientGroups.IndexOf(GetGroup);
PyDict_SetItemString(PPyObject(pyUserList[i]),'Group',PPyObject(pyGroupList[j]));
end;
// add users to battles
for i:=0 to pyBattleList.Count-1 do
with TBattle(Battles[i]) do
begin
battleClients := PyDict_New();
for j:= 0 to Clients.Count-1 do
begin
k := MainForm.GetClientIndexEx(TClient(Clients[j]).Name,AllClients);
PyDict_SetItemString(battleClients,PChar(WideCharToString(PWideChar(TClient(Clients[j]).Name))),PPyObject(pyUserList[k]));
userRefCountList.Items[k] := userRefCountList.Items[k]+1;
end;
PyDict_SetItemString(PPyObject(pyBattleList[i]),'Users',battleClients);
Py_XDECREF(battleClients);
k := MainForm.GetClientIndexEx(TClient(Clients[0]).Name,AllClients);
PyDict_SetItemString(PPyObject(pyBattleList[i]),'Hoster',PPyObject(pyUserList[k]));
userRefCountList.Items[k] := userRefCountList.Items[k]+1;
end;
// add users to groups
for i:=0 to ClientGroups.Count-1 do
with TClientGroup(ClientGroups[i]) do
begin
groupUsers := PyDict_New();
for j:= 0 to Clients.Count-1 do
begin
k := MainForm.GetClientIndexEx(Clients[j],AllClients);
if k = -1 then
PyDict_SetItemStringDecRef(groupUsers,Pchar(Clients[j]),'Not connected')
else
begin
PyDict_SetItemString(groupUsers,Pchar(Clients[j]),PPyObject(pyUserList[k]));
userRefCountList.Items[k] := userRefCountList.Items[k]+1;
end;
end;
PyDict_SetItemString(PPyObject(pyGroupList[i]),'Users',groupUsers);
Py_XDECREF(groupUsers);
end;
end;
end;
function TCallback.GetMyUser: Variant;
begin
Result := GetPythonEngine.PyObjectAsVariant(GetPyUser(Status.Me));
end;
function TCallback.GetUsers: Variant;
var
i: integer;
begin
LockCallback;
with GetPythonEngine do
begin
ClearRefs;
pyUsers := PyDict_New();
RefreshPythonLists;
for i:=0 to AllClients.Count-1 do
PyDict_SetItemString(pyUsers,PChar(String(TClient(AllClients[i]).Name)),PPyObject(pyUserList[i]));
Result := PyObjectAsVariant(pyUsers);
end;
UnlockCallback;
end;
function TCallback.GetCurrentBattle: Variant;
var
i,j: integer;
pyO: PPyObject;
pyO2: PPyObject;
pyO3: PPyObject;
pyO4: PPyObject;
begin
LockCallback;
with GetPythonEngine do
begin
if (BattleState.Status = None) or (not BattleState.JoiningComplete) then
begin
UnlockCallback;
Exit;
end;
ClearRefs;
pyCurrentBattle := PyDict_New();
RefreshPythonLists;
PyDict_SetItemString(pyCurrentBattle,'Battle',pyBattleList[MainForm.GetBattleIndex(BattleState.Battle.ID)]);
PyDict_SetItemStringDecRef(pyCurrentBattle,'GameEndCondition',BattleForm.GameEndRadioGroup.ItemIndex);
PyDict_SetItemStringDecRef(pyCurrentBattle,'StartPosMode',BattleForm.StartPosRadioGroup.ItemIndex);
PyDict_SetItemStringDecRef(pyCurrentBattle,'StartMetal',BattleForm.MetalTracker.Position);
PyDict_SetItemStringDecRef(pyCurrentBattle,'StartEnergy',BattleForm.EnergyTracker.Position);
PyDict_SetItemStringDecRef(pyCurrentBattle,'MaxUnits',BattleForm.UnitsTracker.Position);
pyO := StringsToPyList(BattleState.DisabledUnits);
PyDict_SetItemString(pyCurrentBattle,'DisabledUnits',pyO);
Py_XDECREF(pyO);
pyO := PyDict_New();
for i:=0 to Length(BattleState.StartRects)-1 do
begin
pyO2 := PyDict_New();
PyDict_SetItemStringDecRef(pyO2,'Enabled',BattleState.StartRects[i].Enabled);
PyDict_SetItemStringDecRef(pyO2,'Left',BattleState.StartRects[i].Rect.Left);
PyDict_SetItemStringDecRef(pyO2,'Right',BattleState.StartRects[i].Rect.Right);
PyDict_SetItemStringDecRef(pyO2,'Bottom',BattleState.StartRects[i].Rect.Bottom);
PyDict_SetItemStringDecRef(pyO2,'Top',BattleState.StartRects[i].Rect.Top);
PyDict_SetItem(pyO,PyInt_FromLong(i),pyO2);
Py_XDECREF(pyO2);
end;
PyDict_SetItemString(pyCurrentBattle,'Boxes',pyO);
Py_XDECREF(pyO);
pyO := PyDict_New();
for i:=0 to BattleForm.ModOptionsList.Count-1 do
begin
pyO2 := PyDict_New();
PyDict_SetItemStringDecRef(pyO2,'Name',TLuaOption(BattleForm.ModOptionsList[i]).Name);
PyDict_SetItemStringDecRef(pyO2,'Type',TLuaOption(BattleForm.ModOptionsList[i]).ClassName);
if TLuaOption(BattleForm.ModOptionsList[i]) is TLuaOptionList then
begin
pyO3 := PyDict_New();
for j:=0 to TLuaOptionList(BattleForm.ModOptionsList[i]).KeyList.Count-1 do
begin
pyO4 := PyDict_New();
PyDict_SetItemStringDecRef(pyO4,'Name',TLuaOptionList(BattleForm.ModOptionsList[i]).NameList[j]);
PyDict_SetItemStringDecRef(pyO4,'Description',TLuaOptionList(BattleForm.ModOptionsList[i]).DescriptionList[j]);
PyDict_SetItemString(pyO3,PChar(TLuaOptionList(BattleForm.ModOptionsList[i]).KeyList[j]),pyO4);
Py_XDECREF(pyO4);
end;
PyDict_SetItemString(pyO2,'Items',pyO3);
Py_XDECREF(pyO3);
end;
PyDict_SetItemStringDecRef(pyO2,'Value',TLuaOption(BattleForm.ModOptionsList[i]).Value);
PyDict_SetItemStringDecRef(pyO2,'DefaultValue',TLuaOption(BattleForm.ModOptionsList[i]).DefaultValue);
PyDict_SetItemStringDecRef(pyO2,'Description',TLuaOption(BattleForm.ModOptionsList[i]).Description);
PyDict_SetItemString(pyO,PChar(TLuaOption(BattleForm.ModOptionsList[i]).Key),pyO2);
Py_XDECREF(pyO2);
end;
PyDict_SetItemString(pyCurrentBattle,'ModOptions',pyO);
Py_XDECREF(pyO);
pyO := PyDict_New();
for i:=0 to BattleForm.MapOptionsList.Count-1 do
begin
pyO2 := PyDict_New();
PyDict_SetItemStringDecRef(pyO2,'Name',TLuaOption(BattleForm.MapOptionsList[i]).Name);
PyDict_SetItemStringDecRef(pyO2,'Type',TLuaOption(BattleForm.MapOptionsList[i]).ClassName);
if TLuaOption(BattleForm.MapOptionsList[i]) is TLuaOptionList then
begin
pyO3 := PyDict_New();
for j:=0 to TLuaOptionList(BattleForm.MapOptionsList[i]).KeyList.Count-1 do
begin
pyO4 := PyDict_New();
PyDict_SetItemStringDecRef(pyO4,'Name',TLuaOptionList(BattleForm.MapOptionsList[i]).NameList[j]);
PyDict_SetItemStringDecRef(pyO4,'Description',TLuaOptionList(BattleForm.MapOptionsList[i]).DescriptionList[j]);
PyDict_SetItemString(pyO3,PChar(TLuaOptionList(BattleForm.MapOptionsList[i]).KeyList[j]),pyO4);
Py_XDECREF(pyO4);
end;
PyDict_SetItemString(pyO2,'Items',pyO3);
Py_XDECREF(pyO3);
end;
PyDict_SetItemStringDecRef(pyO2,'Value',TLuaOption(BattleForm.MapOptionsList[i]).Value);
PyDict_SetItemStringDecRef(pyO2,'DefaultValue',TLuaOption(BattleForm.MapOptionsList[i]).DefaultValue);
PyDict_SetItemStringDecRef(pyO2,'Description',TLuaOption(BattleForm.MapOptionsList[i]).Description);
PyDict_SetItemString(pyO,PChar(TLuaOption(BattleForm.MapOptionsList[i]).Key),pyO2);
Py_XDECREF(pyO2);
end;
PyDict_SetItemString(pyCurrentBattle,'MapOptions',pyO);
Py_XDECREF(pyO);
Result := PyObjectAsVariant(pyCurrentBattle);
end;
UnlockCallback;
end;
function TCallback.GetPyUser(user: TClient): PPyObject;
var
pyNameHistory: PPyObject;
begin
with GetPythonEngine do
begin
with user do
begin
Result := PyDict_New();
PyDict_SetItemStringDecRef( Result, 'Id', Id );
PyDict_SetItemStringDecRef( Result, 'Name', Name );
PyDict_SetItemStringDecRef( Result, 'DisplayName', DisplayName );
PyDict_SetItemStringDecRef( Result, 'Status', Status );
PyDict_SetItemStringDecRef( Result, 'BattleStatus', BattleStatus );
PyDict_SetItemStringDecRef( Result, 'TeamColor', TeamColor );
PyDict_SetItemStringDecRef( Result, 'InBattle', InBattle );
PyDict_SetItemStringDecRef( Result, 'Country', MainForm.GetCountryName(Country) );
PyDict_SetItemStringDecRef( Result, 'CountryCode', Country );
PyDict_SetItemStringDecRef( Result, 'CPU', CPU );
PyDict_SetItemStringDecRef( Result, 'IP', IP );
PyDict_SetItemStringDecRef( Result, 'PublicPort', PublicPort );
PyDict_SetItemStringDecRef( Result, 'Rank', GetRank );
PyDict_SetItemStringDecRef( Result, 'BattleId', GetBattleId );
PyDict_SetItemStringDecRef( Result, 'TeamNo', GetTeamNo );
PyDict_SetItemStringDecRef( Result, 'AllyNo', GetAllyNo );
PyDict_SetItemStringDecRef( Result, 'Mode', GetMode );
PyDict_SetItemStringDecRef( Result, 'Sync', GetSync );
PyDict_SetItemStringDecRef( Result, 'Handicap', GetHandicap );
PyDict_SetItemStringDecRef( Result, 'ReadyStatus', GetReadyStatus );
PyDict_SetItemStringDecRef( Result, 'Side', GetSide );
PyDict_SetItemStringDecRef( Result, 'InGameStatus', GetInGameStatus );
PyDict_SetItemStringDecRef( Result, 'AwayStatus', GetAwayStatus );
PyDict_SetItemStringDecRef( Result, 'Ignored', isIgnored );
PyDict_SetItemStringDecRef( Result, 'Renamed', isRenamed );
pyNameHistory := PyListFromWideStrings(NameHistory);
PyDict_SetItemString( Result, 'NameHistory', pyNameHistory);
Py_XDECREF(pyNameHistory);
end;
end;
end;
function TCallback.GetPyBattle(Battle: TBattle): PPyObject;
begin
with GetPythonEngine do
begin
with Battle do
begin
Result := PyDict_New();
PyDict_SetItemStringDecRef( Result, 'Id', ID );
PyDict_SetItemStringDecRef( Result, 'BattleType', BattleType );
PyDict_SetItemStringDecRef( Result, 'NATType', NATType );
PyDict_SetItemStringDecRef( Result, 'RankLimit', RankLimit );
PyDict_SetItemStringDecRef( Result, 'Visible', Visible );
PyDict_SetItemStringDecRef( Result, 'Description', Description );
PyDict_SetItemStringDecRef( Result, 'Map', Map );
PyDict_SetItemStringDecRef( Result, 'MapHash', MapHash );
PyDict_SetItemStringDecRef( Result, 'SpectatorCount', SpectatorCount );
PyDict_SetItemStringDecRef( Result, 'Password', Password );
PyDict_SetItemStringDecRef( Result, 'IP', IP );
PyDict_SetItemStringDecRef( Result, 'Port', Port );
PyDict_SetItemStringDecRef( Result, 'MaxPlayers', MaxPlayers );
PyDict_SetItemStringDecRef( Result, 'ModName', ModName );
PyDict_SetItemStringDecRef( Result, 'HashCode', HashCode );
PyDict_SetItemStringDecRef( Result, 'Locked', Locked );
PyDict_SetItemStringDecRef( Result, 'ScriptVisible', ForcedHidden );
end;
end;
end;
function TCallback.GetPyReplay(Replay: TReplay): PPyObject;
var
scriptPlayer: PPyObject;
luaoptions: PPyObject;
sl: TStrings;
i: integer;
pyO: PPyObject;
begin
Result := nil;
with GetPythonEngine do
begin
if not Replay.Script.isCorrupted then
begin
with Replay do
begin
Result := PyDict_New();
PyDict_SetItemStringDecRef( Result, 'FileName', FileName );
PyDict_SetItemStringDecRef( Result, 'Grade', Grade );
PyDict_SetItemStringDecRef( Result, 'Version', Version );
PyDict_SetItemStringDecRef( Result, 'SpringVersion', SpringVersion );
PyDict_SetItemStringDecRef( Result, 'FullFileName', FullFileName );
PyDict_SetItemStringDecRef( Result, 'Date', Date );
if Version > 0 then
begin
PyDict_SetItemStringDecRef( Result, 'GameLength', demoHeader.gameTime );
PyDict_SetItemStringDecRef( Result, 'WallclockLength', demoHeader.wallclockTime );
PyDict_SetItemStringDecRef( Result, 'UnixTime', demoHeader.unixTime );
PyDict_SetItemStringDecRef( Result, 'MaxPlayers', demoHeader.maxPlayerNum );
PyDict_SetItemStringDecRef( Result, 'WinningTeam', demoHeader.winningAllyTeam );
end;
PyDict_SetItemStringDecRef( Result, 'MapName', Script.ReadMapName );
PyDict_SetItemStringDecRef( Result, 'ModName', Script.ReadModName );
PyDict_SetItemStringDecRef( Result, 'StartPosType', Script.ReadStartPosType );
{PyDict_SetItemStringDecRef( Result, 'GameMode', Script.ReadGameMode );
PyDict_SetItemStringDecRef( Result, 'StartMetal', Script.ReadStartMetal );
PyDict_SetItemStringDecRef( Result, 'StartEnergy', Script.ReadStartEnergy );
PyDict_SetItemStringDecRef( Result, 'MaxUnits', Script.ReadMaxUnits );
PyDict_SetItemStringDecRef( Result, 'LimitDGun', Script.ReadLimitDGun );
PyDict_SetItemStringDecRef( Result, 'DiminishingMMs', Script.ReadDiminishingMMs );
PyDict_SetItemStringDecRef( Result, 'GhostedBuildings', Script.ReadGhostedBuildings ); }
scriptPlayer := PyDict_New();
for i:=0 to PlayerList.Count-1 do
begin
pyO := GetPyReplayPlayer(TReplayPlayer(PlayerList[i]^));
PyDict_SetItemString(scriptPlayer, PChar(TReplayPlayer(PlayerList[i]^).UserName), pyO);
Py_XDECREF(pyO);
end;
PyDict_SetItemString( Result, 'Users', scriptPlayer);
Py_XDECREF(scriptPlayer);
luaoptions := PyDict_New();
sl := Replay.Script.GetSubKeys('GAME/MODOPTIONS');
for i:=0 to sl.Count-1 do
begin
PyDict_SetItemStringDecRef( luaoptions, PChar(sl[i]), Replay.Script.ReadKeyValue('GAME/MODOPTIONS/'+sl[i]) );
end;
PyDict_SetItemString( Result, 'ModOptions', luaoptions);
Py_XDECREF(luaoptions);
luaoptions := PyDict_New();
sl := Replay.Script.GetSubKeys('GAME/MAPOPTIONS');
for i:=0 to sl.Count-1 do
begin
PyDict_SetItemStringDecRef( luaoptions, PChar(sl[i]), Replay.Script.ReadKeyValue('GAME/MAPOPTIONS/'+sl[i]) );
end;
PyDict_SetItemString( Result, 'MapOptions', luaoptions);
Py_XDECREF(luaoptions);
end;
end;
end;
end;
function TCallback.GetPyReplayPlayer(ReplayPlayer: TReplayPlayer): PPyObject;
begin
with GetPythonEngine do
begin
with ReplayPlayer do
begin
Result := PyDict_New();
PyDict_SetItemStringDecRef( Result, 'UserName', UserName );
PyDict_SetItemStringDecRef( Result, 'Rank', Rank );
PyDict_SetItemStringDecRef( Result, 'CountryCode', CountryCode );
PyDict_SetItemStringDecRef( Result, 'Id', Id );
PyDict_SetItemStringDecRef( Result, 'Team', Team );
PyDict_SetItemStringDecRef( Result, 'Color', Color );
PyDict_SetItemStringDecRef( Result, 'Spectator', Spectator );
// stats
PyDict_SetItemStringDecRef( Result, 'MousePixels', Stats.mousePixels );
PyDict_SetItemStringDecRef( Result, 'MouseClicks', Stats.mouseClicks );
PyDict_SetItemStringDecRef( Result, 'KeyPresses', Stats.keyPresses );
PyDict_SetItemStringDecRef( Result, 'NumCommands', Stats.numCommands );
PyDict_SetItemStringDecRef( Result, 'UnitCommands', Stats.unitCommands );
end;
end;
end;
function TCallback.GetPyGroup(group: TClientGroup): PPyObject;
begin
with GetPythonEngine do
begin
with group do
begin
Result := PyDict_New();
PyDict_SetItemStringDecRef( Result, 'Name', Name );
PyDict_SetItemStringDecRef( Result, 'EnableColor', EnableColor );
PyDict_SetItemStringDecRef( Result, 'Color', Color );
PyDict_SetItemStringDecRef( Result, 'AutoKick', AutoKick );
PyDict_SetItemStringDecRef( Result, 'AutoSpec', AutoSpec );
PyDict_SetItemStringDecRef( Result, 'NotifyOnHost', NotifyOnHost );
PyDict_SetItemStringDecRef( Result, 'NotifyOnJoin', NotifyOnJoin );
PyDict_SetItemStringDecRef( Result, 'NotifyOnBattleEnd', NotifyOnBattleEnd );
PyDict_SetItemStringDecRef( Result, 'NotifyOnConnect', NotifyOnConnect );
PyDict_SetItemStringDecRef( Result, 'HighlightBattles', HighlightBattles );
PyDict_SetItemStringDecRef( Result, 'ChatColor', ChatColor );
PyDict_SetItemStringDecRef( Result, 'ReplaceRank', ReplaceRank );
PyDict_SetItemStringDecRef( Result, 'Rank', Rank );
PyDict_SetItemStringDecRef( Result, 'BalanceInSameTeam', BalanceInSameTeam );
PyDict_SetItemStringDecRef( Result, 'Ignore', Ignore );
PyDict_SetItemStringDecRef( Result, 'ExecuteSpecialCommands', ExecuteSpecialCommands );
end;
end;
end;
function TCallback.GetReplays: Variant;
var
i: integer;
pyO: PPyObject;
begin
if ReplaysForm.LoadingPanel.Visible then Exit;
LockCallback;
with GetPythonEngine do
begin
ClearRefs;
pyReplays := PyDict_New();