Skip to content

kenrick95/c4

Repository files navigation

c4

Test Deploy

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.

Play

Gameplay

Screenshot 2024-03-07 202120

Objective

Connect four of your game pieces vertically, horizontally, or diagonally before the other player do so.

How to move?

At each turn, player will drop a game piece in one of the seven columns by clicking on the chosen column.

More info

Read Wikipedia page on Connect Four

Browser compatibility

Should be good in latest Firefox, Edge, Chrome, and Safari.

Contributing

Contributions are welcome! I'm happy to accept any kind of contributions, pull requests, or bug reports.

Developing

  1. Fork and clone this repository
  2. Install dependencies
yarn install
  1. Start local development server
yarn start
  1. Make your changes at either browser/, core/, or server/
  2. Test it out at http://localhost:5173/
  3. After you are happy with your changes, please submit your Pull Request!

License

This work is licensed under MIT License.