Luigi commited on
Commit
5e04a3f
ยท
1 Parent(s): b6dace6

docs(readme): reflect new structure (tools/, docs/, tests/) and update links

Browse files
Files changed (1) hide show
  1. README.md +21 -15
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 # 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/ # ๐Ÿ“š Complete documentation (28 files)
30
- โ””โ”€โ”€ tests/ # ๐Ÿงช Test scripts (4 files)
 
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/)