Skip to content

danielgpinheiro/RSDKv3-xbox

 
 

Repository files navigation

A complete decompilation of Retro Engine v3.

About the project

  • This fork over the port for Original Xbox
  • This is Retro Engine v3, compatible with Sonic CD
  • To run this, you need the game's assets. Put legally obtained Data.rsdk in the root of the same folder where the .xbe executable is.

Original Xbox Controls

  • D-pad or Left Analog Stick - Movement
  • A Button - Jump
  • Start Button - Pause

To exit game, select the option on Main Menu, IGR combo buttons don't work here.

Recurring problems

  • Videos don't play.
  • Data.rsdk Mobile version not tested. Use the Steam version if any problems occur.
  • Data.rsdk of Sonic Origins don't work.

Build Original Xbox binaries / xISO

First, you need to configure nxdk according to your operating system, you can see that here

After that, compile using these commands in the terminal

git clone --recursive https://github.com/danielgpinheiro/RSDKv3-xbox.git

./dependencies/xbox/nxdk/bin/activate

make  -f  Makefile.nxdk

Original description

SUPPORT THE OFFICIAL RELEASE OF SONIC CD

  • Without assets from the official release, this decompilation will not run.

  • You can get an official release of Sonic CD from:

Even if your platform isn't supported by the official releases, you must buy or officially download it for the assets (you don't need to run the official release, you just need the game assets). Note that only FMV files from the original Steam release of the game are supported; mobile and Origins video files do not work.

Advantages over the PC version of Sonic CD

  • Sharp, pixel-perfect display.
  • Controls are completely remappable via the settings.ini file.
  • The window allows windows shortcuts to be used.
  • Complete support for using mobile/updated scripts, allowing for features the official PC version never got to be played on PC.
  • Native Windows x64 version, as well as an x86 version.

Advantages over the Mobile versions of Sonic CD

  • The rendering backend is based off the PC version by default, so palettes are fully supported (Tidal Tempest water in particular).

Additional Tweaks

  • Added a built in mod loader and API, allowing to easily create and play mods with features such as save file redirection and XML GameConfig data.
  • There is now a settings.ini file that the game uses to load all settings, similar to Sonic Mania.
  • The dev menu can now be accessed from anywhere by pressing the ESC key if enabled in the config.
  • The F12 pause, F11 step over & fast forward debug features from Sonic Mania have all been ported and are enabled if devMenu is enabled in the config.
  • A number of additional dev menu debug features have been added:
    • F1 will load the first scene in the Presentation stage list (usually the title screen).
    • F2 and F3 will load the previous and next scene in the current stage list.
    • F5 will reload the current scene, as well as all assets and scripts.
    • F8 and F9 will visualize touch screen and object hitboxes.
    • F10 will activate a palette overlay that shows the game's 8 internal palettes in real time.
  • If useSteamDir is set in the config (Windows only), the game will try to load savedata from Steam's userdata directory (where the original Steam version saves to).
  • Added the idle screen dimming feature from Sonic Mania Plus, as well as allowing the user to disable it or set how long it takes for the screen to dim.

How to Build

This project uses CMake, a versatile building system that supports many different compilers and platforms. You can download CMake here. (Make sure to enable the feature to add CMake to the system PATH during the installation!)

Get the source code

In order to clone the repository, you need to install Git, which you can get here.

Clone the repo recursively, using: git clone --recursive https://github.com/Rubberduckycooly/Sonic-CD-11-Decompilation

If you've already cloned the repo, run this command inside of the repository: git submodule update --init --recursive

Follow the build steps

Windows

To handle dependencies, you'll need to install Visual Studio Community (make sure to install the Desktop development with C++ package during the installation) and vcpkg.

