
using System;

using System.Collections.Generic;

using System.Text;

using System.Windows.Media.Animation;

using System.Windows;


namespace EaseMoveDemo



{

public class EaseMoveAnimation : DoubleAnimationBase


{


public static readonly DependencyProperty FromProperty = DependencyProperty.Register(

"From", typeof(double?), typeof(EaseMoveAnimation), new PropertyMetadata(null));


public static readonly DependencyProperty ToProperty = DependencyProperty.Register(

"To", typeof(double?), typeof(EaseMoveAnimation), new PropertyMetadata(null));


public static readonly DependencyProperty PowerProperty = DependencyProperty.Register(

"Power", typeof(double?), typeof(EaseMoveAnimation), new PropertyMetadata(null));


public double? From


{

get


{

return (double?)this.GetValue(EaseMoveAnimation.FromProperty);

}

set


{

this.SetValue(EaseMoveAnimation.FromProperty, value);

}

}


public double? To


{

get


{

return (double?)this.GetValue(EaseMoveAnimation.ToProperty);

}

set


{

this.SetValue(EaseMoveAnimation.ToProperty, value);

}

}



/**//// <summary>

/// 幂指数,值越大,曲线上点的斜率越大,加速度越大,设置为5时效果较好

/// </summary>

public double? Power


{

get


{

return (double?)this.GetValue(EaseMoveAnimation.PowerProperty);

}

set


{

this.SetValue(EaseMoveAnimation.PowerProperty, value);

}

}


protected override double GetCurrentValueCore(double defaultOriginValue, double defaultDestinationValue, AnimationClock animationClock)


{

double from = (this.From==null?defaultDestinationValue:(double)this.From);

double to = (this.To==null?defaultOriginValue:(double)this.To);

double delta = to - from;

double power = this.Power == null ? 2 : (double)this.Power;


//加速

return delta * Math.Pow(animationClock.CurrentProgress.Value, power) + from;

//return delta * Math.Pow(animationClock.CurrentProgress.Value, 1/power) + from;


//先加速后减速

//if (animationClock.CurrentProgress.Value < 0.5)

//{

// return delta / 2 * Math.Pow(animationClock.CurrentProgress.Value * 2, power) + from;

//}

//return delta / 2 * Math.Pow((animationClock.CurrentProgress.Value - 0.5) * 2, 1/power) + delta / 2 + from;

}



protected override System.Windows.Freezable CreateInstanceCore()


{

return new EaseMoveAnimation();

}

}

}