1 #include "mapvoting.qh"
4 #include "command/cmd.qh"
5 #include "command/getreplies.qh"
6 #include "../common/constants.qh"
7 #include <common/net_linked.qh>
8 #include "../common/mapinfo.qh"
9 #include "../common/playerstats.qh"
10 #include "../common/util.qh"
15 float mapvote_nextthink;
16 float mapvote_keeptwotime;
17 float mapvote_timeout;
18 const float MAPVOTE_SCREENSHOT_DIRS_COUNT = 4;
19 string mapvote_screenshot_dirs[MAPVOTE_SCREENSHOT_DIRS_COUNT];
20 float mapvote_screenshot_dirs_count;
23 float mapvote_count_real;
24 string mapvote_maps[MAPVOTE_COUNT];
25 float mapvote_maps_screenshot_dir[MAPVOTE_COUNT];
26 string mapvote_maps_pakfile[MAPVOTE_COUNT];
27 float mapvote_maps_suggested[MAPVOTE_COUNT];
28 string mapvote_suggestions[MAPVOTE_COUNT];
29 float mapvote_suggestion_ptr;
31 float mapvote_selections[MAPVOTE_COUNT];
32 float mapvote_maps_flags[MAPVOTE_COUNT];
35 float mapvote_abstain;
41 * Returns the gamtype ID from its name, if type_name isn't a real gametype it
42 * checks for sv_vote_gametype_(type_name)_type
44 Gametype GameTypeVote_Type_FromString(string type_name)
46 Gametype type = MapInfo_Type_FromString(type_name);
48 type = MapInfo_Type_FromString(cvar_string(
49 strcat("sv_vote_gametype_",type_name,"_type")));
53 int GameTypeVote_AvailabilityStatus(string type_name)
55 int flag = GTV_FORBIDDEN;
57 Gametype type = MapInfo_Type_FromString(type_name);
60 type = MapInfo_Type_FromString(cvar_string(
61 strcat("sv_vote_gametype_",type_name,"_type")));
68 if ( autocvar_nextmap != "" )
70 if ( !MapInfo_Get_ByName(autocvar_nextmap, false, NULL) )
72 if (!(MapInfo_Map_supportedGametypes & type.m_flags))
76 return flag | GTV_AVAILABLE;
79 float GameTypeVote_GetMask()
81 float n, j, gametype_mask;
82 n = tokenizebyseparator(autocvar_sv_vote_gametype_options, " ");
83 n = min(MAPVOTE_COUNT, n);
85 for(j = 0; j < n; ++j)
86 gametype_mask |= GameTypeVote_Type_FromString(argv(j)).m_flags;
90 string GameTypeVote_MapInfo_FixName(string m)
92 if ( autocvar_sv_vote_gametype )
95 _MapInfo_FilterGametype(GameTypeVote_GetMask(), 0, MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
97 return MapInfo_FixName(m);
100 void MapVote_ClearAllVotes()
102 FOREACH_CLIENT(true, LAMBDA(it.mapvote = 0));
105 void MapVote_UnzoneStrings()
108 for(j = 0; j < mapvote_count; ++j)
110 if ( mapvote_maps[j] )
112 strunzone(mapvote_maps[j]);
113 mapvote_maps[j] = string_null;
115 if ( mapvote_maps_pakfile[j] )
117 strunzone(mapvote_maps_pakfile[j]);
118 mapvote_maps_pakfile[j] = string_null;
123 string MapVote_Suggest(entity this, string m)
127 return "That's not how to use this command.";
128 if(!autocvar_g_maplist_votable_suggestions)
129 return "Suggestions are not accepted on this server.";
130 if(mapvote_initialized)
132 return "Can't suggest - voting is already in progress!";
133 m = GameTypeVote_MapInfo_FixName(m);
135 return "The map you suggested is not available on this server.";
136 if(!autocvar_g_maplist_votable_suggestions_override_mostrecent)
138 return "This server does not allow for recent maps to be played again. Please be patient for some rounds.";
140 if (!autocvar_sv_vote_gametype)
141 if(!MapInfo_CheckMap(m))
142 return "The map you suggested does not support the current game mode.";
143 for(i = 0; i < mapvote_suggestion_ptr; ++i)
144 if(mapvote_suggestions[i] == m)
145 return "This map was already suggested.";
146 if(mapvote_suggestion_ptr >= MAPVOTE_COUNT)
148 i = floor(random() * mapvote_suggestion_ptr);
152 i = mapvote_suggestion_ptr;
153 mapvote_suggestion_ptr += 1;
155 if(mapvote_suggestions[i] != "")
156 strunzone(mapvote_suggestions[i]);
157 mapvote_suggestions[i] = strzone(m);
158 if(autocvar_sv_eventlog)
159 GameLogEcho(strcat(":vote:suggested:", m, ":", ftos(this.playerid)));
160 return strcat("Suggestion of ", m, " accepted.");
163 void MapVote_AddVotable(string nextMap, float isSuggestion)
166 string pakfile, mapfile;
170 for(j = 0; j < mapvote_count; ++j)
171 if(mapvote_maps[j] == nextMap)
173 // suggestions might be no longer valid/allowed after gametype switch!
175 if(!MapInfo_CheckMap(nextMap))
177 mapvote_maps[mapvote_count] = strzone(nextMap);
178 mapvote_maps_suggested[mapvote_count] = isSuggestion;
180 pakfile = string_null;
181 for(i = 0; i < mapvote_screenshot_dirs_count; ++i)
183 mapfile = strcat(mapvote_screenshot_dirs[i], "/", mapvote_maps[i]);
184 pakfile = whichpack(strcat(mapfile, ".tga"));
186 pakfile = whichpack(strcat(mapfile, ".jpg"));
188 pakfile = whichpack(strcat(mapfile, ".png"));
192 if(i >= mapvote_screenshot_dirs_count)
193 i = 0; // FIXME maybe network this error case, as that means there is no mapshot on the server?
194 for(o = strstrofs(pakfile, "/", 0)+1; o > 0; o = strstrofs(pakfile, "/", 0)+1)
195 pakfile = substring(pakfile, o, -1);
197 mapvote_maps_screenshot_dir[mapvote_count] = i;
198 mapvote_maps_pakfile[mapvote_count] = strzone(pakfile);
199 mapvote_maps_flags[mapvote_count] = GTV_AVAILABLE;
209 MapVote_ClearAllVotes();
210 MapVote_UnzoneStrings();
213 mapvote_detail = !autocvar_g_maplist_votable_nodetail;
214 mapvote_abstain = autocvar_g_maplist_votable_abstain;
217 nmax = min(MAPVOTE_COUNT - 1, autocvar_g_maplist_votable);
219 nmax = min(MAPVOTE_COUNT, autocvar_g_maplist_votable);
220 smax = min3(nmax, autocvar_g_maplist_votable_suggestions, mapvote_suggestion_ptr);
222 // we need this for AddVotable, as that cycles through the screenshot dirs
223 mapvote_screenshot_dirs_count = tokenize_console(autocvar_g_maplist_votable_screenshot_dir);
224 if(mapvote_screenshot_dirs_count == 0)
225 mapvote_screenshot_dirs_count = tokenize_console("maps levelshots");
226 mapvote_screenshot_dirs_count = min(mapvote_screenshot_dirs_count, MAPVOTE_SCREENSHOT_DIRS_COUNT);
227 for(i = 0; i < mapvote_screenshot_dirs_count; ++i)
228 mapvote_screenshot_dirs[i] = strzone(argv(i));
230 if(mapvote_suggestion_ptr)
231 for(i = 0; i < 100 && mapvote_count < smax; ++i)
232 MapVote_AddVotable(mapvote_suggestions[floor(random() * mapvote_suggestion_ptr)], true);
234 for(i = 0; i < 100 && mapvote_count < nmax; ++i)
235 MapVote_AddVotable(GetNextMap(), false);
237 if(mapvote_count == 0)
239 bprint( "Maplist contains no single playable map! Resetting it to default map list.\n" );
240 cvar_set("g_maplist", MapInfo_ListAllowedMaps(MapInfo_CurrentGametype(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags()));
241 if(autocvar_g_maplist_shuffle)
243 localcmd("\nmenu_cmd sync\n");
244 for(i = 0; i < 100 && mapvote_count < nmax; ++i)
245 MapVote_AddVotable(GetNextMap(), false);
248 mapvote_count_real = mapvote_count;
250 MapVote_AddVotable("don't care", 0);
252 //dprint("mapvote count is ", ftos(mapvote_count), "\n");
254 mapvote_keeptwotime = time + autocvar_g_maplist_votable_keeptwotime;
255 mapvote_timeout = time + autocvar_g_maplist_votable_timeout;
256 if(mapvote_count_real < 3 || mapvote_keeptwotime <= time)
257 mapvote_keeptwotime = 0;
262 void MapVote_SendPicture(entity to, int id)
265 WriteHeader(MSG_ONE, TE_CSQC_PICTURE);
266 WriteByte(MSG_ONE, id);
267 WritePicture(MSG_ONE, strcat(mapvote_screenshot_dirs[mapvote_maps_screenshot_dir[id]], "/", mapvote_maps[id]), 3072);
271 void MapVote_WriteMask()
273 if ( mapvote_count < 24 )
276 for(int j = 0; j < mapvote_count; ++j)
278 if(mapvote_maps_flags[j] & GTV_AVAILABLE)
282 if(mapvote_count < 8)
283 WriteByte(MSG_ENTITY, mask);
284 else if (mapvote_count < 16)
285 WriteShort(MSG_ENTITY,mask);
287 WriteLong(MSG_ENTITY, mask);
291 for (int j = 0; j < mapvote_count; ++j)
292 WriteByte(MSG_ENTITY, mapvote_maps_flags[j]);
297 * Sends a single map vote option to the client
299 void MapVote_SendOption(int i)
302 if(mapvote_abstain && i == mapvote_count - 1)
304 WriteString(MSG_ENTITY, ""); // abstain needs no text
305 WriteString(MSG_ENTITY, ""); // abstain needs no pack
306 WriteByte(MSG_ENTITY, 0); // abstain needs no screenshot dir
310 WriteString(MSG_ENTITY, mapvote_maps[i]);
311 WriteString(MSG_ENTITY, mapvote_maps_pakfile[i]);
312 WriteByte(MSG_ENTITY, mapvote_maps_screenshot_dir[i]);
317 * Sends a single gametype vote option to the client
319 void GameTypeVote_SendOption(int i)
322 if(mapvote_abstain && i == mapvote_count - 1)
324 WriteString(MSG_ENTITY, ""); // abstain needs no text
325 WriteByte(MSG_ENTITY, GTV_AVAILABLE);
329 string type_name = mapvote_maps[i];
330 WriteString(MSG_ENTITY, type_name);
331 WriteByte(MSG_ENTITY, mapvote_maps_flags[i]);
332 if ( mapvote_maps_flags[i] & GTV_CUSTOM )
334 WriteString(MSG_ENTITY, cvar_string(
335 strcat("sv_vote_gametype_",type_name,"_name")));
336 WriteString(MSG_ENTITY, cvar_string(
337 strcat("sv_vote_gametype_",type_name,"_description")));
338 WriteString(MSG_ENTITY, cvar_string(
339 strcat("sv_vote_gametype_",type_name,"_type")));
344 bool MapVote_SendEntity(entity this, entity to, int sf)
349 sf &= ~2; // if we send 1, we don't need to also send 2
351 WriteHeader(MSG_ENTITY, ENT_CLIENT_MAPVOTE);
352 WriteByte(MSG_ENTITY, sf);
356 // flag 1 == initialization
357 for(i = 0; i < mapvote_screenshot_dirs_count; ++i)
358 WriteString(MSG_ENTITY, mapvote_screenshot_dirs[i]);
359 WriteString(MSG_ENTITY, "");
360 WriteByte(MSG_ENTITY, mapvote_count);
361 WriteByte(MSG_ENTITY, mapvote_abstain);
362 WriteByte(MSG_ENTITY, mapvote_detail);
363 WriteCoord(MSG_ENTITY, mapvote_timeout);
368 WriteByte(MSG_ENTITY, 1);
369 WriteString(MSG_ENTITY, autocvar_nextmap);
371 else if ( autocvar_sv_vote_gametype )
373 // map vote but gametype has been chosen via voting screen
374 WriteByte(MSG_ENTITY, 2);
375 WriteString(MSG_ENTITY, MapInfo_Type_ToText(MapInfo_CurrentGametype()));
378 WriteByte(MSG_ENTITY, 0); // map vote
382 // Send data for the vote options
383 for(i = 0; i < mapvote_count; ++i)
386 GameTypeVote_SendOption(i);
388 MapVote_SendOption(i);
394 // flag 2 == update of mask
401 for(i = 0; i < mapvote_count; ++i)
402 if ( mapvote_maps_flags[i] & GTV_AVAILABLE )
403 WriteByte(MSG_ENTITY, mapvote_selections[i]);
405 WriteByte(MSG_ENTITY, to.mapvote);
413 Net_LinkEntity(mapvote_ent = spawn(), false, 0, MapVote_SendEntity);
416 void MapVote_TouchMask()
418 mapvote_ent.SendFlags |= 2;
421 void MapVote_TouchVotes(entity voter)
423 mapvote_ent.SendFlags |= 4;
426 float MapVote_Finished(float mappos)
428 if(alreadychangedlevel)
435 if(autocvar_sv_eventlog)
437 result = strcat(":vote:finished:", mapvote_maps[mappos]);
438 result = strcat(result, ":", ftos(mapvote_selections[mappos]), "::");
439 didntvote = mapvote_voters;
440 for(i = 0; i < mapvote_count; ++i)
441 if(mapvote_maps_flags[i] & GTV_AVAILABLE )
443 didntvote -= mapvote_selections[i];
446 result = strcat(result, ":", mapvote_maps[i]);
447 result = strcat(result, ":", ftos(mapvote_selections[i]));
450 result = strcat(result, ":didn't vote:", ftos(didntvote));
453 if(mapvote_maps_suggested[mappos])
454 GameLogEcho(strcat(":vote:suggestion_accepted:", mapvote_maps[mappos]));
457 FOREACH_CLIENT(IS_REAL_CLIENT(it), LAMBDA(FixClientCvars(it)));
461 if ( GameTypeVote_Finished(mappos) )
463 gametypevote = false;
464 if(autocvar_nextmap != "")
466 Map_Goto_SetStr(autocvar_nextmap);
468 alreadychangedlevel = true;
477 Map_Goto_SetStr(mapvote_maps[mappos]);
479 alreadychangedlevel = true;
484 void MapVote_CheckRules_1()
486 for (int i = 0; i < mapvote_count; ++i)
487 if (mapvote_maps_flags[i] & GTV_AVAILABLE)
489 //dprint("Map ", ftos(i), ": "); dprint(mapvote_maps[i], "\n");
490 mapvote_selections[i] = 0;
494 FOREACH_CLIENT(IS_REAL_CLIENT(it), {
498 int idx = it.mapvote - 1;
499 //dprint("Player ", it.netname, " vote = ", ftos(idx), "\n");
500 ++mapvote_selections[idx];
505 float MapVote_CheckRules_2()
508 float firstPlace, secondPlace, currentPlace;
509 float firstPlaceVotes, secondPlaceVotes, currentVotes;
510 float mapvote_voters_real;
513 if(mapvote_count_real == 1)
514 return MapVote_Finished(0);
516 mapvote_voters_real = mapvote_voters;
518 mapvote_voters_real -= mapvote_selections[mapvote_count - 1];
520 RandomSelection_Init();
523 for(i = 0; i < mapvote_count_real; ++i)
524 if ( mapvote_maps_flags[i] & GTV_AVAILABLE )
526 RandomSelection_AddFloat(i, 1, mapvote_selections[i]);
527 if ( gametypevote && mapvote_maps[i] == MapInfo_Type_ToString(MapInfo_CurrentGametype()) )
529 currentVotes = mapvote_selections[i];
533 firstPlaceVotes = RandomSelection_best_priority;
534 if ( autocvar_sv_vote_gametype_default_current && currentVotes == firstPlaceVotes )
535 firstPlace = currentPlace;
537 firstPlace = RandomSelection_chosen_float;
539 //dprint("First place: ", ftos(firstPlace), "\n");
540 //dprint("First place votes: ", ftos(firstPlaceVotes), "\n");
542 RandomSelection_Init();
543 for(i = 0; i < mapvote_count_real; ++i)
545 if ( mapvote_maps_flags[i] & GTV_AVAILABLE )
546 RandomSelection_AddFloat(i, 1, mapvote_selections[i]);
547 secondPlace = RandomSelection_chosen_float;
548 secondPlaceVotes = RandomSelection_best_priority;
549 //dprint("Second place: ", ftos(secondPlace), "\n");
550 //dprint("Second place votes: ", ftos(secondPlaceVotes), "\n");
553 error("No first place in map vote... WTF?");
555 if(secondPlace == -1 || time > mapvote_timeout || (mapvote_voters_real - firstPlaceVotes) < firstPlaceVotes)
556 return MapVote_Finished(firstPlace);
558 if(mapvote_keeptwotime)
559 if(time > mapvote_keeptwotime || (mapvote_voters_real - firstPlaceVotes - secondPlaceVotes) < secondPlaceVotes)
563 mapvote_keeptwotime = 0;
564 result = strcat(":vote:keeptwo:", mapvote_maps[firstPlace]);
565 result = strcat(result, ":", ftos(firstPlaceVotes));
566 result = strcat(result, ":", mapvote_maps[secondPlace]);
567 result = strcat(result, ":", ftos(secondPlaceVotes), "::");
568 didntvote = mapvote_voters;
569 for(i = 0; i < mapvote_count; ++i)
571 didntvote -= mapvote_selections[i];
575 result = strcat(result, ":", mapvote_maps[i]);
576 result = strcat(result, ":", ftos(mapvote_selections[i]));
577 if(i < mapvote_count_real)
579 mapvote_maps_flags[i] &= ~GTV_AVAILABLE;
583 result = strcat(result, ":didn't vote:", ftos(didntvote));
584 if(autocvar_sv_eventlog)
595 MapVote_CheckRules_1(); // count
596 if(MapVote_CheckRules_2()) // decide
600 FOREACH_CLIENT(IS_REAL_CLIENT(it), LAMBDA(
601 // hide scoreboard again
602 if(it.health != 2342)
608 WriteByte(MSG_ONE, SVC_FINALE);
609 WriteString(MSG_ONE, "");
612 // clear possibly invalid votes
613 if ( !(mapvote_maps_flags[it.mapvote-1] & GTV_AVAILABLE) )
615 // use impulses as new vote
616 if(it.impulse >= 1 && it.impulse <= mapvote_count)
617 if( mapvote_maps_flags[it.impulse - 1] & GTV_AVAILABLE )
619 it.mapvote = it.impulse;
620 MapVote_TouchVotes(it);
628 MapVote_CheckRules_1(); // just count
633 // if mapvote is already running, don't do this initialization again
634 if(mapvote_run) { return; }
636 // don't start mapvote until after playerstats gamereport is sent
637 if(PlayerStats_GameReport_DelayMapVote) { return; }
640 if(MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 1))
649 if(alreadychangedlevel)
652 if(time < mapvote_nextthink)
656 mapvote_nextthink = time + 0.5;
658 if(!mapvote_initialized)
660 if(autocvar_rescan_pending == 1)
662 cvar_set("rescan_pending", "2");
663 localcmd("fs_rescan\nrescan_pending 3\n");
666 else if(autocvar_rescan_pending == 2)
670 else if(autocvar_rescan_pending == 3)
672 // now build missing mapinfo files
673 if(!MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 1))
676 // we're done, start the timer
677 cvar_set("rescan_pending", "0");
680 mapvote_initialized = true;
681 if(DoNextMapOverride(0))
683 if(!autocvar_g_maplist_votable || player_count <= 0)
689 if(autocvar_sv_vote_gametype) { GameTypeVote_Start(); }
690 else if(autocvar_nextmap == "") { MapVote_Init(); }
696 float GameTypeVote_SetGametype(Gametype type)
698 if (MapInfo_CurrentGametype() == type)
701 Gametype tsave = MapInfo_CurrentGametype();
703 MapInfo_SwitchGameType(type);
706 MapInfo_FilterGametype(type, MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
707 if(MapInfo_count > 0)
709 // update lsmaps in case the gametype changed, this way people can easily list maps for it
710 if(lsmaps_reply != "") { strunzone(lsmaps_reply); }
711 lsmaps_reply = strzone(getlsmaps());
712 bprint("Game type successfully switched to ", MapInfo_Type_ToString(type), "\n");
716 bprint("Cannot use this game type: no map for it found\n");
717 MapInfo_SwitchGameType(tsave);
718 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
722 //localcmd("gametype ", MapInfo_Type_ToString(type), "\n");
724 cvar_set("g_maplist", MapInfo_ListAllowedMaps(type, MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags()) );
725 if(autocvar_g_maplist_shuffle)
731 float gametypevote_finished;
732 float GameTypeVote_Finished(float pos)
734 if(!gametypevote || gametypevote_finished)
737 if ( !GameTypeVote_SetGametype(GameTypeVote_Type_FromString(mapvote_maps[pos])) )
739 LOG_TRACE("Selected gametype is not supported by any map");
742 localcmd("sv_vote_gametype_hook_all\n");
743 localcmd("sv_vote_gametype_hook_", mapvote_maps[pos], "\n");
745 gametypevote_finished = true;
750 float GameTypeVote_AddVotable(string nextMode)
753 if ( nextMode == "" || GameTypeVote_Type_FromString(nextMode) == NULL )
755 for(j = 0; j < mapvote_count; ++j)
756 if(mapvote_maps[j] == nextMode)
759 mapvote_maps[mapvote_count] = strzone(nextMode);
760 mapvote_maps_suggested[mapvote_count] = false;
762 mapvote_maps_screenshot_dir[mapvote_count] = 0;
763 mapvote_maps_pakfile[mapvote_count] = strzone("");
764 mapvote_maps_flags[mapvote_count] = GameTypeVote_AvailabilityStatus(nextMode);
772 float GameTypeVote_Start()
775 MapVote_ClearAllVotes();
776 MapVote_UnzoneStrings();
779 mapvote_timeout = time + autocvar_sv_vote_gametype_timeout;
781 mapvote_detail = !autocvar_g_maplist_votable_nodetail;
783 float n = tokenizebyseparator(autocvar_sv_vote_gametype_options, " ");
784 n = min(MAPVOTE_COUNT, n);
786 float really_available, which_available;
787 really_available = 0;
788 which_available = -1;
789 for(j = 0; j < n; ++j)
791 if ( GameTypeVote_AddVotable(argv(j)) )
792 if ( mapvote_maps_flags[j] & GTV_AVAILABLE )
799 mapvote_count_real = mapvote_count;
803 if ( really_available == 0 )
805 if ( mapvote_count > 0 )
806 strunzone(mapvote_maps[0]);
807 mapvote_maps[0] = strzone(MapInfo_Type_ToString(MapInfo_CurrentGametype()));
808 //GameTypeVote_Finished(0);
812 if ( really_available == 1 )
814 //GameTypeVote_Finished(which_available);
815 MapVote_Finished(which_available);
819 mapvote_count_real = mapvote_count;
821 mapvote_keeptwotime = time + autocvar_sv_vote_gametype_keeptwotime;
822 if(mapvote_count_real < 3 || mapvote_keeptwotime <= time)
823 mapvote_keeptwotime = 0;