misc/libphyslayer/physfsrwops.c
author S.D.
Tue, 27 Sep 2022 14:59:03 +0300
changeset 15878 fc3cb23fd26f
parent 15853 fcea0f51d94f
permissions -rw-r--r--
Allow to see rooms of incompatible versions in the lobby For the new clients the room version is shown in a separate column. There is also a hack for previous versions clients: the room vesion specifier is prepended to the room names for rooms of incompatible versions, and the server shows 'incompatible version' error if the client tries to join them.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
     1
/*
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
     2
 * This code provides a glue layer between PhysicsFS and Simple Directmedia
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
     3
 *  Layer's (SDL) RWops i/o abstraction.
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
     4
 *
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
     5
 * License: this code is public domain. I make no warranty that it is useful,
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
     6
 *  correct, harmless, or environmentally safe.
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
     7
 *
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
     8
 * This particular file may be used however you like, including copying it
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
     9
 *  verbatim into a closed-source project, exploiting it commercially, and
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    10
 *  removing any trace of my name from the source (although I hope you won't
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    11
 *  do that). I welcome enhancements and corrections to this file, but I do
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    12
 *  not require you to send me patches if you make changes. This code has
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    13
 *  NO WARRANTY.
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    14
 *
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    15
 * Unless otherwise stated, the rest of PhysicsFS falls under the zlib license.
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    16
 *  Please see LICENSE.txt in the root of the source tree.
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    17
 *
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    18
 * SDL 1.2 falls under the LGPL license. SDL 1.3+ is zlib, like PhysicsFS.
15853
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    19
 *  You can get SDL at https://www.libsdl.org/
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    20
 *
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    21
 *  This file was written by Ryan C. Gordon. (icculus@icculus.org).
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    22
 */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    23
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    24
#include <stdio.h>  /* used for SEEK_SET, SEEK_CUR, SEEK_END ... */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    25
#include "physfsrwops.h"
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    26
15853
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    27
/* SDL's RWOPS interface changed a little in SDL 2.0... */
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    28
#if defined(SDL_VERSION_ATLEAST)
15853
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    29
#if SDL_VERSION_ATLEAST(2, 0, 0)
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    30
#define TARGET_SDL2 1
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    31
#endif
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    32
#endif
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    33
15853
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    34
#if !TARGET_SDL2
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    35
#ifndef RW_SEEK_SET
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    36
#define RW_SEEK_SET SEEK_SET
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    37
#endif
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    38
#ifndef RW_SEEK_CUR
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    39
#define RW_SEEK_CUR SEEK_CUR
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    40
#endif
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    41
#ifndef RW_SEEK_END
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    42
#define RW_SEEK_END SEEK_END
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    43
#endif
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    44
#endif
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    45
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    46
#if TARGET_SDL2
13913
f8b5708835de .. or rather move calling conventions to proper position
alfadur
parents: 13912
diff changeset
    47
static Sint64 SDLCALL physfsrwops_size(struct SDL_RWops *rw)
9378
2be457289e60 update physlayer and sdl bindings to the new rwops interface
koda
parents: 9309
diff changeset
    48
{
2be457289e60 update physlayer and sdl bindings to the new rwops interface
koda
parents: 9309
diff changeset
    49
    PHYSFS_File *handle = (PHYSFS_File *) rw->hidden.unknown.data1;
15853
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    50
    return (Sint64) PHYSFS_fileLength(handle);
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    51
} /* physfsrwops_size */
9378
2be457289e60 update physlayer and sdl bindings to the new rwops interface
koda
parents: 9309
diff changeset
    52
#endif
2be457289e60 update physlayer and sdl bindings to the new rwops interface
koda
parents: 9309
diff changeset
    53
15853
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    54
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    55
#if TARGET_SDL2
13913
f8b5708835de .. or rather move calling conventions to proper position
alfadur
parents: 13912
diff changeset
    56
