
Reverse engineering di BattleTech: The Crescent Hawk's Inception
Analisi di reverse engineering e ricostruzione in Godot 4 + C# di BattleTech: The Crescent Hawk's Inception, il gioco MS-DOS del 1988 di Infocom.
├── docs/ # RE documentation & findings
│ ├── CONTEXT.md # Master context (1050+ lines)
│ ├── TECHNICAL_ANALYSIS.md # Comprehensive technical analysis (3211 lines)
│ ├── MEMORY_MAP.md # Full memory map (603 lines)
│ ├── ADDRESS_REFERENCE.md # Address reference (1035 lines)
│ ├── BLD_BYTECODE.md # BLD bytecode specification (342 lines)
│ ├── WORLD_MAP_FINDINGS.md # World map analysis (321 lines)
│ ├── REBUILD_PLAN.md # Godot rebuild plan
│ ├── REBUILD_ROADMAP.md # Rebuild roadmap
│ └── STORY_TEXT.txt # Extracted full story text
│
├── tools/ # Python analysis tools
│ ├── bld/ # BLD script tools (decoder, converter, viewer)
│ ├── assets/ # Asset extraction & rendering tools
│ └── analysis/ # RE analysis tools
│
├── reko/ # Reko decompiler output
│ ├── UNBTECH.exe.c # Full C decompilation (2MB)
│ ├── UNBTECH.exe.h # Header with struct definitions
│ ├── UNBTECH_all.asm # Combined disassembly (60K lines)
│ └── segments/ # Per-segment .c/.asm/.dis files
│
├── asm/ # Assembly analysis
│ └── discoveries.asm # Manual analysis notes
│
├── json/ # BLD → JSON conversions (26 files)
│
├── spice86/ # Spice86 emulation outputs
│
├── BattleTechCHI/ # Godot 4 + C# rebuild
│
├── original/ # Original game assets (local only, not uploaded)
│ ├── bld/ cmp/ icn/ mtp/ anm/ saves/ exe/
│
├── extracted_assets/ # Rendered PPM/PNG from game assets
└── Assets/ # Converted sprite/tile sheets
La ricostruzione è in Fase 6 (integrazione ANM + ANM del combattimento). ~8.000 righe di C# in oltre 45 script in BattleTechCHI/Scripts/.
Emulatore Spice86 con 19 strumenti MCP specifici per BattleTech per l'introspezione a runtime dello stato di gioco:
# Start emulator with MCP server on port 8081
dotnet exec bin/Debug/net10.0/UNBATTLETECH.dll \
--Exe "/path/to/BTECH.EXE" \
--CDrive "/path/to/game/" \
--HeadlessMode Minimal --McpHttpPort 8081 --NoGui
# Read game state
curl -s -X POST http://localhost:8081/mcp/ \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"bt_get_state","arguments":{}}}'
# Convert BLD → JSON and back
python3 tools/bld/bld_json_converter.py to-json original/bld/
# Extract full story text
python3 tools/bld/extract_story.py
# Decode all BLD files with opcode analysis
python3 tools/bld/decode_bld.py
# ASCII terminal viewer for maps
python3 tools/bld/ascii_viewer.py
# Render CMP assets to PPM
python3 tools/assets/extract_assets.py
# Build C# rebuild
cd BattleTechCHI && dotnet build
# Build emulator
dotnet build UNBATTLETECH.csproj
Questo repository non contiene asset originali del gioco (BLD, CMP, EXE, ecc.). Sono inclusi solo analisi di reverse engineering, documentazione e codice sorgente originale per una ricostruzione clean-room. Gli asset originali del gioco rimangono in original/ solo per lo sviluppo locale (esclusi tramite gitignore).