-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathControllerTUI.java
74 lines (58 loc) · 1.67 KB
/
ControllerTUI.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import java.io.IOException;
public class ControllerTUI {
private Model myModel;
private ViewTUI myView;
public ControllerTUI(String filename) throws IOException
{
myModel = new Model(filename);
myView = new ViewTUI();
}
//start hangman game
public void go(){
myView.welcome();
boolean play = false;
do {
String word = myModel.getRandomWord();
//gets Random word and sets basic correctLetters and incorrectGuesses
char guess;
boolean previous;
while (!myModel.maxBadGuessReached() && !myModel.wordGuessed()) {
myView.printCorrectLetters(myModel.correctLettersToString());
myView.printIncorrectGuesses(myModel.incorrectGuessesToString());
guess = myView.getNextGuess();
previous = myModel.previousGuess(guess);
if(previous){
myView.repeatedGuess();
}else{
boolean correct = fillInGuess(word, guess);
if (correct){
myView.gotCorrectLetter();
}else {
myView.gotIncorrectLetter();
myView.showMan(myModel.getTotalBadGuesses());
}
}
}
boolean won = myModel.wordGuessed();
if (won) {
myView.printCorrectLetters(myModel.correctLettersToString());
}
play = myView.playAgain(won,word);
} while (play);
myView.endInterface();
}
//if guess in word, return true. else false
private boolean fillInGuess(String word, char guess) {
boolean found = false;
for (int i = 0; i < word.length(); i++) {
if (word.charAt(i) == guess) {
found = true;
myModel.foundGuessInWord(word,guess,i);
}
}
if (!found) {
myModel.addBadGuess(guess);
}
return found;
}
}