├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── cleartype-install-linux.bash ├── core.py ├── gui.py ├── gui.spec ├── img ├── Alert.png ├── PromotionBack.png ├── PromotionHighlight.png ├── black │ ├── bishop.png │ ├── king.png │ ├── knight.png │ ├── pawn.png │ ├── queen.png │ └── rook.png ├── dark.png ├── demo │ └── general_screen.png ├── favicon.ico ├── light.png └── white │ ├── bishop.png │ ├── king.png │ ├── knight.png │ ├── pawn.png │ ├── queen.png │ └── rook.png ├── installer.py ├── installer.spec ├── lib ├── __init__.py ├── arrowlib.py ├── baselib.py ├── boardlib.py ├── chesscomexplorerlib.py ├── coordlib.py ├── enginelib.py ├── fpslib.py ├── movelib.py ├── textlib.py ├── threadlib.py └── uilib.py ├── requirements.txt ├── stockfish_links.json ├── tests ├── __init__.py ├── context.py ├── test_arrowlib.py ├── test_boardlib.py ├── test_coordlib.py ├── test_core.py └── test_textlib.py └── theme.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/README.md -------------------------------------------------------------------------------- /cleartype-install-linux.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/cleartype-install-linux.bash -------------------------------------------------------------------------------- /core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/core.py -------------------------------------------------------------------------------- /gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/gui.py -------------------------------------------------------------------------------- /gui.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/gui.spec -------------------------------------------------------------------------------- /img/Alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/img/Alert.png -------------------------------------------------------------------------------- /img/PromotionBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/img/PromotionBack.png -------------------------------------------------------------------------------- /img/PromotionHighlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/img/PromotionHighlight.png -------------------------------------------------------------------------------- /img/black/bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/img/black/bishop.png -------------------------------------------------------------------------------- /img/black/king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/img/black/king.png -------------------------------------------------------------------------------- /img/black/knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/img/black/knight.png -------------------------------------------------------------------------------- /img/black/pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/img/black/pawn.png -------------------------------------------------------------------------------- /img/black/queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/img/black/queen.png -------------------------------------------------------------------------------- /img/black/rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/img/black/rook.png -------------------------------------------------------------------------------- /img/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/img/dark.png -------------------------------------------------------------------------------- /img/demo/general_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/img/demo/general_screen.png -------------------------------------------------------------------------------- /img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/img/favicon.ico -------------------------------------------------------------------------------- /img/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/img/light.png -------------------------------------------------------------------------------- /img/white/bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/img/white/bishop.png -------------------------------------------------------------------------------- /img/white/king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/img/white/king.png -------------------------------------------------------------------------------- /img/white/knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/img/white/knight.png -------------------------------------------------------------------------------- /img/white/pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/img/white/pawn.png -------------------------------------------------------------------------------- /img/white/queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/img/white/queen.png -------------------------------------------------------------------------------- /img/white/rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/img/white/rook.png -------------------------------------------------------------------------------- /installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/installer.py -------------------------------------------------------------------------------- /installer.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/installer.spec -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/lib/__init__.py -------------------------------------------------------------------------------- /lib/arrowlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/lib/arrowlib.py -------------------------------------------------------------------------------- /lib/baselib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/lib/baselib.py -------------------------------------------------------------------------------- /lib/boardlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/lib/boardlib.py -------------------------------------------------------------------------------- /lib/chesscomexplorerlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/lib/chesscomexplorerlib.py -------------------------------------------------------------------------------- /lib/coordlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/lib/coordlib.py -------------------------------------------------------------------------------- /lib/enginelib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/lib/enginelib.py -------------------------------------------------------------------------------- /lib/fpslib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/lib/fpslib.py -------------------------------------------------------------------------------- /lib/movelib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/lib/movelib.py -------------------------------------------------------------------------------- /lib/textlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/lib/textlib.py -------------------------------------------------------------------------------- /lib/threadlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/lib/threadlib.py -------------------------------------------------------------------------------- /lib/uilib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/lib/uilib.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/requirements.txt -------------------------------------------------------------------------------- /stockfish_links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/stockfish_links.json -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/tests/context.py -------------------------------------------------------------------------------- /tests/test_arrowlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/tests/test_arrowlib.py -------------------------------------------------------------------------------- /tests/test_boardlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/tests/test_boardlib.py -------------------------------------------------------------------------------- /tests/test_coordlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/tests/test_coordlib.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_textlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/tests/test_textlib.py -------------------------------------------------------------------------------- /theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2dev2/WayChess/HEAD/theme.json --------------------------------------------------------------------------------