A set of modding tools for the newest generation of the Bitsquid game engine that powers the game Warhammer 40.000: Darktide.
Find a file
Lucas Schwiderski 30b9a93fa3
Reverse DDSImage::load
Decompiling the game binary shows a rather elaborate algorithm to load
DDS images from binary. Though comparing it to Microsoft's documentation
on DDS, most of it seems to be pretty standard handling.

However, we don't actually need all of it. The part about calculating
pitch and reading blocks only accesses a subset of the `ImageFormat`
struct, so we can strip our implementation to just that.
2025-02-19 11:12:11 +01:00
.ci Add missing build tools to CI image 2024-07-09 16:16:44 +02:00
crates dtmt: Add option to compile file when injecting 2025-02-19 11:12:06 +01:00
docs/screenshots Add application icon 2024-07-10 23:27:43 +02:00
lib Reverse DDSImage::load 2025-02-19 11:12:11 +01:00
.dockerignore feat(ci): Add Dockerfiles to build locally 2023-04-05 20:22:29 +02:00
.fdignore feat: Add Docker images for CI compilation 2023-03-23 13:42:03 +01:00
.gitattributes Add application icon 2024-07-10 23:27:43 +02:00
.gitignore feat: Add Docker images for CI compilation 2023-03-23 13:42:03 +01:00
.gitmodules Fix submodule refs 2023-11-23 13:16:03 +01:00
.renovaterc Add .renovaterc 2024-08-21 15:28:24 +02:00
Cargo.lock Merge pull request 'fix(deps): update rust crate thiserror to v2' (#200) from renovate/thiserror-2.x into master 2025-02-19 10:08:51 +00:00
Cargo.toml chore(deps): update rust crate notify to v8 2025-01-10 14:48:31 +00:00
CHANGELOG.adoc dtmt: Add command to search for files 2024-07-28 22:04:14 +02:00
Justfile Implement faster hex string parsing 2024-07-09 16:16:48 +02:00
LICENSE chore: Initialize project 2022-11-01 12:10:05 +01:00
README.adoc docs: Add split READMEs 2023-03-01 22:14:31 +01:00
rust-toolchain.toml chore: Initialize project 2022-11-01 12:10:05 +01:00
rustfmt.toml feat: Implement bundle decompression 2022-11-01 17:35:47 +01:00

Darktide Mod Tools

A set of tools to use and develop mods for the newest generation of the Bitsquid game engine that powers the game Warhammer 40.000: Darktide.

Darktide Mod Manager (DTMM)

DTMM is a GUI application to install and manage mods for the game.

dtmm main view

Head to crates/dtmm for more information or check the Wiki.

Darktide Mod Tools (DTMT)

DTMT is a CLI application providing various commands that aid in developing mods for the game.

Head to crates/dtmt for more information or check the Wiki.