2025-04-20 13:34:49 +02:00
|
|
|
# maze
|
|
|
|
|
2025-04-20 14:42:39 +02:00
|
|
|
Créateur et résolveur de labyrinthes.
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Lancez `main.py`.
|
|
|
|
|
|
|
|
## Fonctionnement
|
|
|
|
|
|
|
|
```mermaid
|
|
|
|
flowchart TD
|
|
|
|
sv["Liste les sauvegardes"]
|
|
|
|
ll["Charge un labyrinthe"]
|
|
|
|
cb["Compression au format binaire (Haussman)"]
|
|
|
|
start{"Démarrage"}
|
|
|
|
start --> sv
|
|
|
|
start --> Validation
|
|
|
|
start --> ll
|
|
|
|
Validation --> start
|
|
|
|
Validation --> Labyrinthe
|
|
|
|
ll --> Labyrinthe
|
|
|
|
Labyrinthe --> Textures
|
|
|
|
Labyrinthe --> Sauvegarde
|
|
|
|
Labyrinthe --> Resolution
|
|
|
|
Resolution --> Labyrinthe
|
|
|
|
Labyrinthe --> start
|
|
|
|
Sauvegarde --> cb
|
|
|
|
Resolution --> Pile
|
|
|
|
```
|