annotate nagslang/level.py @ 277:56e42c00da25

Protagonist and enemies should see the world
author Neil Muller <drnlmuller@gmail.com>
date Thu, 05 Sep 2013 13:15:31 +0200
parents 988cf7c8b402
children a5fe5a69689d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
50
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
1 import pygame
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
2 import pygame.locals as pgl
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
3
145
0c49627920eb Load game objects from level.
Jeremy Thurgood <firxen@gmail.com>
parents: 139
diff changeset
4 from nagslang import game_object as go
168
ce8d4fc3baf4 A patrolling alien
Neil Muller <drnlmuller@gmail.com>
parents: 164
diff changeset
5 from nagslang import enemies
201
3495a2025bc6 Break puzzlers out of game_object.py
Stefano Rivera <stefano@rivera.za.net>
parents: 197
diff changeset
6 from nagslang import puzzle
50
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
7 from nagslang.resources import resources
139
d1f543ff0805 YAML levels
Stefano Rivera <stefano@rivera.za.net>
parents: 122
diff changeset
8 from nagslang.yamlish import load, dump
50
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
9
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
10 POLY_COLORS = {
53
39d346467052 Draw all the walls.
Simon Cross <hodgestar@gmail.com>
parents: 50
diff changeset
11 1: pygame.color.THECOLORS['red'],
39d346467052 Draw all the walls.
Simon Cross <hodgestar@gmail.com>
parents: 50
diff changeset
12 2: pygame.color.THECOLORS['green'],
39d346467052 Draw all the walls.
Simon Cross <hodgestar@gmail.com>
parents: 50
diff changeset
13 3: pygame.color.THECOLORS['yellow'],
39d346467052 Draw all the walls.
Simon Cross <hodgestar@gmail.com>
parents: 50
diff changeset
14 4: pygame.color.THECOLORS['blue'],
39d346467052 Draw all the walls.
Simon Cross <hodgestar@gmail.com>
parents: 50
diff changeset
15 5: pygame.color.THECOLORS['lightblue'],
39d346467052 Draw all the walls.
Simon Cross <hodgestar@gmail.com>
parents: 50
diff changeset
16 6: pygame.color.THECOLORS['magenta'],
39d346467052 Draw all the walls.
Simon Cross <hodgestar@gmail.com>
parents: 50
diff changeset
17 }
50
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
18
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
19
197
34c11bb5c96e Interior walls.
Jeremy Thurgood <firxen@gmail.com>
parents: 191
diff changeset
20 LINE_COLOR = pygame.color.THECOLORS['orange']
34c11bb5c96e Interior walls.
Jeremy Thurgood <firxen@gmail.com>
parents: 191
diff changeset
21
34c11bb5c96e Interior walls.
Jeremy Thurgood <firxen@gmail.com>
parents: 191
diff changeset
22
50
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
23 class Level(object):
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
24
277
56e42c00da25 Protagonist and enemies should see the world
Neil Muller <drnlmuller@gmail.com>
parents: 274
diff changeset
25 def __init__(self, name, world):
50
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
26 self.name = name
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
27 # defaults
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
28 self.x = 800
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
29 self.y = 600
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
30 self.polygons = {}
197
34c11bb5c96e Interior walls.
Jeremy Thurgood <firxen@gmail.com>
parents: 191
diff changeset
31 self.lines = []
277
56e42c00da25 Protagonist and enemies should see the world
Neil Muller <drnlmuller@gmail.com>
parents: 274
diff changeset
32 self.world = world
50
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
33 self.basetile = 'tiles/floor.png'
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
34 self._tile_image = None
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
35 self._surface = None
95
ecba9550ad8d Fill the exterior with the blackness of space
Neil Muller <drnlmuller@gmail.com>
parents: 75
diff changeset
36 self._exterior = False
201
3495a2025bc6 Break puzzlers out of game_object.py
Stefano Rivera <stefano@rivera.za.net>
parents: 197
diff changeset
37 self._glue = puzzle.PuzzleGlue()
191
e080fcd07fa9 Overlay notes
Stefano Rivera <stefano@rivera.za.net>
parents: 168
diff changeset
38 self.drawables = []
e080fcd07fa9 Overlay notes
Stefano Rivera <stefano@rivera.za.net>
parents: 168
diff changeset
39 self.overlay_drawables = []
164
06c681ff53aa Round-tripping through load/save shouldn't discard objects
Neil Muller <drnlmuller@gmail.com>
parents: 145
diff changeset
40 self._game_objects = []
168
ce8d4fc3baf4 A patrolling alien
Neil Muller <drnlmuller@gmail.com>
parents: 164
diff changeset
41 self._enemies = []
50
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
42
145
0c49627920eb Load game objects from level.
Jeremy Thurgood <firxen@gmail.com>
parents: 139
diff changeset
43 def _get_data(self):
0c49627920eb Load game objects from level.
Jeremy Thurgood <firxen@gmail.com>
parents: 139
diff changeset
44 # For overriding in tests.
75
79748a884eb5 Put levels in a levels directory
Stefano Rivera <stefano@rivera.za.net>
parents: 72
diff changeset
45 with resources.get_file('levels', self.name) as f:
145
0c49627920eb Load game objects from level.
Jeremy Thurgood <firxen@gmail.com>
parents: 139
diff changeset
46 return load(f)
0c49627920eb Load game objects from level.
Jeremy Thurgood <firxen@gmail.com>
parents: 139
diff changeset
47
164
06c681ff53aa Round-tripping through load/save shouldn't discard objects
Neil Muller <drnlmuller@gmail.com>
parents: 145
diff changeset
48 def _dump_data(self, f):
06c681ff53aa Round-tripping through load/save shouldn't discard objects
Neil Muller <drnlmuller@gmail.com>
parents: 145
diff changeset
49 # For manipulation in tests.
06c681ff53aa Round-tripping through load/save shouldn't discard objects
Neil Muller <drnlmuller@gmail.com>
parents: 145
diff changeset
50 dump({
06c681ff53aa Round-tripping through load/save shouldn't discard objects
Neil Muller <drnlmuller@gmail.com>
parents: 145
diff changeset
51 'size': [self.x, self.y],
06c681ff53aa Round-tripping through load/save shouldn't discard objects
Neil Muller <drnlmuller@gmail.com>
parents: 145
diff changeset
52 'base_tile': self.basetile,
06c681ff53aa Round-tripping through load/save shouldn't discard objects
Neil Muller <drnlmuller@gmail.com>
parents: 145
diff changeset
53 'polygons': self.polygons,
197
34c11bb5c96e Interior walls.
Jeremy Thurgood <firxen@gmail.com>
parents: 191
diff changeset
54 'lines': self.lines,
164
06c681ff53aa Round-tripping through load/save shouldn't discard objects
Neil Muller <drnlmuller@gmail.com>
parents: 145
diff changeset
55 'game_objects': self._game_objects,
168
ce8d4fc3baf4 A patrolling alien
Neil Muller <drnlmuller@gmail.com>
parents: 164
diff changeset
56 'enemies': self._enemies,
164
06c681ff53aa Round-tripping through load/save shouldn't discard objects
Neil Muller <drnlmuller@gmail.com>
parents: 145
diff changeset
57 }, f)
06c681ff53aa Round-tripping through load/save shouldn't discard objects
Neil Muller <drnlmuller@gmail.com>
parents: 145
diff changeset
58
145
0c49627920eb Load game objects from level.
Jeremy Thurgood <firxen@gmail.com>
parents: 139
diff changeset
59 def load(self, space):
0c49627920eb Load game objects from level.
Jeremy Thurgood <firxen@gmail.com>
parents: 139
diff changeset
60 data = self._get_data()
139
d1f543ff0805 YAML levels
Stefano Rivera <stefano@rivera.za.net>
parents: 122
diff changeset
61 self.x, self.y = data['size']
d1f543ff0805 YAML levels
Stefano Rivera <stefano@rivera.za.net>
parents: 122
diff changeset
62 self.base_tile = data['base_tile']
d1f543ff0805 YAML levels
Stefano Rivera <stefano@rivera.za.net>
parents: 122
diff changeset
63 for i, points in data['polygons'].iteritems():
d1f543ff0805 YAML levels
Stefano Rivera <stefano@rivera.za.net>
parents: 122
diff changeset
64 self.polygons[i] = []
d1f543ff0805 YAML levels
Stefano Rivera <stefano@rivera.za.net>
parents: 122
diff changeset
65 for point in points:
d1f543ff0805 YAML levels
Stefano Rivera <stefano@rivera.za.net>
parents: 122
diff changeset
66 self.polygons[i].append(tuple(point))
197
34c11bb5c96e Interior walls.
Jeremy Thurgood <firxen@gmail.com>
parents: 191
diff changeset
67 self.lines = data.get('lines', [])
164
06c681ff53aa Round-tripping through load/save shouldn't discard objects
Neil Muller <drnlmuller@gmail.com>
parents: 145
diff changeset
68 self._game_objects = data.get('game_objects', [])
06c681ff53aa Round-tripping through load/save shouldn't discard objects
Neil Muller <drnlmuller@gmail.com>
parents: 145
diff changeset
69 for game_object_dict in self._game_objects:
145
0c49627920eb Load game objects from level.
Jeremy Thurgood <firxen@gmail.com>
parents: 139
diff changeset
70 self._create_game_object(space, **game_object_dict)
168
ce8d4fc3baf4 A patrolling alien
Neil Muller <drnlmuller@gmail.com>
parents: 164
diff changeset
71 self._enemies = data.get('enemies', [])
ce8d4fc3baf4 A patrolling alien
Neil Muller <drnlmuller@gmail.com>
parents: 164
diff changeset
72 for enemy_dict in self._enemies:
ce8d4fc3baf4 A patrolling alien
Neil Muller <drnlmuller@gmail.com>
parents: 164
diff changeset
73 self._create_enemy(space, **enemy_dict)
145
0c49627920eb Load game objects from level.
Jeremy Thurgood <firxen@gmail.com>
parents: 139
diff changeset
74
0c49627920eb Load game objects from level.
Jeremy Thurgood <firxen@gmail.com>
parents: 139
diff changeset
75 def _create_game_object(self, space, classname, args, name=None):
209
ad1d3de210cd Drop compatibility imports, and allow an optional module on classnames
Stefano Rivera <stefano@rivera.za.net>
parents: 201
diff changeset
76 modules = {
ad1d3de210cd Drop compatibility imports, and allow an optional module on classnames
Stefano Rivera <stefano@rivera.za.net>
parents: 201
diff changeset
77 'game_object': go,
ad1d3de210cd Drop compatibility imports, and allow an optional module on classnames
Stefano Rivera <stefano@rivera.za.net>
parents: 201
diff changeset
78 'puzzle': puzzle,
ad1d3de210cd Drop compatibility imports, and allow an optional module on classnames
Stefano Rivera <stefano@rivera.za.net>
parents: 201
diff changeset
79 }
ad1d3de210cd Drop compatibility imports, and allow an optional module on classnames
Stefano Rivera <stefano@rivera.za.net>
parents: 201
diff changeset
80 if '.' in classname:
ad1d3de210cd Drop compatibility imports, and allow an optional module on classnames
Stefano Rivera <stefano@rivera.za.net>
parents: 201
diff changeset
81 module, classname = classname.split('.')
ad1d3de210cd Drop compatibility imports, and allow an optional module on classnames
Stefano Rivera <stefano@rivera.za.net>
parents: 201
diff changeset
82 else:
ad1d3de210cd Drop compatibility imports, and allow an optional module on classnames
Stefano Rivera <stefano@rivera.za.net>
parents: 201
diff changeset
83 module = 'game_object'
ad1d3de210cd Drop compatibility imports, and allow an optional module on classnames
Stefano Rivera <stefano@rivera.za.net>
parents: 201
diff changeset
84 cls = getattr(modules[module], classname)
ad1d3de210cd Drop compatibility imports, and allow an optional module on classnames
Stefano Rivera <stefano@rivera.za.net>
parents: 201
diff changeset
85
201
3495a2025bc6 Break puzzlers out of game_object.py
Stefano Rivera <stefano@rivera.za.net>
parents: 197
diff changeset
86 if issubclass(cls, puzzle.Puzzler):
145
0c49627920eb Load game objects from level.
Jeremy Thurgood <firxen@gmail.com>
parents: 139
diff changeset
87 gobj = cls(*args)
0c49627920eb Load game objects from level.
Jeremy Thurgood <firxen@gmail.com>
parents: 139
diff changeset
88 elif issubclass(cls, go.GameObject):
0c49627920eb Load game objects from level.
Jeremy Thurgood <firxen@gmail.com>
parents: 139
diff changeset
89 gobj = cls(space, *args)
191
e080fcd07fa9 Overlay notes
Stefano Rivera <stefano@rivera.za.net>
parents: 168
diff changeset
90 self.drawables.append(gobj)
e080fcd07fa9 Overlay notes
Stefano Rivera <stefano@rivera.za.net>
parents: 168
diff changeset
91 if gobj.overlay:
e080fcd07fa9 Overlay notes
Stefano Rivera <stefano@rivera.za.net>
parents: 168
diff changeset
92 self.overlay_drawables.append(gobj.overlay)
145
0c49627920eb Load game objects from level.
Jeremy Thurgood <firxen@gmail.com>
parents: 139
diff changeset
93 else:
0c49627920eb Load game objects from level.
Jeremy Thurgood <firxen@gmail.com>
parents: 139
diff changeset
94 raise TypeError(
0c49627920eb Load game objects from level.
Jeremy Thurgood <firxen@gmail.com>
parents: 139
diff changeset
95 "Expected a subclass of Puzzler or GameObject, got %s" % (
0c49627920eb Load game objects from level.
Jeremy Thurgood <firxen@gmail.com>
parents: 139
diff changeset
96 classname))
0c49627920eb Load game objects from level.
Jeremy Thurgood <firxen@gmail.com>
parents: 139
diff changeset
97 if name is not None:
0c49627920eb Load game objects from level.
Jeremy Thurgood <firxen@gmail.com>
parents: 139
diff changeset
98 self._glue.add_component(name, gobj)
274
988cf7c8b402 Add object returns for use in the level editor
Neil Muller <drnlmuller@gmail.com>
parents: 209
diff changeset
99 return gobj
50
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
100
168
ce8d4fc3baf4 A patrolling alien
Neil Muller <drnlmuller@gmail.com>
parents: 164
diff changeset
101 def _create_enemy(self, space, classname, args, name=None):
ce8d4fc3baf4 A patrolling alien
Neil Muller <drnlmuller@gmail.com>
parents: 164
diff changeset
102 cls = getattr(enemies, classname)
ce8d4fc3baf4 A patrolling alien
Neil Muller <drnlmuller@gmail.com>
parents: 164
diff changeset
103 if issubclass(cls, go.GameObject):
277
56e42c00da25 Protagonist and enemies should see the world
Neil Muller <drnlmuller@gmail.com>
parents: 274
diff changeset
104 gobj = cls(space, self.world, *args)
191
e080fcd07fa9 Overlay notes
Stefano Rivera <stefano@rivera.za.net>
parents: 168
diff changeset
105 self.drawables.append(gobj)
168
ce8d4fc3baf4 A patrolling alien
Neil Muller <drnlmuller@gmail.com>
parents: 164
diff changeset
106 else:
ce8d4fc3baf4 A patrolling alien
Neil Muller <drnlmuller@gmail.com>
parents: 164
diff changeset
107 raise TypeError(
ce8d4fc3baf4 A patrolling alien
Neil Muller <drnlmuller@gmail.com>
parents: 164
diff changeset
108 "Expected a subclass of GameObject, got %s" % (
ce8d4fc3baf4 A patrolling alien
Neil Muller <drnlmuller@gmail.com>
parents: 164
diff changeset
109 classname))
ce8d4fc3baf4 A patrolling alien
Neil Muller <drnlmuller@gmail.com>
parents: 164
diff changeset
110 if name is not None:
ce8d4fc3baf4 A patrolling alien
Neil Muller <drnlmuller@gmail.com>
parents: 164
diff changeset
111 self._glue.add_component(name, gobj)
274
988cf7c8b402 Add object returns for use in the level editor
Neil Muller <drnlmuller@gmail.com>
parents: 209
diff changeset
112 return gobj
168
ce8d4fc3baf4 A patrolling alien
Neil Muller <drnlmuller@gmail.com>
parents: 164
diff changeset
113
95
ecba9550ad8d Fill the exterior with the blackness of space
Neil Muller <drnlmuller@gmail.com>
parents: 75
diff changeset
114 def all_closed(self):
ecba9550ad8d Fill the exterior with the blackness of space
Neil Muller <drnlmuller@gmail.com>
parents: 75
diff changeset
115 """Check if all the polygons are closed"""
72
5db052531510 Move save() to Level
Stefano Rivera <stefano@rivera.za.net>
parents: 54
diff changeset
116 closed = True
122
02423600d958 Use dialogs to report save results
Neil Muller <drnlmuller@gmail.com>
parents: 118
diff changeset
117 messages = []
02423600d958 Use dialogs to report save results
Neil Muller <drnlmuller@gmail.com>
parents: 118
diff changeset
118 for index, poly in self.polygons.items():
72
5db052531510 Move save() to Level
Stefano Rivera <stefano@rivera.za.net>
parents: 54
diff changeset
119 if len(poly) == 0:
5db052531510 Move save() to Level
Stefano Rivera <stefano@rivera.za.net>
parents: 54
diff changeset
120 # We ignore empty polygons
5db052531510 Move save() to Level
Stefano Rivera <stefano@rivera.za.net>
parents: 54
diff changeset
121 continue
5db052531510 Move save() to Level
Stefano Rivera <stefano@rivera.za.net>
parents: 54
diff changeset
122 elif len(poly) == 1:
5db052531510 Move save() to Level
Stefano Rivera <stefano@rivera.za.net>
parents: 54
diff changeset
123 closed = False
122
02423600d958 Use dialogs to report save results
Neil Muller <drnlmuller@gmail.com>
parents: 118
diff changeset
124 messages.append("Error: polygon %s too small" % index)
72
5db052531510 Move save() to Level
Stefano Rivera <stefano@rivera.za.net>
parents: 54
diff changeset
125 elif poly[-1] != poly[0]:
5db052531510 Move save() to Level
Stefano Rivera <stefano@rivera.za.net>
parents: 54
diff changeset
126 closed = False
122
02423600d958 Use dialogs to report save results
Neil Muller <drnlmuller@gmail.com>
parents: 118
diff changeset
127 messages.append("Error: polygon %s not closed" % index)
02423600d958 Use dialogs to report save results
Neil Muller <drnlmuller@gmail.com>
parents: 118
diff changeset
128 return closed, messages
95
ecba9550ad8d Fill the exterior with the blackness of space
Neil Muller <drnlmuller@gmail.com>
parents: 75
diff changeset
129
ecba9550ad8d Fill the exterior with the blackness of space
Neil Muller <drnlmuller@gmail.com>
parents: 75
diff changeset
130 def save(self):
122
02423600d958 Use dialogs to report save results
Neil Muller <drnlmuller@gmail.com>
parents: 118
diff changeset
131 closed, _ = self.all_closed()
72
5db052531510 Move save() to Level
Stefano Rivera <stefano@rivera.za.net>
parents: 54
diff changeset
132 if not closed:
122
02423600d958 Use dialogs to report save results
Neil Muller <drnlmuller@gmail.com>
parents: 118
diff changeset
133 return False
75
79748a884eb5 Put levels in a levels directory
Stefano Rivera <stefano@rivera.za.net>
parents: 72
diff changeset
134 with resources.get_file('levels', self.name, mode='w') as f:
164
06c681ff53aa Round-tripping through load/save shouldn't discard objects
Neil Muller <drnlmuller@gmail.com>
parents: 145
diff changeset
135 self._dump_data(f)
122
02423600d958 Use dialogs to report save results
Neil Muller <drnlmuller@gmail.com>
parents: 118
diff changeset
136 return True
72
5db052531510 Move save() to Level
Stefano Rivera <stefano@rivera.za.net>
parents: 54
diff changeset
137
50
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
138 def get_size(self):
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
139 return self.x, self.y
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
140
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
141 def set_base_tile(self, new_tile):
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
142 self.basetile = new_tile
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
143 self._tile_image = None
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
144
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
145 def point_to_pygame(self, pos):
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
146 # Convert a point from pymunk (which is what we store)
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
147 # to pygame for drawing
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
148 return (pos[0], self.y - pos[1])
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
149
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
150 def get_walls(self):
197
34c11bb5c96e Interior walls.
Jeremy Thurgood <firxen@gmail.com>
parents: 191
diff changeset
151 walls = self.polygons.values()
34c11bb5c96e Interior walls.
Jeremy Thurgood <firxen@gmail.com>
parents: 191
diff changeset
152 walls.extend(self.lines)
34c11bb5c96e Interior walls.
Jeremy Thurgood <firxen@gmail.com>
parents: 191
diff changeset
153 return walls
50
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
154
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
155 def _draw_walls(self):
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
156 for index, polygon in self.polygons.items():
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
157 color = POLY_COLORS[index]
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
158 if len(polygon) > 1:
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
159 pointlist = [self.point_to_pygame(p) for p in polygon]
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
160 pygame.draw.lines(self._surface, color, False, pointlist, 2)
197
34c11bb5c96e Interior walls.
Jeremy Thurgood <firxen@gmail.com>
parents: 191
diff changeset
161 for line in self.lines:
34c11bb5c96e Interior walls.
Jeremy Thurgood <firxen@gmail.com>
parents: 191
diff changeset
162 pointlist = [self.point_to_pygame(p) for p in line]
34c11bb5c96e Interior walls.
Jeremy Thurgood <firxen@gmail.com>
parents: 191
diff changeset
163 pygame.draw.lines(self._surface, LINE_COLOR, False, pointlist, 2)
50
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
164
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
165 def get_background(self):
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
166 self._draw_background()
95
ecba9550ad8d Fill the exterior with the blackness of space
Neil Muller <drnlmuller@gmail.com>
parents: 75
diff changeset
167 self._draw_exterior()
50
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
168 # Draw polygons
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
169 self._draw_walls()
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
170 return self._surface
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
171
95
ecba9550ad8d Fill the exterior with the blackness of space
Neil Muller <drnlmuller@gmail.com>
parents: 75
diff changeset
172 def _draw_exterior(self, force=False):
ecba9550ad8d Fill the exterior with the blackness of space
Neil Muller <drnlmuller@gmail.com>
parents: 75
diff changeset
173 """Fill the exterior of the level with black"""
ecba9550ad8d Fill the exterior with the blackness of space
Neil Muller <drnlmuller@gmail.com>
parents: 75
diff changeset
174 if self._exterior and not force:
ecba9550ad8d Fill the exterior with the blackness of space
Neil Muller <drnlmuller@gmail.com>
parents: 75
diff changeset
175 return
118
c02a99502a90 Tweak 'draw exterior' logic to handle surrounded polygons better
Neil Muller <drnlmuller@gmail.com>
parents: 98
diff changeset
176 white = pygame.color.THECOLORS['white']
c02a99502a90 Tweak 'draw exterior' logic to handle surrounded polygons better
Neil Muller <drnlmuller@gmail.com>
parents: 98
diff changeset
177 black = pygame.color.THECOLORS['black']
95
ecba9550ad8d Fill the exterior with the blackness of space
Neil Muller <drnlmuller@gmail.com>
parents: 75
diff changeset
178 surface = pygame.surface.Surface((self.x, self.y), pgl.SRCALPHA)
118
c02a99502a90 Tweak 'draw exterior' logic to handle surrounded polygons better
Neil Muller <drnlmuller@gmail.com>
parents: 98
diff changeset
179 surface.fill(black)
95
ecba9550ad8d Fill the exterior with the blackness of space
Neil Muller <drnlmuller@gmail.com>
parents: 75
diff changeset
180 for index, polygon in self.polygons.items():
ecba9550ad8d Fill the exterior with the blackness of space
Neil Muller <drnlmuller@gmail.com>
parents: 75
diff changeset
181 if len(polygon) > 1:
ecba9550ad8d Fill the exterior with the blackness of space
Neil Muller <drnlmuller@gmail.com>
parents: 75
diff changeset
182 pointlist = [self.point_to_pygame(p) for p in polygon]
ecba9550ad8d Fill the exterior with the blackness of space
Neil Muller <drnlmuller@gmail.com>
parents: 75
diff changeset
183 # filled polygons
118
c02a99502a90 Tweak 'draw exterior' logic to handle surrounded polygons better
Neil Muller <drnlmuller@gmail.com>
parents: 98
diff changeset
184 color = white
c02a99502a90 Tweak 'draw exterior' logic to handle surrounded polygons better
Neil Muller <drnlmuller@gmail.com>
parents: 98
diff changeset
185 # If a polygon overlaps on of the existing polygons,
c02a99502a90 Tweak 'draw exterior' logic to handle surrounded polygons better
Neil Muller <drnlmuller@gmail.com>
parents: 98
diff changeset
186 # it is treated as negative
c02a99502a90 Tweak 'draw exterior' logic to handle surrounded polygons better
Neil Muller <drnlmuller@gmail.com>
parents: 98
diff changeset
187 # This is not a complete inversion, since any overlap
c02a99502a90 Tweak 'draw exterior' logic to handle surrounded polygons better
Neil Muller <drnlmuller@gmail.com>
parents: 98
diff changeset
188 # triggers this (inversion is easy enough, but the
c02a99502a90 Tweak 'draw exterior' logic to handle surrounded polygons better
Neil Muller <drnlmuller@gmail.com>
parents: 98
diff changeset
189 # behaviour doesn't seem useful)
c02a99502a90 Tweak 'draw exterior' logic to handle surrounded polygons better
Neil Muller <drnlmuller@gmail.com>
parents: 98
diff changeset
190 # We also only check the vertexes - not breaking this
c02a99502a90 Tweak 'draw exterior' logic to handle surrounded polygons better
Neil Muller <drnlmuller@gmail.com>
parents: 98
diff changeset
191 # assumption is left to the level designers
c02a99502a90 Tweak 'draw exterior' logic to handle surrounded polygons better
Neil Muller <drnlmuller@gmail.com>
parents: 98
diff changeset
192 surface.lock()
c02a99502a90 Tweak 'draw exterior' logic to handle surrounded polygons better
Neil Muller <drnlmuller@gmail.com>
parents: 98
diff changeset
193 for p in pointlist:
c02a99502a90 Tweak 'draw exterior' logic to handle surrounded polygons better
Neil Muller <drnlmuller@gmail.com>
parents: 98
diff changeset
194 if surface.get_at(p) == white:
c02a99502a90 Tweak 'draw exterior' logic to handle surrounded polygons better
Neil Muller <drnlmuller@gmail.com>
parents: 98
diff changeset
195 color = black
c02a99502a90 Tweak 'draw exterior' logic to handle surrounded polygons better
Neil Muller <drnlmuller@gmail.com>
parents: 98
diff changeset
196 surface.unlock()
c02a99502a90 Tweak 'draw exterior' logic to handle surrounded polygons better
Neil Muller <drnlmuller@gmail.com>
parents: 98
diff changeset
197 pygame.draw.polygon(surface, color, pointlist, 0)
95
ecba9550ad8d Fill the exterior with the blackness of space
Neil Muller <drnlmuller@gmail.com>
parents: 75
diff changeset
198 self._surface.blit(surface, (0, 0), special_flags=pgl.BLEND_RGBA_MULT)
ecba9550ad8d Fill the exterior with the blackness of space
Neil Muller <drnlmuller@gmail.com>
parents: 75
diff changeset
199 self._exterior = True
ecba9550ad8d Fill the exterior with the blackness of space
Neil Muller <drnlmuller@gmail.com>
parents: 75
diff changeset
200
50
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
201 def _draw_background(self, force=False):
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
202 if self._tile_image is None:
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
203 self._tile_image = resources.get_image(self.basetile)
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
204 if self._surface is not None and not force:
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
205 # We assume we don't change
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
206 return self._surface
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
207 self._surface = pygame.surface.Surface((self.x, self.y), pgl.SRCALPHA)
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
208 self._surface.fill(pygame.color.THECOLORS['black'])
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
209 x_step = self._tile_image.get_rect().width
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
210 y_step = self._tile_image.get_rect().height
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
211 x_count = self.x // x_step + 1
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
212 y_count = self.y / y_step + 1
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
213 for x in range(x_count):
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
214 for y in range(y_count):
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
215 tile_rect = pygame.rect.Rect(x * x_step, y * y_step,
98
93256a0987a2 Fix newer pep8 continuation complaint
Neil Muller <drnlmuller@gmail.com>
parents: 95
diff changeset
216 x_step, y_step)
50
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
217 self._surface.blit(self._tile_image, tile_rect)
94d47bfcc7bb Approximate levels and walls
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
218 return self._surface