mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-15 22:19:07 +00:00
56 lines
1.3 KiB
C
56 lines
1.3 KiB
C
|
#ifndef FILE_API_H
|
||
|
#define FILE_API_H
|
||
|
|
||
|
// TODO: need VFS output functions?
|
||
|
|
||
|
#ifdef BBGE_BUILD_VFS
|
||
|
|
||
|
#include "ttvfs/VFS.h"
|
||
|
#include <sstream>
|
||
|
|
||
|
extern ttvfs::VFSHelper vfs;
|
||
|
typedef ttvfs::VFSFile VFILE;
|
||
|
|
||
|
|
||
|
VFILE *vfopen(const char *fn, const char *mode);
|
||
|
size_t vfread(void *ptr, size_t size, size_t count, VFILE *vf);
|
||
|
int vfclose(VFILE *vf);
|
||
|
size_t vfwrite(const void *ptr, size_t size, size_t count, VFILE *vf);
|
||
|
int vfseek(VFILE *vf, long int offset, int origin);
|
||
|
char *vfgets(char *str, int num, VFILE *vf);
|
||
|
void vfclear(VFILE *vf);
|
||
|
long int vftell(VFILE *vf);
|
||
|
|
||
|
// This class is a minimal adapter to support STL-like read-only file streams for VFS files, using std::istringstream.
|
||
|
class InStream : public std::istringstream
|
||
|
{
|
||
|
public:
|
||
|
InStream(const char *fn);
|
||
|
InStream(const std::string& fn);
|
||
|
bool open(const char *fn);
|
||
|
inline bool is_open() { return good(); }
|
||
|
inline void close() {}
|
||
|
private:
|
||
|
void _init(const char *fn);
|
||
|
};
|
||
|
|
||
|
#else // BBGE_BUILD_VFS
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <fstream>
|
||
|
typedef std::ifstream InStream;
|
||
|
typedef FILE VFILE;
|
||
|
#define vfopen fopen
|
||
|
#define vfread fread
|
||
|
#define vfclose fclose
|
||
|
#define vfwrite fwrite
|
||
|
#define vfseek fseek
|
||
|
#define vfgets fgets
|
||
|
#define vftell ftell
|
||
|
#define vfclear
|
||
|
|
||
|
#endif // BBGE_BUILD_VFS
|
||
|
|
||
|
|
||
|
#endif // FILE_API_H
|