LiteLDev / LeviLamina

A lightweight, modular and versatile mod loader for Minecraft Bedrock Edition, formerly known as LiteLoaderBDS
https://levimc.org/software/levilamina
GNU Lesser General Public License v3.0
1.14k stars 117 forks source link

[Feature]: disable color output if the console not support #1542

Closed killcerr closed 5 months ago

killcerr commented 5 months ago

Is your feature request related to a problem? Please describe.

disable color output if the console not support

Describe the solution you'd like

if console not support color output,the server will not use color output

Describe alternatives you've considered

No response

Additional context

bool isSupportColorOutput() {
    DWORD temp;
    return GetConsoleMode((HANDLE)GetStdHandle(STD_OUTPUT_HANDLE), &temp) != 0;
}