4 string mv_maps[MAPVOTE_COUNT];
5 string mv_pics[MAPVOTE_COUNT];
6 string mv_pk3[MAPVOTE_COUNT];
7 float mv_preview[MAPVOTE_COUNT];
8 float mv_votes[MAPVOTE_COUNT];
21 string MapVote_FormatMapItem(float id, string map, float count, float maxwidth, vector fontsize)
24 pre = sprintf("%d. ", id+1);
28 post = _(" (1 vote)");
30 post = sprintf(_(" (%d votes)"), count);
34 maxwidth -= stringwidth(pre, FALSE, fontsize) + stringwidth(post, FALSE, fontsize);
35 map = textShortenToWidth(map, maxwidth, fontsize, stringwidth_nocolors);
36 return strcat(pre, map, post);
39 vector MapVote_RGB(float id, float count)
45 else if (id == mv_selection)
51 void MapVote_DrawMapItem(vector pos, float isize, float tsize, string map, string pic, float count, float id)
58 isize -= hud_fontsize_y; // respect the text when calculating the image size
60 rgb = MapVote_RGB(id, count);
63 img_size_x = isize / 0.75; // 4:3 x can be stretched easily, height is defined in isize
65 pos_y = pos_y + img_size_y;
67 label = MapVote_FormatMapItem(id, map, count, tsize, hud_fontsize);
69 text_size = stringwidth(label, false, hud_fontsize);
72 if (count < 0 && mv_top2_alpha)
73 theAlpha = mv_top2_alpha;
77 pos_x -= text_size*0.5;
78 drawstring(pos, label, hud_fontsize, rgb, theAlpha, DRAWFLAG_NORMAL);
80 pos_x = pos_x + text_size*0.5 - img_size_x*0.5;
81 pos_y = pos_y - img_size_y;
83 pos += autocvar_scoreboard_border_thickness * '1 1 0';
84 img_size -= (autocvar_scoreboard_border_thickness * 2) * '1 1 0';
87 drawfill(pos, img_size, '.5 .5 .5', .7 * theAlpha, DRAWFLAG_NORMAL);
91 drawpic(pos, pic, img_size, '1 1 1', theAlpha, DRAWFLAG_NORMAL);
95 drawborderlines(autocvar_scoreboard_border_thickness, pos, img_size, rgb, theAlpha, DRAWFLAG_NORMAL);
97 drawborderlines(autocvar_scoreboard_border_thickness, pos, img_size, '0 0 0', theAlpha, DRAWFLAG_NORMAL);
99 if(id == mv_selection && count >= 0)
100 drawfill(pos, img_size, '1 1 1', 0.1, DRAWFLAG_NORMAL);
103 void MapVote_DrawAbstain(vector pos, float isize, float tsize, float count, float id)
109 rgb = MapVote_RGB(id, count);
111 pos_y = pos_y + hud_fontsize_y;
113 label = MapVote_FormatMapItem(id, _("Don't care"), count, tsize, hud_fontsize);
115 text_size = stringwidth(label, false, hud_fontsize);
117 pos_x -= text_size*0.5;
118 drawstring(pos, label, hud_fontsize, rgb, 1, DRAWFLAG_NORMAL);
121 vector MapVote_GridVec(vector gridspec, float i, float m)
126 '1 0 0' * (gridspec_x * r)
128 '0 1 0' * (gridspec_y * (i - r) / m);
131 float MapVote_Selection(vector topleft, vector cellsize, float rows, float columns)
138 for (r = 0; r < rows; ++r)
139 for (c = 0; c < columns; ++c)
141 if (mv_mousepos_x >= topleft_x + cellsize_x * c &&
142 mv_mousepos_x <= topleft_x + cellsize_x * (c + 1) &&
143 mv_mousepos_y >= topleft_y + cellsize_y * r &&
144 mv_mousepos_y <= topleft_y + cellsize_y * (r + 1))
146 cell = r * columns + c;
151 if (cell >= mv_num_maps)
154 if (mv_abstain && cell < 0)
174 mv_mousepos = mv_mousepos + getmousepos();
176 mv_mousepos_x = bound(0, mv_mousepos_x, vid_conwidth);
177 mv_mousepos_y = bound(0, mv_mousepos_y, vid_conheight);
179 center = (vid_conwidth - 1)/2;
180 xmin = vid_conwidth*0.05; // 5% border must suffice
181 xmax = vid_conwidth - xmin;
183 i = autocvar_con_chatpos; //*autocvar_con_chatsize;
185 ymax = vid_conheight + (i - autocvar_con_chat) * autocvar_con_chatsize;
186 if(i >= 0 || ymax < (vid_conheight*0.5))
187 ymax = vid_conheight - ymin;
189 hud_fontsize = HUD_GetFontsize("hud_fontsize");
194 map = _("Vote for a map");
195 pos_x = center - stringwidth(map, false, '12 0 0');
196 drawstring(pos, map, '24 24 0', '1 1 1', 1, DRAWFLAG_NORMAL);
199 i = ceil(max(0, mv_timeout - time));
200 map = sprintf(_("%d seconds left"), i);
201 pos_x = center - stringwidth(map, false, '8 0 0');
202 drawstring(pos, map, '16 16 0', '0 1 0', 1, DRAWFLAG_NORMAL);
206 // base for multi-column stuff...
215 columns = mv_num_maps;
217 rows = ceil(mv_num_maps / columns);
219 dist_x = (xmax - xmin) / columns;
220 dist_y = (ymax - pos_y) / rows;
222 isize = min(dist_y - 10, 0.75 * tsize);
224 mv_selection = MapVote_Selection(pos, dist, rows, columns);
226 pos_x += (xmax - xmin) / (2 * columns);
227 pos_y += (dist_y - isize) / 2;
231 mv_top2_alpha = max(0.2, 1 - (time - mv_top2_time)*(time - mv_top2_time));
233 for(i = 0; i < mv_num_maps; ++i)
235 tmp = mv_votes[i]; // FTEQCC bug: too many array accesses in the function call screw it up
238 MapVote_DrawMapItem(pos + MapVote_GridVec(dist, i, columns), isize, tsize, map, mv_pics[i], tmp, i);
240 MapVote_DrawMapItem(pos + MapVote_GridVec(dist, i, columns), isize, tsize, map, "", tmp, i);
246 if(mv_abstain && i < mv_num_maps) {
248 pos_y = ymax + isize - hud_fontsize_y;
249 pos_x = (xmax+xmin)*0.5;
250 MapVote_DrawAbstain(pos, isize, xmax - xmin, tmp, i);
253 drawpic(mv_mousepos, strcat("gfx/menu/", autocvar_menu_skin, "/cursor.tga"), '32 32 0', '1 1 1', autocvar_hud_panel_fg_alpha, DRAWFLAG_NORMAL);
256 void Cmd_MapVote_MapDownload(float argc)
261 if(argc != 2 || !mv_pk3list)
263 print(_("mv_mapdownload: ^3You're not supposed to use this command on your own!\n"));
268 for(pak = mv_pk3list; pak; pak = pak.chain)
269 if(pak.sv_entnum == id)
272 if(!pak || pak.sv_entnum != id) {
273 print(_("^1Error:^7 Couldn't find pak index.\n"));
277 if(PreviewExists(pak.message))
279 mv_preview[id] = true;
282 print(_("Requesting preview...\n"));
283 localcmd(strcat("\ncmd mv_getpic ", ftos(id), "\n"));
287 void MapVote_CheckPK3(string pic, string pk3, float id)
295 pak.chain = mv_pk3list;
300 localcmd(strcat("\ncurl --pak ", pk3, "; wait; cl_cmd mv_download ", ftos(id), "\n"));
304 Cmd_MapVote_MapDownload(tokenize_console(strcat("mv_download ", ftos(id))));
308 void MapVote_CheckPic(string pic, string pk3, float id)
310 // never try to retrieve a pic for the "don't care" 'map'
311 if(mv_abstain && id == mv_num_maps - 1)
314 if(PreviewExists(pic))
316 mv_preview[id] = true;
319 MapVote_CheckPK3(pic, pk3, id);
323 string ssdirs[NUM_SSDIRS];
330 precache_sound ("misc/invshot.wav");
334 mv_mousepos = '0.5 0 0' * vid_conwidth + '0 0.5 0' * vid_conheight;
337 for(n_ssdirs = 0; ; ++n_ssdirs)
342 if(n_ssdirs < NUM_SSDIRS)
343 ssdirs[n_ssdirs] = s;
345 n_ssdirs = min(n_ssdirs, NUM_SSDIRS);
347 mv_num_maps = min(MAPVOTE_COUNT, ReadByte());
348 mv_abstain = ReadByte();
350 mv_abstain = 1; // must be 1 for bool-true, makes stuff easier
351 mv_detail = ReadByte();
354 mv_timeout = ReadCoord();
357 mv_maps_mask = ReadByte();
359 mv_maps_mask = ReadShort();
361 // Assume mv_pk3list is world, there should only be 1 mapvote per round
362 mv_pk3list = world; // I'm still paranoid!
364 for(i = 0, power = 1; i < mv_num_maps; ++i, power *= 2)
368 if(mv_maps_mask & power)
370 map = strzone(ReadString());
371 pk3 = strzone(ReadString());
372 j = bound(0, ReadByte(), n_ssdirs - 1);
376 map = strzone(strcat(ssdirs[j], "/", map));
379 mv_preview[i] = false;
381 MapVote_CheckPic(map, pk3, i);
385 mv_maps[i] = strzone("if-you-see-this-the-code-is-broken");
386 mv_pk3[i] = strzone("if-you-see-this-the-code-is-broken");
387 mv_pics[i] = strzone("if-you-see-this-the-code-is-broken");
388 mv_preview[i] = false;
392 for(i = 0; i < n_ssdirs; ++i)
393 ssdirs[n_ssdirs] = string_null;
397 float MapVote_InputEvent(float bInputType, float nPrimary, float nSecondary)
407 if ('0' <= nPrimary && nPrimary <= '9')
409 imp = nPrimary - '0';
410 if (imp == 0) imp = 10;
411 localcmd(strcat("\nimpulse ", ftos(imp), "\n"));
416 case K_KP_1: localcmd("\nimpulse 1\n"); return true;
417 case K_KP_2: localcmd("\nimpulse 2\n"); return true;
418 case K_KP_3: localcmd("\nimpulse 3\n"); return true;
419 case K_KP_4: localcmd("\nimpulse 4\n"); return true;
420 case K_KP_5: localcmd("\nimpulse 5\n"); return true;
421 case K_KP_6: localcmd("\nimpulse 6\n"); return true;
422 case K_KP_7: localcmd("\nimpulse 7\n"); return true;
423 case K_KP_8: localcmd("\nimpulse 8\n"); return true;
424 case K_KP_9: localcmd("\nimpulse 9\n"); return true;
425 case K_KP_0: localcmd("\nimpulse 10\n"); return true;
428 if (nPrimary == K_MOUSE1)
429 if (mv_selection >= 0)
431 imp = min(mv_selection + 1, mv_num_maps);
432 localcmd(strcat("\nimpulse ", ftos(imp), "\n"));
439 void MapVote_UpdateMask()
444 oldmask = mv_maps_mask;
446 mv_maps_mask = ReadByte();
448 mv_maps_mask = ReadShort();
450 if(oldmask & mv_maps_mask != oldmask)
451 if(oldmask & mv_maps_mask == mv_maps_mask)
452 sound(world, CH_INFO, "misc_invshot.wav", VOL_BASE, ATTN_NONE);
454 // remove votes that no longer apply
455 for(i = 0, power = 1; i < mv_num_maps; ++i, power *= 2)
456 if not(mv_maps_mask & power)
462 void MapVote_UpdateVotes()
465 for(i = 0, power = 1; i < mv_num_maps; ++i, power *= 2)
467 if(mv_maps_mask & power)
470 mv_votes[i] = ReadByte();
478 mv_ownvote = ReadByte()-1;
491 MapVote_UpdateMask();
494 MapVote_UpdateVotes();
497 void Net_MapVote_Picture()
501 mv_preview[type] = true;
502 mv_pics[type] = strzone(ReadPicture());