X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=fs.h;h=8f31b7cc9f0597a5c5d38cc8ed04cfbffb48ef9e;hb=64a00997d5d76bae2e6aae5e2de6ac17ea3504a9;hp=d1c87d3cde4cd4c66faff3a05cfa2485401c67a0;hpb=7654bd9684b667c0e755205846fbd62948bd1098;p=xonotic%2Fdarkplaces.git diff --git a/fs.h b/fs.h index d1c87d3c..8f31b7cc 100644 --- a/fs.h +++ b/fs.h @@ -31,8 +31,8 @@ typedef struct qfile_s qfile_t; #ifdef WIN32 -typedef long fs_offset_t; // 32bit -//typedef _int64 fs_offset_t; // 64bit (lots of warnings, and lseek/read/write still don't take 64bit on win64) +//typedef long fs_offset_t; // 32bit +typedef __int64 fs_offset_t; // 64bit (lots of warnings, and read/write still don't take 64bit on win64) #else typedef long long fs_offset_t; #endif @@ -44,6 +44,10 @@ typedef long long fs_offset_t; extern char fs_gamedir [MAX_OSPATH]; extern char fs_basedir [MAX_OSPATH]; +// list of active game directories (empty if not running a mod) +#define MAX_GAMEDIRS 16 +extern int fs_numgamedirs; +extern char fs_gamedirs[MAX_GAMEDIRS][MAX_QPATH]; // ------ Main functions ------ // @@ -69,8 +73,11 @@ void FS_Purge (qfile_t* file); const char *FS_FileWithoutPath (const char *in); const char *FS_FileExtension (const char *in); int FS_CheckNastyPath (const char *path, qboolean isgamedir); -qboolean FS_ChangeGameDir(const char *string); +qboolean FS_CheckGameDir(const char *gamedir); +qboolean FS_ChangeGameDirs(int numgamedirs, char gamedirs[][MAX_QPATH], qboolean complain, qboolean failmissing); qboolean FS_IsRegisteredQuakePack(const char *name); +int FS_CRCFile(const char *filename, size_t *filesizepointer); +void FS_Rescan(void); typedef struct fssearch_s { @@ -93,6 +100,12 @@ qboolean FS_WriteFile (const char *filename, void *data, fs_offset_t len); void FS_StripExtension (const char *in, char *out, size_t size_out); void FS_DefaultExtension (char *path, const char *extension, size_t size_path); +#define FS_FILETYPE_NONE 0 +#define FS_FILETYPE_FILE 1 +#define FS_FILETYPE_DIRECTORY 2 +int FS_FileType (const char *filename); // the file can be into a package +int FS_SysFileType (const char *filename); // only look for files outside of packages + qboolean FS_FileExists (const char *filename); // the file can be into a package qboolean FS_SysFileExists (const char *filename); // only look for files outside of packages