-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMain.cpp
More file actions
1050 lines (861 loc) · 29.9 KB
/
Copy pathMain.cpp
File metadata and controls
1050 lines (861 loc) · 29.9 KB
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
#include "main.h"
LRESULT Wndproc(
HWND hwnd, // handle to window
UINT uMsg, // message identifier
WPARAM wParam, // first message parameter
LPARAM lParam);
BOOL CALLBACK OptionsDialogProc(HWND hwndDlg, UINT message, WPARAM wParam, LPARAM lParam);
BOOL CALLBACK ConnectByIPDialogProc(HWND hwndDlg, UINT message, WPARAM wParam, LPARAM lParam);
HWND DoCreateStatusBar(HWND hwndParent, int idStatus, HINSTANCE
hinst, int cParts);
void ResizeRefreshButton();
extern "C" {
HWND hMainWindow;
}
HWND hRefeshButton;
HWND hwndListView;
HWND hOptionsDialog;
HWND hwndStatus;
HWND hIPLabel;
HINSTANCE g_hInst;
extern bool g_debugMode;
HICON hMainIcon = NULL;
#define ITEM_COUNT 100000
const char CLASS_NAME[] = "SAMPLauncherMain";
WNDCLASS mainWindowClass = { };
enum Controls {
RefreshButtonCtrl = 1,
ListViewCtrl
};
BOOL InitApplication(HINSTANCE hInstance)
{
hMainIcon = LoadIcon(g_hInst, MAKEINTRESOURCE(IDM_MAIN_ICON));
WNDCLASSEX wcex;
ATOM aReturn;
ZeroMemory(&wcex, sizeof(wcex));
wcex.cbSize = sizeof(WNDCLASSEX);
wcex.style = 0;
wcex.lpfnWndProc = (WNDPROC)Wndproc;
wcex.cbClsExtra = 0;
wcex.cbWndExtra = 0;
wcex.hInstance = hInstance;
wcex.hCursor = LoadCursor(NULL, IDC_ARROW);
wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
wcex.lpszMenuName = MAKEINTRESOURCE(IDM_MAIN_MENU);
wcex.lpszClassName = CLASS_NAME;
wcex.hIcon = hMainIcon;
wcex.hIconSm = (HICON)LoadImage(hInstance, MAKEINTRESOURCE(IDM_MAIN_ICON), IMAGE_ICON, 16, 16, 0);
RegisterClassEx(&wcex);
return TRUE;
}
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
PSTR lpCmdLine, int nCmdShow)
{
g_hInst = hInstance;
InitApplication(hInstance);
INITCOMMONCONTROLSEX icex; // Structure for control initialization.
icex.dwICC = ICC_LISTVIEW_CLASSES;
InitCommonControlsEx(&icex);
hMainWindow = CreateWindowEx(
0, // Optional window styles.
CLASS_NAME, // Window class
"SA:MP Launcher", // Window text
WS_OVERLAPPEDWINDOW, // Window style
// Size and position
CW_USEDEFAULT, CW_USEDEFAULT, 990, 710,
NULL, // Parent window
NULL, // Menu
hInstance, // Instance handle
NULL // Additional application data
);
HWND button = CreateWindow("BUTTON",
TEXT("Refresh"), // dummy text
WS_VISIBLE | WS_CHILD, // style
0, // x position
0, // y position
0, // width
0, // height
hMainWindow, // parent
(HMENU)ID_REFRESH, // ID
hInstance, // instance
NULL); // no extra data
HWND filterGroup = CreateWindow("BUTTON", TEXT("Filter"), WS_CHILD | WS_VISIBLE | BS_GROUPBOX | BS_NOTIFY, 0, 0, 0, 0, hMainWindow, (HMENU)ID_FILTER_GROUPBOX, hInstance, NULL);
CreateWindow(
"BUTTON", // Predefined class; Unicode assumed
"Not Full", // Button text
WS_TABSTOP | WS_VISIBLE | WS_CHILD | BS_AUTOCHECKBOX | WS_DISABLED, // Styles
0, // x position
0, // y position
0, // Button width
0, // Button height
hMainWindow, // Parent window
(HMENU)ID_FILTER_NOT_FULL, // No menu.
(HINSTANCE)hInstance,
NULL); // Pointer not needed.
CreateWindow(
"BUTTON", // Predefined class; Unicode assumed
"Not Empty", // Button text
WS_TABSTOP | WS_VISIBLE | WS_CHILD | BS_AUTOCHECKBOX | WS_DISABLED, // Styles
0, // x position
0, // y position
0, // Button width
0, // Button height
hMainWindow, // Parent window
(HMENU)ID_FILTER_NOT_EMPTY, // No menu.
(HINSTANCE)hInstance,
NULL); // Pointer not needed.
CreateWindow(
"BUTTON", // Predefined class; Unicode assumed
"No Password", // Button text
WS_TABSTOP | WS_VISIBLE | WS_CHILD | BS_AUTOCHECKBOX | WS_DISABLED, // Styles
0, // x position
0, // y position
0, // Button width
0, // Button height
hMainWindow, // Parent window
(HMENU)ID_FILTER_NO_PASSWORD, // No menu.
(HINSTANCE)hInstance,
NULL); // Pointer not needed.
HWND hwndFavourites = CreateWindow(
"BUTTON", // Predefined class; Unicode assumed
"Favourites", // Button text
WS_TABSTOP | WS_VISIBLE | WS_CHILD | BS_AUTORADIOBUTTON | BS_NOTIFY, // Styles
0, // x position
0, // y position
0, // Button width
0, // Button height
hMainWindow, // Parent window
(HMENU)ID_QUERY_FAVOURITES, // No menu.
(HINSTANCE)hInstance,
NULL); // Pointer not needed.
CreateWindow(
"BUTTON", // Predefined class; Unicode assumed
"Internet", // Button text
WS_TABSTOP | WS_VISIBLE | WS_CHILD | BS_AUTORADIOBUTTON | BS_NOTIFY, // Styles
0, // x position
0, // y position
0, // Button width
0, // Button height
hMainWindow, // Parent window
(HMENU)ID_QUERY_OPENSPY, // No menu.
(HINSTANCE)hInstance,
NULL); // Pointer not needed.
CreateWindow(
"BUTTON", // Predefined class; Unicode assumed
"OpenSpy", // Button text
WS_TABSTOP | WS_VISIBLE | WS_CHILD | BS_AUTORADIOBUTTON | BS_NOTIFY, // Styles
0, // x position
0, // y position
0, // Button width
0, // Button height
hMainWindow, // Parent window
(HMENU)ID_QUERY_OPENSPY_HOSTED, // No menu.
(HINSTANCE)hInstance,
NULL); // Pointer not needed.
HWND serverInfoGroup = CreateWindow("BUTTON", TEXT("Selected Server"), WS_CHILD | WS_VISIBLE | BS_GROUPBOX, 0, 0, 0, 0, hMainWindow, (HMENU)ID_SERVER_INFO_GROUPBOX, hInstance, NULL);
hIPLabel = CreateWindow("STATIC",
TEXT(""), // dummy text
WS_VISIBLE | WS_CHILD, // style
15, // x position
20, // y position
300, // width
100, // height
serverInfoGroup, // parent
(HMENU)ID_SERVER_IP_TEXT, // ID
hInstance, // instance
NULL); // no extra data
SendMessage(hwndFavourites, BM_SETCHECK, BST_CHECKED, NULL);
ResizeRefreshButton();
DoCreateStatusBar(hMainWindow, ID_STATUSBAR, hInstance, 1);
ShowWindow(hMainWindow, nCmdShow);
UpdateWindow(hMainWindow);
init_gamespy();
gamespy_refresh();
SetTimer(hMainWindow, WM_USER + 3, 2000, NULL); //UI loop update timer
MSG msg = { };
while (GetMessage(&msg, NULL, 0, 0) > 0)
{
gamespy_think();
if (hOptionsDialog != NULL) {
if (IsDialogMessage(hOptionsDialog, &msg))
continue;
}
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return 0;
}
BOOL InsertListViewItems(HWND hwndListView)
{
//empty the list
ListView_DeleteAllItems(hwndListView);
//set the number of items in the list
//ListView_SetItemCount(hwndListView, ITEM_COUNT);
return TRUE;
}
BOOL InitPlayerInfoListView(HWND listView) {
LV_COLUMN lvColumn;
int i;
TCHAR szString[2][20] = { TEXT("Player"), TEXT("Score") };
//empty the list
ListView_DeleteAllItems(listView);
//initialize the columns
lvColumn.mask = LVCF_FMT | LVCF_WIDTH | LVCF_TEXT | LVCF_SUBITEM;
lvColumn.fmt = LVCFMT_LEFT;
for (i = 0; i < 2; i++)
{
if (i == 0) {
lvColumn.cx = 220;
}
else {
lvColumn.cx = 50;
}
lvColumn.pszText = szString[i];
ListView_InsertColumn(listView, i, &lvColumn);
}
InsertListViewItems(listView);
return TRUE;
}
BOOL InitRulesListView(HWND listView) {
LV_COLUMN lvColumn;
int i;
TCHAR szString[2][20] = { TEXT("Key"), TEXT("Value") };
//empty the list
ListView_DeleteAllItems(listView);
//initialize the columns
lvColumn.mask = LVCF_FMT | LVCF_WIDTH | LVCF_TEXT | LVCF_SUBITEM;
lvColumn.fmt = LVCFMT_LEFT;
for (i = 0; i < 2; i++)
{
if (i == 1) {
lvColumn.cx = 180;
}
else {
lvColumn.cx = 90;
}
lvColumn.pszText = szString[i];
ListView_InsertColumn(listView, i, &lvColumn);
}
InsertListViewItems(listView);
return TRUE;
}
BOOL InitListView(HWND hwndListView)
{
LV_COLUMN lvColumn;
int i;
TCHAR szString[5][20] = {TEXT("Server Name"), TEXT("Players"), TEXT("Ping"), TEXT("Gamemode"), TEXT("Language")};
//empty the list
ListView_DeleteAllItems(hwndListView);
//initialize the columns
lvColumn.mask = LVCF_FMT | LVCF_WIDTH | LVCF_TEXT | LVCF_SUBITEM;
lvColumn.fmt = LVCFMT_LEFT;
for (i = 0; i < 5; i++)
{
if (i == 0) {
lvColumn.cx = 280;
}
else if (i == 1 || i == 2) {
lvColumn.cx = 55;
}
else {
lvColumn.cx = 120;
}
lvColumn.pszText = szString[i];
ListView_InsertColumn(hwndListView, i, &lvColumn);
}
InsertListViewItems(hwndListView);
return TRUE;
}
void ResizeRefreshButton() {
HWND hwnd_button = GetDlgItem(hMainWindow, ID_REFRESH);
RECT rc;
const int X_OFFSET = 75;
const int Y_OFFSET = -5;
GetClientRect(hMainWindow, &rc);
rc.top = rc.bottom - X_OFFSET;
rc.left = rc.left - Y_OFFSET;
MoveWindow(hwnd_button,
rc.left,
rc.top,
100,
25,
TRUE);
RECT rcFilter;
HWND filtergroup_label = GetDlgItem(hMainWindow, ID_FILTER_GROUPBOX);
GetClientRect(hMainWindow, &rcFilter);
const int FILTER_X_OFFSET = 175;
const int FILTER_Y_OFFSET = -5;
rcFilter.top = rcFilter.bottom - FILTER_X_OFFSET;
rcFilter.left = rcFilter.left - FILTER_Y_OFFSET;
MoveWindow(filtergroup_label,
rcFilter.left,
rcFilter.top,
250,
95,
TRUE);
HWND hwndFilterButton = GetDlgItem(hMainWindow, ID_FILTER_NOT_FULL);
rc = rcFilter;
rc.left += 10;
rc.top += 25;
MoveWindow(hwndFilterButton,
rc.left,
rc.top,
105,
15,
TRUE);
hwndFilterButton = GetDlgItem(hMainWindow, ID_FILTER_NOT_EMPTY);
rc = rcFilter;
rc.left += 10;
rc.top += 45;
MoveWindow(hwndFilterButton,
rc.left,
rc.top,
105,
15,
TRUE);
hwndFilterButton = GetDlgItem(hMainWindow, ID_FILTER_NO_PASSWORD);
rc = rcFilter;
rc.left += 10;
rc.top += 65;
MoveWindow(hwndFilterButton,
rc.left,
rc.top,
105,
15,
TRUE);
hwndFilterButton = GetDlgItem(hMainWindow, ID_QUERY_FAVOURITES);
rc = rcFilter;
rc.left += 120;
rc.top += 25;
MoveWindow(hwndFilterButton,
rc.left,
rc.top,
105,
15,
TRUE);
hwndFilterButton = GetDlgItem(hMainWindow, ID_QUERY_OPENSPY);
rc = rcFilter;
rc.left += 120;
rc.top += 45;
MoveWindow(hwndFilterButton,
rc.left,
rc.top,
105,
15,
TRUE);
hwndFilterButton = GetDlgItem(hMainWindow, ID_QUERY_OPENSPY_HOSTED);
rc = rcFilter;
rc.left += 120;
rc.top += 65;
MoveWindow(hwndFilterButton,
rc.left,
rc.top,
105,
15,
TRUE);
HWND serverinfo_label = GetDlgItem(hMainWindow, ID_SERVER_INFO_GROUPBOX);
GetClientRect(hMainWindow, &rc);
const int SERVERINFO_X_OFFSET = 180;
const int SERVERINFO_Y_OFFSET = -275;
rc.top = rc.bottom - SERVERINFO_X_OFFSET;
rc.left = rc.left - SERVERINFO_Y_OFFSET;
MoveWindow(serverinfo_label,
rc.left,
rc.top,
370,
135,
TRUE);
}
void ResizeListView(HWND hwndListView, HWND hwndParent)
{
RECT rc;
const int X_OFFSET = -180;
const int Y_OFFSET = -320;
GetClientRect(hwndParent, &rc);
rc.bottom += X_OFFSET;
rc.right += Y_OFFSET;
MoveWindow(hwndListView,
rc.left,
rc.top,
rc.right - rc.left,
rc.bottom - rc.top,
TRUE);
//only call this if we want the LVS_NOSCROLL style
//PositionHeader(hwndListView);
}
HWND CreateListView(HINSTANCE hInstance, HWND hwndParent)
{
DWORD dwStyle;
HWND hwndListView;
HIMAGELIST himlSmall;
HIMAGELIST himlLarge;
BOOL bSuccess = TRUE;
dwStyle = WS_TABSTOP |
WS_CHILD |
WS_BORDER |
WS_VISIBLE |
LVS_AUTOARRANGE |
LVS_REPORT | LVS_SINGLESEL;
hwndListView = CreateWindowEx(WS_EX_CLIENTEDGE, // ex style
WC_LISTVIEW, // class name - defined in commctrl.h
TEXT(""), // dummy text
dwStyle, // style
0, // x position
0, // y position
0, // width
0, // height
hwndParent, // parent
(HMENU)ID_LISTVIEW, // ID
g_hInst, // instance
NULL); // no extra data
if (!hwndListView)
return NULL;
ResizeListView(hwndListView, hwndParent);
HWND playersListView = CreateWindowEx(WS_EX_CLIENTEDGE, // ex style
WC_LISTVIEW, // class name - defined in commctrl.h
TEXT(""), // dummy text
dwStyle, // style
0, // x position
0, // y position
0, // width
0, // height
hwndParent, // parent
(HMENU)ID_PLAYERS_LISTVIEW, // ID
g_hInst, // instance
NULL); // no extra data
HWND rulesListView = CreateWindowEx(WS_EX_CLIENTEDGE, // ex style
WC_LISTVIEW, // class name - defined in commctrl.h
TEXT(""), // dummy text
dwStyle, // style
0, // x position
0, // y position
0, // width
0, // height
hwndParent, // parent
(HMENU)ID_RULES_LISTVIEW, // ID
g_hInst, // instance
NULL); // no extra data
ResizeServerDetailsListViews(hwndParent);
InitPlayerInfoListView(playersListView);
InitRulesListView(rulesListView);
return hwndListView;
}
void ResizeServerDetailsListViews(HWND parent) {
RECT rc;
HWND hwndMainlistView = GetDlgItem(parent, ID_LISTVIEW);
const int X_OFFSET = 0;
const int Y_OFFSET = -310;
GetClientRect(parent, &rc);
//ShowWindow(hwndMainlistView, 0);
//rc.bottom += X_OFFSET;
rc.right += Y_OFFSET;
HWND hwndListView = GetDlgItem(parent, ID_PLAYERS_LISTVIEW);
MoveWindow(hwndListView,
rc.right,
0,
300,
rc.bottom - 195,
TRUE);
hwndListView = GetDlgItem(parent, ID_RULES_LISTVIEW);
GetClientRect(parent, &rc);
rc.right += Y_OFFSET;
rc.top += 360;
MoveWindow(hwndListView,
rc.right,
rc.bottom - 185,
300,
140,
TRUE);
}
void on_click_browse_button() {
OPENFILENAME ofn; // common dialog box structure
char szFile[260]; // buffer for file name
HWND hwnd; // owner window
HANDLE hf; // file handle
// Initialize OPENFILENAME
ZeroMemory(&ofn, sizeof(ofn));
ofn.lStructSize = sizeof(ofn);
ofn.hwndOwner = hOptionsDialog;
ofn.lpstrFile = szFile;
// Set lpstrFile[0] to '\0' so that GetOpenFileName does not
// use the contents of szFile to initialize itself.
ofn.lpstrFile[0] = '\0';
ofn.nMaxFile = sizeof(szFile);
ofn.lpstrFilter = "GTA SA exe\0*.exe\0All\0*.*\0";
ofn.nFilterIndex = 1;
ofn.lpstrFileTitle = NULL;
ofn.nMaxFileTitle = 0;
ofn.lpstrInitialDir = NULL;
ofn.Flags = OFN_PATHMUSTEXIST | OFN_FILEMUSTEXIST;
if (GetOpenFileName(&ofn)) {
HWND hwndNameEdit = GetDlgItem(hOptionsDialog, IDC_BROWSE_EDIT);
SendMessage(hwndNameEdit, WM_SETTEXT, 0, (LPARAM)szFile);
}
}
INT_PTR CALLBACK ServerPropertiesDialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
HWND hwndOwner = NULL;
RECT rc, rcDlg, rcOwner;
switch (uMsg)
{
case WM_COMMAND:
switch (GET_WM_COMMAND_ID(wParam, lParam))
{
case IDOK:
do_connect_selected_server();
EndDialog(hOptionsDialog, TRUE);
break;
case IDCANCEL:
EndDialog(hOptionsDialog, TRUE);
break;
}
case WM_INITDIALOG:
hOptionsDialog = hwndDlg;
SendMessage(hwndDlg, WM_SETICON, ICON_SMALL, (LPARAM)hMainIcon);
SendMessage(hwndDlg, WM_SETICON, ICON_BIG, (LPARAM)hMainIcon);
// Get the owner window and dialog box rectangles.
if ((hwndOwner = GetParent(hwndDlg)) == NULL)
{
hwndOwner = GetDesktopWindow();
}
GetWindowRect(hwndOwner, &rcOwner);
GetWindowRect(hwndDlg, &rcDlg);
CopyRect(&rc, &rcOwner);
// Offset the owner and dialog box rectangles so that right and bottom
// values represent the width and height, and then offset the owner again
// to discard space taken up by the dialog box.
OffsetRect(&rcDlg, -rcDlg.left, -rcDlg.top);
OffsetRect(&rc, -rc.left, -rc.top);
OffsetRect(&rc, -rcDlg.right, -rcDlg.bottom);
// The new position is the sum of half the remaining space and the owner's
// original position.
SetWindowPos(hwndDlg,
hMainWindow,
rcOwner.left + (rc.right / 2),
rcOwner.top + (rc.bottom / 2),
0, 0, // Ignores size arguments.
SWP_NOSIZE);
init_prefs_text();
if (GetDlgCtrlID((HWND)wParam) != IDM_OPTIONS_DIALOG)
{
SetFocus(GetDlgItem(hwndDlg, IDM_OPTIONS_DIALOG));
return FALSE;
}
break;
case WM_DESTROY:
hOptionsDialog = NULL;
default:
DefWindowProc(hwndDlg, uMsg, wParam, lParam);
break;
}
return FALSE;
}
INT_PTR CALLBACK ConnectByIPDialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
HWND hwndOwner = NULL;
RECT rc, rcDlg, rcOwner;
switch (uMsg)
{
case WM_COMMAND:
switch (GET_WM_COMMAND_ID(wParam, lParam))
{
case IDOK:
do_joinbyip();
EndDialog(hOptionsDialog, TRUE);
break;
}
break;
case WM_INITDIALOG:
hOptionsDialog = hwndDlg;
SendMessage(hwndDlg, WM_SETICON, ICON_SMALL, (LPARAM)hMainIcon);
SendMessage(hwndDlg, WM_SETICON, ICON_BIG, (LPARAM)hMainIcon);
// Get the owner window and dialog box rectangles.
if ((hwndOwner = GetParent(hwndDlg)) == NULL)
{
hwndOwner = GetDesktopWindow();
}
GetWindowRect(hwndOwner, &rcOwner);
GetWindowRect(hwndDlg, &rcDlg);
CopyRect(&rc, &rcOwner);
// Offset the owner and dialog box rectangles so that right and bottom
// values represent the width and height, and then offset the owner again
// to discard space taken up by the dialog box.
OffsetRect(&rcDlg, -rcDlg.left, -rcDlg.top);
OffsetRect(&rc, -rc.left, -rc.top);
OffsetRect(&rc, -rcDlg.right, -rcDlg.bottom);
// The new position is the sum of half the remaining space and the owner's
// original position.
SetWindowPos(hwndDlg,
hMainWindow,
rcOwner.left + (rc.right / 2),
rcOwner.top + (rc.bottom / 2),
0, 0, // Ignores size arguments.
SWP_NOSIZE);
init_prefs_text();
if (GetDlgCtrlID((HWND)wParam) != IDM_OPTIONS_DIALOG)
{
SetFocus(GetDlgItem(hwndDlg, IDM_OPTIONS_DIALOG));
return FALSE;
}
break;
case WM_DESTROY:
hOptionsDialog = NULL;
default:
DefWindowProc(hwndDlg, uMsg, wParam, lParam);
break;
}
return FALSE;
}
INT_PTR CALLBACK OptionsDialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
HWND hwndOwner = NULL;
RECT rc, rcDlg, rcOwner;
HWND hwndDebugModeChk = GetDlgItem(hwndDlg, IDC_DEBUG_MODE);
int debugMode = SendMessage(hwndDebugModeChk, BM_GETCHECK, NULL, NULL);
switch (uMsg)
{
case WM_COMMAND:
if (LOWORD(wParam) == ID_REFRESH) {
switch (HIWORD(wParam)) {
case BN_CLICKED:
gamespy_refresh();
break;
}
break;
}
switch (GET_WM_COMMAND_ID(wParam, lParam))
{
case IDC_BROWSE_BUTTON:
on_click_browse_button();
break;
case IDC_SAVE_BUTTON:
on_click_save_prefs();
break;
case IDC_DEBUG_MODE:
g_debugMode = debugMode;
break;
}
break;
case WM_INITDIALOG:
hOptionsDialog = hwndDlg;
SendMessage(hwndDlg, WM_SETICON, ICON_SMALL, (LPARAM)hMainIcon);
SendMessage(hwndDlg, WM_SETICON, ICON_BIG, (LPARAM)hMainIcon);
// Get the owner window and dialog box rectangles.
if ((hwndOwner = GetParent(hwndDlg)) == NULL)
{
hwndOwner = GetDesktopWindow();
}
GetWindowRect(hwndOwner, &rcOwner);
GetWindowRect(hwndDlg, &rcDlg);
CopyRect(&rc, &rcOwner);
// Offset the owner and dialog box rectangles so that right and bottom
// values represent the width and height, and then offset the owner again
// to discard space taken up by the dialog box.
OffsetRect(&rcDlg, -rcDlg.left, -rcDlg.top);
OffsetRect(&rc, -rc.left, -rc.top);
OffsetRect(&rc, -rcDlg.right, -rcDlg.bottom);
// The new position is the sum of half the remaining space and the owner's
// original position.
SetWindowPos(hwndDlg,
hMainWindow,
rcOwner.left + (rc.right / 2),
rcOwner.top + (rc.bottom / 2),
0, 0, // Ignores size arguments.
SWP_NOSIZE);
init_prefs_text();
if (GetDlgCtrlID((HWND)wParam) != IDM_OPTIONS_DIALOG)
{
SetFocus(GetDlgItem(hwndDlg, IDM_OPTIONS_DIALOG));
return FALSE;
}
break;
case WM_DESTROY:
hOptionsDialog = NULL;
//intentional fallthrough
default:
DefWindowProc(hwndDlg, uMsg, wParam, lParam);
break;
}
return FALSE;
}
void ResizeStatusText() {
SendMessage(hwndStatus, WM_SIZE, 0, 0);
}
void handle_filter_disabled_states() {
int favouriteChecked = SendMessage(GetDlgItem(hMainWindow, ID_QUERY_FAVOURITES), BM_GETCHECK, NULL, NULL);
if (favouriteChecked) {
//disable buttons
EnableWindow(GetDlgItem(hMainWindow, ID_FILTER_NOT_FULL), FALSE);
EnableWindow(GetDlgItem(hMainWindow, ID_FILTER_NOT_EMPTY), FALSE);
EnableWindow(GetDlgItem(hMainWindow, ID_FILTER_NO_PASSWORD), FALSE);
}
else {
//enable
EnableWindow(GetDlgItem(hMainWindow, ID_FILTER_NOT_FULL), TRUE);
EnableWindow(GetDlgItem(hMainWindow, ID_FILTER_NOT_EMPTY), TRUE);
EnableWindow(GetDlgItem(hMainWindow, ID_FILTER_NO_PASSWORD), TRUE);
}
}
LRESULT Wndproc(
HWND hwnd, // handle to window
UINT uMsg, // message identifier
WPARAM wParam, // first message parameter
LPARAM lParam) // second message parameter
{
CREATESTRUCT* createStruct;
NMHDR* notifyMsg;
switch (uMsg)
{
case WM_CREATE:
createStruct = (CREATESTRUCT*)lParam;
if (createStruct->hwndParent == NULL) { //parent window is null, must be main window
// create the TreeView control
hwndListView = CreateListView(g_hInst, hwnd);
//initialize the TreeView control
InitListView(hwndListView);
}
break;
case WM_EXITSIZEMOVE:
InvalidateRect(hwnd, NULL, TRUE);
break;
case WM_SIZE:
ResizeListView(hwndListView, hwnd);
ResizeRefreshButton();
ResizeStatusText();
ResizeServerDetailsListViews(hwnd);
InvalidateRect(hwnd, NULL, FALSE);
break;
case WM_COMMAND:
if (LOWORD(wParam) == ID_REFRESH) {
switch (HIWORD(wParam)) {
case BN_CLICKED:
gamespy_refresh();
break;
}
break;
}
else if (LOWORD(wParam) == ID_QUERY_FAVOURITES || LOWORD(wParam) == ID_QUERY_OPENSPY || LOWORD(wParam) == ID_QUERY_OPENSPY_HOSTED) {
handle_filter_disabled_states();
}
if (hOptionsDialog != NULL) {
EndDialog(hOptionsDialog, TRUE);
}
switch (GET_WM_COMMAND_ID(wParam, lParam))
{
case ID_OPTIONS_PREFERENCES:
CreateDialog(g_hInst, MAKEINTRESOURCE(IDM_OPTIONS_DIALOG), hMainWindow, OptionsDialogProc);
break;
case ID_OPTIONS_CONNECTBYIP:
CreateDialog(g_hInst, MAKEINTRESOURCE(IDD_CONNECTIP_DIALOG), hMainWindow, ConnectByIPDialogProc);
break;
case ID_FILE_EXIT:
DestroyWindow(hwnd);
break;
}
break;
case WM_NOTIFY:
notifyMsg = (NMHDR*)lParam;
if (notifyMsg->hwndFrom == GetDlgItem(hwnd, ID_LISTVIEW)) {
ListViewNotify(hwnd, lParam);
}
else if (notifyMsg->hwndFrom == GetDlgItem(hwnd, ID_PLAYERS_LISTVIEW)) {
PlayerInfoListViewNotify(hwnd, lParam);
}
else if (notifyMsg->hwndFrom == GetDlgItem(hwnd, ID_RULES_LISTVIEW)) {
RulesListViewNotify(hwnd, lParam);
}
break;
case WM_DESTROY:
PostQuitMessage(0);
break;
default:
return DefWindowProc(hwnd, uMsg, wParam, lParam);
}
return DefWindowProc(hwnd, uMsg, wParam, lParam);
}
HWND DoCreateStatusBar(HWND hwndParent, int idStatus, HINSTANCE
hinst, int cParts)
{
RECT rcClient;
HLOCAL hloc;
PINT paParts;
int i, nWidth;
// Ensure that the common control DLL is loaded.
InitCommonControls();
// Create the status bar.
hwndStatus = CreateWindowEx(
0, // no extended styles
STATUSCLASSNAME, // name of status bar class
(PCTSTR)NULL, // no text when first created
SBARS_SIZEGRIP | // includes a sizing grip
WS_CHILD | WS_VISIBLE, // creates a visible child window
0, 0, 0, 0, // ignores size and position
hwndParent, // handle to parent window
(HMENU)idStatus, // child window identifier
hinst, // handle to application instance
NULL); // no window creation data
return hwndStatus;
}
BOOL StatusSetText(HWND hwnd, int iPart, const TCHAR* szText, BOOL bNoBorders = FALSE, BOOL bPopOut = FALSE)
{
UINT flags = 0;
if (bNoBorders)
{
flags |= SBT_NOBORDERS;
}
if (bPopOut)
{
flags |= SBT_POPOUT;
}
return (BOOL)SendMessage(hwnd, SB_SETTEXT, (WPARAM)(iPart | flags), (LPARAM)szText);
}
void StatusSetText(const TCHAR* szText) {
HWND hwnd_status = GetDlgItem(hMainWindow, ID_STATUSBAR);
StatusSetText(hwnd_status, 0, szText);
}
void init_prefs_text() {
HWND hwndBrowseEdit = GetDlgItem(hOptionsDialog, IDC_BROWSE_EDIT);
HWND hwndNameEdit = GetDlgItem(hOptionsDialog, IDC_PLAYER_EDIT);
// Get the user's gta_sa location
char exeLocation[MAX_PATH], name[MAX_SAMP_NAME];
DWORD buffer = sizeof(exeLocation);
// Open registry key
HKEY hKey;
long lError = RegOpenKeyEx(HKEY_CURRENT_USER,
"Software\\SAMP",