Stories for Hangman:
TODO:
As Player 2, I want to know that I correctly guessed the word with a message. (1) (Bill)
As Player 2, I want to see the secret word, if I have 6 missed guesses. (2) (Bill)
As the guessing player, I want to see the Hangman drawn as I miss guesses (2) (Bill)
As players playing hangman, I want the view to look a certain way (2) (Sarath and Mounika)
As players playing, I want to see the name of player 1 and player 2 listed (1) (Brad)
As players playing the game, I want a dialog box to enter player names, and select who is guessing. (2) (Brad)
--DONE As Player 1, I want to be able to enter a secret word so Player 2 can guess it. (1) (Bill)
--DONE As Player 1, I don’t want player 2 to see any of the letters in my word, unless he correctly guesses a letter so there is actually a game to be played (2) (Mounkia)
Modify the Hangman View to display blanks equal to the length of the secret word entered( DONE)
Modify the hangman view to display the letter in its respective position for each correct guess made(DONE)
--DONE As Player 1, I only want Player 2 to have 6 incorrect guesses until he loses so he can’t guess every letter (2) (Brad)
Modify the hangman model to store a guessesLeft int
Modify the hangman controller to pass each guess to the model
--DONE As player 2, I want to be able to see all the letters I have already guessed, and not lose guesses if I repeat one.
* modify the hangman view to display each guess
* should show if guess was correct by adding letter to word
* Should show if guess was incorrect by adding body part to hangman(or just displaying as list)