Skip to content

Commit

Permalink
Merge pull request #68 from Andrewich/development
Browse files Browse the repository at this point in the history
Fix bug with non-ascii chars in exe path on Win32
  • Loading branch information
greenfire27 committed Dec 22, 2023
2 parents a487ddf + 2963fa1 commit 44195d2
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions engine/source/platformWin32/winFileio.cc
Original file line number Diff line number Diff line change
Expand Up @@ -754,6 +754,21 @@ StringTableEntry Platform::getCurrentDirectory()
{
char cwd_buf[2048];
GetCurrentDirectoryA(2047, cwd_buf);

#ifdef UNICODE
int codePage = GetACP();
if (codePage != CP_UTF8)
{
UTF16 b[2048];
int size_w = MultiByteToWideChar(codePage, 0, cwd_buf, dStrlen(cwd_buf), nullptr, 0); // get the required buffer size for wchars
MultiByteToWideChar(codePage, 0, cwd_buf, dStrlen(cwd_buf), b, size_w);

int size_mb = WideCharToMultiByte(CP_UTF8, 0, b, size_w, nullptr, 0, NULL, NULL); // get the required buffer size for chars
WideCharToMultiByte(CP_UTF8, 0, b, dStrlen(b), cwd_buf, size_mb, NULL, NULL);
cwd_buf[size_mb] = '\0';
}
#endif

forwardslash(cwd_buf);
return StringTable->insert(cwd_buf);
}
Expand Down Expand Up @@ -1037,6 +1052,14 @@ static bool recurseDumpDirectories(const char *basePath, const char *subPath, Ve
//-----------------------------------------------------------------------------
// See if we get any hits
//-----------------------------------------------------------------------------

#ifdef UNICODE
UTF16 b[1024];
convertUTF8toUTF16((UTF8*)search, b, sizeof(b));
int nCodePage = GetACP();
WideCharToMultiByte(nCodePage, 0, b, sizeof(b), search, sizeof(search), 0, 0);
#endif

WIN32_FIND_DATAA findData;
HANDLE handle = FindFirstFileA(search, &findData);
if (handle == INVALID_HANDLE_VALUE)
Expand Down

0 comments on commit 44195d2

Please sign in to comment.