2014-03-15 16:59:03 +00:00
|
|
|
/// \file
|
|
|
|
/// \brief Support to find files
|
|
|
|
///
|
|
|
|
///
|
|
|
|
/// filesearch:
|
|
|
|
///
|
|
|
|
/// ATTENTION : make sure there is enouth space in filename to put a full path (255 or 512)
|
|
|
|
/// if needmd5check == 0 there is no md5 check
|
|
|
|
/// if completepath then filename will be change with the full path and name
|
|
|
|
/// maxsearchdepth == 0 only search given directory, no subdirs
|
|
|
|
/// return FS_NOTFOUND
|
|
|
|
/// FS_MD5SUMBAD;
|
|
|
|
/// FS_FOUND
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#include <dirent.h>
|
|
|
|
#endif
|
|
|
|
#if defined (_WIN32) && !defined (_XBOX)
|
|
|
|
//#define WIN32_LEAN_AND_MEAN
|
|
|
|
#define RPC_NO_WINDOWS_H
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
#ifdef _WIN32_WCE
|
|
|
|
#include "sdl/SRB2CE/cehelp.h"
|
|
|
|
#else
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#endif
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "filesrch.h"
|
|
|
|
#include "d_netfil.h"
|
|
|
|
#include "m_misc.h"
|
2017-04-29 15:40:07 +00:00
|
|
|
#include "z_zone.h"
|
2017-04-29 15:40:07 +00:00
|
|
|
#include "m_menu.h" // Addons_option_Onchange
|
2014-03-15 16:59:03 +00:00
|
|
|
|
|
|
|
#if (defined (_WIN32) && !defined (_WIN32_WCE)) && defined (_MSC_VER) && !defined (_XBOX)
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <io.h>
|
|
|
|
#include <tchar.h>
|
|
|
|
|
|
|
|
#define SUFFIX "*"
|
2017-04-29 15:40:07 +00:00
|
|
|
#define SLASH PATHSEP
|
2014-03-15 16:59:03 +00:00
|
|
|
#define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
|
|
|
|
|
|
|
|
#ifndef INVALID_FILE_ATTRIBUTES
|
|
|
|
#define INVALID_FILE_ATTRIBUTES ((DWORD)-1)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct dirent
|
|
|
|
{
|
|
|
|
long d_ino; /* Always zero. */
|
|
|
|
unsigned short d_reclen; /* Always zero. */
|
|
|
|
unsigned short d_namlen; /* Length of name in d_name. */
|
|
|
|
char d_name[FILENAME_MAX]; /* File name. */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is an internal data structure. Good programmers will not use it
|
|
|
|
* except as an argument to one of the functions below.
|
|
|
|
* dd_stat field is now int (was short in older versions).
|
|
|
|
*/
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
/* disk transfer area for this dir */
|
|
|
|
struct _finddata_t dd_dta;
|
|
|
|
|
|
|
|
/* dirent struct to return from dir (NOTE: this makes this thread
|
|
|
|
* safe as long as only one thread uses a particular DIR struct at
|
|
|
|
* a time) */
|
|
|
|
struct dirent dd_dir;
|
|
|
|
|
|
|
|
/* _findnext handle */
|
|
|
|
#if _MSC_VER > 1200
|
|
|
|
intptr_t dd_handle;
|
|
|
|
#else
|
|
|
|
long dd_handle;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Status of search:
|
|
|
|
* 0 = not started yet (next entry to read is first entry)
|
|
|
|
* -1 = off the end
|
|
|
|
* positive = 0 based index of next entry
|
|
|
|
*/
|
|
|
|
int dd_stat;
|
|
|
|
|
|
|
|
/* given path for dir with search pattern (struct is extended) */
|
|
|
|
CHAR dd_name[1];
|
|
|
|
} DIR;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* opendir
|
|
|
|
*
|
|
|
|
* Returns a pointer to a DIR structure appropriately filled in to begin
|
|
|
|
* searching a directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
DIR *
|
|
|
|
opendir (const CHAR *szPath)
|
|
|
|
{
|
|
|
|
DIR *nd;
|
|
|
|
DWORD rc;
|
|
|
|
CHAR szFullPath[MAX_PATH];
|
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
|
|
|
|
if (!szPath)
|
|
|
|
{
|
|
|
|
errno = EFAULT;
|
|
|
|
return (DIR *) 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (szPath[0] == '\0')
|
|
|
|
{
|
|
|
|
errno = ENOTDIR;
|
|
|
|
return (DIR *) 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Attempt to determine if the given path really is a directory. */
|
|
|
|
rc = GetFileAttributesA(szPath);
|
|
|
|
if (rc == INVALID_FILE_ATTRIBUTES)
|
|
|
|
{
|
|
|
|
/* call GetLastError for more error info */
|
|
|
|
errno = ENOENT;
|
|
|
|
return (DIR *) 0;
|
|
|
|
}
|
|
|
|
if (!(rc & FILE_ATTRIBUTE_DIRECTORY))
|
|
|
|
{
|
|
|
|
/* Error, entry exists but not a directory. */
|
|
|
|
errno = ENOTDIR;
|
|
|
|
return (DIR *) 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make an absolute pathname. */
|
|
|
|
_fullpath (szFullPath, szPath, MAX_PATH);
|
|
|
|
|
|
|
|
/* Allocate enough space to store DIR structure and the complete
|
|
|
|
* directory path given. */
|
|
|
|
nd = (DIR *) malloc (sizeof (DIR) + (strlen(szFullPath) + strlen (SLASH) +
|
|
|
|
strlen(SUFFIX) + 1) * sizeof (CHAR));
|
|
|
|
|
|
|
|
if (!nd)
|
|
|
|
{
|
|
|
|
/* Error, out of memory. */
|
|
|
|
errno = ENOMEM;
|
|
|
|
return (DIR *) 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create the search expression. */
|
|
|
|
strcpy (nd->dd_name, szFullPath);
|
|
|
|
|
|
|
|
/* Add on a slash if the path does not end with one. */
|
|
|
|
if (nd->dd_name[0] != '\0' &&
|
|
|
|
nd->dd_name[strlen (nd->dd_name) - 1] != '/' &&
|
|
|
|
nd->dd_name[strlen (nd->dd_name) - 1] != '\\')
|
|
|
|
{
|
|
|
|
strcat (nd->dd_name, SLASH);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add on the search pattern */
|
|
|
|
strcat (nd->dd_name, SUFFIX);
|
|
|
|
|
|
|
|
/* Initialize handle to -1 so that a premature closedir doesn't try
|
|
|
|
* to call _findclose on it. */
|
|
|
|
nd->dd_handle = -1;
|
|
|
|
|
|
|
|
/* Initialize the status. */
|
|
|
|
nd->dd_stat = 0;
|
|
|
|
|
|
|
|
/* Initialize the dirent structure. ino and reclen are invalid under
|
|
|
|
* Win32, and name simply points at the appropriate part of the
|
|
|
|
* findfirst_t structure. */
|
|
|
|
nd->dd_dir.d_ino = 0;
|
|
|
|
nd->dd_dir.d_reclen = 0;
|
|
|
|
nd->dd_dir.d_namlen = 0;
|
|
|
|
ZeroMemory(nd->dd_dir.d_name, FILENAME_MAX);
|
|
|
|
|
|
|
|
return nd;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* readdir
|
|
|
|
*
|
|
|
|
* Return a pointer to a dirent structure filled with the information on the
|
|
|
|
* next entry in the directory.
|
|
|
|
*/
|
|
|
|
struct dirent *
|
|
|
|
readdir (DIR * dirp)
|
|
|
|
{
|
|
|
|
errno = 0;
|
|
|
|
|
|
|
|
/* Check for valid DIR struct. */
|
|
|
|
if (!dirp)
|
|
|
|
{
|
|
|
|
errno = EFAULT;
|
|
|
|
return (struct dirent *) 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dirp->dd_stat < 0)
|
|
|
|
{
|
|
|
|
/* We have already returned all files in the directory
|
|
|
|
* (or the structure has an invalid dd_stat). */
|
|
|
|
return (struct dirent *) 0;
|
|
|
|
}
|
|
|
|
else if (dirp->dd_stat == 0)
|
|
|
|
{
|
|
|
|
/* We haven't started the search yet. */
|
|
|
|
/* Start the search */
|
|
|
|
dirp->dd_handle = _findfirst (dirp->dd_name, &(dirp->dd_dta));
|
|
|
|
|
|
|
|
if (dirp->dd_handle == -1)
|
|
|
|
{
|
|
|
|
/* Whoops! Seems there are no files in that
|
|
|
|
* directory. */
|
|
|
|
dirp->dd_stat = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dirp->dd_stat = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Get the next search entry. */
|
|
|
|
if (_findnext (dirp->dd_handle, &(dirp->dd_dta)))
|
|
|
|
{
|
|
|
|
/* We are off the end or otherwise error.
|
|
|
|
_findnext sets errno to ENOENT if no more file
|
|
|
|
Undo this. */
|
|
|
|
DWORD winerr = GetLastError();
|
|
|
|
if (winerr == ERROR_NO_MORE_FILES)
|
|
|
|
errno = 0;
|
|
|
|
_findclose (dirp->dd_handle);
|
|
|
|
dirp->dd_handle = -1;
|
|
|
|
dirp->dd_stat = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Update the status to indicate the correct
|
|
|
|
* number. */
|
|
|
|
dirp->dd_stat++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dirp->dd_stat > 0)
|
|
|
|
{
|
|
|
|
/* Successfully got an entry. Everything about the file is
|
|
|
|
* already appropriately filled in except the length of the
|
|
|
|
* file name. */
|
|
|
|
dirp->dd_dir.d_namlen = (unsigned short)strlen (dirp->dd_dta.name);
|
|
|
|
strcpy (dirp->dd_dir.d_name, dirp->dd_dta.name);
|
|
|
|
return &dirp->dd_dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (struct dirent *) 0;
|
|
|
|
}
|
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
/*
|
|
|
|
* rewinddir
|
|
|
|
*
|
|
|
|
* Makes the next readdir start from the beginning.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
rewinddir (DIR * dirp)
|
|
|
|
{
|
|
|
|
errno = 0;
|
|
|
|
|
|
|
|
/* Check for valid DIR struct. */
|
|
|
|
if (!dirp)
|
|
|
|
{
|
|
|
|
errno = EFAULT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
dirp->dd_stat = 0;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
/*
|
|
|
|
* closedir
|
|
|
|
*
|
|
|
|
* Frees up resources allocated by opendir.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
closedir (DIR * dirp)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
rc = 0;
|
|
|
|
|
|
|
|
if (!dirp)
|
|
|
|
{
|
|
|
|
errno = EFAULT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dirp->dd_handle != -1)
|
|
|
|
{
|
|
|
|
rc = _findclose (dirp->dd_handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Delete the dir structure. */
|
|
|
|
free (dirp);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
#endif
|
2017-04-29 15:40:07 +00:00
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
static CV_PossibleValue_t addons_cons_t[] = {{0, "SRB2 Folder"}, /*{1, "HOME"}, {2, "SRB2 Folder"},*/ {3, "CUSTOM"}, {0, NULL}};
|
|
|
|
consvar_t cv_addons_option = {"addons_option", "SRB2 Folder", CV_SAVE|CV_CALL, addons_cons_t, Addons_option_Onchange, 0, NULL, NULL, 0, 0, NULL};
|
|
|
|
consvar_t cv_addons_folder = {"addons_folder", "./", CV_SAVE, NULL, NULL, 0, NULL, NULL, 0, 0, NULL};
|
|
|
|
|
|
|
|
static CV_PossibleValue_t addons_md5_cons_t[] = {{0, "Name"}, {1, "Checksum"}, {0, NULL}};
|
|
|
|
consvar_t cv_addons_md5 = {"addons_md5", "Name", CV_SAVE, addons_md5_cons_t, NULL, 0, NULL, NULL, 0, 0, NULL};
|
|
|
|
|
|
|
|
consvar_t cv_addons_showall = {"addons_showall", "No", CV_SAVE, CV_YesNo, NULL, 0, NULL, NULL, 0, 0, NULL};
|
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
char menupath[1024];
|
2017-04-29 15:40:07 +00:00
|
|
|
size_t menupathindex[menudepth];
|
|
|
|
size_t menudepthleft = menudepth;
|
2017-04-29 15:40:07 +00:00
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
char menusearch[MAXSTRINGLENGTH+1];
|
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
char **dirmenu;
|
|
|
|
size_t sizedirmenu;
|
2017-04-29 15:40:07 +00:00
|
|
|
size_t dir_on[menudepth];
|
2017-04-29 15:40:07 +00:00
|
|
|
UINT8 refreshdirmenu = 0;
|
|
|
|
|
|
|
|
size_t packetsizetally = 0;
|
2017-04-29 15:40:07 +00:00
|
|
|
size_t mainwadstally = 0;
|
2017-04-29 15:40:07 +00:00
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
#if defined (_XBOX) && defined (_MSC_VER)
|
|
|
|
filestatus_t filesearch(char *filename, const char *startpath, const UINT8 *wantedmd5sum,
|
|
|
|
boolean completepath, int maxsearchdepth)
|
|
|
|
{
|
|
|
|
//NONE?
|
|
|
|
startpath = filename = NULL;
|
|
|
|
wantedmd5sum = NULL;
|
|
|
|
maxsearchdepth = 0;
|
|
|
|
completepath = false;
|
|
|
|
return FS_NOTFOUND;
|
|
|
|
}
|
2017-04-29 15:40:07 +00:00
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
boolean preparefilemenu(boolean samedepth)
|
2017-04-29 15:40:07 +00:00
|
|
|
{
|
2017-04-29 15:40:07 +00:00
|
|
|
(void)samedepth;
|
2017-04-29 15:40:07 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
#elif defined (_WIN32_WCE)
|
|
|
|
filestatus_t filesearch(char *filename, const char *startpath, const UINT8 *wantedmd5sum,
|
|
|
|
boolean completepath, int maxsearchdepth)
|
|
|
|
{
|
|
|
|
#ifdef __GNUC__
|
|
|
|
//NONE?
|
|
|
|
startpath = filename = NULL;
|
|
|
|
wantedmd5sum = NULL;
|
|
|
|
maxsearchdepth = 0;
|
|
|
|
completepath = false;
|
|
|
|
#else
|
|
|
|
WIN32_FIND_DATA dta;
|
|
|
|
HANDLE searchhandle = INVALID_HANDLE_VALUE;
|
|
|
|
const wchar_t wm[4] = L"*.*";
|
|
|
|
|
|
|
|
//if (startpath) SetCurrentDirectory(startpath);
|
|
|
|
if (FIL_ReadFileOK(filename))
|
|
|
|
{
|
|
|
|
// checkfilemd5 returns an FS_* value, either FS_FOUND or FS_MD5SUMBAD
|
|
|
|
return checkfilemd5(filename, wantedmd5sum);
|
|
|
|
}
|
|
|
|
ZeroMemory(&dta,sizeof (dta));
|
|
|
|
if (maxsearchdepth)
|
|
|
|
searchhandle = FindFirstFile(wm,&dta);
|
|
|
|
if (searchhandle != INVALID_HANDLE_VALUE)
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if ((dta.cFileName[0]!='.') && (dta.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY))
|
|
|
|
{
|
|
|
|
//if (SetCurrentDirectory(dta.cFileName))
|
|
|
|
{ // can fail if we haven't the right
|
|
|
|
filestatus_t found;
|
|
|
|
found = filesearch(filename,NULL,wantedmd5sum,completepath,maxsearchdepth-1);
|
|
|
|
//SetCurrentDirectory("..");
|
|
|
|
if (found == FS_FOUND || found == FS_MD5SUMBAD)
|
|
|
|
{
|
|
|
|
if (completepath)
|
|
|
|
strcatbf(filename,(char *)dta.cFileName,"\\");
|
|
|
|
FindClose(searchhandle);
|
|
|
|
return found;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (FindNextFile(searchhandle,&dta)==0);
|
|
|
|
FindClose(searchhandle);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return FS_NOTFOUND;
|
|
|
|
}
|
2017-04-29 15:40:07 +00:00
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
boolean preparefilemenu(boolean samedepth)
|
2017-04-29 15:40:07 +00:00
|
|
|
{
|
2017-04-29 15:40:07 +00:00
|
|
|
(void)samedepth;
|
2017-04-29 15:40:07 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-03-15 16:59:03 +00:00
|
|
|
#else
|
|
|
|
filestatus_t filesearch(char *filename, const char *startpath, const UINT8 *wantedmd5sum, boolean completepath, int maxsearchdepth)
|
|
|
|
{
|
|
|
|
filestatus_t retval = FS_NOTFOUND;
|
|
|
|
DIR **dirhandle;
|
|
|
|
struct dirent *dent;
|
|
|
|
struct stat fsstat;
|
|
|
|
int found = 0;
|
|
|
|
char *searchname = strdup(filename);
|
|
|
|
int depthleft = maxsearchdepth;
|
|
|
|
char searchpath[1024];
|
|
|
|
size_t *searchpathindex;
|
|
|
|
|
|
|
|
dirhandle = (DIR**) malloc(maxsearchdepth * sizeof (DIR*));
|
|
|
|
searchpathindex = (size_t *) malloc(maxsearchdepth * sizeof (size_t));
|
|
|
|
|
|
|
|
strcpy(searchpath,startpath);
|
|
|
|
searchpathindex[--depthleft] = strlen(searchpath) + 1;
|
|
|
|
|
|
|
|
dirhandle[depthleft] = opendir(searchpath);
|
|
|
|
|
|
|
|
if (dirhandle[depthleft] == NULL)
|
|
|
|
{
|
|
|
|
free(searchname);
|
|
|
|
free(dirhandle);
|
|
|
|
free(searchpathindex);
|
|
|
|
return FS_NOTFOUND;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (searchpath[searchpathindex[depthleft]-2] != '/')
|
|
|
|
{
|
|
|
|
searchpath[searchpathindex[depthleft]-1] = '/';
|
|
|
|
searchpath[searchpathindex[depthleft]] = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
searchpathindex[depthleft]--;
|
|
|
|
|
|
|
|
while ((!found) && (depthleft < maxsearchdepth))
|
|
|
|
{
|
|
|
|
searchpath[searchpathindex[depthleft]]=0;
|
|
|
|
dent = readdir(dirhandle[depthleft]);
|
|
|
|
|
|
|
|
if (!dent)
|
2017-04-29 15:40:07 +00:00
|
|
|
{
|
2014-03-15 16:59:03 +00:00
|
|
|
closedir(dirhandle[depthleft++]);
|
2017-04-29 15:40:07 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dent->d_name[0]=='.' &&
|
2014-03-15 16:59:03 +00:00
|
|
|
(dent->d_name[1]=='\0' ||
|
|
|
|
(dent->d_name[1]=='.' &&
|
|
|
|
dent->d_name[2]=='\0')))
|
|
|
|
{
|
|
|
|
// we don't want to scan uptree
|
2017-04-29 15:40:07 +00:00
|
|
|
continue;
|
2014-03-15 16:59:03 +00:00
|
|
|
}
|
2017-04-29 15:40:07 +00:00
|
|
|
|
|
|
|
// okay, now we actually want searchpath to incorporate d_name
|
|
|
|
strcpy(&searchpath[searchpathindex[depthleft]],dent->d_name);
|
|
|
|
|
|
|
|
if (stat(searchpath,&fsstat) < 0) // do we want to follow symlinks? if not: change it to lstat
|
|
|
|
; // was the file (re)moved? can't stat it
|
2014-03-15 16:59:03 +00:00
|
|
|
else if (S_ISDIR(fsstat.st_mode) && depthleft)
|
|
|
|
{
|
|
|
|
searchpathindex[--depthleft] = strlen(searchpath) + 1;
|
|
|
|
dirhandle[depthleft] = opendir(searchpath);
|
|
|
|
if (!dirhandle[depthleft])
|
|
|
|
{
|
|
|
|
// can't open it... maybe no read-permissions
|
|
|
|
// go back to previous dir
|
|
|
|
depthleft++;
|
|
|
|
}
|
|
|
|
|
|
|
|
searchpath[searchpathindex[depthleft]-1]='/';
|
|
|
|
searchpath[searchpathindex[depthleft]]=0;
|
|
|
|
}
|
|
|
|
else if (!strcasecmp(searchname, dent->d_name))
|
|
|
|
{
|
|
|
|
switch (checkfilemd5(searchpath, wantedmd5sum))
|
|
|
|
{
|
|
|
|
case FS_FOUND:
|
|
|
|
if (completepath)
|
|
|
|
strcpy(filename,searchpath);
|
|
|
|
else
|
|
|
|
strcpy(filename,dent->d_name);
|
|
|
|
retval = FS_FOUND;
|
|
|
|
found = 1;
|
|
|
|
break;
|
|
|
|
case FS_MD5SUMBAD:
|
|
|
|
retval = FS_MD5SUMBAD;
|
|
|
|
break;
|
|
|
|
default: // prevent some compiler warnings
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; depthleft < maxsearchdepth; closedir(dirhandle[depthleft++]));
|
|
|
|
|
|
|
|
free(searchname);
|
|
|
|
free(searchpathindex);
|
|
|
|
free(dirhandle);
|
2017-04-29 15:40:07 +00:00
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
return retval;
|
|
|
|
}
|
2017-04-29 15:40:07 +00:00
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
char exttable[NUM_EXT_TABLE][5] = {
|
2017-04-29 15:40:07 +00:00
|
|
|
".txt", ".cfg", // exec
|
|
|
|
".wad", ".soc", ".lua"}; // addfile
|
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
char filenamebuf[MAX_WADFILES][MAX_WADPATH];
|
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
#if defined(_WIN32) || defined(_WINDOWS)
|
|
|
|
#define CASEINSENSITIVE_FILESYSTEM
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CASEINSENSITIVE_FILESYSTEM
|
2017-04-29 15:40:07 +00:00
|
|
|
static char *strsystemstr(char *haystack, char *needle)
|
|
|
|
{
|
|
|
|
char uprhaystack[128];
|
|
|
|
strlcpy(uprhaystack, haystack, 128);
|
|
|
|
strupr(uprhaystack);
|
|
|
|
return strstr(uprhaystack, needle);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define strsystemstr(haystack, needle) strstr(haystack, needle)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define searchdir if (menusearch[0] && !strsystemstr(dent->d_name, localmenusearch))\
|
2017-04-29 15:40:07 +00:00
|
|
|
{\
|
|
|
|
rejected++;\
|
|
|
|
continue;\
|
|
|
|
}\
|
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
boolean preparefilemenu(boolean samedepth)
|
2017-04-29 15:40:07 +00:00
|
|
|
{
|
|
|
|
DIR *dirhandle;
|
|
|
|
struct dirent *dent;
|
|
|
|
struct stat fsstat;
|
2017-04-29 15:40:07 +00:00
|
|
|
size_t pos = 0, folderpos = 0, numfolders = 0, rejected = 0;
|
2017-04-29 15:40:07 +00:00
|
|
|
char *tempname = NULL;
|
2017-04-29 15:40:07 +00:00
|
|
|
boolean noresults = false;
|
2017-04-29 15:40:07 +00:00
|
|
|
char localmenusearch[MAXSTRINGLENGTH] = "";
|
2017-04-29 15:40:07 +00:00
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
if (samedepth)
|
|
|
|
{
|
|
|
|
if (dirmenu && dirmenu[dir_on[menudepthleft]])
|
|
|
|
tempname = Z_StrDup(dirmenu[dir_on[menudepthleft]]+DIR_STRING); // don't need to I_Error if can't make - not important, just QoL
|
|
|
|
}
|
|
|
|
else
|
|
|
|
menusearch[0] = menusearch[1] = 0; // clear search
|
2017-04-29 15:40:07 +00:00
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
for (; sizedirmenu > 0; sizedirmenu--)
|
2017-04-29 15:40:07 +00:00
|
|
|
{
|
2017-04-29 15:40:07 +00:00
|
|
|
Z_Free(dirmenu[sizedirmenu-1]);
|
|
|
|
dirmenu[sizedirmenu-1] = NULL;
|
2017-04-29 15:40:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dirhandle = opendir(menupath);
|
|
|
|
|
|
|
|
if (dirhandle == NULL)
|
|
|
|
return false;
|
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
if (menusearch[0])
|
|
|
|
{
|
|
|
|
strcpy(localmenusearch, menusearch+1);
|
2017-04-29 15:40:07 +00:00
|
|
|
#ifdef CASEINSENSITIVE_FILESYSTEM
|
2017-04-29 15:40:07 +00:00
|
|
|
strupr(localmenusearch);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
menupath[menupathindex[menudepthleft]] = 0;
|
|
|
|
dent = readdir(dirhandle);
|
|
|
|
|
|
|
|
if (!dent)
|
|
|
|
break;
|
|
|
|
else if (dent->d_name[0]=='.' &&
|
|
|
|
(dent->d_name[1]=='\0' ||
|
|
|
|
(dent->d_name[1]=='.' &&
|
|
|
|
dent->d_name[2]=='\0')))
|
|
|
|
continue; // we don't want to scan uptree
|
|
|
|
|
|
|
|
strcpy(&menupath[menupathindex[menudepthleft]],dent->d_name);
|
|
|
|
|
|
|
|
if (stat(menupath,&fsstat) < 0) // do we want to follow symlinks? if not: change it to lstat
|
|
|
|
; // was the file (re)moved? can't stat it
|
|
|
|
else // is a file or directory
|
|
|
|
{
|
2017-04-29 15:40:07 +00:00
|
|
|
if (!S_ISDIR(fsstat.st_mode)) // file
|
2017-04-29 15:40:07 +00:00
|
|
|
{
|
2017-04-29 15:40:07 +00:00
|
|
|
if (!cv_addons_showall.value)
|
|
|
|
{
|
|
|
|
size_t len = strlen(dent->d_name)+1;
|
|
|
|
UINT8 ext;
|
|
|
|
for (ext = 0; ext < NUM_EXT_TABLE; ext++)
|
|
|
|
if (!strcasecmp(exttable[ext], dent->d_name+len-5)) break;
|
|
|
|
if (ext == NUM_EXT_TABLE) continue; // not an addfile-able (or exec-able) file
|
|
|
|
}
|
2017-04-29 15:40:07 +00:00
|
|
|
searchdir;
|
2017-04-29 15:40:07 +00:00
|
|
|
}
|
2017-04-29 15:40:07 +00:00
|
|
|
else // directory
|
2017-04-29 15:40:07 +00:00
|
|
|
{
|
|
|
|
searchdir;
|
2017-04-29 15:40:07 +00:00
|
|
|
numfolders++;
|
2017-04-29 15:40:07 +00:00
|
|
|
}
|
2017-04-29 15:40:07 +00:00
|
|
|
sizedirmenu++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
if (!rejected && !sizedirmenu)
|
2017-04-29 15:40:07 +00:00
|
|
|
{
|
|
|
|
if (tempname)
|
|
|
|
Z_Free(tempname);
|
2017-04-29 15:40:07 +00:00
|
|
|
closedir(dirhandle);
|
2017-04-29 15:40:07 +00:00
|
|
|
return false;
|
2017-04-29 15:40:07 +00:00
|
|
|
}
|
2017-04-29 15:40:07 +00:00
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
if (((noresults = (menusearch[0] && !sizedirmenu)))
|
2017-04-29 15:40:07 +00:00
|
|
|
|| (!menusearch[0] && menudepthleft != menudepth-1)) // Make room for UP... or search entry
|
2017-04-29 15:40:07 +00:00
|
|
|
{
|
|
|
|
sizedirmenu++;
|
2017-04-29 15:40:07 +00:00
|
|
|
numfolders++;
|
2017-04-29 15:40:07 +00:00
|
|
|
folderpos++;
|
|
|
|
}
|
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
if (!(dirmenu = Z_Realloc(dirmenu, sizedirmenu*sizeof(char *), PU_STATIC, NULL)))
|
2017-04-29 15:40:07 +00:00
|
|
|
{
|
|
|
|
closedir(dirhandle); // just in case
|
2017-04-29 15:40:07 +00:00
|
|
|
I_Error("Ran out of memory whilst preparing add-ons menu");
|
2017-04-29 15:40:07 +00:00
|
|
|
}
|
2017-04-29 15:40:07 +00:00
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
rejected = 0;
|
2017-04-29 15:40:07 +00:00
|
|
|
rewinddir(dirhandle);
|
2017-04-29 15:40:07 +00:00
|
|
|
|
|
|
|
while ((pos+folderpos) < sizedirmenu)
|
|
|
|
{
|
|
|
|
menupath[menupathindex[menudepthleft]] = 0;
|
|
|
|
dent = readdir(dirhandle);
|
|
|
|
|
|
|
|
if (!dent)
|
|
|
|
break;
|
|
|
|
else if (dent->d_name[0]=='.' &&
|
|
|
|
(dent->d_name[1]=='\0' ||
|
|
|
|
(dent->d_name[1]=='.' &&
|
|
|
|
dent->d_name[2]=='\0')))
|
|
|
|
continue; // we don't want to scan uptree
|
|
|
|
|
|
|
|
strcpy(&menupath[menupathindex[menudepthleft]],dent->d_name);
|
|
|
|
|
|
|
|
if (stat(menupath,&fsstat) < 0) // do we want to follow symlinks? if not: change it to lstat
|
|
|
|
; // was the file (re)moved? can't stat it
|
|
|
|
else // is a file or directory
|
|
|
|
{
|
|
|
|
char *temp;
|
|
|
|
size_t len = strlen(dent->d_name)+1;
|
2017-04-29 15:40:07 +00:00
|
|
|
UINT8 ext = EXT_FOLDER;
|
2017-04-29 15:40:07 +00:00
|
|
|
UINT8 folder;
|
2017-04-29 15:40:07 +00:00
|
|
|
|
|
|
|
if (!S_ISDIR(fsstat.st_mode)) // file
|
|
|
|
{
|
2017-04-29 15:40:07 +00:00
|
|
|
if (!((numfolders+pos) < sizedirmenu)) continue; // crash prevention
|
2017-04-29 15:40:07 +00:00
|
|
|
for (; ext < NUM_EXT_TABLE; ext++)
|
|
|
|
if (!strcasecmp(exttable[ext], dent->d_name+len-5)) break;
|
2017-04-29 15:40:07 +00:00
|
|
|
if (ext == NUM_EXT_TABLE && !cv_addons_showall.value) continue; // not an addfile-able (or exec-able) file
|
2017-04-29 15:40:07 +00:00
|
|
|
ext += EXT_START; // moving to be appropriate position
|
2017-04-29 15:40:07 +00:00
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
searchdir;
|
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
if (ext >= EXT_LOADSTART)
|
2017-04-29 15:40:07 +00:00
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < numwadfiles; i++)
|
|
|
|
{
|
|
|
|
if (!filenamebuf[i][0])
|
|
|
|
{
|
|
|
|
strncpy(filenamebuf[i], wadfiles[i]->filename, MAX_WADPATH);
|
|
|
|
filenamebuf[i][MAX_WADPATH - 1] = '\0';
|
|
|
|
nameonly(filenamebuf[i]);
|
|
|
|
}
|
2017-04-29 15:40:07 +00:00
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
if (strcmp(dent->d_name, filenamebuf[i]))
|
2017-04-29 15:40:07 +00:00
|
|
|
continue;
|
2017-04-29 15:40:07 +00:00
|
|
|
if (cv_addons_md5.value && !checkfilemd5(menupath, wadfiles[i]->md5sum))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ext |= EXT_LOADED;
|
2017-04-29 15:40:07 +00:00
|
|
|
}
|
|
|
|
}
|
2017-05-08 20:04:26 +00:00
|
|
|
else if (ext == EXT_TXT)
|
|
|
|
{
|
|
|
|
if (!strcmp(dent->d_name, "log.txt") || !strcmp(dent->d_name, "errorlog.txt"))
|
|
|
|
ext |= EXT_LOADED;
|
|
|
|
}
|
|
|
|
else if (ext == EXT_CFG)
|
|
|
|
{
|
|
|
|
if (!strcmp(dent->d_name, "config.cfg"))
|
|
|
|
ext |= EXT_LOADED;
|
|
|
|
}
|
2017-04-29 15:40:07 +00:00
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
folder = 0;
|
|
|
|
}
|
2017-04-29 15:40:07 +00:00
|
|
|
else // directory
|
2017-04-29 15:40:07 +00:00
|
|
|
{
|
|
|
|
searchdir;
|
2017-04-29 15:40:07 +00:00
|
|
|
len += (folder = 1);
|
2017-04-29 15:40:07 +00:00
|
|
|
}
|
2017-04-29 15:40:07 +00:00
|
|
|
|
|
|
|
if (len > 255)
|
|
|
|
len = 255;
|
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
if (!(temp = Z_Malloc((len+DIR_STRING+folder) * sizeof (char), PU_STATIC, NULL)))
|
2017-04-29 15:40:07 +00:00
|
|
|
I_Error("Ran out of memory whilst preparing add-ons menu");
|
2017-04-29 15:40:07 +00:00
|
|
|
temp[DIR_TYPE] = ext;
|
|
|
|
temp[DIR_LEN] = (UINT8)(len);
|
|
|
|
strlcpy(temp+DIR_STRING, dent->d_name, len);
|
2017-04-29 15:40:07 +00:00
|
|
|
if (folder)
|
|
|
|
{
|
|
|
|
strcpy(temp+len, "/");
|
|
|
|
dirmenu[folderpos++] = temp;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
dirmenu[numfolders + pos++] = temp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
if (noresults) // no results
|
|
|
|
dirmenu[0] = Z_StrDup(va("%c\13No results...", EXT_NORESULTS));
|
|
|
|
else if (!menusearch[0] &&menudepthleft != menudepth-1) // now for UP... entry
|
2017-04-29 15:40:07 +00:00
|
|
|
dirmenu[0] = Z_StrDup(va("%c\5UP...", EXT_UP));
|
2017-04-29 15:40:07 +00:00
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
menupath[menupathindex[menudepthleft]] = 0;
|
2017-04-29 15:40:07 +00:00
|
|
|
sizedirmenu = (numfolders+pos); // just in case things shrink between opening and rewind
|
2017-04-29 15:40:07 +00:00
|
|
|
|
|
|
|
if (tempname)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < sizedirmenu; i++)
|
|
|
|
{
|
|
|
|
if (!strcmp(dirmenu[i]+DIR_STRING, tempname))
|
|
|
|
{
|
|
|
|
dir_on[menudepthleft] = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Z_Free(tempname);
|
|
|
|
}
|
2017-04-29 15:40:07 +00:00
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
if (dir_on[menudepthleft] >= sizedirmenu)
|
2017-04-29 15:40:07 +00:00
|
|
|
dir_on[menudepthleft] = sizedirmenu-1;
|
2017-04-29 15:40:07 +00:00
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
closedir(dirhandle);
|
2017-04-29 15:40:07 +00:00
|
|
|
|
|
|
|
if (!sizedirmenu)
|
|
|
|
{
|
|
|
|
Z_Free(dirmenu);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-04-29 15:40:07 +00:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-15 16:59:03 +00:00
|
|
|
#endif
|