annotate playsound/physfsrwops.c @ 582:05a7b1d35ba9

Removed quicktime.c (use coreaudio.c instead).
author Ryan C. Gordon <icculus@icculus.org>
date Fri, 29 Oct 2010 03:39:46 -0400
parents 2df1f5c62d38
children
rev   line source
286
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
1 /*
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
2 * This code provides a glue layer between PhysicsFS and Simple Directmedia
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
3 * Layer's (SDL) RWops i/o abstraction.
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
4 *
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
5 * License: this code is public domain. I make no warranty that it is useful,
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
6 * correct, harmless, or environmentally safe.
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
7 *
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
8 * This particular file may be used however you like, including copying it
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
9 * verbatim into a closed-source project, exploiting it commercially, and
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
10 * removing any trace of my name from the source (although I hope you won't
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
11 * do that). I welcome enhancements and corrections to this file, but I do
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
12 * not require you to send me patches if you make changes.
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
13 *
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
14 * Unless otherwise stated, the rest of PhysicsFS falls under the GNU Lesser
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
15 * General Public License: http://www.gnu.org/licenses/lgpl.txt
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
16 *
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
17 * SDL falls under the LGPL, too. You can get SDL at http://www.libsdl.org/
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
18 *
526
2df1f5c62d38 Updated my email address.
Ryan C. Gordon <icculus@icculus.org>
parents: 479
diff changeset
19 * This file was written by Ryan C. Gordon. (icculus@icculus.org).
286
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
20 */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
21
479
35dfa9d9782e Fixed automake nonsense.
Ryan C. Gordon <icculus@icculus.org>
parents: 296
diff changeset
22 #if SUPPORT_PHYSFS
35dfa9d9782e Fixed automake nonsense.
Ryan C. Gordon <icculus@icculus.org>
parents: 296
diff changeset
23
286
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
24 #include <stdio.h> /* used for SEEK_SET, SEEK_CUR, SEEK_END ... */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
25 #include "physfsrwops.h"
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
26
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
27 static int physfsrwops_seek(SDL_RWops *rw, int offset, int whence)
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
28 {
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
29 PHYSFS_file *handle = (PHYSFS_file *) rw->hidden.unknown.data1;
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
30 int pos = 0;
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
31
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
32 if (whence == SEEK_SET)
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
33 {
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
34 pos = offset;
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
35 } /* if */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
36
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
37 else if (whence == SEEK_CUR)
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
38 {
296
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
39 PHYSFS_sint64 current = PHYSFS_tell(handle);
286
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
40 if (current == -1)
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
41 {
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
42 SDL_SetError("Can't find position in file: %s",
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
43 PHYSFS_getLastError());
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
44 return(-1);
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
45 } /* if */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
46
296
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
47 pos = (int) current;
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
48 if ( ((PHYSFS_sint64) pos) != current )
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
49 {
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
50 SDL_SetError("Can't fit current file position in an int!");
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
51 return(-1);
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
52 } /* if */
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
53
286
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
54 if (offset == 0) /* this is a "tell" call. We're done. */
296
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
55 return(pos);
286
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
56
296
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
57 pos += offset;
286
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
58 } /* else if */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
59
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
60 else if (whence == SEEK_END)
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
61 {
296
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
62 PHYSFS_sint64 len = PHYSFS_fileLength(handle);
286
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
63 if (len == -1)
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
64 {
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
65 SDL_SetError("Can't find end of file: %s", PHYSFS_getLastError());
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
66 return(-1);
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
67 } /* if */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
68
296
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
69 pos = (int) len;
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
70 if ( ((PHYSFS_sint64) pos) != len )
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
71 {
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
72 SDL_SetError("Can't fit end-of-file position in an int!");
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
73 return(-1);
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
74 } /* if */
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
75
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
76 pos += offset;
286
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
77 } /* else if */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
78
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
79 else
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
80 {
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
81 SDL_SetError("Invalid 'whence' parameter.");
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
82 return(-1);
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
83 } /* else */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
84
296
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
85 if ( pos < 0 )
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
86 {
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
87 SDL_SetError("Attempt to seek past start of file.");
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
88 return(-1);
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
89 } /* if */
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
90
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
91 if (!PHYSFS_seek(handle, (PHYSFS_uint64) pos))
286
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
92 {
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
93 SDL_SetError("PhysicsFS error: %s", PHYSFS_getLastError());
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
94 return(-1);
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
95 } /* if */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
96
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
97 return(pos);
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
98 } /* physfsrwops_seek */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
99
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
100
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
101 static int physfsrwops_read(SDL_RWops *rw, void *ptr, int size, int maxnum)
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
102 {
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
103 PHYSFS_file *handle = (PHYSFS_file *) rw->hidden.unknown.data1;
296
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
104 PHYSFS_sint64 rc = PHYSFS_read(handle, ptr, size, maxnum);
286
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
105 if (rc != maxnum)
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
106 {
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
107 if (!PHYSFS_eof(handle)) /* not EOF? Must be an error. */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
108 SDL_SetError("PhysicsFS error: %s", PHYSFS_getLastError());
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
109 } /* if */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
110
296
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
111 return((int) rc);
286
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
112 } /* physfsrwops_read */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
113
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
114
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
115 static int physfsrwops_write(SDL_RWops *rw, const void *ptr, int size, int num)
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
116 {
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
117 PHYSFS_file *handle = (PHYSFS_file *) rw->hidden.unknown.data1;
296
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
118 PHYSFS_sint64 rc = PHYSFS_write(handle, ptr, size, num);
286
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
119 if (rc != num)
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
120 SDL_SetError("PhysicsFS error: %s", PHYSFS_getLastError());
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
121
296
d8c0315deba9 Updated to fix bugs and deal with API breakage in PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents: 286
diff changeset
122 return((int) rc);
286
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
123 } /* physfsrwops_write */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
124
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
125
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
126 static int physfsrwops_close(SDL_RWops *rw)
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
127 {
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
128 PHYSFS_file *handle = (PHYSFS_file *) rw->hidden.unknown.data1;
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
129 if (!PHYSFS_close(handle))
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
130 {
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
131 SDL_SetError("PhysicsFS error: %s", PHYSFS_getLastError());
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
132 return(-1);
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
133 } /* if */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
134
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
135 SDL_FreeRW(rw);
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
136 return(0);
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
137 } /* physfsrwops_close */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
138
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
139
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
140 static SDL_RWops *create_rwops(PHYSFS_file *handle)
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
141 {
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
142 SDL_RWops *retval = NULL;
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
143
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
144 if (handle == NULL)
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
145 SDL_SetError("PhysicsFS error: %s", PHYSFS_getLastError());
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
146 else
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
147 {
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
148 retval = SDL_AllocRW();
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
149 if (retval != NULL)
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
150 {
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
151 retval->seek = physfsrwops_seek;
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
152 retval->read = physfsrwops_read;
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
153 retval->write = physfsrwops_write;
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
154 retval->close = physfsrwops_close;
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
155 retval->hidden.unknown.data1 = handle;
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
156 } /* if */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
157 } /* else */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
158
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
159 return(retval);
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
160 } /* create_rwops */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
161
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
162
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
163 SDL_RWops *PHYSFSRWOPS_makeRWops(PHYSFS_file *handle)
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
164 {
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
165 SDL_RWops *retval = NULL;
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
166 if (handle == NULL)
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
167 SDL_SetError("NULL pointer passed to PHYSFSRWOPS_makeRWops().");
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
168 else
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
169 retval = create_rwops(handle);
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
170
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
171 return(retval);
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
172 } /* PHYSFSRWOPS_makeRWops */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
173
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
174
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
175 SDL_RWops *PHYSFSRWOPS_openRead(const char *fname)
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
176 {
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
177 return(create_rwops(PHYSFS_openRead(fname)));
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
178 } /* PHYSFSRWOPS_openRead */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
179
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
180
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
181 SDL_RWops *PHYSFSRWOPS_openWrite(const char *fname)
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
182 {
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
183 return(create_rwops(PHYSFS_openWrite(fname)));
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
184 } /* PHYSFSRWOPS_openWrite */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
185
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
186
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
187 SDL_RWops *PHYSFSRWOPS_openAppend(const char *fname)
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
188 {
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
189 return(create_rwops(PHYSFS_openAppend(fname)));
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
190 } /* PHYSFSRWOPS_openAppend */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
191
479
35dfa9d9782e Fixed automake nonsense.
Ryan C. Gordon <icculus@icculus.org>
parents: 296
diff changeset
192 #endif
286
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
193
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
194 /* end of physfsrwops.c ... */
a6453cae7512 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
195