avocados/avocado.py

128 lines
3.4 KiB
Python
Raw Normal View History

2014-08-30 17:59:20 +02:00
#!/usr/bin/env python3
2014-08-30 20:53:47 +02:00
import pygame, random
from support import operations
2014-08-30 17:59:20 +02:00
class Avocado:
def __init__(self, screen, color, size, target, sound=True, filename='img/AvoCado_0.png'):
# HELP please!!
2014-08-30 21:20:42 +02:00
# We randomly decide whether we should instanciate or not
# I'd rather just not return an instance,
# but I don't know how to do that :(
2014-08-30 21:20:42 +02:00
if random.randint(0,1) == 0:
self.is_falling = False
self.has_been_pinned = False
2014-08-30 21:20:42 +02:00
return None
# Set up our instance variables
2014-08-30 20:53:47 +02:00
self.screen = screen
2014-08-30 21:20:42 +02:00
self.color = color
self.target = target
2014-08-30 20:47:21 +02:00
self.screen_width, self.screen_height = screen.get_size()
self.w, self.y = size
2014-08-30 20:53:47 +02:00
2014-08-30 21:20:42 +02:00
# Initialize the image
2014-08-30 18:20:49 +02:00
self.i = pygame.image.load(filename).convert_alpha()
2014-08-30 20:53:47 +02:00
operations.color_surface(self.i, color)
2014-08-30 20:55:40 +02:00
self.image = pygame.transform.scale(self.i, (self.w, self.y))
2014-08-30 21:20:42 +02:00
self.rect = self.image.get_rect()
2014-08-30 18:20:49 +02:00
2014-08-30 21:20:42 +02:00
# Set the avocado's initial position and velocity
2014-08-30 19:01:48 +02:00
self.init_pos()
2014-08-30 21:20:42 +02:00
self.vx = 10
self.vy = 10
2014-08-30 18:20:49 +02:00
self.is_falling = True
self.has_been_pinned = False
2014-08-30 17:59:20 +02:00
def updateTargetColor(self, targetColor):
self.target = targetColor
2014-08-30 21:20:42 +02:00
def blitme(self):
self.screen.blit(self.image, self.rect)
2014-08-30 19:01:48 +02:00
def init_pos(self):
2014-08-30 21:20:42 +02:00
self.rect.x = random.randint(0, self.screen_width)
self.rect.y = random.randint(20, 70)
2014-08-30 18:43:19 +02:00
def isHit(self, click):
2014-08-30 17:59:20 +02:00
"""
Checks whether this object collides with the given position
of a mouse-click. Return true is the correct color was hit and
false if it was the wrong one.
Just returns void if no avocado was hit
2014-08-30 17:59:20 +02:00
"""
2014-08-30 21:11:10 +02:00
mousex, mousey = click
2014-08-30 21:24:58 +02:00
if self.rect.left < mousex and self.rect.right > mousex and \
self.rect.top < mousey and self.rect.bottom > mousey:
if self.color == self.target:
self.has_been_pinned = True
return True
else:
return False
2014-08-30 21:20:42 +02:00
def exists(self):
return not self.has_been_pinned and self.is_falling
2014-08-30 21:20:42 +02:00
2014-08-30 17:59:20 +02:00
2014-08-30 18:20:49 +02:00
def move(self):
2014-08-30 21:20:42 +02:00
if self.rect.right > self.screen_width or self.rect.left < 0:
self.vx = -self.vy
if self.hasLanded():
self.destroy()
self.rect.x += self.vx
self.rect.y += self.vy
2014-08-30 18:20:49 +02:00
return True
2014-08-30 21:20:42 +02:00
def hasLanded(self):
if self.rect.bottom > self.screen_height or self.rect.top < 0:
self.is_falling = False
print('platch')
return True
2014-08-30 21:41:53 +02:00
def mute(self,mute=False):
2014-08-30 22:02:08 +02:00
if not sound:
return
2014-08-30 21:41:53 +02:00
if mute:
pygame.mixer.music.set_volume(0.0)
else:
pygame.mixer.music.set_volume(0.5)
2014-08-30 21:41:53 +02:00
def playLevel(self,lvl=1):
2014-08-30 22:02:08 +02:00
if not sound:
return
2014-08-30 21:41:53 +02:00
if lvl == 1:
pygame.mixer.music.load("""audio/level1.wav""")
elif lvl == 2:
pygame.mixer.music.load("""audio/level2.wav""")
elif lvl == 3:
pygame.mixer.music.load("""audio/level3.wav""")
pygame.mixer.music.play()
2014-08-30 21:41:53 +02:00
def fade(self):
2014-08-30 22:02:08 +02:00
if not sound:
return
2014-08-30 21:41:53 +02:00
pygame.mixer.music.fadeout(3000)
2014-08-30 21:41:53 +02:00
def loadClick(self):
2014-08-30 22:02:08 +02:00
if not sound:
return
2014-08-30 21:41:53 +02:00
self.click = pygame.mixer.Sound("audio/click.wav")
return self.click
2014-08-30 22:02:17 +02:00
def destroy(self):
del(self)