Change target FPS and rescale things to match
[tabakrolletjie.git] / tabakrolletjie / enemies.py
1 # Boyd, the friendly, misunderstood turnip loving, light hating space mould
2
3 import random
4
5 import pymunk
6 import pymunk.pygame_util
7 import pygame.draw
8 import pygame.surface
9 import pygame.display
10
11 from .constants import (SCREEN_SIZE, MOULD_CATEGORY, OBSTACLE_CATEGORY,
12                         TURNIP_CATEGORY, COLOURS)
13 from .loader import loader
14 from .sound import sound
15 from .transforms import Multiply
16 from .utils import debug_timer
17
18 MOULD_FILTER = pymunk.ShapeFilter(
19     mask=MOULD_CATEGORY | OBSTACLE_CATEGORY,
20     categories=MOULD_CATEGORY)
21
22 EAT_TURNIP_FILTER = pymunk.ShapeFilter(mask=TURNIP_CATEGORY)
23
24
25 # Boyd parameters
26 SPAWN_RATE = 5
27 MAX_AGE = 30
28 MAX_ELEMENTS = 400
29 MAX_HEALTH = 100
30
31 # Increase in health per day
32 DAY_HEALTH = 10
33
34 HEAL_FACTOR = 1
35
36 MOULD_STAGES = [7, 13]
37
38 MOULD_RADIUS = 16
39
40
41 def calc_colour_transform(resistances):
42     fr = fg = fb = 0
43     for colour, value in resistances.items():
44         if value:
45             new_value = 63 + 64 * value
46             r, g, b = COLOURS[colour]
47             if r:
48                 fr += new_value
49             if g:
50                 fg += new_value
51             if b:
52                 fb += new_value
53     # Scale if we've exceeded 255
54     # Should only be required when we have lights that aren't soley red,
55     # green or blue
56     max_value = max(fr, fg, fb)
57     if max_value > 255:
58         fr = int(255 * fr / float(max_value))
59         fg = int(255 * fg / float(max_value))
60         fb = int(255 * fb / float(max_value))
61     return Multiply(colour=(fr, fg, fb))
62
63
64 class Mould(pymunk.Body):
65     """A segment of Boyd"""
66
67     def __init__(self, gamestate, space, pos, resistances, transform):
68         super(Mould, self).__init__(0, 0, pymunk.Body.STATIC)
69         self.position = pos
70         self._shape = pymunk.Circle(self, MOULD_RADIUS)
71         space.add(self, self._shape)
72         self._shape.filter = MOULD_FILTER
73         self._age = 0
74         self._img = None
75         self._health = 500
76         self.has_eyeball = False
77         self._eyeball = None
78         self._resistances = resistances
79         self._transform = transform
80
81     def pygame_pos(self, surface):
82         """Convert to pygame coordinates and offset position so
83            our position is the centre of the image."""
84         # The odd sign combination is because of the pymunk / pygame
85         # transform, but we do it this way to exploit Vec2d math magic
86         return pymunk.pygame_util.to_pygame(
87             self.position + (-MOULD_RADIUS, MOULD_RADIUS), surface)
88
89     def get_image(self):
90         if not self._img:
91             name = random.choice(
92                 ('mouldA.png', 'mouldB.png', 'mouldC.png'))
93             size = (
94                 "16" if self._age < MOULD_STAGES[0] else
95                 "32" if self._age < MOULD_STAGES[1] else "64")
96             self._img = loader.load_image(size, name,
97                                           transform=self._transform)
98         return self._img
99
100     def get_eyeball(self):
101         if not self._eyeball:
102             name = random.choice(
103                 ('eyeballA.png', 'eyeballB.png', 'eyeballC.png'))
104             self._eyeball = loader.load_image("32", name)
105         return self._eyeball
106
107     def set_health(self, new_health):
108         self._health = new_health
109
110     def tick(self, gamestate, space, moulds):
111         """Grow and / or Die"""
112
113         self._age += 1
114
115         # we regain a health every tick, so we heal in the dark
116         if self._health < MAX_HEALTH:
117             self._health += HEAL_FACTOR
118
119         refresh = False
120
121         if (self._age % SPAWN_RATE) == 0 and len(moulds) < MAX_ELEMENTS:
122             # Spawn a new child, if we can
123             spawn = True
124             choice = random.randint(0, 3)
125             if choice == 0:
126                 pos = self.position + (0, 24)
127             elif choice == 1:
128                 pos = self.position + (24, 0)
129             elif choice == 2:
130                 pos = self.position + (-24, 0)
131             else:
132                 pos = self.position + (0, -24)
133             # check for bounds
134             if pos[0] < 0 or pos[0] >= SCREEN_SIZE[0]:
135                 spawn = False
136             if pos[1] < 0 or pos[1] >= SCREEN_SIZE[1]:
137                 spawn = False
138             # Check for free space
139             # We allow some overlap, hence not checking full radius
140             query = space.point_query(pos, 8, MOULD_FILTER)
141             if query:
142                 spawn = False
143             if spawn:
144                 child = Mould(gamestate, space, pos, self._resistances,
145                               self._transform)
146                 child._health = self._health
147                 moulds.append(child)
148                 refresh = True
149                 if random.randint(0, 10) < 2:
150                     sound.play_sound("mouth_pop_2a.ogg")
151
152         if self._age in MOULD_STAGES:
153             # We grow in size
154             refresh = True
155             self._img = None  # invalidate cached image
156
157         if self._age > MOULD_STAGES[1] and random.randint(0, 500) < 1:
158             # Maybe we grow an eyeball
159             self.has_eyeball = True
160
161         if self._age > MAX_AGE:
162             # We die of old age
163             space.remove(self, self._shape)
164             moulds.remove(self)
165             refresh = True
166         else:
167             # Check for turnips we can eat
168             # Note that we can only eat a tick after we spawn
169             query = space.point_query(self.position, MOULD_RADIUS,
170                                       EAT_TURNIP_FILTER)
171             if query:
172                 query[0].shape.body.turnip.eaten = True
173         return refresh
174
175     def damage(self, light, space, moulds):
176         """Take damage for light, adjusted for resistances."""
177         damage = light.base_damage()
178         colour = light.colour
179         damage = int(damage * (3 - self._resistances.get(colour, 0)) / 3.0)
180         self._health -= damage
181         if self._health <= 0 and self._age <= MAX_AGE:
182             # We die of damage
183             space.remove(self, self._shape)
184             moulds.remove(self)
185             return True
186         return False
187
188
189 class Boyd(object):
190
191     def __init__(self, gamestate, space):
192         self._moulds = []
193         self._seen_colours = set()
194         self._mould_transform = calc_colour_transform(gamestate.resistances)
195         for position in gamestate.get_spawn_positions():
196             seed = Mould(gamestate, space, position,
197                          gamestate.resistances, self._mould_transform)
198             seed.set_health(MAX_HEALTH + gamestate.days * DAY_HEALTH)
199             self._moulds.append(seed)
200         self._image = pygame.surface.Surface(SCREEN_SIZE)
201         self._image = self._image.convert_alpha(pygame.display.get_surface())
202         self._draw_moulds()
203
204     def _draw_moulds(self):
205         self._image.fill((0, 0, 0, 0))
206         for m in self._moulds:
207             self._image.blit(m.get_image(),
208                              m.pygame_pos(self._image), None,
209                              0)
210         for m in self._moulds:
211             if m.has_eyeball:
212                 self._image.blit(m.get_eyeball(), m.pygame_pos(self._image),
213                                  None, 0)
214
215     @debug_timer('Boyd.tick')
216     def tick(self, gamestate, space, lights):
217         redraw = False
218         # Handle spawn events
219         for mould in self._moulds[:]:
220             # Handle updates
221             if mould.tick(gamestate, space, self._moulds):
222                 redraw = True
223             # Check for damage
224             lit_by = lights.lit_by(mould.position, MOULD_RADIUS)
225             for light in lit_by:
226                 self._seen_colours.add(light.colour)
227                 if mould.damage(light, space, self._moulds):
228                     redraw = True
229                     break  # we only die once
230         if redraw:
231             self._draw_moulds()
232
233     def render(self, surface):
234         """Draw ourselves"""
235         surface.blit(self._image, (0, 0), None, 0)
236
237     def alive(self):
238         return len(self._moulds) > 0
239
240     def update_resistances(self, gamestate):
241         for colour in self._seen_colours:
242             cur_reistance = gamestate.resistances.get(colour, 0)
243             gamestate.resistances[colour] = cur_reistance + 2
244         for colour in gamestate.resistances:
245             gamestate.resistances[colour] -= 1
246             if gamestate.resistances[colour] > 3:
247                 gamestate.resistances[colour] = 3
248             if gamestate.resistances[colour] < 0:
249                 gamestate.resistances[colour] = 0