Decompilation of Sly Cooper and the Thievius Raccoonus for the PS2
Go to file
2024-06-28 03:16:37 +00:00
build Comment and tweak config and makefiles 2024-06-27 22:52:21 +00:00
config Configure to use ninja 2024-06-28 03:16:37 +00:00
disc Splat configuration & necessary includes 2024-04-26 10:50:10 -06:00
docs Update documentation 2023-12-17 03:31:08 +00:00
include Continue working on splat integration 2024-06-27 19:37:50 +00:00
old_include Move src and include files to old_ dirs to make way for splat 2024-06-25 18:44:06 +00:00
old_src Move src and include files to old_ dirs to make way for splat 2024-06-25 18:44:06 +00:00
scripts Update readme and scripts 2023-12-17 04:01:12 +00:00
src/P2 Work on getting splat to work 2024-06-26 22:33:59 +00:00
test Remove CMake files 2023-12-04 06:07:00 +00:00
tools/codematcher Splat configuration & necessary includes 2024-04-26 10:50:10 -06:00
.gitattributes Add .gitignore and .gitattributes. 2021-11-08 19:59:05 -05:00
.gitignore More segments and symbols 2024-04-30 21:13:41 -04:00
appveyor.yml Fix typo and add command in install script 2023-12-05 02:56:24 -05:00
configure.py Configure to use ninja 2024-06-28 03:16:37 +00:00
Doxyfile Update doxygen config 2023-12-17 03:35:36 +00:00
logo.png Update readme and add logo 2023-12-01 04:27:35 -05:00
Makefile Comment and tweak config and makefiles 2024-06-27 22:52:21 +00:00
README.md Move src and include files to old_ dirs to make way for splat 2024-06-25 18:44:06 +00:00
requirements.txt Configure to use ninja 2024-06-28 03:16:37 +00:00

Sly Cooper and the Thievius Raccoonus

Build status Discord Channel Contributors Docs Wiki

Sly 1 Decompilation Logo by Cooper941

This is a work-in-progress decompilation of Sly Cooper and the Thievius Raccoonus for the PlayStation 2. It is based on the NTSC-U version of the game, SCUS-971.98 (SHA1: 57dc305d).

The goal of this project is to better understand the game engine. This repo does not contain any game assets or code from the game's executable, and it requires your own copy of the game to run.

Documentation of the code can be found at theonlyzac.github.io/sly1. For further reading on the game's internal structures and mechanics, visit the SlyMods Wiki.

New contributors are welcome and encouraged to make a pull request! If you would like to help but aren't sure where to start, check out CONTRIBUTING.md and feel free to join our Discord server for guidance.

Setup

Splat

Splat is used for binary splitting. To install it, clone the repository and install the Python packages with pip:

git clone https://github.com/TheOnlyZac/sly1
cd sly1
pip install -U -r requirements.txt

After setting up the repository and installing the required packages, you will need to extract the ELF file from your own legally obtained copy of the game. Mount the disk on your PC and copy the file SCUS_971.98 from the root directory of the disc to the disc directory of this project.

Build Environment

The scripts directory contains scripts for setting up the build environment on Windows and Linux, which involves downloading and installing the required runtime libraries. Follow the instruction for your platform below.

Linux/WSL

Prerequisites: git, make, wine-stable, p7zip-full

cd scripts
./setup-progd-linux.sh

Windows

Prerequisites: git, make, 7zip

cd scripts
.\setup-progd-windows.bat

Building

The project can be compiled on Windows or Linux using make. It builds the executable SCUS_971.98.

Before building, you must split the ELF file using Splat. This is defined in the Makefile as the extract target:

make extract

This will create a new directory asm with the disassembled assembly code and generated C files. You can now build the project:

make

Running

Running the executable requires PCSX2 1.7. You must have your own copy of the original game and the BIOS from your own PS2. They are not included in this repo and we cannot provide them for you.

Once you have those and you have built the executable, you can run it in one of these three ways:

1. Autorun script

The run.sh script in the scripts dir will automatically rebuild the executable and run it in the PCSX2 emulator. To use it, you must first edit the script to set the PCSX2_PATH and ISO_PATH variables to the correct paths on your system.

2. Run from command line

To boot the elf in PCSX2 from the command line, use the following command:

pcsx2-1.7.exe -elf ".../sly1/bin/debug/SCUS_971.98" "/path/to/game/backup.iso"

Replace pcsx2-1.7.exe with the path to your PCSX2 v1.7 executable (for Linux it will be an .appimage file).

  • The -elf parameter specifies the path to the SCUS_971.98 you built from this project. Replace ... with the path to this repository. The emulator will use this ELF to boot the game.
  • The last argument is the path to your game ISO. Replace /path/to/game/backup.iso with the path to a backup of your own game disc. This is where the game will load the assets from.

3. Run from PCSX2 GUI

Add the bin dir in this project to your Games folders. When it asks you to search recursively, say yes. The ELF should appear as a game in your library. If it doesn't automatically appear, rename the executable to SCUS_971.98.elf.

Project Structure

The project is divided into the following directories:

  • build - Makefiles for building the executable.
  • config - Config files for Splat (binary splitting tool).
  • docs - Documentation and instructions for contributing.
  • include - Header files for the game engine.
  • scripts - Utility scripts for setting up the build environment.
  • src - The decompiled source code.
    • All of the code for the game engine is in src/P2.
    • Code for the game's scripting engine is in src/P2/splice.
  • test - Handwritten unit tests for the decomp code.
  • tools - Utilities for function matching.

When you build the executable, the following directories will be created:

  • obj - Compiled object files.
  • bin - Compiled executables.

When you use splat to split the elf, the following directories will be created:

  • assets- Binary data extracted from the elf.
  • splat - Output of the binary splitting tool.
    • asm - Disassembled assembly code.
    • src - Generated C files.

FAQ

What is a decompilation?

When the developers created the game, they wrote programming code that we call the source code, and compiled that into an exectuable which can run on the PS2. Our job is to reverse-engineer the compiled code and produce new, original code that behaves the same way. This process leaves us with code that is very similar (but not identical) to the source code and helps us understand what the programmers were thinking when they made the game.

How does it work?

We use a tool called Ghidra which was created by the NSA for reverse-engineering software. Ghidra analyzes the game binary to identity functions, variables, data types and structures. We then reimplement each individual function by writing C++ code that produces the same output. We do not copy/paste any code or include any original assembly code from the game binary in the decompilation.

Has this ever been done before?

This is one the first ever PS2 decompilations. We draw inspiration from other decomp projects such as the Super Mario 64 decomp for the N64 and the Breath of the Wild decomp for the Wii U (the latter being more similar in scope to this project). There is a Jak & Daxter decomp/PC port called OpenGOAL, though that game is written in 98% GOAL language rather than C/C++.

Is this a matching decomp?

This is the first PS2 decompilation project to target the PS2 and utilize function matching. Most of the decompiled code is not yet matching, and we do not currently require it, but the ultimate goal is to match as many functions as possible.

How can I help?

If you want to contribute, read through CONTRIBUTING.md and feel free to join our discord server if you have any questions!

Star History

Star History Chart