#pragma section-numbers off
[[TableOfContents]]

= 概要 =

= URL =
http://pygame.org/

= インストール =
["SDL"]をインストールしておく。
{{{
tar xvfz pygame.tar.gz
cd pygame
sudo python configu.py
sudo python setup.py install
}}}

= 設定 =

= 利用方法 =
== とりあえず動作させてみる場合 ==
Mac OS Xではpythonwを利用して起動する必要があります。

{{{
import pygame
from pygame.locals import *
import pygame.display

pygame.init()
pygame.display.init()
info = pygame.display.Info()
print info
}}}
画面も何もでない例だとインパクトないな。。


= 実際に利用して作成されているゲーム =
[http://www.shibu.jp:8080/genshijin2 となりの原始人2]

[http://icculus.org/pyddr/ pydance - play Dance Dance Revolution in Linux, BSD, MacOS X, BeOS, and Windows]

= 関連ライブラリ =
http://savannah.nongnu.org/projects/pygsear/

["PyOpenGl"]

= チュートリアル =

[http://sjbrown.ezide.com/games/writing-games.html sjbrown's Guide To Writing Games]

[http://www.linuxjournal.com/article.php?sid=7694 Creating Games with Pygame]

[http://www.unixuser.org/~euske/doc/pygame/ 新山さんのpygame文書翻訳]

[http://www.halb-katze.jp/ Pygameでゲームを作ろう]

= 移植したらおもしろそうなやつ =
http://yaneurao.zive.net/yaneSDK4D/sample7.zip

= 参考サイト =
[http://mail.python.org/pipermail/python-list/2004-February/207816.html pygame and tutorial]:公式チュートリアルの読む順番に関するアドバイス

[http://www.gembook.jp/tsum/page.pys?wiki=PyGame PyGame - ウヰキエリア]

http://kumiki.c.u-tokyo.ac.jp/~ichiyama/mt/archives/000027.html

[http://kumiki.c.u-tokyo.ac.jp/~ichiyama/mt/archives/000057.html love unstable: PyGameでOpenGL]

[http://www.gamedev.net/reference/articles/article2259.asp GameDev.net - How To Build a Game In A Week From Scratch With No Budget]:Pythonを利用して40時間でGameを作成する


----
CategoryPrograming
CategoryPython