Autor Tópico: Jogos com python  (Lida 4242 vezes)

Offline Lamego

  • Usuário Ubuntu
  • *
  • Mensagens: 1.943
    • Ver perfil
Jogos com python
« Online: 20 de Agosto de 2006, 09:38 »
Criar jogos com pygame é bastante fácil, aqui vai uma pequena demo.
Primeiro instalem o pygame com:
Código: [Selecionar]
sudo apt-get install python-pygameDepois é só gravar o ball.py :
Código: [Selecionar]
import sys, pygame
pygame.init()

size = width, height = 800, 600
speed = [2, 2]
black = 0, 0, 0

screen = pygame.display.set_mode(size)
ball = pygame.image.load("/usr/share/pixmaps/mozilla-firefox.png")
ballrect = ball.get_rect()

while 1:
        for event in pygame.event.get():
                if event.type == pygame.QUIT: sys.exit()

        ballrect = ballrect.move(speed)
        if ballrect.left < 0 or ballrect.right > width:
                speed[0] = -speed[0]
        if ballrect.top < 0 or ballrect.bottom > height:
                speed[1] = -speed[1]
        screen.fill(black)
        screen.blit(ball, ballrect)
        pygame.display.flip()
E executa com:
Código: [Selecionar]
python ball.py
João Luís Marques Pinto
Mais programs e jogos para o Ubuntu

Offline _Luks

  • Usuário Ubuntu
  • *
  • Mensagens: 202
  • Debian Lenny
    • Ver perfil
    • Meu Blog
Re: Jogos com python
« Resposta #1 Online: 20 de Agosto de 2006, 12:27 »
criar jogos com python é realmente facil. Principalmente para jogos 2D.