Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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()
share|improve this question
3  
You should post the code of your attempt to get it working, explain what you tried already and what the current problem is. Otherwise there is no answering your question except to say "you program it to". – Paul C Dec 12 '12 at 18:00

closed as not a real question by mVChr, Lipis, Gareth Rees, Lev Levitsky, Wooble Dec 12 '12 at 18:10

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.