référenement des labels

This commit is contained in:
2025-12-05 21:22:52 +01:00
parent 459c0e9ed2
commit cd3946aeeb
2 changed files with 207 additions and 184 deletions

View File

@@ -20,19 +20,20 @@ function explode_pos(string $separator, string $string): array {
$mots = [];
$mot = "";
$longueur = strlen($string);
$debut = 0;
for ($i = 0; $i < $longueur; $i++) {
$lettre = $string[$i];
if ($lettre == $separator) {
$mots[$i] = $mot;
$mots[] = ["mot" => $mot, "debut" => $debut, "fin" => $i - 1, "longueur" => $i - $debut];
$mot = "";
$debut = $i + 1;
} else {
$mot .= $lettre;
}
}
$mots[$i] = $mot;
$mots[] = ["mot" => $mot, "debut" => $debut, "fin" => $longueur - 1, "longueur" => $longueur - $debut];
return $mots;
}
@@ -101,29 +102,35 @@ class Grille implements ArrayAccess
for ($y = 0; $y < $this->hauteur; $y++) {
$mots = explode_pos(CASE_NOIRE, $this->get_ligne($y, $this->largeur));
$this->definitions["horizontales"][$y] = [];
foreach($mots as $fin => $mot) {
$definitions = $this->dico[strlen($mot)][$mot];
foreach($mots as $mot) {
$definitions = $this->dico[$mot["longueur"]][$mot["mot"]];
if (count($definitions)) {
$definition = $definitions[mt_rand(0, count($definitions) - 1)];
if (isset($definition[DEFINITION])) $mot["definition"] = $definition[DEFINITION];
if (isset($definition[AUTEUR])) $mot["auteur"] = $definition[AUTEUR];
}
if (isset($definitions["nb_mots"])) {
$definition["nb_mots"] = $definitions["nb_mots"];
}
$this->definitions["horizontales"][$y][$fin] = $definition;
$mot["nb_mots"] = $definitions["nb_mots"];
}
unset($mot["mot"]);
$this->definitions["horizontales"][$y][] = $mot;
}
}
for ($x = 0; $x < $this->largeur; $x++) {
$mots = explode_pos(CASE_NOIRE, $this->get_colonne($x, $this->hauteur));
$this->definitions["verticales"][$x] = [];
foreach($mots as $fin => $mot) {
$definitions = $this->dico[strlen($mot)][$mot];
foreach($mots as $mot) {
$definitions = $this->dico[$mot["longueur"]][$mot["mot"]];
if (count($definitions)) {
$definition = $definitions[mt_rand(0, count($definitions) - 1)];
if (isset($definition[DEFINITION])) $mot["definition"] = $definition[DEFINITION];
if (isset($definition[AUTEUR])) $mot["auteur"] = $definition[AUTEUR];
}
if (isset($definitions["nb_mots"])) {
$definition["nb_mots"] = $definitions["nb_mots"];
}
$this->definitions["verticales"][$x][$fin] = $definition;
$mot["nb_mots"] = $definitions["nb_mots"];
}
unset($mot["mot"]);
$this->definitions["verticales"][$x][] = $mot;
}
}
$this->save($id);

194
index.php
View File

