1 #include "mapvoting.qh"
2 #include "scoreboard.qh"
4 string MapVote_FormatMapItem(int id, string map, float _count, float maxwidth, vector fontsize)
7 pre = sprintf("%d. ", id+1);
11 post = _(" (1 vote)");
12 else if(_count >= 0 && mv_avail[id] == GTV_AVAILABLE)
13 post = sprintf(_(" (%d votes)"), _count);
19 maxwidth -= stringwidth(pre, false, fontsize) + stringwidth(post, false, fontsize);
20 map = textShortenToWidth(map, maxwidth, fontsize, stringwidth_nocolors);
21 return strcat(pre, map, post);
24 string GameTypeVote_DescriptionByID(int id)
26 return MapInfo_Type_Description(MapInfo_Type_FromString(mv_maps[id]));
29 vector MapVote_RGB(int id)
31 if(mv_avail[id] != GTV_AVAILABLE)
35 else if (id == mv_selection)
41 void GameTypeVote_DrawGameTypeItem(vector pos, float maxh, float tsize, string gtype, string pic, float _count, int id)
44 float desc_padding = gtv_text_size.x * 3;
45 float rect_margin = hud_fontsize.y / 2;
46 vector rect_pos = pos - '0.5 0.5 0' * rect_margin;
47 vector rect_size = '1 1 0';
48 rect_size.x = tsize + rect_margin;
49 rect_size.y = maxh + rect_margin;
50 vector rgb = MapVote_RGB(id);
54 if(mv_avail_start[id] != GTV_AVAILABLE)
56 else if ( mv_avail[id] != GTV_AVAILABLE && mv_top2_alpha)
57 alpha = mv_top2_alpha;
61 if(id == mv_selection && mv_avail[id] == GTV_AVAILABLE)
63 drawfill(rect_pos, rect_size, '1 1 1', 0.1, DRAWFLAG_NORMAL);
67 drawfill(rect_pos, rect_size, rgb, 0.1*alpha, DRAWFLAG_NORMAL);
68 drawborderlines(autocvar_scoreboard_border_thickness, rect_pos, rect_size, rgb, alpha, DRAWFLAG_NORMAL);
73 title.message = MapVote_FormatMapItem(id, MapInfo_Type_ToText(MapInfo_Type_FromString(gtype)),
74 _count, tsize, gtv_text_size);
75 title.origin = pos-offset;
77 pos.y += gtv_text_size_small.y;
78 pos.y += gtv_text_size.y/2;
80 maxh -= gtv_text_size.y;
82 entity picent = spawn();
83 picent.origin = pos-offset;
84 picent.maxs = '1 1 0 ' * min(maxh, desc_padding) * 0.8;
86 pos.x += desc_padding;
87 tsize -= desc_padding;
89 string thelabel = GameTypeVote_DescriptionByID(id), ts;
94 float i,n = tokenizebyseparator(thelabel, "\n");
95 for(i = 0; i < n && maxh > (nlines+1)*gtv_text_size_small.y; ++i)
97 getWrappedLine_remaining = argv(i);
98 while(getWrappedLine_remaining && maxh > (nlines+1)*gtv_text_size_small.y)
100 ts = getWrappedLine(tsize, gtv_text_size_small, stringwidth_colors);
105 next.origin = pos-offset;
108 pos.y += gtv_text_size_small.y;
115 maxh -= max(nlines*gtv_text_size_small.y,picent.maxs.y);
118 drawstring(title.origin+offset, title.message, gtv_text_size, rgb, alpha, DRAWFLAG_NORMAL);
121 drawpic(picent.origin+offset, pic, picent.maxs, '1 1 1', alpha, DRAWFLAG_NORMAL);
123 for ( last = title.chain; last ; )
125 drawstring(last.origin+offset, last.message, gtv_text_size_small, '1 1 1', alpha, DRAWFLAG_NORMAL);
135 void MapVote_DrawMapItem(vector pos, float isize, float tsize, string map, string pic, float _count, int id)
137 vector img_size = '0 0 0';
142 isize -= hud_fontsize.y; // respect the text when calculating the image size
144 rgb = MapVote_RGB(id);
147 img_size.x = isize / 0.75; // 4:3 x can be stretched easily, height is defined in isize
149 pos.y = pos.y + img_size.y;
151 label = MapVote_FormatMapItem(id, map, _count, tsize, hud_fontsize);
153 text_size = stringwidth(label, false, hud_fontsize);
156 if (mv_avail[id] != GTV_AVAILABLE && mv_top2_alpha)
157 theAlpha = mv_top2_alpha;
161 pos.x -= text_size*0.5;
162 drawstring(pos, label, hud_fontsize, rgb, theAlpha, DRAWFLAG_NORMAL);
164 pos.x = pos.x + text_size*0.5 - img_size.x*0.5;
165 pos.y = pos.y - img_size.y;
167 pos += autocvar_scoreboard_border_thickness * '1 1 0';
168 img_size -= (autocvar_scoreboard_border_thickness * 2) * '1 1 0';
171 drawfill(pos, img_size, '.5 .5 .5', .7 * theAlpha, DRAWFLAG_NORMAL);
175 if(drawgetimagesize(pic) == '0 0 0')
176 drawpic(pos, draw_UseSkinFor("nopreview_map"), img_size, '1 1 1', theAlpha, DRAWFLAG_NORMAL);
178 drawpic(pos, pic, img_size, '1 1 1', theAlpha, DRAWFLAG_NORMAL);
182 drawborderlines(autocvar_scoreboard_border_thickness, pos, img_size, rgb, theAlpha, DRAWFLAG_NORMAL);
184 drawborderlines(autocvar_scoreboard_border_thickness, pos, img_size, '0 0 0', theAlpha, DRAWFLAG_NORMAL);
186 if(id == mv_selection && mv_avail[id] == GTV_AVAILABLE)
187 drawfill(pos, img_size, '1 1 1', 0.1, DRAWFLAG_NORMAL);
190 void MapVote_DrawAbstain(vector pos, float isize, float tsize, float _count, int id)
196 rgb = MapVote_RGB(id);
198 pos.y = pos.y + hud_fontsize.y;
200 label = MapVote_FormatMapItem(id, _("Don't care"), _count, tsize, hud_fontsize);
202 text_size = stringwidth(label, false, hud_fontsize);
204 pos.x -= text_size*0.5;
205 drawstring(pos, label, hud_fontsize, rgb, 1, DRAWFLAG_NORMAL);
208 vector MapVote_GridVec(vector gridspec, int i, int m)
212 '1 0 0' * (gridspec.x * r)
214 '0 1 0' * (gridspec.y * (i - r) / m);
217 float MapVote_Selection(vector topleft, vector cellsize, float rows, float columns)
222 mv_mouse_selection = -1;
224 for (r = 0; r < rows; ++r)
225 for (c = 0; c < columns; ++c)
227 if (mv_mousepos.x >= topleft.x + cellsize.x * c &&
228 mv_mousepos.x <= topleft.x + cellsize.x * (c + 1) &&
229 mv_mousepos.y >= topleft.y + cellsize.y * r &&
230 mv_mousepos.y <= topleft.y + cellsize.y * (r + 1))
232 mv_mouse_selection = r * columns + c;
237 if (mv_mouse_selection >= mv_num_maps)
238 mv_mouse_selection = -1;
240 if (mv_abstain && mv_mouse_selection < 0)
241 mv_mouse_selection = mv_num_maps;
243 if ( mv_selection_keyboard )
246 return mv_mouse_selection;
259 vector dist = '0 0 0';
264 if (!autocvar_hud_cursormode)
266 vector mpos = mv_mousepos + getmousepos();
267 mpos.x = bound(0, mpos.x, vid_conwidth);
268 mpos.y = bound(0, mpos.y, vid_conheight);
270 if ( mpos.x != mv_mousepos.x || mpos.y != mv_mousepos.y )
271 mv_selection_keyboard = 0;
276 center = (vid_conwidth - 1)/2;
277 xmin = vid_conwidth*0.05; // 5% border must suffice
278 xmax = vid_conwidth - xmin;
280 i = autocvar_con_chatpos; //*autocvar_con_chatsize;
282 ymax = vid_conheight + (i - autocvar_con_chat) * autocvar_con_chatsize;
283 if(i >= 0 || ymax < (vid_conheight*0.5))
284 ymax = vid_conheight - ymin;
286 hud_fontsize = HUD_GetFontsize("hud_fontsize");
291 draw_beginBoldFont();
292 map = ((gametypevote) ? _("Decide the gametype") : _("Vote for a map"));
293 pos.x = center - stringwidth(map, false, '12 0 0');
294 drawstring(pos, map, '24 24 0', '1 1 1', 1, DRAWFLAG_NORMAL);
297 if( mapvote_chosenmap != "" )
299 pos.x = center - stringwidth(mapvote_chosenmap, false, hud_fontsize*1.5/2);
300 drawstring(pos, mapvote_chosenmap, hud_fontsize*1.5, '1 1 1', 1, DRAWFLAG_NORMAL);
301 pos.y += hud_fontsize.y*2;
304 i = ceil(max(0, mv_timeout - time));
305 map = sprintf(_("%d seconds left"), i);
306 pos.x = center - stringwidth(map, false, '8 0 0');
307 drawstring(pos, map, '16 16 0', '0 1 0', 1, DRAWFLAG_NORMAL);
312 // base for multi-column stuff...
317 rows = ceil(mv_num_maps / mv_columns);
319 dist.x = (xmax - xmin) / mv_columns;
320 dist.y = (ymax - pos.y) / rows;
324 tsize = dist.x - hud_fontsize.y;
326 float maxheight = (ymax - pos.y) / 3;
327 if ( isize > maxheight )
329 pos.x += (isize - maxheight)/2;
333 dist.y += hud_fontsize.y;
334 pos.x = ( vid_conwidth - dist.x * mv_columns ) / 2;
339 isize = min(dist.y - 10, 0.75 * tsize);
342 mv_selection = MapVote_Selection(pos, dist, rows, mv_columns);
346 pos.y += (dist.y - isize) / 2;
350 mv_top2_alpha = max(0.2, 1 - (time - mv_top2_time)*(time - mv_top2_time));
352 void (vector, float, float, string, string, float, float) DrawItem;
355 DrawItem = GameTypeVote_DrawGameTypeItem;
357 DrawItem = MapVote_DrawMapItem;
359 for(i = 0; i < mv_num_maps; ++i)
361 tmp = mv_votes[i]; // FTEQCC bug: too many array accesses in the function call screw it up
364 DrawItem(pos + MapVote_GridVec(dist, i, mv_columns), isize, tsize, map, mv_pics[i], tmp, i);
366 DrawItem(pos + MapVote_GridVec(dist, i, mv_columns), isize, tsize, map, "", tmp, i);
372 if(mv_abstain && i < mv_num_maps) {
374 pos.y = ymax + isize - hud_fontsize.y;
375 pos.x = (xmax+xmin)*0.5;
376 MapVote_DrawAbstain(pos, isize, xmax - xmin, tmp, i);
379 drawpic(mv_mousepos, strcat("gfx/menu/", autocvar_menu_skin, "/cursor.tga"), '32 32 0', '1 1 1', 1 - autocvar__menu_alpha, DRAWFLAG_NORMAL);
382 void Cmd_MapVote_MapDownload(float argc)
386 if(argc != 2 || !mv_pk3list)
388 print(_("mv_mapdownload: ^3You're not supposed to use this command on your own!\n"));
392 int id = stof(argv(1));
393 for(pak = mv_pk3list; pak; pak = pak.chain)
394 if(pak.sv_entnum == id)
397 if(!pak || pak.sv_entnum != id) {
398 print(_("^1Error:^7 Couldn't find pak index.\n"));
402 if(PreviewExists(pak.message))
404 mv_preview[id] = true;
407 print(_("Requesting preview...\n"));
408 localcmd(strcat("\ncmd mv_getpicture ", ftos(id), "\n"));
412 void MapVote_CheckPK3(string pic, string pk3, int id)
420 pak.chain = mv_pk3list;
425 localcmd(strcat("\ncurl --pak ", pk3, "; wait; cl_cmd mv_download ", ftos(id), "\n"));
429 Cmd_MapVote_MapDownload(tokenize_console(strcat("mv_download ", ftos(id))));
433 void MapVote_CheckPic(string pic, string pk3, int id)
435 // never try to retrieve a pic for the "don't care" 'map'
436 if(mv_abstain && id == mv_num_maps - 1)
439 if(PreviewExists(pic))
441 mv_preview[id] = true;
444 MapVote_CheckPK3(pic, pk3, id);
447 void MapVote_ReadMask()
450 if ( mv_num_maps < 24 )
455 else if(mv_num_maps < 16)
460 for(i = 0, power = 1; i < mv_num_maps; ++i, power *= 2)
461 mv_avail[i] = (mask & power) ? GTV_AVAILABLE : GTV_FORBIDDEN;
465 for(i = 0; i < mv_num_maps; ++i )
466 mv_avail[i] = ReadByte();
475 precache_sound ("misc/invshot.wav");
478 if(autocvar_hud_cursormode) { setcursormode(1); }
479 else { mv_mousepos = '0.5 0 0' * vid_conwidth + '0 0.5 0' * vid_conheight; }
481 mv_selection_keyboard = 0;
483 for(n_ssdirs = 0; ; ++n_ssdirs)
488 if(n_ssdirs < NUM_SSDIRS)
489 ssdirs[n_ssdirs] = s;
491 n_ssdirs = min(n_ssdirs, NUM_SSDIRS);
493 mv_num_maps = min(MAPVOTE_COUNT, ReadByte());
494 mv_abstain = ReadByte();
496 mv_abstain = 1; // must be 1 for bool-true, makes stuff easier
497 mv_detail = ReadByte();
500 mv_timeout = ReadCoord();
502 gametypevote = ReadByte();
504 float mv_real_num_maps = mv_num_maps - mv_abstain;
508 mapvote_chosenmap = strzone(ReadString());
509 if ( gametypevote == 2 )
512 gtv_text_size = hud_fontsize*1.4;
513 gtv_text_size_small = hud_fontsize*1.1;
515 if (mv_real_num_maps > 8 )
518 mv_columns = min(2, mv_real_num_maps);
522 if (mv_real_num_maps > 16)
524 else if (mv_real_num_maps > 9)
526 else if(mv_real_num_maps > 3)
529 mv_columns = mv_real_num_maps;
533 for(i = 0; i < mv_num_maps; ++i )
534 mv_avail_start[i] = mv_avail[i];
536 // Assume mv_pk3list is world, there should only be 1 mapvote per round
537 mv_pk3list = world; // I'm still paranoid!
539 for(i = 0; i < mv_num_maps; ++i)
543 map = strzone(ReadString());
544 pk3 = strzone(ReadString());
545 j = bound(0, ReadByte(), n_ssdirs - 1);
549 mv_avail[i] = ReadByte();
553 //map = strzone(strcat("gfx/menu/default/gametype_", map));
554 //map = strzone(sprintf("gfx/menu/%s/gametype_%s", autocvar_menu_skin, map));
555 string mv_picpath = sprintf("gfx/menu/%s/gametype_%s", autocvar_menu_skin, map);
556 if(precache_pic(mv_picpath) == "")
557 mv_picpath = strcat("gfx/menu/default/gametype_", map);
558 map = strzone(mv_picpath);
560 mv_preview[i] = PreviewExists(map);
564 map = strzone(strcat(ssdirs[j], "/", map));
566 mv_preview[i] = false;
567 MapVote_CheckPic(map, pk3, i);
571 for(i = 0; i < n_ssdirs; ++i)
572 ssdirs[n_ssdirs] = string_null;
576 void MapVote_SendChoice(float index)
578 localcmd(strcat("\nimpulse ", ftos(index+1), "\n"));
581 int MapVote_MoveLeft(int pos)
585 imp = mv_num_maps - 1;
587 imp = pos < 1 ? mv_num_maps - 1 : pos - 1;
588 if ( mv_avail[imp] != GTV_AVAILABLE && imp != mv_ownvote )
589 imp = MapVote_MoveLeft(imp);
592 int MapVote_MoveRight(int pos)
598 imp = pos >= mv_num_maps - 1 ? 0 : pos + 1;
599 if ( mv_avail[imp] != GTV_AVAILABLE && imp != mv_ownvote )
600 imp = MapVote_MoveRight(imp);
603 int MapVote_MoveUp(int pos)
607 imp = mv_num_maps - 1;
610 imp = pos - mv_columns;
613 imp = floor(mv_num_maps/mv_columns)*mv_columns + pos % mv_columns;
614 if ( imp >= mv_num_maps )
618 if ( mv_avail[imp] != GTV_AVAILABLE && imp != mv_ownvote )
619 imp = MapVote_MoveUp(imp);
622 int MapVote_MoveDown(int pos)
629 imp = pos + mv_columns;
630 if ( imp >= mv_num_maps )
631 imp = imp % mv_columns;
633 if ( mv_avail[imp] != GTV_AVAILABLE && imp != mv_ownvote )
634 imp = MapVote_MoveDown(imp);
638 float MapVote_InputEvent(float bInputType, float nPrimary, float nSecondary)
647 mv_mousepos.x = nPrimary;
648 mv_mousepos.y = nSecondary;
649 mv_selection_keyboard = 0;
656 if ('0' <= nPrimary && nPrimary <= '9')
658 imp = nPrimary - '0';
659 if (imp == 0) imp = 10;
660 localcmd(strcat("\nimpulse ", ftos(imp), "\n"));
665 case K_KP_1: localcmd("\nimpulse 1\n"); return true;
666 case K_KP_2: localcmd("\nimpulse 2\n"); return true;
667 case K_KP_3: localcmd("\nimpulse 3\n"); return true;
668 case K_KP_4: localcmd("\nimpulse 4\n"); return true;
669 case K_KP_5: localcmd("\nimpulse 5\n"); return true;
670 case K_KP_6: localcmd("\nimpulse 6\n"); return true;
671 case K_KP_7: localcmd("\nimpulse 7\n"); return true;
672 case K_KP_8: localcmd("\nimpulse 8\n"); return true;
673 case K_KP_9: localcmd("\nimpulse 9\n"); return true;
674 case K_KP_0: localcmd("\nimpulse 10\n"); return true;
677 mv_selection_keyboard = 1;
678 mv_selection = MapVote_MoveRight(mv_selection);
681 mv_selection_keyboard = 1;
682 mv_selection = MapVote_MoveLeft(mv_selection);
685 mv_selection_keyboard = 1;
686 mv_selection = MapVote_MoveDown(mv_selection);
689 mv_selection_keyboard = 1;
690 mv_selection = MapVote_MoveUp(mv_selection);
695 if ( mv_selection_keyboard )
696 MapVote_SendChoice(mv_selection);
700 if (nPrimary == K_MOUSE1)
702 mv_selection_keyboard = 0;
703 mv_selection = mv_mouse_selection;
704 if (mv_selection >= 0)
706 imp = min(mv_selection + 1, mv_num_maps);
707 localcmd(strcat("\nimpulse ", ftos(imp), "\n"));
715 void MapVote_UpdateMask()
721 void MapVote_UpdateVotes()
724 for(i = 0; i < mv_num_maps; ++i)
726 if(mv_avail[i] == GTV_AVAILABLE)
729 mv_votes[i] = ReadByte();
737 mv_ownvote = ReadByte()-1;
748 MapVote_UpdateMask();
751 MapVote_UpdateVotes();
754 void Net_MapVote_Picture()
756 int type = ReadByte();
757 mv_preview[type] = true;
758 mv_pics[type] = strzone(ReadPicture());