djdefi / starter-snake-ruby

A simple Battlesnake written in Ruby.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A simple Battlesnake written in Ruby.

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

Maintanance

This is a community maintained Starter Project Battlesnake!

Contribute to Open Source, and help keep this project up-to-date via pull request. Pull requests will be reviewed and merged by the Battlesnake Official team.

Get involved in the Battlesnake community!

Technologies

This Battlesnake uses Ruby 2.7, and Heroku.

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-ruby.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:

    {"apiversion":"1","author":"","color":"#888888","head":"default","tail":"default"}
    
  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 / endpoint inside app/app.rb. You should see code that looks like this:

 appearance = {
    apiversion: "1",        
    author: "",           # TODO: Your Battlesnake Username
    color: "#888888",     # TODO: Personalize
    head: "default",      # TODO: Personalize
    tail: "default",      # TODO: Personalize
  }

This function is called by the game engine periodically to make sure your Battlesnake is healthy, responding correctly, and to determine how your Battlesnake will appear on the game board. See Battlesnake Personalization for how to customize your Battlesnake's appearance using these values.

Whenever you update these values, you can refresh your Battlesnake on your profile page to use your latest configuration. Your changes should be reflected in the UI, as well as any new games created.

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 function inside app/move.rb. You should see code that looks like this:

def move(board)
  # Choose a random direction to move in
  possible_moves = ["up", "down", "left", "right"]
  move = possible_moves.sample
  puts "MOVE: " + move
  { "move": move }
end

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 board 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 Ruby puts function 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:

def move(board)
  puts board
  ...
  • 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 Ruby 2.7 then install dependecies using bundler:

bundle install

Then you can run the server:

ruby app/app.rb

This will start the Battlesnake server on port 4567.

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 Discord. We have a growing community of Battlesnake developers of all skill levels wanting to help everyone succeed and have fun with Battlesnake :)

Feedback

  • Do you have an issue or suggestions for this repository? Head over to our Feedback Repository today and let us know!

About

A simple Battlesnake written in Ruby.

License:MIT License


Languages

Language:Ruby 92.4%Language:Dockerfile 7.6%