make sure the pin hit the center of the avocado.

master
Raphaël Vinot 2014-08-31 10:15:28 +02:00
parent 9a6954ac8a
commit cdc81ffbc2
3 changed files with 8 additions and 7 deletions

View File

@ -62,9 +62,9 @@ class Avocado:
if self.color == self.target:
self.has_been_pinned = True
self.is_still_falling = False
return True
else:
return False
return True, self.rect.center
return False, (0, 0)
def isFalling(self):

View File

@ -226,9 +226,10 @@ class TheGame:
# Check if any avocados have been hit
for avo in movingAvocados:
hit = avo.isHit(mousepos)
hit, center = avo.isHit(mousepos)
if hit:
score += 100
newPin.throwAt(center)
color = self.chooseRandomColor()
crystalBall.setColor(color)
elif hit == False:

View File

@ -13,11 +13,12 @@ class Generate:
screen_width, screen_height = screen.get_size()
self.pos = (screen_width / 2, screen_height)
self.image = pygame.image.load(os.path.join('img','pin.png')).convert_alpha()
self.size = self.image.get_size()
def throwAt(self, target):
self.inFlight = True
self.target = target
x, y = target
self.target = (x, y - self.size[1])
def isStuck(self):
@ -29,7 +30,6 @@ class Generate:
def blitme(self):
self.screen.blit(self.image, self.pos)
def moveTowardsTarget(self):
##############################
#