author | unc0rr |
Tue, 29 Mar 2016 22:09:13 +0300 | |
branch | qmlfrontend |
changeset 11633 | 215b837c16f9 |
parent 11607 | f0dcdbb9b2fe |
parent 11632 | cac74d9075be |
child 11699 | 83c40c1eb0e7 |
permissions | -rw-r--r-- |
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
1 |
{$INCLUDE "options.inc"} |
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
2 |
|
7959 | 3 |
unit uPhysFSLayer; |
8063 | 4 |
|
7959 | 5 |
interface |
8077 | 6 |
uses SDLh, LuaPas; |
7959 | 7 |
|
9204 | 8 |
const PhysfsLibName = {$IFDEF PHYSFS_INTERNAL}'libhwphysfs'{$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
|
9 |
const PhyslayerLibName = 'libphyslayer'; |
8073 | 10 |
|
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
|
11 |
{$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
|
12 |
{$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
|
13 |
{$linklib physlayer} |
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
|
14 |
{$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
|
15 |
|
11631
b3db79b56f28
Pass paths to initModule of uPhysFSLayer (as in 4be6cd55f1cf from qmlfrontend branch)
unc0rr
parents:
11155
diff
changeset
|
16 |
procedure initModule(localPrefix, userPrefix: PChar); |
7959 | 17 |
procedure freeModule; |
18 |
||
8028 | 19 |
type PFSFile = pointer; |
20 |
||
8025 | 21 |
function rwopsOpenRead(fname: shortstring): PSDL_RWops; |
22 |
function rwopsOpenWrite(fname: shortstring): PSDL_RWops; |
|
8022 | 23 |
|
8028 | 24 |
function pfsOpenRead(fname: shortstring): PFSFile; |
11632 | 25 |
function pfsOpenWrite(fname: shortstring): PFSFile; |
26 |
function pfsFlush(f: PFSFile): boolean; |
|
8028 | 27 |
function pfsClose(f: PFSFile): boolean; |
10888 | 28 |
function pfsSeek(f: PFSFile; pos: QWord): boolean; |
8028 | 29 |
|
30 |
procedure pfsReadLn(f: PFSFile; var s: shortstring); |
|
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10101
diff
changeset
|
31 |
procedure pfsReadLnA(f: PFSFile; var s: ansistring); |
11632 | 32 |
procedure pfsWriteLn(f: PFSFile; s: shortstring); |
8031 | 33 |
function pfsBlockRead(f: PFSFile; buf: pointer; size: Int64): Int64; |
34 |
function pfsEOF(f: PFSFile): boolean; |
|
10434
1614b13ad35e
Themes model, also add some files I forgot to add previously
unc0rr
parents:
10424
diff
changeset
|
35 |
function pfsEnumerateFiles(dir: shortstring): PPChar; |
1614b13ad35e
Themes model, also add some files I forgot to add previously
unc0rr
parents:
10424
diff
changeset
|
36 |
procedure pfsFreeList(list: PPChar); |
8031 | 37 |
|
38 |
function pfsExists(fname: shortstring): boolean; |
|
11632 | 39 |
function pfsMakeDir(path: shortstring): boolean; |
8028 | 40 |
|
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
|
41 |
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
|
42 |
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
|
43 |
procedure hedgewarsMountPackage(filename: PChar); cdecl; external PhyslayerLibName; |
8077 | 44 |
|
7959 | 45 |
implementation |
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
46 |
uses uConsts, uUtils, uVariables{$IFNDEF PAS2C}, sysutils{$ELSE}, physfs{$ENDIF}; |
7959 | 47 |
|
8839 | 48 |
function PHYSFSRWOPS_openRead(fname: PChar): PSDL_RWops; cdecl; external PhyslayerLibName; |
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
|
49 |
function PHYSFSRWOPS_openWrite(fname: PChar): PSDL_RWops; cdecl; external PhyslayerLibName; |
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
50 |
procedure hedgewarsMountPackages(); cdecl; external PhyslayerLibName; |
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
51 |
{$IFNDEF PAS2C} |
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
52 |
function PHYSFS_init(argv0: PChar): LongInt; cdecl; external PhysfsLibName; |
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
53 |
function PHYSFS_deinit(): LongInt; cdecl; external PhysfsLibName; |
9993
76ad55807c24
allow engine to use symlinked fonts. disallow packages to "overwrite" fonts
sheepluva
parents:
9988
diff
changeset
|
54 |
function PHYSFS_mount(newDir, mountPoint: PChar; appendToPath: LongBool) : LongBool; cdecl; external PhysfsLibName; |
8073 | 55 |
function PHYSFS_openRead(fname: PChar): PFSFile; cdecl; external PhysfsLibName; |
11632 | 56 |
function PHYSFS_openWrite(fname: PChar): PFSFile; cdecl; external PhysfsLibName; |
57 |
function PHYSFS_setWriteDir(path: PChar): LongBool; cdecl; external PhysfsLibName; |
|
8073 | 58 |
function PHYSFS_eof(f: PFSFile): LongBool; cdecl; external PhysfsLibName; |
59 |
function PHYSFS_readBytes(f: PFSFile; buffer: pointer; len: Int64): Int64; cdecl; external PhysfsLibName; |
|
11632 | 60 |
function PHYSFS_writeBytes(f: PFSFile; buffer: pointer; len: Int64): Int64; cdecl; external PhysfsLibName; |
61 |
function PHYSFS_seek(f: PFSFile; pos: QWord): LongBool; cdecl; external PhysfsLibName; |
|
62 |
function PHYSFS_flush(f: PFSFile): LongBool; cdecl; external PhysfsLibName; |
|
8073 | 63 |
function PHYSFS_close(f: PFSFile): LongBool; cdecl; external PhysfsLibName; |
64 |
function PHYSFS_exists(fname: PChar): LongBool; cdecl; external PhysfsLibName; |
|
11632 | 65 |
function PHYSFS_mkdir(path: PChar): LongBool; cdecl; external PhysfsLibName; |
9993
76ad55807c24
allow engine to use symlinked fonts. disallow packages to "overwrite" fonts
sheepluva
parents:
9988
diff
changeset
|
66 |
function PHYSFS_getLastError(): PChar; cdecl; external PhysfsLibName; |
11632 | 67 |
function PHYSFS_enumerateFiles(dir: PChar): PPChar; cdecl; external PhysfsLibName; |
68 |
procedure PHYSFS_freeList(list: PPChar); cdecl; external PhysfsLibName; |
|
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
69 |
{$ELSE} |
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
70 |
function PHYSFS_readBytes(f: PFSFile; buffer: pointer; len: Int64): Int64; |
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
71 |
begin |
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
72 |
PHYSFS_readBytes:= PHYSFS_read(f, buffer, 1, len); |
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
73 |
end; |
10078 | 74 |
{$ENDIF} |
8052 | 75 |
|
8025 | 76 |
function rwopsOpenRead(fname: shortstring): PSDL_RWops; |
77 |
begin |
|
78 |
exit(PHYSFSRWOPS_openRead(Str2PChar(fname))); |
|
79 |
end; |
|
80 |
||
81 |
function rwopsOpenWrite(fname: shortstring): PSDL_RWops; |
|
7959 | 82 |
begin |
8025 | 83 |
exit(PHYSFSRWOPS_openWrite(Str2PChar(fname))); |
84 |
end; |
|
8022 | 85 |
|
8028 | 86 |
function pfsOpenRead(fname: shortstring): PFSFile; |
87 |
begin |
|
88 |
exit(PHYSFS_openRead(Str2PChar(fname))); |
|
89 |
end; |
|
90 |
||
11632 | 91 |
function pfsOpenWrite(fname: shortstring): PFSFile; |
92 |
begin |
|
93 |
exit(PHYSFS_openWrite(Str2PChar(fname))); |
|
94 |
end; |
|
95 |
||
8028 | 96 |
function pfsEOF(f: PFSFile): boolean; |
97 |
begin |
|
98 |
exit(PHYSFS_eof(f)) |
|
99 |
end; |
|
100 |
||
11632 | 101 |
function pfsFlush(f: PFSFile): boolean; |
102 |
begin |
|
103 |
exit(PHYSFS_flush(f)) |
|
104 |
end; |
|
105 |
||
8028 | 106 |
function pfsClose(f: PFSFile): boolean; |
107 |
begin |
|
108 |
exit(PHYSFS_close(f)) |
|
109 |
end; |
|
110 |
||
10888 | 111 |
function pfsSeek(f: PFSFile; pos: QWord): boolean; |
112 |
begin |
|
113 |
exit(PHYSFS_seek(f, 0)); |
|
114 |
end; |
|
115 |
||
8031 | 116 |
function pfsExists(fname: shortstring): boolean; |
117 |
begin |
|
118 |
exit(PHYSFS_exists(Str2PChar(fname))) |
|
119 |
end; |
|
120 |
||
11632 | 121 |
function pfsMakeDir(path: shortstring): boolean; |
122 |
begin |
|
123 |
exit(PHYSFS_mkdir(Str2PChar(path))) |
|
124 |
end; |
|
125 |
||
126 |
function pfsEnumerateFiles(dir: shortstring): PPChar; |
|
127 |
begin |
|
128 |
exit(PHYSFS_enumerateFiles(Str2PChar(dir))) |
|
129 |
end; |
|
130 |
||
131 |
procedure pfsFreeList(list: PPChar); |
|
132 |
begin |
|
133 |
PHYSFS_freeList(list) |
|
134 |
end; |
|
8028 | 135 |
|
136 |
procedure pfsReadLn(f: PFSFile; var s: shortstring); |
|
137 |
var c: char; |
|
138 |
begin |
|
139 |
s[0]:= #0; |
|
140 |
||
8034 | 141 |
while (PHYSFS_readBytes(f, @c, 1) = 1) and (c <> #10) do |
8028 | 142 |
if (c <> #13) and (s[0] < #255) then |
143 |
begin |
|
144 |
inc(s[0]); |
|
145 |
s[byte(s[0])]:= c |
|
146 |
end |
|
147 |
end; |
|
148 |
||
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10101
diff
changeset
|
149 |
procedure pfsReadLnA(f: PFSFile; var s: ansistring); |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10101
diff
changeset
|
150 |
var c: char; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10101
diff
changeset
|
151 |
b: shortstring; |
8107 | 152 |
begin |
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10101
diff
changeset
|
153 |
s:= ''; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10101
diff
changeset
|
154 |
b[0]:= #0; |
8107 | 155 |
|
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10101
diff
changeset
|
156 |
while (PHYSFS_readBytes(f, @c, 1) = 1) and (c <> #10) do |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10101
diff
changeset
|
157 |
if (c <> #13) then |
8107 | 158 |
begin |
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10101
diff
changeset
|
159 |
inc(b[0]); |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10101
diff
changeset
|
160 |
b[byte(b[0])]:= c; |
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10101
diff
changeset
|
161 |
if b[0] = #255 then |
8107 | 162 |
begin |
10123 | 163 |
s:= s + ansistring(b); |
10122
cefede760264
Revert 88929358d2e1 in favor of ansistrings implementation in pas2c
unc0rr
parents:
10101
diff
changeset
|
164 |
b[0]:= #0 |
8107 | 165 |
end |
166 |
end; |
|
10123 | 167 |
|
168 |
s:= s + ansistring(b) |
|
8107 | 169 |
end; |
170 |
||
11632 | 171 |
procedure pfsWriteLn(f: PFSFile; s: shortstring); |
172 |
var c: char; |
|
173 |
begin |
|
174 |
c:= #10; |
|
175 |
PHYSFS_writeBytes(f, @s[1], byte(s[0])); |
|
176 |
PHYSFS_writeBytes(f, @c, 1); |
|
177 |
end; |
|
178 |
||
8031 | 179 |
function pfsBlockRead(f: PFSFile; buf: pointer; size: Int64): Int64; |
180 |
var r: Int64; |
|
181 |
begin |
|
8034 | 182 |
r:= PHYSFS_readBytes(f, buf, size); |
8031 | 183 |
|
184 |
if r <= 0 then |
|
185 |
pfsBlockRead:= 0 |
|
186 |
else |
|
187 |
pfsBlockRead:= r |
|
188 |
end; |
|
189 |
||
10127 | 190 |
procedure pfsMount(path: ansistring; mountpoint: PChar); |
9993
76ad55807c24
allow engine to use symlinked fonts. disallow packages to "overwrite" fonts
sheepluva
parents:
9988
diff
changeset
|
191 |
begin |
10127 | 192 |
if PHYSFS_mount(PChar(path), mountpoint, false) then |
11631
b3db79b56f28
Pass paths to initModule of uPhysFSLayer (as in 4be6cd55f1cf from qmlfrontend branch)
unc0rr
parents:
11155
diff
changeset
|
193 |
//AddFileLog('[PhysFS] mount ' + shortstring(path) + ' at ' + shortstring(mountpoint) + ' : ok') |
9993
76ad55807c24
allow engine to use symlinked fonts. disallow packages to "overwrite" fonts
sheepluva
parents:
9988
diff
changeset
|
194 |
else |
11631
b3db79b56f28
Pass paths to initModule of uPhysFSLayer (as in 4be6cd55f1cf from qmlfrontend branch)
unc0rr
parents:
11155
diff
changeset
|
195 |
//AddFileLog('[PhysFS] mount ' + shortstring(path) + ' at ' + shortstring(mountpoint) + ' : FAILED ("' + shortstring(PHYSFS_getLastError()) + '")'); |
9993
76ad55807c24
allow engine to use symlinked fonts. disallow packages to "overwrite" fonts
sheepluva
parents:
9988
diff
changeset
|
196 |
end; |
76ad55807c24
allow engine to use symlinked fonts. disallow packages to "overwrite" fonts
sheepluva
parents:
9988
diff
changeset
|
197 |
|
10127 | 198 |
procedure pfsMountAtRoot(path: ansistring); |
9993
76ad55807c24
allow engine to use symlinked fonts. disallow packages to "overwrite" fonts
sheepluva
parents:
9988
diff
changeset
|
199 |
begin |
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10127
diff
changeset
|
200 |
pfsMount(path, PChar(_S'/')); |
9993
76ad55807c24
allow engine to use symlinked fonts. disallow packages to "overwrite" fonts
sheepluva
parents:
9988
diff
changeset
|
201 |
end; |
76ad55807c24
allow engine to use symlinked fonts. disallow packages to "overwrite" fonts
sheepluva
parents:
9988
diff
changeset
|
202 |
|
11631
b3db79b56f28
Pass paths to initModule of uPhysFSLayer (as in 4be6cd55f1cf from qmlfrontend branch)
unc0rr
parents:
11155
diff
changeset
|
203 |
procedure initModule(localPrefix, userPrefix: PChar); |
8025 | 204 |
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
|
205 |
cPhysfsId: shortstring; |
11139
4f4e97eb52fd
- Load fonts on init if not 'mobile'
antonc27 <antonc27@mail.ru>
parents:
11087
diff
changeset
|
206 |
{$IFNDEF MOBILE} |
9996 | 207 |
fp: PChar; |
11155 | 208 |
{$ENDIF} |
8025 | 209 |
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
|
210 |
//TODO: http://icculus.org/pipermail/physfs/2011-August/001006.html |
9378
2be457289e60
update physlayer and sdl bindings to the new rwops interface
koda
parents:
9224
diff
changeset
|
211 |
cPhysfsId:= GetCurrentDir() + {$IFDEF DARWIN}{$IFNDEF IPHONEOS}'/Hedgewars.app/Contents/MacOS/' + {$ENDIF}{$ENDIF} ' hedgewars'; |
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
|
212 |
|
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
|
213 |
i:= PHYSFS_init(Str2PChar(cPhysfsId)); |
10424
4be6cd55f1cf
- Get rid of engine's PathPrefix and UserPathPrefix
unc0rr
parents:
10129
diff
changeset
|
214 |
//AddFileLog('[PhysFS] init: ' + inttostr(i)); |
11139
4f4e97eb52fd
- Load fonts on init if not 'mobile'
antonc27 <antonc27@mail.ru>
parents:
11087
diff
changeset
|
215 |
|
4f4e97eb52fd
- Load fonts on init if not 'mobile'
antonc27 <antonc27@mail.ru>
parents:
11087
diff
changeset
|
216 |
{$IFNDEF MOBILE} |
9994
8455993a7a1b
* allow telling cmake where to find required fonts in system when user supplies the paths, as suggested by unC0Rr, e.g. -DFONTS_DIRS='/usr/share/fonts/truetype/wqy;/usr/share/fonts/truetype/dejavu'
sheepluva
parents:
9993
diff
changeset
|
217 |
// mount system fonts paths first |
9996 | 218 |
for i:= low(cFontsPaths) to high(cFontsPaths) do |
9994
8455993a7a1b
* allow telling cmake where to find required fonts in system when user supplies the paths, as suggested by unC0Rr, e.g. -DFONTS_DIRS='/usr/share/fonts/truetype/wqy;/usr/share/fonts/truetype/dejavu'
sheepluva
parents:
9993
diff
changeset
|
219 |
begin |
9996 | 220 |
fp := cFontsPaths[i]; |
221 |
if fp <> nil then |
|
11631
b3db79b56f28
Pass paths to initModule of uPhysFSLayer (as in 4be6cd55f1cf from qmlfrontend branch)
unc0rr
parents:
11155
diff
changeset
|
222 |
pfsMount(ansistring(fp), _P'/Fonts'); |
9994
8455993a7a1b
* allow telling cmake where to find required fonts in system when user supplies the paths, as suggested by unC0Rr, e.g. -DFONTS_DIRS='/usr/share/fonts/truetype/wqy;/usr/share/fonts/truetype/dejavu'
sheepluva
parents:
9993
diff
changeset
|
223 |
end; |
11155 | 224 |
{$ENDIF} |
11139
4f4e97eb52fd
- Load fonts on init if not 'mobile'
antonc27 <antonc27@mail.ru>
parents:
11087
diff
changeset
|
225 |
|
11631
b3db79b56f28
Pass paths to initModule of uPhysFSLayer (as in 4be6cd55f1cf from qmlfrontend branch)
unc0rr
parents:
11155
diff
changeset
|
226 |
pfsMountAtRoot(localPrefix); |
11632 | 227 |
pfsMount(userPrefix, PChar('/Config')); |
228 |
pfsMakeDir('/Config/Data'); |
|
229 |
pfsMakeDir('/Config/Logs'); |
|
11631
b3db79b56f28
Pass paths to initModule of uPhysFSLayer (as in 4be6cd55f1cf from qmlfrontend branch)
unc0rr
parents:
11155
diff
changeset
|
230 |
pfsMountAtRoot(userPrefix + ansistring('/Data')); |
11632 | 231 |
PHYSFS_setWriteDir(userPrefix); |
8052 | 232 |
|
233 |
hedgewarsMountPackages; |
|
9531
7fcdedc45589
Unbreak access to Data dir in profile broken in r8b48c27201af
unc0rr
parents:
9466
diff
changeset
|
234 |
|
9988
317d46a2afd2
simple mechanism to run lua-based test cases. experimental - I will back it out if it turns out to be nonsense
sheepluva
parents:
9531
diff
changeset
|
235 |
if cTestLua then |
317d46a2afd2
simple mechanism to run lua-based test cases. experimental - I will back it out if it turns out to be nonsense
sheepluva
parents:
9531
diff
changeset
|
236 |
begin |
10564
0cb20aa8877a
more fixing and allow pas2c to run tests. they will still fail though - engine does not exit with the specified exit codes, also data types are messed up
sheepluva
parents:
10129
diff
changeset
|
237 |
pfsMountAtRoot(ansistring(ExtractFileDir(cScriptName))); |
9988
317d46a2afd2
simple mechanism to run lua-based test cases. experimental - I will back it out if it turns out to be nonsense
sheepluva
parents:
9531
diff
changeset
|
238 |
cScriptName := ExtractFileName(cScriptName); |
317d46a2afd2
simple mechanism to run lua-based test cases. experimental - I will back it out if it turns out to be nonsense
sheepluva
parents:
9531
diff
changeset
|
239 |
end; |
7959 | 240 |
end; |
241 |
||
242 |
procedure freeModule; |
|
243 |
begin |
|
244 |
PHYSFS_deinit; |
|
245 |
end; |
|
246 |
||
247 |
end. |