]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/client/mapvoting.qc
Merge CLASS and EXTENDS, #define NEW(cname) (spawn##cname())
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / mapvoting.qc
index ab9d36c632926b31ca4e7210ba0feb65e1e2a6a1..588ed534e3aef086c0e9235b5dd5f8cf2048383e 100644 (file)
@@ -1,56 +1,24 @@
-#if defined(CSQC)
-       #include "../dpdefs/csprogsdefs.qh"
-       #include "defs.qh"
-       #include "../dpdefs/keycodes.qh"
-       #include "../common/constants.qh"
-       #include "../common/util.qh"
-       #include "../common/mapinfo.qh"
-       #include "autocvars.qh"
-       #include "main.qh"
-#elif defined(MENUQC)
-#elif defined(SVQC)
-#endif
-
-
-int mv_num_maps;
-
-float mv_active;
-string mv_maps[MAPVOTE_COUNT];
-string mv_pics[MAPVOTE_COUNT];
-string mv_pk3[MAPVOTE_COUNT];
-float mv_preview[MAPVOTE_COUNT];
-float mv_votes[MAPVOTE_COUNT];
-float mv_avail[MAPVOTE_COUNT];
-float mv_avail_start[MAPVOTE_COUNT];
-entity mv_pk3list;
-float mv_abstain;
-float mv_ownvote;
-float mv_detail;
-float mv_timeout;
-float mv_top2_time;
-float mv_top2_alpha;
-
-vector mv_mousepos;
-int mv_selection;
-int mv_columns;
-int mv_mouse_selection;
-int mv_selection_keyboard;
-
-float gametypevote;
-string mapvote_chosenmap;
-vector gtv_text_size;
-vector gtv_text_size_small;
-
-string MapVote_FormatMapItem(int id, string map, float count, float maxwidth, vector fontsize)
+#include "mapvoting.qh"
+#include "_.qh"
+
+#include "hud.qh"
+#include "scoreboard.qh"
+
+#include "../common/mapinfo.qh"
+#include "../common/util.qh"
+
+#include "../dpdefs/keycodes.qh"
+
+string MapVote_FormatMapItem(int id, string map, float _count, float maxwidth, vector fontsize)
 {
        string pre, post;
        pre = sprintf("%d. ", id+1);
        if(mv_detail)
        {
-               if(count == 1)
+               if(_count == 1)
                        post = _(" (1 vote)");
-               else if(count >= 0 && mv_avail[id] == GTV_AVAILABLE)
-                       post = sprintf(_(" (%d votes)"), count);
+               else if(_count >= 0 && mv_avail[id] == GTV_AVAILABLE)
+                       post = sprintf(_(" (%d votes)"), _count);
                else
                        post = "";
        }
@@ -61,7 +29,7 @@ string MapVote_FormatMapItem(int id, string map, float count, float maxwidth, ve
        return strcat(pre, map, post);
 }
 
-string GameTypeVote_DescriptionByID(float id)
+string GameTypeVote_DescriptionByID(int id)
 {
        return MapInfo_Type_Description(MapInfo_Type_FromString(mv_maps[id]));
 }
@@ -78,26 +46,26 @@ vector MapVote_RGB(int id)
                return '1 1 1';
 }
 
