forked from avianphysics/avian
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmove_marbles.rs
More file actions
115 lines (105 loc) · 3.7 KB
/
move_marbles.rs
File metadata and controls
115 lines (105 loc) · 3.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#![allow(clippy::unnecessary_cast)]
use avian2d::{math::*, prelude::*};
use bevy::prelude::*;
use examples_common_2d::ExampleCommonPlugin;
fn main() {
App::new()
.add_plugins((
DefaultPlugins,
ExampleCommonPlugin,
// Add physics plugins and specify a units-per-meter scaling factor, 1 meter = 20 pixels.
// The unit allows the engine to tune its parameters for the scale of the world, improving stability.
PhysicsPlugins::default().with_length_unit(20.0),
))
.insert_resource(ClearColor(Color::srgb(0.05, 0.05, 0.1)))
.insert_resource(Gravity(Vector::NEG_Y * 9.81 * 100.0))
.add_systems(Startup, setup)
.add_systems(Update, movement)
.run();
}
#[derive(Component)]
struct Marble;
fn setup(
mut commands: Commands,
mut materials: ResMut<Assets<ColorMaterial>>,
mut meshes: ResMut<Assets<Mesh>>,
) {
commands.spawn(Camera2d);
let square_sprite = Sprite {
color: Color::srgb(0.7, 0.7, 0.8),
custom_size: Some(Vec2::splat(50.0)),
..default()
};
// Ceiling
commands.spawn((
square_sprite.clone(),
Transform::from_xyz(0.0, 50.0 * 6.0, 0.0).with_scale(Vec3::new(20.0, 1.0, 1.0)),
RigidBody::Static,
Collider::rectangle(50.0, 50.0),
));
// Floor
commands.spawn((
square_sprite.clone(),
Transform::from_xyz(0.0, -50.0 * 6.0, 0.0).with_scale(Vec3::new(20.0, 1.0, 1.0)),
RigidBody::Static,
Collider::rectangle(50.0, 50.0),
));
// Left wall
commands.spawn((
square_sprite.clone(),
Transform::from_xyz(-50.0 * 9.5, 0.0, 0.0).with_scale(Vec3::new(1.0, 11.0, 1.0)),
RigidBody::Static,
Collider::rectangle(50.0, 50.0),
));
// Right wall
commands.spawn((
square_sprite,
Transform::from_xyz(50.0 * 9.5, 0.0, 0.0).with_scale(Vec3::new(1.0, 11.0, 1.0)),
RigidBody::Static,
Collider::rectangle(50.0, 50.0),
));
let marble_radius = 5.0;
let marble_mesh = meshes.add(Circle::new(marble_radius));
let marble_material = materials.add(Color::srgb(0.2, 0.7, 0.9));
// Spawn stacks of marbles
for x in -16..16 {
for y in -16..16 {
commands.spawn((
Mesh2d(marble_mesh.clone()),
MeshMaterial2d(marble_material.clone()),
Transform::from_xyz(
x as f32 * 2.5 * marble_radius,
y as f32 * 2.5 * marble_radius,
0.0,
),
RigidBody::Dynamic,
Collider::circle(marble_radius as Scalar),
Marble,
));
}
}
}
fn movement(
time: Res<Time>,
keyboard_input: Res<ButtonInput<KeyCode>>,
mut marbles: Query<&mut LinearVelocity, With<Marble>>,
) {
// Precision is adjusted so that the example works with
// both the `f32` and `f64` features. Otherwise you don't need this.
let delta_time = time.delta_secs_f64().adjust_precision();
for mut linear_velocity in &mut marbles {
if keyboard_input.any_pressed([KeyCode::KeyW, KeyCode::ArrowUp]) {
// Use a higher acceleration for upwards movement to overcome gravity
linear_velocity.y += 2500.0 * delta_time;
}
if keyboard_input.any_pressed([KeyCode::KeyS, KeyCode::ArrowDown]) {
linear_velocity.y -= 500.0 * delta_time;
}
if keyboard_input.any_pressed([KeyCode::KeyA, KeyCode::ArrowLeft]) {
linear_velocity.x -= 500.0 * delta_time;
}
if keyboard_input.any_pressed([KeyCode::KeyD, KeyCode::ArrowRight]) {
linear_velocity.x += 500.0 * delta_time;
}
}
}