| @@ -0,0 +1,41 | |||
| 
             | 
        1 | using System; | |
| 
             | 
        2 | using System.Collections.Generic; | |
| 
             | 
        3 | using System.Linq; | |
| 
             | 
        4 | using System.Text; | |
| 
             | 
        5 | using System.Windows.Forms; | |
| 
             | 
        6 | using System.Diagnostics; | |
| 
             | 
        7 | ||
| 
             | 
        8 | namespace Implab.Fx | |
| 
             | 
        9 | { | |
| 
             | 
        10 | public static class AnimationHelpers | |
| 
             | 
        11 | { | |
| 
             | 
        12 | public static Animation<TTarget> AnimateProperty<TTarget,TVal>(this Animation<TTarget> animation, Action<TTarget,TVal> setter, Func<TTarget,TVal> getter, TVal newValue, Func<TVal,TVal,int,int,TVal> fx) where TTarget: class | |
| 
             | 
        13 | { | |
| 
             | 
        14 | if (animation == null) | |
| 
             | 
        15 | throw new ArgumentNullException("animation"); | |
| 
             | 
        16 | ||
| 
             | 
        17 | TVal oldValue = getter(animation.Traget); | |
| 
             | 
        18 | ||
| 
             | 
        19 | animation.Step += (target, elaped, duration) => | |
| 
             | 
        20 | { | |
| 
             | 
        21 | var value = fx(oldValue, newValue, elaped, duration); | |
| 
             | 
        22 | setter(target, value); | |
| 
             | 
        23 | }; | |
| 
             | 
        24 | ||
| 
             | 
        25 | return animation; | |
| 
             | 
        26 | } | |
| 
             | 
        27 | ||
| 
             | 
        28 | public static Animation<Form> AnimateTransparency(this Form ctl, float newValue) | |
| 
             | 
        29 | { | |
| 
             | 
        30 | var anim = new Animation<Form>(ctl); | |
| 
             | 
        31 | ||
| 
             | 
        32 | anim.AnimateProperty( | |
| 
             | 
        33 | (target, value) => target.Opacity = value, | |
| 
             | 
        34 | target => target.Opacity, | |
| 
             | 
        35 | newValue, | |
| 
             | 
        36 | (ov, nv, el, du) => ov + ((float)el / du) * (nv - ov) | |
| 
             | 
        37 | ); | |
| 
             | 
        38 | return anim; | |
| 
             | 
        39 | } | |
| 
             | 
        40 | } | |
| 
             | 
        41 | } | |
| @@ -0,0 +1,95 | |||
| 
             | 
        1 | using System; | |
| 
             | 
        2 | using System.Collections.Generic; | |
| 
             | 
        3 | using System.Linq; | |
| 
             | 
        4 | using System.Text; | |
| 
             | 
        5 | using System.Windows.Forms; | |
| 
             | 
        6 | using System.Threading; | |
| 
             | 
        7 | ||
| 
             | 
        8 | namespace Implab.Fx | |
