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];
19 string MapVote_FormatMapItem(float id, string map, float count, float maxwidth, vector fontsize)
22 pre = strcat(ftos(id+1), ". ");
26 post = strcat(" (1 vote)");
28 post = strcat(" (", ftos(count), " votes)");
32 maxwidth -= stringwidth(pre, FALSE, fontsize) + stringwidth(post, FALSE, fontsize);
33 map = textShortenToWidth(map, maxwidth, fontsize, stringwidth_nocolors);
34 return strcat(pre, map, post);
37 vector MapVote_RGB(float id)
41 else if (id == mv_selection)
47 void MapVote_DrawMapItem(vector pos, float isize, float tsize, string map, string pic, float count, float id)
54 isize -= hud_fontsize_y; // respect the text when calculating the image size
56 rgb = MapVote_RGB(id);
59 img_size_x = isize / 0.75; // 4:3 x can be stretched easily, height is defined in isize
62 pos_y = pos_y + img_size_y;
64 label = MapVote_FormatMapItem(id, map, count, tsize, hud_fontsize);
66 text_size = stringwidth(label, false, hud_fontsize);
68 pos_x -= text_size*0.5;
69 drawstring(pos, label, hud_fontsize, rgb, 1, DRAWFLAG_NORMAL);
71 pos_x = pos_x + text_size*0.5 - img_size_x*0.5;
72 pos_y = pos_y - img_size_y;
74 pos += hud_border_thickness * '1 1 0';
75 img_size -= (hud_border_thickness * 2) * '1 1 0';
78 drawfill(pos, img_size, '.5 .5 .5', .7, DRAWFLAG_NORMAL);
82 drawpic(pos, pic, img_size, '1 1 1', 1, DRAWFLAG_NORMAL);
85 drawpic(pos + '1 0 0', strcat("gfx/hud/num_", ftos(id+1)), (img_size_y / 5) * '1 1 0', '1 1 1', 0.6, DRAWFLAG_NORMAL);
87 if(id == mv_ownvote || pic == "")
89 drawborderlines(hud_border_thickness, pos, img_size, rgb, 1, DRAWFLAG_NORMAL);
90 drawpic(pos + '1 0 0', strcat("gfx/hud/num_", ftos(id+1)), (img_size_y / 5) * '1 1 0', rgb, 0.6, DRAWFLAG_NORMAL);
94 drawborderlines(hud_border_thickness, pos, img_size, '0 0 0', 1, DRAWFLAG_NORMAL);
95 drawpic(pos + '1 0 0', strcat("gfx/hud/num_", ftos(id+1)), (img_size_y / 5) * '1 1 0', '1 1 1', 0.6, DRAWFLAG_NORMAL);
99 void MapVote_DrawAbstain(vector pos, float isize, float tsize, float count, float id)
105 rgb = MapVote_RGB(id);
108 pos_y = pos_y + hud_fontsize_y;
110 label = MapVote_FormatMapItem(id, "Don't care", count, tsize, hud_fontsize);
112 text_size = stringwidth(label, false, hud_fontsize);
114 pos_x -= text_size*0.5;
115 drawstring(pos, label, hud_fontsize, rgb, 1, DRAWFLAG_NORMAL);
118 vector MapVote_GridVec(vector gridspec, float i, float m)
123 '1 0 0' * (gridspec_x * r)
125 '0 1 0' * (gridspec_y * (i - r) / m);
128 float MapVote_Selection(vector topleft, vector cellsize, float rows, float columns)
135 for (r = 0; r < rows; ++r)
136 for (c = 0; c < columns; ++c)
138 if (mv_mousepos_x >= topleft_x + cellsize_x * c &&
139 mv_mousepos_x <= topleft_x + cellsize_x * (c + 1) &&
140 mv_mousepos_y >= topleft_y + cellsize_y * r &&
141 mv_mousepos_y <= topleft_y + cellsize_y * (r + 1))
143 cell = r * columns + c;
148 if (cell >= mv_num_maps)
151 if (mv_abstain && cell < 0)
171 mv_mousepos = mv_mousepos + getmousepos();
173 mv_mousepos_x = bound(0, mv_mousepos_x, vid_conwidth);
174 mv_mousepos_y = bound(0, mv_mousepos_y, vid_conheight);
176 center = (vid_conwidth - 1)/2;
177 xmin = vid_conwidth*0.05; // 5% border must suffice
178 xmax = vid_conwidth - xmin;
180 i = cvar("con_chatpos"); //*cvar("con_chatsize");
182 ymax = vid_conheight + (i - cvar("con_chat")) * cvar("con_chatsize");
183 if(i >= 0 || ymax < (vid_conheight*0.5))
184 ymax = vid_conheight - ymin;
186 drawfont = hud_bigfont;
187 hud_fontsize = HUD_GetFontsize("hud_fontsize");
191 //pos_x = center - stringwidth("Vote for a map", false) * 0.5 * 24;
192 pos_x = center - stringwidth("Vote for a map", false, '12 0 0');
193 drawstring(pos, "Vote for a map", '24 24 0', '1 1 1', 1, DRAWFLAG_NORMAL);
196 i = ceil(max(0, mv_timeout - time));
197 map = strcat(ftos(i), " seconds left");
198 //pos_x = center - stringwidth(map, false) * 0.5 * 16;
199 pos_x = center - stringwidth(map, false, '8 0 0');
200 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;
230 for(i = 0; i < mv_num_maps; ++i)
232 tmp = mv_votes[i]; // FTEQCC bug: too many array accesses in the function call screw it up
237 MapVote_DrawMapItem(pos + MapVote_GridVec(dist, i, columns), isize, tsize, map, mv_pics[i], tmp, i);
239 MapVote_DrawMapItem(pos + MapVote_GridVec(dist, i, columns), isize, tsize, map, "", tmp, i);
245 if(mv_abstain && i < mv_num_maps) {
247 pos_y = ymax + isize - hud_fontsize_y;
248 pos_x = (xmax+xmin)*0.5;
249 MapVote_DrawAbstain(pos, isize, xmax - xmin, tmp, i);
252 drawpic(mv_mousepos, strcat("gfx/menu/", cvar_string("menu_skin"), "/cursor.tga"), '32 32 0', '1 1 1', hud_alpha_fg, DRAWFLAG_NORMAL);
255 void Cmd_MapVote_MapDownload(float argc)
260 if(argc != 2 || !mv_pk3list)
262 print("mv_mapdownload: ^3You're not supposed to use this command on your own!\n");
267 for(pak = mv_pk3list; pak; pak = pak.chain)
268 if(pak.sv_entnum == id)
271 if(!pak || pak.sv_entnum != id) {
272 print("^1Error:^7 Couldn't find pak index.\n");
276 //print(strcat("^3Adding: ", ftos(id), " - ", pak.message, " - "));
278 if(PreviewExists(pak.message))
280 mv_preview[id] = true;
281 //print("^2Found...\n");
284 print("Requesting preview...\n");
285 localcmd(strcat("\ncmd mv_getpic ", ftos(id), "\n"));
289 void MapVote_CheckPK3(string pic, string pk3, float id)
297 pak.chain = mv_pk3list;
302 localcmd(strcat("\ncurl --pak ", pk3, "; wait; cl_cmd mv_download ", ftos(id), "\n"));
306 Cmd_MapVote_MapDownload(tokenize_console(strcat("mv_download ", ftos(id))));
310 void MapVote_CheckPic(string pic, string pk3, float id)
312 // never try to retrieve a pic for the "don't care" 'map'
313 if(mv_abstain && id == mv_num_maps - 1)
316 if(PreviewExists(pic))
318 mv_preview[id] = true;
321 MapVote_CheckPK3(pic, pk3, id);
325 string ssdirs[NUM_SSDIRS];
332 precache_sound ("misc/invshot.wav");
336 mv_mousepos = '0.5 0 0' * vid_conwidth + '0 0.5 0' * vid_conheight;
339 for(n_ssdirs = 0; ; ++n_ssdirs)
344 if(n_ssdirs < NUM_SSDIRS)
345 ssdirs[n_ssdirs] = s;
347 n_ssdirs = min(n_ssdirs, NUM_SSDIRS);
349 mv_num_maps = min(MAPVOTE_COUNT, ReadByte());
350 mv_abstain = ReadByte();
352 mv_abstain = 1; // must be 1 for bool-true, makes stuff easier
353 mv_detail = ReadByte();
356 mv_timeout = ReadCoord();
359 mv_maps_mask = ReadByte();
361 mv_maps_mask = ReadShort();
363 // Assume mv_pk3list is NULL, there should only be 1 mapvote per round
364 mv_pk3list = NULL; // I'm still paranoid!
366 for(i = 0, power = 1; i < mv_num_maps; ++i, power *= 2)
370 if(mv_maps_mask & power)
372 map = strzone(ReadString());
373 pk3 = strzone(ReadString());
374 j = bound(0, ReadByte(), n_ssdirs - 1);
378 map = strzone(strcat(ssdirs[j], "/", map));
381 mv_preview[i] = false;
383 //print(strcat("RECV: ", map, " in ", pk3, "\n"));
384 MapVote_CheckPic(map, pk3, i);
388 mv_maps[i] = strzone("if-you-see-this-the-code-is-broken");
389 mv_pk3[i] = strzone("if-you-see-this-the-code-is-broken");
390 mv_pics[i] = strzone("if-you-see-this-the-code-is-broken");
391 mv_preview[i] = false;
395 for(i = 0; i < n_ssdirs; ++i)
396 ssdirs[n_ssdirs] = string_null;
400 float MapVote_InputEvent(float bInputType, float nPrimary, float nSecondary)
410 if ('0' <= nPrimary && nPrimary <= '9')
412 imp = nPrimary - '0';
413 if (imp == 0) imp = 10;
414 localcmd(strcat("\nimpulse ", ftos(imp), "\n"));
418 if (nPrimary == K_MOUSE1)
419 if (mv_selection >= 0)
421 imp = min(mv_selection + 1, mv_num_maps);
422 localcmd(strcat("\nimpulse ", ftos(imp), "\n"));
429 void MapVote_UpdateMask()
434 oldmask = mv_maps_mask;
436 mv_maps_mask = ReadByte();
438 mv_maps_mask = ReadShort();
440 if(oldmask & mv_maps_mask != oldmask)
441 if(oldmask & mv_maps_mask == mv_maps_mask)
442 sound(world, CHAN_AUTO, "misc_invshot.wav", VOL_BASE, ATTN_NONE);
444 // remove votes that no longer apply
445 for(i = 0, power = 1; i < mv_num_maps; ++i, power *= 2)
446 if not(mv_maps_mask & power)
450 void MapVote_UpdateVotes()
453 for(i = 0, power = 1; i < mv_num_maps; ++i, power *= 2)
455 if(mv_maps_mask & power)
458 mv_votes[i] = ReadByte();
466 mv_ownvote = ReadByte()-1;
479 MapVote_UpdateMask();
482 MapVote_UpdateVotes();
485 void Net_MapVote_Picture()
489 mv_preview[type] = true;
490 mv_pics[type] = strzone(ReadPicture());