Xbox (Original) Emulator
Go to file
patrickvl a8e8f0c071 Loader : Update build script to include new binaries in artifact 2020-04-14 20:24:17 -05:00
.github Loader : Update build script to include new binaries in artifact 2020-04-14 20:24:17 -05:00
doc Remove old documents: These predate Cxbx-R and are no longer valid 2018-06-06 08:27:05 +01:00
import Remove unused extern "C" comments 2020-04-07 03:24:00 -07:00
projects Loader : Deduplicate code via new CreateSettings() 2020-04-14 20:24:17 -05:00
src Loader : Fix typos and avoid Microsoft compiler specific types 2020-04-14 20:24:17 -05:00
.appveyor.yml Loader : Update build script to include new binaries in artifact 2020-04-14 20:24:17 -05:00
.azure-pipelines.yml Loader : Update build script to include new binaries in artifact 2020-04-14 20:24:17 -05:00
.gitattributes add cmake support 2019-05-10 19:07:58 -05:00
.gitignore Add VS cache to .gitignore 2019-05-17 18:06:36 +12:00
.gitmodules Switch to mainline subhook 2020-03-05 15:22:03 -08:00
.travis.yml Loader : Update build script to include new binaries in artifact 2020-04-14 20:24:17 -05:00
CMakeLists.txt Loader : Deduplicate code via new CreateSettings() 2020-04-14 20:24:17 -05:00
CMakeSettings.json Remove generator from CMakeSettings.json 2019-06-15 19:57:13 -07:00
CONTRIBUTORS Updated CONTRIBUTORS once more 2019-11-16 21:36:39 +01:00
COPYING Make resource file language-neutral, so that Visual Studio won't complain when regional settings aren't compatible. (See https://stackoverflow.com/a/58011025/12170) 2019-11-14 13:26:20 +01:00
README.md Remove Azure badge 2020-04-13 17:22:06 -07:00
gen-msvc-project.bat rename msvc batch script 2019-05-25 12:03:39 -05:00
setup.bat Updated CONTRIBUTORS once more 2019-11-16 21:36:39 +01:00

README.md

Cxbx-Reloaded - Original Xbox Emulator

License: GPL v2 GitHub Actions Discord

Cxbx-Reloaded is an emulator for running Microsoft Xbox (and eventually, Chihiro) games on Microsoft Windows.

System Requirements

Minimum

  • OS: Windows 7+ x64. 32-bit is not supported.
  • GPU: Direct3D 9.0c with Pixel Shader Model 2.x, and Vertex Shader Model 3.0.

Prerequisites

Automated Builds

Cxbx-Reloaded doesn't currently have stable builds, but you can obtain pre-release builds from the Releases tab, or the links below:

Compatibility

Cxbx-Reloaded has a compatibility list.

If you have something to report on a title, please create or update the issue for it there.

Please read the Readme file first!

Bug Reports

Game or software specific issues can be reported in the compatibility list.

For emulation issues that are not specific to any single piece of software, a bug report can be submitted at the Cxbx-Reloaded issue tracker.

Make sure bug reports contain:

  • The build tested with, error message displayed (if any)
  • Screenshots
  • Xbe dump (created via Edit > Dump Xbe Info To > File)
  • Kernel Debug log (created when running a game with View > Debug Output (Kernel) > File selected).

Additional information

Cxbx-Reloaded has a wiki containing various subjects and background information.

Chat on Discord.

Contributing

We welcome contributions, large and small.

If you want to do some coding, be sure to read the Developer notes.

IMPORTANT: Pull-Requests containing code derived from XQEMU will not be approved until an agreement is reached to make work mutually beneficial. this includes updates to existing XQEMU derived code. We should not/will not become a hostile fork.

Please contact us before you start working on something, so we can make sure your work is going to be accepted once finished.

Main Prerequisites

  1. Git for Windows
  2. CMake
    • Some IDEs already have CMake support, so this is optional.

Fetching the code

  1. Run the following command in the command line:

    git clone --recurse-submodules https://github.com/Cxbx-Reloaded/Cxbx-Reloaded.git

    • Please note the --recurse-submodules parameter. This is required to fetch submodules.
      • If Cxbx-Reloaded was checked out without submodules, they can be updated/fetched with the following command:

        git submodule update --init --recursive

Compiling

Windows

NOTE: Don't open CMakeLists.txt from Visual Studio, as it won't generate files in the build directory.

Prerequisites
  1. Visual Studio 2017 or later
Generate Visual Studio files
  1. If you don't have CMake installed, open ___ Native Tools Command Prompt for VS 20##.
  2. cd to the Cxbx-Reloaded directory.
  3. Run these commands.
    1. mkdir build & cd build
    2. cmake .. -G "Visual Studio 16 2019" -A Win32
      • Visual Studio 2019 16.1 or later has CMake 3.14 bundled, and is required for the Visual Studio 2019 generator.
      • Use cmake .. -G "Visual Studio 15 2017" -A Win32 for Visual Studio 2017.
  4. Open Cxbx-Reloaded.sln from the build directory.
  5. Select the Release configuration, then click Build.
    • Debug builds are significantly slower, and only for developers.

Linux / macOS

Currently not supported.

Support

You can support Luke Usher, initiator of Cxbx-Reloaded, on Patreon.

Special Thanks

  • All contributors to the original Cxbx and Dxbx projects. Without them Cxbx-Reloaded would not exist at all.
  • XQEMU - While the majority of Cxbx-R is our own work (Kernel, HLE, etc), the NV2A LLE and NVNet implementation are primarily the work of the XQEMU developers.
  • XboxDev - Providing Xbox hardware research & useful tooling.