├── .gitignore ├── README.md ├── assets ├── images │ ├── imgs-128px │ │ ├── black_bishop.png │ │ ├── black_king.png │ │ ├── black_knight.png │ │ ├── black_pawn.png │ │ ├── black_queen.png │ │ ├── black_rook.png │ │ ├── white_bishop.png │ │ ├── white_king.png │ │ ├── white_knight.png │ │ ├── white_pawn.png │ │ ├── white_queen.png │ │ └── white_rook.png │ └── imgs-80px │ │ ├── black_bishop.png │ │ ├── black_king.png │ │ ├── black_knight.png │ │ ├── black_pawn.png │ │ ├── black_queen.png │ │ ├── black_rook.png │ │ ├── white_bishop.png │ │ ├── white_king.png │ │ ├── white_knight.png │ │ ├── white_pawn.png │ │ ├── white_queen.png │ │ └── white_rook.png └── sounds │ ├── capture.wav │ └── move.wav ├── docs └── class-diagram.jpeg ├── snapshots ├── snapshot1.png ├── snapshot2.png ├── snapshot3.png ├── snapshot4.png ├── snapshot5.png └── snapshot6.png └── src ├── board.py ├── color.py ├── config.py ├── const.py ├── dragger.py ├── game.py ├── main.py ├── move.py ├── piece.py ├── sound.py ├── square.py └── theme.py /.gitignore: -------------------------------------------------------------------------------- 1 | src/__pycache__/ 2 | assets/images/.DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/imgs-128px/black_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-128px/black_bishop.png -------------------------------------------------------------------------------- /assets/images/imgs-128px/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-128px/black_king.png -------------------------------------------------------------------------------- /assets/images/imgs-128px/black_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-128px/black_knight.png -------------------------------------------------------------------------------- /assets/images/imgs-128px/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-128px/black_pawn.png -------------------------------------------------------------------------------- /assets/images/imgs-128px/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-128px/black_queen.png -------------------------------------------------------------------------------- /assets/images/imgs-128px/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-128px/black_rook.png -------------------------------------------------------------------------------- /assets/images/imgs-128px/white_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-128px/white_bishop.png -------------------------------------------------------------------------------- /assets/images/imgs-128px/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-128px/white_king.png -------------------------------------------------------------------------------- /assets/images/imgs-128px/white_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-128px/white_knight.png -------------------------------------------------------------------------------- /assets/images/imgs-128px/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-128px/white_pawn.png -------------------------------------------------------------------------------- /assets/images/imgs-128px/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-128px/white_queen.png -------------------------------------------------------------------------------- /assets/images/imgs-128px/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-128px/white_rook.png -------------------------------------------------------------------------------- /assets/images/imgs-80px/black_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-80px/black_bishop.png -------------------------------------------------------------------------------- /assets/images/imgs-80px/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-80px/black_king.png -------------------------------------------------------------------------------- /assets/images/imgs-80px/black_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-80px/black_knight.png -------------------------------------------------------------------------------- /assets/images/imgs-80px/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-80px/black_pawn.png -------------------------------------------------------------------------------- /assets/images/imgs-80px/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-80px/black_queen.png -------------------------------------------------------------------------------- /assets/images/imgs-80px/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-80px/black_rook.png -------------------------------------------------------------------------------- /assets/images/imgs-80px/white_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-80px/white_bishop.png -------------------------------------------------------------------------------- /assets/images/imgs-80px/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-80px/white_king.png -------------------------------------------------------------------------------- /assets/images/imgs-80px/white_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-80px/white_knight.png -------------------------------------------------------------------------------- /assets/images/imgs-80px/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-80px/white_pawn.png -------------------------------------------------------------------------------- /assets/images/imgs-80px/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-80px/white_queen.png -------------------------------------------------------------------------------- /assets/images/imgs-80px/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/images/imgs-80px/white_rook.png -------------------------------------------------------------------------------- /assets/sounds/capture.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/sounds/capture.wav -------------------------------------------------------------------------------- /assets/sounds/move.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/assets/sounds/move.wav -------------------------------------------------------------------------------- /docs/class-diagram.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/docs/class-diagram.jpeg -------------------------------------------------------------------------------- /snapshots/snapshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/snapshots/snapshot1.png -------------------------------------------------------------------------------- /snapshots/snapshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/snapshots/snapshot2.png -------------------------------------------------------------------------------- /snapshots/snapshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/snapshots/snapshot3.png -------------------------------------------------------------------------------- /snapshots/snapshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/snapshots/snapshot4.png -------------------------------------------------------------------------------- /snapshots/snapshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/snapshots/snapshot5.png -------------------------------------------------------------------------------- /snapshots/snapshot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/snapshots/snapshot6.png -------------------------------------------------------------------------------- /src/board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/src/board.py -------------------------------------------------------------------------------- /src/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/src/color.py -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/src/config.py -------------------------------------------------------------------------------- /src/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/src/const.py -------------------------------------------------------------------------------- /src/dragger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/src/dragger.py -------------------------------------------------------------------------------- /src/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/src/game.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/src/main.py -------------------------------------------------------------------------------- /src/move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/src/move.py -------------------------------------------------------------------------------- /src/piece.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/src/piece.py -------------------------------------------------------------------------------- /src/sound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/src/sound.py -------------------------------------------------------------------------------- /src/square.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/src/square.py -------------------------------------------------------------------------------- /src/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlejoG10/python-chess-ai-yt/HEAD/src/theme.py --------------------------------------------------------------------------------