summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorMichael Smith <mikesmiffy128@gmail.com>2022-07-20 19:20:41 +0100
committerMichael Smith <mikesmiffy128@gmail.com>2022-07-23 19:07:03 +0100
commit8f5673d5f4e63b158b1cd2a2aef874ac83b3662d (patch)
tree09e1e1e8b9328251294eb78011254355ba11f8db /src
parent4721f53cb21dfa18dc787581fac0d2a25f0a9690 (diff)
Fix loading from legacy code page directory names
Only if the code page in question is that of the system, obviously; Source itself will fail to start otherwise anyway. This fixes issues for at least one Russian user who'd named a "Games" folder "Игры," which I am told roughly translates to "Games" (and also exactly translates to "Games").
Diffstat (limited to 'src')
-rw-r--r--src/gameinfo.c19
1 files changed, 12 insertions, 7 deletions
diff --git a/src/gameinfo.c b/src/gameinfo.c
index 8fe17d9..b371e76 100644
--- a/src/gameinfo.c
+++ b/src/gameinfo.c
@@ -90,9 +90,8 @@ static inline void dolibsearch(const char *p, uint len, bool isgamebin,
// quick note about windows encoding conversion: this MIGHT clobber the
// encoding of non-ascii mod names, but it's unclear if/how source handles
// that anyway, so we just have to assume there *are no* non-ascii mod
- // names, since they'd also be clobbered, probably. if I'm wrong this can
- // just change later to an explicit charset conversion, so... it's kinda
- // whatever, I guess
+ // names, since they'd also be clobbered, probably. NOTE that this
+ // assumption does NOT apply to the absolute base path; see further down.
const os_char *fmt = isgamebin ?
OS_LIT("/%.*") Fs OS_LIT("/") :
OS_LIT("/%.*") Fs OS_LIT("/bin/");
@@ -256,10 +255,16 @@ bool gameinfo_init(void) {
memcpy(bindir + len, PATHSEP OS_LIT("bin"), 5 * sizeof(os_char));
#ifdef _WIN32
- int gamedirlen = _snwprintf(gamedir, sizeof(gamedir) / sizeof(*gamedir),
- L"%S", VCALL(engclient, GetGameDirectory));
- if (gamedirlen < 0) { // encoding error??? ugh...
- errmsg_errorx("invalid game directory path!");
+ // Although the engine itself uses Unicode-incompatible stuff everywhere so
+ // supporting arbitrary paths is basically a no-go, turns out we still have
+ // to respect the system code page setting, otherwise some users using e.g.
+ // Cyrillic folder names and successfully loading their speedgames won't be
+ // able to load SST. Thanks Windows!
+ const char *lcpgamedir = VCALL(engclient, GetGameDirectory);
+ int gamedirlen = MultiByteToWideChar(CP_ACP, 0, lcpgamedir,
+ strlen(lcpgamedir), gamedir, sizeof(gamedir) / sizeof(*gamedir));
+ if (!gamedirlen) {
+ errmsg_errorsys("couldn't convert game directory path character set");
return false;
}
#else