| 
             | 
        9 | { | |
| 
             | 
        10 | public static class PromiseHelpers | |
| 
             | 
        11 | { | |
| 
             | 
        12 | /// <summary> | |
| 
             | 
        13 | /// Перенаправляет обработку обещания в поток указанного элемента управления. | |
| 
             | 
        14 | /// </summary> | |
| 
             | 
        15 | /// <typeparam name="T">Тип результата обещания</typeparam> | |
| 
             | 
        16 | /// <param name="that">Исходное обещание</param> | |
| 
             | 
        17 | /// <param name="ctl">Элемент управления</param> | |
| 
             | 
        18 | /// <returns>Новое обещание, обработчики которого будут выполнены в потоке элемента управления.</returns> | |
| 
             | 
        19 | /// <exception cref="ArgumentNullException">Параметр не может быть <c>null</c>.</exception> | |
| 
             | 
        20 | /// <example> | |
| 
             | 
        21 | /// client | |
| 
             | 
        22 | /// .Get("description.txt") // returns a promise | |
| 
             | 
        23 | /// .DirectToControl(m_ctl) // handle the promise in the thread of the control | |
| 
             | 
        24 | /// .Then( | |
| 
             | 
        25 | /// description => m_ctl.Text = description // now it's safe | |
| 
             | 
        26 | /// ) | |
| 
             | 
        27 | /// </example> | |
| 
             | 
        28 | public static Promise<T> DispatchToControl<T>(this Promise<T> that, Control ctl) | |
| 
             | 
        29 | { | |
| 
             | 
        30 | if (that == null) | |
| 
             | 
        31 | throw new ArgumentNullException("that"); | |
| 
             | 
        32 | if (ctl == null) | |
| 
             | 
        33 | throw new ArgumentNullException("ctl"); | |
| 
             | 
        34 | ||
| 
             | 
        35 | var directed = new Promise<T>(); | |
| 
             | 
        36 | ||
| 
             | 
        37 | that.Then( | |
| 
             | 
        38 | res => | |
| 
             | 
        39 | { | |
| 
             | 
        40 | if (ctl.InvokeRequired) | |
| 
             | 
        41 | ctl.Invoke(new Action<T>(directed.Resolve), res); | |
| 
             | 
        42 | else | |
| 
             | 
        43 | directed.Resolve(res); | |
| 
             | 
        44 | }, | |
| 
             | 
        45 | err => | |
| 
             | 
        46 | { | |
| 
             | 
        47 | if (ctl.InvokeRequired) | |
| 
             | 
        48 | ctl.Invoke(new Action<Exception>(directed.Reject), err); | |
| 
             | 
        49 | else | |
| 
             | 
        50 | directed.Reject(err); | |
| 
             | 
        51 | } | |
| 
             | 
        52 | ); | |
| 
             | 
        53 | ||
| 
             | 
        54 | return directed; | |
| 
             | 
        55 | } | |
| 
             | 
        56 | ||
| 
             | 
        57 | /// <summary> | |
| 
             | 
        58 | /// Направляет обработку обещания в текущий поток, если у него существует контекст синхронизации. | |
| 
             | 
        59 | /// </summary> | |
| 
             | 
        60 | /// <typeparam name="T">Тип результата обещания.</typeparam> | |
| 
             | 
        61 | /// <param name="that">Обещание которое нужно обработать в текущем потоке.</param> | |
| 
             | 
        62 | /// <returns>Перенаправленное обещание.</returns> | |
| 
             | 
        63 | public static Promise<T> DispatchToCurrentThread<T>(this Promise<T> that) | |
| 
             | 
        64 | { | |
| 
             | 
        65 | var sync = SynchronizationContext.Current; | |
| 
             | 
        66 | if (sync == null) | |
| 
             | 
        67 | throw new InvalidOperationException("The current thread doesn't have a syncronization context"); | |
| 
             | 
        68 | return DispatchToSyncContext(that, sync); | |
| 
             | 
        69 | } | |
| 
             | 
        70 | ||
| 
             | 
        71 | /// <summary> | |
| 
             | 
        72 | /// Направляет обработку обещания в указанный контекст синхронизации. | |
| 
             | 
        73 | /// </summary> | |
| 
             | 
        74 | /// <typeparam name="T">Тип результата обещания.</typeparam> | |
| 
             | 
        75 | /// <param name="that">Обещание, которое требуется обработать в указанном контексте синхронизации.</param> | |
| 
             | 
        76 | /// <param name="sync">Контекст синхронизации в который будет направлено обещание.</param> | |
| 
             | 
        77 | /// <returns>Новое обещание, которое будет обрабатываться в указанном контексте.</returns> | |
| 
             | 
        78 | public static Promise<T> DispatchToSyncContext<T>(this Promise<T> that, SynchronizationContext sync) | |
| 
             | 
        79 | { | |
| 
             | 
        80 | if (that == null) | |
| 
             | 
        81 | throw new ArgumentNullException("that"); | |
| 
             | 
        82 | if (sync == null) | |
| 
             | 
        83 | throw new ArgumentNullException("sync"); | |
| 
             | 
        84 | ||
| 
             | 
        85 | var d = new Promise<T>(); | |
| 
             | 
        86 | ||
| 
             | 
        87 | that.Then( | |
| 
             | 
        88 | res => sync.Post(state => d.Resolve(res), null), | |
| 
             | 
        89 | err => sync.Post(state => d.Reject(err), null) | |
| 
             | 
        90 | ); | |
| 
             | 
        91 | ||
| 
             | 
        92 | return d; | |
| 
             | 
        93 | } | |
| 
             | 
        94 | } | |
| 
             | 
        95 | } | |
| @@ -2,14 +2,96 | |||
| 
             | 
        2 | 2 | using System.Collections.Generic; | 
| 
             | 
        3 | 3 | using System.Linq; | 
| 
             | 
        4 | 4 | using System.Text; | 
| 
             | 
        5 | using System.Timers; | |
| 
             | 
        6 | using System.ComponentModel; | |
| 
             | 
        7 | using System.Diagnostics; | |
| 
             | 
        5 | 8 | |
| 
             | 
        6 | 9 | namespace Implab.Fx | 
