summaryrefslogtreecommitdiff
path: root/src/ui/ui_gameinfo.c
blob: 18a604b86afd00a1e87912490475ed73a19e2a41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
/*
===========================================================================
Copyright (C) 1999-2005 Id Software, Inc.
Copyright (C) 2000-2009 Darklegion Development
 
This file is part of Tremulous.
 
Tremulous is free software; you can redistribute it
and/or modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the License,
or (at your option) any later version.
 
Tremulous is distributed in the hope that it will be
useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
 
You should have received a copy of the GNU General Public License
along with Tremulous; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
===========================================================================
*/

//
// gameinfo.c
//

#include "ui_local.h"


//
// arena and bot info
//


int       ui_numBots;
static char   *ui_botInfos[MAX_BOTS];

static int    ui_numArenas;
static char   *ui_arenaInfos[MAX_ARENAS];

/*
===============
UI_ParseInfos
===============
*/
int UI_ParseInfos( char *buf, int max, char *infos[] )
{
  char  * token;
  int   count;
  char  key[MAX_TOKEN_CHARS];
  char  info[MAX_INFO_STRING];

  count = 0;

  while( 1 )
  {
    token = COM_Parse( &buf );

    if( !token[0] )
      break;

    if( strcmp( token, "{" ) )
    {
      Com_Printf( "Missing { in info file\n" );
      break;
    }

    if( count == max )
    {
      Com_Printf( "Max infos exceeded\n" );
      break;
    }

    info[0] = '\0';

    while( 1 )
    {
      token = COM_ParseExt( &buf, qtrue );

      if( !token[0] )
      {
        Com_Printf( "Unexpected end of info file\n" );
        break;
      }

      if( !strcmp( token, "}" ) )
        break;

      Q_strncpyz( key, token, sizeof( key ) );

      token = COM_ParseExt( &buf, qfalse );

      if( !token[0] )
        strcpy( token, "<NULL>" );

      Info_SetValueForKey( info, key, token );
    }

    //NOTE: extra space for arena number
    infos[count] = UI_Alloc( strlen( info ) + strlen( "\\num\\" ) + strlen( va( "%d", MAX_ARENAS ) ) + 1 );

    if( infos[count] )
    {
      strcpy( infos[count], info );
      count++;
    }
  }

  return count;
}

/*
===============
UI_LoadArenasFromFile
===============
*/
static void UI_LoadArenasFromFile( char *filename )
{
  int       len;
  fileHandle_t  f;
  char      buf[MAX_ARENAS_TEXT];

  len = trap_FS_FOpenFile( filename, &f, FS_READ );

  if( !f )
  {
    trap_Print( va( S_COLOR_RED "file not found: %s\n", filename ) );
    return;
  }

  if( len >= MAX_ARENAS_TEXT )
  {
    trap_Print( va( S_COLOR_RED "file too large: %s is %i, max allowed is %i", filename, len, MAX_ARENAS_TEXT ) );
    trap_FS_FCloseFile( f );
    return;
  }

  trap_FS_Read( buf, len, f );
  buf[len] = 0;
  trap_FS_FCloseFile( f );

  ui_numArenas += UI_ParseInfos( buf, MAX_ARENAS - ui_numArenas, &ui_arenaInfos[ui_numArenas] );
}

/*
=================
UI_MapNameCompare
=================
*/
static int UI_MapNameCompare( const void *a, const void *b )
{
  mapInfo * A = ( mapInfo * )a;
  mapInfo *B = ( mapInfo * )b;

  return Q_stricmp( A->mapName, B->mapName );
}

/*
===============
UI_LoadArenas
===============
*/
void UI_LoadArenas( void )
{
  int     numdirs;
  char    filename[128];
  char    dirlist[1024];
  char*   dirptr;
  int     i, n;
  int     dirlen;
  char    *type;

  ui_numArenas = 0;
  uiInfo.mapCount = 0;

  // get all arenas from .arena files
  numdirs = trap_FS_GetFileList( "scripts", ".arena", dirlist, 1024 );
  dirptr  = dirlist;

  for( i = 0; i < numdirs; i++, dirptr += dirlen + 1 )
  {
    dirlen = strlen( dirptr );
    strcpy( filename, "scripts/" );
    strcat( filename, dirptr );
    UI_LoadArenasFromFile( filename );
  }

  trap_Print( va( "[skipnotify]%i arenas parsed\n", ui_numArenas ) );

  if( UI_OutOfMemory() )
    trap_Print( S_COLOR_YELLOW"WARNING: not anough memory in pool to load all arenas\n" );

  for( n = 0; n < ui_numArenas; n++ )
  {
    // determine type
    type = Info_ValueForKey( ui_arenaInfos[ n ], "type" );
    // if no type specified, it will be treated as "ffa"

    uiInfo.mapList[uiInfo.mapCount].cinematic = -1;
    uiInfo.mapList[uiInfo.mapCount].mapLoadName = String_Alloc( Info_ValueForKey( ui_arenaInfos[n], "map" ) );
    uiInfo.mapList[uiInfo.mapCount].mapName = String_Alloc( Info_ValueForKey( ui_arenaInfos[n], "longname" ) );
    uiInfo.mapList[uiInfo.mapCount].levelShot = -1;
    uiInfo.mapList[uiInfo.mapCount].imageName = String_Alloc( va( "levelshots/%s", uiInfo.mapList[uiInfo.mapCount].mapLoadName ) );

    uiInfo.mapCount++;

    if( uiInfo.mapCount >= MAX_MAPS )
      break;
  }

  qsort( uiInfo.mapList, uiInfo.mapCount, sizeof( mapInfo ), UI_MapNameCompare );
}


