]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
-Added a new hostcache interface:
authorblack <black@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 21 Dec 2004 21:41:58 +0000 (21:41 +0000)
committerblack <black@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 21 Dec 2004 21:41:58 +0000 (21:41 +0000)
 * Ascending und descending sorting by various fields is supported.
 * Its possible to mask entries (substrings or comparisons for numbers).

git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4877 d7cf8633-e32d-0410-b094-e92efae38249

menu.c
netconn.c
netconn.h
prvm_cmds.c

diff --git a/menu.c b/menu.c
index 3bbb5496cc4394687bbce89bc902c423a6c5b746..bfdcce896803bc724d93d4ecf2091c8a11ef8841 100644 (file)
--- a/menu.c
+++ b/menu.c
@@ -3831,8 +3831,8 @@ void M_ServerList_Draw (void)
                M_Print(16, menu_height - 8, m_return_reason);
        y = 48;
        visible = (menu_height - 16 - y) / 8;
-       start = bound(0, slist_cursor - (visible >> 1), hostCacheCount - visible);
-       end = min(start + visible, hostCacheCount);
+       start = bound(0, slist_cursor - (visible >> 1), hostcache_viewcount - visible);
+       end = min(start + visible, hostcache_viewcount);
 
        p = Draw_CachePic("gfx/p_multi.lmp");
        M_DrawPic((640 - p->width) / 2, 4, "gfx/p_multi.lmp");
@@ -3841,8 +3841,8 @@ void M_ServerList_Draw (void)
                for (n = start;n < end;n++)
                {
                        DrawQ_Fill(menu_x, menu_y + y, 640, 16, n == slist_cursor ? (0.5 + 0.2 * sin(realtime * M_PI)) : 0, 0, 0, 0.5, 0);
-                       M_Print(0, y, hostcache[n].line1);y += 8;
-                       M_Print(0, y, hostcache[n].line2);y += 8;
+                       M_Print(0, y, hostcache_viewset[n]->line1);y += 8;
+                       M_Print(0, y, hostcache_viewset[n]->line2);y += 8;
                }
        }
        else if (realtime - masterquerytime < 3)
@@ -3872,20 +3872,20 @@ void M_ServerList_Key(int k, char ascii)
                S_LocalSound ("sound/misc/menu1.wav");
                slist_cursor--;
                if (slist_cursor < 0)
-                       slist_cursor = hostCacheCount - 1;
+                       slist_cursor = hostcache_viewcount - 1;
                break;
 
        case K_DOWNARROW:
        case K_RIGHTARROW:
                S_LocalSound ("sound/misc/menu1.wav");
                slist_cursor++;
-               if (slist_cursor >= hostCacheCount)
+               if (slist_cursor >= hostcache_viewcount)
                        slist_cursor = 0;
                break;
 
        case K_ENTER:
                S_LocalSound ("sound/misc/menu2.wav");
-               Cbuf_AddText(va("connect \"%s\"\n", hostcache[slist_cursor].cname));
+               Cbuf_AddText(va("connect \"%s\"\n", hostcache_viewset[slist_cursor]->info.cname));
                break;
 
        default:
index e3fe3123a17369ce93d596ff566e8c3e24db504d..196288fdd51c41deb73623cbb50211eaed0472ef 100755 (executable)
--- a/netconn.c
+++ b/netconn.c
@@ -72,9 +72,6 @@ int masterreplycount = 0;
 int serverquerycount = 0;
 int serverreplycount = 0;
 
-int hostCacheCount = 0;
-hostcache_t hostcache[HOSTCACHESIZE];
-
 static qbyte sendbuffer[NET_HEADERSIZE+NET_MAXMESSAGE];
 static qbyte readbuffer[NET_HEADERSIZE+NET_MAXMESSAGE];
 
