hedgewars/uPhysFSLayer.pas
author unc0rr
Mon, 19 Nov 2012 17:41:09 +0400
changeset 8067 34a679e5ca9d
parent 8063 06efc1ea6a40
child 8073 5a289ef40fdb
permissions -rw-r--r--
Link some libraries needed for physfs on windows (there are still 5 symbols which couldn't be found - to be resolved)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7959
644b757d20e6 Start work on physfs support in engine
unc0rr
parents:
diff changeset
     1
unit uPhysFSLayer;
8062
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents: 8052
diff changeset
     2
{$IFDEF ANDROID}
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents: 8052
diff changeset
     3
    {$linklib physfs}
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents: 8052
diff changeset
     4
    {$linklib physfsrwops}
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents: 8052
diff changeset
     5
{$ELSE}
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents: 8052
diff changeset
     6
    {$LINKLIB ../bin/libphysfs.a}
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents: 8052
diff changeset
     7
    {$LINKLIB ../bin/libphysfsrwops.a}
abbcdf73327a allow the engine to use physfs on android too
Xeli
parents: 8052
diff changeset
     8
{$ENDIF}
7959
644b757d20e6 Start work on physfs support in engine
unc0rr
parents:
diff changeset
     9
8067
34a679e5ca9d Link some libraries needed for physfs on windows (there are still 5 symbols which couldn't be found - to be resolved)
unc0rr
parents: 8063
diff changeset
    10
{$IFDEF WIN32}
34a679e5ca9d Link some libraries needed for physfs on windows (there are still 5 symbols which couldn't be found - to be resolved)
unc0rr
parents: 8063
diff changeset
    11
    {$LINKLIB kernel32}
34a679e5ca9d Link some libraries needed for physfs on windows (there are still 5 symbols which couldn't be found - to be resolved)
unc0rr
parents: 8063
diff changeset
    12
    {$LINKLIB user32}
34a679e5ca9d Link some libraries needed for physfs on windows (there are still 5 symbols which couldn't be found - to be resolved)
unc0rr
parents: 8063
diff changeset
    13
    {$LINKLIB shell32}
34a679e5ca9d Link some libraries needed for physfs on windows (there are still 5 symbols which couldn't be found - to be resolved)
unc0rr
parents: 8063
diff changeset
    14
    {$LINKLIB advapi32}
34a679e5ca9d Link some libraries needed for physfs on windows (there are still 5 symbols which couldn't be found - to be resolved)
unc0rr
parents: 8063
diff changeset
    15
    {$LINKLIB msvcrt}
34a679e5ca9d Link some libraries needed for physfs on windows (there are still 5 symbols which couldn't be found - to be resolved)
unc0rr
parents: 8063
diff changeset
    16
{$ENDIF}
34a679e5ca9d Link some libraries needed for physfs on windows (there are still 5 symbols which couldn't be found - to be resolved)
unc0rr
parents: 8063
diff changeset
    17
8063
06efc1ea6a40 linking phsyfs on osx
koda
parents: 8062
diff changeset
    18
{$IFDEF DARWIN}
06efc1ea6a40 linking phsyfs on osx
koda
parents: 8062
diff changeset
    19
    {$LINKFRAMEWORK IOKit}
06efc1ea6a40 linking phsyfs on osx
koda
parents: 8062
diff changeset
    20
{$ENDIF}
06efc1ea6a40 linking phsyfs on osx
koda
parents: 8062
diff changeset
    21
7959
644b757d20e6 Start work on physfs support in engine
unc0rr
parents:
diff changeset
    22
interface
8022
10b3b93c1f56 - Add physfsrwops library
unc0rr
parents: 7963
diff changeset
    23
uses SDLh;
7959
644b757d20e6 Start work on physfs support in engine
unc0rr
parents:
diff changeset
    24
644b757d20e6 Start work on physfs support in engine
unc0rr
parents:
diff changeset
    25
procedure initModule;
644b757d20e6 Start work on physfs support in engine
unc0rr
parents:
diff changeset
    26
procedure freeModule;
644b757d20e6 Start work on physfs support in engine
unc0rr
parents:
diff changeset
    27
8028
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    28
type PFSFile = pointer;
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    29
8025
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 8022
diff changeset
    30
function rwopsOpenRead(fname: shortstring): PSDL_RWops;
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 8022
diff changeset
    31
function rwopsOpenWrite(fname: shortstring): PSDL_RWops;
8022
10b3b93c1f56 - Add physfsrwops library
unc0rr
parents: 7963
diff changeset
    32
8028
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    33
function pfsOpenRead(fname: shortstring): PFSFile;
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    34
function pfsClose(f: PFSFile): boolean;
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    35
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    36
procedure pfsReadLn(f: PFSFile; var s: shortstring);
8031
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8028
diff changeset
    37
function pfsBlockRead(f: PFSFile; buf: pointer; size: Int64): Int64;
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8028
diff changeset
    38
function pfsEOF(f: PFSFile): boolean;
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8028
diff changeset
    39
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8028
diff changeset
    40
function pfsExists(fname: shortstring): boolean;
8028
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    41
7959
644b757d20e6 Start work on physfs support in engine
unc0rr
parents:
diff changeset
    42
implementation
8022
10b3b93c1f56 - Add physfsrwops library
unc0rr
parents: 7963
diff changeset
    43
uses uUtils, uVariables;
7959
644b757d20e6 Start work on physfs support in engine
unc0rr
parents:
diff changeset
    44
644b757d20e6 Start work on physfs support in engine
unc0rr
parents:
diff changeset
    45
function PHYSFS_init(argv0: PChar) : LongInt; cdecl; external;
644b757d20e6 Start work on physfs support in engine
unc0rr
parents:
diff changeset
    46
function PHYSFS_deinit() : LongInt; cdecl; external;
8025
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 8022
diff changeset
    47
function PHYSFSRWOPS_openRead(fname: PChar): PSDL_RWops; cdecl; external;
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 8022
diff changeset
    48
function PHYSFSRWOPS_openWrite(fname: PChar): PSDL_RWops; cdecl; external;
7959
644b757d20e6 Start work on physfs support in engine
unc0rr
parents:
diff changeset
    49
7963
9910f303f5b6 Fix function prototype
unc0rr
parents: 7959
diff changeset
    50
function PHYSFS_mount(newDir, mountPoint: PChar; appendToPath: LongBool) : LongInt; cdecl; external;
8028
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    51
function PHYSFS_openRead(fname: PChar): PFSFile; cdecl; external;
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    52
function PHYSFS_eof(f: PFSFile): LongBool; cdecl; external;
8034
fc032c0f7b23 Implement reader in C ffs
unc0rr
parents: 8031
diff changeset
    53
function PHYSFS_readBytes(f: PFSFile; buffer: pointer; len: Int64): Int64; cdecl; external;
8028
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    54
function PHYSFS_close(f: PFSFile): LongBool; cdecl; external;
8031
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8028
diff changeset
    55
function PHYSFS_exists(fname: PChar): LongBool; cdecl; external;
7959
644b757d20e6 Start work on physfs support in engine
unc0rr
parents:
diff changeset
    56
8052
845b5ae03841 Mount .hwt files found in Data folder
unc0rr
parents: 8046
diff changeset
    57
procedure hedgewarsMountPackages(); cdecl; external;
845b5ae03841 Mount .hwt files found in Data folder
unc0rr
parents: 8046
diff changeset
    58
8025
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 8022
diff changeset
    59
function rwopsOpenRead(fname: shortstring): PSDL_RWops;
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 8022
diff changeset
    60
begin
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 8022
diff changeset
    61
    exit(PHYSFSRWOPS_openRead(Str2PChar(fname)));
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 8022
diff changeset
    62
end;
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 8022
diff changeset
    63
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 8022
diff changeset
    64
function rwopsOpenWrite(fname: shortstring): PSDL_RWops;
7959
644b757d20e6 Start work on physfs support in engine
unc0rr
parents:
diff changeset
    65
begin
8025
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 8022
diff changeset
    66
    exit(PHYSFSRWOPS_openWrite(Str2PChar(fname)));
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 8022
diff changeset
    67
end;
8022
10b3b93c1f56 - Add physfsrwops library
unc0rr
parents: 7963
diff changeset
    68
8028
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    69
function pfsOpenRead(fname: shortstring): PFSFile;
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    70
begin
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    71
    exit(PHYSFS_openRead(Str2PChar(fname)));
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    72
end;
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    73
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    74
function pfsEOF(f: PFSFile): boolean;
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    75
begin
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    76
    exit(PHYSFS_eof(f))
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    77
end;
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    78
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    79
function pfsClose(f: PFSFile): boolean;
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    80
begin
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    81
    exit(PHYSFS_close(f))
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    82
end;
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    83
8031
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8028
diff changeset
    84
function pfsExists(fname: shortstring): boolean;
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8028
diff changeset
    85
begin
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8028
diff changeset
    86
    exit(PHYSFS_exists(Str2PChar(fname)))
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8028
diff changeset
    87
end;
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8028
diff changeset
    88
8028
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    89
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    90
procedure pfsReadLn(f: PFSFile; var s: shortstring);
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    91
var c: char;
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    92
begin
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    93
s[0]:= #0;
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    94
8034
fc032c0f7b23 Implement reader in C ffs
unc0rr
parents: 8031
diff changeset
    95
while (PHYSFS_readBytes(f, @c, 1) = 1) and (c <> #10) do
8028
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    96
    if (c <> #13) and (s[0] < #255) then
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    97
        begin
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    98
        inc(s[0]);
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
    99
        s[byte(s[0])]:= c
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
   100
        end
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
   101
end;
dc30104660d3 Engine loads fine with basic config
unc0rr
parents: 8025
diff changeset
   102
8031
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8028
diff changeset
   103
function pfsBlockRead(f: PFSFile; buf: pointer; size: Int64): Int64;
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8028
diff changeset
   104
var r: Int64;
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8028
diff changeset
   105
begin
8034
fc032c0f7b23 Implement reader in C ffs
unc0rr
parents: 8031
diff changeset
   106
    r:= PHYSFS_readBytes(f, buf, size);
8031
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8028
diff changeset
   107
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8028
diff changeset
   108
    if r <= 0 then
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8028
diff changeset
   109
        pfsBlockRead:= 0
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8028
diff changeset
   110
    else
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8028
diff changeset
   111
        pfsBlockRead:= r
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8028
diff changeset
   112
end;
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8028
diff changeset
   113
8025
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 8022
diff changeset
   114
procedure initModule;
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 8022
diff changeset
   115
var i: LongInt;
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 8022
diff changeset
   116
begin
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 8022
diff changeset
   117
    i:= PHYSFS_init(Str2PChar(ParamStr(0)));
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 8022
diff changeset
   118
    AddFileLog('[PhysFS] init: ' + inttostr(i));
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 8022
diff changeset
   119
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 8022
diff changeset
   120
    i:= PHYSFS_mount(Str2PChar(PathPrefix), nil, true);
07862ab415c8 Get rid of Pathz and UserPathz
unc0rr
parents: 8022
diff changeset
   121
    AddFileLog('[PhysFS] mount ' + PathPrefix + ': ' + inttostr(i));
8031
fc40b343c45c Script loading via physfs which doesn't work:
unc0rr
parents: 8028
diff changeset
   122
    i:= PHYSFS_mount(Str2PChar(UserPathPrefix + '/Data'), nil, true);
8046
4d3415927d2c Use (undocumented) Mix_LoadMUS_RW to load music
unc0rr
parents: 8034
diff changeset
   123
    AddFileLog('[PhysFS] mount ' + UserPathPrefix + '/Data: ' + inttostr(i));
8052
845b5ae03841 Mount .hwt files found in Data folder
unc0rr
parents: 8046
diff changeset
   124
845b5ae03841 Mount .hwt files found in Data folder
unc0rr
parents: 8046
diff changeset
   125
    hedgewarsMountPackages;
7959
644b757d20e6 Start work on physfs support in engine
unc0rr
parents:
diff changeset
   126
end;
644b757d20e6 Start work on physfs support in engine
unc0rr
parents:
diff changeset
   127
644b757d20e6 Start work on physfs support in engine
unc0rr
parents:
diff changeset
   128
procedure freeModule;
644b757d20e6 Start work on physfs support in engine
unc0rr
parents:
diff changeset
   129
begin
644b757d20e6 Start work on physfs support in engine
unc0rr
parents:
diff changeset
   130
    PHYSFS_deinit;
644b757d20e6 Start work on physfs support in engine
unc0rr
parents:
diff changeset
   131
end;
644b757d20e6 Start work on physfs support in engine
unc0rr
parents:
diff changeset
   132
644b757d20e6 Start work on physfs support in engine
unc0rr
parents:
diff changeset
   133
end.