/battlesnake

AI for BattleSnake

Primary LanguageJavaScriptMIT LicenseMIT

A simple Battlesnake written in Javascript for NodeJS.

This is a basic implementation of the Battlesnake API. It's a great starting point for anyone wanting to program their first Battlesnake using Javascript. It comes ready to deploy to Heroku, although you can use other cloud providers if you'd like.

Technologies

This Battlesnake uses Javascript, NodeJS, and Heroku. You will also need npm to assist with Javascript dependency management. Express4 is used for route management, the documentation provide information on handling incoming JSON params and building responses.

Prerequisites

Deploying Your First Battlesnake

  1. Fork this repo into your GitHub Account.

  2. Clone your forked repo into your local environment.

    git clone git@github.com:[YOUR-GITHUB-USERNAME]/starter-snake-node.git
  3. Create a new Heroku app to run your Battlesnake.

    heroku create [YOUR-APP-NAME]
  4. Deploy your Battlesnake code to Heroku.

    git push heroku master
  5. Open your new Heroku app in your browser.

    heroku open

    If everything was successful, you should see the following text:

    Your Battlesnake is alive!
    
  6. Optionally, you can view your server logs using the Heroku logs command heroku logs --tail. The --tail option will show a live feed of your logs in real-time.

At this point your Battlesnake is live and ready to enter games!

Registering Your Battlesnake and Creating Your First Game

  1. Log in to play.battlesnake.com.

  2. Create a new Battlesnake. Give it a name and complete the form using the URL for your Heroku app.

  3. Once your Battlesnake has been saved you can create a new game and add your Battlesnake to it. Type your Battlesnake's name into the search field and click "Add" to add it to the game. Then click "Create Game" to start the game.

  4. You should see a brand new Battlesnake game with your Battlesnake in it! Yay! Press "Play" to start the game and watch how your Battlesnake behaves. By default your Battlesnake should move randomly around the board.

  5. Optionally, open your Heroku logs while the game is running to see your Battlesnake receiving API calls and responding with its moves.

Repeat steps 3 and 4 every time you want to see how your Battlesnake behaves. It's common for Battlesnake developers to repeat these steps often as they make their Battlesnake smarter.

At this point you should have a registered Battlesnake and be able to create games!

Customizing Your Battlesnake

Now you're ready to start customizing your Battlesnake and improving its algorithm.

Changing Appearance

Locate the /start endepoint inside index.js. You should see a line that looks like this:

  // Response data
  const data = {
    color: '#888888',
    headType: "regular",
    tailType: "regular"
  }

This function is called every time a new game starts. Your response determines what your Battlesnake will look like in that game. See Customizing Your Battlesnake for how to customize your Battlesnake's appearance using these values.

Changing Behavior

On every turn of each game your Battlesnake receives information about the game board and must decide its next move.

Locate the /move endpoint inside index.js. You should see code that looks like this:

  var data = request.body;
  // Choose a random direction to move in
  possible_moves = ["up", "down", "left", "right"]
  var choice = Math.floor(Math.random() * possible_moves.length);
  var snake_move = possible_moves[choice];

  console.log("MOVE: " + snake_move);
  return response.json({ move: snake_move })

Possible moves are "up", "down", "left", or "right". To start your Battlesnake will choose a move randomly. Your goal as a developer is to read information sent to you about the board (available in the data variable) and make an intelligent decision about where your Battlesnake should move next.

See the Battlesnake Rules for more information on playing the game, moving around the board, and improving your algorithm.

Updating Your Battlesnake

After making changes, commit them using git and deploy your changes to Heroku.

git add .
git commit -m "update my battlesnake's appearance"
git push heroku master

Once Heroku has updated you can create a new game with your Battlesnake to view your latest changes in action.

At this point you should feel comfortable making changes to your code and deploying those changes to Heroku!

Developing Your Battlesnake Further

Now you have everything you need to start making your Battlesnake super smart! Here are a few more helpful tips:

  • Keeping your logs open in a second window (using heroku logs --tail) is helpful for watching server activity and debugging any problems with your Battlesnake.

  • You can use the Javascript console.log to output information to your server logs. This is very useful for debugging logic in your code during Battlesnake games.

  • Review the Battlesnake API Docs to learn what information is provided with each command. You can also output the data to your logs:

app.post('/move', (request, response) => {
  var data = request.body;
  console.log("Data: %s", data);
  return response.json({ move: "up" })
}
  • When viewing a Battlesnake game you can pause playback and step forward/backward one frame at a time. If you review your logs at the same time, you can see what decision your Battlesnake made on each turn.

Joining a Battlesnake Arena

Once you've made your Battlesnake behave and survive on its own, you can enter it into the Global Battlesnake Arena to see how it performs against other Battlesnakes worldwide.

Arenas will regularly create new games and rank Battlesnakes based on their results. They're a good way to get regular feedback on how well your Battlesnake is performing, and a fun way to track your progress as you develop your algorithm.

(Optional) Running Your Battlesnake Locally

Eventually you might want to run your Battlesnake server locally for faster testing and debugging. You can do this by installing NodeJS and npm.

Once installed, run this to install all of the client dependencies.

npm install

Than run the server:

npm start

Note: You cannot create games on play.battlesnake.com using a locally running Battlesnake unless you install and use a port forwarding tool like ngrok.


Questions?

All documentation is available at docs.battlesnake.com, including detailed Guides, API References, and Tips.

You can also join the Battlesnake Developer Community on Slack. We have a growing community of Battlesnake developers of all skill levels wanting to help everyone succeed and have fun with Battlesnake :)