@@ -91,6 +88,192 @@ cvar_t sv_netport = {0, "port", "26000"};
 cvar_t net_address = {0, "net_address", "0.0.0.0"};
 //cvar_t net_netaddress_ipv6 = {0, "net_address_ipv6", "[0:0:0:0:0:0:0:0]"};
 
+// HostCache interface
+hostcache_mask_t               hostcache_currentmask;
+hostcache_infofield_t  hostcache_sortbyfield;
+qboolean                               hostcache_sortdescending;
+
+int                    hostcache_viewcount = 0;
+hostcache_t    *hostcache_viewset[HOSTCACHE_VIEWCACHESIZE];
+
+int                    hostcache_cachecount;
+hostcache_t hostcache_cache[HOSTCACHE_TOTALSIZE];
+
+qboolean       hostcache_consoleoutput;
+
+// helper function to insert a value into the viewset
+// spare entries will be removed
+static void _HostCache_VS_Insert( int index, hostcache_t *entry )
+{
+    int start;
+       for( start = index, index = hostcache_viewcount; index > start; index-- )
+               hostcache_viewset[index] = hostcache_viewset[index - 1];
+       if( ++hostcache_viewcount > HOSTCACHE_VIEWCACHESIZE )
+               hostcache_viewcount = HOSTCACHE_VIEWCACHESIZE;
+       hostcache_viewset[start] = entry;
+}
+
+// we suppose hostcache_viewcount to be valid, ie > 0
+static void _HostCache_VS_Remove( int index )
+{
+       for( --hostcache_viewcount; index < hostcache_viewcount; index++ )
+               hostcache_viewset[index] = hostcache_viewset[index + 1];
+}
+
+// returns true if A should be inserted before B
+static qboolean _HostCache_SortTest( hostcache_t *A, hostcache_t *B )
+{
+       int result; // > 0 if for numbers A > B and for text if A < B 
+
+       if( hostcache_sortbyfield == HCIF_PING )
+               result = A->info.ping - B->info.ping;
+       else if( hostcache_sortbyfield == HCIF_MAXPLAYERS )
+               result = A->info.maxplayers - B->info.maxplayers;
+       else if( hostcache_sortbyfield == HCIF_NUMPLAYERS )
+               result = A->info.numplayers - B->info.numplayers;
+       else if( hostcache_sortbyfield == HCIF_PROTOCOL )
+               result = A->info.protocol - B->info.protocol;
+       else if( hostcache_sortbyfield == HCIF_CNAME )
+               result = strcmp( B->info.cname, A->info.cname );
+       else if( hostcache_sortbyfield == HCIF_GAME )
+               result = strcmp( B->info.game, A->info.game );
+       else if( hostcache_sortbyfield == HCIF_MAP )
+               result = strcmp( B->info.map, A->info.map );
+       else if( hostcache_sortbyfield == HCIF_MOD )
+               result = strcmp( B->info.mod, A->info.mod );
+       else if( hostcache_sortbyfield == HCIF_NAME )
+               result = strcmp( B->info.name, A->info.name );
+       
+       if( result > 0 && hostcache_sortdescending)
+               return true;
+       return false;
+}
+
+static qboolean _hc_testint( int A, hostcache_infofield_t op, int B )
+{
+       int diff;
+
+       diff = A - B;
+       switch( hostcache_currentmask.pingtest ) {
+                       case HCMO_GREATER:
+                               if( !diff )
+                                       return false;
+                       case HCMO_GREATEREQUAL:
+                               if( diff < 0 )
+                                       return false;
+                               break;
+                       case HCMO_EQUAL:
+                               if( diff )
+                                       return false;
+                               break;
+                       case HCMO_LESS:
+                               if( !diff )
+                                       return false;
+                       case HCMO_LESSEQUAL:
+                               if( diff > 0 )
+                                       return false;
+                               break;
+       }
+       return true;
+}
+
+static qboolean _HostCache_TestMask( hostcache_info_t *info )
+{
+       if( !_hc_testint( info->ping, hostcache_currentmask.pingtest, hostcache_currentmask.info.ping ) )
+               return false;
+       if( !_hc_testint( info->maxplayers, hostcache_currentmask.maxplayerstest, hostcache_currentmask.info.maxplayers ) )
+               return false;
+       if( !_hc_testint( info->numplayers, hostcache_currentmask.numplayerstest, hostcache_currentmask.info.numplayers ) )
+               return false;
+       if( !_hc_testint( info->protocol, hostcache_currentmask.protocoltest, hostcache_currentmask.info.protocol ))
+               return false;
+       if( *hostcache_currentmask.info.cname
+               && !strstr( info->cname, hostcache_currentmask.info.cname ) )
+               return false;
+       if( *hostcache_currentmask.info.game
+               && !strstr( info->game, hostcache_currentmask.info.game ) )
+               return false;
+       if( *hostcache_currentmask.info.mod
+               && !strstr( info->mod, hostcache_currentmask.info.mod ) )
+               return false;
+       if( *hostcache_currentmask.info.map
+               && !strstr( info->map, hostcache_currentmask.info.map ) )
+               return false;
+       if( *hostcache_currentmask.info.name
+               && !strstr( info->name, hostcache_currentmask.info.name ) )
+               return false;
+       return true;
+}
+
+static void _HostCache_Insert( hostcache_t *entry )
+{
+       int start, end, size;
+       if( hostcache_viewcount == HOSTCACHE_VIEWCACHESIZE )
+               return;
+       // now check whether it passes through mask
+       if( !_HostCache_TestMask( &entry->info ) )
+               return;
+
+       if( !hostcache_viewcount ) {
+               _HostCache_VS_Insert( 0, entry );
+               return;
+       }
+       // ok, insert it, we just need to find out where exactly:
+
+       // two special cases
+       // check whether to insert it as new first item
+       if( _HostCache_SortTest( entry, hostcache_viewset[0] ) ) {
+               _HostCache_VS_Insert( 0, entry );
+               return;
+       } // check whether to insert it as new last item
+       else if( !_HostCache_SortTest( entry, hostcache_viewset[hostcache_viewcount - 1] ) ) {
+               _HostCache_VS_Insert( hostcache_viewcount, entry );
+               return;
+       }
+       start = 1;
+       end = hostcache_viewcount - 1;
+       while( (size = start - end) > 0 )
+               // test the item that lies in the middle between start and end
+               if( _HostCache_SortTest( entry, hostcache_viewset[(start + end) / 2] ) )
+                       // the item has to be in the upper half
+                       end = (start + end) / 2 - 1;
+               else 
+                       // the item has to be in the lower half
+                       start = (start + end) / 2 + 1;
+       _HostCache_VS_Insert( start + 1, entry );
+}
+
+void HostCache_RebuildViewSet(void)
+{
+       int i;
+       
+       hostcache_viewcount = 0;
+       for( i = 0 ; i < hostcache_cachecount ; i++ )
+               if( hostcache_cache[i].finished )
+                       _HostCache_Insert( &hostcache_cache[i] );
+}
+
+void HostCache_ResetMask(void)
+{
+       memset( &hostcache_currentmask, 0, sizeof( hostcache_mask_t ) );
+}
+
+
+void HostCache_QueryList(void)
+{
+       masterquerytime = realtime;
+       masterquerycount = 0;
+       masterreplycount = 0;
+       serverquerycount = 0;
+       serverreplycount = 0;
+       hostcache_cachecount = 0;
+       hostcache_viewcount = 0;
+       hostcache_consoleoutput = false;
+       NetConn_QueryMasters();
+}
+
+// rest
+
 int NetConn_Read(lhnetsocket_t *mysocket, void *data, int maxlength, lhnetaddress_t *peeraddress)
 {
        int length = LHNET_Read(mysocket, data, maxlength, peeraddress);
@@ -620,13 +803,6 @@ int NetConn_IsLocalGame(void)
        return false;
 }
 
