#console #configuration #settings #debugging #gamedev #struct-fields

cvars

Configuration variables - a simple and ergonomic way to store and edit configuration at runtime

8 releases (4 breaking)

0.4.2 Jul 10, 2023
0.4.0 Jul 1, 2023
0.3.2 Feb 7, 2023
0.2.0 Feb 3, 2023
0.0.0 Aug 2, 2021

#46 in Configuration

Download history 13/week @ 2024-01-01 14/week @ 2024-01-08 2/week @ 2024-01-22 30/week @ 2024-01-29 29/week @ 2024-02-05 7/week @ 2024-02-12 47/week @ 2024-02-19 29/week @ 2024-02-26 24/week @ 2024-03-04 33/week @ 2024-03-11 21/week @ 2024-03-18 25/week @ 2024-03-25 40/week @ 2024-04-01 33/week @ 2024-04-08 27/week @ 2024-04-15

125 downloads per month
Used in 4 crates

AGPL-3.0-or-later

27KB

Cvars

Configuration variables .rs
A simple and ergonomic way to store and edit configuration at runtime

GitHub Docs.rs Crates.io License (AGPL3) CI Audit Dependency status Discord

Cvars (console variables or configuration variables) are a simple way to store settings you want to change at runtime without restarting your program.

Consoles are the most ergonomic way to set cvars but you can write your own UI or read them from stdin if you want. They are available for Fyrox and Macroquad.

These crates are inspired by the idTech (Doom, Quake) and Source family of game engines but they can be useful outside games. Cvars allow you to iterate faster by letting you test certain gameplay changes without recompiling. They also make your game more moddable if you expose (a subset of) them to players.

TL;DR: Set and get struct fields based on the field's name as a string. User writes the cvar's name and new value into the console, it sets the appropriate field in your config struct and the game now behaves differently. Your gamecode uses cvars as regular staticly typed values.

Usage example video worth 15*1000 words per second

Zero boilerplate - there are no traits to implement manually and no setup code to call per cvar.

Minimal performance cost - just struct field access instead of a hardcoded constant. Cvars are cheap enough to keep everything configurable even after you're done finding the best values - you can keep things tweakable in your released game for players to experiment themselves.

Usage

  • Add cvars to your Cargo.toml:
cargo add cvars
  • Put your config in a struct and derive SetGet:
use cvars::cvars;

// This generates a Cvars struct containing all your config options
// and a corresponding Default impl.
cvars! {
    g_rocket_launcher_ammo_max: i32 = 20,
    g_rocket_launcher_damage: f32 = 100.0,
}

// Store this in your game state.
let mut cvars = Cvars::default();
  • Allow users to change the config:
// These normally come from the user
// (from stdin / your game's console / etc.)
let cvar_name = "g_rocket_launcher_damage";
let new_value = "150";

// This looks up the right field and sets it to the new value.
cvars.set_str(cvar_name, new_value).unwrap();

Motivation

A player/modder/gamedev wants rockets to do more damage. He types g_rocket_launcher_damage 150 into the game's console or stdin. The code gets both the cvar name and new value as strings so you can't write cvars.g_rocket_launcher_damage = 150. You need to look up the correct field based on the string - this is what cvars does - it generates set_str (and some other useful methods). You call cvars.set_str("g_rocket_launcher_damage", "150"); which looks up the right field, parses the value into its type and updates the field with it. From then on, rockets do 150 damage.

The important thing is that in the rest of your application, you can still access your cvars as regular struct fields - e.g. player.health -= cvars.g_rocket_launcher_damage;. This means you only need to use strings when the user (player or developer when debugging or testing a different balance) is changing the values. The rest of your gamelogic is still statically typed and using a cvar in gamecode is just a field access without any overhead.

A typical game will have hundreds or thousands of tunable parameters. With cvars and a console you can keep them all configurable for advanced players, modders and your-gamedev-self without having a build an elaborate settings menu. You can keep everything configurable using a TUI while also exposing common settings to normal players in your game's GUI.

See cvars/examples/stdin.rs for a small runnable example.

For real-world examples, look at games using cvars:

Fyrox console

GitHub Docs.rs Crates.io License (AGPL3) CI Audit Dependency status Discord

The Fyrox console is a separate crate in this repo. To use it in your game, add it to your Cargo.toml and call its methods on the relevant engine events.

Fyrox console

See the crates.io page or its docs for more information.

Macroquad console

