forked from Warzone2100/warzone2100
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultimenu.cpp
1342 lines (1171 loc) · 40.8 KB
/
multimenu.cpp
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
/*
This file is part of Warzone 2100.
Copyright (C) 1999-2004 Eidos Interactive
Copyright (C) 2005-2019 Warzone 2100 Project
Warzone 2100 is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
Warzone 2100 is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Warzone 2100; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
* MultiMenu.c
* Handles the In Game MultiPlayer Screen, alliances etc...
* Also the selection of disk files..
*/
#include "lib/framework/frame.h"
#include "lib/framework/wzapp.h"
#include "lib/framework/strres.h"
#include "lib/framework/physfs_ext.h"
#include "lib/widget/button.h"
#include "lib/widget/widget.h"
#include "display3d.h"
#include "intdisplay.h"
// FIXME Direct iVis implementation include!
#include "lib/ivis_opengl/pieblitfunc.h"
#include "lib/ivis_opengl/pietypes.h"
#include "lib/ivis_opengl/piepalette.h"
#include "lib/ivis_opengl/bitimage.h"
#include "lib/gamelib/gtime.h"
#include "lib/ivis_opengl/piematrix.h"
#include "levels.h"
#include "objmem.h" //for droid lists.
#include "component.h" // for disaplycomponentobj.
#include "hci.h" // for wFont def.& intmode.
#include "init.h"
#include "power.h"
#include "loadsave.h" // for drawbluebox
#include "console.h"
#include "ai.h"
#include "frend.h"
#include "lib/netplay/netplay.h"
#include "multiplay.h"
#include "multistat.h"
#include "multimenu.h"
#include "multiint.h"
#include "multigifts.h"
#include "multijoin.h"
#include "mission.h"
#include "scores.h"
#include "keymap.h"
#include "keybind.h"
#include "loop.h"
#include "frontend.h"
// ////////////////////////////////////////////////////////////////////////////
// defines
W_SCREEN *psRScreen; // requester stuff.
extern char MultiCustomMapsPath[PATH_MAX];
bool MultiMenuUp = false;
static UDWORD context = 0;
UDWORD current_tech = 1;
UDWORD current_numplayers = 4;
static std::string current_searchString;
#define MULTIMENU_FORM_X 10 + D_W
#define MULTIMENU_FORM_Y 23 + D_H
#define MULTIMENU_FORM_W 620
#define MULTIMENU_PLAYER_H 32
#define MULTIMENU_FONT_OSET 20
#define MULTIMENU_C0 (MULTIMENU_C2+95)
#define MULTIMENU_C1 30
#define MULTIMENU_C2 (MULTIMENU_C1+30)
#define MULTIMENU_C3 (MULTIMENU_C0+36)
#define MULTIMENU_C4 (MULTIMENU_C3+36)
#define MULTIMENU_C5 (MULTIMENU_C4+32)
#define MULTIMENU_C6 (MULTIMENU_C5+32)
#define MULTIMENU_C7 (MULTIMENU_C6+32)
#define MULTIMENU_C8 (MULTIMENU_C7+45)
#define MULTIMENU_C9 (MULTIMENU_C8+95)
#define MULTIMENU_C10 (MULTIMENU_C9+50)
#define MULTIMENU_C11 (MULTIMENU_C10+45)
#define MULTIMENU_CLOSE (MULTIMENU+1)
#define MULTIMENU_PLAYER (MULTIMENU+2)
#define MULTIMENU_ALLIANCE_BASE (MULTIMENU_PLAYER +MAX_PLAYERS)
#define MULTIMENU_GIFT_RAD (MULTIMENU_ALLIANCE_BASE +MAX_PLAYERS)
#define MULTIMENU_GIFT_RES (MULTIMENU_GIFT_RAD +MAX_PLAYERS)
#define MULTIMENU_GIFT_DRO (MULTIMENU_GIFT_RES +MAX_PLAYERS)
#define MULTIMENU_GIFT_POW (MULTIMENU_GIFT_DRO +MAX_PLAYERS)
#define MULTIMENU_CHANNEL (MULTIMENU_GIFT_POW +MAX_PLAYERS)
/// requester stuff.
#define M_REQUEST_CLOSE (MULTIMENU+49)
#define M_REQUEST (MULTIMENU+50)
#define M_REQUEST_C1 (MULTIMENU+61)
#define M_REQUEST_C2 (MULTIMENU+62)
#define M_REQUEST_C3 (MULTIMENU+63)
#define M_REQUEST_AP (MULTIMENU+70)
#define M_REQUEST_2P (MULTIMENU+71)
#define M_REQUEST_3P (MULTIMENU+72)
#define M_REQUEST_4P (MULTIMENU+73)
#define M_REQUEST_5P (MULTIMENU+74)
#define M_REQUEST_6P (MULTIMENU+75)
#define M_REQUEST_7P (MULTIMENU+76)
#define M_REQUEST_8P (MULTIMENU+77)
#define M_REQUEST_9P (MULTIMENU+78)
#define M_REQUEST_10P (MULTIMENU+79)
#define M_REQUEST_11P (MULTIMENU+80)
#define M_REQUEST_12P (MULTIMENU+81)
#define M_REQUEST_13P (MULTIMENU+82)
#define M_REQUEST_14P (MULTIMENU+83)
#define M_REQUEST_15P (MULTIMENU+84)
#define M_REQUEST_16P (MULTIMENU+85)
static const unsigned M_REQUEST_NP[] = {M_REQUEST_2P, M_REQUEST_3P, M_REQUEST_4P, M_REQUEST_5P, M_REQUEST_6P, M_REQUEST_7P, M_REQUEST_8P, M_REQUEST_9P, M_REQUEST_10P, M_REQUEST_11P, M_REQUEST_12P, M_REQUEST_13P, M_REQUEST_14P, M_REQUEST_15P, M_REQUEST_16P};
#define M_REQUEST_BUT (MULTIMENU+100) // allow loads of buttons.
#define M_REQUEST_BUTM (MULTIMENU+1100)
#define M_REQUEST_X MULTIOP_PLAYERSX
#define M_REQUEST_Y MULTIOP_PLAYERSY
#define M_REQUEST_W MULTIOP_PLAYERSW
#define M_REQUEST_H MULTIOP_PLAYERSH
#define R_BUT_W 105//112
#define R_BUT_H 30
#define HOVER_PREVIEW_TIME 300
bool multiRequestUp = false; //multimenu is up.
static unsigned hoverPreviewId;
static bool giftsUp[MAX_PLAYERS] = {true}; //gift buttons for player are up.
// ////////////////////////////////////////////////////////////////////////////
// Map / force / name load save stuff.
/* Sets the player's text color depending on if alliance formed, or if dead.
* \param mode the specified alliance
* \param player the specified player
*/
static PIELIGHT GetPlayerTextColor(int mode, UDWORD player)
{
// override color if they are dead...
if (!apsDroidLists[player] && !apsStructLists[player])
{
return WZCOL_GREY; // dead text color
}
// the colors were chosen to match the FRIEND/FOE radar map colors.
else if (mode == ALLIANCE_FORMED)
{
return WZCOL_YELLOW; // Human alliance text color
}
else if (isHumanPlayer(player)) // Human player, no alliance
{
return WZCOL_TEXT_BRIGHT; // Normal text color
}
else
{
return WZCOL_RED; // Enemy color
}
}
// ////////////////////////////////////////////////////////////////////////////
// ////////////////////////////////////////////////////////////////////////////
struct DisplayRequestOptionCache {
Sha256 hash;
WzText wzHashText;
private:
WzText wzText;
std::string _fullButString;
int _widgetWidth = 0;
public:
// For utilizing the cached (main) display text
bool canUseCachedText(const std::string &fullButString, int widgetWidth)
{
return (_widgetWidth == widgetWidth) && (_fullButString == fullButString);
}
void setCachedText(const std::string &text, iV_fonts fontID, const std::string &fullButString, int widgetWidth)
{
wzText.setText(text, fontID);
_fullButString = fullButString;
_widgetWidth = widgetWidth;
}
void renderCachedText(Vector2i position, PIELIGHT colour, float rotation = 0.0f)
{
wzText.render(position, colour, rotation);
}
void renderCachedText(int x, int y, PIELIGHT colour, float rotation = 0.0f)
{
renderCachedText(Vector2i{x,y}, colour, rotation);
}
};
struct DisplayRequestOptionData {
DisplayRequestOptionData(LEVEL_DATASET *pMapData = nullptr)
: pMapData(pMapData)
, cache()
{ }
LEVEL_DATASET *pMapData;
DisplayRequestOptionCache cache;
};
void displayRequestOption(WIDGET *psWidget, UDWORD xOffset, UDWORD yOffset)
{
// Any widget using displayRequestOption must have its pUserData initialized to a (DisplayRequestOptionData*)
assert(psWidget->pUserData != nullptr);
DisplayRequestOptionData& data = *static_cast<DisplayRequestOptionData *>(psWidget->pUserData);
LEVEL_DATASET *mapData = data.pMapData;
int x = xOffset + psWidget->x();
int y = yOffset + psWidget->y();
char butString[255];
sstrcpy(butString, ((W_BUTTON *)psWidget)->pTip.c_str());
drawBlueBox(x, y, psWidget->width(), psWidget->height());
PIELIGHT colour;
if (mapData && CheckForMod(mapData->realFileName))
{
colour = WZCOL_RED;
}
else
{
colour = WZCOL_TEXT_BRIGHT;
}
if (!data.cache.canUseCachedText(butString, psWidget->width()))
{
std::string fullButString = butString;
while (iV_GetTextWidth(butString, font_regular) > psWidget->width() - 10)
{
butString[strlen(butString) - 1] = '\0';
}
data.cache.setCachedText(butString, font_regular, fullButString, psWidget->width());
}
data.cache.renderCachedText(x + 6, y + 12, colour); //draw text
if (mapData != nullptr)
{
// Display map hash, so we can see the difference between identically named maps.
Sha256 hash = mapData->realFileHash; // levGetFileHash can be slightly expensive.
static uint32_t lastHashTime = 0;
if (lastHashTime != realTime && hash.isZero())
{
hash = levGetFileHash(mapData);
if (!hash.isZero())
{
lastHashTime = realTime; // We just calculated a hash. Don't calculate any more hashes this frame.
}
}
if (!hash.isZero())
{
if (hash != data.cache.hash)
{
sstrcpy(butString, hash.toString().c_str());
while (iV_GetTextWidth(butString, font_small) > psWidget->width() - 10 - (8 + mapData->players * 6))
{
butString[strlen(butString) - 1] = '\0';
}
// Update the cached hash text
data.cache.hash = hash;
data.cache.wzHashText.setText(butString, font_small);
}
data.cache.wzHashText.render(x + 6 + 8 + mapData->players * 6, y + 26, WZCOL_TEXT_DARK);
}
// if map, then draw no. of players.
for (int count = 0; count < mapData->players; ++count)
{
iV_DrawImage(FrontImages, IMAGE_WEE_GUY, x + 6 * count + 6, y + 16);
}
}
}
// ////////////////////////////////////////////////////////////////////////////
// ////////////////////////////////////////////////////////////////////////////
struct DisplayCamTypeButCache {
WzText wzText;
};
static void displayCamTypeBut(WIDGET *psWidget, UDWORD xOffset, UDWORD yOffset)
{
int x = xOffset + psWidget->x();
int y = yOffset + psWidget->y();
char buffer[8];
// Any widget using displayCamTypeBut must have its pUserData initialized to a (DisplayCamTypeButCache*)
assert(psWidget->pUserData != nullptr);
DisplayCamTypeButCache& cache = *static_cast<DisplayCamTypeButCache *>(psWidget->pUserData);
drawBlueBox(x, y, psWidget->width(), psWidget->height());
sprintf(buffer, "T%i", (int)(psWidget->UserData));
PIELIGHT colour;
if ((unsigned int)(psWidget->UserData) == current_tech)
{
colour = WZCOL_TEXT_BRIGHT;
}
else
{
colour = WZCOL_TEXT_MEDIUM;
}
cache.wzText.setText(buffer, font_regular);
cache.wzText.render(x + 2, y + 12, colour);
}
struct DisplayNumPlayersButCache {
WzText wzText;
};
static void displayNumPlayersBut(WIDGET *psWidget, UDWORD xOffset, UDWORD yOffset)
{
// Any widget using displayNumPlayersBut must have its pUserData initialized to a (DisplayNumPlayersButCache*)
assert(psWidget->pUserData != nullptr);
DisplayNumPlayersButCache& cache = *static_cast<DisplayNumPlayersButCache*>(psWidget->pUserData);
int x = xOffset + psWidget->x();
int y = yOffset + psWidget->y();
char buffer[8];
drawBlueBox(x, y, psWidget->width(), psWidget->height());
PIELIGHT colour;
if ((unsigned int)(psWidget->UserData) == current_numplayers)
{
colour = WZCOL_TEXT_BRIGHT;
}
else
{
colour = WZCOL_TEXT_MEDIUM;
}
if ((unsigned int)(psWidget->UserData) == 0)
{
sprintf(buffer, " *");
}
else
{
sprintf(buffer, "%iP", (int)(psWidget->UserData));
buffer[2] = '\0'; // Truncate 'P' if 2 digits, since there isn't room.
}
cache.wzText.setText(buffer, font_regular);
cache.wzText.render(x + 2, y + 12, colour);
}
static int stringRelevance(std::string const &string, std::string const &search)
{
WzString str = WzString::fromUtf8(string).normalized(WzString::NormalizationForm_KD);
WzString sea = WzString::fromUtf8(search).normalized(WzString::NormalizationForm_KD);
int strDim = str.size() + 1;
int seaDim = sea.size() + 1;
if (strDim > 10000 || seaDim > 10000 || strDim * seaDim > 100000)
{
return 0;
}
std::vector<unsigned> scores(strDim * seaDim);
for (int sum = 0; sum <= str.size() + sea.size(); ++sum)
for (int iStr = std::max(0, sum - sea.size()); iStr <= std::min(str.size(), sum - 0); ++iStr)
{
int iSea = sum - iStr;
unsigned score = 0;
if (iStr > 0 && iSea > 0)
{
score = (scores[iStr - 1 + (iSea - 1) * strDim] + 1) | 1;
WzString::WzUniCodepointRef a = str[iStr - 1], b = sea[iSea - 1];
if (a == b)
{
score += 100;
}
else if (a.value().caseFolded() == b.value().caseFolded())
{
score += 80;
}
}
if (iStr > 0)
{
score = std::max(score, scores[iStr - 1 + iSea * strDim] & ~1);
}
if (iSea > 0)
{
score = std::max(score, scores[iStr + (iSea - 1) * strDim] & ~1);
}
scores[iStr + iSea * strDim] = score;
}
return scores[str.size() + sea.size() * strDim];
}
void multiMenuScreenSizeDidChange(unsigned int oldWidth, unsigned int oldHeight, unsigned int newWidth, unsigned int newHeight)
{
if (psRScreen == nullptr) return;
psRScreen->screenSizeDidChange(oldWidth, oldHeight, newWidth, newHeight);
}
/** Searches in the given search directory for files ending with the
* given extension. Then will create a window with buttons for each
* found file.
* \param searchDir the directory to search in
* \param fileExtension the extension files should end with, if the
* extension has a dot (.) then this dot _must_ be present as
* the first char in this parameter
* \param mode (purpose unknown)
* \param numPlayers (purpose unknown)
*/
void addMultiRequest(const char *searchDir, const char *fileExtension, UDWORD mode, UBYTE mapCam, UBYTE numPlayers, std::string const &searchString)
{
const unsigned int extensionLength = strlen(fileExtension);
const unsigned int buttonsX = (mode == MULTIOP_MAP) ? 22 : 17;
context = mode;
if (mode == MULTIOP_MAP)
{
// only save these when they select MAP button
current_tech = mapCam;
current_numplayers = numPlayers;
current_searchString = searchString;
game.techLevel = current_tech;
}
char **fileList = PHYSFS_enumerateFiles(searchDir);
psRScreen = new W_SCREEN; ///< move this to intinit or somewhere like that.. (close too.)
WIDGET *parent = psRScreen->psForm;
/* add a form to place the tabbed form on */
IntFormAnimated *requestForm = new IntFormAnimated(parent);
requestForm->id = M_REQUEST;
requestForm->setCalcLayout(LAMBDA_CALCLAYOUT_SIMPLE({
psWidget->setGeometry(M_REQUEST_X + D_W, M_REQUEST_Y + D_H, M_REQUEST_W, M_REQUEST_H);
}));
// Add the button list.
IntListTabWidget *requestList = new IntListTabWidget(requestForm);
requestList->setChildSize(R_BUT_W, R_BUT_H);
requestList->setChildSpacing(4, 4);
requestList->setGeometry(2 + buttonsX, 2, M_REQUEST_W - buttonsX, M_REQUEST_H - 4);
// Add the close button.
W_BUTINIT sButInit;
sButInit.formID = M_REQUEST;
sButInit.id = M_REQUEST_CLOSE;
sButInit.x = M_REQUEST_W - CLOSE_WIDTH - 3;
sButInit.y = 0;
sButInit.width = CLOSE_WIDTH;
sButInit.height = CLOSE_HEIGHT;
sButInit.pTip = _("Close");
sButInit.pDisplay = intDisplayImageHilight;
sButInit.UserData = PACKDWORD_TRI(0, IMAGE_CLOSEHILIGHT , IMAGE_CLOSE);
widgAddButton(psRScreen, &sButInit);
// Put the buttons on it.
int nextButtonId = M_REQUEST_BUT;
for (char **currFile = fileList; *currFile != nullptr; ++currFile)
{
const unsigned int fileNameLength = strlen(*currFile);
// Check to see if this file matches the given extension
if (fileNameLength <= extensionLength
|| strcmp(&(*currFile)[fileNameLength - extensionLength], fileExtension) != 0)
{
continue;
}
char *withoutExtension = strdup(*currFile);
withoutExtension[fileNameLength - extensionLength] = '\0';
// Set the tip and add the button
W_BUTTON *button = new W_BUTTON(requestList);
button->id = nextButtonId;
button->setTip(withoutExtension);
button->setString(withoutExtension);
button->displayFunction = displayRequestOption;
button->pUserData = new DisplayRequestOptionData();
button->setOnDelete([](WIDGET *psWidget) {
assert(psWidget->pUserData != nullptr);
delete static_cast<DisplayRequestOptionData *>(psWidget->pUserData);
psWidget->pUserData = nullptr;
});
requestList->addWidgetToLayout(button);
free(withoutExtension);
/* Update the init struct for the next button */
++nextButtonId;
}
// Make sure to return memory back to PhyscisFS
PHYSFS_freeList(fileList);
multiRequestUp = true;
hoverPreviewId = 0;
if (mode == MULTIOP_MAP)
{
LEVEL_LIST levels = enumerateMultiMaps(mapCam, numPlayers);
using Pair = std::pair<int, W_BUTTON *>;
std::vector<Pair> buttons;
for (auto mapData : levels)
{
// add number of players to string.
W_BUTTON *button = new W_BUTTON(requestList);
button->id = nextButtonId;
button->setTip(mapData->pName);
button->setString(mapData->pName);
button->displayFunction = displayRequestOption;
button->pUserData = new DisplayRequestOptionData(mapData);
button->setOnDelete([](WIDGET *psWidget) {
assert(psWidget->pUserData != nullptr);
delete static_cast<DisplayRequestOptionData *>(psWidget->pUserData);
psWidget->pUserData = nullptr;
});
buttons.push_back({stringRelevance(mapData->pName, searchString), button});
++nextButtonId;
}
std::stable_sort(buttons.begin(), buttons.end(), [](Pair const &a, Pair const &b) {
return a.first > b.first;
});
for (Pair const &p : buttons)
{
requestList->addWidgetToLayout(p.second);
}
// if it's map select then add the cam style buttons.
sButInit = W_BUTINIT();
sButInit.formID = M_REQUEST;
sButInit.id = M_REQUEST_C1;
sButInit.x = 3;
sButInit.y = 254;
sButInit.width = 17;
sButInit.height = 17;
sButInit.UserData = 1;
sButInit.pTip = _("Technology level 1");
sButInit.pDisplay = displayCamTypeBut;
sButInit.initPUserDataFunc = []() -> void * { return new DisplayCamTypeButCache(); };
sButInit.onDelete = [](WIDGET *psWidget) {
assert(psWidget->pUserData != nullptr);
delete static_cast<DisplayCamTypeButCache *>(psWidget->pUserData);
psWidget->pUserData = nullptr;
};
widgAddButton(psRScreen, &sButInit);
sButInit.id = M_REQUEST_C2;
sButInit.y += 22;
sButInit.UserData = 2;
sButInit.pTip = _("Technology level 2");
widgAddButton(psRScreen, &sButInit);
sButInit.id = M_REQUEST_C3;
sButInit.y += 22;
sButInit.UserData = 3;
sButInit.pTip = _("Technology level 3");
widgAddButton(psRScreen, &sButInit);
sButInit.id = M_REQUEST_AP;
sButInit.y = 17;
sButInit.UserData = 0;
sButInit.pTip = _("Any number of players");
sButInit.pDisplay = displayNumPlayersBut;
sButInit.initPUserDataFunc = []() -> void * { return new DisplayNumPlayersButCache(); };
sButInit.onDelete = [](WIDGET *psWidget) {
assert(psWidget->pUserData != nullptr);
delete static_cast<DisplayNumPlayersButCache *>(psWidget->pUserData);
psWidget->pUserData = nullptr;
};
widgAddButton(psRScreen, &sButInit);
STATIC_ASSERT(MAX_PLAYERS_IN_GUI <= ARRAY_SIZE(M_REQUEST_NP) + 1);
for (unsigned mapNumPlayers = 2; mapNumPlayers <= MAX_PLAYERS_IN_GUI; ++mapNumPlayers)
{
char ttip[100] = {0};
sButInit.id = M_REQUEST_NP[mapNumPlayers - 2];
sButInit.y += 22;
sButInit.UserData = mapNumPlayers;
ssprintf(ttip, ngettext("%d player", "%d players", mapNumPlayers), mapNumPlayers);
sButInit.pTip = ttip;
widgAddButton(psRScreen, &sButInit);
}
}
}
static void closeMultiRequester()
{
multiRequestUp = false;
resetReadyStatus(false);
delete psRScreen; // move this to the frontend shutdown...
psRScreen = nullptr;
return;
}
bool runMultiRequester(UDWORD id, UDWORD *mode, WzString *chosen, LEVEL_DATASET **chosenValue, bool *isHoverPreview)
{
static unsigned hoverId = 0;
static unsigned hoverStartTime = 0;
*isHoverPreview = false;
if ((id == M_REQUEST_CLOSE) || CancelPressed()) // user hit close box || hit the cancel key
{
closeMultiRequester();
*mode = 0;
return true;
}
bool hoverPreview = false;
if (id == 0 && context == MULTIOP_MAP)
{
id = widgGetMouseOver(psRScreen);
if (id != hoverId)
{
hoverId = id;
hoverStartTime = wzGetTicks() + HOVER_PREVIEW_TIME;
}
if (id == hoverPreviewId || hoverStartTime > wzGetTicks())
{
id = 0; // Don't re-render preview nor render preview before HOVER_PREVIEW_TIME.
}
hoverPreview = true;
}
if (id >= M_REQUEST_BUT && id <= M_REQUEST_BUTM) // chose a file.
{
*chosen = ((W_BUTTON *)widgGetFromID(psRScreen, id))->pText;
DisplayRequestOptionData * pData = static_cast<DisplayRequestOptionData *>(((W_BUTTON *)widgGetFromID(psRScreen, id))->pUserData);
assert(pData != nullptr);
*chosenValue = (LEVEL_DATASET *)pData->pMapData;
*mode = context;
*isHoverPreview = hoverPreview;
hoverPreviewId = id;
if (!hoverPreview)
{
closeMultiRequester();
}
return true;
}
if (hoverPreview)
{
id = 0;
}
switch (id)
{
case M_REQUEST_C1:
closeMultiRequester();
addMultiRequest(MultiCustomMapsPath, ".wrf", MULTIOP_MAP, 1, current_numplayers, current_searchString);
break;
case M_REQUEST_C2:
closeMultiRequester();
addMultiRequest(MultiCustomMapsPath, ".wrf", MULTIOP_MAP, 2, current_numplayers, current_searchString);
break;
case M_REQUEST_C3:
closeMultiRequester();
addMultiRequest(MultiCustomMapsPath, ".wrf", MULTIOP_MAP, 3, current_numplayers, current_searchString);
break;
case M_REQUEST_AP:
closeMultiRequester();
addMultiRequest(MultiCustomMapsPath, ".wrf", MULTIOP_MAP, current_tech, 0, current_searchString);
break;
default:
for (unsigned numPlayers = 2; numPlayers <= MAX_PLAYERS_IN_GUI; ++numPlayers)
{
if (id == M_REQUEST_NP[numPlayers - 2])
{
closeMultiRequester();
addMultiRequest(MultiCustomMapsPath, ".wrf", MULTIOP_MAP, current_tech, numPlayers, current_searchString);
break;
}
}
break;
}
return false;
}
// ////////////////////////////////////////////////////////////////////////////
// Multiplayer in game menu stuff
// ////////////////////////////////////////////////////////////////////////////
// Display Functions
struct ExtraGubbinsCache {
WzText wzTimerText;
WzText wzTitleText_Alliances;
WzText wzTitleText_Score;
WzText wzTitleText_Kills;
WzText wzTitleText_Units;
WzText wzTitleText_RightColumn; // purpose differs depending on mode
};
static void displayExtraGubbins(UDWORD height, ExtraGubbinsCache& cache)
{
char str[128];
// draw grid
const std::vector<glm::ivec4> lines = {
glm::ivec4(MULTIMENU_FORM_X + MULTIMENU_C0 - 6 , MULTIMENU_FORM_Y, MULTIMENU_FORM_X + MULTIMENU_C0 - 6 , MULTIMENU_FORM_Y + height),
glm::ivec4(MULTIMENU_FORM_X + MULTIMENU_C8 - 6 , MULTIMENU_FORM_Y, MULTIMENU_FORM_X + MULTIMENU_C8 - 6 , MULTIMENU_FORM_Y + height),
glm::ivec4(MULTIMENU_FORM_X + MULTIMENU_C9 - 6 , MULTIMENU_FORM_Y, MULTIMENU_FORM_X + MULTIMENU_C9 - 6 , MULTIMENU_FORM_Y + height),
glm::ivec4(MULTIMENU_FORM_X + MULTIMENU_C10 - 6 , MULTIMENU_FORM_Y, MULTIMENU_FORM_X + MULTIMENU_C10 - 6 , MULTIMENU_FORM_Y + height),
glm::ivec4(MULTIMENU_FORM_X + MULTIMENU_C11 - 6 , MULTIMENU_FORM_Y, MULTIMENU_FORM_X + MULTIMENU_C11 - 6 , MULTIMENU_FORM_Y + height),
glm::ivec4(MULTIMENU_FORM_X, MULTIMENU_FORM_Y + MULTIMENU_PLAYER_H, MULTIMENU_FORM_X + MULTIMENU_FORM_W, MULTIMENU_FORM_Y + MULTIMENU_PLAYER_H) };
iV_Lines(lines, WZCOL_BLACK);
iV_SetTextColour(WZCOL_TEXT_BRIGHT); // main wz text color
// draw timer
getAsciiTime(str, gameTime);
cache.wzTimerText.setText(str, font_regular);
cache.wzTimerText.render(MULTIMENU_FORM_X + MULTIMENU_C2, MULTIMENU_FORM_Y + MULTIMENU_FONT_OSET, WZCOL_TEXT_BRIGHT);
// draw titles.
cache.wzTitleText_Alliances.setText(_("Alliances"), font_regular);
cache.wzTitleText_Alliances.render(MULTIMENU_FORM_X + MULTIMENU_C0, MULTIMENU_FORM_Y + MULTIMENU_FONT_OSET, WZCOL_TEXT_BRIGHT);
cache.wzTitleText_Score.setText(_("Score"), font_regular);
cache.wzTitleText_Score.render(MULTIMENU_FORM_X + MULTIMENU_C8, MULTIMENU_FORM_Y + MULTIMENU_FONT_OSET, WZCOL_TEXT_BRIGHT);
cache.wzTitleText_Kills.setText(_("Kills"), font_regular);
cache.wzTitleText_Kills.render(MULTIMENU_FORM_X + MULTIMENU_C9, MULTIMENU_FORM_Y + MULTIMENU_FONT_OSET, WZCOL_TEXT_BRIGHT);
cache.wzTitleText_Units.setText(_("Units"), font_regular);
cache.wzTitleText_Units.render(MULTIMENU_FORM_X + MULTIMENU_C10, MULTIMENU_FORM_Y + MULTIMENU_FONT_OSET, WZCOL_TEXT_BRIGHT);
if (getDebugMappingStatus())
{
cache.wzTitleText_RightColumn.setText(_("Power"), font_regular);
}
else
{
// ping is useless for non MP games, so display something useful depending on mode.
if (runningMultiplayer())
{
cache.wzTitleText_RightColumn.setText(_("Ping"), font_regular);
}
else
{
cache.wzTitleText_RightColumn.setText(_("Structs"), font_regular);
}
}
cache.wzTitleText_RightColumn.render(MULTIMENU_FORM_X + MULTIMENU_C11, MULTIMENU_FORM_Y + MULTIMENU_FONT_OSET, WZCOL_TEXT_BRIGHT);
#ifdef DEBUG
for (unsigned q = 0; q < 2; ++q)
{
unsigned xPos = 0;
unsigned yPos = q * 12;
bool isTotal = q != 0;
char const *srText[2] = {_("Sent/Received per sec —"), _("Total Sent/Received —")};
sprintf(str, "%s", srText[q]);
iV_DrawText(str, MULTIMENU_FORM_X + xPos, MULTIMENU_FORM_Y + height + yPos, font_small);
xPos += iV_GetTextWidth(str, font_small) + 20;
sprintf(str, _("Traf: %u/%u"), NETgetStatistic(NetStatisticRawBytes, true, isTotal), NETgetStatistic(NetStatisticRawBytes, false, isTotal));
iV_DrawText(str, MULTIMENU_FORM_X + xPos, MULTIMENU_FORM_Y + height + yPos, font_small);
xPos += iV_GetTextWidth(str, font_small) + 20;
sprintf(str, _("Uncompressed: %u/%u"), NETgetStatistic(NetStatisticUncompressedBytes, true, isTotal), NETgetStatistic(NetStatisticUncompressedBytes, false, isTotal));
iV_DrawText(str, MULTIMENU_FORM_X + xPos, MULTIMENU_FORM_Y + height + yPos, font_small);
xPos += iV_GetTextWidth(str, font_small) + 20;
sprintf(str, _("Pack: %u/%u"), NETgetStatistic(NetStatisticPackets, true, isTotal), NETgetStatistic(NetStatisticPackets, false, isTotal));
iV_DrawText(str, MULTIMENU_FORM_X + xPos, MULTIMENU_FORM_Y + height + yPos, font_small);
}
#endif
return;
}
struct DisplayMultiPlayerData {
ExtraGubbinsCache extraGubbinsCache;
WzText wzPosAndNameText;
WzText wzScoreText;
WzText wzKillsText;
WzText wzUnitsText;
WzText wzRightmostColumnText; // purpose differs depending on mode
};
static void displayMultiPlayer(WIDGET *psWidget, UDWORD xOffset, UDWORD yOffset)
{
// Any widget using displayMultiPlayer must have its pUserData initialized to a (DisplayMultiPlayerData*)
assert(psWidget->pUserData != nullptr);
DisplayMultiPlayerData& data = *static_cast<DisplayMultiPlayerData *>(psWidget->pUserData);
char str[128];
int x = xOffset + psWidget->x();
int y = yOffset + psWidget->y();
unsigned player = psWidget->UserData; // Get the in game player number.
if (responsibleFor(player, 0))
{
displayExtraGubbins(widgGetFromID(psWScreen, MULTIMENU_FORM)->height(), data.extraGubbinsCache);
}
const bool isHuman = isHumanPlayer(player);
const bool isAlly = aiCheckAlliances(selectedPlayer, player);
const bool isSelectedPlayer = player == selectedPlayer;
PIELIGHT playerTextColor = GetPlayerTextColor(alliances[selectedPlayer][player], player);
if (isHuman || (game.type == SKIRMISH && player < game.maxPlayers))
{
ssprintf(str, "%d: %s", NetPlay.players[player].position, getPlayerName(player));
while (iV_GetTextWidth(str, font_regular) >= MULTIMENU_C0 - MULTIMENU_C2 - 10)
{
str[strlen(str) - 1] = '\0';
}
data.wzPosAndNameText.setText(str, font_regular);
data.wzPosAndNameText.render(x + MULTIMENU_C2, y + MULTIMENU_FONT_OSET, playerTextColor);
//c3-7 alliance
//manage buttons by showing or hiding them. gifts only in campaign,
if (alliancesCanGiveAnything(game.alliance))
{
if (isAlly && !isSelectedPlayer && !giftsUp[player])
{
if (alliancesCanGiveResearchAndRadar(game.alliance))
{
widgReveal(psWScreen, MULTIMENU_GIFT_RAD + player);
widgReveal(psWScreen, MULTIMENU_GIFT_RES + player);
}
widgReveal(psWScreen, MULTIMENU_GIFT_DRO + player);
widgReveal(psWScreen, MULTIMENU_GIFT_POW + player);
giftsUp[player] = true;
}
else if (!isAlly && !isSelectedPlayer && giftsUp[player])
{
if (alliancesCanGiveResearchAndRadar(game.alliance))
{
widgHide(psWScreen, MULTIMENU_GIFT_RAD + player);
widgHide(psWScreen, MULTIMENU_GIFT_RES + player);
}
widgHide(psWScreen, MULTIMENU_GIFT_DRO + player);
widgHide(psWScreen, MULTIMENU_GIFT_POW + player);
giftsUp[player] = false;
}
}
}
// Let's use the real score for MP games
if (NetPlay.bComms)
{
if (Cheated)
{
sprintf(str, "(cheated)");
}
else
{
sprintf(str, "%d", getMultiStats(player).recentScore);
}
data.wzScoreText.setText(str, font_regular);
//c9:kills,
sprintf(str, "%d", getMultiStats(player).recentKills);
data.wzKillsText.setText(str, font_regular);
}
else
{
// estimate of score for skirmish games
sprintf(str, "%d", ingame.skScores[player][0]);
data.wzScoreText.setText(str, font_regular);
// estimated kills
sprintf(str, "%d", ingame.skScores[player][1]);
data.wzKillsText.setText(str, font_regular);
}
data.wzScoreText.render(x + MULTIMENU_C8, y + MULTIMENU_FONT_OSET, playerTextColor);
data.wzKillsText.render(x + MULTIMENU_C9, y + MULTIMENU_FONT_OSET, playerTextColor);
//only show player's and allies' unit counts, and nobody elses.
//c10:units
if (isAlly || getDebugMappingStatus())
{
sprintf(str, "%d", getNumDroids(player) + getNumTransporterDroids(player));
data.wzUnitsText.setText(str, font_regular);
data.wzUnitsText.render(x + MULTIMENU_C10, y + MULTIMENU_FONT_OSET, playerTextColor);
}
/* Display player power instead of number of played games
* and number of units instead of ping when in debug mode
*/
if (getDebugMappingStatus()) //Won't pass this when in both release and multiplayer modes
{
//c11: Player power
sprintf(str, "%u", (int)getPower(player));
data.wzRightmostColumnText.setText(str, font_regular);
data.wzRightmostColumnText.render(MULTIMENU_FORM_X + MULTIMENU_C11, y + MULTIMENU_FONT_OSET, playerTextColor);
}
else if (runningMultiplayer())
{
//c11:ping
if (!isSelectedPlayer && isHuman)
{
if (ingame.PingTimes[player] < PING_LIMIT)
{
sprintf(str, "%03d", ingame.PingTimes[player]);
}
else
{
sprintf(str, "∞");
}
data.wzRightmostColumnText.setText(str, font_regular);
data.wzRightmostColumnText.render(x + MULTIMENU_C11, y + MULTIMENU_FONT_OSET, playerTextColor);
}
}
else
{
//c11: Structures
if (isAlly || getDebugMappingStatus())
{
// NOTE, This tallys up *all* the structures you have. Test out via 'start with no base'.
int num = 0;
for (STRUCTURE *temp = apsStructLists[player]; temp != nullptr; temp = temp->psNext)
{
++num;
}
sprintf(str, "%d", num);
data.wzRightmostColumnText.setText(str, font_regular);
data.wzRightmostColumnText.render(x + MULTIMENU_C11, y + MULTIMENU_FONT_OSET, playerTextColor);
}
}
// a droid of theirs.
DROID *displayDroid = apsDroidLists[player];
while (displayDroid != nullptr && !displayDroid->visible[selectedPlayer])
{
displayDroid = displayDroid->psNext;
}
if (displayDroid)
{
pie_SetGeometricOffset(MULTIMENU_FORM_X + MULTIMENU_C1 , y + MULTIMENU_PLAYER_H);
Vector3i rotation(-15, 45, 0);
Position position(0, 0, BUTTON_DEPTH); // Scale them.
if (displayDroid->droidType == DROID_SUPERTRANSPORTER)
{
position.z = 7850;
}
else if (displayDroid->droidType == DROID_TRANSPORTER)
{
position.z = 4100;
}
displayComponentButtonObject(displayDroid, &rotation, &position, 100);
}
else if (apsDroidLists[player])
{
// Show that they have droids, but not which droids, since we can't see them.
iV_DrawImageTc(IntImages, IMAGE_GENERIC_TANK, IMAGE_GENERIC_TANK_TC, MULTIMENU_FORM_X + MULTIMENU_C1 - iV_GetImageWidth(IntImages, IMAGE_GENERIC_TANK) / 2, y + MULTIMENU_PLAYER_H - iV_GetImageHeight(IntImages, IMAGE_GENERIC_TANK), pal_GetTeamColour(getPlayerColour(player)));
}
// clean up widgets if player leaves while menu is up.
if (!isHuman && !(game.type == SKIRMISH && player < game.maxPlayers))
{
if (widgGetFromID(psWScreen, MULTIMENU_CHANNEL + player) != nullptr)
{
widgDelete(psWScreen, MULTIMENU_CHANNEL + player);
}
if (widgGetFromID(psWScreen, MULTIMENU_ALLIANCE_BASE + player) != nullptr)
{
widgDelete(psWScreen, MULTIMENU_ALLIANCE_BASE + player);
widgDelete(psWScreen, MULTIMENU_GIFT_RAD + player);
widgDelete(psWScreen, MULTIMENU_GIFT_RES + player);
widgDelete(psWScreen, MULTIMENU_GIFT_DRO + player);
widgDelete(psWScreen, MULTIMENU_GIFT_POW + player);
giftsUp[player] = false;
}
}
}
// ////////////////////////////////////////////////////////////////////////////