2025-10-08 11:57:29 +02:00
|
|
|
|
package front;
|
|
|
|
|
|
|
|
|
|
|
|
import back.*;
|
2025-10-08 15:26:45 +02:00
|
|
|
|
|
2025-10-08 11:57:29 +02:00
|
|
|
|
import javax.swing.*;
|
|
|
|
|
|
import java.awt.*;
|
|
|
|
|
|
import java.awt.event.ActionEvent;
|
2025-10-08 16:15:19 +02:00
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
import java.util.List;
|
2025-10-08 11:57:29 +02:00
|
|
|
|
|
|
|
|
|
|
/**
|
2025-10-08 17:02:53 +02:00
|
|
|
|
* Interface graphique du pendu avec niveaux :
|
2025-10-08 17:53:03 +02:00
|
|
|
|
* - facile : mots < 8 lettres
|
|
|
|
|
|
* - moyen : mots ≥ 8 lettres
|
|
|
|
|
|
* - difficile : deux mots (score + chrono cumulés)
|
2025-10-08 17:02:53 +02:00
|
|
|
|
* Boutons : Essayer / Nouvelle partie / Menu / Quitter.
|
|
|
|
|
|
* (Toutes les méthodes ≤ 50 lignes)
|
2025-10-08 11:57:29 +02:00
|
|
|
|
*/
|
|
|
|
|
|
public class GameUI {
|
|
|
|
|
|
private JFrame frame;
|
2025-10-08 15:26:45 +02:00
|
|
|
|
private JLabel imgLabel, wordLabel, triedLabel, scoreLabel, timeLabel;
|
2025-10-08 11:57:29 +02:00
|
|
|
|
private JTextField input;
|
2025-10-08 17:02:53 +02:00
|
|
|
|
private JButton tryBtn, newBtn, menuBtn, quitBtn;
|
2025-10-08 16:15:19 +02:00
|
|
|
|
|
2025-10-08 11:57:29 +02:00
|
|
|
|
private Game game;
|
2025-10-08 16:15:19 +02:00
|
|
|
|
private List<String> words;
|
|
|
|
|
|
private int index = 0;
|
2025-10-08 17:02:53 +02:00
|
|
|
|
private final int level;
|
2025-10-08 16:15:19 +02:00
|
|
|
|
private String currentWord = "";
|
2025-10-08 15:26:45 +02:00
|
|
|
|
private Timer timer;
|
2025-10-08 11:57:29 +02:00
|
|
|
|
|
2025-10-08 17:53:03 +02:00
|
|
|
|
// Cumul de session (niveau difficile)
|
2025-10-08 17:02:53 +02:00
|
|
|
|
private long sessionStartNano = -1L;
|
|
|
|
|
|
private int sessionScore = 0;
|
|
|
|
|
|
|
2025-10-08 17:53:03 +02:00
|
|
|
|
/** Reçoit la difficulté (facile, moyen, difficile). */
|
2025-10-08 16:15:19 +02:00
|
|
|
|
public GameUI(int level) {
|
|
|
|
|
|
this.level = level;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-08 17:02:53 +02:00
|
|
|
|
/** Affiche la fenêtre et lance la session. */
|
2025-10-08 11:57:29 +02:00
|
|
|
|
public void show() {
|
2025-10-08 15:26:45 +02:00
|
|
|
|
setupWindow();
|
|
|
|
|
|
setupLayout();
|
|
|
|
|
|
setupActions();
|
2025-10-08 17:02:53 +02:00
|
|
|
|
startNewSession();
|
|
|
|
|
|
frame.setVisible(true);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Démarre une nouvelle session (nouveaux mots, reset chrono/score session). */
|
|
|
|
|
|
private void startNewSession() {
|
|
|
|
|
|
sessionStartNano = System.nanoTime();
|
|
|
|
|
|
sessionScore = 0;
|
|
|
|
|
|
index = 0;
|
2025-10-08 16:15:19 +02:00
|
|
|
|
prepareWords();
|
|
|
|
|
|
startRound();
|
2025-10-08 11:57:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-08 17:02:53 +02:00
|
|
|
|
/** Prépare la liste des mots selon le niveau (aléatoire géré dans Words). */
|
2025-10-08 16:15:19 +02:00
|
|
|
|
private void prepareWords() {
|
2025-10-08 17:02:53 +02:00
|
|
|
|
words = new ArrayList<>();
|
|
|
|
|
|
if (level == 1) {
|
|
|
|
|
|
words.add(Words.randomShortWord());
|
|
|
|
|
|
} else if (level == 2) {
|
|
|
|
|
|
words.add(Words.randomLongWord());
|
|
|
|
|
|
} else if (level == 3) {
|
|
|
|
|
|
words = Words.randomPair(); // [court, long] aléatoires
|
2025-10-08 16:15:19 +02:00
|
|
|
|
}
|
2025-10-08 17:02:53 +02:00
|
|
|
|
if (words.isEmpty()) words.add(Words.random()); // filet de sécurité
|
2025-10-08 16:15:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-08 17:02:53 +02:00
|
|
|
|
/** Fenêtre principale. */
|
2025-10-08 15:26:45 +02:00
|
|
|
|
private void setupWindow() {
|
2025-10-08 11:57:29 +02:00
|
|
|
|
frame = new JFrame("Jeu du Pendu");
|
|
|
|
|
|
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
2025-10-08 15:26:45 +02:00
|
|
|
|
frame.setSize(560, 560);
|
2025-10-08 11:57:29 +02:00
|
|
|
|
frame.setLocationRelativeTo(null);
|
|
|
|
|
|
frame.setLayout(new BorderLayout(12, 12));
|
2025-10-08 15:26:45 +02:00
|
|
|
|
}
|
2025-10-08 11:57:29 +02:00
|
|
|
|
|
2025-10-08 17:02:53 +02:00
|
|
|
|
/** Layout + composants. */
|
2025-10-08 15:26:45 +02:00
|
|
|
|
private void setupLayout() {
|
2025-10-08 11:57:29 +02:00
|
|
|
|
imgLabel = new JLabel("", SwingConstants.CENTER);
|
|
|
|
|
|
frame.add(imgLabel, BorderLayout.CENTER);
|
|
|
|
|
|
|
2025-10-08 15:26:45 +02:00
|
|
|
|
wordLabel = new JLabel("Mot : ");
|
|
|
|
|
|
triedLabel = new JLabel("Lettres essayées : ");
|
|
|
|
|
|
scoreLabel = new JLabel("Score : 0");
|
|
|
|
|
|
timeLabel = new JLabel("Temps : 0s");
|
|
|
|
|
|
|
2025-10-08 17:53:03 +02:00
|
|
|
|
JLabel titleLabel = new JLabel("Sauver Michel!!", SwingConstants.CENTER);
|
|
|
|
|
|
titleLabel.setFont(new Font("Arial", Font.BOLD, 22));
|
|
|
|
|
|
titleLabel.setForeground(Color.RED);
|
|
|
|
|
|
|
|
|
|
|
|
JPanel top = new JPanel(new BorderLayout());
|
|
|
|
|
|
JPanel infoPanel = new JPanel(new GridLayout(2, 1));
|
|
|
|
|
|
infoPanel.add(buildTopLine(wordLabel, scoreLabel));
|
|
|
|
|
|
infoPanel.add(buildTopLine(triedLabel, timeLabel));
|
|
|
|
|
|
|
|
|
|
|
|
top.add(titleLabel, BorderLayout.NORTH);
|
|
|
|
|
|
top.add(infoPanel, BorderLayout.CENTER);
|
2025-10-08 15:26:45 +02:00
|
|
|
|
frame.add(top, BorderLayout.NORTH);
|
|
|
|
|
|
|
2025-10-08 11:57:29 +02:00
|
|
|
|
JPanel bottom = new JPanel(new BorderLayout(8, 8));
|
|
|
|
|
|
JPanel inputPanel = new JPanel(new FlowLayout(FlowLayout.LEFT));
|
|
|
|
|
|
input = new JTextField(5);
|
|
|
|
|
|
tryBtn = new JButton("Essayer");
|
2025-10-08 17:02:53 +02:00
|
|
|
|
newBtn = new JButton("Nouvelle partie");
|
2025-10-08 11:57:29 +02:00
|
|
|
|
inputPanel.add(new JLabel("Lettre :"));
|
|
|
|
|
|
inputPanel.add(input);
|
|
|
|
|
|
inputPanel.add(tryBtn);
|
2025-10-08 17:02:53 +02:00
|
|
|
|
inputPanel.add(newBtn);
|
2025-10-08 16:20:13 +02:00
|
|
|
|
|
|
|
|
|
|
JPanel actionPanel = new JPanel(new FlowLayout(FlowLayout.RIGHT));
|
|
|
|
|
|
menuBtn = new JButton("Menu");
|
|
|
|
|
|
quitBtn = new JButton("Quitter");
|
|
|
|
|
|
actionPanel.add(menuBtn);
|
|
|
|
|
|
actionPanel.add(quitBtn);
|
|
|
|
|
|
|
2025-10-08 11:57:29 +02:00
|
|
|
|
bottom.add(inputPanel, BorderLayout.WEST);
|
2025-10-08 16:20:13 +02:00
|
|
|
|
bottom.add(actionPanel, BorderLayout.EAST);
|
2025-10-08 11:57:29 +02:00
|
|
|
|
frame.add(bottom, BorderLayout.SOUTH);
|
2025-10-08 15:26:45 +02:00
|
|
|
|
}
|
2025-10-08 11:57:29 +02:00
|
|
|
|
|
2025-10-08 17:02:53 +02:00
|
|
|
|
/** Ligne d’infos (gauche/droite). */
|
2025-10-08 15:26:45 +02:00
|
|
|
|
private JPanel buildTopLine(JLabel left, JLabel right) {
|
2025-10-08 16:15:19 +02:00
|
|
|
|
JPanel p = new JPanel(new FlowLayout(FlowLayout.LEFT));
|
|
|
|
|
|
p.add(left);
|
|
|
|
|
|
p.add(Box.createHorizontalStrut(24));
|
|
|
|
|
|
p.add(right);
|
|
|
|
|
|
return p;
|
2025-10-08 15:26:45 +02:00
|
|
|
|
}
|
2025-10-08 11:57:29 +02:00
|
|
|
|
|
2025-10-08 17:02:53 +02:00
|
|
|
|
/** Actions + timer. */
|
2025-10-08 15:26:45 +02:00
|
|
|
|
private void setupActions() {
|
2025-10-08 11:57:29 +02:00
|
|
|
|
tryBtn.addActionListener(this::onTry);
|
|
|
|
|
|
input.addActionListener(this::onTry);
|
2025-10-08 17:02:53 +02:00
|
|
|
|
newBtn.addActionListener(e -> startNewSession());
|
2025-10-08 16:20:13 +02:00
|
|
|
|
menuBtn.addActionListener(e -> returnToMenu());
|
2025-10-08 17:02:53 +02:00
|
|
|
|
quitBtn.addActionListener(e -> frame.dispose());
|
2025-10-08 15:26:45 +02:00
|
|
|
|
timer = new Timer(1000, e -> refreshStatsOnly());
|
2025-10-08 11:57:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-08 17:02:53 +02:00
|
|
|
|
/** Retour vers le menu de sélection. */
|
2025-10-08 16:20:13 +02:00
|
|
|
|
private void returnToMenu() {
|
|
|
|
|
|
timer.stop();
|
|
|
|
|
|
frame.dispose();
|
|
|
|
|
|
MenuUI menu = new MenuUI();
|
|
|
|
|
|
menu.show();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-08 17:02:53 +02:00
|
|
|
|
/** Démarre un nouveau mot (ou termine la session si plus de mots). */
|
2025-10-08 16:15:19 +02:00
|
|
|
|
private void startRound() {
|
|
|
|
|
|
if (index >= words.size()) {
|
2025-10-08 17:02:53 +02:00
|
|
|
|
int total = (level == 3) ? sessionScore : game.getScore();
|
|
|
|
|
|
long secs = (level == 3) ? getSessionSeconds() : game.getElapsedSeconds();
|
|
|
|
|
|
showMsg("Niveau terminé !\nScore total : " + total + "\nTemps : " + secs + "s");
|
2025-10-08 16:15:19 +02:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
currentWord = words.get(index++);
|
2025-10-08 11:57:29 +02:00
|
|
|
|
game = new Game(currentWord, 7);
|
|
|
|
|
|
input.setText("");
|
|
|
|
|
|
input.requestFocusInWindow();
|
2025-10-08 15:26:45 +02:00
|
|
|
|
if (!timer.isRunning()) timer.start();
|
2025-10-08 11:57:29 +02:00
|
|
|
|
refreshUI();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-08 17:02:53 +02:00
|
|
|
|
/** Tente une lettre (bouton/Entrée). */
|
2025-10-08 11:57:29 +02:00
|
|
|
|
private void onTry(ActionEvent e) {
|
|
|
|
|
|
String text = input.getText();
|
|
|
|
|
|
if (!Check.isLetter(text)) {
|
2025-10-08 15:26:45 +02:00
|
|
|
|
showMsg("Tape une seule lettre (A-Z).");
|
2025-10-08 11:57:29 +02:00
|
|
|
|
input.requestFocusInWindow();
|
|
|
|
|
|
input.selectAll();
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2025-10-08 15:26:45 +02:00
|
|
|
|
Result res = game.play(Character.toLowerCase(text.charAt(0)));
|
2025-10-08 16:15:19 +02:00
|
|
|
|
if (res == Result.ALREADY) showMsg("Lettre déjà utilisée.");
|
2025-10-08 15:26:45 +02:00
|
|
|
|
input.setText("");
|
|
|
|
|
|
refreshUI();
|
|
|
|
|
|
checkEnd();
|
|
|
|
|
|
}
|
2025-10-08 11:57:29 +02:00
|
|
|
|
|
2025-10-08 17:02:53 +02:00
|
|
|
|
/** Fin du mot → affiche popup et enchaîne (lvl 3 cumule score/chrono). */
|
2025-10-08 15:26:45 +02:00
|
|
|
|
private void checkEnd() {
|
2025-10-08 16:15:19 +02:00
|
|
|
|
if (!(game.isWin() || game.isLose())) return;
|
|
|
|
|
|
|
|
|
|
|
|
game.end(game.isWin());
|
2025-10-08 17:02:53 +02:00
|
|
|
|
int displayScore = (level == 3) ? sessionScore + game.getScore() : game.getScore();
|
|
|
|
|
|
long displaySecs = (level == 3) ? getSessionSeconds() : game.getElapsedSeconds();
|
|
|
|
|
|
|
|
|
|
|
|
showMsg((game.isWin() ? "Bravo !" : "Perdu !")
|
|
|
|
|
|
+ " Le mot était : " + currentWord
|
|
|
|
|
|
+ "\nScore : " + displayScore
|
|
|
|
|
|
+ "\nTemps : " + displaySecs + "s");
|
2025-10-08 16:15:19 +02:00
|
|
|
|
|
|
|
|
|
|
if (level == 3 && index < words.size()) {
|
2025-10-08 17:02:53 +02:00
|
|
|
|
sessionScore += game.getScore();
|
2025-10-08 16:15:19 +02:00
|
|
|
|
startRound();
|
2025-10-08 17:02:53 +02:00
|
|
|
|
} else {
|
|
|
|
|
|
timer.stop();
|
2025-10-08 11:57:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-08 17:02:53 +02:00
|
|
|
|
/** Refresh complet. */
|
2025-10-08 11:57:29 +02:00
|
|
|
|
private void refreshUI() {
|
|
|
|
|
|
imgLabel.setIcon(Gallows.icon(game.getErrors()));
|
|
|
|
|
|
wordLabel.setText("Mot : " + game.maskedWord());
|
|
|
|
|
|
triedLabel.setText("Lettres essayées : " + String.join(", ", game.triedLetters()));
|
2025-10-08 15:26:45 +02:00
|
|
|
|
refreshStatsOnly();
|
2025-10-08 11:57:29 +02:00
|
|
|
|
frame.repaint();
|
|
|
|
|
|
}
|
2025-10-08 15:26:45 +02:00
|
|
|
|
|
2025-10-08 17:02:53 +02:00
|
|
|
|
/** Refresh stats (score/chrono). */
|
2025-10-08 15:26:45 +02:00
|
|
|
|
private void refreshStatsOnly() {
|
2025-10-08 17:02:53 +02:00
|
|
|
|
int s = (level == 3) ? sessionScore + game.getScore() : game.getScore();
|
|
|
|
|
|
long t = (level == 3) ? getSessionSeconds() : game.getElapsedSeconds();
|
|
|
|
|
|
scoreLabel.setText("Score : " + s);
|
|
|
|
|
|
timeLabel.setText("Temps : " + t + "s");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Secondes écoulées depuis le début de la session (niveau 3). */
|
|
|
|
|
|
private long getSessionSeconds() {
|
|
|
|
|
|
long now = System.nanoTime();
|
|
|
|
|
|
long delta = now - sessionStartNano;
|
|
|
|
|
|
if (delta < 0) delta = 0;
|
|
|
|
|
|
return delta / 1_000_000_000L;
|
2025-10-08 15:26:45 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-08 17:02:53 +02:00
|
|
|
|
/** Popup info. */
|
2025-10-08 15:26:45 +02:00
|
|
|
|
private void showMsg(String msg) {
|
|
|
|
|
|
JOptionPane.showMessageDialog(frame, msg);
|
|
|
|
|
|
}
|
2025-10-08 16:20:13 +02:00
|
|
|
|
}
|
2025-10-08 17:53:03 +02:00
|
|
|
|
|