public class Cubez { private static boolean done; private ScoreSheet sSheet = new ScoreSheet(); private int[] cubeCache = new int[5]; private int[] cubeStorage = new int[5]; private int storedCubez = 0; private int rollsLeft = 3; private int rounds = 0; public static void main(String[] args) { System.out.println(" ___ _ ____"); System.out.println("| _| _ _ | |_ ___ |_ /"); System.out.println("| <__| | || . \\/ ._> / /"); System.out.println("`___/`___||___/\\___./___|"); System.out.print("press return key to start... good luck!"); System.console().readLine(); Cubez oCubez = new Cubez(); while(!done) { if(oCubez.sSheet.bonus == 0) oCubez.sSheet.checkBonus(); oCubez.outputUI(); System.out.println("score: " + oCubez.sSheet.total + ", turns left: " + (13 - oCubez.rounds) + ", rolls left: " + oCubez.rollsLeft + "\n\n"); System.out.println("[s]tore cube [c]ache cube [r]oll cubez, "); System.out.println("[m]egastore [o]mnicache "); System.out.println("[v]iew scores [e]nd turn [q]uit Cubez\n"); System.out.print("Pick action: "); oCubez.handleUserInput(); oCubez.checkRounds(); } oCubez.clearScreen(); System.out.println("\nAll turns used up! Now for the result...\n\n"); oCubez.sSheet.printScores(); if(oCubez.sSheet.total<100) System.out.println("\nMy brother in christ, did you even try?\n\n"); if(oCubez.sSheet.total<200 && oCubez.sSheet.total >= 100) System.out.println("\nMaybe try that again?\n\n"); if(oCubez.sSheet.total<300 && oCubez.sSheet.total >= 200) System.out.println("\nBetter luck next time!\n\n"); if(oCubez.sSheet.total >= 300) System.out.println("\nHoly cow, that is a number!\n\n"); } public void clearScreen() { System.out.print("\033[H\033[2J"); System.out.flush(); } public int rollD6() { int tmp = ((int)(Math.random() * 6)) + 1; return tmp; } public void rollCache() { int rolls = 5 - storedCubez; for(int i=0; i<5; i++) { cubeCache[i] = rollD6(); if(i>(rolls-1)) cubeCache[i] = 0; } rollsLeft = rollsLeft-1; } public void outputCache() { for(int i=0; i5 || operations<=0) return; for(int i=0;i5) return; if(cubeCache[pos-1] == 0) continue; int freePos = -1; for(int j=0; j5 || operations<=0) return; for(int i=0;i5) return; if(cubeStorage[pos-1] == 0) return; int freePos = -1; for(int j=0; j0) rollCache(); break; case "v": sSheet.printScores(); System.console().readLine(); break; case "e": endTurn(); break; case "q": quit(); break; case "o": transferCubez(cubeStorage, cubeCache); storedCubez = 0; break; case "m": transferCubez(cubeCache, cubeStorage); storedCubez = 5; break; default: break; } } public void checkRounds() { if(rounds == 13) done = true; } private int sum(int[] arr) { int s=0; for(int i=0;i 0) { for(int i=0;i= 63) this.bonus = 35; } public boolean setScore(int[] store) { clearScreen(); sSheet.printScores(); outputStorage(); System.out.print("\nWhat score to set? [type name] "); String choice = System.console().readLine(); boolean sSuccess = false; switch (choice) { case "aces": sSuccess = setNumbers(store, 1); return sSuccess; case "twos": sSuccess = setNumbers(store, 2); return sSuccess; case "threes": sSuccess = setNumbers(store, 3); return sSuccess; case "fours": sSuccess = setNumbers(store, 4); return sSuccess; case "fives": sSuccess = setNumbers(store, 5); return sSuccess; case "sixes": sSuccess = setNumbers(store, 6); return sSuccess; case "triple": sSuccess = setTuple(store, 3); return sSuccess; case "quadruple": sSuccess = setTuple(store, 4); return sSuccess; case "fulltime": sSuccess = setFulltime(store); return sSuccess; case "escalator": sSuccess = setEscalator(store); return sSuccess; case "elevator": sSuccess = setElevator(store); return sSuccess; case "pentacube": sSuccess = setPENTACUBE(store); return sSuccess; case "chance": sSuccess = setChance(store); return sSuccess; case "": return false; default: setScore(store); break; } return false; } public boolean setNumbers(int[] store, int number) { int scoreTS = 0; String yN = "n"; boolean sSuccess = false; for (int i=0; i= 3) scoreTS = kind * i; } else { if(freq[i] >= 4) scoreTS = kind * i; } } if(scoreTS > 0) { scoreTS = 0; for(int i=0;i= 4) { this.fourOAK = scoreTS; } else { this.threeOAK = scoreTS; } } else { boolean sSuccess = this.setScore(store); return sSuccess; } this.total = this.total + scoreTS; return true; } public boolean setFulltime(int[] store) { int[] freq = new int[7]; boolean triplet = false; boolean tuplet = false; int scoreTS = 0; for(int i=0;i= 4) { scoreTS = 30; } System.out.print("Set " + scoreTS + " for \"Escalator\"? [y/n] "); String yN = System.console().readLine(); if(yN.contains("y")) { this.smallStraight = scoreTS; } else { boolean sSuccess = this.setScore(store); return sSuccess; } this.total = this.total + scoreTS; return true; } public boolean setElevator(int[] store) { int[] freq = new int[7]; int streak = 0; int scoreTS = 0; for(int i=0;i