World of Might and Magic  0.2.0
Open reimplementation of Might and Magic 6 7 8 game engine
SDL_rwops.h
См. документацию.
1 /*
2  Simple DirectMedia Layer
3  Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
4 
5  This software is provided 'as-is', without any express or implied
6  warranty. In no event will the authors be held liable for any damages
7  arising from the use of this software.
8 
9  Permission is granted to anyone to use this software for any purpose,
10  including commercial applications, and to alter it and redistribute it
11  freely, subject to the following restrictions:
12 
13  1. The origin of this software must not be misrepresented; you must not
14  claim that you wrote the original software. If you use this software
15  in a product, an acknowledgment in the product documentation would be
16  appreciated but is not required.
17  2. Altered source versions must be plainly marked as such, and must not be
18  misrepresented as being the original software.
19  3. This notice may not be removed or altered from any source distribution.
20 */
21 
29 #ifndef SDL_rwops_h_
30 #define SDL_rwops_h_
31 
32 #include "SDL_stdinc.h"
33 #include "SDL_error.h"
34 
35 #include "begin_code.h"
36 /* Set up for C function definitions, even when using C++ */
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
40 
41 /* RWops Types */
42 #define SDL_RWOPS_UNKNOWN 0U
43 #define SDL_RWOPS_WINFILE 1U
44 #define SDL_RWOPS_STDFILE 2U
45 #define SDL_RWOPS_JNIFILE 3U
46 #define SDL_RWOPS_MEMORY 4U
47 #define SDL_RWOPS_MEMORY_RO 5U
52 typedef struct SDL_RWops
53 {
57  Sint64 (SDLCALL * size) (struct SDL_RWops * context);
58 
65  Sint64 (SDLCALL * seek) (struct SDL_RWops * context, Sint64 offset,
66  int whence);
67 
74  size_t (SDLCALL * read) (struct SDL_RWops * context, void *ptr,
75  size_t size, size_t maxnum);
76 
83  size_t (SDLCALL * write) (struct SDL_RWops * context, const void *ptr,
84  size_t size, size_t num);
85 
91  int (SDLCALL * close) (struct SDL_RWops * context);
92 
94  union
95  {
96 #if defined(__ANDROID__)
97  struct
98  {
99  void *fileNameRef;
102  void *readMethod;
104  long position;
105  long size;
106  long offset;
107  int fd;
108  } androidio;
109 #elif defined(__WIN32__)
110  struct
111  {
113  void *h;
114  struct
115  {
116  void *data;
117  size_t size;
118  size_t left;
119  } buffer;
120  } windowsio;
121 #endif
122 
123 #ifdef HAVE_STDIO_H
124  struct
125  {
127  FILE *fp;
128  } stdio;
129 #endif
130  struct
131  {
135  } mem;
136  struct
137  {
138  void *data1;
139  void *data2;
140  } unknown;
141  } hidden;
142 
143 } SDL_RWops;
144 
145 
151 /* @{ */
152 
153 extern DECLSPEC SDL_RWops *SDLCALL SDL_RWFromFile(const char *file,
154  const char *mode);
155 
156 #ifdef HAVE_STDIO_H
157 extern DECLSPEC SDL_RWops *SDLCALL SDL_RWFromFP(FILE * fp,
159 #else
160 extern DECLSPEC SDL_RWops *SDLCALL SDL_RWFromFP(void * fp,
162 #endif
163 
164 extern DECLSPEC SDL_RWops *SDLCALL SDL_RWFromMem(void *mem, int size);
165 extern DECLSPEC SDL_RWops *SDLCALL SDL_RWFromConstMem(const void *mem,
166  int size);
167 
168 /* @} *//* RWFrom functions */
169 
170 
171 extern DECLSPEC SDL_RWops *SDLCALL SDL_AllocRW(void);
172 extern DECLSPEC void SDLCALL SDL_FreeRW(SDL_RWops * area);
173 
174 #define RW_SEEK_SET 0
175 #define RW_SEEK_CUR 1
176 #define RW_SEEK_END 2
181 extern DECLSPEC Sint64 SDLCALL SDL_RWsize(SDL_RWops *context);
182 
189 extern DECLSPEC Sint64 SDLCALL SDL_RWseek(SDL_RWops *context,
190  Sint64 offset, int whence);
191 
195 extern DECLSPEC Sint64 SDLCALL SDL_RWtell(SDL_RWops *context);
196 
203 extern DECLSPEC size_t SDLCALL SDL_RWread(SDL_RWops *context,
204  void *ptr, size_t size, size_t maxnum);
205 
212 extern DECLSPEC size_t SDLCALL SDL_RWwrite(SDL_RWops *context,
213  const void *ptr, size_t size, size_t num);
214 
220 extern DECLSPEC int SDLCALL SDL_RWclose(SDL_RWops *context);
221 
235 extern DECLSPEC void *SDLCALL SDL_LoadFile_RW(SDL_RWops * src, size_t *datasize,
236  int freesrc);
237 
251 extern DECLSPEC void *SDLCALL SDL_LoadFile(const char *file, size_t *datasize);
252 
258 /* @{ */
259 extern DECLSPEC Uint8 SDLCALL SDL_ReadU8(SDL_RWops * src);
260 extern DECLSPEC Uint16 SDLCALL SDL_ReadLE16(SDL_RWops * src);
261 extern DECLSPEC Uint16 SDLCALL SDL_ReadBE16(SDL_RWops * src);
262 extern DECLSPEC Uint32 SDLCALL SDL_ReadLE32(SDL_RWops * src);
263 extern DECLSPEC Uint32 SDLCALL SDL_ReadBE32(SDL_RWops * src);
264 extern DECLSPEC Uint64 SDLCALL SDL_ReadLE64(SDL_RWops * src);
265 extern DECLSPEC Uint64 SDLCALL SDL_ReadBE64(SDL_RWops * src);
266 /* @} *//* Read endian functions */
267 
273 /* @{ */
274 extern DECLSPEC size_t SDLCALL SDL_WriteU8(SDL_RWops * dst, Uint8 value);
275 extern DECLSPEC size_t SDLCALL SDL_WriteLE16(SDL_RWops * dst, Uint16 value);
276 extern DECLSPEC size_t SDLCALL SDL_WriteBE16(SDL_RWops * dst, Uint16 value);
277 extern DECLSPEC size_t SDLCALL SDL_WriteLE32(SDL_RWops * dst, Uint32 value);
278 extern DECLSPEC size_t SDLCALL SDL_WriteBE32(SDL_RWops * dst, Uint32 value);
279 extern DECLSPEC size_t SDLCALL SDL_WriteLE64(SDL_RWops * dst, Uint64 value);
280 extern DECLSPEC size_t SDLCALL SDL_WriteBE64(SDL_RWops * dst, Uint64 value);
281 /* @} *//* Write endian functions */
282 
283 /* Ends C function definitions when using C++ */
284 #ifdef __cplusplus
285 }
286 #endif
287 #include "close_code.h"
288 
289 #endif /* SDL_rwops_h_ */
290 
291 /* vi: set ts=4 sw=4 expandtab: */
SDL_RWclose
DECLSPEC int SDLCALL SDL_RWclose(SDL_RWops *context)
Uint16
uint16_t Uint16
Definition: SDL_stdinc.h:191
SDL_RWops::data
void * data
Definition: SDL_rwops.h:116
SDL_RWops::here
Uint8 * here
Definition: SDL_rwops.h:133
SDL_RWops::append
SDL_bool append
Definition: SDL_rwops.h:112
SDL_ReadU8
DECLSPEC Uint8 SDLCALL SDL_ReadU8(SDL_RWops *src)
mode
EGLSyncKHR EGLenum mode
Definition: SDL_egl.h:1056
SDL_RWops::stop
Uint8 * stop
Definition: SDL_rwops.h:134
SDL_RWops::ptr
const void * ptr
Definition: SDL_rwops.h:83
SDL_RWops::fileNameRef
void * fileNameRef
Definition: SDL_rwops.h:99
SDL_error.h
SDL_RWops::readableByteChannelRef
void * readableByteChannelRef
Definition: SDL_rwops.h:101
SDL_RWops::size
const void size_t size
Definition: SDL_rwops.h:84
SDL_RWops::readMethod
void * readMethod
Definition: SDL_rwops.h:102
SDL_RWops::h
void * h
Definition: SDL_rwops.h:113
SDL_ReadLE16
DECLSPEC Uint16 SDLCALL SDL_ReadLE16(SDL_RWops *src)
num
GLuint num
Definition: SDL_opengl_glext.h:4959
SDL_RWops::windowsio
struct SDL_RWops::@93::@95 windowsio
SDL_RWops::whence
Sint64 int whence
Definition: SDL_rwops.h:66
size_t
unsigned int size_t
Definition: SDL_config.h:68
SDL_RWops::base
Uint8 * base
Definition: SDL_rwops.h:132
SDL_WriteBE32
DECLSPEC size_t SDLCALL SDL_WriteBE32(SDL_RWops *dst, Uint32 value)
SDL_RWops::left
size_t left
Definition: SDL_rwops.h:118
close_code.h
begin_code.h
buffer
EGLContext EGLenum EGLClientBuffer buffer
Definition: SDL_egl.h:952
SDL_WriteLE32
DECLSPEC size_t SDLCALL SDL_WriteLE32(SDL_RWops *dst, Uint32 value)
SDL_RWFromMem
DECLSPEC SDL_RWops *SDLCALL SDL_RWFromMem(void *mem, int size)
SDL_RWops::int
int(SDLCALL *close)(struct SDL_RWops *context)
SDL_ReadLE32
DECLSPEC Uint32 SDLCALL SDL_ReadLE32(SDL_RWops *src)
SDL_RWFromFP
DECLSPEC SDL_RWops *SDLCALL SDL_RWFromFP(FILE *fp, SDL_bool autoclose)
SDL_AllocRW
DECLSPEC SDL_RWops *SDLCALL SDL_AllocRW(void)
SDL_RWtell
DECLSPEC Sint64 SDLCALL SDL_RWtell(SDL_RWops *context)
src
GLenum src
Definition: SDL_opengl_glext.h:1740
SDL_RWops::type
Uint32 type
Definition: SDL_rwops.h:93
SDL_FreeRW
DECLSPEC void SDLCALL SDL_FreeRW(SDL_RWops *area)
SDL_RWops::fd
int fd
Definition: SDL_rwops.h:107
SDL_RWwrite
DECLSPEC size_t SDLCALL SDL_RWwrite(SDL_RWops *context, const void *ptr, size_t size, size_t num)
SDL_RWops::hidden
union SDL_RWops::@93 hidden
SDL_RWops::maxnum
void size_t size_t maxnum
Definition: SDL_rwops.h:75
value
EGLSyncKHR EGLint EGLint * value
Definition: SDL_egl.h:899
SDL_RWops::autoclose
SDL_bool autoclose
Definition: SDL_rwops.h:126
dst
GLenum GLenum dst
Definition: SDL_opengl_glext.h:1740
SDL_WriteBE16
DECLSPEC size_t SDLCALL SDL_WriteBE16(SDL_RWops *dst, Uint16 value)
SDL_RWread
DECLSPEC size_t SDLCALL SDL_RWread(SDL_RWops *context, void *ptr, size_t size, size_t maxnum)
SDL_RWops::stdio
struct SDL_RWops::@93::@96 stdio
SDL_RWops::mem
struct SDL_RWops::@93::@97 mem
SDL_RWops
struct SDL_RWops SDL_RWops
SDL_ReadBE16
DECLSPEC Uint16 SDLCALL SDL_ReadBE16(SDL_RWops *src)
SDL_bool
SDL_bool
Definition: SDL_stdinc.h:161
SDL_RWops::size
long size
Definition: SDL_rwops.h:105
SDL_WriteLE16
DECLSPEC size_t SDLCALL SDL_WriteLE16(SDL_RWops *dst, Uint16 value)
Uint8
uint8_t Uint8
Definition: SDL_stdinc.h:179
SDL_ReadBE64
DECLSPEC Uint64 SDLCALL SDL_ReadBE64(SDL_RWops *src)
Uint64
uint64_t Uint64
Definition: SDL_stdinc.h:216
SDL_WriteBE64
DECLSPEC size_t SDLCALL SDL_WriteBE64(SDL_RWops *dst, Uint64 value)
SDL_RWops::fp
FILE * fp
Definition: SDL_rwops.h:127
SDL_ReadBE32
DECLSPEC Uint32 SDLCALL SDL_ReadBE32(SDL_RWops *src)
SDL_stdinc.h
SDL_RWops::position
long position
Definition: SDL_rwops.h:104
Uint32
uint32_t Uint32
Definition: SDL_stdinc.h:203
SDL_RWFromConstMem
DECLSPEC SDL_RWops *SDLCALL SDL_RWFromConstMem(const void *mem, int size)
SDL_LoadFile
DECLSPEC void *SDLCALL SDL_LoadFile(const char *file, size_t *datasize)
SDL_RWseek
DECLSPEC Sint64 SDLCALL SDL_RWseek(SDL_RWops *context, Sint64 offset, int whence)
SDL_WriteLE64
DECLSPEC size_t SDLCALL SDL_WriteLE64(SDL_RWops *dst, Uint64 value)
SDL_WriteU8
DECLSPEC size_t SDLCALL SDL_WriteU8(SDL_RWops *dst, Uint8 value)
SDL_RWops::androidio
struct SDL_RWops::@93::@94 androidio
SDL_RWops::offset
long offset
Definition: SDL_rwops.h:106
SDL_RWops::offset
Sint64 offset
Definition: SDL_rwops.h:65
size
GLsizeiptr size
Definition: SDL_opengl_glext.h:540
offset
GLintptr offset
Definition: SDL_opengl_glext.h:541
SDL_RWops::inputStreamRef
void * inputStreamRef
Definition: SDL_rwops.h:100
SDL_RWops
Definition: SDL_rwops.h:52
SDL_RWops::data1
void * data1
Definition: SDL_rwops.h:138
SDL_RWops::unknown
struct SDL_RWops::@93::@98 unknown
Sint64
int64_t Sint64
Definition: SDL_stdinc.h:210
SDL_RWops::size
size_t size
Definition: SDL_rwops.h:117
SDL_RWFromFile
DECLSPEC SDL_RWops *SDLCALL SDL_RWFromFile(const char *file, const char *mode)
SDL_ReadLE64
DECLSPEC Uint64 SDLCALL SDL_ReadLE64(SDL_RWops *src)
SDL_LoadFile_RW
DECLSPEC void *SDLCALL SDL_LoadFile_RW(SDL_RWops *src, size_t *datasize, int freesrc)
SDL_RWops::ptr
void * ptr
Definition: SDL_rwops.h:74
SDL_RWops::data2
void * data2
Definition: SDL_rwops.h:139
SDL_RWops::size
void size_t size
Definition: SDL_rwops.h:75
SDL_RWops::assetFileDescriptorRef
void * assetFileDescriptorRef
Definition: SDL_rwops.h:103