sauvegarde

This commit is contained in:
Adrien MALINGREY 2025-05-05 20:02:56 +02:00
parent 7ae6506539
commit 1a35d8e920
2 changed files with 77 additions and 53 deletions

View File

@ -2,26 +2,22 @@
include_once "dico.php"; include_once "dico.php";
class Grille implements Iterator, ArrayAccess { class Grille implements ArrayAccess {
public $grille; public $grille;
public $hauteur; public $hauteur;
public $largeur; public $largeur;
private $grilles;
private $lettres_suivantes; private $lettres_suivantes;
private $positions; private $positions;
private $nb_positions; private $nb_positions;
public $lignes; public $lignes = [];
public $colonnes; public $colonnes = [];
public $valide = false;
public function __construct($hauteur, $largeur, $id = "") public function __construct($hauteur, $largeur)
{ {
$this->hauteur = $hauteur; $this->hauteur = $hauteur;
$this->largeur = $largeur; $this->largeur = $largeur;
$this->grille = array_fill(0, $hauteur, array_fill(0, $largeur, '')); $this->grille = array_fill(0, $hauteur, array_fill(0, $largeur, ''));
$this->lignes = [];
$this->colonnes = [];
$this->lettres_suivantes = tries(max($hauteur, $largeur));
$this->positions = []; $this->positions = [];
for ($y = 0; $y < $hauteur; $y++) { for ($y = 0; $y < $hauteur; $y++) {
@ -30,8 +26,15 @@ class Grille implements Iterator, ArrayAccess {
} }
$this->nb_positions = count($this->positions); $this->nb_positions = count($this->positions);
mt_srand($id == "" ? null : crc32($id)); $this->lettres_suivantes = tries(max($hauteur, $largeur));
$this->grilles = $this->gen_grilles(); }
public function genere($id) {
mt_srand(crc32($id));
$grilles = $this->gen_grilles();
$grilles->current();
return $grilles->valid();
} }
public function get_ligne($y, $largeur) public function get_ligne($y, $largeur)
@ -52,11 +55,6 @@ class Grille implements Iterator, ArrayAccess {
public function gen_grilles($i = 0, $lettres_suivantes_ligne = NULL) public function gen_grilles($i = 0, $lettres_suivantes_ligne = NULL)
{ {
if ($i == $this->nb_positions) {
yield $this;
return;
}
[$x, $y] = $this->positions[$i]; [$x, $y] = $this->positions[$i];
if ($x == 0) { if ($x == 0) {
@ -101,7 +99,7 @@ class Grille implements Iterator, ArrayAccess {
$this->colonnes[$x] = []; $this->colonnes[$x] = [];
} }
if ($i < $this->nb_positions) { if ($i < $this->nb_positions - 1) {
yield from $this->gen_grilles($i + 1, $lettres_suivantes_ligne->noeud[$lettre]); yield from $this->gen_grilles($i + 1, $lettres_suivantes_ligne->noeud[$lettre]);
} else { } else {
yield $this; yield $this;
@ -117,28 +115,51 @@ class Grille implements Iterator, ArrayAccess {
return hash('sha256', $string); return hash('sha256', $string);
} }
public function current(): mixed public function save() {
{ session_start();
return $this->grilles->current();
$_SESSION["$this->largeur;$this->hauteur;$id"] = implode(
"",
array_map(
function ($ligne) {
implode("", $ligne);
},
$this->grille
)
);
} }
public function key(): mixed { public function load($id) {
return $this->grilles->key(); session_start();
if (!isset($_SESSION["$this->largeur;$this->hauteur;$id"])) {
return false;
}
foreach (str_split( $_SESSION["$this->largeur;$this->hauteur;$id"], $this->largeur) as $y => $ligne) {
foreach(str_split($ligne) as $x => $lettre) {
$this->grille[$y][$x] = $lettre;
}
}
for ($y = 0; $y < $this->hauteur; $y++) {
$mots = explode(" ", $this->get_ligne($y, $this->largeur));
$this->lignes[$y] = array_filter($mots, function($mot) {
return strlen($mot) >= 2;
});
}
for ($x = 0; $x < $this->largeur; $x++) {
$mots = explode(" ", $this->get_colonne($x, $this->hauteur));
$this->colonnes[$y] = array_filter($mots, function($mot) {
return strlen($mot) >= 2;
});
}
return true;
} }
public function next(): void {
$this->grilles->next();
}
public function rewind(): void {
$this->grilles->rewind();
}
public function valid(): bool
{
return $this->grilles->valid();
}
public function offsetExists(mixed $offset): bool { public function offsetExists(mixed $offset): bool {
return isset($this->grille[$offset]); return isset($this->grille[$offset]);
} }
@ -154,5 +175,4 @@ class Grille implements Iterator, ArrayAccess {
public function offsetUnset(mixed $offset): void { public function offsetUnset(mixed $offset): void {
unset($this->grille[$offset]); unset($this->grille[$offset]);
} }
} }

View File

@ -1,13 +1,4 @@
<?php <?php
if (!isset($_GET["grille"])) {
$_GET["grille"] = uniqid();
header("Location: " . dirname($_SERVER['DOCUMENT_URI']) . "?" . http_build_query($_GET));
exit;
}
include_once "dico.php"; include_once "dico.php";
include_once "Grille.php"; include_once "Grille.php";
@ -36,12 +27,25 @@ $largeur = filter_input(INPUT_GET, 'colonnes', FILTER_VALIDATE_INT, [
] ]
]); ]);
$grille = new Grille($hauteur, $largeur);
if (!isset($_GET["grille"])) {
do {
$id = uniqid();
} while (!$grille->genere($id));
$grille->save();
$_GET["grille"] = $id;
header("Location: " . dirname($_SERVER['DOCUMENT_URI']) . "?" . http_build_query($_GET));
exit;
}
$id = htmlspecialchars($_GET["grille"]); $id = htmlspecialchars($_GET["grille"]);
$grille = new Grille($hauteur, $largeur, $id); $grille_valide = $grille->load($id) || $grille->genere($id);
$grille->current();
if ($grille->valid()) { if ($grille_valide) {
if (!isset($_GET["grille"])) { if (!isset($_GET["grille"])) {
$_GET["grille"] = $id; $_GET["grille"] = $id;
header("Location: " . dirname($_SERVER['DOCUMENT_URI']) . "?" . http_build_query($_GET)); header("Location: " . dirname($_SERVER['DOCUMENT_URI']) . "?" . http_build_query($_GET));
@ -75,7 +79,7 @@ if ($grille->valid()) {
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>□□□□■□□□□□□□</title> <title>MOTS■CROISES</title>
<link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="style.css">
<link rel="icon" href="favicon.svg"> <link rel="icon" href="favicon.svg">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
@ -110,9 +114,9 @@ if ($grille->valid()) {
</tbody> </tbody>
</table> </table>
</h1> </h1>
<h1 class="small width">Motscroisés</h1> <h1 class="small width">Motscroisés</h1>
<div class="grille-et-definitions"> <div class="grille-et-definitions">
<?php if ($grille->valid()): ?> <?php if ($grille_valide): ?>
<div class="grille"> <div class="grille">
<table> <table>
<tr> <tr>