package ste.jeux.pendu.servlet;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Vector;
import javax.servlet.ServletConfig;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import be.steformations.pendu.av.oldschool.Main1;
import be.steformations.pendu.av.oldschool.Pendu;
/**
* Pendu.java
*
*
* Created: Tue May 28 15:03:17 2002
*
* @author <a href="mailto:arnaud.vandyck@ulg.ac.be">Arnaud Vandyck</a>
* @version $Id: Pendu.java,v 1.1 2004/09/01 13:27:25 arnaud Exp $
*/
public class PenduServlet extends HttpServlet {
protected String uri = null;
protected ServletContext context = null;
public void init(ServletConfig conf) throws ServletException {
this.context = conf.getServletContext();
String fichier = conf.getInitParameter("liste");
this.context.log("Le fichier est: " + fichier);
this.context.log("Le nom du contexte: "
+ this.context.getServletContextName());
// this.uri = this.context.getRealPath( "/"+fichier );
this.uri = fichier;
this.context.log("Le fichier est à l'adresse: " + uri);
}
public void doGet(HttpServletRequest req, HttpServletResponse res)
throws ServletException, IOException {
res.setContentType("text/html");
PrintWriter out = res.getWriter();
out.println("<html><head><title>Le jeu du Pendu</title></head>");
out.println("<body><h1>Le jeu du Pendu</h1>");
HttpSession session = req.getSession(true);
Pendu pendu = (Pendu) session.getAttribute("pendu");
String[] recommencer = req.getParameterValues("recommencer");
String[] lettres = req.getParameterValues("lettre");
char lettre = 0;
if (lettres != null && lettres.length > 0) {
String l = lettres[0];
char[] le = l.toCharArray();
lettre = le[0];
}
if (recommencer != null && recommencer.length > 0
&& "true".equals((recommencer)[0])) {
pendu = null;
}
if (pendu == null) {
// try {
// pendu = new ste.pendu.Pendu( this.loadList( uri ) );
pendu = new Pendu(Main1.LISTEPENDU);
pendu.joue();
session.setAttribute("pendu", pendu);
this.affiche(out, pendu);
this.afficheLettres(out);
/*
* } catch( IOException iox ) { this.context.log( "Fichier: " + uri
* + " non trouv�" + iox.getMessage(), iox ); out.println(
* "Fichier: " + uri + " non trouv�<br>" + iox.getMessage() + "<br>"
* ); }
*/
} else {
this.affiche(out, pendu);
if (!pendu.gagne() && !pendu.perdu()) {
pendu.ajoute(lettre);
out.println("Il vous reste " + (7 - pendu.getErreurs())
+ " possibilit�(s) de vous tromper<br>");
this.afficheLettres(out);
} else if (pendu.gagne()) {
out.println("Vous avez gagn�!<br>");
} else {
out.println("Vous avez perdu! <br>");
}
}
out.println("Recommencer une <a href='Pendu?recommencer=true'>nouvelle</a> partie.<br>");
out.println("</body></html>");
out.flush();
out.close();
}
protected void affiche(PrintWriter out, Pendu pendu) throws IOException {
out.println("Le mot en cours: <br>"
+ (new String(pendu.getMotEnCours())) + "<br>");
out.println("Les lettres d�j� entr�es: <br>"
+ (new String(pendu.getLettresEntrees())) + "<br>");
out.println("Vous avez fait " + pendu.getErreurs() + " erreur(s)<br>");
}
protected void afficheLettres(PrintWriter out) throws IOException {
out.println("Cliquez sur une des lettres:<br>");
for (char c = 'a'; c <= 'z'; c++) {
out.println("<a href='Pendu?lettre=" + String.valueOf(c) + "'>"
+ String.valueOf(c) + "</a> - ");
}
out.println("<br>");
}
public String[] loadList(String uri) throws IOException {
try {
java.io.File f = new java.io.File(uri);
} catch (Exception e) {
this.context.log("Probl�me de chargement du fichier...", e);
}
String[] liste = null;
BufferedReader in = new BufferedReader(new FileReader(uri));
Vector v = new Vector();
String line = null;
while ((line = in.readLine()) != null) {
v.add(line);
}
liste = new String[v.size()];
liste = (String[]) v.toArray(liste);
return liste;
}
} // Pendu