marcusbuffett / command-line-chess

A python program to play chess against an AI in the terminal.
MIT License
496 stars 156 forks source link

Make `--unicode`behaviour the standard #42

Closed ClasherKasten closed 1 year ago

ClasherKasten commented 1 year ago

Right now the CLI provides an option named --unicode or -u which uses unicode characters to display the pieces. If the option isn't used, then it falls back to "normal", non-unicode characters. In the process of switching out termcolor to colored We noticed that it is really hard to display a colored board with non-unicode characters.

To fix this, I decided to remove the non-unicode character support and make the --unicode behaviour standard. ToDo:

aitorres commented 1 year ago

Hi! I opened a PR (#43) for this issue, let me know if there's anything else I should add to it!