7 Commits

Author SHA1 Message Date
c87527973e Merge branch 'Hochlaf-Vue'
# Conflicts:
#	TD3_DEV51_Qualite_Algo/src/main/java/fr/iutfbleau/TD3_DEV51_Qualite_Algo/Controllers/Game.java
#	TD3_DEV51_Qualite_Algo/src/main/java/fr/iutfbleau/TD3_DEV51_Qualite_Algo/Models/Word.java
2025-10-08 16:48:06 +02:00
5336077fc4 Merge branch 'NewControllers'
# Conflicts:
#	TD3_DEV51_Qualite_Algo/src/main/java/fr/iutfbleau/TD3_DEV51_Qualite_Algo/Controllers/Game.java
#	TD3_DEV51_Qualite_Algo/src/main/java/fr/iutfbleau/TD3_DEV51_Qualite_Algo/Models/Word.java
2025-10-08 16:44:28 +02:00
c70c2b73ad fix 2025-10-08 16:34:45 +02:00
90cd0b42a0 Vérif faite 2025-10-08 16:33:28 +02:00
d4d8249c8b Vérif fait 2025-10-08 16:26:47 +02:00
7bc1bb498f feat(controllers/game): add score, chrono & finished game method 2025-10-08 16:21:59 +02:00
94e7394494 add: Difficulty Mode 2025-10-08 16:11:40 +02:00
3 changed files with 155 additions and 16 deletions

View File

