-
Notifications
You must be signed in to change notification settings - Fork 65
/
sequence.rs
228 lines (206 loc) · 6.93 KB
/
sequence.rs
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
use bevy::{color::palettes::css::*, prelude::*};
use bevy_tweening::{lens::*, *};
use std::time::Duration;
mod utils;
fn main() {
App::default()
.add_plugins(DefaultPlugins.set(WindowPlugin {
primary_window: Some(Window {
title: "Sequence".to_string(),
resolution: (600., 600.).into(),
present_mode: bevy::window::PresentMode::Fifo, // vsync
..default()
}),
..default()
}))
.add_systems(Update, utils::close_on_esc)
.add_plugins(TweeningPlugin)
.add_systems(Startup, setup)
.add_systems(Update, update_text)
.run();
}
#[derive(Component)]
struct RedProgress;
#[derive(Component)]
struct BlueProgress;
#[derive(Component)]
struct RedSprite;
#[derive(Component)]
struct BlueSprite;
fn setup(mut commands: Commands, asset_server: Res<AssetServer>) {
commands.spawn(Camera2dBundle::default());
let font = asset_server.load("fonts/FiraMono-Regular.ttf");
let text_style_red = TextStyle {
font: font.clone(),
font_size: 50.0,
color: RED.into(),
};
let text_style_blue = TextStyle {
font,
font_size: 50.0,
color: BLUE.into(),
};
let justify = JustifyText::Center;
// Text with the index of the active tween in the sequence
commands.spawn((
Text2dBundle {
text: Text {
sections: vec![
TextSection {
value: "progress: ".to_owned(),
style: text_style_red.clone(),
},
TextSection {
value: "0%".to_owned(),
style: text_style_red,
},
],
justify,
..default()
},
transform: Transform::from_translation(Vec3::new(0., 40., 0.)),
..default()
},
RedProgress,
));
// Text with progress of the active tween in the sequence
commands.spawn((
Text2dBundle {
text: Text {
sections: vec![
TextSection {
value: "progress: ".to_owned(),
style: text_style_blue.clone(),
},
TextSection {
value: "0%".to_owned(),
style: text_style_blue,
},
],
justify,
..default()
},
transform: Transform::from_translation(Vec3::new(0., -40., 0.)),
..default()
},
BlueProgress,
));
let size = 25.;
let margin = 40.;
let screen_x = 600.;
let screen_y = 600.;
let center = Vec3::new(screen_x / 2., screen_y / 2., 0.);
// Run around the window from corner to corner
let dests = &[
Vec3::new(margin, margin, 0.),
Vec3::new(screen_x - margin, margin, 0.),
Vec3::new(screen_x - margin, screen_y - margin, 0.),
Vec3::new(margin, screen_y - margin, 0.),
Vec3::new(margin, margin, 0.),
];
// Build a sequence from an iterator over a Tweenable (here, a
// Tracks<Transform>)
let seq = Sequence::new(dests.windows(2).enumerate().map(|(index, pair)| {
Tracks::new([
Tween::new(
EaseFunction::QuadraticInOut,
Duration::from_millis(250),
TransformRotateZLens {
start: 0.,
end: 180_f32.to_radians(),
},
)
.with_repeat_count(RepeatCount::Finite(4))
.with_repeat_strategy(RepeatStrategy::MirroredRepeat),
Tween::new(
EaseFunction::QuadraticInOut,
Duration::from_secs(1),
TransformPositionLens {
start: pair[0] - center,
end: pair[1] - center,
},
)
// Get an event after each segment
.with_completed_event(index as u64),
])
}));
commands.spawn((
SpriteBundle {
sprite: Sprite {
color: RED.into(),
custom_size: Some(Vec2::new(size, size)),
..default()
},
..default()
},
RedSprite,
Animator::new(seq),
));
// First move from left to right, then rotate around self 180 degrees while
// scaling size at the same time.
let tween_move = Tween::new(
EaseFunction::QuadraticInOut,
Duration::from_secs(1),
TransformPositionLens {
start: Vec3::new(-200., 100., 0.),
end: Vec3::new(200., 100., 0.),
},
)
.with_completed_event(99); // Get an event once move completed
let tween_rotate = Tween::new(
EaseFunction::QuadraticInOut,
Duration::from_secs(1),
TransformRotationLens {
start: Quat::IDENTITY,
end: Quat::from_rotation_z(180_f32.to_radians()),
},
);
let tween_scale = Tween::new(
EaseFunction::QuadraticInOut,
Duration::from_secs(1),
TransformScaleLens {
start: Vec3::ONE,
end: Vec3::splat(2.0),
},
);
// Build parallel tracks executing two tweens at the same time: rotate and
// scale.
let tracks = Tracks::new([tween_rotate, tween_scale]);
// Build a sequence from an heterogeneous list of tweenables by casting them
// manually to a BoxedTweenable: first move, then { rotate + scale }.
let seq2 = Sequence::new([Box::new(tween_move) as BoxedTweenable<_>, tracks.into()]);
commands.spawn((
SpriteBundle {
sprite: Sprite {
color: BLUE.into(),
custom_size: Some(Vec2::new(size * 3., size)),
..default()
},
..Default::default()
},
BlueSprite,
Animator::new(seq2),
));
}
fn update_text(
mut query_text_red: Query<&mut Text, (With<RedProgress>, Without<BlueProgress>)>,
mut query_text_blue: Query<&mut Text, (With<BlueProgress>, Without<RedProgress>)>,
query_anim_red: Query<&Animator<Transform>, With<RedSprite>>,
query_anim_blue: Query<&Animator<Transform>, With<BlueSprite>>,
mut query_event: EventReader<TweenCompleted>,
) {
let anim_red = query_anim_red.single();
let progress_red = anim_red.tweenable().progress();
let anim_blue = query_anim_blue.single();
let progress_blue = anim_blue.tweenable().progress();
let mut red_text = query_text_red.single_mut();
red_text.sections[1].value = format!("{:5.1}%", progress_red * 100.);
let mut blue_text = query_text_blue.single_mut();
blue_text.sections[1].value = format!("{:5.1}%", progress_blue * 100.);
for ev in query_event.read() {
println!(
"Event: TweenCompleted entity={:?} user_data={}",
ev.entity, ev.user_data
);
}
}