Skip to content

Shatranj-AI is a simple chess AI in JavaScript. A Chess Engine which rely on the powers of Computation and Game Theory.

Notifications You must be signed in to change notification settings

HarishBajiya/Shatranj-AI-Chess

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

Shatranj-AI-Chess

A Chess Engine which rely on the powers of Computation and Game Theory.

About

Shatranj-AI is a simple chess AI in JavaScript.

The primary concern of Shatranj-AI is the decision-making part of the application. All functionality outside the scope of the AI are implemented using external libraries:

  • Chessboard GUI: Using the chessboard.js API
  • Game Mechanics: Using the chess.js API

The AI uses the minimax algorithm, which is optimised by alpha-beta pruning.

The evaluation function uses piece square tables adapted from Sunfish.py, and eliminates the need for nested loops by updating the sum based on each move instead of re-computing the sum of individual pieces at each leaf node.

A global sum is used to keep track of black's evaluation score after each move, which is used to display the 'advantage' bar.

How to Play?

  1. Head over to https://dbarnwal.github.io/ShatRanj-AI-Chess/.

  2. Play as white by dragging a piece to your desired location. The AI plays as black. The AI's minimax search depth (which is directly related to how well it will play) can be customised using the 'Search Depth (Black)' dropdown. Using a higher value will improve the AI's accuracy, but it will take longer to decide on the next move.

Setup

  • Clone the repository to your system.
npm install http-server
http-server
  • Run over localhost.

Thanks

Special thanks to these projects that help me a lot in this.

  1. Chess.js
  2. Chessboard.js
  3. Free Code Camp

License

Use of this project is governed by the MIT License.

About

Shatranj-AI is a simple chess AI in JavaScript. A Chess Engine which rely on the powers of Computation and Game Theory.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published