static Sint64 SDLCALL physfsrwops_seek(struct SDL_RWops *rw, Sint64 offset, int whence)
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    57
#else
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    58
static int physfsrwops_seek(SDL_RWops *rw, int offset, int whence)
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    59
#endif
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    60
{
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    61
    PHYSFS_File *handle = (PHYSFS_File *) rw->hidden.unknown.data1;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    62
    PHYSFS_sint64 pos = 0;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    63
15853
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    64
    if (whence == RW_SEEK_SET)
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    65
        pos = (PHYSFS_sint64) offset;
15853
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    66
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    67
    else if (whence == RW_SEEK_CUR)
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    68
    {
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    69
        const PHYSFS_sint64 current = PHYSFS_tell(handle);
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    70
        if (current == -1)
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    71
        {
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    72
            SDL_SetError("Can't find position in file: %s",
13538
f8c0a62fa3ac Fix deprecation warnings in libphyslayer
Wuzzy <Wuzzy2@mail.ru>
parents: 11656
diff changeset
    73
                          PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode()));
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    74
            return -1;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    75
        } /* if */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    76
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    77
        if (offset == 0)  /* this is a "tell" call. We're done. */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    78
        {
15853
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    79
            #if TARGET_SDL2
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    80
            return (Sint64) current;
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    81
            #else
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    82
            return (int) current;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    83
            #endif
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    84
        } /* if */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    85
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    86
        pos = current + ((PHYSFS_sint64) offset);
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    87
    } /* else if */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    88
15853
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
    89
    else if (whence == RW_SEEK_END)
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    90
    {
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    91
        const PHYSFS_sint64 len = PHYSFS_fileLength(handle);
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    92
        if (len == -1)
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    93
        {
13538
f8c0a62fa3ac Fix deprecation warnings in libphyslayer
Wuzzy <Wuzzy2@mail.ru>
parents: 11656
diff changeset
    94
            SDL_SetError("Can't find end of file: %s", PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode()));
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    95
            return -1;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    96
        } /* if */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    97
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    98
        pos = len + ((PHYSFS_sint64) offset);
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
    99
    } /* else if */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   100
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   101
    else
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   102
    {
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   103
        SDL_SetError("Invalid 'whence' parameter.");
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   104
        return -1;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   105
    } /* else */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   106
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   107
    if ( pos < 0 )
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   108
    {
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   109
        SDL_SetError("Attempt to seek past start of file.");
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   110
        return -1;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   111
    } /* if */
15853
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
   112
    
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   113
    if (!PHYSFS_seek(handle, (PHYSFS_uint64) pos))
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   114
    {
13538
f8c0a62fa3ac Fix deprecation warnings in libphyslayer
Wuzzy <Wuzzy2@mail.ru>
parents: 11656
diff changeset
   115
        SDL_SetError("PhysicsFS error: %s", PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode()));
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   116
        return -1;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   117
    } /* if */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   118
15853
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
   119
    #if TARGET_SDL2
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
   120
    return (Sint64) pos;
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   121
    #else
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   122
    return (int) pos;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   123
    #endif
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   124
} /* physfsrwops_seek */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   125
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   126
15853
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
   127
#if TARGET_SDL2
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   128
static size_t SDLCALL physfsrwops_read(struct SDL_RWops *rw, void *ptr,
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   129
                                       size_t size, size_t maxnum)
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   130
#else
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   131
static int physfsrwops_read(SDL_RWops *rw, void *ptr, int size, int maxnum)
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   132
#endif
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   133
{
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   134
    PHYSFS_File *handle = (PHYSFS_File *) rw->hidden.unknown.data1;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   135
    const PHYSFS_uint64 readlen = (PHYSFS_uint64) (maxnum * size);
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   136
    const PHYSFS_sint64 rc = PHYSFS_readBytes(handle, ptr, readlen);
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   137
    if (rc != ((PHYSFS_sint64) readlen))
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   138
    {
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   139
        if (!PHYSFS_eof(handle)) /* not EOF? Must be an error. */
15853
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
   140
        {
13538
f8c0a62fa3ac Fix deprecation warnings in libphyslayer
Wuzzy <Wuzzy2@mail.ru>
parents: 11656
diff changeset
   141
            SDL_SetError("PhysicsFS error: %s", PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode()));
15853
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
   142
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
   143
            #if TARGET_SDL2
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
   144
            return 0;
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
   145
            #else
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
   146
            return -1;
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
   147
            #endif
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
   148
        } /* if */
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   149
    } /* if */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   150
15853
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
   151
    #if TARGET_SDL2
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
   152
    return (size_t) rc / size;
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   153
    #else
15853
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
   154
    return (int) rc / size;
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   155
    #endif
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   156
} /* physfsrwops_read */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   157
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   158
15853
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
   159
