1 #include "mapvoting.qh"
3 #include "autocvars.qh"
4 #include "miscfunctions.qh"
7 #include "hud/panel/scoreboard.qh"
9 #include <common/mapinfo.qh>
14 string mv_maps[MAPVOTE_COUNT];
15 string mv_pics[MAPVOTE_COUNT];
16 string mv_pk3[MAPVOTE_COUNT]; // map pk3 name or gametype human readable name
17 string mv_desc[MAPVOTE_COUNT];
18 float mv_preview[MAPVOTE_COUNT];
19 float mv_votes[MAPVOTE_COUNT];
20 float mv_flags[MAPVOTE_COUNT];
21 float mv_flags_start[MAPVOTE_COUNT];
32 int mv_mouse_selection;
33 int mv_selection_keyboard;
36 string mapvote_chosenmap;
38 vector gtv_text_size_small;
40 const int NUM_SSDIRS = 4;
41 string ssdirs[NUM_SSDIRS];
44 string MapVote_FormatMapItem(int id, string map, float _count, float maxwidth, vector fontsize)
48 pre = sprintf("%d. ", id+1);
52 post = _(" (1 vote)");
53 else if(_count >= 0 && (mv_flags[id] & GTV_AVAILABLE))
54 post = sprintf(_(" (%d votes)"), _count);
60 maxwidth -= stringwidth(pre, false, fontsize) + stringwidth(post, false, fontsize);
61 map = textShortenToWidth(map, maxwidth, fontsize, stringwidth_nocolors);
62 return strcat(pre, map, post);
65 vector MapVote_RGB(int id)
68 if(!(mv_flags[id] & GTV_AVAILABLE))
72 else if (id == mv_selection)
78 void GameTypeVote_DrawGameTypeItem(vector pos, float maxh, float tsize, string gtype, string pic, float _count, int id)
81 // Find the correct alpha
83 if(!(mv_flags_start[id] & GTV_AVAILABLE))
84 alpha = 0.2; // The gametype isn't supported by the map
85 else if ( !(mv_flags[id] & GTV_AVAILABLE) && mv_top2_alpha)
86 alpha = mv_top2_alpha; // Fade away if not one of the top 2 choice
88 alpha = 1; // Normal, full alpha
89 alpha *= panel_fg_alpha;
91 // Bounding box details
92 float rect_margin = hud_fontsize.y / 2;
94 pos.x += rect_margin + autocvar_hud_panel_mapvote_highlight_border;
95 pos.y += rect_margin + autocvar_hud_panel_mapvote_highlight_border;
96 maxh -= 2 * (rect_margin + autocvar_hud_panel_mapvote_highlight_border);
97 tsize -= 2 * (rect_margin + autocvar_hud_panel_mapvote_highlight_border);
99 vector rect_pos = pos - '0.5 0.5 0' * rect_margin;
100 vector rect_size = '1 1 0';
101 rect_size.x = tsize + rect_margin;
102 rect_size.y = maxh + rect_margin;
104 // Highlight selected item
105 if(id == mv_selection && (mv_flags[id] & GTV_AVAILABLE))
107 drawfill(rect_pos, rect_size, '1 1 1', 0.1 * panel_fg_alpha, DRAWFLAG_NORMAL);
110 // Highlight current vote
111 vector rgb = MapVote_RGB(id);
114 drawfill(rect_pos, rect_size, rgb, 0.1 * alpha, DRAWFLAG_NORMAL);
115 drawborderlines(autocvar_hud_panel_mapvote_highlight_border, rect_pos, rect_size, rgb, alpha, DRAWFLAG_NORMAL);
120 float title_gap = gtv_text_size.y * 1.4; // distance between the title and the description
124 // Evaluate the image size
125 vector image_size = '1 1 0' * gtv_text_size.x * 3;
126 if ( maxh < image_size.y )
127 image_size = '1 1 0' * maxh;
129 float desc_padding = gtv_text_size.x * 0.6;
130 pos.x += image_size.x + desc_padding;
131 tsize -= image_size.x + desc_padding;
133 // Split the description into lines
136 title.message = MapVote_FormatMapItem(id, mv_pk3[id], _count, tsize, gtv_text_size);
138 string thelabel = mv_desc[id], ts;
144 float i,n = tokenizebyseparator(thelabel, "\n");
145 for(i = 0; i < n && maxh > (nlines+1)*gtv_text_size_small.y; ++i)
147 getWrappedLine_remaining = argv(i);
148 while(getWrappedLine_remaining && maxh > (nlines+1)*gtv_text_size_small.y)
150 ts = getWrappedLine(tsize, gtv_text_size_small, stringwidth_colors);
155 next.origin = pos-offset;
158 pos.y += gtv_text_size_small.y;
165 // Center the contents in the bounding box
166 maxh -= max(nlines*gtv_text_size_small.y,image_size.y);
171 drawstring(offset, title.message, gtv_text_size, rgb, alpha, DRAWFLAG_NORMAL);
175 drawpic('0 1 0'*title_gap+'0.5 0 0'*desc_padding+offset, pic, image_size, '1 1 1', alpha, DRAWFLAG_NORMAL);
177 // Draw the description
178 for ( last = title.chain; last ; )
180 drawstring(last.origin+offset, last.message, gtv_text_size_small, '1 1 1', alpha, DRAWFLAG_NORMAL);
190 void MapVote_DrawMapItem(vector pos, float isize, float tsize, string map, string pic, float _count, int id)
193 vector img_size = '0 0 0';
197 float rect_margin = hud_fontsize.y / 2;
199 pos.x += rect_margin + autocvar_hud_panel_mapvote_highlight_border;
200 pos.y += rect_margin + autocvar_hud_panel_mapvote_highlight_border;
201 isize -= 2 * (rect_margin + autocvar_hud_panel_mapvote_highlight_border);
202 tsize -= 2 * (rect_margin + autocvar_hud_panel_mapvote_highlight_border);
204 vector rect_pos = pos - '0.5 0.5 0' * rect_margin;
205 vector rect_size = '1 1 0';
206 rect_size.x = tsize + rect_margin;
207 rect_size.y = isize + rect_margin;
210 img_size.x = min(tsize, isize * img_ar);
211 img_size.y = img_size.x / img_ar;
212 img_size.y -= hud_fontsize.y;
213 img_size.x = img_size.y * img_ar;
215 pos.y += (isize - img_size.y - hud_fontsize.y) / 2;
217 label = MapVote_FormatMapItem(id, map, _count, tsize, hud_fontsize);
219 text_size = stringwidth(label, false, hud_fontsize);
221 float save_rect_sizex = rect_size.x;
222 rect_size.x = max(img_size.x, text_size) + rect_margin;
223 rect_pos.x += (save_rect_sizex - rect_size.x) / 2;
225 vector text_pos = '0 0 0';
226 text_pos.x = pos.x + (tsize - text_size) / 2;
227 text_pos.y = pos.y + img_size.y;
229 pos.x += (tsize - img_size.x) / 2;
232 if (!(mv_flags[id] & GTV_AVAILABLE) && mv_top2_alpha)
233 theAlpha = mv_top2_alpha;
236 theAlpha *= panel_fg_alpha;
238 // Highlight selected item
239 if(id == mv_selection && (mv_flags[id] & GTV_AVAILABLE))
240 drawfill(rect_pos, rect_size, '1 1 1', 0.1 * panel_fg_alpha, DRAWFLAG_NORMAL);
242 // Highlight current vote
243 vector rgb = MapVote_RGB(id);
246 drawfill(rect_pos, rect_size, rgb, 0.1 * theAlpha, DRAWFLAG_NORMAL);
247 drawborderlines(autocvar_hud_panel_mapvote_highlight_border, rect_pos, rect_size, rgb, theAlpha, DRAWFLAG_NORMAL);
250 drawstring(text_pos, label, hud_fontsize, rgb, theAlpha, DRAWFLAG_NORMAL);
254 drawfill(pos, img_size, '.5 .5 .5', .7 * theAlpha, DRAWFLAG_NORMAL);
258 if(drawgetimagesize(pic) == '0 0 0')
259 drawpic(pos, draw_UseSkinFor("nopreview_map"), img_size, '1 1 1', theAlpha, DRAWFLAG_NORMAL);
261 drawpic(pos, pic, img_size, '1 1 1', theAlpha, DRAWFLAG_NORMAL);
265 void MapVote_DrawAbstain(vector pos, float isize, float tsize, float _count, int id)
272 rgb = MapVote_RGB(id);
274 label = MapVote_FormatMapItem(id, _("Don't care"), _count, tsize, hud_fontsize);
276 text_size = stringwidth(label, false, hud_fontsize);
278 pos.x -= text_size*0.5;
279 drawstring(pos, label, hud_fontsize, rgb, panel_fg_alpha, DRAWFLAG_NORMAL);
282 vector MapVote_GridVec(vector gridspec, int i, int m)
284 TC(int, i); TC(int, m);
287 '1 0 0' * (gridspec.x * r)
289 '0 1 0' * (gridspec.y * (i - r) / m);
292 float MapVote_Selection(vector topleft, vector cellsize, float rows, float columns)
297 mv_mouse_selection = -1;
299 for (r = 0; r < rows; ++r)
300 for (c = 0; c < columns; ++c)
302 if (mousepos.x >= topleft.x + cellsize.x * c &&
303 mousepos.x <= topleft.x + cellsize.x * (c + 1) &&
304 mousepos.y >= topleft.y + cellsize.y * r &&
305 mousepos.y <= topleft.y + cellsize.y * (r + 1))
307 mv_mouse_selection = r * columns + c;
312 if (mv_mouse_selection >= mv_num_maps)
313 mv_mouse_selection = -1;
315 if (mv_abstain && mv_mouse_selection < 0)
316 mv_mouse_selection = mv_num_maps;
318 if ( mv_selection_keyboard )
321 return mv_mouse_selection;
324 vector prev_mousepos;
333 vector dist = '0 0 0';
335 //if(intermission != 2) return;
339 HUD_Panel_LoadCvars();
341 if (!autocvar_hud_cursormode)
343 vector mpos = mousepos;
344 if (mpos.x != prev_mousepos.x || mpos.y != prev_mousepos.y)
345 mv_selection_keyboard = 0;
348 center = (vid_conwidth - 1)/2;
349 xmin = vid_conwidth * 0.08;
350 xmax = vid_conwidth - xmin;
352 ymax = vid_conheight - ymin;
354 if(chat_posy + chat_sizey / 2 < vid_conheight / 2)
359 hud_fontsize = HUD_GetFontsize("hud_fontsize");
365 draw_beginBoldFont();
367 map = ((gametypevote) ? _("Decide the gametype") : _("Vote for a map"));
368 pos.x = center - stringwidth(map, false, hud_fontsize * 2) * 0.5;
369 drawstring(pos, map, hud_fontsize * 2, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
370 pos.y += hud_fontsize.y * 2;
372 if( mapvote_chosenmap != "" )
374 pos.y += hud_fontsize.y * 0.25;
375 pos.x = center - stringwidth(mapvote_chosenmap, false, hud_fontsize * 1.5) * 0.5;
376 drawstring(pos, mapvote_chosenmap, hud_fontsize * 1.5, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
377 pos.y += hud_fontsize.y * 1.5;
379 pos.y += hud_fontsize.y * 0.5;
383 i = ceil(max(0, mv_timeout - time));
384 map = sprintf(_("%d seconds left"), i);
385 pos.x = center - stringwidth(map, false, hud_fontsize * 1.5) * 0.5;
386 drawstring(pos, map, hud_fontsize * 1.5, '0 1 0', panel_fg_alpha, DRAWFLAG_NORMAL);
387 pos.y += hud_fontsize.y * 1.5;
388 pos.y += hud_fontsize.y * 0.5;
390 // base for multi-column stuff...
391 pos.y += hud_fontsize.y;
394 float abstain_spacing = panel_bg_border + hud_fontsize.y;
398 ymax -= abstain_spacing;
401 // higher than the image itself ratio for mapvote items to reserve space for long map names
402 int item_aspect = (gametypevote) ? 3/1 : 5/3;
403 vector table_size = HUD_GetTableSize_BestItemAR(mv_num_maps, vec2(xmax - xmin, ymax - ymin), item_aspect);
404 mv_columns = table_size.x;
407 dist.x = (xmax - xmin) / mv_columns;
408 dist.y = (ymax - pos.y) / rows;
410 // reduce size of too wide items
411 tmp = vid_conwidth / 3; // max width
415 dist.y = min(dist.y, dist.x / item_aspect);
417 tmp = vid_conheight / 3; // max height
421 dist.x = min(dist.x, dist.y * item_aspect);
424 // reduce size to fix aspect ratio
425 if(dist.x / dist.y > item_aspect)
426 dist.x = dist.y * item_aspect;
428 dist.y = dist.x / item_aspect;
430 // adjust table pos and size according to the new size
432 offset = ((xmax - pos.x) - dist.x * mv_columns) / 2;
433 xmin = pos.x += offset;
435 offset = ((ymax - pos.y) - dist.y * rows) / 2;
438 // override panel_pos and panel_size
441 panel_size.x = xmax - xmin;
442 panel_size.y = ymax - ymin;
447 // FIXME item AR gets slightly changed here...
448 // it's rather hard to avoid it at this point
449 dist.x -= 2 * panel_bg_padding / mv_columns;
450 dist.y -= 2 * panel_bg_padding / rows;
451 xmin = pos.x += panel_bg_padding;
452 ymin = pos.y += panel_bg_padding;
453 xmax -= 2 * panel_bg_padding;
454 ymax -= 2 * panel_bg_padding;
457 mv_selection = MapVote_Selection(pos, dist, rows, mv_columns);
460 mv_top2_alpha = max(0.2, 1 - (time - mv_top2_time)*(time - mv_top2_time));
462 void (vector, float, float, string, string, float, float) DrawItem;
465 DrawItem = GameTypeVote_DrawGameTypeItem;
467 DrawItem = MapVote_DrawMapItem;
469 for(i = 0; i < mv_num_maps; ++i)
471 tmp = mv_votes[i]; // FTEQCC bug: too many array accesses in the function call screw it up
474 DrawItem(pos + MapVote_GridVec(dist, i, mv_columns), dist.y, dist.x, map, mv_pics[i], tmp, i);
476 DrawItem(pos + MapVote_GridVec(dist, i, mv_columns), dist.y, dist.x, map, "", tmp, i);
482 if(mv_abstain && i < mv_num_maps) {
484 pos.y = ymax + abstain_spacing;
485 pos.x = (xmax+xmin)*0.5;
486 MapVote_DrawAbstain(pos, dist.x, xmax - xmin, tmp, i);
490 void Cmd_MapVote_MapDownload(int argc)
495 if(argc != 2 || !mv_pk3list)
497 LOG_INFO(_("mv_mapdownload: ^3You're not supposed to use this command on your own!"));
501 int id = stof(argv(1));
502 for(pak = mv_pk3list; pak; pak = pak.chain)
503 if(pak.sv_entnum == id)
506 if(!pak || pak.sv_entnum != id) {
507 LOG_INFO(_("^1Error:^7 Couldn't find pak index."));
511 if(PreviewExists(pak.message))
513 mv_preview[id] = true;
516 LOG_INFO(_("Requesting preview..."));
517 localcmd(strcat("\ncmd mv_getpicture ", ftos(id), "\n"));
521 void MapVote_CheckPK3(string pic, string pk3, int id)
530 pak.chain = mv_pk3list;
535 localcmd(strcat("\ncurl --pak ", pk3, "; wait; cl_cmd mv_download ", ftos(id), "\n"));
539 Cmd_MapVote_MapDownload(tokenize_console(strcat("mv_download ", ftos(id))));
543 void MapVote_CheckPic(string pic, string pk3, int id)
546 // never try to retrieve a pic for the "don't care" 'map'
547 if(mv_abstain && id == mv_num_maps - 1)
550 if(PreviewExists(pic))
552 mv_preview[id] = true;
555 MapVote_CheckPK3(pic, pk3, id);
558 void MapVote_ReadMask()
561 if ( mv_num_maps < 24 )
566 else if(mv_num_maps < 16)
571 for(i = 0; i < mv_num_maps; ++i)
574 mv_flags[i] |= GTV_AVAILABLE;
576 mv_flags[i] &= ~GTV_AVAILABLE;
581 for(i = 0; i < mv_num_maps; ++i )
582 mv_flags[i] = ReadByte();
586 void MapVote_ReadOption(int i)
589 string map = strzone(ReadString());
590 string pk3 = strzone(ReadString());
591 int j = bound(0, ReadByte(), n_ssdirs - 1);
595 mv_flags[i] = GTV_AVAILABLE;
597 string pic = strzone(strcat(ssdirs[j], "/", map));
599 mv_preview[i] = false;
600 MapVote_CheckPic(pic, pk3, i);
603 void GameTypeVote_ReadOption(int i)
606 string gt = strzone(ReadString());
609 mv_flags[i] = ReadByte();
611 string basetype = "";
613 if ( mv_flags[i] & GTV_CUSTOM )
615 string name = ReadString();
616 if ( strlen(name) < 1 )
618 mv_pk3[i] = strzone(name);
619 mv_desc[i] = strzone(ReadString());
620 basetype = strzone(ReadString());
624 Gametype type = MapInfo_Type_FromString(gt);
625 mv_pk3[i] = strzone(MapInfo_Type_ToText(type));
626 mv_desc[i] = MapInfo_Type_Description(type);
629 string mv_picpath = sprintf("gfx/menu/%s/gametype_%s", autocvar_menu_skin, gt);
630 if(precache_pic(mv_picpath) == "")
632 mv_picpath = strcat("gfx/menu/default/gametype_", gt);
633 if(precache_pic(mv_picpath) == "")
635 mv_picpath = sprintf("gfx/menu/%s/gametype_%s", autocvar_menu_skin, basetype);
636 if(precache_pic(mv_picpath) == "")
638 mv_picpath = strcat("gfx/menu/default/gametype_", basetype);
642 string pic = strzone(mv_picpath);
644 mv_preview[i] = PreviewExists(pic);
650 if(!autocvar_hud_cursormode) mousepos = '0.5 0 0' * vid_conwidth + '0 0.5 0' * vid_conheight;
652 mv_selection_keyboard = 0;
655 for(n_ssdirs = 0; ; ++n_ssdirs)
660 if(n_ssdirs < NUM_SSDIRS)
661 ssdirs[n_ssdirs] = s;
663 n_ssdirs = min(n_ssdirs, NUM_SSDIRS);
665 mv_num_maps = min(MAPVOTE_COUNT, ReadByte());
666 mv_abstain = ReadByte();
668 mv_abstain = 1; // must be 1 for bool-true, makes stuff easier
669 mv_detail = ReadByte();
672 mv_timeout = ReadCoord();
674 gametypevote = ReadByte();
678 mapvote_chosenmap = strzone(ReadString());
679 if ( gametypevote == 2 )
682 gtv_text_size = hud_fontsize*1.4;
683 gtv_text_size_small = hud_fontsize*1.1;
688 for(i = 0; i < mv_num_maps; ++i )
689 mv_flags_start[i] = mv_flags[i];
691 // Assume mv_pk3list is NULL, there should only be 1 mapvote per round
692 mv_pk3list = NULL; // I'm still paranoid!
694 for(i = 0; i < mv_num_maps; ++i)
699 GameTypeVote_ReadOption(i);
701 MapVote_ReadOption(i);
704 for(i = 0; i < n_ssdirs; ++i)
705 ssdirs[n_ssdirs] = string_null;
709 void MapVote_SendChoice(int index)
712 localcmd(strcat("\nimpulse ", ftos(index+1), "\n"));
715 int MapVote_MoveLeft(int pos)
720 imp = mv_num_maps - 1;
722 imp = pos < 1 ? mv_num_maps - 1 : pos - 1;
723 if ( !(mv_flags[imp] & GTV_AVAILABLE) && imp != mv_ownvote )
724 imp = MapVote_MoveLeft(imp);
727 int MapVote_MoveRight(int pos)
734 imp = pos >= mv_num_maps - 1 ? 0 : pos + 1;
735 if ( !(mv_flags[imp] & GTV_AVAILABLE) && imp != mv_ownvote )
736 imp = MapVote_MoveRight(imp);
739 int MapVote_MoveUp(int pos)
744 imp = mv_num_maps - 1;
747 imp = pos - mv_columns;
750 imp = floor(mv_num_maps/mv_columns)*mv_columns + pos % mv_columns;
751 if ( imp >= mv_num_maps )
755 if ( !(mv_flags[imp] & GTV_AVAILABLE) && imp != mv_ownvote )
756 imp = MapVote_MoveUp(imp);
759 int MapVote_MoveDown(int pos)
767 imp = pos + mv_columns;
768 if ( imp >= mv_num_maps )
769 imp = imp % mv_columns;
771 if ( !(mv_flags[imp] & GTV_AVAILABLE) && imp != mv_ownvote )
772 imp = MapVote_MoveDown(imp);
776 float MapVote_InputEvent(int bInputType, float nPrimary, float nSecondary)
786 mousepos.x = nPrimary;
787 mousepos.y = nSecondary;
788 mv_selection_keyboard = 0;
795 if ('0' <= nPrimary && nPrimary <= '9')
797 imp = nPrimary - '0';
798 if (imp == 0) imp = 10;
799 localcmd(strcat("\nimpulse ", ftos(imp), "\n"));
804 case K_KP_1: localcmd("\nimpulse 1\n"); return true;
805 case K_KP_2: localcmd("\nimpulse 2\n"); return true;
806 case K_KP_3: localcmd("\nimpulse 3\n"); return true;
807 case K_KP_4: localcmd("\nimpulse 4\n"); return true;
808 case K_KP_5: localcmd("\nimpulse 5\n"); return true;
809 case K_KP_6: localcmd("\nimpulse 6\n"); return true;
810 case K_KP_7: localcmd("\nimpulse 7\n"); return true;
811 case K_KP_8: localcmd("\nimpulse 8\n"); return true;
812 case K_KP_9: localcmd("\nimpulse 9\n"); return true;
813 case K_KP_0: localcmd("\nimpulse 10\n"); return true;
816 mv_selection_keyboard = 1;
817 mv_selection = MapVote_MoveRight(mv_selection);
820 mv_selection_keyboard = 1;
821 mv_selection = MapVote_MoveLeft(mv_selection);
824 mv_selection_keyboard = 1;
825 mv_selection = MapVote_MoveDown(mv_selection);
828 mv_selection_keyboard = 1;
829 mv_selection = MapVote_MoveUp(mv_selection);
834 if ( mv_selection_keyboard )
835 MapVote_SendChoice(mv_selection);
839 if (nPrimary == K_MOUSE1)
841 mv_selection_keyboard = 0;
842 mv_selection = mv_mouse_selection;
843 if (mv_selection >= 0)
845 imp = min(mv_selection + 1, mv_num_maps);
846 localcmd(strcat("\nimpulse ", ftos(imp), "\n"));
854 void MapVote_UpdateMask()
860 void MapVote_UpdateVotes()
863 for(i = 0; i < mv_num_maps; ++i)
865 if(mv_flags[i] & GTV_AVAILABLE)
868 mv_votes[i] = ReadByte();
876 mv_ownvote = ReadByte()-1;
879 NET_HANDLE(ENT_CLIENT_MAPVOTE, bool isnew)
889 MapVote_UpdateMask();
892 MapVote_UpdateVotes();
895 NET_HANDLE(TE_CSQC_PICTURE, bool isNew)
897 Net_MapVote_Picture();
901 void Net_MapVote_Picture()
903 int type = ReadByte();
904 mv_preview[type] = true;
905 mv_pics[type] = strzone(ReadPicture());