| 
             | 
        7 | 10 | { | 
| 
             | 
        8 | public class Animation | |
| 
             | 
        11 | public delegate void AnimationStep<T>(T target, int elapsed, int duration); | |
| 
             | 
        12 | ||
| 
             | 
        13 | public class Animation<TArg> where TArg: class | |
| 
             | 
        9 | 14 | 
            
              | 
    
| 
             | 
        10 | 15 | int m_duration; | 
| 
             | 
        11 | 
            
                     int m_ | 
    |
| 
             | 
        16 | int m_delay; | |
| 
             | 
        17 | int m_elapsed; | |
| 
             | 
        18 | int m_prevTicks; | |
| 
             | 
        19 | TArg m_arg; | |
| 
             | 
        20 | ISynchronizeInvoke m_syncronizationObject; | |
| 
             | 
        21 | ||
| 
             | 
        22 | public event AnimationStep<TArg> Step; | |
| 
             | 
        23 | ||
| 
             | 
        24 | Promise<TArg> m_promise; | |
| 
             | 
        25 | ||
| 
             | 
        26 | public Animation(TArg target, int duration, int delay) | |
| 
             | 
        27 | { | |
| 
             | 
        28 | if (duration <= 0) | |
| 
             | 
        29 | throw new ArgumentOutOfRangeException("duration"); | |
| 
             | 
        30 | if (delay <= 0) | |
| 
             | 
        31 | throw new ArgumentOutOfRangeException("delay"); | |
| 
             | 
        32 | ||
| 
             | 
        33 | m_arg = target; | |
| 
             | 
        34 | m_syncronizationObject = target as ISynchronizeInvoke; | |
| 
             | 
        35 | m_duration = duration; | |
| 
             | 
        36 | m_delay = delay; | |
| 
             | 
        37 | m_promise = new Promise<TArg>(); | |
| 
             | 
        38 | } | |
| 
             | 
        39 | ||
| 
             | 
        40 | public Animation(TArg target) | |
| 
             | 
        41 | : this(target, 500, 30) | |
| 
             | 
        42 | { | |
| 
             | 
        43 | } | |
| 
             | 
        44 | ||
| 
             | 
        45 | public TArg Traget | |
| 
             | 
        46 | { | |
| 
             | 
        47 | get { return m_arg; } | |
| 
             | 
        48 | } | |
| 
             | 
        49 | ||
| 
             | 
        50 | public Promise<TArg> Play() | |
| 
             | 
        51 | { | |
| 
             | 
        52 | var timer = new Timer(m_delay); | |
| 
             | 
        12 | 53 | |
| 
             | 
        54 | timer.AutoReset = true; | |
| 
             | 
        55 | timer.SynchronizingObject = m_syncronizationObject; | |
| 
             | 
        56 | timer.Elapsed += new ElapsedEventHandler(timer_Elapsed); | |
| 
             | 
        13 | 57 | |
| 
             | 
        58 | m_prevTicks = Environment.TickCount; | |
| 
             | 
        59 | ||
| 
             | 
        60 | timer.Start(); | |
| 
             | 
        61 | ||
| 
             | 
        62 | return m_promise; | |
| 
             | 
        63 | } | |
| 
             | 
        64 | ||
| 
             | 
        65 | void timer_Elapsed(object sender, ElapsedEventArgs args) | |
| 
             | 
        66 | { | |
| 
             | 
        67 | var timer = sender as Timer; | |
| 
             | 
        68 | ||
| 
             | 
        69 | var dt = Environment.TickCount - m_prevTicks; | |
| 
             | 
        70 | m_prevTicks = Environment.TickCount; | |
| 
             | 
        71 | ||
| 
             | 
        72 | m_elapsed += dt; | |
| 
             | 
        73 | ||
| 
             | 
        74 | if (m_elapsed > m_duration) | |
| 
             | 
        75 | m_elapsed = m_duration; | |
| 
             | 
        76 | ||
| 
             | 
        77 | try | |
| 
             | 
        78 | { | |
| 
             | 
        79 | var handler = Step; | |
| 
             | 
        80 | if (handler != null) | |
| 
             | 
        81 | handler(m_arg, m_elapsed, m_duration); | |
| 
             | 
        82 | } | |
| 
             | 
        83 | catch (Exception e) | |
| 
             | 
        84 | { | |
| 
             | 
        85 | Trace.TraceError(e.ToString()); | |
| 
             | 
        86 | } | |
| 
             | 
        87 | ||
| 
             | 
        88 | if (m_elapsed < m_duration) | |
| 
             | 
        89 | timer.Start(); | |
| 
             | 
        90 | else | |
| 
             | 
        91 | { | |
| 
             | 
        92 | timer.Dispose(); | |
| 
             | 
        93 | m_promise.Resolve(m_arg); | |
| 
             | 
        14 | 94 | } | 
| 
             | 
        15 | 95 | } | 
| 
             | 
        96 | } | |
