Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/test/TestActivity.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/TestActivity.py')
-rw-r--r--test/TestActivity.py68
1 files changed, 0 insertions, 68 deletions
diff --git a/test/TestActivity.py b/test/TestActivity.py
deleted file mode 100644
index fcd4262..0000000
--- a/test/TestActivity.py
+++ /dev/null
@@ -1,68 +0,0 @@
-from gettext import gettext as _
-
-import sys
-import gtk
-import pygame
-
-import sugar.activity.activity
-import sugar.graphics.toolbutton
-
-sys.path.append('..') # Import sugargame package from top directory.
-import sugargame.canvas
-
-import TestGame
-
-class TestActivity(sugar.activity.activity.Activity):
- def __init__(self, handle):
- super(TestActivity, self).__init__(handle)
-
- self.paused = False
-
- # Create the game instance.
- self.game = TestGame.TestGame()
-
- # Build the activity toolbar.
- self.build_toolbar()
-
- # Build the Pygame canvas.
- self._pygamecanvas = sugargame.canvas.PygameCanvas(self)
-
- # Note that set_canvas implicitly calls read_file when resuming from the Journal.
- self.set_canvas(self._pygamecanvas)
-
- # Start the game running (self.game.run is called when the activity constructor returns).
- self._pygamecanvas.run_pygame(self.game.run)
-
- def build_toolbar(self):
- stop_play = sugar.graphics.toolbutton.ToolButton('media-playback-stop')
- stop_play.set_tooltip(_("Stop"))
- stop_play.set_accelerator(_('<ctrl>space'))
- stop_play.connect('clicked', self._stop_play_cb)
-
- toolbar = gtk.Toolbar()
- toolbar.insert(stop_play, 0)
-
- toolbox = sugar.activity.activity.ActivityToolbox(self)
- toolbox.add_toolbar(_("Pygame"), toolbar)
-
- toolbox.show_all()
- self.set_toolbox(toolbox)
-
- def _stop_play_cb(self, button):
- # Pause or unpause the game.
- self.paused = not self.paused
- self.game.set_paused(self.paused)
-
- # Update the button to show the next action.
- if self.paused:
- button.set_icon('media-playback-start')
- button.set_tooltip(_("Start"))
- else:
- button.set_icon('media-playback-stop')
- button.set_tooltip(_("Stop"))
-
- def read_file(self, file_path):
- self.game.read_file(file_path)
-
- def write_file(self, file_path):
- self.game.write_file(file_path)