X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fclient%2Fmapvoting.qc;h=a38bb76cfc5b4bd4300bbcd5a3405f5f765e5c30;hp=cc5fe07b9fd274cd5c5318263e422e597b510d84;hb=7069dc3f41678554d089db582ccf16da1f8874a5;hpb=d75a5f7696842a427e216036cb75bed6cdc95fb7 diff --git a/qcsrc/client/mapvoting.qc b/qcsrc/client/mapvoting.qc index cc5fe07b9f..a38bb76cfc 100644 --- a/qcsrc/client/mapvoting.qc +++ b/qcsrc/client/mapvoting.qc @@ -1,13 +1,21 @@ #include "mapvoting.qh" #include "autocvars.qh" +#include "main.qh" #include "miscfunctions.qh" -#include "defs.qh" #include "hud/_mod.qh" #include "hud/panel/scoreboard.qh" #include +#include +// MapVote (#21) + +void MapVote_Draw_Export(int fh) +{ + // allow saving cvars that aesthetically change the panel into hud skin files + HUD_Write_Cvar("hud_panel_mapvote_highlight_border"); +} int mv_num_maps; @@ -43,7 +51,7 @@ int n_ssdirs; string MapVote_FormatMapItem(int id, string map, float _count, float maxwidth, vector fontsize) { - TC(int, id); + TC(int, id); string pre, post; pre = sprintf("%d. ", id+1); if(mv_detail) @@ -64,7 +72,7 @@ string MapVote_FormatMapItem(int id, string map, float _count, float maxwidth, v vector MapVote_RGB(int id) { - TC(int, id); + TC(int, id); if(!(mv_flags[id] & GTV_AVAILABLE)) return '1 1 1'; if(id == mv_ownvote) @@ -77,7 +85,7 @@ vector MapVote_RGB(int id) void GameTypeVote_DrawGameTypeItem(vector pos, float maxh, float tsize, string gtype, string pic, float _count, int id) { - TC(int, id); + TC(int, id); // Find the correct alpha float alpha; if(!(mv_flags_start[id] & GTV_AVAILABLE)) @@ -189,7 +197,7 @@ void GameTypeVote_DrawGameTypeItem(vector pos, float maxh, float tsize, string g void MapVote_DrawMapItem(vector pos, float isize, float tsize, string map, string pic, float _count, int id) { - TC(int, id); + TC(int, id); vector img_size = '0 0 0'; string label; float text_size; @@ -264,7 +272,7 @@ void MapVote_DrawMapItem(vector pos, float isize, float tsize, string map, strin void MapVote_DrawAbstain(vector pos, float isize, float tsize, float _count, int id) { - TC(int, id); + TC(int, id); vector rgb; float text_size; string label; @@ -281,7 +289,7 @@ void MapVote_DrawAbstain(vector pos, float isize, float tsize, float _count, int vector MapVote_GridVec(vector gridspec, int i, int m) { - TC(int, i); TC(int, m); + TC(int, i); TC(int, m); int r = i % m; return '1 0 0' * (gridspec.x * r) @@ -322,6 +330,7 @@ float MapVote_Selection(vector topleft, vector cellsize, float rows, float colum } vector prev_mousepos; +// draws map vote or gametype vote void MapVote_Draw() { string map; @@ -340,9 +349,11 @@ void MapVote_Draw() if (!autocvar_hud_cursormode) { - vector mpos = mousepos; - if (mpos.x != prev_mousepos.x || mpos.y != prev_mousepos.y) + if (mousepos.x != prev_mousepos.x || mousepos.y != prev_mousepos.y) + { mv_selection_keyboard = 0; + prev_mousepos = mousepos; + } } center = (vid_conwidth - 1)/2; @@ -357,6 +368,11 @@ void MapVote_Draw() ymax -= chat_sizey; hud_fontsize = HUD_GetFontsize("hud_fontsize"); + if (gametypevote) + { + gtv_text_size = hud_fontsize * 1.4; + gtv_text_size_small = hud_fontsize * 1.1; + } pos.y = ymin; pos.z = 0; @@ -457,7 +473,7 @@ void MapVote_Draw() mv_selection = MapVote_Selection(pos, dist, rows, mv_columns); if (mv_top2_time) - mv_top2_alpha = max(0.2, 1 - (time - mv_top2_time)*(time - mv_top2_time)); + mv_top2_alpha = max(0.2, 1 - (time - mv_top2_time) ** 2); void (vector, float, float, string, string, float, float) DrawItem; @@ -489,7 +505,7 @@ void MapVote_Draw() void Cmd_MapVote_MapDownload(int argc) { - TC(int, argc); + TC(int, argc); entity pak; if(argc != 2 || !mv_pk3list) @@ -520,7 +536,7 @@ void Cmd_MapVote_MapDownload(int argc) void MapVote_CheckPK3(string pic, string pk3, int id) { - TC(int, id); + TC(int, id); entity pak; pak = spawn(); pak.netname = pk3; @@ -542,7 +558,7 @@ void MapVote_CheckPK3(string pic, string pk3, int id) void MapVote_CheckPic(string pic, string pk3, int id) { - TC(int, id); + TC(int, id); // never try to retrieve a pic for the "don't care" 'map' if(mv_abstain && id == mv_num_maps - 1) return; @@ -585,7 +601,7 @@ void MapVote_ReadMask() void MapVote_ReadOption(int i) { - TC(int, i); + TC(int, i); string map = strzone(ReadString()); string pk3 = strzone(ReadString()); int j = bound(0, ReadByte(), n_ssdirs - 1); @@ -602,7 +618,7 @@ void MapVote_ReadOption(int i) void GameTypeVote_ReadOption(int i) { - TC(int, i); + TC(int, i); string gt = strzone(ReadString()); mv_maps[i] = gt; @@ -621,7 +637,7 @@ void GameTypeVote_ReadOption(int i) } else { - Gametype type = MapInfo_Type_FromString(gt); + Gametype type = MapInfo_Type_FromString(gt, false); mv_pk3[i] = strzone(MapInfo_Type_ToText(type)); mv_desc[i] = MapInfo_Type_Description(type); } @@ -678,9 +694,6 @@ void MapVote_Init() mapvote_chosenmap = strzone(ReadString()); if ( gametypevote == 2 ) gametypevote = 0; - - gtv_text_size = hud_fontsize*1.4; - gtv_text_size_small = hud_fontsize*1.1; } MapVote_ReadMask(); @@ -708,13 +721,13 @@ void MapVote_Init() void MapVote_SendChoice(int index) { - TC(int, index); + TC(int, index); localcmd(strcat("\nimpulse ", ftos(index+1), "\n")); } int MapVote_MoveLeft(int pos) { - TC(int, pos); + TC(int, pos); int imp; if ( pos < 0 ) imp = mv_num_maps - 1; @@ -726,7 +739,7 @@ int MapVote_MoveLeft(int pos) } int MapVote_MoveRight(int pos) { - TC(int, pos); + TC(int, pos); int imp; if ( pos < 0 ) imp = 0; @@ -738,7 +751,7 @@ int MapVote_MoveRight(int pos) } int MapVote_MoveUp(int pos) { - TC(int, pos); + TC(int, pos); int imp; if ( pos < 0 ) imp = mv_num_maps - 1; @@ -758,7 +771,7 @@ int MapVote_MoveUp(int pos) } int MapVote_MoveDown(int pos) { - TC(int, pos); + TC(int, pos); int imp; if ( pos < 0 ) imp = 0; @@ -775,9 +788,9 @@ int MapVote_MoveDown(int pos) float MapVote_InputEvent(int bInputType, float nPrimary, float nSecondary) { - TC(int, bInputType); - float imp; + TC(int, bInputType); + static int first_digit = 0; if (!mv_active) return false; @@ -789,29 +802,28 @@ float MapVote_InputEvent(int bInputType, float nPrimary, float nSecondary) return true; } + if (bInputType == 0) + { + if (nPrimary == K_ALT) hudShiftState |= S_ALT; + if (nPrimary == K_CTRL) hudShiftState |= S_CTRL; + if (nPrimary == K_SHIFT) hudShiftState |= S_SHIFT; + } + else if (bInputType == 1) + { + if (nPrimary == K_ALT) hudShiftState -= (hudShiftState & S_ALT); + if (nPrimary == K_CTRL) hudShiftState -= (hudShiftState & S_CTRL); + if (nPrimary == K_SHIFT) hudShiftState -= (hudShiftState & S_SHIFT); + + if (nPrimary == K_CTRL) + first_digit = 0; + } + if (bInputType != 0) return false; - if ('0' <= nPrimary && nPrimary <= '9') - { - imp = nPrimary - '0'; - if (imp == 0) imp = 10; - localcmd(strcat("\nimpulse ", ftos(imp), "\n")); - return true; - } + int imp = 0; switch(nPrimary) { - case K_KP_1: localcmd("\nimpulse 1\n"); return true; - case K_KP_2: localcmd("\nimpulse 2\n"); return true; - case K_KP_3: localcmd("\nimpulse 3\n"); return true; - case K_KP_4: localcmd("\nimpulse 4\n"); return true; - case K_KP_5: localcmd("\nimpulse 5\n"); return true; - case K_KP_6: localcmd("\nimpulse 6\n"); return true; - case K_KP_7: localcmd("\nimpulse 7\n"); return true; - case K_KP_8: localcmd("\nimpulse 8\n"); return true; - case K_KP_9: localcmd("\nimpulse 9\n"); return true; - case K_KP_0: localcmd("\nimpulse 10\n"); return true; - case K_RIGHTARROW: mv_selection_keyboard = 1; mv_selection = MapVote_MoveRight(mv_selection); @@ -834,6 +846,27 @@ float MapVote_InputEvent(int bInputType, float nPrimary, float nSecondary) if ( mv_selection_keyboard ) MapVote_SendChoice(mv_selection); return true; + case '1': case K_KP_1: imp = 1; break; + case '2': case K_KP_2: imp = 2; break; + case '3': case K_KP_3: imp = 3; break; + case '4': case K_KP_4: imp = 4; break; + case '5': case K_KP_5: imp = 5; break; + case '6': case K_KP_6: imp = 6; break; + case '7': case K_KP_7: imp = 7; break; + case '8': case K_KP_8: imp = 8; break; + case '9': case K_KP_9: imp = 9; break; + case '0': case K_KP_0: imp = 10; break; + } + + if (imp && hudShiftState & S_CTRL) + { + if (!first_digit) + { + first_digit = imp % 10; + return true; + } + else + imp = first_digit * 10 + (imp % 10); } if (nPrimary == K_MOUSE1) @@ -841,11 +874,14 @@ float MapVote_InputEvent(int bInputType, float nPrimary, float nSecondary) mv_selection_keyboard = 0; mv_selection = mv_mouse_selection; if (mv_selection >= 0) - { imp = min(mv_selection + 1, mv_num_maps); + } + + if (imp) + { + if (imp <= mv_num_maps) localcmd(strcat("\nimpulse ", ftos(imp), "\n")); - return true; - } + return true; } return false;