Mostly done ShiPWarfareText

This commit is contained in:
KahootChampion
2019-04-07 13:52:36 -06:00
parent 548448bda1
commit fff5456b45

View File

@@ -49,12 +49,14 @@ public class ShipWarfareText extends Player {
System.out.println("Couldn't run away!");
if (destroyPeasantShipsOrEscape())
break;
}
}else {
System.out.println("Phew! Got away safely");
delayForSeconds(2);
break;
}
}else{
System.out.println("Invalid response, please try again");
}
}
@@ -169,8 +171,8 @@ public class ShipWarfareText extends Player {
setHP(getHP() - (1 + randomValue.nextInt(10)));
}
if (getHP() > 0) {
String response = displayQuery(userInput);
if (response.equalsIgnoreCase("r")) {
String userResponse = displayQuery(userInput);
if (userResponse.equalsIgnoreCase("r")) {
userAttacks=false;
if (logic.runFromShips() == false) {
System.out.println("Couldn't run away");
@@ -179,6 +181,9 @@ public class ShipWarfareText extends Player {
break;
}
}
else if(userResponse.equalsIgnoreCase("f")){
}
} else {
exitValue = 2;
break;
@@ -199,11 +204,22 @@ public class ShipWarfareText extends Player {
gameOver();
return true;
}
else if (exitValue == 3) {
System.out.printf("We made it out at %d%% ship status!\n", getHP());
delayForSeconds(2);
return true;
}
return false;
}
/**
* Ask the user to input either "f" or "r"
* @param userInput scanner object which is used to ask for user input
* @return user input which is the users response
* @throws Exception in case the delay afects this piece of code
*/
public String displayQuery(Scanner userInput) throws Exception {
System.out.printf("EEK, our current ship status is %d%% \n", getHP());
delayForSeconds(1);
@@ -214,6 +230,9 @@ public class ShipWarfareText extends Player {
System.out.printf("Shall we continue to fight? Enter \"f\" to fight, and \"r\" to run (We have %d gun(s) left)\n", getGuns());
String response = userInput.nextLine();
while(!(response.equalsIgnoreCase("f") || response.equalsIgnoreCase("r")))
System.out.println("Invalid response, try again");
response=userInput.nextLine();
return response;
}