I am using python 2.6.4 to make a game. In the game the user is controlling a dog that has to catch moles that pop up. How do I make multiple copies of the mole appear for a short amount of time and reappear somewhere else? Eventually I would like to add scoring for the moles that escape and for the dog that catches moles.
from livewires import games
import random
games.init(screen_width = 640, screen_height = 480, fps = 50)
class Dog(games.Sprite):
""" The hound controlled by the mouse. """
def update(self):
""" Move to mouse position. """
self.x = games.mouse.x
self.y = games.mouse.y
self.check_collide()
def check_collide(self):
""" Check for collision with mole. """
for mole in self.overlapping_sprites:
mole.handle_collide()
class Mole(games.Sprite):
""" Mole that appears. """
def handle_collide(self):
""" Move to a random screen location. """
self.x = random.randrange(games.screen.width)
self.y = random.randrange(games.screen.height)
def main():
wall_image = games.load_image("lawn.jpg", transparent = False)
games.screen.background = wall_image
mole_image = games.load_image("mole.bmp")
mole_x = random.randrange(games.screen.width)
mole_y = random.randrange(games.screen.height)
the_mole = Mole(image = mole_image, x = mole_x, y = mole_y)
games.screen.add(the_mole)
dog_image = games.load_image("dog.bmp")
the_dog = Dog(image = dog_image,
x = games.mouse.x,
y = games.mouse.y)
games.screen.add(the_dog)
games.mouse.is_visible = True
games.screen.event_grab = True
games.screen.mainloop()
# kick it off!
main()