GitHub Docs.rs Crates.io License (AGPL3) CI Audit Dependency status Discord

The Macroquad console is a separate crate in this repo. To use it in your game, add it to your Cargo.toml and call its update method every frame.

Macroquad console

See the crates.io page or its docs for more information.

Features

  • Derive macro SetGet to create settters and getters for cvars based on their name
    • Statically typed (set, get)
    • As string (set_str, get_string)
  • Function like cvars! macro to declare type and initial value on one line
  • Support user-defined cvar types (both structs and enums)
  • Saving and loading cvars to/from files - useful if your game has multiple balance presets
  • In-game console for the Fyrox engine
  • In-game console for the Macroquad engine
  • Autocompletion

Features I am currently not planning to implement myself but would be nice to have. I might accept a PR if it's clean and maintainable but it's probably better if you implement them in your own crate:

  • In-game console for the Bevy engine
  • In-game console for the Egui UI toolkit
  • Non-blocking stdio-based console
    • This would bring the full power of cvars to any program that can access stdin/out without the need to implement a console for every engine or UI toolkit.

Alternatives

  • inline_tweak
    • Uses hashmaps - overhead on every access
    • Can't be used in some contexts (e.g. in a const)
    • Veloren switched to it from const-tweaker
  • const-tweaker
    • Web GUI
    • Only supports a few stdlib types, no custom types
    • Has soundness issues according to tuna's author
    • Uses hashmaps - overhead on every access
  • tuna
    • Web GUI
    • Unclear if it supports enums
    • Uses hashmaps - overhead on every access
  • cvar
    • Uses a trait instead of a macro. The trait seems to need to be implemented manually so more boilerplate.
    • Has additional features (lists, actions) which cvars currently doesn't.

Compared to these, cvars either has no overhead at runtime or requires less setup code. The downside currently might be slightly increased incremental compile times (by hundreds of milliseconds).

Cvars also serves a slightly different purpose than inline_tweak and const-tweaker. It's meant to stay in code forever, even after releasing your game, to enable modding by your game's community.

Finally, you might not need a specialized crate like cvars or inline_tweak at all. A lot of common wisdom in gamedev is wrong or outdated. What you need might be just a file containing RON or JSON which is loaded each frame and deserialized into a config struct. It'll be cached by the OS most of the time and nobody minds a dropped frame during development after editing the file.

Development

The repo is organized as a cargo workspace for the main functionality, with consoles and benchmarks as separate crates - see Cargo.toml for the technical reasons.

  • Testing: Use cargo test in the root directory to test everything in the workspace. To test the consoles, cd into their directories and run cargo test there.

  • Debugging:

    • Use cargo expand --package cvars-macros --example testing-fnlike to see what the proc macros generate. There is a similar file for derive macros. You can use println! and dbg! in the macros as well.
    • The expanded code won't compile but the end of the output will usually contain errors that can help you track down what's wrong with the generated code: cargo expand --package cvars-macros --example testing-fnlike > cvars-macros/examples/testing-expanded.rs && cargo build --package cvars-macros --example testing-expanded ; rm cvars-macros/examples/testing-expanded.rs. One exception is when the macro produces syntactically invalid code, in which case its output will be missing entirely.
  • Benchmarking: Run ./bench.sh in cvars-bench-compile-time to benchmark incremental compile time when using the proc macros.

  • Useful commands:

    • cargo-llvm-lines and cargo-bloat. Use either of them in cvars-bench-compile-time (e.g. e.g. cargo llvm-lines --features string,typed,fnlike,cvars-1000) to find out which functions generate a lot of LLVM IR and which compile to a lot of code. This is a good indicator of what is causing long compile times. Lines of LLVM IR is a bit more important because it better indicates how much work the backend has to do even if it compiles down to a small amount of machine code.
    • Set the environment variable CVARS_STATS to make the macros print how long they took - e.g. CVARS_STATS= cargo bloat --features string,typed,fnlike,cvars-1000. If it's small compared to the total compile time, most of the time is spent in codegen, dealing with the large amount of code generated. Note that the compiler's output, including proc macro output, is cached if the compiled code hasn't changed so you might need to set the variable and also edit the code to see the stats.

Contributing

You can always find me on the Rusty Games Discord server if you have any questions or suggestions.

Issues and Pull Requests are welcome. See the good first issue label for easy tasks.

License

AGPL-v3 or newer

Dependencies

~320–770KB
~18K SLoC