From 40a19f04013a2eb38c0a22a1d7269e8ec96dcadc Mon Sep 17 00:00:00 2001 From: Daniel Schneider Date: Wed, 12 Mar 2025 11:42:30 +0100 Subject: [PATCH] another test --- Cubez.java | 227 ++++++++++++++++++++++++++++++----------------------- 1 file changed, 128 insertions(+), 99 deletions(-) diff --git a/Cubez.java b/Cubez.java index 2df3e4d..6fd8a46 100644 --- a/Cubez.java +++ b/Cubez.java @@ -32,8 +32,13 @@ public class Cubez { oCubez.checkRounds(); } + oCubez.clearScreen(); + System.out.println("\nAll turns used up! Now for the result...\n\n"); oCubez.sSheet.printScores(); - System.out.println("\nBetter luck next time!\n\n"); + 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() { @@ -80,55 +85,70 @@ public class Cubez { public void storeCube() { outputUI(); - System.out.print("Pick cube to store: "); + System.out.print("Pick cube(z) to store: "); String tmpIn = System.console().readLine(); - int pos = Integer.parseInt(tmpIn); - if(pos<1 || pos>5) return; - if(cubeCache[pos-1] == 0) return; - - int freePos = -1; - 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) return; - if(cubeStorage[pos-1] == 0) return; - int freePos = -1; - for(int i=0; i5 || operations<=0) return; - cubeCache[freePos] = cubeStorage[pos-1]; - cubeStorage[pos-1] = 0; - storedCubez = storedCubez-1; + for(int i=0;i5) return; + if(cubeStorage[pos-1] == 0) return; + + int freePos = -1; + for(int j=0; j= 63) this.bonus = 35; } - public void setScore(int[] store) { + 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": setNumbers(store, 1); break; - case "twos": setNumbers(store, 2); break; - case "threes": setNumbers(store, 3); break; - case "fours": setNumbers(store, 4); break; - case "fives": setNumbers(store, 5); break; - case "sixes": setNumbers(store, 6); break; - case "triple": setTuple(store, 3); break; - case "quadruple": setTuple(store, 4); break; - case "fulltime": setFulltime(store); break; - case "escalator": setEscalator(store); break; - case "elevator": setElevator(store); break; - case "pentacube": setPENTACUBE(store); break; - case "chance": setChance(store); break; + 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 void setNumbers(int[] store, int number) { + 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) { @@ -332,22 +357,22 @@ public class Cubez { System.out.print("Set " + scoreTS + " for \"" + kindText + "\"? [y/n] "); String yN = System.console().readLine(); if(yN.contains("y")) { - if(kind == 3) { - this.threeOAK = scoreTS; + if(kind >= 4) { + this.fourOAK = scoreTS; } else { - this.fourOAK = scoreTS; + this.threeOAK = scoreTS; } } else { - this.setScore(store); return; + boolean sSuccess = this.setScore(store); return sSuccess; } this.total = this.total + scoreTS; - rounds = rounds + 1; + return true; } - public void setFulltime(int[] store) { + public boolean setFulltime(int[] store) { int[] freq = new int[7]; boolean triplet = false; boolean tuplet = false; @@ -368,12 +393,12 @@ public class Cubez { System.out.print("Set " + scoreTS + " for \"Fulltime\"? [y/n] "); String yN = System.console().readLine(); - if(yN.contains("y")) { this.fullHouse = scoreTS; } else { this.setScore(store); return; } + if(yN.contains("y")) { this.fullHouse = scoreTS; } else { boolean sSuccess = this.setScore(store); return sSuccess; } this.total = this.total + scoreTS; - rounds = rounds + 1; + return true; } - public void setEscalator(int[] store) { + public boolean setEscalator(int[] store) { int[] freq = new int[7]; int streak = 0; int scoreTS = 0; @@ -384,6 +409,8 @@ public class Cubez { for(int i=1;i= 4) { @@ -392,12 +419,12 @@ public class Cubez { System.out.print("Set " + scoreTS + " for \"Escalator\"? [y/n] "); String yN = System.console().readLine(); - if(yN.contains("y")) { this.smallStraight = scoreTS; } else { this.setScore(store); return; } + if(yN.contains("y")) { this.smallStraight = scoreTS; } else { boolean sSuccess = this.setScore(store); return sSuccess; } this.total = this.total + scoreTS; - rounds = rounds + 1; + return true; } - public void setElevator(int[] store) { + public boolean setElevator(int[] store) { int[] freq = new int[7]; int streak = 0; int scoreTS = 0; @@ -408,20 +435,22 @@ public class Cubez { for(int i=1;i= 5) { + if (streak == 5) { scoreTS = 40; } System.out.print("Set " + scoreTS + " for \"Elevator\"? [y/n] "); String yN = System.console().readLine(); - if(yN.contains("y")) { this.largeStraight = scoreTS; } else { this.setScore(store); return; } + if(yN.contains("y")) { this.largeStraight = scoreTS; } else { boolean sSuccess = this.setScore(store); return sSuccess; } this.total = this.total + scoreTS; - rounds = rounds + 1; + return true; } - public void setPENTACUBE(int[] store) { + public boolean setPENTACUBE(int[] store) { int[] freq = new int[7]; int scoreTS = 0; boolean penta = false; @@ -438,23 +467,23 @@ public class Cubez { System.out.print("Set " + scoreTS + " for \"PENTACUBE\"? [y/n] "); String yN = System.console().readLine(); - if(yN.contains("y")) { this.pentaCube = scoreTS; } else { this.setScore(store); return; } + if(yN.contains("y")) { this.pentaCube = scoreTS; } else { boolean sSuccess = this.setScore(store); return sSuccess; } this.total = this.total + scoreTS; - rounds = rounds + 1; + return true; } - public void setChance(int[] store) { + public boolean setChance(int[] store) { int scoreTS = 0; for(int i=0;i