1 | // This file is a part of the Framsticks GDK library. |
---|
2 | // Copyright (C) 2002-2011 Szymon Ulatowski. See LICENSE.txt for details. |
---|
3 | // Refer to http://www.framsticks.com/ for further information. |
---|
4 | |
---|
5 | #ifndef _VIRTFILE_H_ |
---|
6 | #define _VIRTFILE_H_ |
---|
7 | |
---|
8 | #include <stdio.h> |
---|
9 | #include <stdarg.h> |
---|
10 | //#include <dirent.h> |
---|
11 | struct dirent; |
---|
12 | |
---|
13 | #ifdef DLLEXPORTACTIVE //tylko w tym pliku uzyte |
---|
14 | #define DLLEXP __declspec(dllexport) |
---|
15 | #else |
---|
16 | #define DLLEXP |
---|
17 | #endif |
---|
18 | |
---|
19 | class DLLEXP VirtFileSystem; |
---|
20 | |
---|
21 | class DLLEXP VirtFILE |
---|
22 | { |
---|
23 | public: |
---|
24 | virtual int Vread(void *ptr, size_t size, size_t nmemb)=0; |
---|
25 | virtual int Vwrite(const void *ptr, size_t size, size_t nmemb)=0; |
---|
26 | virtual int Veof()=0; |
---|
27 | virtual int Vputc(int c)=0; |
---|
28 | virtual int Vputs(const char *s)=0; |
---|
29 | virtual int Vgetc()=0; |
---|
30 | virtual int Vseek(long offset, int whence)=0; |
---|
31 | virtual int Vtell()=0; |
---|
32 | virtual void Vrewind()=0; |
---|
33 | virtual int Vflush()=0; |
---|
34 | virtual char *Vgets(char *s, int size)=0; |
---|
35 | virtual int Vprintf(const char *format, va_list args)=0; |
---|
36 | int printf(const char *format, ...); |
---|
37 | virtual const char *VgetPath() {return 0;} // 0=unspecified path |
---|
38 | virtual ~VirtFILE(); |
---|
39 | static VirtFILE *Vstdin,*Vstdout,*Vstderr; |
---|
40 | static void setVstdin(VirtFILE *); |
---|
41 | static void setVstdout(VirtFILE *); |
---|
42 | static void setVstderr(VirtFILE *); |
---|
43 | static VirtFILE* getVstdin(); |
---|
44 | static VirtFILE* getVstdout(); |
---|
45 | static VirtFILE* getVstderr(); |
---|
46 | static VirtFileSystem *vfs; |
---|
47 | static void selectFileSystem(VirtFileSystem *s); |
---|
48 | }; |
---|
49 | |
---|
50 | class DLLEXP VirtDIR |
---|
51 | { |
---|
52 | public: |
---|
53 | virtual ~VirtDIR() {} |
---|
54 | virtual dirent* Vreaddir() {return 0;} |
---|
55 | }; |
---|
56 | |
---|
57 | class DLLEXP VirtFileSystem |
---|
58 | { |
---|
59 | public: |
---|
60 | virtual VirtFILE *Vfopen(const char* path,const char*mode); |
---|
61 | virtual int Vfexists(const char* path); |
---|
62 | virtual VirtDIR *Vopendir(const char* path); |
---|
63 | }; |
---|
64 | |
---|
65 | DLLEXP VirtFILE *Vfopen(const char* path,const char*mode); |
---|
66 | DLLEXP VirtDIR *Vopendir(const char* path); |
---|
67 | DLLEXP int Vfexists(const char* path); |
---|
68 | |
---|
69 | DLLEXP int fread(void *ptr, size_t size, size_t nmemb, VirtFILE* f); |
---|
70 | DLLEXP int fwrite(const void *ptr, size_t size, size_t nmemb, VirtFILE* f); |
---|
71 | #ifdef __BORLANDC__ |
---|
72 | #undef feof |
---|
73 | #endif |
---|
74 | #ifdef _MSC_VER |
---|
75 | #undef feof |
---|
76 | #endif |
---|
77 | #ifdef SHP //nie wiem co to robi i jak ma byc, ale sie kompiluje z tym undefem a bez nie. tak samo w cpp |
---|
78 | #undef feof |
---|
79 | #endif |
---|
80 | DLLEXP int feof(VirtFILE* f);// {return f->Veof();} |
---|
81 | #ifdef __BORLANDC__ |
---|
82 | #define feof(__f) ((__f)->flags & _F_EOF) |
---|
83 | #endif |
---|
84 | #ifdef _MSC_VER |
---|
85 | #define feof(_stream) ((_stream)->_flag & _IOEOF) |
---|
86 | #endif |
---|
87 | |
---|
88 | DLLEXP int fputc(int c,VirtFILE* f); |
---|
89 | DLLEXP int fputs(const char *s,VirtFILE* f); |
---|
90 | DLLEXP int fgetc(VirtFILE* f); |
---|
91 | DLLEXP int fseek(VirtFILE* f,long offset, int whence); |
---|
92 | DLLEXP int ftell(VirtFILE* f); |
---|
93 | DLLEXP void rewind(VirtFILE* f); |
---|
94 | DLLEXP int fflush(VirtFILE* f); |
---|
95 | DLLEXP char *fgets(char *s, int size, VirtFILE* f); |
---|
96 | DLLEXP int fprintf(VirtFILE* f,const char *format, ...); |
---|
97 | DLLEXP int fclose(VirtFILE* f); |
---|
98 | |
---|
99 | DLLEXP dirent* readdir(VirtDIR* d); |
---|
100 | DLLEXP int closedir(VirtDIR* d); |
---|
101 | |
---|
102 | #endif |
---|