2 * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
4 * Licensed under the Apache License, Version 2.0 (the License);
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an AS IS BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
18 using System.Collections.Generic;
23 /// EcoreAnimator is a helper class, it provides functions to manager animations.
25 public static class EcoreAnimator
27 static readonly Dictionary<int, Func<bool>> _taskMap = new Dictionary<int, Func<bool>>();
28 static readonly Object _taskLock = new Object();
29 static int _newTaskId = 0;
31 static Interop.Ecore.EcoreTaskCallback _nativeHandler;
33 static EcoreAnimator()
35 _nativeHandler = NativeHandler;
39 /// Gets current system time as a floating point value in seconds.
41 /// <returns>Current system time</returns>
42 public static double GetCurrentTime()
44 return Interop.Ecore.ecore_time_get();
48 /// Adds an animator to call <paramref name="handler"/> at every animation tick during main loop execution.
50 /// <param name="handler">The function to call when it ticks off</param>
51 /// <returns>A handle to the new animator</returns>
52 public static IntPtr AddAnimator(Func<bool> handler)
54 int id = RegistHandler(handler);
55 return Interop.Ecore.ecore_animator_add(_nativeHandler, (IntPtr)id);
59 /// Removes the specified animator from the animator list.
61 /// <param name="anim">The specified animator handle</param>
62 public static void RemoveAnimator(IntPtr anim)
64 int taskId = (int)Interop.Ecore.ecore_animator_del(anim);
65 _taskMap.Remove(taskId);
68 static int RegistHandler(Func<bool> task)
73 taskId = _newTaskId++;
75 _taskMap[taskId] = task;
79 static bool NativeHandler(IntPtr userData)
81 int task_id = (int)userData;
82 Func<bool> userAction = null;
83 _taskMap.TryGetValue(task_id, out userAction);
84 return (userAction != null) ? userAction() : false;