FeralChild64

Results 141 comments of FeralChild64

Probably not really feasible. On Linux, I don't even have any easy way to check which of the keyboard layouts is currently selected, not to mention receiving information when it...

Even if we have a way to detect locale change when running, there remains w problem with the guest software: how will, for example, Windows 3.x react on the keyboard...

> Russia uses US QWERTY and Russian ЙЦУКЕН in tandem and either one of them can be active at any given time since you do need both of them. US...

... and since I nevertheless had to add some huge tables with keyboard layouts metadata... (The `KEYB` command output is temporary, I am going to re-arrange it a little) ![Screenshot2](https://github.com/dosbox-staging/dosbox-staging/assets/48332137/cbc0caf2-5bff-4ada-9138-73befbccdc51)...

Does the game work correctly with CuteMouse driver? It can be started even if the built-in mouse driver is enabled. Unfortunately, I won’t be able to look into the mouse...

@cwacha If you are brave, you can grab the build from https://github.com/dosbox-staging/dosbox-staging/actions/runs/10548517120 (or build manually from branch https://github.com/dosbox-staging/dosbox-staging/tree/fc/locale-1) and see if the reworked code is working for you. Couple remarks:...

I'm glad it worked for you :) It won't be a part of the 0.82.0, unfortunately - it is a huge change, and we are at the end of 0.82.0...

@johnnovak > just a matter of simply mapping these special chars to UTF-8 and Bob's your uncle! ```c #include "string_utils.h" dos_to_utf8(input_string, output_string, 437); ``` > Of course, we need bi-directional...

We can't detect, it's the user that has to select appropriate code page. But once the file is on host OS filesystem, with UTF-8 characters in file names, problem is...

This is actually easy, just omit the 437 parameter and it will use the currently set code page. But, as I have already mentioned, our commands are not ready yet,...