├── .gitignore ├── .travis.yml ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── README.md ├── TODO.md ├── appveyor.yml ├── appveyor ├── README.rst ├── copydlls.ps1 └── install.ps1 ├── benchmarks ├── base.py ├── blit.py ├── blit_bench.sh ├── collision_bench.sh ├── collision_detection.py ├── events.py ├── events_bench.sh ├── examples_bench.sh ├── fill.py ├── fill_bench.sh ├── moveit.py ├── profiling.py ├── run_benchmark.py ├── sprite_collide_blocks.py ├── stars.py └── testsprite.py ├── cffi_builders ├── build.py ├── jpg_c_build.py ├── lib │ ├── alphablit.c │ ├── bitmask.c │ ├── bitmask.h │ ├── rotate.c │ ├── rotozoom.c │ ├── scale2x.c │ ├── sdlmain_osx.m │ ├── smoothscale.c │ ├── stretch.c │ ├── surface.h │ └── surface_fill.c ├── macosx_c_build.py ├── png_c_build.py ├── sdl_c_build.py └── sdl_keys_c_build.py ├── conformance ├── README ├── conf_tests │ ├── __init__.py │ ├── helpers.py │ ├── test_blending.py │ ├── test_lines.py │ ├── test_shapes.py │ ├── test_smoothscale.py │ ├── test_surface.py │ └── test_transforms.py ├── gen_conformance.py └── test_conformance.py ├── demos ├── README ├── ball.gif ├── chimp.py ├── data │ ├── chimp.bmp │ ├── fist.bmp │ ├── punch.wav │ └── whiff.wav ├── sprite_collide_blocks.py ├── stars.py ├── test_bounce.py ├── test_display_update.py ├── test_simple_window.py ├── test_subsurface.py └── test_surface_blit.py ├── examples ├── __init__.py ├── aliens.py ├── blend_fill.py ├── blit_blends.py ├── chimp.py ├── cursors.py ├── data │ ├── alien1.gif │ ├── alien1.jpg │ ├── alien1.png │ ├── alien2.gif │ ├── alien2.png │ ├── alien3.gif │ ├── alien3.png │ ├── arraydemo.bmp │ ├── asprite.bmp │ ├── background.gif │ ├── blue.mpg │ ├── bomb.gif │ ├── boom.wav │ ├── brick.png │ ├── car_door.wav │ ├── chimp.bmp │ ├── city.png │ ├── danger.gif │ ├── explosion1.gif │ ├── fist.bmp │ ├── house_lo.mp3 │ ├── house_lo.ogg │ ├── house_lo.wav │ ├── liquid.bmp │ ├── midikeys.png │ ├── oldplayer.gif │ ├── player1.gif │ ├── punch.wav │ ├── sans.ttf │ ├── secosmic_lo.wav │ ├── shot.gif │ ├── static.png │ ├── whiff.wav │ └── yuv_1.pgm ├── fastevents.py ├── fonty.py ├── glcube.py ├── headless_no_windows_needed.py ├── liquid.py ├── moveit.py ├── oldalien.py ├── readme.txt ├── scaletest.py ├── scroll.py ├── sound.py ├── stars.py └── testsprite.py ├── helpers └── __init__.py ├── pygame ├── __init__.py ├── _error.py ├── _jpg.py ├── _png.py ├── _sdl.py ├── _sdl_keys.py ├── base.py ├── bufferproxy.py ├── color.py ├── colordict.py ├── compat.py ├── constants.py ├── cursors.py ├── display.py ├── draw.py ├── event.py ├── font.py ├── freesansbold.ttf ├── image.py ├── joystick.py ├── key.py ├── locals.py ├── macosx.py ├── mask.py ├── math.py ├── mixer.py ├── mixer_music.py ├── mouse.py ├── pkgdata.py ├── pygame_icon.bmp ├── pygame_icon.icns ├── pygame_icon.svg ├── pygame_icon.tiff ├── rect.py ├── rwobject.py ├── sprite.py ├── surface.py ├── surflock.py ├── sysfont.py ├── threads.py ├── time.py ├── transform.py └── version.py ├── setup.py └── test ├── __init__.py ├── __main__.py ├── base_test.py ├── color_test.py ├── display_test.py ├── draw_test.py ├── event_test.py ├── font_test.py ├── image_test.py ├── imageext_test.py ├── mask_test.py ├── math_test.py ├── mixer_music_test.py ├── mixer_test.py ├── mouse_test.py ├── rect_test.py ├── surface_test.py ├── sysfont_test.py ├── test_utils ├── __init__.py ├── arrinter.py ├── async_sub.py ├── buftools.py ├── endian.py ├── png.py ├── run_tests.py ├── test_runner.py ├── unittest.py └── unittest_patch.py └── time_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/TODO.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/appveyor.yml -------------------------------------------------------------------------------- /appveyor/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/appveyor/README.rst -------------------------------------------------------------------------------- /appveyor/copydlls.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/appveyor/copydlls.ps1 -------------------------------------------------------------------------------- /appveyor/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/appveyor/install.ps1 -------------------------------------------------------------------------------- /benchmarks/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/benchmarks/base.py -------------------------------------------------------------------------------- /benchmarks/blit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/benchmarks/blit.py -------------------------------------------------------------------------------- /benchmarks/blit_bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/benchmarks/blit_bench.sh -------------------------------------------------------------------------------- /benchmarks/collision_bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/benchmarks/collision_bench.sh -------------------------------------------------------------------------------- /benchmarks/collision_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/benchmarks/collision_detection.py -------------------------------------------------------------------------------- /benchmarks/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/benchmarks/events.py -------------------------------------------------------------------------------- /benchmarks/events_bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/benchmarks/events_bench.sh -------------------------------------------------------------------------------- /benchmarks/examples_bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/benchmarks/examples_bench.sh -------------------------------------------------------------------------------- /benchmarks/fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/benchmarks/fill.py -------------------------------------------------------------------------------- /benchmarks/fill_bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/benchmarks/fill_bench.sh -------------------------------------------------------------------------------- /benchmarks/moveit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/benchmarks/moveit.py -------------------------------------------------------------------------------- /benchmarks/profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/benchmarks/profiling.py -------------------------------------------------------------------------------- /benchmarks/run_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/benchmarks/run_benchmark.py -------------------------------------------------------------------------------- /benchmarks/sprite_collide_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/benchmarks/sprite_collide_blocks.py -------------------------------------------------------------------------------- /benchmarks/stars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/benchmarks/stars.py -------------------------------------------------------------------------------- /benchmarks/testsprite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/benchmarks/testsprite.py -------------------------------------------------------------------------------- /cffi_builders/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/cffi_builders/build.py -------------------------------------------------------------------------------- /cffi_builders/jpg_c_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/cffi_builders/jpg_c_build.py -------------------------------------------------------------------------------- /cffi_builders/lib/alphablit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/cffi_builders/lib/alphablit.c -------------------------------------------------------------------------------- /cffi_builders/lib/bitmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/cffi_builders/lib/bitmask.c -------------------------------------------------------------------------------- /cffi_builders/lib/bitmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/cffi_builders/lib/bitmask.h -------------------------------------------------------------------------------- /cffi_builders/lib/rotate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/cffi_builders/lib/rotate.c -------------------------------------------------------------------------------- /cffi_builders/lib/rotozoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/cffi_builders/lib/rotozoom.c -------------------------------------------------------------------------------- /cffi_builders/lib/scale2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/cffi_builders/lib/scale2x.c -------------------------------------------------------------------------------- /cffi_builders/lib/sdlmain_osx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/cffi_builders/lib/sdlmain_osx.m -------------------------------------------------------------------------------- /cffi_builders/lib/smoothscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/cffi_builders/lib/smoothscale.c -------------------------------------------------------------------------------- /cffi_builders/lib/stretch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/cffi_builders/lib/stretch.c -------------------------------------------------------------------------------- /cffi_builders/lib/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/cffi_builders/lib/surface.h -------------------------------------------------------------------------------- /cffi_builders/lib/surface_fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/cffi_builders/lib/surface_fill.c -------------------------------------------------------------------------------- /cffi_builders/macosx_c_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/cffi_builders/macosx_c_build.py -------------------------------------------------------------------------------- /cffi_builders/png_c_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/cffi_builders/png_c_build.py -------------------------------------------------------------------------------- /cffi_builders/sdl_c_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/cffi_builders/sdl_c_build.py -------------------------------------------------------------------------------- /cffi_builders/sdl_keys_c_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/cffi_builders/sdl_keys_c_build.py -------------------------------------------------------------------------------- /conformance/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/conformance/README -------------------------------------------------------------------------------- /conformance/conf_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/conformance/conf_tests/__init__.py -------------------------------------------------------------------------------- /conformance/conf_tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/conformance/conf_tests/helpers.py -------------------------------------------------------------------------------- /conformance/conf_tests/test_blending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/conformance/conf_tests/test_blending.py -------------------------------------------------------------------------------- /conformance/conf_tests/test_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/conformance/conf_tests/test_lines.py -------------------------------------------------------------------------------- /conformance/conf_tests/test_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/conformance/conf_tests/test_shapes.py -------------------------------------------------------------------------------- /conformance/conf_tests/test_smoothscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/conformance/conf_tests/test_smoothscale.py -------------------------------------------------------------------------------- /conformance/conf_tests/test_surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/conformance/conf_tests/test_surface.py -------------------------------------------------------------------------------- /conformance/conf_tests/test_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/conformance/conf_tests/test_transforms.py -------------------------------------------------------------------------------- /conformance/gen_conformance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/conformance/gen_conformance.py -------------------------------------------------------------------------------- /conformance/test_conformance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/conformance/test_conformance.py -------------------------------------------------------------------------------- /demos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/demos/README -------------------------------------------------------------------------------- /demos/ball.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/demos/ball.gif -------------------------------------------------------------------------------- /demos/chimp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/demos/chimp.py -------------------------------------------------------------------------------- /demos/data/chimp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/demos/data/chimp.bmp -------------------------------------------------------------------------------- /demos/data/fist.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/demos/data/fist.bmp -------------------------------------------------------------------------------- /demos/data/punch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/demos/data/punch.wav -------------------------------------------------------------------------------- /demos/data/whiff.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/demos/data/whiff.wav -------------------------------------------------------------------------------- /demos/sprite_collide_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/demos/sprite_collide_blocks.py -------------------------------------------------------------------------------- /demos/stars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/demos/stars.py -------------------------------------------------------------------------------- /demos/test_bounce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/demos/test_bounce.py -------------------------------------------------------------------------------- /demos/test_display_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/demos/test_display_update.py -------------------------------------------------------------------------------- /demos/test_simple_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/demos/test_simple_window.py -------------------------------------------------------------------------------- /demos/test_subsurface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/demos/test_subsurface.py -------------------------------------------------------------------------------- /demos/test_surface_blit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/demos/test_surface_blit.py -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/aliens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/aliens.py -------------------------------------------------------------------------------- /examples/blend_fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/blend_fill.py -------------------------------------------------------------------------------- /examples/blit_blends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/blit_blends.py -------------------------------------------------------------------------------- /examples/chimp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/chimp.py -------------------------------------------------------------------------------- /examples/cursors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/cursors.py -------------------------------------------------------------------------------- /examples/data/alien1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/alien1.gif -------------------------------------------------------------------------------- /examples/data/alien1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/alien1.jpg -------------------------------------------------------------------------------- /examples/data/alien1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/alien1.png -------------------------------------------------------------------------------- /examples/data/alien2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/alien2.gif -------------------------------------------------------------------------------- /examples/data/alien2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/alien2.png -------------------------------------------------------------------------------- /examples/data/alien3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/alien3.gif -------------------------------------------------------------------------------- /examples/data/alien3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/alien3.png -------------------------------------------------------------------------------- /examples/data/arraydemo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/arraydemo.bmp -------------------------------------------------------------------------------- /examples/data/asprite.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/asprite.bmp -------------------------------------------------------------------------------- /examples/data/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/background.gif -------------------------------------------------------------------------------- /examples/data/blue.mpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/blue.mpg -------------------------------------------------------------------------------- /examples/data/bomb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/bomb.gif -------------------------------------------------------------------------------- /examples/data/boom.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/boom.wav -------------------------------------------------------------------------------- /examples/data/brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/brick.png -------------------------------------------------------------------------------- /examples/data/car_door.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/car_door.wav -------------------------------------------------------------------------------- /examples/data/chimp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/chimp.bmp -------------------------------------------------------------------------------- /examples/data/city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/city.png -------------------------------------------------------------------------------- /examples/data/danger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/danger.gif -------------------------------------------------------------------------------- /examples/data/explosion1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/explosion1.gif -------------------------------------------------------------------------------- /examples/data/fist.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/fist.bmp -------------------------------------------------------------------------------- /examples/data/house_lo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/house_lo.mp3 -------------------------------------------------------------------------------- /examples/data/house_lo.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/house_lo.ogg -------------------------------------------------------------------------------- /examples/data/house_lo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/house_lo.wav -------------------------------------------------------------------------------- /examples/data/liquid.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/liquid.bmp -------------------------------------------------------------------------------- /examples/data/midikeys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/midikeys.png -------------------------------------------------------------------------------- /examples/data/oldplayer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/oldplayer.gif -------------------------------------------------------------------------------- /examples/data/player1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/player1.gif -------------------------------------------------------------------------------- /examples/data/punch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/punch.wav -------------------------------------------------------------------------------- /examples/data/sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/sans.ttf -------------------------------------------------------------------------------- /examples/data/secosmic_lo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/secosmic_lo.wav -------------------------------------------------------------------------------- /examples/data/shot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/shot.gif -------------------------------------------------------------------------------- /examples/data/static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/static.png -------------------------------------------------------------------------------- /examples/data/whiff.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/whiff.wav -------------------------------------------------------------------------------- /examples/data/yuv_1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/data/yuv_1.pgm -------------------------------------------------------------------------------- /examples/fastevents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/fastevents.py -------------------------------------------------------------------------------- /examples/fonty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/fonty.py -------------------------------------------------------------------------------- /examples/glcube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/glcube.py -------------------------------------------------------------------------------- /examples/headless_no_windows_needed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/headless_no_windows_needed.py -------------------------------------------------------------------------------- /examples/liquid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/liquid.py -------------------------------------------------------------------------------- /examples/moveit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/moveit.py -------------------------------------------------------------------------------- /examples/oldalien.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/oldalien.py -------------------------------------------------------------------------------- /examples/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/readme.txt -------------------------------------------------------------------------------- /examples/scaletest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/scaletest.py -------------------------------------------------------------------------------- /examples/scroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/scroll.py -------------------------------------------------------------------------------- /examples/sound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/sound.py -------------------------------------------------------------------------------- /examples/stars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/stars.py -------------------------------------------------------------------------------- /examples/testsprite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/examples/testsprite.py -------------------------------------------------------------------------------- /helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/helpers/__init__.py -------------------------------------------------------------------------------- /pygame/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/__init__.py -------------------------------------------------------------------------------- /pygame/_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/_error.py -------------------------------------------------------------------------------- /pygame/_jpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/_jpg.py -------------------------------------------------------------------------------- /pygame/_png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/_png.py -------------------------------------------------------------------------------- /pygame/_sdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/_sdl.py -------------------------------------------------------------------------------- /pygame/_sdl_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/_sdl_keys.py -------------------------------------------------------------------------------- /pygame/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/base.py -------------------------------------------------------------------------------- /pygame/bufferproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/bufferproxy.py -------------------------------------------------------------------------------- /pygame/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/color.py -------------------------------------------------------------------------------- /pygame/colordict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/colordict.py -------------------------------------------------------------------------------- /pygame/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/compat.py -------------------------------------------------------------------------------- /pygame/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/constants.py -------------------------------------------------------------------------------- /pygame/cursors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/cursors.py -------------------------------------------------------------------------------- /pygame/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/display.py -------------------------------------------------------------------------------- /pygame/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/draw.py -------------------------------------------------------------------------------- /pygame/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/event.py -------------------------------------------------------------------------------- /pygame/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/font.py -------------------------------------------------------------------------------- /pygame/freesansbold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/freesansbold.ttf -------------------------------------------------------------------------------- /pygame/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/image.py -------------------------------------------------------------------------------- /pygame/joystick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/joystick.py -------------------------------------------------------------------------------- /pygame/key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/key.py -------------------------------------------------------------------------------- /pygame/locals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/locals.py -------------------------------------------------------------------------------- /pygame/macosx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/macosx.py -------------------------------------------------------------------------------- /pygame/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/mask.py -------------------------------------------------------------------------------- /pygame/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/math.py -------------------------------------------------------------------------------- /pygame/mixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/mixer.py -------------------------------------------------------------------------------- /pygame/mixer_music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/mixer_music.py -------------------------------------------------------------------------------- /pygame/mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/mouse.py -------------------------------------------------------------------------------- /pygame/pkgdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/pkgdata.py -------------------------------------------------------------------------------- /pygame/pygame_icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/pygame_icon.bmp -------------------------------------------------------------------------------- /pygame/pygame_icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/pygame_icon.icns -------------------------------------------------------------------------------- /pygame/pygame_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/pygame_icon.svg -------------------------------------------------------------------------------- /pygame/pygame_icon.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/pygame_icon.tiff -------------------------------------------------------------------------------- /pygame/rect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/rect.py -------------------------------------------------------------------------------- /pygame/rwobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/rwobject.py -------------------------------------------------------------------------------- /pygame/sprite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/sprite.py -------------------------------------------------------------------------------- /pygame/surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/surface.py -------------------------------------------------------------------------------- /pygame/surflock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/surflock.py -------------------------------------------------------------------------------- /pygame/sysfont.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/sysfont.py -------------------------------------------------------------------------------- /pygame/threads.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pygame/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/time.py -------------------------------------------------------------------------------- /pygame/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/transform.py -------------------------------------------------------------------------------- /pygame/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/pygame/version.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/__main__.py -------------------------------------------------------------------------------- /test/base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/base_test.py -------------------------------------------------------------------------------- /test/color_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/color_test.py -------------------------------------------------------------------------------- /test/display_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/display_test.py -------------------------------------------------------------------------------- /test/draw_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/draw_test.py -------------------------------------------------------------------------------- /test/event_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/event_test.py -------------------------------------------------------------------------------- /test/font_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/font_test.py -------------------------------------------------------------------------------- /test/image_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/image_test.py -------------------------------------------------------------------------------- /test/imageext_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/imageext_test.py -------------------------------------------------------------------------------- /test/mask_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/mask_test.py -------------------------------------------------------------------------------- /test/math_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/math_test.py -------------------------------------------------------------------------------- /test/mixer_music_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/mixer_music_test.py -------------------------------------------------------------------------------- /test/mixer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/mixer_test.py -------------------------------------------------------------------------------- /test/mouse_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/mouse_test.py -------------------------------------------------------------------------------- /test/rect_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/rect_test.py -------------------------------------------------------------------------------- /test/surface_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/surface_test.py -------------------------------------------------------------------------------- /test/sysfont_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/sysfont_test.py -------------------------------------------------------------------------------- /test/test_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/test_utils/__init__.py -------------------------------------------------------------------------------- /test/test_utils/arrinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/test_utils/arrinter.py -------------------------------------------------------------------------------- /test/test_utils/async_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/test_utils/async_sub.py -------------------------------------------------------------------------------- /test/test_utils/buftools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/test_utils/buftools.py -------------------------------------------------------------------------------- /test/test_utils/endian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/test_utils/endian.py -------------------------------------------------------------------------------- /test/test_utils/png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/test_utils/png.py -------------------------------------------------------------------------------- /test/test_utils/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/test_utils/run_tests.py -------------------------------------------------------------------------------- /test/test_utils/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/test_utils/test_runner.py -------------------------------------------------------------------------------- /test/test_utils/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/test_utils/unittest.py -------------------------------------------------------------------------------- /test/test_utils/unittest_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/test_utils/unittest_patch.py -------------------------------------------------------------------------------- /test/time_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTPUG/pygame_cffi/HEAD/test/time_test.py --------------------------------------------------------------------------------