| 
             | 
        97 | } | |
| @@ -41,7 +41,9 | |||
| 
             | 
        41 | 41 | <Reference Include="System.Xml" /> | 
| 
             | 
        42 | 42 | </ItemGroup> | 
| 
             | 
        43 | 43 | <ItemGroup> | 
| 
             | 
        44 | 
            
                 <Compile Include=" | 
    |
| 
             | 
        44 | <Compile Include="Animation.cs" /> | |
| 
             | 
        45 | <Compile Include="AnimationHelpers.cs" /> | |
| 
             | 
        46 | <Compile Include="PromiseHelpers.cs" /> | |
| 
             | 
        45 | 47 | <Compile Include="Properties\AssemblyInfo.cs" /> | 
| 
             | 
        46 | 48 | </ItemGroup> | 
| 
             | 
        47 | 49 | <ItemGroup> | 
| @@ -1,7 +1,7 | |||
| 
             | 
        1 | 1 |  | 
| 
             | 
        2 | 2 | Microsoft Visual Studio Solution File, Format Version 11.00 | 
| 
             | 
        3 | 3 | # Visual Studio 2010 | 
| 
             | 
        4 | 
            
             Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Implab", "Implab\Implab.csproj", "{ | 
    |
| 
             | 
        4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Implab", "Implab\Implab.csproj", "{F550F1F8-8746-4AD0-9614-855F4C4B7F05}" | |
| 
             | 
        5 | 5 | EndProject | 
| 
             | 
        6 | 6 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{CE8D8D18-437A-445C-B662-4C2CE79A76F6}" | 
| 
             | 
        7 | 7 | ProjectSection(SolutionItems) = preProject | 
| @@ -23,10 +23,10 Global | |||
| 
             | 
        23 | 23 | Release|Any CPU = Release|Any CPU | 
| 
             | 
        24 | 24 | EndGlobalSection | 
| 
             | 
        25 | 25 | GlobalSection(ProjectConfigurationPlatforms) = postSolution | 
| 
             | 
        26 | 
            
             		{ | 
    |
| 
             | 
        27 | 
            
             		{ | 
    |
| 
             | 
        28 | 
            
             		{ | 
    |
| 
             | 
        29 | 
            
             		{ | 
    |
| 
             | 
        26 | {F550F1F8-8746-4AD0-9614-855F4C4B7F05}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | |
| 
             | 
        27 | {F550F1F8-8746-4AD0-9614-855F4C4B7F05}.Debug|Any CPU.Build.0 = Debug|Any CPU | |
| 
             | 
        28 | {F550F1F8-8746-4AD0-9614-855F4C4B7F05}.Release|Any CPU.ActiveCfg = Release|Any CPU | |
| 
             | 
        29 | {F550F1F8-8746-4AD0-9614-855F4C4B7F05}.Release|Any CPU.Build.0 = Release|Any CPU | |
| 
             | 
        30 | 30 | {63F92C0C-61BF-48C0-A377-8D67C3C661D0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | 
| 
             | 
        31 | 31 | {63F92C0C-61BF-48C0-A377-8D67C3C661D0}.Debug|Any CPU.Build.0 = Debug|Any CPU | 
| 
             | 
        32 | 32 | {63F92C0C-61BF-48C0-A377-8D67C3C661D0}.Release|Any CPU.ActiveCfg = Release|Any CPU | 
| 
             | 
        1 | NO CONTENT: modified file, binary diff hidden | 
| @@ -5,7 +5,7 | |||
| 
             | 
        5 | 5 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | 
| 
             | 
        6 | 6 | <ProductVersion>10.0.0</ProductVersion> | 
| 
             | 
        7 | 7 | <SchemaVersion>2.0</SchemaVersion> | 
| 
             | 
        8 | 
            
                 <ProjectGuid>{ | 
    |
| 
             | 
        8 | <ProjectGuid>{F550F1F8-8746-4AD0-9614-855F4C4B7F05}</ProjectGuid> | |
| 
             | 
        9 | 9 | <OutputType>Library</OutputType> | 
| 
             | 
        10 | 10 | <RootNamespace>Implab</RootNamespace> | 
| 
             | 
        11 | 11 | <AssemblyName>Implab</AssemblyName> | 
| 
             | 
        1 | NO CONTENT: file was removed | 
        
        General Comments 0
    
    
  
  
                      You need to be logged in to leave comments.
                      Login now
                    
                