@ -91,9 +91,9 @@ class UtilisateurGateway
$this->con->executeQuery($query, array(
':emailUtilisateur' => array($emailUtilisateur,SQLITE3_TEXT)
));
$idPartie=$this->con->getResults()[0];
$idPartie=$this->con->getResults()[0]["partie"] ;
$query="SELECT e.id FROM Resoudre r, Contenir c1,Contenir c2, Enigme e WHERE
$query="SELECT e.id, c2.indexEnigme FROM Resoudre r, Contenir c1,Contenir c2, Enigme e WHERE
r.id = :idPartie
AND r.joueur=:idJoueur
AND r.partie=:idPartie
@ -104,29 +104,94 @@ class UtilisateurGateway
AND r.temps = (SELECT max(r.temps))";
$results=$this->con->getResults();
if(empty($results))
$query="SELECT enigme FROM Contenir WHERE
{
$query="SELECT c.enigme, c.indexEnigme FROM Contenir c WHERE
c.partie = :idPartie
AND c.indexEnigme = 0";
$results=$this->con->getResults();
$idEnigme=$results[0];
}
$idEnigme=$results[0]["enigme"];
$index=$results[0]["indexEnigme"];
$query="SELECT max(classement) FROM Enigme e,Partie p, Resoudre r
WHERE p.id=r.partie;
WHERE p.id=r.partie
AND e.id=r.enigme";
$this->con->executeQuery($query);
$results=$this->con->getResults();
if(empty($results))
$classement=1;
else
$classement=$results[0]+1;
$classement=$results[0]["max"]+1;
$query="SELECT * FROM Resoudre
WHERE r.joueur=:joueur
AND r.enigme=:idEnigme
AND r.partie=:idPartie";
$this->con->executeQuery($query, array(
"joueur" => array($emailUtilisateur, SQLITE3_TEXT),
"enigme" => array($idEnigme, SQLITE3_INTEGER),
"partie" => array($idPartie, SQLITE3_INTEGER)));
$results=$this->con->getResults();
if(empty($results))
{
$query="INSERT INTO Resoudre VALUES (:joueur, :enigme,:partie,:classement,:index,:temps,TRUE)";
$this->con->executeQuery($query, array(
"joueur" => array($emailUtilisateur, SQLITE3_TEXT),
"enigme" => array($idEnigme, SQLITE3_INTEGER),
"partie" => array($idPartie, SQLITE3_INTEGER),
"classement" => array($classement, SQLITE3_INTEGER),
"index" => array($index, SQLITE3_INTEGER),
"temps" => array($emailUtilisateur, SQLITE3_FLOAT)));
}
else
{
$query="UPDATE Resoudre
SET classement=:classement;
WHERE joueur=:joueur
AND enigme=:idEnigme
AND partie=:idPartie";
$this->con->executeQuery($query, array(
"joueur" => array($emailUtilisateur, SQLITE3_TEXT),
"enigme" => array($idEnigme, SQLITE3_INTEGER),
"partie" => array($idPartie, SQLITE3_INTEGER),
"classement" => array($classement, SQLITE3_INTEGER)));
}
}
public function passerEnigmeMulti(string $emailUtilisateur){
$query="SELECT p.partie FROM Participer
WHERE p.joueur = :emailUtilisateur
and p.enCours = TRUE";
$this->con->executeQuery($query, array(
':emailUtilisateur' => array($emailUtilisateur,SQLITE3_TEXT)
));
$idPartie=$this->con->getResults()[0]["partie"];
$query="SELECT e.id, c2.indexEnigme FROM Resoudre r, Contenir c1,Contenir c2, Enigme e WHERE
r.id = :idPartie
AND r.joueur=:idJoueur
AND r.partie=:idPartie
AND r.temps IS NOT NULL
AND c1.partie = r.partie
AND c2.index=c1.index + 1
AND e.id = c1.enigme
AND r.temps = (SELECT max(r.temps))";
$results=$this->con->getResults();
if(empty($results))
$query="SELECT c.enigme, c.indexEnigme FROM Contenir c WHERE
c.partie = :idPartie
AND c.indexEnigme = 0";
$results=$this->con->getResults();
$idEnigme=$results[0]["enigme"];
$index=$results[0]["indexEnigme"];
$query="INSERT INTO Resoudre VALUES (:joueur, :enigme,:partie,:classement,:index,:temps,TRUE)";
$this->con->executeQuery($query, array(
"joueur" => array($emailUtilisateur, SQLITE3_TEXT),
"enigme" => array($idEnigme, SQLITE3_TEXT),
"partie" => array($idPartie, SQLITE3_TEXT),
"classement" => array($classement, SQLITE3_INTEGER),
"index" => array(, SQLITE3_INTEGER),
"enigme" => array($idEnigme, SQLITE3_INTEGER ),
"partie" => array($idPartie, SQLITE3_INTEGER ),
"classement" => array(NULL, SQLITE3_NULL ),
"index" => array($index , SQLITE3_INTEGER),
"temps" => array($emailUtilisateur, SQLITE3_FLOAT)));
}