Skip to content

Commit 6b6e0c8

Browse files
authored
Basic serialization example (#560)
1 parent 8c1d1a1 commit 6b6e0c8

File tree

5 files changed

+49
-0
lines changed

5 files changed

+49
-0
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
# Unreleased
4+
5+
## Added
6+
7+
- Added a serialization `serialization2` example for `bevy_rapier2d`.
8+
39
## v0.29.0 (18 February 2025)
410

511
### Added

bevy_rapier2d/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ glam = { version = "0.29", features = ["approx"] }
8484
bevy-inspector-egui = "0.28.0"
8585
bevy_egui = "0.31"
8686
bevy_mod_debugdump = "0.12"
87+
serde_json = "1.0"
8788

8889
[package.metadata.docs.rs]
8990
# Enable all the features when building the docs on docs.rs

bevy_rapier2d/examples/joints2.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use bevy::prelude::*;
22
use bevy_rapier2d::prelude::*;
33

4+
#[allow(unused)]
45
fn main() {
56
App::new()
67
.insert_resource(ClearColor(Color::srgb(
+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
//! Example for RapierContext serialization, run with `--features serde-serialize`.
2+
3+
use bevy::prelude::*;
4+
use bevy::MinimalPlugins;
5+
use bevy_rapier2d::prelude::*;
6+
7+
/// Note: This will end up in duplication for testbed, but that's more simple.
8+
mod joints2;
9+
10+
fn main() {
11+
App::new()
12+
.insert_resource(ClearColor(Color::srgb(
13+
0xF9 as f32 / 255.0,
14+
0xF9 as f32 / 255.0,
15+
0xFF as f32 / 255.0,
16+
)))
17+
.add_plugins((
18+
MinimalPlugins,
19+
RapierPhysicsPlugin::<NoUserData>::pixels_per_meter(100.0),
20+
))
21+
.add_systems(Startup, joints2::setup_physics)
22+
.add_systems(PostUpdate, print_physics)
23+
.add_systems(Last, quit)
24+
.run();
25+
}
26+
27+
pub fn print_physics(_context: ReadRapierContext) {
28+
#[cfg(feature = "serde-serialize")]
29+
println!(
30+
"{}",
31+
serde_json::to_string_pretty(&_context.single())
32+
.expect("Unable to serialize `RapierContext`")
33+
);
34+
#[cfg(not(feature = "serde-serialize"))]
35+
panic!("Example 'serialization' should be run with '--features serde-serialize'.");
36+
}
37+
38+
fn quit(mut exit_event: EventWriter<AppExit>) {
39+
exit_event.send(AppExit::Success);
40+
}

src/plugin/context/systemparams/rapier_context_systemparam.rs

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ impl<'w, 's, T: query::QueryFilter + 'static> ReadRapierContext<'w, 's, T> {
5757
/// This helps with reducing boilerplate, at the (small) price of maybe getting too much information from the ECS.
5858
///
5959
/// Note: This is not a component, refer to [`ReadRapierContext`], [`WriteRapierContext`], or [`RapierContextSimulation`]
60+
#[cfg_attr(feature = "serde-serialize", derive(Serialize))]
6061
#[derive(query::QueryData)]
6162
pub struct RapierContext<'a> {
6263
/// The Rapier context, containing all the state of the physics engine.

0 commit comments

Comments
 (0)