├── .gitignore ├── LICENSE ├── README.markdown ├── SampleGame ├── T2Game.py ├── UNZIP ME assets.zip ├── assets │ ├── dmd │ │ ├── dmdgrid32x32.png │ │ ├── loading.png │ │ └── missing.png │ ├── lampshows │ │ ├── attract_show_1.lampshow │ │ └── attract_show_2.lampshow │ └── sources.txt ├── config.yaml ├── config │ ├── T2.yaml │ ├── asset_list.yaml │ ├── attract.yaml │ ├── bonus_defs.yaml │ ├── game_default_data.yaml │ ├── game_default_settings.yaml │ ├── new_score_display.yaml │ └── score_display.yaml └── my_modes │ ├── BaseGameMode.py │ ├── ExampleBlankMode.py │ ├── MachineMonitorMode.py │ └── __init__.py ├── ez_setup.py ├── pavement.py ├── procgame ├── LEDs.py ├── __init__.py ├── _version.py ├── alphanumeric.py ├── assetmanager.py ├── auxport.py ├── config.py ├── desktop │ ├── __init__.py │ ├── desktop_pygame.py │ ├── desktop_pyglet.py │ └── desktop_pysdl2.py ├── dmd │ ├── __init__.py │ ├── animation.py │ ├── animfont.py │ ├── animgif.py │ ├── displaycontroller.py │ ├── dmd.py │ ├── exp16.png │ ├── exp8.png │ ├── exp_tiny.png │ ├── font.py │ ├── hddisplaycontroller.py │ ├── hdfont.py │ ├── layers.py │ ├── markup.py │ ├── movie.py │ ├── particle.py │ ├── particle_old.py │ ├── sdl2_displaymanager.py │ ├── transitionlayer.py │ ├── transitions.py │ └── vgadmd.py ├── events.py ├── fakepinproc.py ├── game │ ├── __init__.py │ ├── advancedmode.py │ ├── basicgame.py │ ├── game.py │ ├── gameitems.py │ ├── mode.py │ ├── pdb.py │ └── skeletongame.py ├── highscore │ ├── __init__.py │ ├── category.py │ ├── entry.py │ ├── hd_highscore.py │ ├── hd_initialentry.py │ └── sequence.py ├── keyboard.py ├── lamps.py ├── modes │ ├── __init__.py │ ├── attract.py │ ├── ballsave.py │ ├── ballsearch.py │ ├── bonusmode.py │ ├── dmdhelper.py │ ├── drops.py │ ├── osc.py │ ├── replay.py │ ├── rgbshow.py │ ├── score_display.py │ ├── score_display_hd.py │ ├── service.py │ ├── switchmonitor.py │ ├── tilt.py │ └── trough.py ├── service.py ├── sound.py ├── tools │ ├── __init__.py │ ├── cmd.py │ ├── config.py │ ├── dmdconvert.py │ ├── dmdfontwidths.py │ ├── dmdimage.py │ ├── dmdplayer.py │ ├── dmdsplashrom.py │ ├── lampshow.py │ └── mailbox │ │ ├── __init__.py │ │ ├── clientutil.py │ │ └── mailboxclient.py ├── util.py └── yaml_helper.py ├── setup.py ├── setuptools-0.6c11-py2.6.egg ├── shared ├── config │ ├── BSD.yaml │ ├── CFTBL.yaml │ ├── JD.yaml │ ├── LOTR.yaml │ ├── POTC.yaml │ └── TZ.yaml ├── dmd │ ├── 04B-03-7px.dmd │ ├── Font07x4.dmd │ ├── Font07x5.dmd │ ├── Font09Bx7.dmd │ ├── Font09x5.dmd │ ├── Font09x6.dmd │ ├── Font09x7.dmd │ ├── Font14x10.dmd │ ├── Font14x8.dmd │ ├── Font14x9.dmd │ ├── Font18x10.dmd │ ├── Font18x11.dmd │ ├── Font18x12.dmd │ ├── Jazz18-18px.dmd │ └── Splash.dmd └── sound │ ├── cancel.wav │ ├── coin.wav │ ├── exp_fuzzy.wav │ ├── exp_smoother.wav │ ├── exp_smoother2.wav │ ├── menu_in.wav │ ├── menu_out.wav │ ├── next_item.wav │ ├── previous_item.wav │ ├── save.wav │ └── switch_edge.wav ├── tests ├── __init__.py ├── test_attrcollection.py └── test_events.py └── tools ├── dmd2mov.py ├── dmdfont.py ├── dmdopsdemo.py ├── dmdpan.py ├── dmdupdate.py ├── highscoretest.py ├── pygamedmdtest.py ├── register_vpcom.py ├── scoredisplaytest.py └── service_mode_only.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/README.markdown -------------------------------------------------------------------------------- /SampleGame/T2Game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/SampleGame/T2Game.py -------------------------------------------------------------------------------- /SampleGame/UNZIP ME assets.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/SampleGame/UNZIP ME assets.zip -------------------------------------------------------------------------------- /SampleGame/assets/dmd/dmdgrid32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/SampleGame/assets/dmd/dmdgrid32x32.png -------------------------------------------------------------------------------- /SampleGame/assets/dmd/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/SampleGame/assets/dmd/loading.png -------------------------------------------------------------------------------- /SampleGame/assets/dmd/missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/SampleGame/assets/dmd/missing.png -------------------------------------------------------------------------------- /SampleGame/assets/lampshows/attract_show_1.lampshow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/SampleGame/assets/lampshows/attract_show_1.lampshow -------------------------------------------------------------------------------- /SampleGame/assets/lampshows/attract_show_2.lampshow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/SampleGame/assets/lampshows/attract_show_2.lampshow -------------------------------------------------------------------------------- /SampleGame/assets/sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/SampleGame/assets/sources.txt -------------------------------------------------------------------------------- /SampleGame/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/SampleGame/config.yaml -------------------------------------------------------------------------------- /SampleGame/config/T2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/SampleGame/config/T2.yaml -------------------------------------------------------------------------------- /SampleGame/config/asset_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/SampleGame/config/asset_list.yaml -------------------------------------------------------------------------------- /SampleGame/config/attract.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/SampleGame/config/attract.yaml -------------------------------------------------------------------------------- /SampleGame/config/bonus_defs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/SampleGame/config/bonus_defs.yaml -------------------------------------------------------------------------------- /SampleGame/config/game_default_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/SampleGame/config/game_default_data.yaml -------------------------------------------------------------------------------- /SampleGame/config/game_default_settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/SampleGame/config/game_default_settings.yaml -------------------------------------------------------------------------------- /SampleGame/config/new_score_display.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/SampleGame/config/new_score_display.yaml -------------------------------------------------------------------------------- /SampleGame/config/score_display.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/SampleGame/config/score_display.yaml -------------------------------------------------------------------------------- /SampleGame/my_modes/BaseGameMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/SampleGame/my_modes/BaseGameMode.py -------------------------------------------------------------------------------- /SampleGame/my_modes/ExampleBlankMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/SampleGame/my_modes/ExampleBlankMode.py -------------------------------------------------------------------------------- /SampleGame/my_modes/MachineMonitorMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/SampleGame/my_modes/MachineMonitorMode.py -------------------------------------------------------------------------------- /SampleGame/my_modes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/SampleGame/my_modes/__init__.py -------------------------------------------------------------------------------- /ez_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/ez_setup.py -------------------------------------------------------------------------------- /pavement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/pavement.py -------------------------------------------------------------------------------- /procgame/LEDs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/LEDs.py -------------------------------------------------------------------------------- /procgame/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/__init__.py -------------------------------------------------------------------------------- /procgame/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/_version.py -------------------------------------------------------------------------------- /procgame/alphanumeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/alphanumeric.py -------------------------------------------------------------------------------- /procgame/assetmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/assetmanager.py -------------------------------------------------------------------------------- /procgame/auxport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/auxport.py -------------------------------------------------------------------------------- /procgame/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/config.py -------------------------------------------------------------------------------- /procgame/desktop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/desktop/__init__.py -------------------------------------------------------------------------------- /procgame/desktop/desktop_pygame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/desktop/desktop_pygame.py -------------------------------------------------------------------------------- /procgame/desktop/desktop_pyglet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/desktop/desktop_pyglet.py -------------------------------------------------------------------------------- /procgame/desktop/desktop_pysdl2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/desktop/desktop_pysdl2.py -------------------------------------------------------------------------------- /procgame/dmd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/dmd/__init__.py -------------------------------------------------------------------------------- /procgame/dmd/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/dmd/animation.py -------------------------------------------------------------------------------- /procgame/dmd/animfont.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/dmd/animfont.py -------------------------------------------------------------------------------- /procgame/dmd/animgif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/dmd/animgif.py -------------------------------------------------------------------------------- /procgame/dmd/displaycontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/dmd/displaycontroller.py -------------------------------------------------------------------------------- /procgame/dmd/dmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/dmd/dmd.py -------------------------------------------------------------------------------- /procgame/dmd/exp16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/dmd/exp16.png -------------------------------------------------------------------------------- /procgame/dmd/exp8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/dmd/exp8.png -------------------------------------------------------------------------------- /procgame/dmd/exp_tiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/dmd/exp_tiny.png -------------------------------------------------------------------------------- /procgame/dmd/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/dmd/font.py -------------------------------------------------------------------------------- /procgame/dmd/hddisplaycontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/dmd/hddisplaycontroller.py -------------------------------------------------------------------------------- /procgame/dmd/hdfont.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/dmd/hdfont.py -------------------------------------------------------------------------------- /procgame/dmd/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/dmd/layers.py -------------------------------------------------------------------------------- /procgame/dmd/markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/dmd/markup.py -------------------------------------------------------------------------------- /procgame/dmd/movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/dmd/movie.py -------------------------------------------------------------------------------- /procgame/dmd/particle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/dmd/particle.py -------------------------------------------------------------------------------- /procgame/dmd/particle_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/dmd/particle_old.py -------------------------------------------------------------------------------- /procgame/dmd/sdl2_displaymanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/dmd/sdl2_displaymanager.py -------------------------------------------------------------------------------- /procgame/dmd/transitionlayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/dmd/transitionlayer.py -------------------------------------------------------------------------------- /procgame/dmd/transitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/dmd/transitions.py -------------------------------------------------------------------------------- /procgame/dmd/vgadmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/dmd/vgadmd.py -------------------------------------------------------------------------------- /procgame/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/events.py -------------------------------------------------------------------------------- /procgame/fakepinproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/fakepinproc.py -------------------------------------------------------------------------------- /procgame/game/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/game/__init__.py -------------------------------------------------------------------------------- /procgame/game/advancedmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/game/advancedmode.py -------------------------------------------------------------------------------- /procgame/game/basicgame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/game/basicgame.py -------------------------------------------------------------------------------- /procgame/game/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/game/game.py -------------------------------------------------------------------------------- /procgame/game/gameitems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/game/gameitems.py -------------------------------------------------------------------------------- /procgame/game/mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/game/mode.py -------------------------------------------------------------------------------- /procgame/game/pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/game/pdb.py -------------------------------------------------------------------------------- /procgame/game/skeletongame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/game/skeletongame.py -------------------------------------------------------------------------------- /procgame/highscore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/highscore/__init__.py -------------------------------------------------------------------------------- /procgame/highscore/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/highscore/category.py -------------------------------------------------------------------------------- /procgame/highscore/entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/highscore/entry.py -------------------------------------------------------------------------------- /procgame/highscore/hd_highscore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/highscore/hd_highscore.py -------------------------------------------------------------------------------- /procgame/highscore/hd_initialentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/highscore/hd_initialentry.py -------------------------------------------------------------------------------- /procgame/highscore/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/highscore/sequence.py -------------------------------------------------------------------------------- /procgame/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/keyboard.py -------------------------------------------------------------------------------- /procgame/lamps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/lamps.py -------------------------------------------------------------------------------- /procgame/modes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/modes/__init__.py -------------------------------------------------------------------------------- /procgame/modes/attract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/modes/attract.py -------------------------------------------------------------------------------- /procgame/modes/ballsave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/modes/ballsave.py -------------------------------------------------------------------------------- /procgame/modes/ballsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/modes/ballsearch.py -------------------------------------------------------------------------------- /procgame/modes/bonusmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/modes/bonusmode.py -------------------------------------------------------------------------------- /procgame/modes/dmdhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/modes/dmdhelper.py -------------------------------------------------------------------------------- /procgame/modes/drops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/modes/drops.py -------------------------------------------------------------------------------- /procgame/modes/osc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/modes/osc.py -------------------------------------------------------------------------------- /procgame/modes/replay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/modes/replay.py -------------------------------------------------------------------------------- /procgame/modes/rgbshow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/modes/rgbshow.py -------------------------------------------------------------------------------- /procgame/modes/score_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/modes/score_display.py -------------------------------------------------------------------------------- /procgame/modes/score_display_hd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/modes/score_display_hd.py -------------------------------------------------------------------------------- /procgame/modes/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/modes/service.py -------------------------------------------------------------------------------- /procgame/modes/switchmonitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/modes/switchmonitor.py -------------------------------------------------------------------------------- /procgame/modes/tilt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/modes/tilt.py -------------------------------------------------------------------------------- /procgame/modes/trough.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/modes/trough.py -------------------------------------------------------------------------------- /procgame/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/service.py -------------------------------------------------------------------------------- /procgame/sound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/sound.py -------------------------------------------------------------------------------- /procgame/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/tools/__init__.py -------------------------------------------------------------------------------- /procgame/tools/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/tools/cmd.py -------------------------------------------------------------------------------- /procgame/tools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/tools/config.py -------------------------------------------------------------------------------- /procgame/tools/dmdconvert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/tools/dmdconvert.py -------------------------------------------------------------------------------- /procgame/tools/dmdfontwidths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/tools/dmdfontwidths.py -------------------------------------------------------------------------------- /procgame/tools/dmdimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/tools/dmdimage.py -------------------------------------------------------------------------------- /procgame/tools/dmdplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/tools/dmdplayer.py -------------------------------------------------------------------------------- /procgame/tools/dmdsplashrom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/tools/dmdsplashrom.py -------------------------------------------------------------------------------- /procgame/tools/lampshow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/tools/lampshow.py -------------------------------------------------------------------------------- /procgame/tools/mailbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/tools/mailbox/__init__.py -------------------------------------------------------------------------------- /procgame/tools/mailbox/clientutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/tools/mailbox/clientutil.py -------------------------------------------------------------------------------- /procgame/tools/mailbox/mailboxclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/tools/mailbox/mailboxclient.py -------------------------------------------------------------------------------- /procgame/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/util.py -------------------------------------------------------------------------------- /procgame/yaml_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/procgame/yaml_helper.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/setup.py -------------------------------------------------------------------------------- /setuptools-0.6c11-py2.6.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/setuptools-0.6c11-py2.6.egg -------------------------------------------------------------------------------- /shared/config/BSD.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/config/BSD.yaml -------------------------------------------------------------------------------- /shared/config/CFTBL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/config/CFTBL.yaml -------------------------------------------------------------------------------- /shared/config/JD.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/config/JD.yaml -------------------------------------------------------------------------------- /shared/config/LOTR.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/config/LOTR.yaml -------------------------------------------------------------------------------- /shared/config/POTC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/config/POTC.yaml -------------------------------------------------------------------------------- /shared/config/TZ.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/config/TZ.yaml -------------------------------------------------------------------------------- /shared/dmd/04B-03-7px.dmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/dmd/04B-03-7px.dmd -------------------------------------------------------------------------------- /shared/dmd/Font07x4.dmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/dmd/Font07x4.dmd -------------------------------------------------------------------------------- /shared/dmd/Font07x5.dmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/dmd/Font07x5.dmd -------------------------------------------------------------------------------- /shared/dmd/Font09Bx7.dmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/dmd/Font09Bx7.dmd -------------------------------------------------------------------------------- /shared/dmd/Font09x5.dmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/dmd/Font09x5.dmd -------------------------------------------------------------------------------- /shared/dmd/Font09x6.dmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/dmd/Font09x6.dmd -------------------------------------------------------------------------------- /shared/dmd/Font09x7.dmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/dmd/Font09x7.dmd -------------------------------------------------------------------------------- /shared/dmd/Font14x10.dmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/dmd/Font14x10.dmd -------------------------------------------------------------------------------- /shared/dmd/Font14x8.dmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/dmd/Font14x8.dmd -------------------------------------------------------------------------------- /shared/dmd/Font14x9.dmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/dmd/Font14x9.dmd -------------------------------------------------------------------------------- /shared/dmd/Font18x10.dmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/dmd/Font18x10.dmd -------------------------------------------------------------------------------- /shared/dmd/Font18x11.dmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/dmd/Font18x11.dmd -------------------------------------------------------------------------------- /shared/dmd/Font18x12.dmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/dmd/Font18x12.dmd -------------------------------------------------------------------------------- /shared/dmd/Jazz18-18px.dmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/dmd/Jazz18-18px.dmd -------------------------------------------------------------------------------- /shared/dmd/Splash.dmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/dmd/Splash.dmd -------------------------------------------------------------------------------- /shared/sound/cancel.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/sound/cancel.wav -------------------------------------------------------------------------------- /shared/sound/coin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/sound/coin.wav -------------------------------------------------------------------------------- /shared/sound/exp_fuzzy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/sound/exp_fuzzy.wav -------------------------------------------------------------------------------- /shared/sound/exp_smoother.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/sound/exp_smoother.wav -------------------------------------------------------------------------------- /shared/sound/exp_smoother2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/sound/exp_smoother2.wav -------------------------------------------------------------------------------- /shared/sound/menu_in.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/sound/menu_in.wav -------------------------------------------------------------------------------- /shared/sound/menu_out.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/sound/menu_out.wav -------------------------------------------------------------------------------- /shared/sound/next_item.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/sound/next_item.wav -------------------------------------------------------------------------------- /shared/sound/previous_item.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/sound/previous_item.wav -------------------------------------------------------------------------------- /shared/sound/save.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/sound/save.wav -------------------------------------------------------------------------------- /shared/sound/switch_edge.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/shared/sound/switch_edge.wav -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_attrcollection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/tests/test_attrcollection.py -------------------------------------------------------------------------------- /tests/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/tests/test_events.py -------------------------------------------------------------------------------- /tools/dmd2mov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/tools/dmd2mov.py -------------------------------------------------------------------------------- /tools/dmdfont.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/tools/dmdfont.py -------------------------------------------------------------------------------- /tools/dmdopsdemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/tools/dmdopsdemo.py -------------------------------------------------------------------------------- /tools/dmdpan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/tools/dmdpan.py -------------------------------------------------------------------------------- /tools/dmdupdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/tools/dmdupdate.py -------------------------------------------------------------------------------- /tools/highscoretest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/tools/highscoretest.py -------------------------------------------------------------------------------- /tools/pygamedmdtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/tools/pygamedmdtest.py -------------------------------------------------------------------------------- /tools/register_vpcom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/tools/register_vpcom.py -------------------------------------------------------------------------------- /tools/scoredisplaytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/tools/scoredisplaytest.py -------------------------------------------------------------------------------- /tools/service_mode_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjocean/PyProcGameHD-SkeletonGame/HEAD/tools/service_mode_only.py --------------------------------------------------------------------------------