c4, stands for Connect Four, is a browser game written in TypeScript and utilizes HTML's canvas
. Player is playing against an AI that uses Minimax algorithm and alpha-beta pruning. The evaluation function is hard-coded, and hence the AI may not be moving using the most optimal move.
Connect four of your game pieces vertically, horizontally, or diagonally before the other player do so.
At each turn, player will drop a game piece in one of the seven columns by clicking on the chosen column.
Read Wikipedia page on Connect Four
- Should be good in latest Firefox, Edge, Chrome, Opera, Safari, and IE.
Contributions are welcome! I'm happy to accept any kind of contributions, pull requests, or bug reports.
- Fork and clone this repository
- Install dependencies
yarn install
- Start local development server
yarn start
- Make your changes at
src/
- Test it out at http://localhost:1234/
- After you are happy with your changes, please submit your Pull Request!
This work is licensed under MIT License.