やってみる

アウトプットすべく己を導くためのブログ。その試行錯誤すらたれ流す。

PygameでHelloWorld

Window表示、bmp画像のロード、座標移動。

成果物

GitHubPygame.tutorial201707091537

参考

ソースコード

0.py

import sys, pygame
pygame.init()

size = width, height = 320, 240
speed = [2, 2]
black = 0, 0, 0

screen = pygame.display.set_mode(size)

ball = pygame.image.load("ball.bmp")
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()

実行

$ python 0.py 

f:id:ytyaru:20170709160628p:plain

白い丸いのが動く。

所感

とりあえず動いた。

IME対応していないっぽいのが残念。

http://syutin.cside.ne.jp/diary/2016/10/624