Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
627 lines (536 loc) · 16.5 KB

SDL_rwops.c

File metadata and controls

627 lines (536 loc) · 16.5 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
24
25
26
27
/* This file provides a general interface for SDL to read and write
data sources. It can easily be extended to files, memory, etc.
*/
Feb 9, 2006
Feb 9, 2006
28
#include "SDL_endian.h"
Feb 7, 2006
Feb 7, 2006
29
#include "SDL_rwops.h"
Feb 6, 2006
Feb 6, 2006
30
Feb 9, 2006
Feb 9, 2006
31
Jul 10, 2007
Jul 10, 2007
32
#ifdef __WIN32__
Apr 26, 2001
Apr 26, 2001
33
Feb 27, 2006
Feb 27, 2006
34
/* Functions to read/write Win32 API file pointers */
Mar 4, 2006
Mar 4, 2006
35
36
37
/* Will not use it on WinCE because stdio is buffered, it means
faster, and all stdio functions anyway are embedded in coredll.dll -
the main wince dll*/
Apr 26, 2001
Apr 26, 2001
38
Feb 27, 2006
Feb 27, 2006
39
40
41
#define WINDOWS_LEAN_AND_MEAN
#include <windows.h>
Mar 4, 2006
Mar 4, 2006
42
43
44
45
#ifndef INVALID_SET_FILE_POINTER
#define INVALID_SET_FILE_POINTER 0xFFFFFFFF
#endif
Jul 10, 2007
Jul 10, 2007
46
47
#define READAHEAD_BUFFER_SIZE 1024
Jul 10, 2006
Jul 10, 2006
48
49
static int SDLCALL
win32_file_open(SDL_RWops * context, const char *filename, const char *mode)
Mar 4, 2006
Mar 4, 2006
50
51
{
#ifndef _WIN32_WCE
Jul 10, 2006
Jul 10, 2006
52
UINT old_error_mode;
Mar 4, 2006
Mar 4, 2006
53
#endif
Jul 10, 2006
Jul 10, 2006
54
55
56
57
58
59
60
61
62
63
HANDLE h;
DWORD r_right, w_right;
DWORD must_exist, truncate;
int a_mode;
if (!context)
return -1;
context->hidden.win32io.h = INVALID_HANDLE_VALUE; /* mark this as unusable */
Jul 10, 2007
Jul 10, 2007
64
65
66
67
68
69
70
71
72
context->hidden.win32io.buffer.data =
(char *) SDL_malloc(READAHEAD_BUFFER_SIZE);
if (!context->hidden.win32io.buffer.data) {
SDL_OutOfMemory();
return -1;
}
context->hidden.win32io.buffer.size = 0;
context->hidden.win32io.buffer.left = 0;
Jul 10, 2006
Jul 10, 2006
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/* "r" = reading, file must exist */
/* "w" = writing, truncate existing, file may not exist */
/* "r+"= reading or writing, file must exist */
/* "a" = writing, append file may not exist */
/* "a+"= append + read, file may not exist */
/* "w+" = read, write, truncate. file may not exist */
must_exist = (SDL_strchr(mode, 'r') != NULL) ? OPEN_EXISTING : 0;
truncate = (SDL_strchr(mode, 'w') != NULL) ? CREATE_ALWAYS : 0;
r_right = (SDL_strchr(mode, '+') != NULL
|| must_exist) ? GENERIC_READ : 0;
a_mode = (SDL_strchr(mode, 'a') != NULL) ? OPEN_ALWAYS : 0;
w_right = (a_mode || SDL_strchr(mode, '+')
|| truncate) ? GENERIC_WRITE : 0;
if (!r_right && !w_right) /* inconsistent mode */
return -1; /* failed (invalid call) */
Mar 4, 2006
Mar 4, 2006
90
91
#ifdef _WIN32_WCE
Jul 10, 2006
Jul 10, 2006
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
size_t size = SDL_strlen(filename) + 1;
wchar_t *filenameW = SDL_stack_alloc(wchar_t, size);
if (MultiByteToWideChar(CP_UTF8, 0, filename, -1, filenameW, size) ==
0) {
SDL_SetError("Unable to convert filename to Unicode");
SDL_stack_free(filenameW);
return -1;
}
h = CreateFile(filenameW, (w_right | r_right),
(w_right) ? 0 : FILE_SHARE_READ, NULL,
(must_exist | truncate | a_mode),
FILE_ATTRIBUTE_NORMAL, NULL);
SDL_stack_free(filenameW);
}
Mar 4, 2006
Mar 4, 2006
108
#else
Jul 10, 2006
Jul 10, 2006
109
110
111
/* Do not open a dialog box if failure */
old_error_mode =
SetErrorMode(SEM_NOOPENFILEERRORBOX | SEM_FAILCRITICALERRORS);
Mar 4, 2006
Mar 4, 2006
112
Jul 10, 2006
Jul 10, 2006
113
114
115
116
h = CreateFile(filename, (w_right | r_right),
(w_right) ? 0 : FILE_SHARE_READ, NULL,
(must_exist | truncate | a_mode), FILE_ATTRIBUTE_NORMAL,
NULL);
Mar 4, 2006
Mar 4, 2006
117
Jul 10, 2006
Jul 10, 2006
118
119
/* restore old behaviour */
SetErrorMode(old_error_mode);
Mar 4, 2006
Mar 4, 2006
120
#endif /* _WIN32_WCE */
Feb 27, 2006
Feb 27, 2006
121
Jul 10, 2006
Jul 10, 2006
122
123
124
125
126
127
128
129
if (h == INVALID_HANDLE_VALUE) {
SDL_SetError("Couldn't open %s", filename);
return -2; /* failed (CreateFile) */
}
context->hidden.win32io.h = h;
context->hidden.win32io.append = a_mode;
return 0; /* ok */
Feb 27, 2006
Feb 27, 2006
130
}
Jul 10, 2007
Jul 10, 2007
131
132
static long SDLCALL
win32_file_seek(SDL_RWops * context, long offset, int whence)
Jul 10, 2006
Jul 10, 2006
133
134
{
DWORD win32whence;
Jul 10, 2007
Jul 10, 2007
135
long file_pos;
Feb 27, 2006
Feb 27, 2006
136
Jul 10, 2006
Jul 10, 2006
137
138
139
140
if (!context || context->hidden.win32io.h == INVALID_HANDLE_VALUE) {
SDL_SetError("win32_file_seek: invalid context/file not opened");
return -1;
}
Feb 27, 2006
Feb 27, 2006
141
Jul 10, 2007
Jul 10, 2007
142
143
144
145
146
147
/* FIXME: We may be able to satisfy the seek within buffered data */
if (whence == RW_SEEK_CUR && context->hidden.win32io.buffer.left) {
offset -= context->hidden.win32io.buffer.left;
}
context->hidden.win32io.buffer.left = 0;
Jul 10, 2006
Jul 10, 2006
148
149
150
151
152
153
154
155
156
157
158
159
160
161
switch (whence) {
case RW_SEEK_SET:
win32whence = FILE_BEGIN;
break;
case RW_SEEK_CUR:
win32whence = FILE_CURRENT;
break;
case RW_SEEK_END:
win32whence = FILE_END;
break;
default:
SDL_SetError("win32_file_seek: Unknown value for 'whence'");
return -1;
}
Feb 27, 2006
Feb 27, 2006
162
Jul 10, 2006
Jul 10, 2006
163
164
165
166
167
file_pos =
SetFilePointer(context->hidden.win32io.h, offset, NULL, win32whence);
if (file_pos != INVALID_SET_FILE_POINTER)
return file_pos; /* success */
Feb 27, 2006
Feb 27, 2006
168
Jul 10, 2006
Jul 10, 2006
169
170
SDL_Error(SDL_EFSEEK);
return -1; /* error */
Feb 27, 2006
Feb 27, 2006
171
}
Jul 10, 2007
Jul 10, 2007
172
173
static size_t SDLCALL
win32_file_read(SDL_RWops * context, void *ptr, size_t size, size_t maxnum)
Feb 27, 2006
Feb 27, 2006
174
{
Jul 10, 2007
Jul 10, 2007
175
176
177
size_t total_need;
size_t total_read = 0;
size_t read_ahead;
Jul 10, 2007
Jul 10, 2007
178
DWORD byte_read;
Feb 27, 2006
Feb 27, 2006
179
Jul 10, 2007
Jul 10, 2007
180
total_need = size * maxnum;
Jul 10, 2006
Jul 10, 2006
181
182
if (!context || context->hidden.win32io.h == INVALID_HANDLE_VALUE
Jul 10, 2007
Jul 10, 2007
183
|| !total_need)
Jul 10, 2006
Jul 10, 2006
184
185
return 0;
Jul 10, 2007
Jul 10, 2007
186
187
188
189
190
191
192
193
194
195
196
197
198
199
if (context->hidden.win32io.buffer.left > 0) {
void *data = (char *) context->hidden.win32io.buffer.data +
context->hidden.win32io.buffer.size -
context->hidden.win32io.buffer.left;
read_ahead = SDL_min(total_need, context->hidden.win32io.buffer.left);
SDL_memcpy(ptr, data, read_ahead);
context->hidden.win32io.buffer.left -= read_ahead;
if (read_ahead == total_need) {
return maxnum;
}
ptr = (char *) ptr + read_ahead;
total_need -= read_ahead;
total_read += read_ahead;
Jul 10, 2006
Jul 10, 2006
200
}
Jul 10, 2007
Jul 10, 2007
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
if (total_need < READAHEAD_BUFFER_SIZE) {
if (!ReadFile
(context->hidden.win32io.h, context->hidden.win32io.buffer.data,
READAHEAD_BUFFER_SIZE, &byte_read, NULL)) {
SDL_Error(SDL_EFREAD);
return 0;
}
read_ahead = SDL_min(total_need, (int) byte_read);
SDL_memcpy(ptr, context->hidden.win32io.buffer.data, read_ahead);
context->hidden.win32io.buffer.size = byte_read;
context->hidden.win32io.buffer.left = byte_read - read_ahead;
total_read += read_ahead;
} else {
if (!ReadFile
(context->hidden.win32io.h, ptr, total_need, &byte_read, NULL)) {
SDL_Error(SDL_EFREAD);
return 0;
}
total_read += byte_read;
}
return (total_read / size);
Feb 27, 2006
Feb 27, 2006
223
}
Jul 10, 2007
Jul 10, 2007
224
225
226
static size_t SDLCALL
win32_file_write(SDL_RWops * context, const void *ptr, size_t size,
size_t num)
Feb 27, 2006
Feb 27, 2006
227
{
Feb 6, 2006
Feb 6, 2006
228
Jul 10, 2007
Jul 10, 2007
229
size_t total_bytes;
Jul 10, 2006
Jul 10, 2006
230
DWORD byte_written, nwritten;
Apr 26, 2001
Apr 26, 2001
231
Jul 10, 2006
Jul 10, 2006
232
233
234
235
236
237
total_bytes = size * num;
if (!context || context->hidden.win32io.h == INVALID_HANDLE_VALUE
|| total_bytes <= 0 || !size)
return 0;
Jul 10, 2007
Jul 10, 2007
238
239
240
241
242
243
244
if (context->hidden.win32io.buffer.left) {
SetFilePointer(context->hidden.win32io.h,
-context->hidden.win32io.buffer.left, NULL,
FILE_CURRENT);
context->hidden.win32io.buffer.left = 0;
}
Jul 10, 2006
Jul 10, 2006
245
246
/* if in append mode, we must go to the EOF before write */
if (context->hidden.win32io.append) {
Jul 10, 2007
Jul 10, 2007
247
248
if (SetFilePointer(context->hidden.win32io.h, 0L, NULL, FILE_END) ==
INVALID_SET_FILE_POINTER) {
Jul 10, 2006
Jul 10, 2006
249
250
251
252
SDL_Error(SDL_EFWRITE);
return 0;
}
}
Apr 26, 2001
Apr 26, 2001
253
Jul 10, 2006
Jul 10, 2006
254
255
256
257
258
259
260
261
if (!WriteFile
(context->hidden.win32io.h, ptr, total_bytes, &byte_written, NULL)) {
SDL_Error(SDL_EFWRITE);
return 0;
}
nwritten = byte_written / size;
return nwritten;
Apr 26, 2001
Apr 26, 2001
262
}
Jul 10, 2006
Jul 10, 2006
263
264
static int SDLCALL
win32_file_close(SDL_RWops * context)
Apr 26, 2001
Apr 26, 2001
265
266
{
Jul 10, 2006
Jul 10, 2006
267
268
269
270
271
if (context) {
if (context->hidden.win32io.h != INVALID_HANDLE_VALUE) {
CloseHandle(context->hidden.win32io.h);
context->hidden.win32io.h = INVALID_HANDLE_VALUE; /* to be sure */
}
Jul 10, 2007
Jul 10, 2007
272
273
274
275
if (context->hidden.win32io.buffer.data) {
SDL_free(context->hidden.win32io.buffer.data);
context->hidden.win32io.buffer.data = NULL;
}
Jul 10, 2006
Jul 10, 2006
276
277
278
279
280
SDL_FreeRW(context);
}
return (0);
}
#endif /* __WIN32__ */
Jun 24, 2005
Jun 24, 2005
281
Jul 10, 2006
Jul 10, 2006
282
#ifdef HAVE_STDIO_H
Jun 24, 2005
Jun 24, 2005
283
Jul 10, 2006
Jul 10, 2006
284
/* Functions to read/write stdio file pointers */
Jun 24, 2005
Jun 24, 2005
285
Jul 10, 2007
Jul 10, 2007
286
287
static long SDLCALL
stdio_seek(SDL_RWops * context, long offset, int whence)
Jul 10, 2006
Jul 10, 2006
288
289
290
291
292
293
294
{
if (fseek(context->hidden.stdio.fp, offset, whence) == 0) {
return (ftell(context->hidden.stdio.fp));
} else {
SDL_Error(SDL_EFSEEK);
return (-1);
}
Apr 26, 2001
Apr 26, 2001
295
}
Jul 10, 2007
Jul 10, 2007
296
297
static size_t SDLCALL
stdio_read(SDL_RWops * context, void *ptr, size_t size, size_t maxnum)
Apr 26, 2001
Apr 26, 2001
298
{
Jul 10, 2006
Jul 10, 2006
299
300
301
302
303
304
305
size_t nread;
nread = fread(ptr, size, maxnum, context->hidden.stdio.fp);
if (nread == 0 && ferror(context->hidden.stdio.fp)) {
SDL_Error(SDL_EFREAD);
}
return (nread);
Apr 26, 2001
Apr 26, 2001
306
}
Jul 10, 2007
Jul 10, 2007
307
308
static size_t SDLCALL
stdio_write(SDL_RWops * context, const void *ptr, size_t size, size_t num)
Jan 4, 2004
Jan 4, 2004
309
{
Jul 10, 2006
Jul 10, 2006
310
311
312
313
314
315
316
size_t nwrote;
nwrote = fwrite(ptr, size, num, context->hidden.stdio.fp);
if (nwrote == 0 && ferror(context->hidden.stdio.fp)) {
SDL_Error(SDL_EFWRITE);
}
return (nwrote);
Jan 4, 2004
Jan 4, 2004
317
}
Jul 10, 2006
Jul 10, 2006
318
319
static int SDLCALL
stdio_close(SDL_RWops * context)
Apr 26, 2001
Apr 26, 2001
320
{
Jul 10, 2007
Jul 10, 2007
321
int status = 0;
Jul 10, 2006
Jul 10, 2006
322
323
324
if (context) {
if (context->hidden.stdio.autoclose) {
/* WARNING: Check the return value here! */
Jul 10, 2007
Jul 10, 2007
325
326
327
328
if (fclose(context->hidden.stdio.fp) != 0) {
SDL_Error(SDL_EFWRITE);
status = -1;
}
Jul 10, 2006
Jul 10, 2006
329
330
331
}
SDL_FreeRW(context);
}
Jul 10, 2007
Jul 10, 2007
332
return status;
Jul 10, 2006
Jul 10, 2006
333
334
335
336
337
}
#endif /* !HAVE_STDIO_H */
/* Functions to read/write memory pointers */
Jul 10, 2007
Jul 10, 2007
338
339
static long SDLCALL
mem_seek(SDL_RWops * context, long offset, int whence)
Jul 10, 2006
Jul 10, 2006
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
{
Uint8 *newpos;
switch (whence) {
case RW_SEEK_SET:
newpos = context->hidden.mem.base + offset;
break;
case RW_SEEK_CUR:
newpos = context->hidden.mem.here + offset;
break;
case RW_SEEK_END:
newpos = context->hidden.mem.stop + offset;
break;
default:
SDL_SetError("Unknown value for 'whence'");
return (-1);
}
if (newpos < context->hidden.mem.base) {
newpos = context->hidden.mem.base;
}
if (newpos > context->hidden.mem.stop) {
newpos = context->hidden.mem.stop;
}
context->hidden.mem.here = newpos;
return (context->hidden.mem.here - context->hidden.mem.base);
}
Jul 10, 2007
Jul 10, 2007
366
367
static size_t SDLCALL
mem_read(SDL_RWops * context, void *ptr, size_t size, size_t maxnum)
Jul 10, 2006
Jul 10, 2006
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
{
size_t total_bytes;
size_t mem_available;
total_bytes = (maxnum * size);
if ((maxnum <= 0) || (size <= 0)
|| ((total_bytes / maxnum) != (size_t) size)) {
return 0;
}
mem_available = (context->hidden.mem.stop - context->hidden.mem.here);
if (total_bytes > mem_available) {
total_bytes = mem_available;
}
SDL_memcpy(ptr, context->hidden.mem.here, total_bytes);
context->hidden.mem.here += total_bytes;
return (total_bytes / size);
}
Jul 10, 2007
Jul 10, 2007
388
389
static size_t SDLCALL
mem_write(SDL_RWops * context, const void *ptr, size_t size, size_t num)
Jul 10, 2006
Jul 10, 2006
390
391
392
393
394
395
396
397
{
if ((context->hidden.mem.here + (num * size)) > context->hidden.mem.stop) {
num = (context->hidden.mem.stop - context->hidden.mem.here) / size;
}
SDL_memcpy(context->hidden.mem.here, ptr, num * size);
context->hidden.mem.here += num * size;
return (num);
}
Jul 10, 2007
Jul 10, 2007
398
399
static size_t SDLCALL
mem_writeconst(SDL_RWops * context, const void *ptr, size_t size, size_t num)
Jul 10, 2006
Jul 10, 2006
400
401
402
403
404
405
406
407
408
409
410
{
SDL_SetError("Can't write to read-only memory");
return (-1);
}
static int SDLCALL
mem_close(SDL_RWops * context)
{
if (context) {
SDL_FreeRW(context);
}
return (0);
Apr 26, 2001
Apr 26, 2001
411
412
}
Feb 27, 2006
Feb 27, 2006
413
Apr 26, 2001
Apr 26, 2001
414
415
/* Functions to create SDL_RWops structures from various data sources */
Jul 10, 2006
Jul 10, 2006
416
417
SDL_RWops *
SDL_RWFromFile(const char *file, const char *mode)
Apr 26, 2001
Apr 26, 2001
418
{
Jul 10, 2006
Jul 10, 2006
419
SDL_RWops *rwops = NULL;
Mar 4, 2006
Mar 4, 2006
420
#ifdef HAVE_STDIO_H
Jul 10, 2006
Jul 10, 2006
421
FILE *fp = NULL;
Mar 4, 2006
Mar 4, 2006
422
#endif
Jul 10, 2006
Jul 10, 2006
423
424
425
426
if (!file || !*file || !mode || !*mode) {
SDL_SetError("SDL_RWFromFile(): No file or no mode specified");
return NULL;
}
Mar 4, 2006
Mar 4, 2006
427
#if defined(__WIN32__)
Jul 10, 2006
Jul 10, 2006
428
429
430
431
432
433
434
435
436
437
438
439
rwops = SDL_AllocRW();
if (!rwops)
return NULL; /* SDL_SetError already setup by SDL_AllocRW() */
rwops->hidden.win32io.h = INVALID_HANDLE_VALUE;
if (win32_file_open(rwops, file, mode)) {
SDL_FreeRW(rwops);
return NULL;
}
rwops->seek = win32_file_seek;
rwops->read = win32_file_read;
rwops->write = win32_file_write;
rwops->close = win32_file_close;
Feb 27, 2006
Feb 27, 2006
440
441
#elif HAVE_STDIO_H
Apr 26, 2001
Apr 26, 2001
442
Jul 10, 2006
Jul 10, 2006
443
444
445
446
447
448
fp = fopen(file, mode);
if (fp == NULL) {
SDL_SetError("Couldn't open %s", file);
} else {
rwops = SDL_RWFromFP(fp, 1);
}
Feb 27, 2006
Feb 27, 2006
449
#else
Jul 10, 2006
Jul 10, 2006
450
SDL_SetError("SDL not compiled with stdio support");
Feb 27, 2006
Feb 27, 2006
451
#endif /* !HAVE_STDIO_H */
Feb 27, 2006
Feb 27, 2006
452
Jul 10, 2006
Jul 10, 2006
453
return (rwops);
Apr 26, 2001
Apr 26, 2001
454
455
}
Feb 6, 2006
Feb 6, 2006
456
#ifdef HAVE_STDIO_H
Jul 10, 2006
Jul 10, 2006
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
SDL_RWops *
SDL_RWFromFP(FILE * fp, int autoclose)
{
SDL_RWops *rwops = NULL;
rwops = SDL_AllocRW();
if (rwops != NULL) {
rwops->seek = stdio_seek;
rwops->read = stdio_read;
rwops->write = stdio_write;
rwops->close = stdio_close;
rwops->hidden.stdio.fp = fp;
rwops->hidden.stdio.autoclose = autoclose;
}
return (rwops);
Apr 26, 2001
Apr 26, 2001
472
}
Feb 6, 2006
Feb 6, 2006
473
#endif /* HAVE_STDIO_H */
Apr 26, 2001
Apr 26, 2001
474
Jul 10, 2006
Jul 10, 2006
475
476
SDL_RWops *
SDL_RWFromMem(void *mem, int size)
Apr 26, 2001
Apr 26, 2001
477
{
Jul 10, 2006
Jul 10, 2006
478
SDL_RWops *rwops;
Apr 26, 2001
Apr 26, 2001
479
Jul 10, 2006
Jul 10, 2006
480
481
482
483
484
485
486
487
488
489
490
rwops = SDL_AllocRW();
if (rwops != NULL) {
rwops->seek = mem_seek;
rwops->read = mem_read;
rwops->write = mem_write;
rwops->close = mem_close;
rwops->hidden.mem.base = (Uint8 *) mem;
rwops->hidden.mem.here = rwops->hidden.mem.base;
rwops->hidden.mem.stop = rwops->hidden.mem.base + size;
}
return (rwops);
Apr 26, 2001
Apr 26, 2001
491
492
}
Jul 10, 2006
Jul 10, 2006
493
494
SDL_RWops *
SDL_RWFromConstMem(const void *mem, int size)
Jan 4, 2004
Jan 4, 2004
495
{
Jul 10, 2006
Jul 10, 2006
496
SDL_RWops *rwops;
Jan 4, 2004
Jan 4, 2004
497
Jul 10, 2006
Jul 10, 2006
498
499
500
501
502
503
504
505
506
507
508
rwops = SDL_AllocRW();
if (rwops != NULL) {
rwops->seek = mem_seek;
rwops->read = mem_read;
rwops->write = mem_writeconst;
rwops->close = mem_close;
rwops->hidden.mem.base = (Uint8 *) mem;
rwops->hidden.mem.here = rwops->hidden.mem.base;
rwops->hidden.mem.stop = rwops->hidden.mem.base + size;
}
return (rwops);
Jan 4, 2004
Jan 4, 2004
509
510
}
Jul 10, 2006
Jul 10, 2006
511
512
SDL_RWops *
SDL_AllocRW(void)
Apr 26, 2001
Apr 26, 2001
513
{
Jul 10, 2006
Jul 10, 2006
514
SDL_RWops *area;
Apr 26, 2001
Apr 26, 2001
515
Jul 10, 2006
Jul 10, 2006
516
517
518
519
520
area = (SDL_RWops *) SDL_malloc(sizeof *area);
if (area == NULL) {
SDL_OutOfMemory();
}
return (area);
Apr 26, 2001
Apr 26, 2001
521
522
}
Jul 10, 2006
Jul 10, 2006
523
524
void
SDL_FreeRW(SDL_RWops * area)
Apr 26, 2001
Apr 26, 2001
525
{
Jul 10, 2006
Jul 10, 2006
526
SDL_free(area);
Apr 26, 2001
Apr 26, 2001
527
}
Feb 9, 2006
Feb 9, 2006
528
529
530
/* Functions for dynamically reading and writing endian-specific values */
Jul 10, 2006
Jul 10, 2006
531
532
Uint16
SDL_ReadLE16(SDL_RWops * src)
Feb 9, 2006
Feb 9, 2006
533
{
Jul 10, 2006
Jul 10, 2006
534
Uint16 value;
Feb 9, 2006
Feb 9, 2006
535
Jul 10, 2006
Jul 10, 2006
536
537
SDL_RWread(src, &value, (sizeof value), 1);
return (SDL_SwapLE16(value));
Feb 9, 2006
Feb 9, 2006
538
}
Jul 10, 2006
Jul 10, 2006
539
540
541
Uint16
SDL_ReadBE16(SDL_RWops * src)
Feb 9, 2006
Feb 9, 2006
542
{
Jul 10, 2006
Jul 10, 2006
543
Uint16 value;
Feb 9, 2006
Feb 9, 2006
544
Jul 10, 2006
Jul 10, 2006
545
546
SDL_RWread(src, &value, (sizeof value), 1);
return (SDL_SwapBE16(value));
Feb 9, 2006
Feb 9, 2006
547
}
Jul 10, 2006
Jul 10, 2006
548
549
550
Uint32
SDL_ReadLE32(SDL_RWops * src)
Feb 9, 2006
Feb 9, 2006
551
{
Jul 10, 2006
Jul 10, 2006
552
Uint32 value;
Feb 9, 2006
Feb 9, 2006
553
Jul 10, 2006
Jul 10, 2006
554
555
SDL_RWread(src, &value, (sizeof value), 1);
return (SDL_SwapLE32(value));
Feb 9, 2006
Feb 9, 2006
556
}
Jul 10, 2006
Jul 10, 2006
557
558
559
Uint32
SDL_ReadBE32(SDL_RWops * src)
Feb 9, 2006
Feb 9, 2006
560
{
Jul 10, 2006
Jul 10, 2006
561
Uint32 value;
Feb 9, 2006
Feb 9, 2006
562
Jul 10, 2006
Jul 10, 2006
563
564
SDL_RWread(src, &value, (sizeof value), 1);
return (SDL_SwapBE32(value));
Feb 9, 2006
Feb 9, 2006
565
}
Jul 10, 2006
Jul 10, 2006
566
567
568
Uint64
SDL_ReadLE64(SDL_RWops * src)
Feb 9, 2006
Feb 9, 2006
569
{
Jul 10, 2006
Jul 10, 2006
570
Uint64 value;
Feb 9, 2006
Feb 9, 2006
571
Jul 10, 2006
Jul 10, 2006
572
573
SDL_RWread(src, &value, (sizeof value), 1);
return (SDL_SwapLE64(value));
Feb 9, 2006
Feb 9, 2006
574
}
Jul 10, 2006
Jul 10, 2006
575
576
577
Uint64
SDL_ReadBE64(SDL_RWops * src)
Feb 9, 2006
Feb 9, 2006
578
{
Jul 10, 2006
Jul 10, 2006
579
Uint64 value;
Feb 9, 2006
Feb 9, 2006
580
Jul 10, 2006
Jul 10, 2006
581
582
SDL_RWread(src, &value, (sizeof value), 1);
return (SDL_SwapBE64(value));
Feb 9, 2006
Feb 9, 2006
583
584
}
Jul 10, 2006
Jul 10, 2006
585
586
int
SDL_WriteLE16(SDL_RWops * dst, Uint16 value)
Feb 9, 2006
Feb 9, 2006
587
{
Jul 10, 2006
Jul 10, 2006
588
589
value = SDL_SwapLE16(value);
return (SDL_RWwrite(dst, &value, (sizeof value), 1));
Feb 9, 2006
Feb 9, 2006
590
}
Jul 10, 2006
Jul 10, 2006
591
592
593
int
SDL_WriteBE16(SDL_RWops * dst, Uint16 value)
Feb 9, 2006
Feb 9, 2006
594
{
Jul 10, 2006
Jul 10, 2006
595
596
value = SDL_SwapBE16(value);
return (SDL_RWwrite(dst, &value, (sizeof value), 1));
Feb 9, 2006
Feb 9, 2006
597
}
Jul 10, 2006
Jul 10, 2006
598
599
600
int
SDL_WriteLE32(SDL_RWops * dst, Uint32 value)
Feb 9, 2006
Feb 9, 2006
601
{
Jul 10, 2006
Jul 10, 2006
602
603
value = SDL_SwapLE32(value);
return (SDL_RWwrite(dst, &value, (sizeof value), 1));
Feb 9, 2006
Feb 9, 2006
604
}
Jul 10, 2006
Jul 10, 2006
605
606
607
int
SDL_WriteBE32(SDL_RWops * dst, Uint32 value)
Feb 9, 2006
Feb 9, 2006
608
{
Jul 10, 2006
Jul 10, 2006
609
610
value = SDL_SwapBE32(value);
return (SDL_RWwrite(dst, &value, (sizeof value), 1));
Feb 9, 2006
Feb 9, 2006
611
}
Jul 10, 2006
Jul 10, 2006
612
613
614
int
SDL_WriteLE64(SDL_RWops * dst, Uint64 value)
Feb 9, 2006
Feb 9, 2006
615
{
Jul 10, 2006
Jul 10, 2006
616
617
value = SDL_SwapLE64(value);
return (SDL_RWwrite(dst, &value, (sizeof value), 1));
Feb 9, 2006
Feb 9, 2006
618
}
Jul 10, 2006
Jul 10, 2006
619
620
621
int
SDL_WriteBE64(SDL_RWops * dst, Uint64 value)
Feb 9, 2006
Feb 9, 2006
622
{
Jul 10, 2006
Jul 10, 2006
623
624
value = SDL_SwapBE64(value);
return (SDL_RWwrite(dst, &value, (sizeof value), 1));
Feb 9, 2006
Feb 9, 2006
625
}
Jul 10, 2006
Jul 10, 2006
626
627
/* vi: set ts=4 sw=4 expandtab: */