After installing those, run the following in Command Prompt (make sure to replace [vcpkg root] with the path to the vcpkg installation!):

  • [vcpkg root]\vcpkg.exe install glew sdl2 libogg libtheora libvorbis --triplet=x64-windows-static (If you're compiling a 32-bit build, replace x64-windows-static with x86-windows-static.)

Finally, follow the compilation steps below using -DCMAKE_TOOLCHAIN_FILE=[vcpkg root]/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows-static -DCMAKE_PREFIX_PATH=[vcpkg root]/installed/x64-windows-static/ as arguments for cmake -B build.

  • Make sure to replace each instance of [vcpkg root] with the path to the vcpkg installation!
  • If you're compiling a 32-bit build, replace each instance of x64-windows-static with x86-windows-static.

Linux

Install the following dependencies: then follow the compilation steps below:

  • pacman (Arch): sudo pacman -S base-devel cmake glew sdl2 libogg libtheora libvorbis
  • apt (Debian/Ubuntu): sudo apt install build-essential cmake libglew-dev libglfw3-dev libsdl2-dev libogg-dev libtheora-dev libvorbis-dev
  • rpm (Fedora): sudo dnf install make gcc cmake glew-devel glfw-devel sdl2-devel libogg-devel libtheora-devel libvorbis-devel zlib-devel
  • apk (Alpine/PostmarketOS) sudo apk add build-base cmake glew-dev glfw-dev sdl2-dev libogg-dev libtheora-dev libvorbis-dev
  • Your favorite package manager here, make a pull request

Android

Follow the android build instructions here.

Compiling

Compiling is as simple as typing the following in the root repository directory:

cmake -B build
cmake --build build --config release

The resulting build will be located somewhere in build/ depending on your system.

The following cmake arguments are available when compiling:

  • Use these on the first cmake -B build step like so: cmake -B build -DRETRO_DISABLE_PLUS=on

RSDKv3 flags

  • RETRO_DISABLE_PLUS: Whether or not to disable the Plus DLC. Takes a boolean (on/off): build with on when compiling for distribution. Defaults to off.
  • RETRO_FORCE_CASE_INSENSITIVE: Forces case insensivity when loading files. Takes a boolean, defaults to off.
  • RETRO_MOD_LOADER: Enables or disables the mod loader. Takes a boolean, defaults to on.
  • RETRO_USE_HW_RENDER: Enables the Hardware Renderer as an option. Takes a boolean, defaults to on.
  • RETRO_ORIGINAL_CODE: Removes any custom code. A playable game will not be built with this enabled. Takes a boolean, defaults to off.
  • RETRO_SDL_VERSION: Only change this if you know what you're doing. Switches between using SDL1 or SDL2. Takes an integer of either 1 or 2, defaults to 2.

Unofficial Branches

Follow the installation instructions in the readme of each branch.

Because these branches are unofficial, we can't provide support for them and they may not be up-to-date.

Other Platforms

Currently the only supported platforms are the ones listed above, however the backend uses libogg, libvorbis, libtheora & SDL2 to power it (as well as tinyxml2 for the mod API), so the codebase is very multiplatform. If you're able to, you can clone this repo and port it to a platform not on the list.

FAQ

You can find the FAQ here.

Special Thanks

  • Xeeynamo: for creating the RSDK Animation editor & an early version of the script unpacker, both of which got me into RSDK modding.
  • Sappharad: for making a decompilation of the Windows Phone 7 version of Sonic CD (found here) which gave me the idea & motivation to decompile the PC/iOS/Android versions.
  • SuperSonic16: for creating & adding some stuff to the Sonic CD mod loader that I asked for.
  • The Weigman for creating the header you see up here along with similar assets.
  • Everyone in the Retro Engine Modding Server for being supportive of me and for giving me a place to show off these things that I've found.

Contact:

Join the Retro Engine Modding Discord Server for any extra questions you may need to know about the decompilation or modding it.

About

A Full Decompilation of Sonic CD (2011) & Retro Engine (v3) to Original Xbox

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 82.9%
  • Java 15.1%
  • CMake 1.2%
  • Other 0.8%