Spelunky 2 Data Utilities.
Project description
s2-data
Repository for documenting and interacting with various formats for Spelunky 2.
Currently we have documents for the following:
as well as libraries for asset extraction and repacking.
Installation
You'll need to have Python 3.7 or 3.8 installed to install these tools. Make sure when you're installing Python that you click the checkbox to add Python to your PATH
:
.
If you've already installed Python without doing this you can either re-install or follow the instructions at this site: https://datatofish.com/add-python-to-windows-path/
Once you have python installed you can open cmd
and run the following:
pip install --upgrade s2-data
Modding
:warning: This currently only works on version 1.14+ of Spelunky 2
Once installed you should have two binaries related to modding. s2-asset-extract
and s2-asset-pack
. You can then use the following sections for instructions on extracting, modifying, and repacking the assets.
Extraction
> cd "C:\Program Files (x86)\Steam\steamapps\common\Spelunky 2"
> copy Spel2.exe Spel2-orig.exe
> s2-asset-extract Spel2-orig.exe
This will made a directory called Mods
that has an Extracted
and Overrides
directory in it. All of the assets that were extracted from the binary will be in Extracted
. This directory should be considered read-only for the purposes of modding but you have access to all assets in there for reference. The Overrides
directory has the same directory layout as Extracted
but is otherwise empty. This is where you would put files for repacking in the next step.
Repacking
Repacking expects the directory structure from the extraction step above. It will first check the Overrides
directory for any files and prefer them when repacking the binary. Any assets you want to override should go in the Overrides
directory, matching the layout and name of the file from the Extracted
directory.
> cd "C:\Program Files (x86)\Steam\steamapps\common\Spelunky 2"
> s2-asset-pack Spel2-orig.exe Spel2.exe
Development
If you'd like to contribute to s2-data here are some steps to setup your environment.
Creating VirtualEnv
In the root directory you can make a virtualenv. It will be excluded from commits by default
> python -m venv venv
Activate VirtualEnv
You'll want to activate the virtual environment whenever you're testing any commands from this package
Powershell
> venv\Scripts\activate.bat
cmd
> venv/Scripts/Activate.ps1
bash/zsh
> source venv/bin/activate
Setup
Once you have your virtual environment setup and activated you'll want to finish setting up the development environment.
> python setup.py develop
This will install any dependencies as well as setting up links on your path to your local source files. Once this is done
you'll be able to execute the binaries right from your path after any changes to the source without the need to build or
install anything. If you add new source files you may have to run python setup.py develop
again to make sure they're linked.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file s2-data-0.15.tar.gz
.
File metadata
- Download URL: s2-data-0.15.tar.gz
- Upload date:
- Size: 124.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a32f44813f390b5d1a5739e9d11e94dcfa16e516953d906d4f2fcbe281460b20 |
|
MD5 | f3f8c5bb88b96ed8c687137ecdc025cf |
|
BLAKE2b-256 | 630330201ad88f272d162a01b2fec93b541113414f975fd2cdd9501c9d9e822a |