Crates.io | hot_potato |
lib.rs | hot_potato |
version | 0.1.2 |
source | src |
created_at | 2023-07-10 12:42:03.431593 |
updated_at | 2023-07-16 21:17:07.229954 |
description | hot reloading library for development |
homepage | |
repository | https://github.com/DragonFighter603/hot_potato |
max_upload_size | |
id | 912947 |
size | 14,486 |
This crate lets you hot reload function bodies and change magic values on the fly, enabling quick changes without an entire restart and navigation to the current interactible.
Note that this works only in your dev envioronment - not on a shipped build!
It is highly recommended that all potato code should be stripped out of release builds! This crate is meant to facilitate design&development and is not qualified to serve soundly in a deployed build.
(see test_project for a rudimentary implementation)
hot_potato
to your projectcargo add hot_potato
potato
use hot_potato::potato;
/// t: time [0.0;1.0]
#[potato]
fn interpolate(t: f32) -> f32 {
// linear interpolation for now
t
}
use hot_potato::build_and_reload_potatoes;
fn main() {
build_and_reload_potatoes().expect("error loading potatoes");
...
}
fn main() {
// some quick and dirty loop
loop {
// make sure this is called at least once before any potato func is called!
build_and_reload_potatoes().expect("error loading potatoes");
for i in 0..=5 {
let t = i as f32 / 5.0;
println!("{t} -> {}", interpolate(t));
}
println!("Press enter to hot-reload");
// just waits for input and then starts the loop anew...
std::io::stdin().read_line(&mut String::new()).unwrap();
}
}
Cargo.toml
[lib]
path = "src/main.rs"
crate-type = ["cdylib"]
[[bin]]
name = "test_project"
path = "src/main.rs"
the lib target is for the hot reloading and the bin target is your default run compile target.
cargo run
Try editing the interpolation function and triggering the reload:
/// t: time [0.0;1.0]
#[potato]
fn interpolate(t: f32) -> f32 {
// quadratic
t * t
}
/// t: time [0.0;1.0]
#[potato]
fn interpolate(t: f32) -> f32 {
// ease in-out
x * x * (3.0 - 2.0 * x)
}
In this scenario we want to show a widget with a certain color but we are not quite happy with it.
Note that you still need an initial build_and_reload_potatoes
, but no such reload is needed after value adjustment.
Pseudo code, look at test_project for some real code
// We are not quite happy with our color...
// Instead of starting the whole app anew every time we change it slightly,
// or having to change our code in a way that we pass around those values
// and having to change that back later, we can just glue those magic parameters to
// that function and change them from anywhere
#[potato(r: u8 = 0xFF, g: u8 = 0x00, b: u8 = 0xFF)]
fn show_colored_thing(text: &str, ui: &mut UIContext) -> f32 {
let mut widget = Widget::new();
widget.title = Some(text);
widget.bg_color = Color::from_rgba(r, g, b, 0xFF);
ui.popup(widget);
}
// Somewhere in an debug ui handler that has an "apply&test" button.
// Also lets just pretend we have 3 debug ui sliders for rgb.
fn on_click_apply(red: Slider, green: Slider, blue: Slider, ui: &mut UIContext) {
show_colored_thing.set::<u8>("r", (red.get_slider_value() * 255.0) as u8);
show_colored_thing.set::<u8>("g", (green.get_slider_value() * 255.0) as u8);
show_colored_thing.set::<u8>("b", (blue.get_slider_value() * 255.0) as u8);
}
// Somewhere we also have an "open popup" button
fn on_click_open(ui: &mut UIContext) {
show_colored_thing("Test RGB popup", ui);
}
Warning: Function signature changes and similar wild stuff will result in undefined behavior, most likely a STATUS_ACCESS_VIOLATION
or similar crash.