]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - tools/quake3/q3map2/path_init.c
fix undocumented unexpected LokiInitPaths
[xonotic/netradiant.git] / tools / quake3 / q3map2 / path_init.c
1 /* -------------------------------------------------------------------------------
2
3    Copyright (C) 1999-2007 id Software, Inc. and contributors.
4    For a list of contributors, see the accompanying CONTRIBUTORS file.
5
6    This file is part of GtkRadiant.
7
8    GtkRadiant is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12
13    GtkRadiant is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with GtkRadiant; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21
22    ----------------------------------------------------------------------------------
23
24    This code has been altered significantly from its original form, to support
25    several games based on the Quake III Arena engine, in the form of "Q3Map2."
26
27    ------------------------------------------------------------------------------- */
28
29
30
31 /* marker */
32 #define PATH_INIT_C
33
34
35
36 /* dependencies */
37 #include "q3map2.h"
38
39
40
41 /* path support */
42 #define MAX_BASE_PATHS  10
43 #define MAX_GAME_PATHS  10
44 #define MAX_PAK_PATHS  200
45
46 char                    *homePath;
47 char installPath[ MAX_OS_PATH ];
48
49 int numBasePaths;
50 char                    *basePaths[ MAX_BASE_PATHS ];
51 int numGamePaths;
52 char                    *gamePaths[ MAX_GAME_PATHS ];
53 int numPakPaths;
54 char                    *pakPaths[ MAX_PAK_PATHS ];
55 char                    *homeBasePath = NULL;
56
57
58 /*
59    some of this code is based off the original q3map port from loki
60    and finds various paths. moved here from bsp.c for clarity.
61  */
62
63 /*
64    PathLokiGetHomeDir()
65    gets the user's home dir (for ~/.q3a)
66  */
67
68 char *LokiGetHomeDir( void ){
69         #ifndef Q_UNIX
70         return NULL;
71         #else
72         static char     buf[ 4096 ];
73         struct passwd   pw, *pwp;
74         char            *home;
75         static char homeBuf[MAX_OS_PATH];
76
77
78         /* get the home environment variable */
79         home = getenv( "HOME" );
80
81         /* look up home dir in password database */
82         if(!home)
83         {
84                 if ( getpwuid_r( getuid(), &pw, buf, sizeof( buf ), &pwp ) == 0 ) {
85                         return pw.pw_dir;
86                 }
87         }
88
89         snprintf( homeBuf, sizeof( homeBuf ), "%s/.", home );
90
91         /* return it */
92         return homeBuf;
93         #endif
94 }
95
96
97
98 /*
99    PathLokiInitPaths()
100    initializes some paths on linux/os x
101  */
102
103 void LokiInitPaths( char *argv0 ){
104         char        *home;
105
106         if ( !homePath ) {
107                 /* get home dir */
108                 home = LokiGetHomeDir();
109                 if ( home == NULL ) {
110                         home = ".";
111                 }
112
113                 /* set home path */
114                 homePath = home;
115         }
116         else{
117                 home = homePath;
118         }
119
120         #ifndef Q_UNIX
121         /* this is kinda crap, but hey */
122         strcpy( installPath, "../" );
123         #else
124         char temp[ MAX_OS_PATH ];
125         char        *path;
126         char        *last;
127         qboolean found;
128
129
130         path = getenv( "PATH" );
131
132         /* do some path divining */
133         Q_strncpyz( temp, argv0, sizeof( temp ) );
134         if ( strrchr( temp, '/' ) ) {
135                 argv0 = strrchr( argv0, '/' ) + 1;
136         }
137         else if ( path ) {
138
139                 /*
140                    This code has a special behavior when q3map2 is a symbolic link.
141
142                    For each dir in ${PATH} (example: "/usr/bin", "/usr/local/bin" if ${PATH} == "/usr/bin:/usr/local/bin"),
143                    it looks for "${dir}/q3map2" (file exists and is executable),
144                    then it uses "dirname(realpath("${dir}/q3map2"))/../" as installPath.
145
146                    So, if "/usr/bin/q3map2" is a symbolic link to "/opt/radiant/tools/q3map2",
147                    it will find the installPath "/usr/share/radiant/",
148                    so q3map2 will look for "/opt/radiant/baseq3" to find paks.
149
150                    More precisely, it looks for "${dir}/${argv[0]}",
151                    so if "/usr/bin/q3map2" is a symbolic link to "/opt/radiant/tools/q3map2",
152                    and if "/opt/radiant/tools/q3ma2" is a symbolic link to "/opt/radiant/tools/q3map2.x86_64",
153                    it will use "dirname("/opt/radiant/tools/q3map2.x86_64")/../" as path,
154                    so it will use "/opt/radiant/" as installPath, which will be expanded later to "/opt/radiant/baseq3" to find paks.
155                 */
156
157                 found = qfalse;
158                 last = path;
159
160                 /* go through each : segment of path */
161                 while ( last[ 0 ] != '\0' && found == qfalse )
162                 {
163                         /* null out temp */
164                         temp[ 0 ] = '\0';
165
166                         /* find next chunk */
167                         last = strchr( path, ':' );
168                         if ( last == NULL ) {
169                                 last = path + strlen( path );
170                         }
171
172                         /* found home dir candidate */
173                         if ( *path == '~' ) {
174                                 Q_strncpyz( temp, home, sizeof( temp ) );
175                                 path++;
176                         }
177
178
179                         /* concatenate */
180                         if ( last > ( path + 1 ) ) {
181                                 // +1 hack: Q_strncat calls Q_strncpyz that expects a len including '\0'
182                                 // so that extraneous char will be rewritten by '\0', so it's ok.
183                                 // Also, in this case this extraneous char is always ':' or '\0', so it's ok.
184                                 Q_strncat( temp, sizeof( temp ), path, ( last - path + 1) );
185                                 Q_strcat( temp, sizeof( temp ), "/" );
186                         }
187                         Q_strcat( temp, sizeof( temp ), argv0 );
188
189                         /* verify the path */
190                         if ( access( temp, X_OK ) == 0 ) {
191                                 found = qtrue;
192                         }
193                         path = last + 1;
194                 }
195         }
196
197         /* flake */
198         if ( realpath( temp, installPath ) ) {
199                 /*
200                    if "q3map2" is "/opt/radiant/tools/q3map2",
201                    installPath is "/opt/radiant"
202                 */
203                 *( strrchr( installPath, '/' ) ) = '\0';
204                 *( strrchr( installPath, '/' ) ) = '\0';
205         }
206         #endif
207 }
208
209
210
211 /*
212    CleanPath() - ydnar
213    cleans a dos path \ -> /
214  */
215
216 void CleanPath( char *path ){
217         while ( *path )
218         {
219                 if ( *path == '\\' ) {
220                         *path = '/';
221                 }
222                 path++;
223         }
224 }
225
226
227
228 /*
229    GetGame() - ydnar
230    gets the game_t based on a -game argument
231    returns NULL if no match found
232  */
233
234 game_t *GetGame( char *arg ){
235         int i;
236
237
238         /* dummy check */
239         if ( arg == NULL || arg[ 0 ] == '\0' ) {
240                 return NULL;
241         }
242
243         /* joke */
244         if ( !Q_stricmp( arg, "quake1" ) ||
245                  !Q_stricmp( arg, "quake2" ) ||
246                  !Q_stricmp( arg, "unreal" ) ||
247                  !Q_stricmp( arg, "ut2k3" ) ||
248                  !Q_stricmp( arg, "dn3d" ) ||
249                  !Q_stricmp( arg, "dnf" ) ||
250                  !Q_stricmp( arg, "hl" ) ) {
251                 Sys_Printf( "April fools, silly rabbit!\n" );
252                 exit( 0 );
253         }
254
255         /* test it */
256         i = 0;
257         while ( games[ i ].arg != NULL )
258         {
259                 if ( Q_stricmp( arg, games[ i ].arg ) == 0 ) {
260                         return &games[ i ];
261                 }
262                 i++;
263         }
264
265         /* no matching game */
266         return NULL;
267 }
268
269
270
271 /*
272    AddBasePath() - ydnar
273    adds a base path to the list
274  */
275
276 void AddBasePath( char *path ){
277         /* dummy check */
278         if ( path == NULL || path[ 0 ] == '\0' || numBasePaths >= MAX_BASE_PATHS ) {
279                 return;
280         }
281
282         /* add it to the list */
283         basePaths[ numBasePaths ] = safe_malloc( strlen( path ) + 1 );
284         strcpy( basePaths[ numBasePaths ], path );
285         CleanPath( basePaths[ numBasePaths ] );
286         numBasePaths++;
287 }
288
289
290
291 /*
292    AddHomeBasePath() - ydnar
293    adds a base path to the beginning of the list, prefixed by ~/
294  */
295
296 void AddHomeBasePath( char *path ){
297         int i;
298         char temp[ MAX_OS_PATH ];
299         int homePathLen;
300
301         if ( !homePath ) {
302                 return;
303         }
304
305         /* dummy check */
306         if ( path == NULL || path[ 0 ] == '\0' ) {
307                 return;
308         }
309
310         /* strip leading dot, if homePath does not end in /. */
311         homePathLen = strlen( homePath );
312         if ( !strcmp( path, "." ) ) {
313                 /* -fs_homebase . means that -fs_home is to be used as is */
314                 strcpy( temp, homePath );
315         }
316         else if ( homePathLen >= 2 && !strcmp( homePath + homePathLen - 2, "/." ) ) {
317                 /* remove trailing /. of homePath */
318                 homePathLen -= 2;
319
320                 /* concatenate home dir and path */
321                 sprintf( temp, "%.*s/%s", homePathLen, homePath, path );
322         }
323         else
324         {
325                 /* remove leading . of path */
326                 if ( path[0] == '.' ) {
327                         ++path;
328                 }
329
330                 /* concatenate home dir and path */
331                 sprintf( temp, "%s/%s", homePath, path );
332         }
333
334         /* make a hole */
335         for ( i = ( MAX_BASE_PATHS - 2 ); i >= 0; i-- )
336                 basePaths[ i + 1 ] = basePaths[ i ];
337
338         /* add it to the list */
339         basePaths[ 0 ] = safe_malloc( strlen( temp ) + 1 );
340         strcpy( basePaths[ 0 ], temp );
341         CleanPath( basePaths[ 0 ] );
342         numBasePaths++;
343 }
344
345
346
347 /*
348    AddGamePath() - ydnar
349    adds a game path to the list
350  */
351
352 void AddGamePath( char *path ){
353         int i;
354
355         /* dummy check */
356         if ( path == NULL || path[ 0 ] == '\0' || numGamePaths >= MAX_GAME_PATHS ) {
357                 return;
358         }
359
360         /* add it to the list */
361         gamePaths[ numGamePaths ] = safe_malloc( strlen( path ) + 1 );
362         strcpy( gamePaths[ numGamePaths ], path );
363         CleanPath( gamePaths[ numGamePaths ] );
364         numGamePaths++;
365
366         /* don't add it if it's already there */
367         for ( i = 0; i < numGamePaths - 1; i++ )
368         {
369                 if ( strcmp( gamePaths[i], gamePaths[numGamePaths - 1] ) == 0 ) {
370                         free( gamePaths[numGamePaths - 1] );
371                         gamePaths[numGamePaths - 1] = NULL;
372                         numGamePaths--;
373                         break;
374                 }
375         }
376
377 }
378
379
380 /*
381    AddPakPath()
382    adds a pak path to the list
383  */
384
385 void AddPakPath( char *path ){
386         /* dummy check */
387         if ( path == NULL || path[ 0 ] == '\0' || numPakPaths >= MAX_PAK_PATHS ) {
388                 return;
389         }
390
391         /* add it to the list */
392         pakPaths[ numPakPaths ] = safe_malloc( strlen( path ) + 1 );
393         strcpy( pakPaths[ numPakPaths ], path );
394         CleanPath( pakPaths[ numPakPaths ] );
395         numPakPaths++;
396 }
397
398
399
400 /*
401    InitPaths() - ydnar
402    cleaned up some of the path initialization code from bsp.c
403    will remove any arguments it uses
404  */
405
406 void InitPaths( int *argc, char **argv ){
407         int i, j, k, len, len2;
408         char temp[ MAX_OS_PATH ];
409
410
411         /* note it */
412         Sys_FPrintf( SYS_VRB, "--- InitPaths ---\n" );
413
414         /* get the install path for backup */
415         LokiInitPaths( argv[ 0 ] );
416
417         /* set game to default (q3a) */
418         game = &games[ 0 ];
419         numBasePaths = 0;
420         numGamePaths = 0;
421
422         /* parse through the arguments and extract those relevant to paths */
423         for ( i = 0; i < *argc; i++ )
424         {
425                 /* check for null */
426                 if ( argv[ i ] == NULL ) {
427                         continue;
428                 }
429
430                 /* -game */
431                 if ( strcmp( argv[ i ], "-game" ) == 0 ) {
432                         if ( ++i >= *argc ) {
433                                 Error( "Out of arguments: No game specified after %s", argv[ i - 1 ] );
434                         }
435                         argv[ i - 1 ] = NULL;
436                         game = GetGame( argv[ i ] );
437                         if ( game == NULL ) {
438                                 game = &games[ 0 ];
439                         }
440                         argv[ i ] = NULL;
441                 }
442
443                 /* -fs_forbiddenpath */
444                 else if ( strcmp( argv[ i ], "-fs_forbiddenpath" ) == 0 ) {
445                         if ( ++i >= *argc ) {
446                                 Error( "Out of arguments: No path specified after %s.", argv[ i - 1 ] );
447                         }
448                         argv[ i - 1 ] = NULL;
449                         if ( g_numForbiddenDirs < VFS_MAXDIRS ) {
450                                 strncpy( g_strForbiddenDirs[g_numForbiddenDirs], argv[i], PATH_MAX );
451                                 g_strForbiddenDirs[g_numForbiddenDirs][PATH_MAX] = 0;
452                                 ++g_numForbiddenDirs;
453                         }
454                         argv[ i ] = NULL;
455                 }
456
457                 /* -fs_basepath */
458                 else if ( strcmp( argv[ i ], "-fs_basepath" ) == 0 ) {
459                         if ( ++i >= *argc ) {
460                                 Error( "Out of arguments: No path specified after %s.", argv[ i - 1 ] );
461                         }
462                         argv[ i - 1 ] = NULL;
463                         AddBasePath( argv[ i ] );
464                         argv[ i ] = NULL;
465                 }
466
467                 /* -fs_game */
468                 else if ( strcmp( argv[ i ], "-fs_game" ) == 0 ) {
469                         if ( ++i >= *argc ) {
470                                 Error( "Out of arguments: No path specified after %s.", argv[ i - 1 ] );
471                         }
472                         argv[ i - 1 ] = NULL;
473                         AddGamePath( argv[ i ] );
474                         argv[ i ] = NULL;
475                 }
476
477                 /* -fs_home */
478                 else if ( strcmp( argv[ i ], "-fs_home" ) == 0 ) {
479                         if ( ++i >= *argc ) {
480                                 Error( "Out of arguments: No path specified after %s.", argv[ i - 1 ] );
481                         }
482                         argv[ i - 1 ] = NULL;
483                         homePath = argv[i];
484                         argv[ i ] = NULL;
485                 }
486
487                 /* -fs_homebase */
488                 else if ( strcmp( argv[ i ], "-fs_homebase" ) == 0 ) {
489                         if ( ++i >= *argc ) {
490                                 Error( "Out of arguments: No path specified after %s.", argv[ i - 1 ] );
491                         }
492                         argv[ i - 1 ] = NULL;
493                         homeBasePath = argv[i];
494                         argv[ i ] = NULL;
495                 }
496
497                 /* -fs_homepath - sets both of them */
498                 else if ( strcmp( argv[ i ], "-fs_homepath" ) == 0 ) {
499                         if ( ++i >= *argc ) {
500                                 Error( "Out of arguments: No path specified after %s.", argv[ i - 1 ] );
501                         }
502                         argv[ i - 1 ] = NULL;
503                         homePath = argv[i];
504                         homeBasePath = ".";
505                         argv[ i ] = NULL;
506                 }
507
508                 /* -fs_pakpath */
509                 else if ( strcmp( argv[ i ], "-fs_pakpath" ) == 0 ) {
510                         if ( ++i >= *argc ) {
511                                 Error( "Out of arguments: No path specified after %s.", argv[ i - 1 ] );
512                         }
513                         argv[ i - 1 ] = NULL;
514                         AddPakPath( argv[ i ] );
515                         argv[ i ] = NULL;
516                 }
517
518         }
519
520         /* remove processed arguments */
521         for ( i = 0, j = 0, k = 0; i < *argc && j < *argc; i++, j++ )
522         {
523                 for ( ; j < *argc && argv[ j ] == NULL; j++ ) ;
524                 argv[ i ] = argv[ j ];
525                 if ( argv[ i ] != NULL ) {
526                         k++;
527                 }
528         }
529         *argc = k;
530
531         /* add standard game path */
532         AddGamePath( game->gamePath );
533
534         /* if there is no base path set, figure it out */
535         if ( numBasePaths == 0 ) {
536                 /* this is another crappy replacement for SetQdirFromPath() */
537                 len2 = strlen( game->magic );
538                 for ( i = 0; i < *argc && numBasePaths == 0; i++ )
539                 {
540                         /* extract the arg */
541                         strcpy( temp, argv[ i ] );
542                         CleanPath( temp );
543                         len = strlen( temp );
544                         Sys_FPrintf( SYS_VRB, "Searching for \"%s\" in \"%s\" (%d)...\n", game->magic, temp, i );
545
546                         /* this is slow, but only done once */
547                         for ( j = 0; j < ( len - len2 ); j++ )
548                         {
549                                 /* check for the game's magic word */
550                                 if ( Q_strncasecmp( &temp[ j ], game->magic, len2 ) == 0 ) {
551                                         /* now find the next slash and nuke everything after it */
552                                         while ( temp[ ++j ] != '/' && temp[ j ] != '\0' ) ;
553                                         temp[ j ] = '\0';
554
555                                         /* add this as a base path */
556                                         AddBasePath( temp );
557                                         break;
558                                 }
559                         }
560                 }
561
562                 /* add install path */
563                 if ( numBasePaths == 0 ) {
564                         AddBasePath( installPath );
565                 }
566
567                 /* check again */
568                 if ( numBasePaths == 0 ) {
569                         Error( "Failed to find a valid base path." );
570                 }
571         }
572
573         /* this only affects unix */
574         if ( homeBasePath ) {
575                 AddHomeBasePath( homeBasePath );
576         }
577         else{
578                 AddHomeBasePath( game->homeBasePath );
579         }
580
581         /* initialize vfs paths */
582         if ( numBasePaths > MAX_BASE_PATHS ) {
583                 numBasePaths = MAX_BASE_PATHS;
584         }
585         if ( numGamePaths > MAX_GAME_PATHS ) {
586                 numGamePaths = MAX_GAME_PATHS;
587         }
588
589         /* walk the list of game paths */
590         for ( j = 0; j < numGamePaths; j++ )
591         {
592                 /* walk the list of base paths */
593                 for ( i = 0; i < numBasePaths; i++ )
594                 {
595                         /* create a full path and initialize it */
596                         sprintf( temp, "%s/%s/", basePaths[ i ], gamePaths[ j ] );
597                         vfsInitDirectory( temp );
598                 }
599         }
600
601         /* initialize vfs paths */
602         if ( numPakPaths > MAX_PAK_PATHS ) {
603                 numPakPaths = MAX_PAK_PATHS;
604         }
605
606         /* walk the list of pak paths */
607         for ( i = 0; i < numPakPaths; i++ )
608         {
609                 /* initialize this pak path */
610                 vfsInitDirectory( pakPaths[ i ] );
611         }
612
613         /* done */
614         Sys_Printf( "\n" );
615 }