Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2007-03-12 11:39:29 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-03-12 11:39:29 (GMT)
commit0984938f95cd66b0cb7c198c346a5f80da68f106 (patch)
tree5e5f9ad46d9c7011039fed90f7630610b5154ca6 /sugar
parent158d933a104d1fa707731005941447e0b7ecc977 (diff)
New animation API. Start rewriting the frame slidein slideout logic.
(Use the keys for now, mouse is not working)
Diffstat (limited to 'sugar')
-rw-r--r--sugar/graphics/Makefile.am1
-rw-r--r--sugar/graphics/animator.py70
2 files changed, 71 insertions, 0 deletions
diff --git a/sugar/graphics/Makefile.am b/sugar/graphics/Makefile.am
index 9479ea2..d2ccbe7 100644
--- a/sugar/graphics/Makefile.am
+++ b/sugar/graphics/Makefile.am
@@ -1,6 +1,7 @@
sugardir = $(pythondir)/sugar/graphics
sugar_PYTHON = \
__init__.py \
+ animator.py \
bubble.py \
button.py \
iconbutton.py \
diff --git a/sugar/graphics/animator.py b/sugar/graphics/animator.py
new file mode 100644
index 0000000..def823c
--- /dev/null
+++ b/sugar/graphics/animator.py
@@ -0,0 +1,70 @@
+# Copyright (C) 2007, Red Hat, Inc.
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+
+import time
+
+import gobject
+
+EASE_OUT_EXPO = 1
+
+class Animator(object):
+ def __init__(self, time, fps, easing=EASE_OUT_EXPO):
+ self._animations = []
+ self._time = time
+ self._interval = 1.0 / fps
+ self._easing = easing
+ self._timeout_sid = 0
+
+ def add(self, animation):
+ self._animations.append(animation)
+
+ def start(self):
+ if self._timeout_sid:
+ self.stop()
+
+ self._start_time = time.time()
+ self._timeout_sid = gobject.timeout_add(
+ int(self._interval * 1000), self._next_frame_cb)
+
+ def stop(self):
+ if self._timeout_sid:
+ gobject.source_remove(self._timeout_sid)
+ self._timeout_sid = 0
+
+ def _next_frame_cb(self):
+ current_time = min (self._time, time.time() - self._start_time)
+ for animation in self._animations:
+ animation.do_frame(current_time, self._time, self._easing)
+
+ return (current_time != self._time)
+
+class Animation(object):
+ def __init__(self, start, end):
+ self.start = start
+ self.end = end
+
+ def do_frame(self, time, duration, easing):
+ start = self.start
+ change = self.end - self.start
+
+ if easing == EASE_OUT_EXPO:
+ frame = change * pow(2, 10 * (time / duration - 1)) + start;
+
+ self.next_frame(frame)
+
+ def next_frame(self, frame):
+ pass