-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
MapVeto.cs
660 lines (581 loc) · 28.2 KB
/
MapVeto.cs
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
using CounterStrikeSharp.API;
using CounterStrikeSharp.API.Modules.Timers;
using CounterStrikeSharp.API.Modules.Utils;
using CounterStrikeSharp.API.Core;
using CounterStrikeSharp.API.Core.Attributes.Registration;
using CounterStrikeSharp.API.Modules.Commands;
using System;
namespace MatchZy
{
public partial class MatchZy
{
public bool isPreVeto = false;
public bool isVeto = false;
public int warningsPrinted = 0;
public int vetoCountdownTime = 5; // In Seconds
public bool mapChangePending = false;
public CounterStrikeSharp.API.Modules.Timers.Timer? vetoStateTimer = null;
public Dictionary<string, int> vetoCaptains = new(){
{"team1", -1},
{"team2", -1}
};
public CsTeam lastVetoTeam = CsTeam.None;
public void CreateVeto()
{
SwapPlayersToTeams();
vetoCaptains["team1"] = GetTeamCaptain("team1");
vetoCaptains["team2"] = GetTeamCaptain("team2");
// Todo: Implement pauseOnVeto CVAR
// if (pauseOnVeto) {
// Server.ExecuteCommand("mp_pause_match");
// isPaused = true;
// unpauseData["pauseTeam"] = "Admin";
// }
Server.ExecuteCommand("mp_warmup_end");
Server.ExecuteCommand("mp_pause_match");
isPaused = true;
unpauseData["pauseTeam"] = "Admin";
vetoStateTimer = AddTimer(1, VetoCountdown, TimerFlags.REPEAT);
isVeto = true;
readyAvailable = false;
isWarmup = false;
KillPhaseTimers();
}
public void VetoCountdown()
{
if (!isVeto)
{
warningsPrinted = 0;
vetoStateTimer?.Kill();
vetoStateTimer = null;
return;
}
if (warningsPrinted >= vetoCountdownTime)
{
int team1Captain = vetoCaptains["team1"];
int team2Captain = vetoCaptains["team2"];
warningsPrinted = 0;
if (!playerData.ContainsKey(team1Captain) || !playerData.ContainsKey(team2Captain) || !playerData[team1Captain].IsValid || !playerData[team2Captain].IsValid)
{
AbortVeto();
vetoStateTimer?.Kill();
vetoStateTimer = null;
return;
}
Server.PrintToChatAll($"{chatPrefix} Captain for {ChatColors.Green}{matchzyTeam1.teamName}{ChatColors.Default}: {ChatColors.Green}{playerData[team1Captain].PlayerName}{ChatColors.Default}");
Server.PrintToChatAll($"{chatPrefix} Captain for {ChatColors.Green}{matchzyTeam2.teamName}{ChatColors.Default}: {ChatColors.Green}{playerData[team2Captain].PlayerName}{ChatColors.Default}");
HandleVetoStep();
vetoStateTimer?.Kill();
vetoStateTimer = null;
return;
}
warningsPrinted++;
int secondsRemaining = vetoCountdownTime - warningsPrinted + 1;
Server.PrintToChatAll($"{chatPrefix} Map selection commencing in {secondsRemaining}");
}
public void HandleVetoStep()
{
// As long as sides are not set for a map, either give side pick or auto-decide sides and recursively call this.
if (matchConfig.MapSides.Count < matchConfig.Maplist.Count)
{
if (matchConfig.MatchSideType == "standard")
{
CsTeam otherMatchTeam = lastVetoTeam;
if (lastVetoTeam == CsTeam.Terrorist) otherMatchTeam = CsTeam.CounterTerrorist;
else if (lastVetoTeam == CsTeam.CounterTerrorist) otherMatchTeam = CsTeam.Terrorist;
PromptForSideSelectionInChat(otherMatchTeam);
}
else
{
HandleAutomaticSideSelection();
HandleVetoStep();
}
}
else if (matchConfig.NumMaps > matchConfig.Maplist.Count)
{
if (matchConfig.MapsLeftInVetoPool.Count == 1)
{
// Only 1 map left in the pool, add it by deduction and determine knife logic.
string mapName = matchConfig.MapsLeftInVetoPool[0];
PickMap(mapName, 0);
HandleAutomaticSideSelection();
FinishVeto();
}
else
{
// More than 1 map in the pool and not all maps are picked; present choices as determine by config.
PromptForMapSelectionInChat(GetCurrentMapSelectionOption());
}
}
else
{
FinishVeto();
}
}
public void PromptForMapSelectionInChat(string option) {
string action = "";
int client = -1;
string stepMessage = "";
switch (option)
{
case "team1_ban":
action = $"{ChatColors.Green}{matchzyTeam1.teamName}{ChatColors.Default} must now {ChatColors.Red}BAN{ChatColors.Default} a map.";
client = vetoCaptains["team1"];
stepMessage = $"Use .ban <map> to ban a map";
break;
case "team2_ban":
action = $"{ChatColors.Green}{matchzyTeam2.teamName}{ChatColors.Default} must now {ChatColors.Red}BAN{ChatColors.Default} a map.";
client = vetoCaptains["team2"];
stepMessage = $"Use .ban <map> to ban a map";
break;
case "team1_pick":
action = $"{ChatColors.Green}{matchzyTeam1.teamName}{ChatColors.Default} must now {ChatColors.Green}PICK{ChatColors.Default} a map to play as map {matchConfig.Maplist.Count + 1}.";
client = vetoCaptains["team1"];
stepMessage = $"Use .pick <map> to pick a map.";
break;
case "team2_pick":
action = $"{ChatColors.Green}{matchzyTeam2.teamName}{ChatColors.Default} must now {ChatColors.Green}PICK{ChatColors.Default} a map to play as map {matchConfig.Maplist.Count + 1}.";
client = vetoCaptains["team2"];
stepMessage = $"Use .pick <map> to pick a map.";
break;
}
if (!playerData.ContainsKey(client) || !playerData[client].IsValid)
{
Log($"[PromptForMapSelectionInChat] Invalid captain found with ID: {client}");
return;
}
Server.PrintToChatAll($"{chatPrefix} {action}");
string mapListAsString = string.Join(", ", matchConfig.MapsLeftInVetoPool);
Server.PrintToChatAll($"{chatPrefix} Remaining Maps: {mapListAsString}");
playerData[client].PrintToChat($"{chatPrefix} {stepMessage}");
}
[ConsoleCommand("css_pick", "Picks map")]
public void OnPickMapCommand(CCSPlayerController? player, CommandInfo? command) {
if (player == null || command == null) return;
if (command.ArgCount < 1) return;
string mapArg = command.ArgByIndex(1);
HandeMapPickCommand(player, mapArg);
}
[ConsoleCommand("css_ban", "Bans map")]
public void OnBanMapCommand(CCSPlayerController? player, CommandInfo? command) {
if (player == null || command == null) return;
if (command.ArgCount < 1) return;
string mapArg = command.ArgByIndex(1);
HandeMapBanCommand(player, mapArg);
}
public void HandeMapBanCommand(CCSPlayerController player, string map)
{
if (!isVeto || SidePickPending() || player == null || map == null) return;
int playerTeam = player.TeamNum;
string currentTeamToBan;
switch (GetCurrentMapSelectionOption()) {
case "team1_ban":
currentTeamToBan = "team1";
break;
case "team2_ban":
currentTeamToBan = "team2";
break;
case "invalid":
case "team1_pick":
case "team2_pick":
default:
return;
}
if (player.UserId != vetoCaptains[currentTeamToBan]) return;
if (!BanMap(map, playerTeam)) {
PrintToPlayerChat(player, $"{map} is not a valid map.");
} else {
HandleVetoStep();
}
}
public void HandeMapPickCommand(CCSPlayerController player, string map)
{
if (!isVeto || SidePickPending() || player == null || map == null) return;
int playerTeam = player.TeamNum;
string currentTeamToPick;
switch (GetCurrentMapSelectionOption())
{
case "team1_pick":
currentTeamToPick = "team1";
break;
case "team2_pick":
currentTeamToPick = "team2";
break;
case "invalid":
case "team1_ban":
case "team2_ban":
default:
return;
}
if (player.UserId != vetoCaptains[currentTeamToPick]) return;
if (!PickMap(map, playerTeam)) {
PrintToPlayerChat(player, $"{map} is not a valid map.");
} else {
HandleVetoStep();
}
}
public bool PickMap(string mapName, int team) {
(bool mapRemoved, string mapRemovedName) = RemoveMapFromMapPool(mapName);
if (!mapRemoved) return false;
Team matchzyTeam = matchzyTeam1;
if (team != 0) {
matchzyTeam = (team == 2) ? reverseTeamSides["TERRORIST"] : reverseTeamSides["CT"];
Server.PrintToChatAll($"{chatPrefix} {ChatColors.Green}{matchzyTeam.teamName}{ChatColors.Default} picked {ChatColors.Green}{mapRemovedName}{ChatColors.Default} as map {matchConfig.Maplist.Count + 1}");
}
matchConfig.Maplist.Add(mapRemovedName);
var mapPickedEvent = new MatchZyMapPickedEvent
{
MatchId = liveMatchId,
MapName = mapRemovedName,
MapNumber = matchConfig.Maplist.Count,
Team = (matchzyTeam == matchzyTeam1) ? "team1" : "team2",
};
Task.Run(async () => {
await SendEventAsync(mapPickedEvent);
});
lastVetoTeam = (CsTeam)team;
return true;
}
public bool BanMap(string mapName, int team)
{
(bool mapRemoved, string mapRemovedName) = RemoveMapFromMapPool(mapName);
if (!mapRemoved) return false;
Team matchzyTeam = matchzyTeam1;
if (team != 0) {
matchzyTeam = (team == 2) ? reverseTeamSides["TERRORIST"] : reverseTeamSides["CT"];
Server.PrintToChatAll($"{chatPrefix} {ChatColors.Green}{matchzyTeam.teamName}{ChatColors.Default} banned {ChatColors.LightRed}{mapRemovedName}{ChatColors.Default}");
}
var mapMapVetoedEvent = new MatchZyMapVetoedEvent
{
MatchId = liveMatchId,
MapName = mapRemovedName,
Team = (matchzyTeam == matchzyTeam1) ? "team1" : "team2",
};
Task.Run(async () => {
await SendEventAsync(mapMapVetoedEvent);
});
lastVetoTeam = (CsTeam)team;
return true;
}
public void AbortVeto()
{
// Todo: Add AbortVeto() when captain is disconnecting in-between veto
Server.PrintToChatAll($"{chatPrefix} A team captain left during map selection. Map selection is paused.");
Server.PrintToChatAll($"{chatPrefix} Type .ready when you are ready to resume map selection.");
isPreVeto = true;
isVeto = false;
if (isPaused)
{
UnpauseMatch();
}
vetoCaptains = new(){
{"team1", -1},
{"team2", -1}
};
foreach (var key in playerReadyStatus.Keys) {
playerReadyStatus[key] = false;
}
readyAvailable = true;
isWarmup = true;
StartWarmup();
}
public void FinishVeto()
{
Server.PrintToChatAll($"{chatPrefix} The maps have been decided:");
matchConfig.MapsLeftInVetoPool.Clear();
if (isPaused) {
UnpauseMatch();
}
// If a team has a map advantage, don't print that map.
int mapNumber = matchConfig.CurrentMapNumber;
for (int i = mapNumber; i < matchConfig.Maplist.Count; i++) {
Server.PrintToChatAll($"{chatPrefix} Map {i + 1 - mapNumber}: {matchConfig.Maplist[i]}.");
}
string currentMapName = Server.MapName;
string mapToPlay = matchConfig.Maplist[0];
// In case the sides don't match after selection, we check it here before writing the backup.
// Also required if the map doesn't need to change.
SetMapSides();
ExecuteChangedConvars();
foreach (var key in playerReadyStatus.Keys) {
playerReadyStatus[key] = false;
}
if (IsMapReloadRequiredForGameMode(matchConfig.Wingman) || mapReloadRequired || currentMapName != mapToPlay) {
SetCorrectGameMode();
float delay = 7.0f;
mapChangePending = true;
// Todo: Implement displayGotvVeto cvar
// if (displayGotvVeto) {
// delay += GetTvDelay();
// }
AddTimer(delay, () => {
string nextMap = matchConfig.Maplist[matchConfig.CurrentMapNumber];
ChangeMap(nextMap, 3);
});
}
isWarmup = true;
readyAvailable = true;
isPreVeto = false;
isVeto = false;
StartWarmup();
}
public int GetTeamCaptain(string team)
{
Team matchzyTeam = team == "team1" ? matchzyTeam1 : matchzyTeam2;
int teamSide = teamSides[matchzyTeam] == "CT" ? 3 : 2;
foreach (var key in playerData.Keys)
{
if (!playerData[key].IsValid || playerData[key].IsBot) continue;
if (playerData[key].TeamNum == teamSide) return key;
}
return -1;
}
public void SwapPlayersToTeams()
{
foreach (var key in playerData.Keys)
{
if (!playerData[key].IsValid || playerData[key].IsBot) continue;
playerData[key].SwitchTeam(GetPlayerTeam(playerData[key]));
}
}
public string GetCurrentMapSelectionOption()
{
// Number of banned maps must be: original pool - (current pool + picked);
// 7 - (4 + 2) = 1; if 4 are left and 2 were picked, 1 must have been banned.
int mapsBanned = matchConfig.MapsPool.Count - (matchConfig.MapsLeftInVetoPool.Count + matchConfig.Maplist.Count);
int index = matchConfig.Maplist.Count + mapsBanned;
if (index > matchConfig.MapBanOrder.Count - 1)
{
return "invalid";
}
return matchConfig.MapBanOrder[index];
}
public bool SidePickPending() {
return matchConfig.MapSides.Count < matchConfig.Maplist.Count && matchConfig.MatchSideType == "standard";
}
public void HandleAutomaticSideSelection() {
if (matchConfig.MatchSideType == "random") {
matchConfig.MapSides.Add(new Random().Next(0, 2) == 0 ? "team1_ct" : "team1_t");
} else {
matchConfig.MapSides.Add(matchConfig.MatchSideType == "never_knife" ? "team1_ct" : "knife");
}
}
public (bool, string) RemoveMapFromMapPool(string mapName) {
string mapRemoved = "";
int eraseIndex = -1;
// First check if we have a single match with a substring.
if (mapName.Length >= 4) {
for (int i = 0; i < matchConfig.MapsLeftInVetoPool.Count; i++) {
mapRemoved = matchConfig.MapsLeftInVetoPool[i];
if (mapRemoved.IndexOf(mapName, StringComparison.OrdinalIgnoreCase) > -1) {
if (eraseIndex >= 0) {
eraseIndex = -1; // If more than one match, reset and break.
break;
}
eraseIndex = i;
}
}
}
// If no match or more than one match on substring, restart, this time only matching the full string.
if (eraseIndex == -1) {
for (int i = 0; i < matchConfig.MapsLeftInVetoPool.Count; i++) {
mapRemoved = matchConfig.MapsLeftInVetoPool[i];
if (mapRemoved == mapName) {
eraseIndex = i;
break;
}
}
}
if (eraseIndex >= 0) {
mapRemoved = matchConfig.MapsLeftInVetoPool[eraseIndex];
matchConfig.MapsLeftInVetoPool.RemoveAt(eraseIndex);
return (true, mapRemoved);
}
if (mapName.IndexOf("cobble", StringComparison.OrdinalIgnoreCase) > -1) {
// Because Cobblestone is the only map that's actually misspelled, we re-run the code if the input contained
// "cobble" but there was no match, this time using "cbble" instead, which will match de_cbble.
return RemoveMapFromMapPool("cbble");
}
return (false, mapRemoved);
}
public void PromptForSideSelectionInChat(CsTeam team) {
string mapName = matchConfig.Maplist[^1];
Team matchzyTeam = (team == CsTeam.CounterTerrorist) ? reverseTeamSides["CT"] : reverseTeamSides["TERRORIST"];
string teamString = (matchzyTeam == matchzyTeam1) ? "team1" : "team2";
Server.PrintToChatAll($"{chatPrefix} {ChatColors.Green}{matchzyTeam.teamName}{ChatColors.Default} must now pick a side to play on {ChatColors.Green}{mapName}{ChatColors.Default}");
int client = vetoCaptains[teamString];
if (!playerData.ContainsKey(client) || !playerData[client].IsValid) return;
playerData[client].PrintToChat($"{chatPrefix} Use .ct or .t to pick a side");
}
public bool ValidateMapBanLogic()
{
int numberOfPicks = 0;
string option;
for (int i = 0; i < matchConfig.MapBanOrder.Count; i++) {
option = matchConfig.MapBanOrder[i];
if (option == "team1_pick" || option == "team2_pick") {
numberOfPicks++;
}
if (numberOfPicks == matchConfig.NumMaps || i == matchConfig.MapsPool.Count - 2) {
break;
}
}
// Example: In a Bo3, at least 2 of the options must be picks to avoid randomly selecting map order of remaining maps.
if (matchConfig.NumMaps > 1 && numberOfPicks < matchConfig.NumMaps - 1) {
Log($"[ValidateMapBanLogic] In a series of {matchConfig.NumMaps} maps, at least {matchConfig.NumMaps - 1} veto options must be picks. Found {numberOfPicks} pick(s).");
return false;
}
if (matchConfig.MapsPool.Count - 1 != matchConfig.MapBanOrder.Count && numberOfPicks != matchConfig.NumMaps) {
// Example: Map pool of 7 requires 6 picks/bans *unless* we have picks for all maps.
Log($"[ValidateMapBanLogic] The number of maps in the pool {matchConfig.MapsPool.Count} must be one larger than the number of map picks/bans {matchConfig.MapBanOrder.Count}, unless the number of picks {numberOfPicks} matches the series length {matchConfig.NumMaps}.");
return false;
}
return true;
}
public void HandleSideChoice(CsTeam side, int client) {
if (!SidePickPending()) {
// No side selection is done by players in this case.
return;
}
Team team = matchzyTeam1;
if (lastVetoTeam == CsTeam.Terrorist) team = reverseTeamSides["CT"];
else if (lastVetoTeam == CsTeam.CounterTerrorist) team = reverseTeamSides["TERRORIST"];
string pickingTeam = (team == matchzyTeam1) ? "team1" : "team2";
if (client != vetoCaptains[pickingTeam]) {
// Only captain can select a side.
return;
}
PickSide(side, pickingTeam);
HandleVetoStep();
}
public void PickSide(CsTeam side, string team) {
if (side == CsTeam.CounterTerrorist) {
matchConfig.MapSides.Add(team == "team1" ? "team1_ct" : "team1_t");
} else {
matchConfig.MapSides.Add(team == "team1" ? "team1_t" : "team1_ct");
}
int mapNumber = matchConfig.Maplist.Count - 1;
string mapName = matchConfig.Maplist[mapNumber];
string sideFormatted = (side == CsTeam.CounterTerrorist) ? "CT" : "T";
Team matchzyTeam = (team == "team1") ? matchzyTeam1 : matchzyTeam2;
Server.PrintToChatAll($"{chatPrefix} {ChatColors.Green}{matchzyTeam.teamName}{ChatColors.Default} elected to start as {ChatColors.Green}{sideFormatted}{ChatColors.Default} on {ChatColors.Green}{mapName}{ChatColors.Default}.");
var sidePickedEvent = new MatchZySidePickedEvent
{
MatchId = liveMatchId,
MapName = mapName,
MapNumber = matchConfig.Maplist.Count,
Team = (matchzyTeam == matchzyTeam1) ? "team1" : "team2",
Side = sideFormatted.ToLower()
};
Task.Run(async () => {
await SendEventAsync(sidePickedEvent);
});
}
public void GenerateDefaultVetoSetup()
{
Team startingVetoTeam = matchzyTeam1;
if (lastVetoTeam == CsTeam.CounterTerrorist)
{
if (reverseTeamSides["CT"] == matchzyTeam1) startingVetoTeam = matchzyTeam2;
if (reverseTeamSides["CT"] == matchzyTeam2) startingVetoTeam = matchzyTeam1;
}
else if (lastVetoTeam == CsTeam.Terrorist)
{
if (reverseTeamSides["TERRORIST"] == matchzyTeam1) startingVetoTeam = matchzyTeam2;
if (reverseTeamSides["TERRORIST"] == matchzyTeam2) startingVetoTeam = matchzyTeam1;
}
switch (matchConfig.NumMaps)
{
case 1:
int numberOfBans = matchConfig.MapsPool.Count - 1; // Last map either played by default or ignored.
for (int i = 0; i < numberOfBans; i++)
{
matchConfig.MapBanOrder.Add(
i % 2 == 0
? (startingVetoTeam == matchzyTeam1 ? "team1_ban" : "team2_ban")
: (startingVetoTeam == matchzyTeam1 ? "team2_ban" : "team1_ban"));
}
break;
case 2:
if (matchConfig.MapsPool.Count < 5)
{
matchConfig.MapBanOrder.Add(startingVetoTeam == matchzyTeam1 ? "team1_pick"
: "team2_pick");
matchConfig.MapBanOrder.Add(startingVetoTeam == matchzyTeam1 ? "team2_pick"
: "team1_pick");
}
else
{
matchConfig.MapBanOrder.Add(startingVetoTeam == matchzyTeam1 ? "team1_ban"
: "team2_ban");
matchConfig.MapBanOrder.Add(startingVetoTeam == matchzyTeam1 ? "team2_ban"
: "team1_ban");
matchConfig.MapBanOrder.Add(startingVetoTeam == matchzyTeam1 ? "team1_pick"
: "team2_pick");
matchConfig.MapBanOrder.Add(startingVetoTeam == matchzyTeam1 ? "team2_pick"
: "team1_pick");
}
break;
default:
// Bo3 with 7 maps as an example.
// For this to work, a Bo3 requires a map pool of at least 5.
if (matchConfig.MapsPool.Count >= matchConfig.NumMaps + 2)
{ // 7 >= 3 + 2
int numberOfPicks = matchConfig.NumMaps - 1; // 2 picks in a Bo3
// Determine how many bans before we start picking (may be 0):
int numberOfStartBans = matchConfig.MapsPool.Count - (matchConfig.NumMaps + 2); // 7 - (3 + 2) = 2
if (numberOfStartBans > 0)
{ // == 2
for (int i = 0; i < numberOfStartBans; i++)
{
matchConfig.MapBanOrder.Add(
matchConfig.MapBanOrder.Count % 2 == 0
? (startingVetoTeam == matchzyTeam1 ? "team1_ban" : "team2_ban")
: (startingVetoTeam == matchzyTeam1 ? "team2_ban" : "team1_ban"));
}
}
// After the initial bans, add the picks:
for (int i = 0; i < numberOfPicks; i++)
{
matchConfig.MapBanOrder.Add(
matchConfig.MapBanOrder.Count % 2 == 0
? (startingVetoTeam == matchzyTeam1 ? "team1_pick" : "team2_pick")
: (startingVetoTeam == matchzyTeam1 ? "team2_pick" : "team1_pick"));
}
// Determine how many bans to append to the end (may be 0):
int numberOfEndBans = matchConfig.MapsPool.Count - 1 - numberOfPicks - numberOfStartBans; // 7 - 2 - 2 - 1 = 2
if (numberOfEndBans > 0)
{ // == 2
for (int i = 0; i < numberOfEndBans; i++)
{
matchConfig.MapBanOrder.Add(
matchConfig.MapBanOrder.Count % 2 == 0
? (startingVetoTeam == matchzyTeam1 ? "team1_ban" : "team2_ban")
: (startingVetoTeam == matchzyTeam1 ? "team2_ban" : "team1_ban"));
}
}
}
else
{
// else we just alternate picks and ignore the last map.
for (int i = 0; i < matchConfig.NumMaps; i++)
{
matchConfig.MapBanOrder.Add(
i % 2 == 0
? (startingVetoTeam == matchzyTeam1 ? "team1_pick" : "team2_pick")
: (startingVetoTeam == matchzyTeam1 ? "team2_pick" : "team1_pick"));
}
}
break;
}
}
public void SkipVeto()
{
isWarmup = true;
readyAvailable = true;
isPreVeto = false;
isVeto = false;
StartWarmup();
}
}
}