@@ -1,4 +1,7 @@
<?php
ini_set('display_errors', '1');
ini_set('display_startup_errors', '1');
error_reporting(E_ALL);
include_once "Grille.php";
@@ -27,7 +30,7 @@ $largeur = filter_input(INPUT_GET, 'colonnes', FILTER_VALIDATE_INT, [
]);
$grille = new Grille($hauteur, $largeur);
$basedir = $_SERVER["REQUEST_SCHEME"]."://".$_SERVER["HTTP_HOST"].dirname($_SERVER["DOCUMENT_URI"]);
$basedir = $_SERVER["REQUEST_SCHEME"] . "://" . $_SERVER["HTTP_HOST"] . dirname($_SERVER["DOCUMENT_URI"]);
if (!isset($_GET["grille"]) || $_GET["grille"] == "") {
do {
@@ -43,65 +46,57 @@ if (!isset($_GET["grille"]) || $_GET["grille"] == "") {
}
function formatter_definition($definition) {
if (isset($definition["nb_mots"]) && $definition["nb_mots"] > 1){
if (isset($definition["nb_mots"]) && $definition["nb_mots"] > 1) {
$nb_mots = $definition["nb_mots"];
$nb_mots = " <small>($nb_mots mots)</small>";
} else {
$nb_mots = "";
}
if (array_key_exists(AUTEUR, $definition)) {
$auteur = $definition[AUTEUR];
if (isset($definition["auteur"])) {
$auteur = $definition["auteur"];
$auteur = " <small><em>$auteur</em></small>";
} else {
$auteur = "";
}
return ucfirst($definition[DEFINITION]) . $nb_mots . $auteur;
return ucfirst($definition["definition"]) . $nb_mots . $auteur;
}
function mot_courant($mots, $position) {
foreach ($mots as $fin => $mot) {
if ($position <= $fin) return $mot;
function definition_courante($definitions, $position) {
foreach ($definitions as $id => $definition) {
if ($position <= $definition["fin"])
return [$id, $definition];
}
return [];
}
function debuts($definitions) {
$debut = 0;
$retour = [];
foreach ($definitions as $fin => $definition) {
if ($fin - $debut > 1) {
$retour[$debut] = $definition;
}
$debut = $fin + 1;
}
return $retour;
}
?>
<!DOCTYPE HTML>
<html lang="fr-FR" dir="ltr" prefix="og: https://ogp.me/ns#">
<head>
<head>
<meta charset="utf-8">
<title>🄼🄾🅃🅂▣🄲🅁🄾🄸🅂🄴🅂</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.ico" />
<link rel="icon" type="image/svg+xml" href="apercu.svg.php?grille=<?=$id?>&lignes=<?=$hauteur?>&colonnes=<?=$largeur?>">
<link rel="icon" type="image/png" sizes="96x96" href="apercu.png.php?grille=<?=$id?>&lignes=<?=$hauteur?>&colonnes=<?=$largeur?>&largeur=96&hauteur=96" />
<link rel="icon" type="image/svg+xml"
href="apercu.svg.php?grille=<?= $id ?>&lignes=<?= $hauteur ?>&colonnes=<?= $largeur ?>">
<link rel="icon" type="image/png" sizes="96x96"
href="apercu.png.php?grille=<?= $id ?>&lignes=<?= $hauteur ?>&colonnes=<?= $largeur ?>&largeur=96&hauteur=96" />
<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="🄼🄾🅃🅂 🄲🅁🄾🄸🅂🄴🅂" />
<link rel="manifest" href="site.webmanifest" />
<meta property="og:title" content="🄼🄾🅃🅂▣🄲🅁🄾🄸🅂🄴🅂"/>
<meta property="og:type" content="game"/>
<meta property="og:url" content="<?=$basedir?>"/>
<meta property="og:image" content="<?=$basedir?>/apercu.png.php?grille=<?=$id?>&lignes=<?=$hauteur?>&colonnes=<?=$largeur?>&largeur=1200&hauteur=630"/>
<meta property="og:image:width" content="1200"/>
<meta property="og:image:height" content="630"/>
<meta property="og:locale" content="fr_FR"/>
<meta property="og:site_name" content="<?=$_SERVER["HTTP_HOST"]?>"/>
</head>
<meta property="og:title" content="🄼🄾🅃🅂▣🄲🅁🄾🄸🅂🄴🅂" />
<meta property="og:type" content="game" />
<meta property="og:url" content="<?= $basedir ?>" />
<meta property="og:image"
content="<?= $basedir ?>/apercu.png.php?grille=<?= $id ?>&lignes=<?= $hauteur ?>&colonnes=<?= $largeur ?>&largeur=1200&hauteur=630" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:locale" content="fr_FR" />
<meta property="og:site_name" content="<?= $_SERVER["HTTP_HOST"] ?>" />
</head>
<body>
<body>
<form id="grilleForm" method="get" location=".">
<h1 class="large width">
<a href=".">
@@ -134,118 +129,139 @@ function debuts($definitions) {
</h1>
<h1 class="small width"><a href=".">Mots■croisés</a></h1>
<div class="grille-et-definitions">
<?php if ($grille_valide): ?>
<?php if ($grille_valide): ?>
<div class="grille">
<table>
<tr>
<th></th>
<?php for ($x = 0; $x < $largeur; $x++): ?>
<?php for ($x = 0; $x < $largeur; $x++): ?>
<th><?= chr($x + 65) ?></th>
<?php endfor; ?>
<?php endfor; ?>
<th></th>
</tr>
<?php for ($y = 0; $y < $hauteur; $y++): ?>
<?php for ($y = 0; $y < $hauteur; $y++): ?>
<tr>
<th><?= $y + 1 ?></th>
<?php for ($x = 0; $x < $largeur; $x++): ?>
<?php if ($grille[$y][$x] == CASE_NOIRE): ?>
<?php for ($x = 0; $x < $largeur; $x++): ?>
<?php if ($grille[$y][$x] == CASE_NOIRE): ?>
<td class="case noire">
<input id="<?= chr($x + 65) . ($y + 1) ?>" type="text" maxlength="1" size="1" value="<?= CASE_NOIRE ?>" disabled />
<input id="<?= chr($x + 65) . ($y + 1) ?>" type="text" maxlength="1" size="1"
value="<?= CASE_NOIRE ?>" disabled />
</td>
<?php else: ?>
<?php else: ?>
<td class="case blanche">
<?php
<?php
$title = [];
$definition_horizontale = mot_courant($grille->definitions["horizontales"][$y], $x);
$definition_verticale = mot_courant($grille->definitions["verticales"][$x], $y);
if (isset($definition_horizontale[0])) $title[0] = "→ " . $definition_horizontale[0];
if (isset($definition_horizontale[1])) $title[0] .= " (" . $definition_horizontale[1] . ")";
if (isset($definition_verticale[0])) $title[1] = "↓ " . $definition_verticale[0];
if (isset($definition_verticale[1])) $title[1] .= " (" . $definition_verticale[1] . ")";
[$iddh, $definition_horizontale] = definition_courante($grille->definitions["horizontales"][$y], $x);
[$iddv, $definition_verticale] = definition_courante($grille->definitions["verticales"][$x], $y);
if (isset($definition_horizontale["definition"]))
$title[0] = " " . $definition_horizontale["definition"];
if (isset($definition_horizontale["nb_mots"]))
$title[0] .= " (" . $definition_horizontale["nb_mots"] . ")";
if (isset($definition_horizontale["auteur"]))
$title[0] .= " (" . $definition_horizontale["auteur"] . ")";
if (isset($definition_verticale["definition"]))
$title[1] = "↓ " . $definition_verticale["definition"];
if (isset($definition_verticale["nb_mots"]))
$title[0] .= " (" . $definition_verticale["nb_mots"] . ")";
if (isset($definition_verticale["auteur"]))
$title[1] .= " (" . $definition_verticale["auteur"] . ")";
$title = htmlspecialchars(implode("\n", $title));
?>
<input id="<?= chr($x + 65) . ($y + 1) ?>" type="text" maxlength="1" size="1" pattern="[A-Z]"
title="<?=$title?>" />
?>
<input id="case-<?= chr($x + 65) . ($y + 1) ?>" type="text" maxlength="1" size="1"
pattern="[A-Z]" title="<?= $title ?>"
data-iddh="<?= isset($definition_horizontale["definition"])? "dh$y.$iddh" : "" ?>"
data-iddv="<?= isset($definition_verticale["definition"])? "dh$x.$iddv" : "" ?>"
/>
</td>
<?php endif; ?>
<?php endfor; ?>
<?php endif; ?>
<?php endfor; ?>
</tr>
<?php endfor; ?>
<?php endfor; ?>
</table>
</div>
<div class="definitions horizontales">
<h2>Horizontalement</h2>
<ol type="1">
<?php
foreach ($grille->definitions["horizontales"] as $y => $definitions):
$definitions = debuts($definitions);
?>
<?php foreach ($grille->definitions["horizontales"] as $y => $definitions):
$definitions = array_filter($definitions, function($definition) {
return isset($definition["definition"]);
});
?>
<li>
<?php if (count($definitions)): ?>
<?php if (count($definitions) == 1): ?>
<label for="A<?=$y + 1?>">
<?= formatter_definition(reset($definitions)) ?>
<?php if (count($definitions)): ?>
<?php if (count($definitions) == 1): ?>
<?php foreach ($definitions as $id => $definition): ?>
<label id="<?= "dh$y.$id" ?>" for="case-1<?= $y + 1 ?>">
<?= formatter_definition($definition) ?>
</label>
<?php else: ?>
<?php endforeach ?>
<?php else: ?>
<ol>
<?php foreach ($definitions as $debut => $definition) : ?>
<label for="<?=chr($debut + 0x41)?><?=$y + 1?>">
<?php foreach ($definitions as $id => $definition): ?>
<label id="<?= "dh$y.$id" ?>" for="case-<?= chr($definition["debut"] + 0x41) ?><?= $y + 1 ?>">
<li><?= formatter_definition($definition) ?></li>
</label>
<?php endforeach ?>
<?php endforeach ?>
</ol>
<?php endif ?>
<?php endif ?>
<?php endif ?>
<?php endif ?>
</li>
<?php endforeach; ?>
<?php endforeach ?>
</ol>
</div>
<div class="definitions verticales">
<h2>Verticalement</h2>
<ol type="A">
<?php
foreach ($grille->definitions["verticales"] as $x => $definitions):
$definitions = debuts($definitions);
?>
<?php foreach ($grille->definitions["verticales"] as $x => $definitions):
$definitions = array_filter($definitions, function($definition) {
return isset($definition["definition"]);
});
?>
<li>
<?php if (count($definitions)): ?>
<?php if (count($definitions) == 1): ?>
<label for="<?=chr($x + 0x41)?>1">
<?= formatter_definition(reset($definitions)) ?>
<?php if (count($definitions)): ?>
<?php if (count($definitions) == 1): ?>
<?php foreach ($definitions as $id => $definition): ?>
<label id="<?= "dv$x.$id" ?>" for="case-<?= chr($x + 0x41) ?>1">
<?= formatter_definition($definition) ?>
</label>
<?php else: ?>
<?php endforeach ?>
<?php else: ?>
<ol>
<?php foreach ($definitions as $debut => $definition) : ?>
<label for="<?=chr($x + 0x41)?><?=$debut + 1?>">
<?php foreach ($definitions as $id => $definition): ?>
<label id="<?= "dv$x.$id" ?>" for="case-<?= chr($x + 0x41) ?><?= $definition["debut"] + 1 ?>">
<li><?= formatter_definition($definition) ?></li>
</label>
<?php endforeach ?>
<?php endforeach ?>
</ol>
<?php endif ?>
<?php endif ?>
<?php endif ?>
<?php endif ?>
</li>
<?php endforeach; ?>
<?php endforeach ?>
</ol>
</div>
<input type="hidden" id="solution_hashee" value="<?= $grille->hash() ?>" />
<?php else: http_response_code(500); ?>
<?php else:
http_response_code(500); ?>
<h3 class="erreur">Erreur de génération de la grille</h3>
<?php endif ?>
<?php endif ?>
</div>
<div class="nouvelle-grille">
<img src="favicons/favicon.svg" width="16" height="16">
<button type="submit">Nouvelle grille</button>
de
<input type="number" id="lignes"<?= isset($_GET["lignes"])? ' name="lignes"': "" ?> value="<?= $hauteur ?>" min="<?=HAUTEUR_MIN?>" max="<?=HAUTEUR_MAX?>"/>
<input type="number" id="lignes" <?= isset($_GET["lignes"]) ? ' name="lignes"' : "" ?>
value="<?= $hauteur ?>" min="<?= HAUTEUR_MIN ?>" max="<?= HAUTEUR_MAX ?>" />
lignes et
<input type="number" id="colonnes"<?= isset($_GET["colonnes"])? ' name="colonnes"': "" ?> value="<?= $largeur ?>" min="<?=LARGEUR_MIN?>" max="<?=LARGEUR_MAX?>"/>
<input type="number" id="colonnes" <?= isset($_GET["colonnes"]) ? ' name="colonnes"' : "" ?>
value="<?= $largeur ?>" min="<?= LARGEUR_MIN ?>" max="<?= LARGEUR_MAX ?>" />
colonnes
</div>
</form>
<script src="script.js"></script>
<script>navigator?.serviceWorker.register('service-worker.js')</script>
</body>
</body>
</html>