1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
--- src/Libraries/RES/Source/caseless.c.orig 2020-04-23 04:29:54 UTC
+++ src/Libraries/RES/Source/caseless.c
@@ -20,6 +20,7 @@ along with this program. If not, see <http://www.gnu.
// DG 2018: a case-insensitive fopen() wrapper, and functions used by it
#include <assert.h>
+#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <sys/stat.h>
@@ -241,18 +242,35 @@ int caselesspath(const char *inpath, char *outpath, in
FILE *fopen_caseless(const char *path, const char *mode) {
FILE *ret = NULL;
+ char fullpath[PATH_MAX];
+ char *home = getenv("HOME");
if (path == NULL || mode == NULL)
return NULL;
- ret = fopen(path, mode);
+ if (strcmp (path, "CurrentGame.dat") == 0 ||
+ strncmp (path, "savgam", strlen ("savgam")) == 0) {
+ if (home == NULL)
+ return NULL;
+ snprintf (fullpath, PATH_MAX, "%s/.sshock/", home);
+ if (strstr (mode, "w") != NULL) {
+ /* Ensure the local directory exists */
+ mkdir (fullpath, 0755);
+ }
+
+ strlcat (fullpath, path, PATH_MAX);
+ } else {
+ snprintf (fullpath, PATH_MAX, "%%DATADIR%%%s", path);
+ }
+
+ ret = fopen(fullpath, mode);
#ifndef _WIN32 // not windows
if (ret == NULL) {
char fixedpath[PATH_MAX];
- size_t pathlen = strlen(path);
+ size_t pathlen = strlen(fullpath);
- if (pathlen < sizeof(fixedpath) && caselesspath(path, fixedpath, 0)) {
+ if (pathlen < sizeof(fixedpath) && caselesspath(fullpath, fixedpath, 0)) {
ret = fopen(fixedpath, mode);
}
}
|