From 45345d593d136668e36d63668eed61e124435f63 Mon Sep 17 00:00:00 2001 From: Thomas Kwashnak Date: Thu, 6 Jan 2022 13:16:55 -0500 Subject: [PATCH] Reformatted Code --- 48_High_IQ/java/src/HighIQ.java | 84 ++++++++++++++++----------------- 1 file changed, 40 insertions(+), 44 deletions(-) diff --git a/48_High_IQ/java/src/HighIQ.java b/48_High_IQ/java/src/HighIQ.java index 37528748..5c3f31aa 100644 --- a/48_High_IQ/java/src/HighIQ.java +++ b/48_High_IQ/java/src/HighIQ.java @@ -5,7 +5,7 @@ import java.util.Scanner; public class HighIQ { - private Map board; + private Map board; private PrintStream out; private Scanner scanner; @@ -25,104 +25,100 @@ public class HighIQ { board.put(41, false); } - + + public void play() { + do { + while (!move()) { + System.out.println("ILLEGAL MOVE, TRY AGAIN..."); + } + } while (!isGameFinished()); + + int pegCount = 0; + for (Integer key : board.keySet()) { + if (board.getOrDefault(key, false)) { + pegCount++; + } + } + + out.println("YOU HAD " + pegCount + " PEGS REMAINING"); + + if (pegCount == 1) { + out.println("BRAVO! YOU MADE A PERFECT SCORE!"); + out.println("SAVE THIS PAPER AS A RECORD OF YOUR ACCOMPLISHMENT!"); + } + } public boolean move() { System.out.println("MOVE WHICH PIECE"); int from = scanner.nextInt(); //using the getOrDefault, which will make the statement false if it is an invalid position - if(!board.getOrDefault(from,false)) { + if (!board.getOrDefault(from, false)) { return false; } System.out.println("TO WHERE"); int to = scanner.nextInt(); - if(board.getOrDefault(to,true)) { + if (board.getOrDefault(to, true)) { return false; } //Do nothing if they are the same - if(from == to) { + if (from == to) { return true; } //using the difference to check if the relative locations are valid int difference = Math.abs(to - from); - if(difference != 2 && difference != 18) { + if (difference != 2 && difference != 18) { return false; } //check if there is a peg between from and to - if(!board.getOrDefault((to + from) / 2,false)) { + if (!board.getOrDefault((to + from) / 2, false)) { return false; } return true; } - public void play() { - do { - while(!move()) { - System.out.println("ILLEGAL MOVE, TRY AGAIN..."); - } - } while(!isGameFinished()); - - int pegCount = 0; - for(Integer key : board.keySet()) { - if(board.getOrDefault(key,false)) { - pegCount++; - } - } - - out.println("YOU HAD " + pegCount + " PEGS REMAINING"); - - if(pegCount == 1) { - out.println("BRAVO! YOU MADE A PERFECT SCORE!"); - out.println("SAVE THIS PAPER AS A RECORD OF YOUR ACCOMPLISHMENT!"); - } - - } - // private boolean playAgain() { // out.println("PLAY AGAIN (YES OR NO)"); // return scanner.nextLine().toLowerCase().equals("yes"); // } - - + public boolean isGameFinished() { - for(Integer key : board.keySet()) { - if(board.get(key)) { + for (Integer key : board.keySet()) { + if (board.get(key)) { //Spacing is either 1 or 9 //Looking to the right and down from every point, checking for both directions of movement - for(int space : new int[] {1,9}) { - Boolean nextToPeg = board.getOrDefault(key + space,false); - Boolean hasMovableSpace = !board.getOrDefault(key - space,true) || !board.getOrDefault(key + space * 2, true); - if(nextToPeg && hasMovableSpace) { + for (int space : new int[]{1, 9}) { + Boolean nextToPeg = board.getOrDefault(key + space, false); + Boolean hasMovableSpace = !board.getOrDefault(key - space, true) || !board.getOrDefault(key + space * 2, true); + if (nextToPeg && hasMovableSpace) { return false; } } } - } return true; } public void printBoard() { - for(int i = 0; i < 7; i++) { - for(int j = 11; j < 18; j++) { + for (int i = 0; i < 7; i++) { + for (int j = 11; j < 18; j++) { out.print(getChar(j + 9 * i)); } out.println(); } } - + private char getChar(int position) { Boolean value = board.get(position); - if(value == null) { + if (value == null) { return ' '; - } else if(value) { + } else if (value) { return '!'; } else { return 'O';