Modern open-source C# .NET 10 Asheron's Call client. Faithful port of retail client behaviour to Silk.NET with a plugin API.
Previous cellId-mask fix was necessary but insufficient: the engine correctly identified the player as outdoor, but then immediately transitioned to an indoor cell because a CellSurface floor polygon covered the player's XY at a Z within stepUpHeight. The floor polygon was a roof or upper floor of a nearby building that happens to sit at terrain level — not a walkable indoor floor the player should snap to. Fix: outdoor→indoor transition now requires bestCellZ < terrainZ - 1. A genuine indoor transition is into a cell whose floor is BELOW the terrain surface (basement, ground floor of elevated building). Cells at or above terrain Z are roofs/upper floors viewed from outside and must not capture the player. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> |
||
|---|---|---|
| docs | ||
| src | ||
| tests | ||
| .gitignore | ||
| AcDream.slnx | ||
| CLAUDE.md | ||
| README.md | ||
acdream
Experimental modern open-source Asheron's Call client in C# / .NET 10.
Status: pre-alpha, not playable. Phase 0 only — dat file asset inventory.
Stack: .NET 10, Chorizite.DatReaderWriter for dat parsing. Silk.NET + Avalonia planned for rendering/UI (not yet wired up).
Requires: A retail Asheron's Call install (Turbine/Microsoft property — supply your own). Set ACDREAM_DAT_DIR environment variable to the directory containing client_portal.dat, client_cell_1.dat, client_highres.dat, and client_local_English.dat, or pass it as the first CLI argument.
Layout
src/AcDream.Cli/— console app that dumps asset counts from a dat directoryreferences/— local read-only reference material (ACE, ACViewer, WorldBuilder, DatReaderWriter, holtburger, retail AC install). Gitignored.
Run
dotnet run --project src/AcDream.Cli -- "C:\path\to\Asheron's Call"
Or set ACDREAM_DAT_DIR and run without args.