Zachary Gordon
My implementation of checkers in C using Bitboards.
- Tested on Windows 11 using the GCC compiler.
- This is a console application. There will be no output to a file.
- Moves are made by entering the position of the piece you want to move followed by where you want to move it.
- These movements are entered in row column form.
- For example, Entering "2 2 3 3" would move a piece from Row 2 Column 2 to Row 3 Column 3 (if legal).
- You control both players.
- Since I am also taking Artificial Intelligence, I was going to make an Expectimax agent to play against, but I ran out of time.
gcc main.c game.c bitstuff.c -o program
.\program.exe- Screenshot inside of "Game Screenshot.png"