mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 14:52:00 +00:00
Improve FS_GetModList
- Paths to search for mods are now specified in an array - Mods can now consist solely of ".pk3dir" folders and still be considered valid - The function now has a consistent style
This commit is contained in:
parent
7ea46532d5
commit
af69d1148f
1 changed files with 56 additions and 78 deletions
|
@ -2510,117 +2510,95 @@ void FS_GetModDescription( const char *modDir, char *description, int descriptio
|
||||||
FS_GetModList
|
FS_GetModList
|
||||||
|
|
||||||
Returns a list of mod directory names
|
Returns a list of mod directory names
|
||||||
A mod directory is a peer to baseq3 with a pk3 in it
|
A mod directory is a peer to baseq3 with a pk3 or pk3dir in it
|
||||||
The directories are searched in base path, cd path and home path
|
|
||||||
================
|
================
|
||||||
*/
|
*/
|
||||||
int FS_GetModList( char *listbuf, int bufsize ) {
|
int FS_GetModList( char *listbuf, int bufsize ) {
|
||||||
int nMods, i, j, nTotal, nLen, nPaks, nPotential, nDescLen;
|
int nMods, i, j, k, nTotal, nLen, nPaks, nDirs, nPakDirs, nPotential, nDescLen;
|
||||||
char **pFiles = NULL;
|
char **pFiles = NULL;
|
||||||
char **pPaks = NULL;
|
char **pPaks = NULL;
|
||||||
|
char **pDirs = NULL;
|
||||||
char *name, *path;
|
char *name, *path;
|
||||||
char description[MAX_OSPATH];
|
char description[MAX_OSPATH];
|
||||||
|
|
||||||
int dummy;
|
int dummy;
|
||||||
char **pFiles0 = NULL;
|
char **pFiles0 = NULL;
|
||||||
char **pFiles1 = NULL;
|
|
||||||
char **pFiles2 = NULL;
|
|
||||||
char **pFiles3 = NULL;
|
|
||||||
char **pFiles4 = NULL;
|
|
||||||
char **pFiles5 = NULL;
|
|
||||||
qboolean bDrop = qfalse;
|
qboolean bDrop = qfalse;
|
||||||
|
|
||||||
|
// paths to search for mods
|
||||||
|
const char * const paths[] = { fs_basepath->string, fs_homepath->string, fs_steampath->string, fs_gogpath->string };
|
||||||
|
|
||||||
*listbuf = 0;
|
*listbuf = 0;
|
||||||
nMods = nTotal = 0;
|
nMods = nTotal = 0;
|
||||||
|
|
||||||
pFiles0 = Sys_ListFiles( fs_homepath->string, NULL, NULL, &dummy, qtrue );
|
// iterate through paths and get list of potential mods
|
||||||
pFiles1 = Sys_ListFiles( fs_basepath->string, NULL, NULL, &dummy, qtrue );
|
for (i = 0; i < ARRAY_LEN(paths); i++) {
|
||||||
pFiles2 = Sys_ListFiles( fs_steampath->string, NULL, NULL, &dummy, qtrue );
|
pFiles0 = Sys_ListFiles(paths[i], NULL, NULL, &dummy, qtrue);
|
||||||
pFiles3 = Sys_ListFiles( fs_gogpath->string, NULL, NULL, &dummy, qtrue );
|
// Sys_ConcatenateFileLists frees the lists so Sys_FreeFileList isn't required
|
||||||
// we searched for mods in the four paths
|
pFiles = Sys_ConcatenateFileLists(pFiles, pFiles0);
|
||||||
// it is likely that we have duplicate names now, which we will cleanup below
|
}
|
||||||
pFiles4 = Sys_ConcatenateFileLists( pFiles0, pFiles1 );
|
|
||||||
pFiles5 = Sys_ConcatenateFileLists( pFiles2, pFiles3 );
|
|
||||||
pFiles = Sys_ConcatenateFileLists( pFiles4, pFiles5 );
|
|
||||||
|
|
||||||
nPotential = Sys_CountFileList(pFiles);
|
nPotential = Sys_CountFileList(pFiles);
|
||||||
|
|
||||||
for ( i = 0 ; i < nPotential ; i++ ) {
|
for (i = 0; i < nPotential; i++) {
|
||||||
name = pFiles[i];
|
name = pFiles[i];
|
||||||
// NOTE: cleaner would involve more changes
|
// NOTE: cleaner would involve more changes
|
||||||
// ignore duplicate mod directories
|
// ignore duplicate mod directories
|
||||||
if (i!=0) {
|
if (i != 0) {
|
||||||
bDrop = qfalse;
|
bDrop = qfalse;
|
||||||
for(j=0; j<i; j++)
|
for (j = 0; j < i; j++) {
|
||||||
{
|
if (Q_stricmp(pFiles[j], name) == 0) {
|
||||||
if (Q_stricmp(pFiles[j],name)==0) {
|
|
||||||
// this one can be dropped
|
// this one can be dropped
|
||||||
bDrop = qtrue;
|
bDrop = qtrue;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (bDrop) {
|
// we also drop "baseq3" "." and ".."
|
||||||
|
if (bDrop || Q_stricmp(name, com_basegame->string) == 0 || Q_stricmpn(name, ".", 1) == 0) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
// we drop "baseq3" "." and ".."
|
|
||||||
if (Q_stricmp(name, com_basegame->string) && Q_stricmpn(name, ".", 1)) {
|
|
||||||
// now we need to find some .pk3 files to validate the mod
|
|
||||||
// NOTE TTimo: (actually I'm not sure why .. what if it's a mod under developement with no .pk3?)
|
|
||||||
// we didn't keep the information when we merged the directory names, as to what OS Path it was found under
|
|
||||||
// so it could be in base path, cd path or home path
|
|
||||||
// we will try each three of them here (yes, it's a bit messy)
|
|
||||||
path = FS_BuildOSPath( fs_basepath->string, name, "" );
|
|
||||||
nPaks = 0;
|
|
||||||
pPaks = Sys_ListFiles(path, ".pk3", NULL, &nPaks, qfalse);
|
|
||||||
Sys_FreeFileList( pPaks ); // we only use Sys_ListFiles to check wether .pk3 files are present
|
|
||||||
|
|
||||||
/* try on home path */
|
// in order to be a valid mod the directory must contain at least one .pk3 or .pk3dir
|
||||||
if ( nPaks <= 0 )
|
// we didn't keep the information when we merged the directory names, as to what OS Path it was found under
|
||||||
{
|
// so we will try each of them here
|
||||||
path = FS_BuildOSPath( fs_homepath->string, name, "" );
|
for (j = 0; j < ARRAY_LEN(paths); j++) {
|
||||||
nPaks = 0;
|
path = FS_BuildOSPath(paths[j], name, "");
|
||||||
pPaks = Sys_ListFiles( path, ".pk3", NULL, &nPaks, qfalse );
|
nPaks = nDirs = nPakDirs = 0;
|
||||||
Sys_FreeFileList( pPaks );
|
pPaks = Sys_ListFiles(path, ".pk3", NULL, &nPaks, qfalse);
|
||||||
}
|
pDirs = Sys_ListFiles(path, "/", NULL, &nDirs, qfalse);
|
||||||
|
for (k = 0; k < nDirs; k++) {
|
||||||
/* try on steam path */
|
// we only want to count directories ending with ".pk3dir"
|
||||||
if ( nPaks <= 0 )
|
if (FS_IsExt(pDirs[k], ".pk3dir", strlen(pDirs[k]))) {
|
||||||
{
|
nPakDirs++;
|
||||||
path = FS_BuildOSPath( fs_steampath->string, name, "" );
|
|
||||||
nPaks = 0;
|
|
||||||
pPaks = Sys_ListFiles( path, ".pk3", NULL, &nPaks, qfalse );
|
|
||||||
Sys_FreeFileList( pPaks );
|
|
||||||
}
|
|
||||||
|
|
||||||
/* try on gog path */
|
|
||||||
if ( nPaks <= 0 )
|
|
||||||
{
|
|
||||||
path = FS_BuildOSPath( fs_gogpath->string, name, "" );
|
|
||||||
nPaks = 0;
|
|
||||||
pPaks = Sys_ListFiles( path, ".pk3", NULL, &nPaks, qfalse );
|
|
||||||
Sys_FreeFileList( pPaks );
|
|
||||||
}
|
|
||||||
|
|
||||||
if (nPaks > 0) {
|
|
||||||
nLen = strlen(name) + 1;
|
|
||||||
// nLen is the length of the mod path
|
|
||||||
// we need to see if there is a description available
|
|
||||||
FS_GetModDescription( name, description, sizeof( description ) );
|
|
||||||
nDescLen = strlen(description) + 1;
|
|
||||||
|
|
||||||
if (nTotal + nLen + 1 + nDescLen + 1 < bufsize) {
|
|
||||||
strcpy(listbuf, name);
|
|
||||||
listbuf += nLen;
|
|
||||||
strcpy(listbuf, description);
|
|
||||||
listbuf += nDescLen;
|
|
||||||
nTotal += nLen + nDescLen;
|
|
||||||
nMods++;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// we only use Sys_ListFiles to check whether files are present
|
||||||
|
Sys_FreeFileList(pPaks);
|
||||||
|
Sys_FreeFileList(pDirs);
|
||||||
|
|
||||||
|
if (nPaks > 0 || nPakDirs > 0) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (nPaks > 0 || nPakDirs > 0) {
|
||||||
|
nLen = strlen(name) + 1;
|
||||||
|
// nLen is the length of the mod path
|
||||||
|
// we need to see if there is a description available
|
||||||
|
FS_GetModDescription(name, description, sizeof(description));
|
||||||
|
nDescLen = strlen(description) + 1;
|
||||||
|
|
||||||
|
if (nTotal + nLen + 1 + nDescLen + 1 < bufsize) {
|
||||||
|
strcpy(listbuf, name);
|
||||||
|
listbuf += nLen;
|
||||||
|
strcpy(listbuf, description);
|
||||||
|
listbuf += nDescLen;
|
||||||
|
nTotal += nLen + nDescLen;
|
||||||
|
nMods++;
|
||||||
|
} else {
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Sys_FreeFileList( pFiles );
|
Sys_FreeFileList( pFiles );
|
||||||
|
|
Loading…
Reference in a new issue