Skip to content

Latest commit

 

History

History
61 lines (41 loc) · 1.98 KB

README.md

File metadata and controls

61 lines (41 loc) · 1.98 KB

Linux OSX Windows

Cryo dune reverse engineering

Fiddling with Cryo dune (CD Version) for fun:

SHA256 signature of supported dncdprg.exe: 5f30aeb84d67cf2e053a83c09c2890f010f2e25ee877ebec58ea15c5b30cfff9

The CD release of DUNE (version 3.7, the most widely available one), must be downloaded separately, as it is copyrighted material.

This projects requires the .NET 8 SDK.

Download

See the releases section.

The CD release of DUNE (version 3.7, the most widely available one), must be downloaded separately, as it is copyrighted material.

Status

Thanks to the hybrid ASM / .NET mode provided by Spice86, the game is fully playable, including sound and music.

The goal is to have more and more logic written in human readable C#.

Build & Run

Running it

To run it, just run the project with dune CD exe in parameter:

git clone https://github.com/OpenRakis/Crygenic
cd Cryogenic/src
dotnet run --Exe C:/path/to/dunecd/DNCDPRG.EXE --UseCodeOverride true

Running it with music and sound effetcs enabled:

Example with Adlib music:

cd Cryogenic/src
dotnet run --Exe C:/path/to/dunecd/DNCDPRG.EXE --UseCodeOverride true -a "ADL220 SBP2227"

Building it

  • Clone this repo, and build it:
git clone https://github.com/OpenRakis/Crygenic
cd Cryogenic/src
dotnet build