Skip to content

byanofsky/chess-ai-2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

64 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Chess AI

A chess AI, with with different algorithms of increasing intelligence.

Play live version here: https://bay-chess-ai.herokuapp.com/

See my blog post about implementation here: https://byanofsky.com/2017/07/06/building-a-simple-chess-ai/

Based on Lauri Hartikka's tutorial

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development. See Deployment for notes on how to deploy the project on a live system.

Prerequisites

You will need to have Node.js and npm installed. For instructions on installing Node, please visit NPM's documentation on installing Node.js.

Installing

You can run npm's initialization to install dependencies from package.json.

npm init

How to Play

When playing, I recommend having your browser's console open to issue commands and view the computer player's 'thinking' through each move.

Play Against Computer

To play against the computer, simply make a move. You will play as the white side. The computer will then make a move.

The computer is currently set to look 3 moves ahead using minimax with alpha beta pruning.

Computer vs Computer

If you'd like to have the computer play the computer, you can do so with this command in your browser's console, setting the algorithm you'd like to use, and each computer player's 'skill' level.

playGame(algo=4, skillW=2, skillB=2)
// algo=
// 1 - random
// 2 - Best move, one move ahead
// 3 - Best move, n moves ahead, minimax
// 4 - Best move, n moves ahead, minimax with alpha beta pruning (Faster)
// skillW and skillB are how many moves ahead to look

skillW and skillB only work with alogs 3 & 4. The skill level is what sets how many moves ahead each player will look.

Algo 3 does not use alpha beta pruning, so setting skill levels greater than 2 will make move times very long.

Algo 4 uses alpha beta pruning, so you can set skill level up to 3, maybe even 4. But beyond that, move times will be very long.

Deployment

You can run this locally with Node.js, and visiting http://localhost:5000.

node app.js

You can also easily deploy this to a server. It is ready to be deployed to Heroku, with a Procfile included. Instructions from Heroku

Built With

Authors

  • Brandon Yanofsky - Initial work - byanofsky

Acknowledgments

License

This project is licensed under the Apache-2.0 License - see the LICENSE file for details. Some files have their own licenses, as described in 3rd Party Software below.

3rd Party Software

See LICENSE-3RD-PARTY file for full licenses

Todo

  • Implement Negamax
  • Implement sorting function for possible moves to optimize alpha beta pruning
  • Better implementation of Express
  • Add an element of machine learning
  • Improve interface
  • Refactor code

About

A chess AI, with different iterations and increasing intelligence

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published