Jazarro / ck3-tiger

Checks Crusader Kings 3 user mod files for common mistakes and warns about them.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ck3-tiger

Pounces on bugs. Checks Crusader Kings 3 user mod files for mistakes and warns about them. For example: missing localizations, or using a faith trigger on a character.

Crusader Kings 3 is a grand strategy game made by Paradox Interactive, and user mods are made by the players to enhance or change their game experience. This tool is for the people who make the mods.

Status

This project is maturing but not yet stable. It will warn about some things that are actually correct.

Features

ck3-tiger will read the relevant vanilla files and your mod's files, and it will complain about everything in your mod that looks wrong. Where possible, it will tell you why it thinks the thing is wrong and (still in very few cases) what you should do instead.

  • Syntax validation: are you using the right key = value pairs? No misspellings?
  • Missing items: is every game object that you refer to actually defined somewhere?
  • Missing localizations: do you have all the localizations you need for your mod?
  • Scope consistency checking: are you using culture effects on cultures and character effects on characters, etc.?
  • History: Are spouses, employers, and lieges alive on the relevant dates? Is no one their own grandfather?
  • Special: rivers.png check

It doesn't load all the game files yet, but the gaps are few.

Sample output

Sample Output

Sample Output

Sample Output

How to use

Download a release package from GitHub. Unpack it somewhere.

On Windows, if everything works out, you can then just double-click on ck3-tiger-auto and it will try its best.

Otherwise, run the tool from the command prompt:

path/to/ck3-tiger path/to/your/descriptor.mod

or

path/to/ck3-tiger "path/to/Paradox Interactive/Crusader Kings III/mod/YourMod.mod"

(Note that the quote marks around the path are important because of the spaces in it.)

If you want the output in a file, you can redirect it like this:

ck3-tiger path/to/your/descriptor.mod >filename

How to configure

You can place a file ck3-tiger.conf in your mod directory. You can use it to select which languages to check localizations for, and to suppress messages about things you don't want to fix.

There is a sample ck3-tiger.conf file in the release, with an explanation of what goes in it. There is also a guide.

How to build

You can unpack the archive from the "Release" page on GitHub and use it that way.

If you want to build it yourself, you will have to install the Rust programming language.

Run cargo build --release -p ck3-tiger in the project's directory, then run the program as cargo run --release -p ck3-tiger.

Contributions

I welcome contributions and collaborations! Some forms that contributions can take:

  • Suggestions and ideas about what things tiger should check
  • Telling me which of the output messages are confusing or hard to understand
  • Reporting cases where tiger complains about a problem that's not real (false positives)
  • Filing an issue on GitHub about a problem you have, or sending me email directly
  • Starting up the game to verify something that's marked "TODO: verify" in the code

Contributions in the form of code are also welcome. They should be made as GitHub pull requests, and you should read and understand the project's copyright license before doing so. It may help to file a GitHub issue before starting to code, though, since I may prefer to solve the problem in a different way.

Some ideas for code contributions:

  • Adding a new check and its error report
  • Adding a validator for a new item type
  • Updating a validator to a new game version
  • Solving one of the hundreds of TODO comments in the code
  • Solving one of the issues marked in the TODO or IDEAS wiki pages
  • Speed or memory use improvements; opportunities are all over the place

See the CODING wiki page for an overview of the code and coding style.

License

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the LICENSE file for more details.

About

Checks Crusader Kings 3 user mod files for common mistakes and warns about them.

License:GNU General Public License v3.0


Languages

Language:Rust 99.2%Language:RenderScript 0.8%Language:Python 0.0%Language:Makefile 0.0%