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 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021
//! Var animation types and functions.
use std::{mem, time::Duration};
use zng_app_context::context_local;
use zng_clone_move::clmv;
use zng_handle::{Handle, HandleOwner, WeakHandle};
use zng_time::{DInstant, Deadline, INSTANT};
use zng_unit::TimeUnits as _;
pub use zng_var_proc_macros::Transitionable;
use self::types::ArcCowVar;
use super::*;
pub mod easing;
#[derive(Default)]
pub(super) struct AnimationHandleData {
on_drop: Mutex<Vec<Box<dyn FnOnce() + Send>>>,
}
impl Drop for AnimationHandleData {
fn drop(&mut self) {
for f in self.on_drop.get_mut().drain(..) {
f()
}
}
}
/// Represents a running animation.
///
/// Drop all clones of this handle to stop the animation, or call [`perm`] to drop the handle
/// but keep the animation alive until it is stopped from the inside.
///
/// [`perm`]: AnimationHandle::perm
#[derive(Clone, PartialEq, Eq, Hash, Debug)]
#[repr(transparent)]
#[must_use = "the animation stops if the handle is dropped"]
pub struct AnimationHandle(Handle<AnimationHandleData>);
impl Default for AnimationHandle {
/// `dummy`.
fn default() -> Self {
Self::dummy()
}
}
impl AnimationHandle {
pub(super) fn new() -> (HandleOwner<AnimationHandleData>, Self) {
let (owner, handle) = Handle::new(AnimationHandleData::default());
(owner, AnimationHandle(handle))
}
/// Create dummy handle that is always in the *stopped* state.
///
/// Note that `Option<AnimationHandle>` takes up the same space as `AnimationHandle` and avoids an allocation.
pub fn dummy() -> Self {
AnimationHandle(Handle::dummy(AnimationHandleData::default()))
}
/// Drops the handle but does **not** stop.
///
/// The animation stays in memory for the duration of the app or until another handle calls [`stop`](Self::stop).
pub fn perm(self) {
self.0.perm();
}
/// If another handle has called [`perm`](Self::perm).
///
/// If `true` the animation will stay active until the app exits, unless [`stop`](Self::stop) is called.
pub fn is_permanent(&self) -> bool {
self.0.is_permanent()
}
/// Drops the handle and forces the animation to drop.
pub fn stop(self) {
self.0.force_drop();
}
/// If another handle has called [`stop`](Self::stop).
///
/// The animation is already dropped or will be dropped in the next app update, this is irreversible.
pub fn is_stopped(&self) -> bool {
self.0.is_dropped()
}
/// Create a weak handle.
pub fn downgrade(&self) -> WeakAnimationHandle {
WeakAnimationHandle(self.0.downgrade())
}
/// Register a `handler` to be called once when the animation stops.
///
/// Returns the `handler` if the animation has already stopped.
///
/// [`importance`]: ModifyInfo::importance
pub fn hook_animation_stop(&self, handler: Box<dyn FnOnce() + Send>) -> Result<(), Box<dyn FnOnce() + Send>> {
if !self.is_stopped() {
self.0.data().on_drop.lock().push(handler);
Ok(())
} else {
Err(handler)
}
}
}
/// Weak [`AnimationHandle`].
#[derive(Clone, PartialEq, Eq, Hash, Default, Debug)]
pub struct WeakAnimationHandle(pub(super) WeakHandle<AnimationHandleData>);
impl WeakAnimationHandle {
/// New weak handle that does not upgrade.
pub fn new() -> Self {
Self(WeakHandle::new())
}
/// Get the animation handle if it is still animating.
pub fn upgrade(&self) -> Option<AnimationHandle> {
self.0.upgrade().map(AnimationHandle)
}
}
struct AnimationData {
start_time: DInstant,
restart_count: usize,
stop: bool,
sleep: Option<Deadline>,
animations_enabled: bool,
force_enabled: bool,
now: DInstant,
time_scale: Factor,
}
/// Represents an animation in its closure.
///
/// See the [`VARS.animate`] method for more details.
///
/// [`VARS.animate`]: VARS::animate
#[derive(Clone)]
pub struct Animation(Arc<Mutex<AnimationData>>);
impl Animation {
pub(super) fn new(animations_enabled: bool, now: DInstant, time_scale: Factor) -> Self {
Animation(Arc::new(Mutex::new(AnimationData {
start_time: now,
restart_count: 0,
stop: false,
now,
sleep: None,
animations_enabled,
force_enabled: false,
time_scale,
})))
}
/// The instant this animation (re)started.
pub fn start_time(&self) -> DInstant {
self.0.lock().start_time
}
/// The instant the current animation update started.
///
/// Use this value instead of [`INSTANT.now`], animations update sequentially, but should behave as if
/// they are updating exactly in parallel, using this timestamp ensures that.
///
/// [`INSTANT.now`]: zng_time::INSTANT::now
pub fn now(&self) -> DInstant {
self.0.lock().now
}
/// Global time scale for animations.
pub fn time_scale(&self) -> Factor {
self.0.lock().time_scale
}
pub(crate) fn reset_state(&self, enabled: bool, now: DInstant, time_scale: Factor) {
let mut m = self.0.lock();
if !m.force_enabled {
m.animations_enabled = enabled;
}
m.now = now;
m.time_scale = time_scale;
m.sleep = None;
}
pub(crate) fn reset_sleep(&self) {
self.0.lock().sleep = None;
}
/// Set the duration to the next animation update. The animation will *sleep* until `duration` elapses.
///
/// The animation awakes in the next [`VARS.frame_duration`] after the `duration` elapses. The minimum
/// possible `duration` is the frame duration, shorter durations behave the same as if not set.
///
/// [`VARS.frame_duration`]: VARS::frame_duration
pub fn sleep(&self, duration: Duration) {
let mut me = self.0.lock();
me.sleep = Some(Deadline(me.now + duration));
}
pub(crate) fn sleep_deadline(&self) -> Option<Deadline> {
self.0.lock().sleep
}
/// Returns a value that indicates if animations are enabled in the operating system.
///
/// If `false` all animations must be skipped to the end, users with photo-sensitive epilepsy disable animations system wide.
pub fn animations_enabled(&self) -> bool {
self.0.lock().animations_enabled
}
/// Set [`animations_enabled`] to `true`.
///
/// This should only be used for animations that are component of an app feature, cosmetic animations must not force enable.
///
/// [`animations_enabled`]: VARS::animations_enabled
pub fn force_enable(&self) {
let mut me = self.0.lock();
me.force_enabled = true;
me.animations_enabled = true;
}
/// Compute the time elapsed from [`start_time`] to [`now`].
///
/// [`start_time`]: Self::start_time
/// [`now`]: Self::now
pub fn elapsed_dur(&self) -> Duration {
let me = self.0.lock();
me.now - me.start_time
}
/// Compute the elapsed [`EasingTime`], in the span of the total `duration`, if [`animations_enabled`].
///
/// If animations are disabled, returns [`EasingTime::end`], the returned time is scaled.
///
/// [`animations_enabled`]: Self::animations_enabled
pub fn elapsed(&self, duration: Duration) -> EasingTime {
let me = self.0.lock();
if me.animations_enabled {
EasingTime::elapsed(duration, me.now - me.start_time, me.time_scale)
} else {
EasingTime::end()
}
}
/// Compute the elapsed [`EasingTime`], if the time [`is_end`] requests animation stop.
///
/// [`is_end`]: EasingTime::is_end
pub fn elapsed_stop(&self, duration: Duration) -> EasingTime {
let t = self.elapsed(duration);
if t.is_end() {
self.stop()
}
t
}
/// Compute the elapsed [`EasingTime`], if the time [`is_end`] restarts the animation.
///
/// [`is_end`]: EasingTime::is_end
pub fn elapsed_restart(&self, duration: Duration) -> EasingTime {
let t = self.elapsed(duration);
if t.is_end() {
self.restart()
}
t
}
/// Compute the elapsed [`EasingTime`], if the time [`is_end`] restarts the animation, repeats until has
/// restarted `max_restarts` inclusive, then stops the animation.
///
/// [`is_end`]: EasingTime::is_end
pub fn elapsed_restart_stop(&self, duration: Duration, max_restarts: usize) -> EasingTime {
let t = self.elapsed(duration);
if t.is_end() {
if self.restart_count() < max_restarts {
self.restart();
} else {
self.stop();
}
}
t
}
/// Drop the animation after applying the current update.
pub fn stop(&self) {
self.0.lock().stop = true;
}
/// If the animation will be dropped after applying the update.
pub fn stop_requested(&self) -> bool {
self.0.lock().stop
}
/// Set the animation start time to now.
pub fn restart(&self) {
let now = self.0.lock().now;
self.set_start_time(now);
let mut me = self.0.lock();
me.restart_count += 1;
}
/// Number of times the animation restarted.
pub fn restart_count(&self) -> usize {
self.0.lock().restart_count
}
/// Change the start time to an arbitrary value.
///
/// Note that this does not affect the restart count.
pub fn set_start_time(&self, instant: DInstant) {
self.0.lock().start_time = instant;
}
/// Change the start to an instant that computes the `elapsed` for the `duration` at the moment
/// this method is called.
///
/// Note that this does not affect the restart count.
pub fn set_elapsed(&self, elapsed: EasingTime, duration: Duration) {
let now = self.0.lock().now;
self.set_start_time(now.checked_sub(duration * elapsed.fct()).unwrap());
}
}
/// Represents a type that can be animated between two values.
///
/// This trait is auto-implemented for all [`Copy`] types that can add, subtract and multiply by [`Factor`], [`Clone`]
/// only types must implement this trait manually.
///
/// [`Factor`]: zng_unit::Factor
pub trait Transitionable: VarValue {
/// Sample the linear interpolation from `self` -> `to` by `step`.
fn lerp(self, to: &Self, step: EasingStep) -> Self;
}
/// Represents a simple transition between two values.
pub struct Transition<T> {
/// Value sampled at the `0.fct()` step.
pub from: T,
///
/// Value sampled at the `1.fct()` step.
pub to: T,
}
impl<T> Transition<T>
where
T: Transitionable,
{
/// New transition.
pub fn new(from: T, to: T) -> Self {
Self { from, to }
}
/// Compute the transition value at the `step`.
pub fn sample(&self, step: EasingStep) -> T {
self.from.clone().lerp(&self.to, step)
}
}
/// Represents a transition across multiple keyed values that can be sampled using [`EasingStep`].
#[derive(Clone, Debug)]
pub struct TransitionKeyed<T> {
keys: Vec<(Factor, T)>,
}
impl<T> TransitionKeyed<T>
where
T: Transitionable,
{
/// New transition.
///
/// Returns `None` if `keys` is empty.
pub fn new(mut keys: Vec<(Factor, T)>) -> Option<Self> {
if keys.is_empty() {
return None;
}
// correct backtracking keyframes.
for i in 1..keys.len() {
if keys[i].0 < keys[i - 1].0 {
keys[i].0 = keys[i - 1].0;
}
}
Some(TransitionKeyed { keys })
}
/// Keyed values.
pub fn keys(&self) -> &[(Factor, T)] {
&self.keys
}
/// Compute the transition value at the `step`.
pub fn sample(&self, step: EasingStep) -> T {
if let Some(i) = self.keys.iter().position(|(f, _)| *f > step) {
if i == 0 {
// step before first
self.keys[0].1.clone()
} else {
let (from_step, from_value) = self.keys[i - 1].clone();
if from_step == step {
// step exact key
from_value
} else {
// linear interpolate between steps
let (_, to_value) = &self.keys[i];
let step = step - from_step;
from_value.lerp(to_value, step)
}
}
} else {
// step is after last
self.keys[self.keys.len() - 1].1.clone()
}
}
}
pub(super) struct Animations {
animations: Mutex<Vec<AnimationFn>>,
animation_imp: usize,
pub(super) current_modify: ModifyInfo,
pub(super) animation_start_time: Option<DInstant>,
next_frame: Option<Deadline>,
pub(super) animations_enabled: ArcCowVar<bool, ArcVar<bool>>,
pub(super) sys_animations_enabled: ArcVar<bool>,
pub(super) frame_duration: ArcVar<Duration>,
pub(super) animation_time_scale: ArcVar<Factor>,
}
impl Animations {
pub(crate) fn new() -> Self {
let sys_animations_enabled = var(true);
Self {
animations: Mutex::default(),
animation_imp: 1,
current_modify: ModifyInfo {
handle: None,
importance: 1,
},
animation_start_time: None,
next_frame: None,
animations_enabled: sys_animations_enabled.cow(),
sys_animations_enabled,
frame_duration: var((1.0 / 60.0).secs()),
animation_time_scale: var(1.fct()),
}
}
pub(super) fn update_animations(timer: &mut impl AnimationTimer) {
let mut vars = VARS_SV.write();
if let Some(next_frame) = vars.ans.next_frame {
if timer.elapsed(next_frame) {
let mut animations = mem::take(vars.ans.animations.get_mut());
debug_assert!(!animations.is_empty());
let info = AnimationUpdateInfo {
animations_enabled: vars.ans.animations_enabled.get(),
time_scale: vars.ans.animation_time_scale.get(),
now: timer.now(),
next_frame: next_frame + vars.ans.frame_duration.get(),
};
let mut min_sleep = Deadline(info.now + Duration::from_secs(60 * 60));
drop(vars);
animations.retain_mut(|animate| {
if let Some(sleep) = animate(info) {
min_sleep = min_sleep.min(sleep);
true
} else {
false
}
});
let mut vars = VARS_SV.write();
let self_animations = vars.ans.animations.get_mut();
if !self_animations.is_empty() {
min_sleep = Deadline(info.now);
}
animations.append(self_animations);
*self_animations = animations;
if !self_animations.is_empty() {
vars.ans.next_frame = Some(min_sleep);
timer.register(min_sleep);
} else {
vars.ans.next_frame = None;
}
}
}
}
pub(super) fn next_deadline(timer: &mut impl AnimationTimer) {
if let Some(next_frame) = VARS_SV.read().ans.next_frame {
timer.register(next_frame);
}
}
pub(crate) fn animate<A>(mut animation: A) -> AnimationHandle
where
A: FnMut(&Animation) + Send + 'static,
{
let mut vars = VARS_SV.write();
// # Modify Importance
//
// Variables only accept modifications from an importance (IMP) >= the previous IM that modified it.
//
// Direct modifications always overwrite previous animations, so we advance the IMP for each call to
// this method **and then** advance the IMP again for all subsequent direct modifications.
//
// Example sequence of events:
//
// |IM| Modification | Accepted
// |--|---------------|----------
// | 1| Var::set | YES
// | 2| Var::ease | YES
// | 2| ease update | YES
// | 3| Var::set | YES
// | 3| Var::set | YES
// | 2| ease update | NO
// | 4| Var::ease | YES
// | 2| ease update | NO
// | 4| ease update | YES
// | 5| Var::set | YES
// | 2| ease update | NO
// | 4| ease update | NO
// ensure that all animations started in this update have the same exact time, we update then with the same `now`
// timestamp also, this ensures that synchronized animations match perfectly.
let start_time = if let Some(t) = vars.ans.animation_start_time {
t
} else {
let t = INSTANT.now();
vars.ans.animation_start_time = Some(t);
t
};
let mut anim_imp = None;
if let Some(c) = VARS_MODIFY_CTX.get_clone() {
if c.is_animating() {
// nested animation uses parent importance.
anim_imp = Some(c.importance);
}
}
let anim_imp = match anim_imp {
Some(i) => i,
None => {
// not nested, advance base imp
let mut imp = vars.ans.animation_imp.wrapping_add(1);
if imp == 0 {
imp = 1;
}
let mut next_imp = imp.wrapping_add(1);
if next_imp == 0 {
next_imp = 1;
}
vars.ans.animation_imp = next_imp;
vars.ans.current_modify.importance = next_imp;
imp
}
};
let (handle_owner, handle) = AnimationHandle::new();
let weak_handle = handle.downgrade();
let controller = VARS_ANIMATION_CTRL_CTX.get();
let anim = Animation::new(vars.ans.animations_enabled.get(), start_time, vars.ans.animation_time_scale.get());
drop(vars);
controller.on_start(&anim);
let mut controller = Some(controller);
let mut anim_modify_info = Some(Arc::new(Some(ModifyInfo {
handle: Some(weak_handle.clone()),
importance: anim_imp,
})));
let mut vars = VARS_SV.write();
vars.ans.animations.get_mut().push(Box::new(move |info| {
let _handle_owner = &handle_owner; // capture and own the handle owner.
if weak_handle.upgrade().is_some() {
if anim.stop_requested() {
// drop
controller.as_ref().unwrap().on_stop(&anim);
return None;
}
if let Some(sleep) = anim.sleep_deadline() {
if sleep > info.next_frame {
// retain sleep
return Some(sleep);
} else if sleep.0 > info.now {
// sync-up to frame rate after sleep
anim.reset_sleep();
return Some(info.next_frame);
}
}
anim.reset_state(info.animations_enabled, info.now, info.time_scale);
VARS_ANIMATION_CTRL_CTX.with_context(&mut controller, || {
VARS_MODIFY_CTX.with_context(&mut anim_modify_info, || animation(&anim))
});
// retain until next frame
//
// stop or sleep may be requested after this (during modify apply),
// these updates are applied on the next frame.
Some(info.next_frame)
} else {
// drop
controller.as_ref().unwrap().on_stop(&anim);
None
}
}));
vars.ans.next_frame = Some(Deadline(DInstant::EPOCH));
vars.wake_app();
handle
}
}
type AnimationFn = Box<dyn FnMut(AnimationUpdateInfo) -> Option<Deadline> + Send>;
#[derive(Clone, Copy)]
struct AnimationUpdateInfo {
animations_enabled: bool,
now: DInstant,
time_scale: Factor,
next_frame: Deadline,
}
pub(super) fn var_animate<T: VarValue>(
target: &impl Var<T>,
animate: impl FnMut(&Animation, &mut VarModify<T>) + Send + 'static,
) -> AnimationHandle {
if !target.capabilities().is_always_read_only() {
let target = target.clone().actual_var();
if !target.capabilities().is_always_read_only() {
// target var can be animated.
let wk_target = target.downgrade();
let animate = Arc::new(Mutex::new(animate));
return VARS.animate(move |args| {
// animation
if let Some(target) = wk_target.upgrade() {
// target still exists
if target.modify_importance() > VARS.current_modify().importance {
// var modified by a more recent animation or directly, this animation cannot
// affect it anymore.
args.stop();
return;
}
// try update
let r = target.modify(clmv!(animate, args, |value| {
(animate.lock())(&args, value);
}));
if let Err(VarIsReadOnlyError { .. }) = r {
// var can maybe change to allow write again, but we wipe all animations anyway.
args.stop();
}
} else {
// target dropped.
args.stop();
}
});
}
}
AnimationHandle::dummy()
}
pub(super) fn var_sequence<T: VarValue, V: Var<T>>(
target: &V,
animate: impl FnMut(&<<V::ActualVar as Var<T>>::Downgrade as WeakVar<T>>::Upgrade) -> AnimationHandle + Send + 'static,
) -> VarHandle {
if !target.capabilities().is_always_read_only() {
let target = target.clone().actual_var();
if !target.capabilities().is_always_read_only() {
// target var can be animated.
let (handle, handle_hook) = VarHandle::new(Box::new(|_| true));
let wk_target = target.downgrade();
#[derive(Clone)]
struct SequenceController(Arc<dyn Fn() + Send + Sync + 'static>);
impl AnimationController for SequenceController {
fn on_stop(&self, _: &Animation) {
let ctrl = self.clone();
VARS.with_animation_controller(ctrl, || (self.0)());
}
}
let animate = Mutex::new(animate);
let animate = Arc::new(move || {
if let Some(target) = wk_target.upgrade() {
if target.modify_importance() <= VARS.current_modify().importance()
&& handle_hook.is_alive()
&& VARS.animations_enabled().get()
{
(animate.lock())(&target).perm();
}
}
});
VARS.with_animation_controller(SequenceController(animate.clone()), || {
animate();
});
return handle;
}
}
VarHandle::dummy()
}
pub(super) fn var_set_ease_with<T>(
start_value: T,
end_value: T,
duration: Duration,
easing: impl Fn(EasingTime) -> EasingStep + Send + 'static,
init_step: EasingStep, // set to 0 skips first frame, set to 999 includes first frame.
sampler: impl Fn(&Transition<T>, EasingStep) -> T + Send + 'static,
) -> impl FnMut(&Animation, &mut VarModify<T>) + Send
where
T: VarValue + Transitionable,
{
let transition = Transition::new(start_value, end_value);
let mut prev_step = init_step;
move |a, vm| {
let step = easing(a.elapsed_stop(duration));
if prev_step != step {
vm.set(sampler(&transition, step));
prev_step = step;
}
}
}
pub(super) fn var_set_ease_oci_with<T>(
start_value: T,
end_value: T,
duration: Duration,
easing: impl Fn(EasingTime) -> EasingStep + Send + 'static,
init_step: EasingStep, // set to 0 skips first frame, set to 999 includes first frame.
sampler: impl Fn(&Transition<T>, EasingStep) -> T + Send + 'static,
) -> impl FnMut(&Animation, &mut VarModify<T>) + Send
where
T: VarValue + Transitionable,
{
let transition = Transition::new(start_value, end_value);
let mut prev_step = init_step;
move |a, vm| {
let t = a.elapsed(duration);
let mut step = easing(t);
if a.restart_count() % 2 != 0 {
step = step.flip()
}
if t.is_end() {
a.restart();
}
if prev_step != step {
vm.set(sampler(&transition, step));
prev_step = step;
}
}
}
pub(super) fn var_set_ease_keyed_with<T>(
transition: TransitionKeyed<T>,
duration: Duration,
easing: impl Fn(EasingTime) -> EasingStep + Send + 'static,
init_step: EasingStep,
sampler: impl Fn(&TransitionKeyed<T>, EasingStep) -> T + Send + 'static,
) -> impl FnMut(&Animation, &mut VarModify<T>) + Send
where
T: VarValue + Transitionable,
{
let mut prev_step = init_step;
move |a, value| {
let step = easing(a.elapsed_stop(duration));
if prev_step != step {
value.set(sampler(&transition, step));
prev_step = step;
}
}
}
pub(super) fn var_step<T>(new_value: T, delay: Duration) -> impl FnMut(&Animation, &mut VarModify<T>)
where
T: VarValue,
{
let mut new_value = Some(new_value);
move |a, vm| {
if !a.animations_enabled() || a.elapsed_dur() >= delay {
a.stop();
if let Some(nv) = new_value.take() {
vm.set(nv);
}
} else {
a.sleep(delay);
}
}
}
pub(super) fn var_step_oci<T>(values: [T; 2], delay: Duration, mut set: bool) -> impl FnMut(&Animation, &mut VarModify<T>)
where
T: VarValue,
{
let mut first = false;
move |a, vm| {
if !a.animations_enabled() || mem::take(&mut set) {
vm.set(values[0].clone());
} else if a.elapsed_dur() >= delay {
if first {
vm.set(values[0].clone());
} else {
vm.set(values[1].clone());
}
first = !first;
}
a.sleep(delay);
}
}
pub(super) fn var_steps<T: VarValue>(
steps: Vec<(Factor, T)>,
duration: Duration,
easing: impl Fn(EasingTime) -> EasingStep + 'static,
) -> impl FnMut(&Animation, &mut VarModify<T>) {
let mut prev_step = 999.fct();
move |a, vm| {
let step = easing(a.elapsed_stop(duration));
if step != prev_step {
prev_step = step;
if let Some(val) = steps.iter().find(|(f, _)| *f >= step).map(|(_, step)| step.clone()) {
vm.set(val);
}
}
}
}
/// Represents the editable final value of a [`Var::chase`] animation.
pub struct ChaseAnimation<T: VarValue + animation::Transitionable> {
target: T,
var: BoxedVar<T>,
handle: animation::AnimationHandle,
}
impl<T> fmt::Debug for ChaseAnimation<T>
where
T: VarValue + animation::Transitionable,
{
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("ChaseAnimation")
.field("target", &self.target)
.finish_non_exhaustive()
}
}
impl<T> ChaseAnimation<T>
where
T: VarValue + animation::Transitionable,
{
/// Current animation target.
pub fn target(&self) -> &T {
&self.target
}
/// Modify the chase target, replaces the animation with a new one from the current value to the modified target.
pub fn modify(&mut self, modify: impl FnOnce(&mut T), duration: Duration, easing: impl Fn(EasingTime) -> EasingStep + Send + 'static) {
if self.handle.is_stopped() {
// re-sync target
self.target = self.var.get();
}
modify(&mut self.target);
self.handle = self.var.ease(self.target.clone(), duration, easing);
}
/// Replace the chase target, replaces the animation with a new one from the current value to the modified target.
pub fn set(&mut self, value: impl Into<T>, duration: Duration, easing: impl Fn(EasingTime) -> EasingStep + Send + 'static) {
self.target = value.into();
self.handle = self.var.ease(self.target.clone(), duration, easing);
}
}
pub(super) fn var_chase<T>(
var: BoxedVar<T>,
first_target: T,
duration: Duration,
easing: impl Fn(EasingTime) -> EasingStep + Send + 'static,
) -> ChaseAnimation<T>
where
T: VarValue + animation::Transitionable,
{
ChaseAnimation {
handle: var.ease(first_target.clone(), duration, easing),
target: first_target,
var,
}
}
/// Represents the current *modify* operation when it is applying.
#[derive(Clone)]
pub struct ModifyInfo {
handle: Option<WeakAnimationHandle>,
pub(crate) importance: usize,
}
impl ModifyInfo {
/// Initial value, is always of lowest importance.
pub fn never() -> Self {
ModifyInfo {
handle: None,
importance: 0,
}
}
/// Indicates the *override* importance of the operation, when two animations target
/// a variable only the newer one must apply, and all running animations are *overridden* by
/// a later modify/set operation.
///
/// Variables ignore modify requests from lower importance closures.
pub fn importance(&self) -> usize {
self.importance
}
/// Indicates if the *modify* request was made from inside an animation, if `true` the [`importance`]
/// is for that animation, even if the modify request is from the current frame.
///
/// You can clone this info to track this animation, when it stops or is dropped this returns `false`. Note
/// that sleeping animations still count as animating.
///
/// [`importance`]: Self::importance
pub fn is_animating(&self) -> bool {
self.handle.as_ref().map(|h| h.upgrade().is_some()).unwrap_or(false)
}
/// Returns `true` if `self` and `other` have the same animation or are both not animating.
pub fn animation_eq(&self, other: &Self) -> bool {
self.handle == other.handle
}
/// Register a `handler` to be called once when the current animation stops.
///
/// [`importance`]: Self::importance
pub fn hook_animation_stop(&self, handler: Box<dyn FnOnce() + Send>) -> Result<(), Box<dyn FnOnce() + Send>> {
if let Some(h) = &self.handle {
if let Some(h) = h.upgrade() {
return h.hook_animation_stop(handler);
}
}
Err(handler)
}
}
impl fmt::Debug for ModifyInfo {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("ModifyInfo")
.field("is_animating()", &self.is_animating())
.field("importance()", &self.importance)
.finish()
}
}
/// Animations controller.
///
/// See [`VARS.with_animation_controller`] for more details.
///
/// [`VARS.with_animation_controller`]: VARS::with_animation_controller
pub trait AnimationController: Send + Sync + Any {
/// Called for each `animation` that starts in the controller context.
///
/// Note that this handler itself is not called inside the controller context.
fn on_start(&self, animation: &Animation) {
let _ = animation;
}
/// Called for each `animation` that ends in the controller context.
///
/// Note that this handler itself is not called inside the controller context.
fn on_stop(&self, animation: &Animation) {
let _ = animation;
}
}
impl AnimationController for () {}
/// An [`AnimationController`] that forces animations to run even if animations are not enabled.
pub struct ForceAnimationController;
impl AnimationController for ForceAnimationController {
fn on_start(&self, animation: &Animation) {
animation.force_enable();
}
}
context_local! {
pub(crate) static VARS_ANIMATION_CTRL_CTX: Box<dyn AnimationController> = {
let r: Box<dyn AnimationController> = Box::new(());
r
};
}
/// View on an app loop timer.
pub trait AnimationTimer {
/// Returns `true` if the `deadline` has elapsed, `false` if the `deadline` was
/// registered for future waking.
fn elapsed(&mut self, deadline: Deadline) -> bool;
/// Register the future `deadline` for waking.
fn register(&mut self, deadline: Deadline);
/// Frame timestamp.
fn now(&self) -> DInstant;
}