ftvf

ftvf is a crate for carrying out game logic the One True Way: Fixed Tickrate, Variable Framerate. By having your game logic in strictly fungible ticks, rather than having it vary based on framerate, you gain many advantages:

Bonus: If you know your refresh rate, ftvf can help you render frames at exactly that rate, jitter-free.

To get started, add ftvf to your dependencies in Cargo.toml:

toml ftvf = "0.6"

then initialize yourself a Metronome:

rust let mut metronome = Metronome::new( RealtimeNowSource::new(), // want 30 ticks per 1 second Rate::per_second(30, 1), // accept being up to 5 ticks behind 5, );

And then your game loop looks like this:

rust while !world.should_quit() { world.handle_input(); for reading in metronome.sample(Mode::UnlimitedFrames) { match reading { Reading::Tick => world.perform_tick(), Reading::Frame{phase} => world.render(phase), Reading::TimeWentBackwards => eprintln!("Warning: time flowed backwards!"), Reading::TicksLost => eprintln!("Warning: we're too slow, lost some ticks!"), // Mode::UnlimitedFrames never returns Idle, but other modes can, and // this is one way to handle it. Reading::Idle{duration} => std::thread::sleep(duration), } } }

Your logic ticks operate in discrete, fixed time intervals. Then, when it comes time to render, you render a frame which represents time some portion of the way between two ticks, represented by its phase. Your rendering process should render an interpolated state between the previous tick and the current tick, based on the value of phase. Simple example:

rust self.render_at(self.previous_position + (self.current_position - self.previous_position) * phase);

Changes

Since 0.5.0

License

ftvf is distributed under the zlib license. The complete text is as follows:

Copyright (c) 2019, 2023 Solra Bizna

This software is provided "as-is", without any express or implied warranty. In no event will the author be held liable for any damages arising from the use of this software.

Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:

  1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgement in the product documentation would be appreciated but is not required.
  2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
  3. This notice may not be removed or altered from any source distribution.