Files
rjkiv 74e011bb62 Create CONTRIBUTING.md (#22)
* contributing.md

* remove example docs

* add redirect to contributing.md on readme.md
2025-08-31 22:08:09 -07:00

3.4 KiB

Dance Central 3

A decompilation of Dance Central 3 (build Sep 16 2012) for the Xbox 360.

This repository does not contain any game assets or assembly whatsoever. An existing copy of the game is required.

Dependencies

Windows

On Windows, it's highly recommended to use native tooling. WSL or msys2 are not required.
When running under WSL, objdiff is unable to get filesystem notifications for automatic rebuilds.

  • Install Python and add it to %PATH%.
  • Download ninja and add it to %PATH%.
    • Quick install via pip: pip install ninja

macOS

  • Install ninja:

    brew install ninja
    
  • Install wine-crossover:

    brew install --cask --no-quarantine gcenx/wine/wine-crossover
    

After OS upgrades, if macOS complains about Wine Crossover.app being unverified, you can unquarantine it using:

sudo xattr -rd com.apple.quarantine '/Applications/Wine Crossover.app'

Linux

  • Install ninja.
  • For non-x86(_64) platforms: Install wine from your package manager.
    • For x86(_64), wibo, a minimal 32-bit Windows binary wrapper, will be automatically downloaded and used.

Building

  • Clone the repository:

    git clone https://github.com/rjkiv/dc3-decomp.git
    
  • Copy the xex to orig/373307D9.

  • Configure:

    python configure.py
    
  • Build:

    ninja
    

Diffing

Once the initial build succeeds, an objdiff.json should exist in the project root.

Download the latest release from encounter/objdiff. Under project settings, set Project directory. The configuration should be loaded automatically.

Select an object from the left sidebar to begin diffing. Changes to the project will rebuild automatically: changes to source files, headers, configure.py, splits.txt or symbols.txt.

Want to contribute?

If you are interested in contributing, please see the CONTRIBUTING walkthrough and guidelines.