char *ExpandPath (const char *path)
{
static char full[1024];
- if (!qdir)
- Error ("ExpandPath called without qdir set");
- if (path[0] == '/' || path[0] == '\\' || path[1] == ':') {
+ if (!*qdir || path[0] == '/' || path[0] == '\\' || path[1] == ':') {
strcpy( full, path );
return full;
}
char *ExpandGamePath (const char *path)
{
static char full[1024];
- if (!qdir)
- Error ("ExpandGamePath called without qdir set");
+ if (!*gamedir)
+ Error ("ExpandGamePath called without gamedir set");
if (path[0] == '/' || path[0] == '\\' || path[1] == ':') {
strcpy( full, path );
return full;
static GSList* g_unzFiles;
static GSList* g_pakFiles;
-static char g_strDirs[VFS_MAXDIRS][PATH_MAX];
+static char g_strDirs[VFS_MAXDIRS][PATH_MAX+1];
static int g_numDirs;
+char g_strForbiddenDirs[VFS_MAXDIRS][PATH_MAX+1];
+int g_numForbiddenDirs = 0;
static gboolean g_bUsePak = TRUE;
// =============================================================================
char filename[PATH_MAX];
char *dirlist;
GDir *dir;
+ int j;
- if (g_numDirs == (VFS_MAXDIRS-1))
+ for(j = 0; j < g_numForbiddenDirs; ++j)
+ {
+ if(!Q_stricmp(path, g_strForbiddenDirs[j])
+ || (strlen(path) > strlen(g_strForbiddenDirs[j]) && path[strlen(path) - strlen(g_strForbiddenDirs[j]) - 1] == '/' && !Q_stricmp(path + strlen(path) - strlen(g_strForbiddenDirs[j]), g_strForbiddenDirs[j])))
+ break;
+ }
+ if(j < g_numForbiddenDirs)
+ return;
+
+ if (g_numDirs == VFS_MAXDIRS)
return;
Sys_Printf ("VFS Init: %s\n", path);
- strcpy (g_strDirs[g_numDirs], path);
+ strncpy (g_strDirs[g_numDirs], path, PATH_MAX);
+ g_strDirs[g_numDirs][PATH_MAX] = 0;
vfsFixDOSName (g_strDirs[g_numDirs]);
vfsAddSlash (g_strDirs[g_numDirs]);
g_numDirs++;
if(name == NULL)
break;
+ for(j = 0; j < g_numForbiddenDirs; ++j)
+ if(!Q_stricmp(name, g_strForbiddenDirs[j]))
+ break;
+ if(j < g_numForbiddenDirs)
+ continue;
dirlist = g_strdup(name);
{
char *ext = strrchr (dirlist, '.');
+ if(ext && !Q_stricmp(ext, ".pk3dir"))
+ {
+ if (g_numDirs == VFS_MAXDIRS)
+ continue;
+ snprintf(g_strDirs[g_numDirs], PATH_MAX, "%s/%s", path, name);
+ g_strDirs[g_numDirs][PATH_MAX] = '\0';
+ vfsFixDOSName (g_strDirs[g_numDirs]);
+ vfsAddSlash (g_strDirs[g_numDirs]);
+ ++g_numDirs;
+ }
if ((ext == NULL) || (Q_stricmp (ext, ".pk3") != 0))
continue;
}