Spaces:
Sleeping
Sleeping
docs(readme): reflect new structure (tools/, docs/, tests/) and update links
Browse files
README.md
CHANGED
|
@@ -19,18 +19,18 @@ A faithful recreation of the classic Command & Conquer: Tiberium Dawn in **pure
|
|
| 19 |
```
|
| 20 |
web/
|
| 21 |
โโโ README.md # This file
|
| 22 |
-
โโโ app.py
|
| 23 |
-
โโโ start.py
|
| 24 |
-
โโโ localization.py
|
| 25 |
-
โโโ ai_analysis.py
|
| 26 |
-
โโโ backend/
|
| 27 |
-
โโโ frontend/
|
| 28 |
-
โโโ static/
|
| 29 |
-
โโโ docs/
|
| 30 |
-
|
|
|
|
| 31 |
```
|
| 32 |
|
| 33 |
-
**Legacy Pygame version:** See `../legacy/pygame/` (archived)
|
| 34 |
|
| 35 |
---
|
| 36 |
|
|
@@ -83,6 +83,15 @@ See **[tests/README.md](tests/README.md)** for usage guide.
|
|
| 83 |
|
| 84 |
---
|
| 85 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 86 |
## ๐ฎ Key Features
|
| 87 |
|
| 88 |
โ
**Real-Time Strategy Gameplay**
|
|
@@ -188,9 +197,7 @@ See **[tests/README.md](tests/README.md)** for all available tests.
|
|
| 188 |
- 4.7/5 context-adjusted score
|
| 189 |
- 3 aspects superior to Red Alert
|
| 190 |
|
| 191 |
-
See full comparisons
|
| 192 |
-
- **[../docs/WEB_VS_PYGAME_COMPARISON_UPDATED.md](../docs/WEB_VS_PYGAME_COMPARISON_UPDATED.md)**
|
| 193 |
-
- **[../docs/COMPARISON_WITH_RED_ALERT_UPDATED.md](../docs/COMPARISON_WITH_RED_ALERT_UPDATED.md)**
|
| 194 |
|
| 195 |
---
|
| 196 |
|
|
@@ -207,5 +214,4 @@ Inspired by **Command & Conquer: Tiberium Dawn** (Westwood Studios, 1995)
|
|
| 207 |
---
|
| 208 |
|
| 209 |
**๐ Full Documentation:** [docs/](docs/)
|
| 210 |
-
**๐งช Test Scripts:** [tests/](tests/)
|
| 211 |
-
**๐๏ธ Legacy Pygame Version:** [../legacy/pygame/](../legacy/pygame/)
|
|
|
|
| 19 |
```
|
| 20 |
web/
|
| 21 |
โโโ README.md # This file
|
| 22 |
+
โโโ app.py # FastAPI server & WebSocket
|
| 23 |
+
โโโ start.py # Server launcher
|
| 24 |
+
โโโ localization.py # Multi-language support
|
| 25 |
+
โโโ ai_analysis.py # AI engine
|
| 26 |
+
โโโ backend/ # Game logic
|
| 27 |
+
โโโ frontend/ # JavaScript game engine
|
| 28 |
+
โโโ static/ # Assets (images, sounds)
|
| 29 |
+
โโโ docs/ # ๐ Documentation
|
| 30 |
+
โโโ tests/ # ๐งช Test scripts
|
| 31 |
+
โโโ tools/ # ๐ ๏ธ Dev/debug/ops scripts
|
| 32 |
```
|
| 33 |
|
|
|
|
| 34 |
|
| 35 |
---
|
| 36 |
|
|
|
|
| 83 |
|
| 84 |
---
|
| 85 |
|
| 86 |
+
## ๐ ๏ธ Outils (dev/debug/ops)
|
| 87 |
+
|
| 88 |
+
Les scripts utilitaires sont dans **[tools/](tools/)**:
|
| 89 |
+
- `tools/debug_ai.py` โ Utilitaires de dรฉbogage AI
|
| 90 |
+
- `tools/local_run.sh` โ Lancement local pratique
|
| 91 |
+
- `tools/deploy_hf_spaces.sh` โ Dรฉploiement vers Hugging Face Spaces
|
| 92 |
+
|
| 93 |
+
---
|
| 94 |
+
|
| 95 |
## ๐ฎ Key Features
|
| 96 |
|
| 97 |
โ
**Real-Time Strategy Gameplay**
|
|
|
|
| 197 |
- 4.7/5 context-adjusted score
|
| 198 |
- 3 aspects superior to Red Alert
|
| 199 |
|
| 200 |
+
See full comparisons inside docs/ (if present).
|
|
|
|
|
|
|
| 201 |
|
| 202 |
---
|
| 203 |
|
|
|
|
| 214 |
---
|
| 215 |
|
| 216 |
**๐ Full Documentation:** [docs/](docs/)
|
| 217 |
+
**๐งช Test Scripts:** [tests/](tests/)
|
|
|