1 #include "mapvoting.qh"
4 #include "hud/panel/scoreboard.qh"
6 #include <common/mapinfo.qh>
11 string mv_maps[MAPVOTE_COUNT];
12 string mv_pics[MAPVOTE_COUNT];
13 string mv_pk3[MAPVOTE_COUNT]; // map pk3 name or gametype human readable name
14 string mv_desc[MAPVOTE_COUNT];
15 float mv_preview[MAPVOTE_COUNT];
16 float mv_votes[MAPVOTE_COUNT];
17 float mv_flags[MAPVOTE_COUNT];
18 float mv_flags_start[MAPVOTE_COUNT];
30 int mv_mouse_selection;
31 int mv_selection_keyboard;
34 string mapvote_chosenmap;
36 vector gtv_text_size_small;
38 const int NUM_SSDIRS = 4;
39 string ssdirs[NUM_SSDIRS];
42 string MapVote_FormatMapItem(int id, string map, float _count, float maxwidth, vector fontsize)
46 pre = sprintf("%d. ", id+1);
50 post = _(" (1 vote)");
51 else if(_count >= 0 && (mv_flags[id] & GTV_AVAILABLE))
52 post = sprintf(_(" (%d votes)"), _count);
58 maxwidth -= stringwidth(pre, false, fontsize) + stringwidth(post, false, fontsize);
59 map = textShortenToWidth(map, maxwidth, fontsize, stringwidth_nocolors);
60 return strcat(pre, map, post);
63 vector MapVote_RGB(int id)
66 if(!(mv_flags[id] & GTV_AVAILABLE))
70 else if (id == mv_selection)
76 void GameTypeVote_DrawGameTypeItem(vector pos, float maxh, float tsize, string gtype, string pic, float _count, int id)
79 // Find the correct alpha
81 if(!(mv_flags_start[id] & GTV_AVAILABLE))
82 alpha = 0.2; // The gametype isn't supported by the map
83 else if ( !(mv_flags[id] & GTV_AVAILABLE) && mv_top2_alpha)
84 alpha = mv_top2_alpha; // Fade away if not one of the top 2 choice
86 alpha = 1; // Normal, full alpha
88 // Bounding box details
89 float rect_margin = hud_fontsize.y / 2;
91 pos.x += rect_margin + autocvar_hud_panel_mapvote_highlight_border;
92 pos.y += rect_margin + autocvar_hud_panel_mapvote_highlight_border;
93 maxh -= 2 * (rect_margin + autocvar_hud_panel_mapvote_highlight_border);
94 tsize -= 2 * (rect_margin + autocvar_hud_panel_mapvote_highlight_border);
96 vector rect_pos = pos - '0.5 0.5 0' * rect_margin;
97 vector rect_size = '1 1 0';
98 rect_size.x = tsize + rect_margin;
99 rect_size.y = maxh + rect_margin;
101 // Highlight selected item
102 if(id == mv_selection && (mv_flags[id] & GTV_AVAILABLE))
104 drawfill(rect_pos, rect_size, '1 1 1', 0.1, DRAWFLAG_NORMAL);
107 // Highlight current vote
108 vector rgb = MapVote_RGB(id);
111 drawfill(rect_pos, rect_size, rgb, 0.1*alpha, DRAWFLAG_NORMAL);
112 drawborderlines(autocvar_hud_panel_mapvote_highlight_border, rect_pos, rect_size, rgb, alpha, DRAWFLAG_NORMAL);
117 float title_gap = gtv_text_size.y * 1.4; // distance between the title and the description
121 // Evaluate the image size
122 vector image_size = '1 1 0' * gtv_text_size.x * 3;
123 if ( maxh < image_size.y )
124 image_size = '1 1 0' * maxh;
126 float desc_padding = gtv_text_size.x * 0.6;
127 pos.x += image_size.x + desc_padding;
128 tsize -= image_size.x + desc_padding;
130 // Split the description into lines
133 title.message = MapVote_FormatMapItem(id, mv_pk3[id], _count, tsize, gtv_text_size);
135 string thelabel = mv_desc[id], ts;
141 float i,n = tokenizebyseparator(thelabel, "\n");
142 for(i = 0; i < n && maxh > (nlines+1)*gtv_text_size_small.y; ++i)
144 getWrappedLine_remaining = argv(i);
145 while(getWrappedLine_remaining && maxh > (nlines+1)*gtv_text_size_small.y)
147 ts = getWrappedLine(tsize, gtv_text_size_small, stringwidth_colors);
152 next.origin = pos-offset;
155 pos.y += gtv_text_size_small.y;
162 // Center the contents in the bounding box
163 maxh -= max(nlines*gtv_text_size_small.y,image_size.y);
168 drawstring(offset, title.message, gtv_text_size, rgb, alpha, DRAWFLAG_NORMAL);
172 drawpic('0 1 0'*title_gap+'0.5 0 0'*desc_padding+offset, pic, image_size, '1 1 1', alpha, DRAWFLAG_NORMAL);
174 // Draw the description
175 for ( last = title.chain; last ; )
177 drawstring(last.origin+offset, last.message, gtv_text_size_small, '1 1 1', alpha, DRAWFLAG_NORMAL);
187 void MapVote_DrawMapItem(vector pos, float isize, float tsize, string map, string pic, float _count, int id)
190 vector img_size = '0 0 0';
194 float rect_margin = hud_fontsize.y / 2;
196 pos.x += rect_margin + autocvar_hud_panel_mapvote_highlight_border;
197 pos.y += rect_margin + autocvar_hud_panel_mapvote_highlight_border;
198 isize -= 2 * (rect_margin + autocvar_hud_panel_mapvote_highlight_border);
199 tsize -= 2 * (rect_margin + autocvar_hud_panel_mapvote_highlight_border);
201 vector rect_pos = pos - '0.5 0.5 0' * rect_margin;
202 vector rect_size = '1 1 0';
203 rect_size.x = tsize + rect_margin;
204 rect_size.y = isize + rect_margin;
207 img_size.x = min(tsize, isize * img_ar);
208 img_size.y = img_size.x / img_ar;
209 img_size.y -= hud_fontsize.y;
210 img_size.x = img_size.y * img_ar;
212 pos.y += (isize - img_size.y - hud_fontsize.y) / 2;
214 label = MapVote_FormatMapItem(id, map, _count, tsize, hud_fontsize);
216 text_size = stringwidth(label, false, hud_fontsize);
218 float save_rect_sizex = rect_size.x;
219 rect_size.x = max(img_size.x, text_size) + rect_margin;
220 rect_pos.x += (save_rect_sizex - rect_size.x) / 2;
222 vector text_pos = '0 0 0';
223 text_pos.x = pos.x + (tsize - text_size) / 2;
224 text_pos.y = pos.y + img_size.y;
226 pos.x += (tsize - img_size.x) / 2;
229 if (!(mv_flags[id] & GTV_AVAILABLE) && mv_top2_alpha)
230 theAlpha = mv_top2_alpha;
234 // Highlight selected item
235 if(id == mv_selection && (mv_flags[id] & GTV_AVAILABLE))
236 drawfill(rect_pos, rect_size, '1 1 1', 0.1, DRAWFLAG_NORMAL);
238 // Highlight current vote
239 vector rgb = MapVote_RGB(id);
242 drawfill(rect_pos, rect_size, rgb, 0.1*theAlpha, DRAWFLAG_NORMAL);
243 drawborderlines(autocvar_hud_panel_mapvote_highlight_border, rect_pos, rect_size, rgb, theAlpha, DRAWFLAG_NORMAL);
246 drawstring(text_pos, label, hud_fontsize, rgb, theAlpha, DRAWFLAG_NORMAL);
250 drawfill(pos, img_size, '.5 .5 .5', .7 * theAlpha, DRAWFLAG_NORMAL);
254 if(drawgetimagesize(pic) == '0 0 0')
255 drawpic(pos, draw_UseSkinFor("nopreview_map"), img_size, '1 1 1', theAlpha, DRAWFLAG_NORMAL);
257 drawpic(pos, pic, img_size, '1 1 1', theAlpha, DRAWFLAG_NORMAL);
261 void MapVote_DrawAbstain(vector pos, float isize, float tsize, float _count, int id)
268 rgb = MapVote_RGB(id);
270 label = MapVote_FormatMapItem(id, _("Don't care"), _count, tsize, hud_fontsize);
272 text_size = stringwidth(label, false, hud_fontsize);
274 pos.x -= text_size*0.5;
275 drawstring(pos, label, hud_fontsize, rgb, 1, DRAWFLAG_NORMAL);
278 vector MapVote_GridVec(vector gridspec, int i, int m)
280 TC(int, i); TC(int, m);
283 '1 0 0' * (gridspec.x * r)
285 '0 1 0' * (gridspec.y * (i - r) / m);
288 float MapVote_Selection(vector topleft, vector cellsize, float rows, float columns)
293 mv_mouse_selection = -1;
295 for (r = 0; r < rows; ++r)
296 for (c = 0; c < columns; ++c)
298 if (mv_mousepos.x >= topleft.x + cellsize.x * c &&
299 mv_mousepos.x <= topleft.x + cellsize.x * (c + 1) &&
300 mv_mousepos.y >= topleft.y + cellsize.y * r &&
301 mv_mousepos.y <= topleft.y + cellsize.y * (r + 1))
303 mv_mouse_selection = r * columns + c;
308 if (mv_mouse_selection >= mv_num_maps)
309 mv_mouse_selection = -1;
311 if (mv_abstain && mv_mouse_selection < 0)
312 mv_mouse_selection = mv_num_maps;
314 if ( mv_selection_keyboard )
317 return mv_mouse_selection;
320 vector HUD_GetTableSize_BestItemAR(int item_count, vector psize, float item_aspect);
329 vector dist = '0 0 0';
331 //if(intermission != 2) return;
335 if (!autocvar_hud_cursormode)
337 vector mpos = mv_mousepos + getmousepos();
338 mpos.x = bound(0, mpos.x, vid_conwidth);
339 mpos.y = bound(0, mpos.y, vid_conheight);
341 if ( mpos.x != mv_mousepos.x || mpos.y != mv_mousepos.y )
342 mv_selection_keyboard = 0;
346 center = (vid_conwidth - 1)/2;
347 xmin = vid_conwidth * 0.08;
348 xmax = vid_conwidth - xmin;
350 ymax = vid_conheight - ymin;
352 if(chat_posy + chat_sizey / 2 < vid_conheight / 2)
357 hud_fontsize = HUD_GetFontsize("hud_fontsize");
363 draw_beginBoldFont();
365 map = ((gametypevote) ? _("Decide the gametype") : _("Vote for a map"));
366 pos.x = center - stringwidth(map, false, hud_fontsize * 2) * 0.5;
367 drawstring(pos, map, hud_fontsize * 2, '1 1 1', 1, DRAWFLAG_NORMAL);
368 pos.y += hud_fontsize.y * 2;
370 if( mapvote_chosenmap != "" )
372 pos.y += hud_fontsize.y * 0.25;
373 pos.x = center - stringwidth(mapvote_chosenmap, false, hud_fontsize * 1.5) * 0.5;
374 drawstring(pos, mapvote_chosenmap, hud_fontsize * 1.5, '1 1 1', 1, DRAWFLAG_NORMAL);
375 pos.y += hud_fontsize.y * 1.5;
377 pos.y += hud_fontsize.y * 0.5;
381 i = ceil(max(0, mv_timeout - time));
382 map = sprintf(_("%d seconds left"), i);
383 pos.x = center - stringwidth(map, false, hud_fontsize * 1.5) * 0.5;
384 drawstring(pos, map, hud_fontsize * 1.5, '0 1 0', 1, DRAWFLAG_NORMAL);
385 pos.y += hud_fontsize.y * 1.5;
386 pos.y += hud_fontsize.y * 0.5;
388 HUD_Panel_UpdateCvars();
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, eX * (xmax - xmin) + eY * (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);
489 draw_cursor_normal(mv_mousepos, '1 1 1', 1 - autocvar__menu_alpha);
492 void Cmd_MapVote_MapDownload(int argc)
497 if(argc != 2 || !mv_pk3list)
499 LOG_INFO(_("mv_mapdownload: ^3You're not supposed to use this command on your own!\n"));
503 int id = stof(argv(1));
504 for(pak = mv_pk3list; pak; pak = pak.chain)
505 if(pak.sv_entnum == id)
508 if(!pak || pak.sv_entnum != id) {
509 LOG_INFO(_("^1Error:^7 Couldn't find pak index.\n"));
513 if(PreviewExists(pak.message))
515 mv_preview[id] = true;
518 LOG_INFO(_("Requesting preview...\n"));
519 localcmd(strcat("\ncmd mv_getpicture ", ftos(id), "\n"));
523 void MapVote_CheckPK3(string pic, string pk3, int id)
532 pak.chain = mv_pk3list;
537 localcmd(strcat("\ncurl --pak ", pk3, "; wait; cl_cmd mv_download ", ftos(id), "\n"));
541 Cmd_MapVote_MapDownload(tokenize_console(strcat("mv_download ", ftos(id))));
545 void MapVote_CheckPic(string pic, string pk3, int id)
548 // never try to retrieve a pic for the "don't care" 'map'
549 if(mv_abstain && id == mv_num_maps - 1)
552 if(PreviewExists(pic))
554 mv_preview[id] = true;
557 MapVote_CheckPK3(pic, pk3, id);
560 void MapVote_ReadMask()
563 if ( mv_num_maps < 24 )
568 else if(mv_num_maps < 16)
573 for(i = 0, power = 1; i < mv_num_maps; ++i, power *= 2)
576 mv_flags[i] |= GTV_AVAILABLE;
578 mv_flags[i] &= ~GTV_AVAILABLE;
583 for(i = 0; i < mv_num_maps; ++i )
584 mv_flags[i] = ReadByte();
588 void MapVote_ReadOption(int i)
591 string map = strzone(ReadString());
592 string pk3 = strzone(ReadString());
593 int j = bound(0, ReadByte(), n_ssdirs - 1);
597 mv_flags[i] = GTV_AVAILABLE;
599 string pic = strzone(strcat(ssdirs[j], "/", map));
601 mv_preview[i] = false;
602 MapVote_CheckPic(pic, pk3, i);
605 void GameTypeVote_ReadOption(int i)
608 string gt = strzone(ReadString());
611 mv_flags[i] = ReadByte();
613 string mv_picpath = string_null;
615 if ( mv_flags[i] & GTV_CUSTOM )
617 string name = ReadString();
618 if ( strlen(name) < 1 )
620 mv_pk3[i] = strzone(name);
621 mv_desc[i] = strzone(ReadString());
622 gt = strzone(ReadString());
623 mv_picpath = strzone(ReadString());
624 // "" or " " makes precache_pic crash, string_null doesn't
625 if (strreplace(" ", "", mv_picpath) == "")
627 mv_picpath = string_null;
632 Gametype type = MapInfo_Type_FromString(gt);
633 mv_pk3[i] = strzone(MapInfo_Type_ToText(type));
634 mv_desc[i] = MapInfo_Type_Description(type);
637 if(!mv_picpath || precache_pic(mv_picpath) == "")
639 mv_picpath = sprintf("gfx/menu/%s/gametype_%s", autocvar_menu_skin, gt);
640 if(precache_pic(mv_picpath) == "")
642 mv_picpath = strcat("gfx/menu/default/gametype_", gt);
645 string pic = strzone(mv_picpath);
647 mv_preview[i] = PreviewExists(pic);
653 if(autocvar_hud_cursormode) { setcursormode(1); }
654 else { mv_mousepos = '0.5 0 0' * vid_conwidth + '0 0.5 0' * vid_conheight; }
656 mv_selection_keyboard = 0;
659 for(n_ssdirs = 0; ; ++n_ssdirs)
664 if(n_ssdirs < NUM_SSDIRS)
665 ssdirs[n_ssdirs] = s;
667 n_ssdirs = min(n_ssdirs, NUM_SSDIRS);
669 mv_num_maps = min(MAPVOTE_COUNT, ReadByte());
670 mv_abstain = ReadByte();
672 mv_abstain = 1; // must be 1 for bool-true, makes stuff easier
673 mv_detail = ReadByte();
676 mv_timeout = ReadCoord();
678 gametypevote = ReadByte();
682 mapvote_chosenmap = strzone(ReadString());
683 if ( gametypevote == 2 )
686 gtv_text_size = hud_fontsize*1.4;
687 gtv_text_size_small = hud_fontsize*1.1;
692 for(i = 0; i < mv_num_maps; ++i )
693 mv_flags_start[i] = mv_flags[i];
695 // Assume mv_pk3list is NULL, there should only be 1 mapvote per round
696 mv_pk3list = NULL; // I'm still paranoid!
698 for(i = 0; i < mv_num_maps; ++i)
703 GameTypeVote_ReadOption(i);
705 MapVote_ReadOption(i);
708 for(i = 0; i < n_ssdirs; ++i)
709 ssdirs[n_ssdirs] = string_null;
713 void MapVote_SendChoice(int index)
716 localcmd(strcat("\nimpulse ", ftos(index+1), "\n"));
719 int MapVote_MoveLeft(int pos)
724 imp = mv_num_maps - 1;
726 imp = pos < 1 ? mv_num_maps - 1 : pos - 1;
727 if ( !(mv_flags[imp] & GTV_AVAILABLE) && imp != mv_ownvote )
728 imp = MapVote_MoveLeft(imp);
731 int MapVote_MoveRight(int pos)
738 imp = pos >= mv_num_maps - 1 ? 0 : pos + 1;
739 if ( !(mv_flags[imp] & GTV_AVAILABLE) && imp != mv_ownvote )
740 imp = MapVote_MoveRight(imp);
743 int MapVote_MoveUp(int pos)
748 imp = mv_num_maps - 1;
751 imp = pos - mv_columns;
754 imp = floor(mv_num_maps/mv_columns)*mv_columns + pos % mv_columns;
755 if ( imp >= mv_num_maps )
759 if ( !(mv_flags[imp] & GTV_AVAILABLE) && imp != mv_ownvote )
760 imp = MapVote_MoveUp(imp);
763 int MapVote_MoveDown(int pos)
771 imp = pos + mv_columns;
772 if ( imp >= mv_num_maps )
773 imp = imp % mv_columns;
775 if ( !(mv_flags[imp] & GTV_AVAILABLE) && imp != mv_ownvote )
776 imp = MapVote_MoveDown(imp);
780 float MapVote_InputEvent(int bInputType, float nPrimary, float nSecondary)
790 mv_mousepos.x = nPrimary;
791 mv_mousepos.y = nSecondary;
792 mv_selection_keyboard = 0;
799 if ('0' <= nPrimary && nPrimary <= '9')
801 imp = nPrimary - '0';
802 if (imp == 0) imp = 10;
803 localcmd(strcat("\nimpulse ", ftos(imp), "\n"));
808 case K_KP_1: localcmd("\nimpulse 1\n"); return true;
809 case K_KP_2: localcmd("\nimpulse 2\n"); return true;
810 case K_KP_3: localcmd("\nimpulse 3\n"); return true;
811 case K_KP_4: localcmd("\nimpulse 4\n"); return true;
812 case K_KP_5: localcmd("\nimpulse 5\n"); return true;
813 case K_KP_6: localcmd("\nimpulse 6\n"); return true;
814 case K_KP_7: localcmd("\nimpulse 7\n"); return true;
815 case K_KP_8: localcmd("\nimpulse 8\n"); return true;
816 case K_KP_9: localcmd("\nimpulse 9\n"); return true;
817 case K_KP_0: localcmd("\nimpulse 10\n"); return true;
820 mv_selection_keyboard = 1;
821 mv_selection = MapVote_MoveRight(mv_selection);
824 mv_selection_keyboard = 1;
825 mv_selection = MapVote_MoveLeft(mv_selection);
828 mv_selection_keyboard = 1;
829 mv_selection = MapVote_MoveDown(mv_selection);
832 mv_selection_keyboard = 1;
833 mv_selection = MapVote_MoveUp(mv_selection);
838 if ( mv_selection_keyboard )
839 MapVote_SendChoice(mv_selection);
843 if (nPrimary == K_MOUSE1)
845 mv_selection_keyboard = 0;
846 mv_selection = mv_mouse_selection;
847 if (mv_selection >= 0)
849 imp = min(mv_selection + 1, mv_num_maps);
850 localcmd(strcat("\nimpulse ", ftos(imp), "\n"));
858 void MapVote_UpdateMask()
864 void MapVote_UpdateVotes()
867 for(i = 0; i < mv_num_maps; ++i)
869 if(mv_flags[i] & GTV_AVAILABLE)
872 mv_votes[i] = ReadByte();
880 mv_ownvote = ReadByte()-1;
883 NET_HANDLE(ENT_CLIENT_MAPVOTE, bool isnew)
893 MapVote_UpdateMask();
896 MapVote_UpdateVotes();
899 NET_HANDLE(TE_CSQC_PICTURE, bool isNew)
901 Net_MapVote_Picture();
905 void Net_MapVote_Picture()
907 int type = ReadByte();
908 mv_preview[type] = true;
909 mv_pics[type] = strzone(ReadPicture());