@@ -3,18 +3,79 @@ package fr.iutfbleau.TD3_DEV51_Qualite_Algo.Controllers;
import fr.iutfbleau.TD3_DEV51_Qualite_Algo.Models.Word; import fr.iutfbleau.TD3_DEV51_Qualite_Algo.Models.Word;
; ;
import fr.iutfbleau.TD3_DEV51_Qualite_Algo.Models.Difficulty;
import fr.iutfbleau.TD3_DEV51_Qualite_Algo.Models.Word;
import java.util.*;
import fr.iutfbleau.TD3_DEV51_Qualite_Algo.Models.Word;
import fr.iutfbleau.TD3_DEV51_Qualite_Algo.View.hangedManView;
public class Game { public class Game {
private Word word; private Word word;
private int errors; private hangedManView hangedManView;
private final int maxErrors = 6;
public Game(Word word) { private int errors;
private int maxErrors = 9;
private String wrongLetters;
private long startTime;
private long endTime;
private final int maxTime = 120000; // 2 minutes
private List<Word> allwords;
private Difficulty difficulty;
/* Hangmam Game */
// Constructor
public Game(Word word ,List<Word> allWord,hangedManView hangedManView) {
this.word = word; this.word = word;
this.hangedManView = hangedManView;
this.errors = 0; this.errors = 0;
this.wrongLetters = "";
this.startTime = System.currentTimeMillis();
this.endTime = 0;
switch (difficulty) {
case EASY:
this.word = selectWord(allWord, 0 , 7 );
break;
case MEDIUM:
this.word = selectWord(allWord, 0, Integer.MAX_VALUE);
break;
case HARD:
this.allwords = selectTwoWords(allWord);
break;
}
} }
/* Verify error number */ /* Selected Word with conditions */
private Word selectWord(List<Word> list, int min, int max) {
for (Word word : list) {
int length = word.getWord().length();
if (length >= min && length <= max) {
return word;
}
}
return list.getFirst();
}
/* Selected word level Difficult */
private List<Word> selectTwoWords(List<Word> list) {
return list.subList(0, Math.min(2, list.size()));
}
public boolean playLetter(char caractere) {
boolean correct;
if(difficulty == Difficulty.HARD){
correct = this.allwords.get(0).VerifyLetter(caractere) || this.allwords.get(1).VerifyLetter(caractere);
} else{
correct = word.VerifyLetter(caractere);
}
if (!correct) errors++;
return correct;
}
// Getters - Errors
public int getErrors() { public int getErrors() {
return this.errors; return this.errors;
} }
@@ -22,25 +83,94 @@ public class Game {
public int getMaxErrors() { public int getMaxErrors() {
return this.maxErrors; return this.maxErrors;
} }
// Getters - Wrong Letters
public String getWrongLetters() {
return this.wrongLetters;
}
/* Vue call method VerifyLetter, check status letter false/True */ // Determine if the game is lost
private boolean isLost() {
return errors >= maxErrors;
}
// Determine if the game is won
public boolean isWon() {
int score = calculateScore();
if (word.IsComplete() && score > 0) {
return true;
}
return false;
}
// From view, verify if the letter is correct & finish the game if necessary (lost or won)
public boolean playLetter(char c) { public boolean playLetter(char c) {
boolean correct = word.VerifyLetter(c); boolean correct = word.VerifyLetter(c);
if (!correct) { if (!correct) {
errors++; errors++;
hangedManView.setState(errors);
wrongLetters += c + " ";
hangedManView.setWrongLetters(wrongLetters);
if (isLost()) {
finishedGame();
}
} else {
hangedManView.setCorrectLetters(word.getHiddenWord());
if (word.IsComplete()) {
finishedGame();
}
} }
return correct; return correct;
} }
/* All letter is completed : Won */ // Finish the game
public boolean isWon() { private boolean finishedGame() {
return word.IsComplete(); this.endTime = System.currentTimeMillis();
if (isLost()) {
return false;
}
boolean isWon = isWon();
return isWon;
} }
/* Lost if maxErrors is greater than or egal to errors */ // For view, return the remaining time
public boolean isLost() { public long getRemainingTime() {
return errors >= maxErrors; long elapsed = (System.currentTimeMillis() - startTime) / 1000;
long remaining = (maxTime / 1000) - elapsed;
if (remaining < 0) {
remaining = 0;
finishedGame();
}
return Math.max(remaining, 0);
}
// Get elapsed time for calculateScore
private long calculateTime() {
long elapsedTime = (endTime - startTime) / 1000;
return elapsedTime;
}
// Calculate Score
public int calculateScore() {
long time = calculateTime();
int baseScore = 1000;
int errorPenalty = errors * 50;
int timePenalty = (int) time * 2;
int score = baseScore - errorPenalty - timePenalty;
if (score < 0) {
score = 0;
}
return score;
} }
} }

View File

@@ -0,0 +1,5 @@
package fr.iutfbleau.TD3_DEV51_Qualite_Algo.Models;
public enum Difficulty {
EASY, MEDIUM, HARD
}

View File

@@ -4,8 +4,8 @@ import java.util.*;
public class Word { public class Word {
private final String word; private final String word;
private Letter[] tabLetter; private Letter[] tabLetter;
private String c; private String character;
public Word(String word){ public Word(String word){
this.word = word; this.word = word;
@@ -14,11 +14,11 @@ public class Word {
} }
} }
/* Lettre dans le mot */ /* Lettre dans le mot */
public boolean VerifyLetter(char c){ public boolean VerifyLetter(char character){
boolean return_bool = false; boolean return_bool = false;
for(Letter letter : this.tabLetter){ for(Letter letter : this.tabLetter){
if(!letter.getStatus()){ if(!letter.getStatus()){
if(letter.isGood(c)){ if(letter.isGood(character)){
return_bool = true; return_bool = true;
} }
} }
@@ -27,7 +27,7 @@ public class Word {
} }
/* Le mot a été deviné */ /* Le mot a été deviné */
public boolean IsComplete(){ public boolean IsComplete(){
for(Letter letter : this.tabLetter){ for(Letter letter : this.tabLetter){
if(!letter.getStatus()){ if(!letter.getStatus()){
return false; return false;
@@ -36,4 +36,8 @@ public class Word {
} }
return true; return true;
} }
public String getWord() {
return word;
}
} }