Code Monkey home page Code Monkey logo

battleship's Introduction

Battleship

Description

Write a program that plays the game of Battleship. In the first version, the user can act as Player 1, and the computer can act as Player 2.

Objectives

After completing this assignment, you should...

  • Understand the basics of control flow, variables, and methods in Ruby.
  • Understand the basics of Object Oriented Programming.
  • Understand the basic use cases of Git for single-developer projects.
  • Understand the purpose of test suites and how they can assist in development.
  • Understand how frustrating it would have been to try to check and debug this assignment without written tests!
  • Be able to build a game-playing application that asks the user for input and provides output to the user.
  • Be able to create a computer player that can act like a human (albeit not necessarily an intelligent one).
  • Be able to write an program that can satisfy a test suite.

Deliverables

  • A Repository. Fork this repository to your own github account.
  • A README. Wipe out this README and write your own. It should tell readers how to play your version of the game.
  • Ruby Files. You'll need a lot of these, and you'll be creating them from scratch. You should have one per class, plus at least one other to be executed from the command line to run the game.
  • A Playable Game. When I clone your repository, I should be able to run your program and play through an entire game of Battleship. I should be able to win and to lose.

When you are finished, create a pull request.

Normal Mode

Your task for this project, whether or not you choose to accept it, is to write a program that plays the game of Battleship. The user can act as Player 1, and the computer can act as Player 2. However, as you work through the assignment, you'll notice that you're also building it so that two humans could play each other (or two computer players, but that's not as much fun).

The rules of the game are given in the Hasbro instructions.

The major requirement of this project is for the TEST SUITE TO PASS. You are coding to the tests, and ideally, you're making them pass one at a time. As discussed in class, I would suggest making the first test pass USING THE SIMPLEST MEANS POSSIBLE. Then move on to the second test, the third test and so on. You should commit after each test passes.

Just to be clear, your computer player does not have to be smart. It just has to play until the game is finished.

Here's the unfortunately odd thing. READ THIS. If you're ever about to call gets.chomp in your code to prompt the user for his/her input, don't. Put the following code at the top of any file that needs to prompt the user:

def get_user_input
  gets.chomp
end

This goes BEFORE you start defining your class. I know that looks stupid, and I apologize for it, but the test suite will only run if you ALWAYS ask for user input by calling get_user_input rather than gets.chomp. Sorry again.

Hard Mode

This game currently only works for 9x9 grids, and for five ships with pre-set lengths. Add two optional parameters to Grid.new to allow the user to specify width and height of the board. Add one optional parameter to Game.new which is an array of integers. These integers define the lengths of the ships to be placed.

In addition to the above, add ten more (meaningful) tests to the test suite. Get them to pass!

Nightmare Mode

You have two paths to choose from in Nightmare mode:

  1. In addition to the above, modify your existing code to ask the user which type of game he/she would like to play: regular or SALVO. Allow the user to select and play either game.

  2. Modify your computer player so that it makes intelligent moves. In other words, Normal Mode is satisfied if the computer fires randomly. Hard mode required the computer to fire with some meaning. It has to have a chance of winning.

Don't forget to modify the test suite to continue to pass!

battleship's People

Contributors

mkg1 avatar masonfmatthews avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.