Mattes D
Mattes D
JSON may be fine for file logs, but definitely not for on-screen ones.
I have glanced over some available libraries, and none of them really caught my eye, I'm in favor of tweaking our own code, too. I think I could write the...
As for type-safe formatting, there's https://github.com/fmtlib/fmt which we could possibly reuse.
For general formatting, I find that I like the Qt's formatting style the most: ```cpp QString("Some string with placeholders: %1, %2, and repeating %1").arg("a1", "a2"); ``` It is the most...
Seeing the APIDump code makes me want to rewrite it :)
So is it VSCode-only or generic lua-language-server? Just to get the naming right.
Hello. If you are on Windows, MSVC2022 produces a warning when compiling `GZipFile::ReadRestOfFile`, that should point you in the right direction. Basically this boils down to removing the `Static` part...
Sure, go ahead, a draft pull request is the best way to check if you're heading in the right direction.
The only big decision is whether to make one instance support multiple threads, or have a separate instance for each thread; also whether to share the caches or not.
Not necessarily. The generators are more or less enclosed into a single thread and are thread-safe. It would really only be a matter of changing `cChunkGenerator::m_Generator` into a vector of...