author | nemo |
Sun, 19 May 2013 16:52:57 -0400 | |
changeset 9016 | 42b56bfc57ed |
parent 8978 | e6ef8fe314bd |
child 9111 | f529fba57ba5 |
permissions | -rw-r--r-- |
7959 | 1 |
unit uPhysFSLayer; |
8063 | 2 |
|
7959 | 3 |
interface |
8077 | 4 |
uses SDLh, LuaPas; |
7959 | 5 |
|
8558 | 6 |
const PhysfsLibName = {$IFDEF PHYSFS_INTERNAL}'libhw_physfs'{$ELSE}'libphysfs'{$ENDIF}; |
8540
cf808329bb6f
this should hijack the linker name and always pick the bundled physfs when another version is already prsent
koda
parents:
8533
diff
changeset
|
7 |
const PhyslayerLibName = 'libphyslayer'; |
8073 | 8 |
|
8540
cf808329bb6f
this should hijack the linker name and always pick the bundled physfs when another version is already prsent
koda
parents:
8533
diff
changeset
|
9 |
{$IFNDEF WIN32} |
cf808329bb6f
this should hijack the linker name and always pick the bundled physfs when another version is already prsent
koda
parents:
8533
diff
changeset
|
10 |
{$linklib physfs} |
cf808329bb6f
this should hijack the linker name and always pick the bundled physfs when another version is already prsent
koda
parents:
8533
diff
changeset
|
11 |
{$linklib physlayer} |
8926
8fde68cfeb71
link stdc++ (for physfs on linux) only when targetting 32bit
koda
parents:
8714
diff
changeset
|
12 |
|
8927 | 13 |
{statically linking physfs brings IOKit dependency on OSX} |
14 |
{divdi3 is found in stdc++ on linux x86 and in gcc_s.1 on osx ppc32} |
|
8926
8fde68cfeb71
link stdc++ (for physfs on linux) only when targetting 32bit
koda
parents:
8714
diff
changeset
|
15 |
{$IFDEF PHYSFS_INTERNAL} |
8fde68cfeb71
link stdc++ (for physfs on linux) only when targetting 32bit
koda
parents:
8714
diff
changeset
|
16 |
{$IFDEF DARWIN} |
8fde68cfeb71
link stdc++ (for physfs on linux) only when targetting 32bit
koda
parents:
8714
diff
changeset
|
17 |
{$linkframework IOKit} |
8927 | 18 |
{$IFDEF CPU32} |
19 |
{$linklib gcc_s.1} |
|
20 |
{$ENDIF} |
|
8926
8fde68cfeb71
link stdc++ (for physfs on linux) only when targetting 32bit
koda
parents:
8714
diff
changeset
|
21 |
{$ELSE} |
8fde68cfeb71
link stdc++ (for physfs on linux) only when targetting 32bit
koda
parents:
8714
diff
changeset
|
22 |
{$IFDEF CPU32} |
8fde68cfeb71
link stdc++ (for physfs on linux) only when targetting 32bit
koda
parents:
8714
diff
changeset
|
23 |
{$linklib stdc++} |
8fde68cfeb71
link stdc++ (for physfs on linux) only when targetting 32bit
koda
parents:
8714
diff
changeset
|
24 |
{$ENDIF} |
8fde68cfeb71
link stdc++ (for physfs on linux) only when targetting 32bit
koda
parents:
8714
diff
changeset
|
25 |
{$ENDIF} |
8540
cf808329bb6f
this should hijack the linker name and always pick the bundled physfs when another version is already prsent
koda
parents:
8533
diff
changeset
|
26 |
{$ENDIF} |
8533
2d7703d6bc22
this should make physfs happy to link on windows too, forcing every function in its proper dll and skipping linklib
koda
parents:
8528
diff
changeset
|
27 |
{$ENDIF} |
2d7703d6bc22
this should make physfs happy to link on windows too, forcing every function in its proper dll and skipping linklib
koda
parents:
8528
diff
changeset
|
28 |
|
7959 | 29 |
procedure initModule; |
30 |
procedure freeModule; |
|
31 |
||
8028 | 32 |
type PFSFile = pointer; |
33 |
||
8025 | 34 |
function rwopsOpenRead(fname: shortstring): PSDL_RWops; |
35 |
function rwopsOpenWrite(fname: shortstring): PSDL_RWops; |
|
8022 | 36 |
|
8028 | 37 |
function pfsOpenRead(fname: shortstring): PFSFile; |
38 |
function pfsClose(f: PFSFile): boolean; |
|
39 |
||
40 |
procedure pfsReadLn(f: PFSFile; var s: shortstring); |
|
8107 | 41 |
procedure pfsReadLnA(f: PFSFile; var s: ansistring); |
8031 | 42 |
function pfsBlockRead(f: PFSFile; buf: pointer; size: Int64): Int64; |
43 |
function pfsEOF(f: PFSFile): boolean; |
|
44 |
||
45 |
function pfsExists(fname: shortstring): boolean; |
|
8028 | 46 |
|
8533
2d7703d6bc22
this should make physfs happy to link on windows too, forcing every function in its proper dll and skipping linklib
koda
parents:
8528
diff
changeset
|
47 |
function physfsReader(L: Plua_State; f: PFSFile; sz: Psize_t) : PChar; cdecl; external PhyslayerLibName; |
2d7703d6bc22
this should make physfs happy to link on windows too, forcing every function in its proper dll and skipping linklib
koda
parents:
8528
diff
changeset
|
48 |
procedure physfsReaderSetBuffer(buf: pointer); cdecl; external PhyslayerLibName; |
8978
e6ef8fe314bd
suggestion of unc0rr's to fix issue w/ random maps in campaign. load sidecar packages in physfs for lua. should be useful also for lua that does custom layouts
nemo
parents:
8927
diff
changeset
|
49 |
procedure hedgewarsMountPackage(filename: PChar); cdecl; external PhyslayerLibName; |
8077 | 50 |
|
7959 | 51 |
implementation |
8310
a98c349bc06b
minor adjustments to libengine, moc is correctly created as definitions are set before calling it, params are better numbered and we don't subclass qthread but rather use moveToThread()
koda
parents:
8283
diff
changeset
|
52 |
uses uUtils, uVariables, sysutils; |
7959 | 53 |
|
8073 | 54 |
function PHYSFS_init(argv0: PChar) : LongInt; cdecl; external PhysfsLibName; |
55 |
function PHYSFS_deinit() : LongInt; cdecl; external PhysfsLibName; |
|
8533
2d7703d6bc22
this should make physfs happy to link on windows too, forcing every function in its proper dll and skipping linklib
koda
parents:
8528
diff
changeset
|
56 |
function PHYSFSRWOPS_openRead(fname: PChar): PSDL_RWops; cdecl ; external PhyslayerLibName; |
2d7703d6bc22
this should make physfs happy to link on windows too, forcing every function in its proper dll and skipping linklib
koda
parents:
8528
diff
changeset
|
57 |
function PHYSFSRWOPS_openWrite(fname: PChar): PSDL_RWops; cdecl; external PhyslayerLibName; |
7959 | 58 |
|
8073 | 59 |
function PHYSFS_mount(newDir, mountPoint: PChar; appendToPath: LongBool) : LongInt; cdecl; external PhysfsLibName; |
60 |
function PHYSFS_openRead(fname: PChar): PFSFile; cdecl; external PhysfsLibName; |
|
61 |
function PHYSFS_eof(f: PFSFile): LongBool; cdecl; external PhysfsLibName; |
|
62 |
function PHYSFS_readBytes(f: PFSFile; buffer: pointer; len: Int64): Int64; cdecl; external PhysfsLibName; |
|
63 |
function PHYSFS_close(f: PFSFile): LongBool; cdecl; external PhysfsLibName; |
|
64 |
function PHYSFS_exists(fname: PChar): LongBool; cdecl; external PhysfsLibName; |
|
7959 | 65 |
|
8533
2d7703d6bc22
this should make physfs happy to link on windows too, forcing every function in its proper dll and skipping linklib
koda
parents:
8528
diff
changeset
|
66 |
procedure hedgewarsMountPackages(); cdecl; external PhyslayerLibName; |
8052 | 67 |
|
8025 | 68 |
function rwopsOpenRead(fname: shortstring): PSDL_RWops; |
69 |
begin |
|
70 |
exit(PHYSFSRWOPS_openRead(Str2PChar(fname))); |
|
71 |
end; |
|
72 |
||
73 |
function rwopsOpenWrite(fname: shortstring): PSDL_RWops; |
|
7959 | 74 |
begin |
8025 | 75 |
exit(PHYSFSRWOPS_openWrite(Str2PChar(fname))); |
76 |
end; |
|
8022 | 77 |
|
8028 | 78 |
function pfsOpenRead(fname: shortstring): PFSFile; |
79 |
begin |
|
80 |
exit(PHYSFS_openRead(Str2PChar(fname))); |
|
81 |
end; |
|
82 |
||
83 |
function pfsEOF(f: PFSFile): boolean; |
|
84 |
begin |
|
85 |
exit(PHYSFS_eof(f)) |
|
86 |
end; |
|
87 |
||
88 |
function pfsClose(f: PFSFile): boolean; |
|
89 |
begin |
|
90 |
exit(PHYSFS_close(f)) |
|
91 |
end; |
|
92 |
||
8031 | 93 |
function pfsExists(fname: shortstring): boolean; |
94 |
begin |
|
95 |
exit(PHYSFS_exists(Str2PChar(fname))) |
|
96 |
end; |
|
97 |
||
8028 | 98 |
|
99 |
procedure pfsReadLn(f: PFSFile; var s: shortstring); |
|
100 |
var c: char; |
|
101 |
begin |
|
102 |
s[0]:= #0; |
|
103 |
||
8034 | 104 |
while (PHYSFS_readBytes(f, @c, 1) = 1) and (c <> #10) do |
8028 | 105 |
if (c <> #13) and (s[0] < #255) then |
106 |
begin |
|
107 |
inc(s[0]); |
|
108 |
s[byte(s[0])]:= c |
|
109 |
end |
|
110 |
end; |
|
111 |
||
8107 | 112 |
procedure pfsReadLnA(f: PFSFile; var s: ansistring); |
113 |
var c: char; |
|
114 |
b: shortstring; |
|
115 |
begin |
|
116 |
s:= ''; |
|
117 |
b[0]:= #0; |
|
118 |
||
119 |
while (PHYSFS_readBytes(f, @c, 1) = 1) and (c <> #10) do |
|
120 |
if (c <> #13) then |
|
121 |
begin |
|
122 |
inc(b[0]); |
|
123 |
b[byte(b[0])]:= c; |
|
124 |
if b[0] = #255 then |
|
125 |
begin |
|
126 |
s:= s + b; |
|
127 |
b[0]:= #0 |
|
128 |
end |
|
129 |
end; |
|
130 |
||
131 |
s:= s + b |
|
132 |
end; |
|
133 |
||
8031 | 134 |
function pfsBlockRead(f: PFSFile; buf: pointer; size: Int64): Int64; |
135 |
var r: Int64; |
|
136 |
begin |
|
8034 | 137 |
r:= PHYSFS_readBytes(f, buf, size); |
8031 | 138 |
|
139 |
if r <= 0 then |
|
140 |
pfsBlockRead:= 0 |
|
141 |
else |
|
142 |
pfsBlockRead:= r |
|
143 |
end; |
|
144 |
||
8025 | 145 |
procedure initModule; |
146 |
var i: LongInt; |
|
8310
a98c349bc06b
minor adjustments to libengine, moc is correctly created as definitions are set before calling it, params are better numbered and we don't subclass qthread but rather use moveToThread()
koda
parents:
8283
diff
changeset
|
147 |
cPhysfsId: shortstring; |
8025 | 148 |
begin |
8310
a98c349bc06b
minor adjustments to libengine, moc is correctly created as definitions are set before calling it, params are better numbered and we don't subclass qthread but rather use moveToThread()
koda
parents:
8283
diff
changeset
|
149 |
{$IFDEF HWLIBRARY} |
a98c349bc06b
minor adjustments to libengine, moc is correctly created as definitions are set before calling it, params are better numbered and we don't subclass qthread but rather use moveToThread()
koda
parents:
8283
diff
changeset
|
150 |
//TODO: http://icculus.org/pipermail/physfs/2011-August/001006.html |
a98c349bc06b
minor adjustments to libengine, moc is correctly created as definitions are set before calling it, params are better numbered and we don't subclass qthread but rather use moveToThread()
koda
parents:
8283
diff
changeset
|
151 |
cPhysfsId:= GetCurrentDir() + {$IFDEF DARWIN}'/Hedgewars.app/Contents/MacOS/' + {$ENDIF} ' hedgewars'; |
a98c349bc06b
minor adjustments to libengine, moc is correctly created as definitions are set before calling it, params are better numbered and we don't subclass qthread but rather use moveToThread()
koda
parents:
8283
diff
changeset
|
152 |
{$ELSE} |
a98c349bc06b
minor adjustments to libengine, moc is correctly created as definitions are set before calling it, params are better numbered and we don't subclass qthread but rather use moveToThread()
koda
parents:
8283
diff
changeset
|
153 |
cPhysfsId:= ParamStr(0); |
a98c349bc06b
minor adjustments to libengine, moc is correctly created as definitions are set before calling it, params are better numbered and we don't subclass qthread but rather use moveToThread()
koda
parents:
8283
diff
changeset
|
154 |
{$ENDIF} |
a98c349bc06b
minor adjustments to libengine, moc is correctly created as definitions are set before calling it, params are better numbered and we don't subclass qthread but rather use moveToThread()
koda
parents:
8283
diff
changeset
|
155 |
|
a98c349bc06b
minor adjustments to libengine, moc is correctly created as definitions are set before calling it, params are better numbered and we don't subclass qthread but rather use moveToThread()
koda
parents:
8283
diff
changeset
|
156 |
i:= PHYSFS_init(Str2PChar(cPhysfsId)); |
8025 | 157 |
AddFileLog('[PhysFS] init: ' + inttostr(i)); |
158 |
||
8714 | 159 |
i:= PHYSFS_mount(Str2PChar(PathPrefix), nil, false); |
8025 | 160 |
AddFileLog('[PhysFS] mount ' + PathPrefix + ': ' + inttostr(i)); |
8714 | 161 |
i:= PHYSFS_mount(Str2PChar(UserPathPrefix + '/Data'), nil, false); |
8046 | 162 |
AddFileLog('[PhysFS] mount ' + UserPathPrefix + '/Data: ' + inttostr(i)); |
8052 | 163 |
|
164 |
hedgewarsMountPackages; |
|
7959 | 165 |
end; |
166 |
||
167 |
procedure freeModule; |
|
168 |
begin |
|
169 |
PHYSFS_deinit; |
|
170 |
end; |
|
171 |
||
172 |
end. |