-void GameTypeVote_DrawGameTypeItem(vector pos, float maxh, float tsize, string gtype, string pic, float count, int id)
+void GameTypeVote_DrawGameTypeItem(vector pos, float maxh, float tsize, string gtype, string pic, float _count, int id)
 {
        float alpha;
        float desc_padding = gtv_text_size.x * 3;
        float rect_margin = hud_fontsize.y / 2;
        vector rect_pos = pos - '0.5 0.5 0' * rect_margin;
        vector rect_size = '1 1 0';
-       rect_size_x = tsize + rect_margin;
-       rect_size_y = maxh + rect_margin;
+       rect_size.x = tsize + rect_margin;
+       rect_size.y = maxh + rect_margin;
        vector rgb = MapVote_RGB(id);
        vector offset = pos;
        float nlines = 0;
-       
+
        if(mv_avail_start[id] != GTV_AVAILABLE)
                alpha = 0.2;
        else if ( mv_avail[id] != GTV_AVAILABLE && mv_top2_alpha)
                alpha = mv_top2_alpha;
        else
                alpha = 1;
-       
+
        if(id == mv_selection && mv_avail[id] == GTV_AVAILABLE)
        {
                drawfill(rect_pos, rect_size, '1 1 1', 0.1, DRAWFLAG_NORMAL);
@@ -107,29 +75,29 @@ void GameTypeVote_DrawGameTypeItem(vector pos, float maxh, float tsize, string g
                drawfill(rect_pos, rect_size, rgb, 0.1*alpha, DRAWFLAG_NORMAL);
                drawborderlines(autocvar_scoreboard_border_thickness, rect_pos, rect_size, rgb, alpha, DRAWFLAG_NORMAL);
        }
-       
+
        entity title;
        title = spawn();
-       title.message = MapVote_FormatMapItem(id, MapInfo_Type_ToText(MapInfo_Type_FromString(gtype)), 
-                                                                                 count, tsize, gtv_text_size);
+       title.message = MapVote_FormatMapItem(id, MapInfo_Type_ToText(MapInfo_Type_FromString(gtype)),
+                                                                                 _count, tsize, gtv_text_size);
        title.origin = pos-offset;
-       
+
        pos.y += gtv_text_size_small.y;
        pos.y += gtv_text_size.y/2;
-       
+
        maxh -= gtv_text_size.y;
-       
+
        entity picent = spawn();
        picent.origin = pos-offset;
        picent.maxs = '1 1 0 ' * min(maxh, desc_padding) * 0.8;
-       
+
        pos.x += desc_padding;
        tsize -= desc_padding;
-       
+
        string thelabel = GameTypeVote_DescriptionByID(id), ts;
        entity last = title;
        entity next = world;
-       if( thelabel != "") 
+       if( thelabel != "")
        {
                float i,n = tokenizebyseparator(thelabel, "\n");
                for(i = 0; i < n && maxh > (nlines+1)*gtv_text_size_small.y; ++i)
@@ -151,15 +119,15 @@ void GameTypeVote_DrawGameTypeItem(vector pos, float maxh, float tsize, string g
                        }
                }
        }
-       
+
        maxh -= max(nlines*gtv_text_size_small.y,picent.maxs.y);
        if ( maxh > 0 )
                offset.y += maxh/2;
-       drawstring(title.origin+offset, title.message, gtv_text_size, rgb, alpha, DRAWFLAG_NORMAL); 
-       
+       drawstring(title.origin+offset, title.message, gtv_text_size, rgb, alpha, DRAWFLAG_NORMAL);
+
        if(pic != "")
                drawpic(picent.origin+offset, pic, picent.maxs, '1 1 1', alpha, DRAWFLAG_NORMAL);
-       
+
        for ( last = title.chain; last ; )
        {
                drawstring(last.origin+offset, last.message, gtv_text_size_small, '1 1 1', alpha, DRAWFLAG_NORMAL);
@@ -167,12 +135,12 @@ void GameTypeVote_DrawGameTypeItem(vector pos, float maxh, float tsize, string g
                last = last.chain;
                remove(next);
        }
-       
+
        remove(picent);
        remove(title);
 }
 
-void MapVote_DrawMapItem(vector pos, float isize, float tsize, string map, string pic, float count, int id)
+void MapVote_DrawMapItem(vector pos, float isize, float tsize, string map, string pic, float _count, int id)
 {
        vector img_size = '0 0 0';
        vector rgb;
@@ -183,12 +151,12 @@ void MapVote_DrawMapItem(vector pos, float isize, float tsize, string map, strin
 
        rgb = MapVote_RGB(id);
 
-       img_size_y = isize;
-       img_size_x = isize / 0.75; // 4:3 x can be stretched easily, height is defined in isize
+       img_size.y = isize;
+       img_size.x = isize / 0.75; // 4:3 x can be stretched easily, height is defined in isize
 
-       pos_y = pos.y + img_size.y;
+       pos.y = pos.y + img_size.y;
 
-       label = MapVote_FormatMapItem(id, map, count, tsize, hud_fontsize);
+       label = MapVote_FormatMapItem(id, map, _count, tsize, hud_fontsize);
 
        text_size = stringwidth(label, false, hud_fontsize);
 
@@ -201,8 +169,8 @@ void MapVote_DrawMapItem(vector pos, float isize, float tsize, string map, strin
        pos.x -= text_size*0.5;
        drawstring(pos, label, hud_fontsize, rgb, theAlpha, DRAWFLAG_NORMAL);
 
-       pos_x = pos.x + text_size*0.5 - img_size.x*0.5;
-       pos_y = pos.y - img_size.y;
+       pos.x = pos.x + text_size*0.5 - img_size.x*0.5;
+       pos.y = pos.y - img_size.y;
 
        pos += autocvar_scoreboard_border_thickness * '1 1 0';
        img_size -= (autocvar_scoreboard_border_thickness * 2) * '1 1 0';
@@ -227,7 +195,7 @@ void MapVote_DrawMapItem(vector pos, float isize, float tsize, string map, strin
                drawfill(pos, img_size, '1 1 1', 0.1, DRAWFLAG_NORMAL);
 }
 
-void MapVote_DrawAbstain(vector pos, float isize, float tsize, float count, int id)
+void MapVote_DrawAbstain(vector pos, float isize, float tsize, float _count, int id)
 {
        vector rgb;
        float text_size;
@@ -235,9 +203,9 @@ void MapVote_DrawAbstain(vector pos, float isize, float tsize, float count, int
 
        rgb = MapVote_RGB(id);
 
-       pos_y = pos.y + hud_fontsize.y;
+       pos.y = pos.y + hud_fontsize.y;
 
-       label = MapVote_FormatMapItem(id, _("Don't care"), count, tsize, hud_fontsize);
+       label = MapVote_FormatMapItem(id, _("Don't care"), _count, tsize, hud_fontsize);
 
        text_size = stringwidth(label, false, hud_fontsize);
 
@@ -282,7 +250,7 @@ float MapVote_Selection(vector topleft, vector cellsize, float rows, float colum
 
        if ( mv_selection_keyboard )
                return mv_selection;
-       
+
        return mv_mouse_selection;
 }
 
@@ -304,9 +272,9 @@ void MapVote_Draw()
        if (!autocvar_hud_cursormode)
        {
                vector mpos = mv_mousepos + getmousepos();
-               mpos_x = bound(0, mpos.x, vid_conwidth);
-               mpos_y = bound(0, mpos.y, vid_conheight);
-               
+               mpos.x = bound(0, mpos.x, vid_conwidth);
+               mpos.y = bound(0, mpos.y, vid_conheight);
+
                if ( mpos.x != mv_mousepos.x || mpos.y != mv_mousepos.y )
                        mv_selection_keyboard = 0;
                mv_mousepos = mpos;
@@ -325,28 +293,28 @@ void MapVote_Draw()
 
        hud_fontsize = HUD_GetFontsize("hud_fontsize");
 
-       pos_y = ymin;
-       pos_z = 0;
+       pos.y = ymin;
+       pos.z = 0;
 
        draw_beginBoldFont();
        map = ((gametypevote) ? _("Decide the gametype") : _("Vote for a map"));
-       pos_x = center - stringwidth(map, false, '12 0 0');
+       pos.x = center - stringwidth(map, false, '12 0 0');
        drawstring(pos, map, '24 24 0', '1 1 1', 1, DRAWFLAG_NORMAL);
        pos.y += 26;
 
        if( mapvote_chosenmap != "" )
        {
-               pos_x = center - stringwidth(mapvote_chosenmap, false, hud_fontsize*1.5/2);
+               pos.x = center - stringwidth(mapvote_chosenmap, false, hud_fontsize*1.5/2);
                drawstring(pos, mapvote_chosenmap, hud_fontsize*1.5, '1 1 1', 1, DRAWFLAG_NORMAL);
                pos.y += hud_fontsize.y*2;
        }
 
        i = ceil(max(0, mv_timeout - time));
        map = sprintf(_("%d seconds left"), i);
-       pos_x = center - stringwidth(map, false, '8 0 0');
+       pos.x = center - stringwidth(map, false, '8 0 0');
        drawstring(pos, map, '16 16 0', '0 1 0', 1, DRAWFLAG_NORMAL);
        pos.y += 22;
-       pos_x = xmin;
+       pos.x = xmin;
        draw_endBoldFont();
 
        // base for multi-column stuff...
@@ -356,8 +324,8 @@ void MapVote_Draw()
 
        rows = ceil(mv_num_maps / mv_columns);
 
-       dist_x = (xmax - xmin) / mv_columns;
-       dist_y = (ymax - pos.y) / rows;
+       dist.x = (xmax - xmin) / mv_columns;
+       dist.y = (ymax - pos.y) / rows;
 
        if ( gametypevote )
        {
@@ -371,7 +339,7 @@ void MapVote_Draw()
                }
                else
                        dist.y += hud_fontsize.y;
-               pos_x = ( vid_conwidth - dist.x * mv_columns ) / 2;
+               pos.x = ( vid_conwidth - dist.x * mv_columns ) / 2;
        }
        else
        {
@@ -411,8 +379,8 @@ void MapVote_Draw()
 
        if(mv_abstain && i < mv_num_maps) {
                tmp = mv_votes[i];
-               pos_y = ymax + isize - hud_fontsize.y;
-               pos_x = (xmax+xmin)*0.5;
+               pos.y = ymax + isize - hud_fontsize.y;
+               pos.x = (xmax+xmin)*0.5;
                MapVote_DrawAbstain(pos, isize, xmax - xmin, tmp, i);
        }
 
@@ -421,7 +389,6 @@ void MapVote_Draw()
 
 void Cmd_MapVote_MapDownload(float argc)
 {
-       float id;
        entity pak;
 
        if(argc != 2 || !mv_pk3list)
@@ -430,7 +397,7 @@ void Cmd_MapVote_MapDownload(float argc)
                return;
        }
 
-       id = stof(argv(1));
+       int id = stof(argv(1));
        for(pak = mv_pk3list; pak; pak = pak.chain)
                if(pak.sv_entnum == id)
                        break;
@@ -497,7 +464,7 @@ void MapVote_ReadMask()
                        mask = ReadShort();
                else
                        mask = ReadLong();
-               
+
                for(i = 0, power = 1; i < mv_num_maps; ++i, power *= 2)
                        mv_avail[i] = (mask & power) ? GTV_AVAILABLE : GTV_FORBIDDEN;
        }
@@ -508,9 +475,6 @@ void MapVote_ReadMask()
        }
 }
 
-const int NUM_SSDIRS = 4;
-string ssdirs[NUM_SSDIRS];
-int n_ssdirs;
 void MapVote_Init()
 {
        int i, j;
@@ -544,7 +508,7 @@ void MapVote_Init()
        mv_timeout = ReadCoord();
 
        gametypevote = ReadByte();
-       
+
        float mv_real_num_maps = mv_num_maps - mv_abstain;
 
        if(gametypevote)
@@ -555,7 +519,7 @@ void MapVote_Init()
 
                gtv_text_size = hud_fontsize*1.4;
                gtv_text_size_small = hud_fontsize*1.1;
-               
+
                if (mv_real_num_maps > 8 )
                        mv_columns = 3;
                else
@@ -625,7 +589,7 @@ void MapVote_SendChoice(float index)
 int MapVote_MoveLeft(int pos)
 {
        int imp;
-       if ( pos < 0 ) 
+       if ( pos < 0 )
                imp = mv_num_maps - 1;
        else
                imp = pos < 1 ? mv_num_maps - 1 : pos - 1;
@@ -636,7 +600,7 @@ int MapVote_MoveLeft(int pos)
 int MapVote_MoveRight(int pos)
 {
        int imp;
-       if ( pos < 0 ) 
+       if ( pos < 0 )
                imp = 0;
        else
                imp = pos >= mv_num_maps - 1 ? 0 : pos + 1;
@@ -647,7 +611,7 @@ int MapVote_MoveRight(int pos)
 int MapVote_MoveUp(int pos)
 {
        int imp;
-       if ( pos < 0 ) 
+       if ( pos < 0 )
                imp = mv_num_maps - 1;
        else
        {
@@ -666,7 +630,7 @@ int MapVote_MoveUp(int pos)
 int MapVote_MoveDown(int pos)
 {
        int imp;
-       if ( pos < 0 ) 
+       if ( pos < 0 )
                imp = 0;
        else
        {
@@ -688,8 +652,8 @@ float MapVote_InputEvent(float bInputType, float nPrimary, float nSecondary)
 
        if(bInputType == 3)
        {
-               mv_mousepos_x = nPrimary;
-               mv_mousepos_y = nSecondary;
+               mv_mousepos.x = nPrimary;
+               mv_mousepos.y = nSecondary;
                mv_selection_keyboard = 0;
                return true;
        }