-static struct
-{
-       double senttime;
-       lhnetaddress_t peeraddress;
-}
-pingcache[HOSTCACHESIZE];
-
 int NetConn_ClientParsePacket(lhnetsocket_t *mysocket, qbyte *data, int length, lhnetaddress_t *peeraddress)
 {
        int ret, c, control;
@@ -680,136 +856,104 @@ int NetConn_ClientParsePacket(lhnetsocket_t *mysocket, qbyte *data, int length,
                }
                if (length >= 13 && !memcmp(string, "infoResponse\x0A", 13))
                {
-                       int i, j, c, n, users, maxusers;
-                       char game[32], mod[32], map[32], name[128];
+                       hostcache_info_t *info;
+                       int i, n;
                        double pingtime;
-                       hostcache_t temp;
+       
                        string += 13;
                        // hostcache only uses text addresses
                        LHNETADDRESS_ToString(peeraddress, cname, sizeof(cname), true);
-                       if ((s = SearchInfostring(string, "gamename"     )) != NULL) strlcpy(game, s, sizeof (game));else game[0] = 0;
-                       if ((s = SearchInfostring(string, "modname"      )) != NULL) strlcpy(mod , s, sizeof (mod ));else mod[0]  = 0;
-                       if ((s = SearchInfostring(string, "mapname"      )) != NULL) strlcpy(map , s, sizeof (map ));else map[0]  = 0;
-                       if ((s = SearchInfostring(string, "hostname"     )) != NULL) strlcpy(name, s, sizeof (name));else name[0] = 0;
-                       if ((s = SearchInfostring(string, "protocol"     )) != NULL) c = atoi(s);else c = -1;
-                       if ((s = SearchInfostring(string, "clients"      )) != NULL) users = atoi(s);else users = 0;
-                       if ((s = SearchInfostring(string, "sv_maxclients")) != NULL) maxusers = atoi(s);else maxusers = 0;
                        // search the cache for this server and update it
-                       for (n = 0; n < hostCacheCount; n++)
-                       {
-                               if (!strcmp(cname, hostcache[n].cname))
-                               {
-                                       if (hostcache[n].ping == 100000)
-                                               serverreplycount++;
-                                       pingtime = (int)((realtime - hostcache[n].querytime) * 1000.0);
-                                       pingtime = bound(0, pingtime, 9999);
-                                       // update the ping
-                                       hostcache[n].ping = pingtime;
-                                       // build description strings for the things users care about
-                                       snprintf(hostcache[n].line1, sizeof(hostcache[n].line1), "%5d%c%3u/%3u %-65.65s", (int)pingtime, c != NET_PROTOCOL_VERSION ? '*' : ' ', users, maxusers, name);
-                                       snprintf(hostcache[n].line2, sizeof(hostcache[n].line2), "%-21.21s %-19.19s %-17.17s %-20.20s", cname, game, mod, map);
-                                       // if ping is especially high, display it as such
-                                       if (pingtime >= 300)
-                                       {
-                                               // orange numbers (lower block)
-                                               for (i = 0;i < 5;i++)
-                                                       if (hostcache[n].line1[i] != ' ')
-                                                               hostcache[n].line1[i] += 128;
-                                       }
-                                       else if (pingtime >= 200)
-                                       {
-                                               // yellow numbers (in upper block)
-                                               for (i = 0;i < 5;i++)
-                                                       if (hostcache[n].line1[i] != ' ')
-                                                               hostcache[n].line1[i] -= 30;
-                                       }
-                                       // if not in the slist menu we should print the server to console
-                                       if (m_state != m_slist)
-                                               Con_Printf("%s\n%s\n", hostcache[n].line1, hostcache[n].line2);
-                                       // and finally, re-sort the list
-                                       for (i = 0;i < hostCacheCount;i++)
-                                       {
-                                               for (j = i + 1;j < hostCacheCount;j++)
-                                               {
-                                                       //if (strcmp(hostcache[j].name, hostcache[i].name) < 0)
-                                                       if (hostcache[i].ping > hostcache[j].ping)
-                                                       {
-                                                               memcpy(&temp, &hostcache[j], sizeof(hostcache_t));
-                                                               memcpy(&hostcache[j], &hostcache[i], sizeof(hostcache_t));
-                                                               memcpy(&hostcache[i], &temp, sizeof(hostcache_t));
-                                                       }
-                                               }
-                                       }
+                       for( n = 0; n < hostcache_cachecount; n++ ) {
+                               if( !strcmp( cname, hostcache_cache[n].info.cname ) )
                                        break;
-                               }
                        }
+                       if( n == hostcache_cachecount )
+                               return true;
+
+                       info = &hostcache_cache[n].info;
+                       if ((s = SearchInfostring(string, "gamename"     )) != NULL) strlcpy(info->game, s, sizeof (info->game));else info->game[0] = 0;
+                       if ((s = SearchInfostring(string, "modname"      )) != NULL) strlcpy(info->mod , s, sizeof (info->mod ));else info->mod[0]  = 0;
+                       if ((s = SearchInfostring(string, "mapname"      )) != NULL) strlcpy(info->map , s, sizeof (info->map ));else info->map[0]  = 0;
+                       if ((s = SearchInfostring(string, "hostname"     )) != NULL) strlcpy(info->name, s, sizeof (info->name));else info->name[0] = 0;
+                       if ((s = SearchInfostring(string, "protocol"     )) != NULL) info->protocol = atoi(s);else info->protocol = -1;
+                       if ((s = SearchInfostring(string, "clients"      )) != NULL) info->numplayers = atoi(s);else info->numplayers = 0;
+                       if ((s = SearchInfostring(string, "sv_maxclients")) != NULL) info->maxplayers = atoi(s);else info->maxplayers  = 0;
+
+                       if (info->ping == 100000)
+                                       serverreplycount++;
+       
+                       pingtime = (int)((realtime - hostcache_cache[n].querytime) * 1000.0);
+                       pingtime = bound(0, pingtime, 9999);
+                       // update the ping
+                       info->ping = pingtime;
+
+                       // legacy/old stuff move it to the menu ASAP
+                       
+                       // build description strings for the things users care about
+                       snprintf(hostcache_cache[n].line1, sizeof(hostcache_cache[n].line1), "%5d%c%3u/%3u %-65.65s", (int)pingtime, info->protocol != NET_PROTOCOL_VERSION ? '*' : ' ', info->numplayers, info->maxplayers, info->name);
+                       snprintf(hostcache_cache[n].line2, sizeof(hostcache_cache[n].line2), "%-21.21s %-19.19s %-17.17s %-20.20s", info->cname, info->game, info->mod, info->map);
+                       // if ping is especially high, display it as such
+                       if (pingtime >= 300)
+                       {
+                               // orange numbers (lower block)
+                               for (i = 0;i < 5;i++)
+                                       if (hostcache_cache[n].line1[i] != ' ')
+                                               hostcache_cache[n].line1[i] += 128;
+                       }
+                       else if (pingtime >= 200)
+                       {
+                               // yellow numbers (in upper block)
+                               for (i = 0;i < 5;i++)
+                                       if (hostcache_cache[n].line1[i] != ' ')
+                                               hostcache_cache[n].line1[i] -= 30;
+                       }
+                       // if not in the slist menu we should print the server to console
+                       if( hostcache_consoleoutput )
+                               Con_Printf("%s\n%s\n", hostcache_cache[n].line1, hostcache_cache[n].line2);
+                       // and finally, update the view set
+                       if( hostcache_cache[n].finished ) {
+                _HostCache_VS_Remove( n );
+                               _HostCache_Insert( &hostcache_cache[n] );
+                       } else
+                               _HostCache_Insert( &hostcache_cache[n] );
+                       hostcache_cache[n].finished = true;
+       
                        return true;
                }
-               if (!strncmp(string, "getserversResponse\\", 19) && hostCacheCount < HOSTCACHESIZE)
+               if (!strncmp(string, "getserversResponse\\", 19) && hostcache_cachecount < HOSTCACHE_TOTALSIZE)
                {
-                       int i, n, j;
-                       hostcache_t temp;
                        // Extract the IP addresses
                        data += 18;
                        length -= 18;
                        masterreplycount++;
-                       if (m_state != m_slist)
+                       if (hostcache_consoleoutput)
                                Con_Print("received server list...\n");
                        while (length >= 7 && data[0] == '\\' && (data[1] != 0xFF || data[2] != 0xFF || data[3] != 0xFF || data[4] != 0xFF) && data[5] * 256 + data[6] != 0)
                        {
+                               serverquerycount++;
+       
                                snprintf (ipstring, sizeof (ipstring), "%u.%u.%u.%u:%u", data[1], data[2], data[3], data[4], (data[5] << 8) | data[6]);
                                if (developer.integer)
-                                       Con_Printf("Requesting info from server %s\n", ipstring);
+                                       Con_Printf("Requesting info from server %s\n", ipstring);                               
+                               if( hostcache_cachecount == HOSTCACHE_TOTALSIZE )
+                                               // ignore the rest of the message since there wont magically disappear entries
+                                               break;
+                                               
                                LHNETADDRESS_FromString(&svaddress, ipstring, 0);
                                NetConn_WriteString(mysocket, "\377\377\377\377getinfo", &svaddress);
-
-
-                               // add to slist (hostCache)
-                               // search the cache for this server
-                               for (n = 0; n < hostCacheCount; n++)
-                                       if (!strcmp(ipstring, hostcache[n].cname))
-                                               break;
-                               // add it or update it
-                               if (n == hostCacheCount)
-                               {
-                                       // if cache is full replace highest ping server (the list is
-                                       // kept sorted so this is always the last, and if this server
-                                       // is good it will be sorted into an early part of the list)
-                                       if (hostCacheCount >= HOSTCACHESIZE)
-                                               n = hostCacheCount - 1;
-                                       else
-                                       {
-                                               serverquerycount++;
-                                               hostCacheCount++;
-                                       }
-                               }
-                               memset(&hostcache[n], 0, sizeof(hostcache[n]));
+                
+                               memset(&hostcache_cache[hostcache_cachecount], 0, sizeof(hostcache_cache[hostcache_cachecount]));
                                // store the data the engine cares about (address and ping)
-                               strlcpy (hostcache[n].cname, ipstring, sizeof (hostcache[n].cname));
-                               hostcache[n].ping = 100000;
-                               hostcache[n].querytime = realtime;
-                               // build description strings for the things users care about
-                               strlcpy (hostcache[n].line1, "?", sizeof (hostcache[n].line1));
-                               strlcpy (hostcache[n].line2, ipstring, sizeof (hostcache[n].line2));
+                               strlcpy (hostcache_cache[hostcache_cachecount].info.cname, ipstring, sizeof (hostcache_cache[hostcache_cachecount].info.cname));
+                               hostcache_cache[hostcache_cachecount].info.ping = 100000;
+                               hostcache_cache[hostcache_cachecount].querytime = realtime;
                                // if not in the slist menu we should print the server to console
-                               if (m_state != m_slist)
+                               if (hostcache_consoleoutput)
                                        Con_Printf("querying %s\n", ipstring);
-                               // and finally, re-sort the list
-                               for (i = 0;i < hostCacheCount;i++)
-                               {
-                                       for (j = i + 1;j < hostCacheCount;j++)
-                                       {
-                                               //if (strcmp(hostcache[j].name, hostcache[i].name) < 0)
-                                               if (hostcache[i].ping > hostcache[j].ping)
-                                               {
-                                                       memcpy(&temp, &hostcache[j], sizeof(hostcache_t));
-                                                       memcpy(&hostcache[j], &hostcache[i], sizeof(hostcache_t));
-                                                       memcpy(&hostcache[i], &temp, sizeof(hostcache_t));
-                                               }
-                                       }
-                               }
-
 
+                               ++hostcache_cachecount;
+                               
                                // move on to next address in packet
                                data += 7;
                                length -= 7;
@@ -1395,7 +1539,7 @@ void NetConn_QueryMasters(void)
        lhnetaddress_t masteraddress;
        char request[256];
 
-       if (hostCacheCount >= HOSTCACHESIZE)
+       if (hostcache_cachecount >= HOSTCACHE_TOTALSIZE)
                return;
 
        for (i = 0;i < cl_numsockets;i++)
@@ -1540,18 +1684,16 @@ void Net_Stats_f(void)
 
 void Net_Slist_f(void)
 {
-       masterquerytime = realtime;
-       masterquerycount = 0;
-       masterreplycount = 0;
-       serverquerycount = 0;
-       serverreplycount = 0;
-       hostCacheCount = 0;
-       memset(&pingcache, 0, sizeof(pingcache));
-       if (m_state != m_slist)
+       HostCache_ResetMask();
+       hostcache_sortbyfield = HCIF_PING;
+       hostcache_sortdescending = false;
+    if (m_state != m_slist) {
                Con_Print("Sending requests to master servers\n");
-       NetConn_QueryMasters();
-       if (m_state != m_slist)
+               HostCache_QueryList();
+               hostcache_consoleoutput = true;
                Con_Print("Listening for replies...\n");
+       } else
+               HostCache_QueryList();
 }
 
 void NetConn_Init(void)
@@ -1602,7 +1744,6 @@ void NetConn_Init(void)
        }
        cl_numsockets = 0;
        sv_numsockets = 0;
-       memset(&pingcache, 0, sizeof(pingcache));
        SZ_Alloc(&net_message, NET_MAXMESSAGE, "net_message");
        LHNET_Init();
 }
index a1082fd2ab3273be6abc99fbd0f7b7413f17884e..17f57221769cd16adb06b3934ffab9017da0963e 100755 (executable)
--- a/netconn.h
+++ b/netconn.h
@@ -150,23 +150,86 @@ extern cvar_t developer_networking;
 extern char playername[];
 extern int playercolor;
 
-#define HOSTCACHESIZE  128
+#define HOSTCACHE_TOTALSIZE                    2048
+#define HOSTCACHE_VIEWCACHESIZE                128
 
+typedef enum 
+{
+       HCMO_GREATEREQUAL,
+       HCMO_GREATER,
+       HCMO_EQUAL,
+       HCMO_LESSEQUAL,
+       HCMO_LESS,
+} hostcache_maskop_t;
+
+// struct with all fields that you can search for or sort by
 typedef struct
 {
+       // address for connecting
+       char cname[128];
        // ping time for sorting servers
        int ping;
+       // name of the game
+       char game[32];
+       // name of the mod
+       char mod[32];
+       // name of the map
+       char map[32];
+       // name of the session
+       char name[128];
+       // max client number
+       int maxplayers;
+       // number of currently connected players
+       int numplayers;
+       // protocol version
+       int protocol;
+} hostcache_info_t;
+
+typedef enum 
+{
+       HCIF_CNAME,
+       HCIF_PING,
+       HCIF_GAME,
+       HCIF_MOD,
+       HCIF_MAP,
+       HCIF_NAME,
+       HCIF_MAXPLAYERS,
+       HCIF_NUMPLAYERS,
+       HCIF_PROTOCOL,
+       HCIF_COUNT
+} hostcache_infofield_t;
+
+typedef struct
+{
+       // used to determine whether this entry should be included into the final view
+       qboolean finished; 
        // used to calculate ping when update comes in
        double querytime;
-       // address for connecting
-       char cname[128];
-       // description (seen by user)
+
+       hostcache_info_t info;
+       
+       // legacy stuff
        char line1[128];
        char line2[128];
 } hostcache_t;
 
-extern int hostCacheCount;
-extern hostcache_t hostcache[HOSTCACHESIZE];
+typedef struct
+{
+       hostcache_maskop_t pingtest;
+       hostcache_maskop_t maxplayerstest;
+       hostcache_maskop_t numplayerstest;
+       hostcache_maskop_t protocoltest;
+       hostcache_info_t info;
+} hostcache_mask_t;
+
+extern hostcache_mask_t                        hostcache_currentmask;
+extern hostcache_infofield_t   hostcache_sortbyfield;
+extern qboolean                                        hostcache_sortdescending;
+
+extern int                     hostcache_viewcount;
+extern hostcache_t     *hostcache_viewset[HOSTCACHE_VIEWCACHESIZE];
+
+extern qboolean                hostcache_consoleoutput;
 
 #if !defined(_WIN32 ) && !defined (__linux__) && !defined (__sun__)
 #ifndef htonl
@@ -227,5 +290,11 @@ int NetConn_SendToAll(sizebuf_t *data, double blocktime);
 void Net_Stats_f(void);
 void Net_Slist_f(void);
 
+// Hostcache interface
+// manually refresh the view set, do this after having changed the mask or any other flag
+void HostCache_RebuildViewSet(void);
+void HostCache_ResetMask(void);
+void HostCache_QueryList(void);
+
 #endif
 
index cad16a48cf21ed978763549fd89f01ab8666760b..e79bfce593b7fa4be5f81e651d21d7cd00a7ae8b 100644 (file)
@@ -1841,7 +1841,7 @@ void VM_fgets(void)
        // remove \n following \r
        if (c == '\r')
                c = FS_Getc(VM_FILES[filenum]);
-       if (developer.integer)
+       if (developer.integer >= 3)
                Con_Printf("fgets: %s: %s\n", PRVM_NAME, string);
        if (c >= 0 || end)
                PRVM_G_INT(OFS_RETURN) = PRVM_SetString(string);
@@ -3444,7 +3444,7 @@ void VM_M_gethostcachevalue( void )
        else switch(type)
        {
        case 0:
-               PRVM_G_FLOAT ( OFS_RETURN ) = hostCacheCount;
+               PRVM_G_FLOAT ( OFS_RETURN ) = hostcache_viewcount;
                return;
        case 1:
                PRVM_G_FLOAT ( OFS_RETURN ) = masterquerycount;
@@ -3492,18 +3492,18 @@ void VM_M_gethostcachestring(void)
 
        hostnr = PRVM_G_FLOAT(OFS_PARM1);
 
-       if(hostnr < 0 || hostnr >= hostCacheCount)
+       if(hostnr < 0 || hostnr >= hostcache_viewcount)
        {
                Con_Print("VM_M_gethostcachestring: bad hostnr passed!\n");
                return;
        }
 
        if( type == 0 )
-               PRVM_G_INT( OFS_RETURN ) = PRVM_SetString( hostcache[hostnr].cname );
+               PRVM_G_INT( OFS_RETURN ) = PRVM_SetString( hostcache_viewset[hostnr]->info.cname );
        else if( type == 1 )
-               PRVM_G_INT( OFS_RETURN ) = PRVM_SetString( hostcache[hostnr].line1 );
+               PRVM_G_INT( OFS_RETURN ) = PRVM_SetString( hostcache_viewset[hostnr]->line1 );
        else
-               PRVM_G_INT( OFS_RETURN ) = PRVM_SetString( hostcache[hostnr].line2 );
+               PRVM_G_INT( OFS_RETURN ) = PRVM_SetString( hostcache_viewset[hostnr]->line2 );
 }
 
 prvm_builtin_t vm_m_builtins[] = {