#if TARGET_SDL2
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   160
static size_t SDLCALL physfsrwops_write(struct SDL_RWops *rw, const void *ptr,
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   161
                                        size_t size, size_t num)
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   162
#else
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   163
static int physfsrwops_write(SDL_RWops *rw, const void *ptr, int size, int num)
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   164
#endif
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   165
{
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   166
    PHYSFS_File *handle = (PHYSFS_File *) rw->hidden.unknown.data1;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   167
    const PHYSFS_uint64 writelen = (PHYSFS_uint64) (num * size);
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   168
    const PHYSFS_sint64 rc = PHYSFS_writeBytes(handle, ptr, writelen);
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   169
    if (rc != ((PHYSFS_sint64) writelen))
13538
f8c0a62fa3ac Fix deprecation warnings in libphyslayer
Wuzzy <Wuzzy2@mail.ru>
parents: 11656
diff changeset
   170
        SDL_SetError("PhysicsFS error: %s", PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode()));
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   171
15853
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
   172
    #if TARGET_SDL2
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   173
    return (size_t) rc;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   174
    #else
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   175
    return (int) rc;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   176
    #endif
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   177
} /* physfsrwops_write */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   178
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   179
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   180
static int physfsrwops_close(SDL_RWops *rw)
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   181
{
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   182
    PHYSFS_File *handle = (PHYSFS_File *) rw->hidden.unknown.data1;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   183
    if (!PHYSFS_close(handle))
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   184
    {
13538
f8c0a62fa3ac Fix deprecation warnings in libphyslayer
Wuzzy <Wuzzy2@mail.ru>
parents: 11656
diff changeset
   185
        SDL_SetError("PhysicsFS error: %s", PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode()));
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   186
        return -1;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   187
    } /* if */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   188
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   189
    SDL_FreeRW(rw);
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   190
    return 0;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   191
} /* physfsrwops_close */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   192
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   193
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   194
static SDL_RWops *create_rwops(PHYSFS_File *handle)
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   195
{
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   196
    SDL_RWops *retval = NULL;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   197
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   198
    if (handle == NULL)
13538
f8c0a62fa3ac Fix deprecation warnings in libphyslayer
Wuzzy <Wuzzy2@mail.ru>
parents: 11656
diff changeset
   199
        SDL_SetError("PhysicsFS error: %s", PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode()));
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   200
    else
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   201
    {
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   202
        retval = SDL_AllocRW();
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   203
        if (retval != NULL)
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   204
        {
15853
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
   205
            #if TARGET_SDL2
9378
2be457289e60 update physlayer and sdl bindings to the new rwops interface
koda
parents: 9309
diff changeset
   206
            retval->size  = physfsrwops_size;
15853
fcea0f51d94f Fix the sound issues and crashes on some platforms
S.D.
parents: 13913
diff changeset
   207
            #endif
7768
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   208
            retval->seek  = physfsrwops_seek;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   209
            retval->read  = physfsrwops_read;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   210
            retval->write = physfsrwops_write;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   211
            retval->close = physfsrwops_close;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   212
            retval->hidden.unknown.data1 = handle;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   213
        } /* if */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   214
    } /* else */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   215
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   216
    return retval;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   217
} /* create_rwops */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   218
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   219
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   220
SDL_RWops *PHYSFSRWOPS_makeRWops(PHYSFS_File *handle)
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   221
{
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   222
    SDL_RWops *retval = NULL;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   223
    if (handle == NULL)
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   224
        SDL_SetError("NULL pointer passed to PHYSFSRWOPS_makeRWops().");
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   225
    else
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   226
        retval = create_rwops(handle);
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   227
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   228
    return retval;
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   229
} /* PHYSFSRWOPS_makeRWops */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   230
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   231
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   232
SDL_RWops *PHYSFSRWOPS_openRead(const char *fname)
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   233
{
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   234
    return create_rwops(PHYSFS_openRead(fname));
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   235
} /* PHYSFSRWOPS_openRead */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   236
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   237
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   238
SDL_RWops *PHYSFSRWOPS_openWrite(const char *fname)
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   239
{
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   240
    return create_rwops(PHYSFS_openWrite(fname));
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   241
} /* PHYSFSRWOPS_openWrite */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   242
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   243
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   244
SDL_RWops *PHYSFSRWOPS_openAppend(const char *fname)
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   245
{
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   246
    return create_rwops(PHYSFS_openAppend(fname));
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   247
} /* PHYSFSRWOPS_openAppend */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   248
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   249
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   250
/* end of physfsrwops.c ... */
13e2037ebc79 Try using PhysicsFS.
unc0rr
parents:
diff changeset
   251