-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspritesheet.py
47 lines (41 loc) · 2.06 KB
/
spritesheet.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# This class handles sprite sheets
# This was taken from http://www.pygame.org/wiki/Spritesheet
# And was originally taken from www.scriptefun.com/transcript-2-using
# Note: When calling images_at the rect is the format:
# (x, y, x + offset, y + offset)
import pygame
# create a spritesheet class that will have it's own functions
class spritesheet(object):
def __init__(self, filename):
''' initialize itself '''
try: # fail if the spritesheet.png file isn't found
self.sheet = pygame.image.load(filename).convert()
except pygame.error:
print ('Unable to load spritesheet image:'), filename
raise SystemExit
def image_at(self, rectangle, colorkey = None):
""" Loads spritesheet image from x,y,x+offset,y+offset"""
# The colorkey is the color contained in the
# upper left pixel of the image. If there is no
# colorkey then we do not need to make the image
# transparent. However if the colorkey is not None
# then the color key is usually passed as a
# parameter of -1. This will make the color of
# the upper left pixel transparent. The pygame flag
# RLEACCEL is used to make the resulting image fast.
rect = pygame.Rect(rectangle)
image = pygame.Surface(rect.size).convert()
image.blit(self.sheet, (0, 0), rect)
if colorkey is not None:
if colorkey is -1:
colorkey = image.get_at((0,0))
image.set_colorkey(colorkey, pygame.RLEACCEL)
return image
def images_at(self, rects, colorkey = None):
''' Load a whole bunch of images and return them as a list '''
return [self.image_at(rect, colorkey) for rect in rects]
def load_strip(self, rect, image_count, colorkey = None):
''' Loads a strip of images and returns them as a list '''
tups = [(rect[0]+rect[2]*x, rect[1], rect[2], rect[3])
for x in range(image_count)]
return self.images_at(tups, colorkey)