/*
===============
UI_LoadBotsFromFile
===============
*/
static void UI_LoadBotsFromFile( char *filename )
{
  int       len;
  fileHandle_t  f;
  char      buf[MAX_BOTS_TEXT];

  len = trap_FS_FOpenFile( filename, &f, FS_READ );

  if( !f )
  {
    trap_Print( va( S_COLOR_RED "file not found: %s\n", filename ) );
    return;
  }

  if( len >= MAX_BOTS_TEXT )
  {
    trap_Print( va( S_COLOR_RED "file too large: %s is %i, max allowed is %i", filename, len, MAX_BOTS_TEXT ) );
    trap_FS_FCloseFile( f );
    return;
  }

  trap_FS_Read( buf, len, f );
  buf[len] = 0;
  trap_FS_FCloseFile( f );

  COM_Compress( buf );

  ui_numBots += UI_ParseInfos( buf, MAX_BOTS - ui_numBots, &ui_botInfos[ui_numBots] );
}

/*
===============
UI_LoadBots
===============
*/
void UI_LoadBots( void )
{
  vmCvar_t  botsFile;
  int     numdirs;
  char    filename[128];
  char    dirlist[1024];
  char*   dirptr;
  int     i;
  int     dirlen;

  ui_numBots = 0;

  trap_Cvar_Register( &botsFile, "g_botsFile", "", CVAR_INIT | CVAR_ROM );

  if( *botsFile.string )
    UI_LoadBotsFromFile( botsFile.string );
  else
    UI_LoadBotsFromFile( "scripts/bots.txt" );

  // get all bots from .bot files
  numdirs = trap_FS_GetFileList( "scripts", ".bot", dirlist, 1024 );

  dirptr  = dirlist;

  for( i = 0; i < numdirs; i++, dirptr += dirlen + 1 )
  {
    dirlen = strlen( dirptr );
    strcpy( filename, "scripts/" );
    strcat( filename, dirptr );
    UI_LoadBotsFromFile( filename );
  }

  trap_Print( va( "%i bots parsed\n", ui_numBots ) );
}


/*
===============
UI_GetBotInfoByNumber
===============
*/
char *UI_GetBotInfoByNumber( int num )
{
  if( num < 0 || num >= ui_numBots )
  {
    trap_Print( va( S_COLOR_RED "Invalid bot number: %i\n", num ) );
    return NULL;
  }

  return ui_botInfos[num];
}


/*
===============
UI_GetBotInfoByName
===============
*/
char *UI_GetBotInfoByName( const char *name )
{
  int   n;
  char  *value;

  for( n = 0; n < ui_numBots ; n++ )
  {
    value = Info_ValueForKey( ui_botInfos[n], "name" );

    if( !Q_stricmp( value, name ) )
      return ui_botInfos[n];
  }

  return NULL;
}

int UI_GetNumBots( void )
{
  return ui_numBots;
}


char *UI_GetBotNameByNumber( int num )
{
  char * info = UI_GetBotInfoByNumber( num );

  if( info )
    return Info_ValueForKey( info, "name" );

  return "";
}

void UI_ServerInfo( void )
{
  char      info[ MAX_INFO_VALUE ];
  char      hostname[MAX_HOSTNAME_LENGTH];

  info[0] = '\0';

  if( trap_GetConfigString( CS_SERVERINFO, info, sizeof( info ) ) )
  {
    trap_Cvar_Set( "ui_serverinfo_mapname",
                   Info_ValueForKey( info, "mapname" ) );
    trap_Cvar_Set( "ui_serverinfo_timelimit",
                   Info_ValueForKey( info, "timelimit" ) );
    trap_Cvar_Set( "ui_serverinfo_sd",
                   Info_ValueForKey( info, "g_suddenDeathTime" ) );
    UI_EscapeEmoticons( hostname, Info_ValueForKey( info, "sv_hostname" ),
                        sizeof( hostname ) );
    trap_Cvar_Set( "ui_serverinfo_hostname", hostname );
    trap_Cvar_Set( "ui_serverinfo_maxclients",
                   Info_ValueForKey( info, "sv_maxclients" ) );
    trap_Cvar_Set( "ui_serverinfo_version",
                   Info_ValueForKey( info, "version" ) );
    trap_Cvar_Set( "ui_serverinfo_unlagged",
                   Info_ValueForKey( info, "g_unlagged" ) );
    trap_Cvar_Set( "ui_serverinfo_friendlyFire",
                   Info_ValueForKey( info, "g_friendlyFire" ) );
    trap_Cvar_Set( "ui_serverinfo_friendlyBuildableFire",
                   Info_ValueForKey( info, "g_friendlyBuildableFire" ) );
    trap_Cvar_Set( "ui_serverinfo_allowdl",
                   Info_ValueForKey( info, "sv_allowdownload" ) );
  }
}