Advertisement
Inksaver

Hangman Java class: Hangman (3 of 3)

Sep 4th, 2015
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 9.50 KB | None | 0 0
  1. package org.inksaver.java;
  2. /*
  3.     Hangman console version Java
  4.     You will need all 3 class files:
  5.     Main.java       http://pastebin.com/nbuy3y90
  6.     Hangman.java        http://pastebin.com/chsL0dbY
  7.     Dictionary.java     http://pastebin.com/BKkvSap3
  8.     get dictionary.txt from github or elsewhere call it "dictionary.txt" in same folder as src
  9.     https://github.com/dmcguinness/Hangman/blob/master/dictionary.txt
  10.     The methods used here may not be the most efficient, but have been chosen to
  11.     match as far as possible the code used in the Lua and Python versions,
  12.     so they can be directly compared and contrasted.
  13. */
  14. import java.util.Arrays;
  15.  
  16. public class Hangman {
  17.     int stage = 0;
  18.     String lettersAvailable = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  19.     String lettersChosen = ""; // add letters to this string as player chooses them
  20.     String progress = ""; //string of hyphens as placeholders for letters
  21.     boolean completed = false;
  22.     boolean fail = false;
  23.     String word = "";
  24.        
  25.     String[][] row = new String[9][12];{
  26.         /* full finished graphic:
  27.                     0_________________
  28.                     1|    _________  |
  29.                     2|    | /     |  |
  30.                     3|    |/      O  |
  31.                     4|    |      /|\ |
  32.                     5|    |       |  |
  33.                     6|    |      / \ |
  34.                     7| ___|___       |
  35.                     8|_______________|
  36.          */
  37.        
  38.         //stage 0 - new game
  39.         row[0][0] = "_________________";
  40.         row[1][0] = "|               |";
  41.         row[2][0] = "|               |";
  42.         row[3][0] = "|               |";
  43.         row[4][0] = "|               |";
  44.         row[5][0] = "|               |";
  45.         row[6][0] = "|               |";
  46.         row[7][0] = "|               |";
  47.         row[8][0] = "|_______________|";
  48.        
  49.         //stage 1 - 1 mistake
  50.         row[0][1] = "_________________";
  51.         row[1][1] = "|               |";
  52.         row[2][1] = "|               |";
  53.         row[3][1] = "|               |";
  54.         row[4][1] = "|               |";
  55.         row[5][1] = "|               |";
  56.         row[6][1] = "|               |";
  57.         row[7][1] = "| _______       |";
  58.         row[8][1] = "|_______________|";
  59.  
  60.         row[0][2] = "_________________";
  61.         row[1][2] = "|               |";
  62.         row[2][2] = "|    |          |";
  63.         row[3][2] = "|    |          |";
  64.         row[4][2] = "|    |          |";
  65.         row[5][2] = "|    |          |";
  66.         row[6][2] = "|    |          |";
  67.         row[7][2] = "| ___|___       |";
  68.         row[8][2] = "|_______________|";
  69.    
  70.         row[0][3] = "_________________";
  71.         row[1][3] = "|    _________  |";
  72.         row[2][3] = "|    | /        |";
  73.         row[3][3] = "|    |/         |";
  74.         row[4][3] = "|    |          |";
  75.         row[5][3] = "|    |          |";
  76.         row[6][3] = "|    |          |";
  77.         row[7][3] = "|    |          |";
  78.         row[8][3] = "|_______________|";
  79.        
  80.         row[0][4] = "_________________";
  81.         row[1][4] = "|    _________  |";
  82.         row[2][4] = "|    | /     |  |";
  83.         row[3][4] = "|    |/         |";
  84.         row[4][4] = "|    |          |";
  85.         row[5][4] = "|    |          |";
  86.         row[6][4] = "|    |          |";
  87.         row[7][4] = "| ___|___       |";
  88.         row[8][4] = "|_______________|";
  89.  
  90.         row[0][5] = "_________________";
  91.         row[1][5] = "|    _________  |";
  92.         row[2][5] = "|    | /     |  |";
  93.         row[3][5] = "|    |/      O  |";
  94.         row[4][5] = "|    |          |";
  95.         row[5][5] = "|    |          |";
  96.         row[6][5] = "|    |          |";
  97.         row[7][5] = "| ___|___       |";
  98.         row[8][5] = "|_______________|";
  99.    
  100.         row[0][6] = "_________________";
  101.         row[1][6] = "|    _________  |";
  102.         row[2][6] = "|    | /     |  |";
  103.         row[3][6] = "|    |/      O  |";
  104.         row[4][6] = "|    |      /   |";
  105.         row[5][6] = "|    |          |";
  106.         row[6][6] = "|    |          |";
  107.         row[7][6] = "| ___|___       |";
  108.         row[8][6] = "|_______________|";
  109.  
  110.         row[0][7] = "_________________";
  111.         row[1][7] = "|    _________  |";
  112.         row[2][7] = "|    | /     |  |";
  113.         row[3][7] = "|    |/      O  |";
  114.         row[4][7] = "|    |      /|  |";
  115.         row[5][7] = "|    |          |";
  116.         row[6][7] = "|    |          |";
  117.         row[7][7] = "| ___|___       |";
  118.         row[8][7] = "|_______________|";
  119.  
  120.         row[0][8] = "_________________";
  121.         row[1][8] = "|    _________  |";
  122.         row[2][8] = "|    | /     |  |";
  123.         row[3][8] = "|    |/      O  |";
  124.         row[4][8] = "|    |      /|" + (char)92 + " |"; // backspace causes printing errors so use ascii code
  125.         row[5][8] = "|    |          |";
  126.         row[6][8] = "|    |          |";
  127.         row[7][8] = "| ___|___       |";
  128.         row[8][8] = "|_______________|";
  129.  
  130.         row[0][9] = "_________________";
  131.         row[1][9] = "|    _________  |";
  132.         row[2][9] = "|    | /     |  |";
  133.         row[3][9] = "|    |/      O  |";
  134.         row[4][9] = "|    |      /|" + (char)92 + " |";
  135.         row[5][9] = "|    |       |  |";
  136.         row[6][9] = "|    |          |";
  137.         row[7][9] = "| ___|___       |";
  138.         row[8][9] = "|_______________|" ;
  139.    
  140.         row[0][10] =    "_________________";
  141.         row[1][10] =    "|    _________  |";
  142.         row[2][10] =    "|    | /     |  |";
  143.         row[3][10] =    "|    |/      O  |";
  144.         row[4][10] =    "|    |      /|" + (char)92 + " |";
  145.         row[5][10] =    "|    |       |  |";
  146.         row[6][10] =    "|    |      /   |";
  147.         row[7][10] =    "| ___|___       |";
  148.         row[8][10] =    "|_______________|";
  149.  
  150.         row[0][11] =    "_________________";
  151.         row[1][11] =    "|    _________  |";
  152.         row[2][11] =    "|    | /     |  |";
  153.         row[3][11] =    "|    |/      O  |";
  154.         row[4][11] =    "|    |      /|" + (char)92 + " |";
  155.         row[5][11] =    "|    |       |  |";
  156.         row[6][11] =    "|    |      / " + (char)92 + " |";
  157.         row[7][11] =    "| ___|___       |";
  158.         row[8][11] =    "|_______________|";
  159.     };
  160.    
  161.     public void printStage(){ // method: print graphics for current stage
  162.         for (int i = 0; i < 9; i++){
  163.             System.out.println(row[i][stage]);
  164.             }
  165.         String wordOut = "";
  166.         //display word with spaces between letters
  167.         for (int i = 0; i < progress.length(); i++){
  168.             wordOut = wordOut + " " + progress.charAt(i);
  169.         }
  170.         System.out.println(wordOut);
  171.     }
  172.  
  173.     public void setWord(String newWord){ // property set: use word from clsDictionary object
  174.         word = newWord;
  175.         progress = "";
  176.         for (int i = 0; i < newWord.length(); i++){ // create a string of hyphens as placeholders for letters
  177.             progress = progress + "-";
  178.         }
  179.     }
  180.    
  181.     public String getWord(){ // property get: current word used in game
  182.         return word;
  183.     }
  184.    
  185.     public int getWordLength(){ // property get: current word used in game
  186.         return word.length();
  187.     }
  188.    
  189.     public String getLettersAvailable(){ // property get: list of letters mot yet tried
  190.         return lettersAvailable;
  191.     }
  192.  
  193.     public String getLettersChosen(){ // property get: list of letters already tried
  194.         return lettersChosen;
  195.     }
  196.  
  197.     public boolean getCompleted(){ // property get: game complete, either pass or fail
  198.         return completed;
  199.     }
  200.    
  201.     public boolean getFail(){ // property get: game over with fail :(
  202.         return fail;
  203.     }
  204.    
  205.     public void checkGuess(String guess){ // method: check letter entered by user (already converted to upper case)
  206.         int position = -1;
  207.         String front = "";
  208.         String middle = "";
  209.         String end = "";
  210.         // example: word = "HELLO", guess = "L", lettersChosen = "A", progress  = "-----"
  211.         if (!lettersChosen.contains(guess)){ // letter not used before ("L" is not in "A")
  212.             position = word.indexOf(guess); // 0 = beginning, -1 not found: (L = 2)
  213.             if (position >= 0){ // letter is in game word! (L is in HELLO)
  214.                 //add letter to progress (replace underscore characters with letters)
  215.                 while (position >= 0){ // (position = 2)
  216.                     if (position == 0){ // first letter of word, so substitute letter for first underscore
  217.                         front = guess;
  218.                         middle = "";
  219.                         end = progress.substring(1);
  220.                     }
  221.                     else{ // not first letter, calculate new string with letter in place of underscore
  222.                         front = progress.substring(0, position); //(progress = "-----", front = "--")
  223.                         middle = guess; //middle = "L"
  224.                         if (position == word.length() - 1){ // last letter. length() is larger by 1, and position starts at 0, so -2 needed
  225.                             end = "";
  226.                         }
  227.                         else{
  228.                             end = progress.substring(position + 1, progress.length());//(end = "--")
  229.                         }
  230.                     }
  231.                     progress = front + middle + end; //("--" + "L" + "--")
  232.                     position = word.indexOf(guess, position + 1);//-1 if not found (word = "HELLO", position = 3 so loop again)
  233.                 }
  234.                 if (!progress.contains("-")){ // game completed as all hyphens are gone
  235.                     completed = true;
  236.                 }
  237.             }
  238.             else{
  239.                 //draw next stage of Hangman
  240.                 if (stage == 10){ // game over, word not found
  241.                     fail = true;
  242.                     completed = true;
  243.                 }
  244.                 stage++; // make sure next / final graphic is drawn
  245.             }
  246.          
  247.             // add last letter to list, sort list and return
  248.             lettersChosen = lettersChosen + guess;
  249.             char[] chars = lettersChosen.toCharArray();
  250.             Arrays.sort(chars);
  251.             lettersChosen = new String(chars);
  252.             position = lettersAvailable.indexOf(guess); // remove last letter from list of available letters
  253.             if (position == lettersAvailable.length() - 1){ //last letter in string
  254.                 lettersAvailable = lettersAvailable.substring(0, position);
  255.             }
  256.             else{
  257.                 lettersAvailable = lettersAvailable.substring(0, position) + lettersAvailable.substring(position + 1, lettersAvailable.length());
  258.             }
  259.         }
  260.     }
  261. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement