From eabcf89c6e117781d6e834a9dbeae7102e1ca953 Mon Sep 17 00:00:00 2001 From: coolestdude1 Date: Thu, 18 Feb 2010 04:22:13 +0000 Subject: recloning the repo back to my box --- diff --git a/blocku.py b/blocku.py index 52d16cc..67bb2f2 100644 --- a/blocku.py +++ b/blocku.py @@ -2,7 +2,9 @@ import pygame, random, os.path from pygame.locals import * from pygame import * -#import gtk + +try: import gtk +except ImportError: gtk = None #see if we can load more than standard BMP if not pygame.image.get_extended(): @@ -104,11 +106,10 @@ class Game: # for gifs img = load_image('filename.gif') # for bmps img = pygame.image.load('filename.bmp') but our function handles that for us # a note for graphics blit means copy pixels from screen.blit() - iconImg = load_image('Blocku_Icon.gif') - #background = load_image('background.gif') - background = load_image('background.bmp') + iconImg = load_image('blocku.png') + background = load_image('background.png') # load images to pipe to the sprite classes - blockImg = load_image('block.bmp') + blockImg = load_image('block.png') Block.images = [blockImg] # the test will need rects and positions i sugest make some kind of default # this information can be held by each block as they are created but is made here @@ -148,8 +149,8 @@ class Game: while self.running: # Pump GTK messages. - #while gtk.events_pending(): - # gtk.main_iteration() + while gtk and gtk.events_pending(): + gtk.main_iteration() # Pump PyGame messages. for event in pygame.event.get(): @@ -197,7 +198,7 @@ class Text(pygame.sprite.Sprite): self.text = text def update(self): - msg = 'Drawing call test' + msg = '' # 'Drawing call test' self.image = self.font.render(msg, 0, self.color) class mouseUpdate(pygame.sprite.Sprite): @@ -210,7 +211,7 @@ class mouseUpdate(pygame.sprite.Sprite): self.rect = self.image.get_rect().move(50, 220) def update(self): - msg = 'Mouse Position %s, %s' % mouse.get_pos() + msg = '' # 'Mouse Position %s, %s' % mouse.get_pos() self.image = self.font.render(msg, 0, self.color) # This function is called when the game is run directly from the command line: diff --git a/data/Blocku_Icon.gif b/data/Blocku_Icon.gif deleted file mode 100644 index 78b3d10..0000000 --- a/data/Blocku_Icon.gif +++ /dev/null Binary files differ diff --git a/data/Thumbs.db b/data/Thumbs.db index b970d34..90215a3 100644 --- a/data/Thumbs.db +++ b/data/Thumbs.db Binary files differ diff --git a/data/background.bmp b/data/background.bmp deleted file mode 100644 index bcfd894..0000000 --- a/data/background.bmp +++ /dev/null Binary files differ diff --git a/data/background.gif b/data/background.gif deleted file mode 100644 index e2c51f9..0000000 --- a/data/background.gif +++ /dev/null Binary files differ diff --git a/data/background.png b/data/background.png new file mode 100644 index 0000000..ea0c732 --- /dev/null +++ b/data/background.png Binary files differ diff --git a/data/block.bmp b/data/block.bmp deleted file mode 100644 index 5c49a22..0000000 --- a/data/block.bmp +++ /dev/null Binary files differ diff --git a/data/block.png b/data/block.png new file mode 100644 index 0000000..d0c7b96 --- /dev/null +++ b/data/block.png Binary files differ diff --git a/data/blocku.png b/data/blocku.png new file mode 100644 index 0000000..119d75e --- /dev/null +++ b/data/blocku.png Binary files differ -- cgit v0.9.1