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 636279edfe
Some checks are pending
build/msvc Build for the target platform: msvc
lint/clippy Checking for common mistakes and opportunities for code improvement
build/linux Build for the target platform: linux
Use macro to generate file type enum and impls
Due to the large amount of variants, and the different kind of values
connected to each variant (hash, extension name) being scattered
across the various `impl` blocks, the file became rather convoluted.

While I don't generally like the indirection of macros or meta
programming, it's not that bad with Rust, thanks to Rust Analyzer being
able to attach diagnostics to the source inside the macro definition,
and the ability to generate the macro's output for validation.

Therefore, the new macro allows putting all data used for this enum
definition into a single block.
2025-04-22 23:03:12 +02:00
.ci Fix build script 2025-04-22 14:50:37 +02:00
crates Add cmdline to tracing output 2025-04-22 22:58:00 +02:00
docs/screenshots Add application icon 2024-07-10 23:27:43 +02:00
lib Use macro to generate file type enum and impls 2025-04-22 23:03:12 +02: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 Move serde_sjson to its own project 2025-04-21 22:52:54 +02:00
.renovaterc Explicitly define base branches 2025-03-12 13:11:01 +01:00
Cargo.lock Merge pull request 'chore(deps): update rust crate bincode to v2' (#204) from renovate/bincode-2.x into master 2025-04-22 14:51:45 +02:00
Cargo.toml Merge pull request 'chore(deps): update rust crate bincode to v2' (#204) from renovate/bincode-2.x into master 2025-04-22 14:51:45 +02:00
CHANGELOG.adoc dtmt: Add command to search for files 2024-07-28 22:04:14 +02:00
Justfile Remove internal URLs from CI 2025-04-21 15:18:19 +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.