├── .gitignore ├── .project ├── .pydevproject ├── MANIFEST.in ├── README ├── librpg ├── COPYING.LESSER.txt ├── COPYING.txt ├── FAQ.txt ├── ROADMAP.txt ├── __init__.py ├── animation.py ├── camera.py ├── collection │ ├── __init__.py │ ├── context.py │ ├── maparea.py │ ├── mapobject.py │ ├── menu │ │ ├── __init__.py │ │ ├── itemmenu.py │ │ ├── partymenu.py │ │ └── savemenu.py │ └── theme.py ├── color.py ├── config.py ├── context.py ├── data │ ├── CREDITS.txt │ ├── charset │ │ ├── char.xcf │ │ ├── chest.png │ │ └── naked_man.png │ ├── cursor_theme │ │ └── arrow.png │ ├── icon.png │ ├── item_icon │ │ └── potions.png │ └── tileset │ │ ├── city_lower.bnd │ │ ├── city_lower.png │ │ ├── city_upper.bnd │ │ ├── city_upper.png │ │ ├── cliff.png │ │ ├── town1.bnd │ │ ├── town1.png │ │ ├── town2.bnd │ │ ├── town2.png │ │ ├── world_upper.bnd │ │ └── world_upper.png ├── dialog.py ├── docs │ ├── license_header.txt │ ├── reference │ │ ├── Makefile │ │ ├── file_types.txt │ │ ├── gae │ │ │ ├── app.yaml │ │ │ ├── gae.py │ │ │ └── index.yaml │ │ ├── make.bat │ │ └── source │ │ │ ├── .static │ │ │ ├── dummy │ │ │ ├── ss.PNG │ │ │ └── ss2.PNG │ │ │ ├── .templates │ │ │ └── dummy │ │ │ ├── conf.py │ │ │ ├── index.rst │ │ │ ├── installing.rst │ │ │ ├── reference │ │ │ ├── animation.rst │ │ │ ├── camera.rst │ │ │ ├── config.rst │ │ │ ├── context.rst │ │ │ ├── dialog.rst │ │ │ ├── image.rst │ │ │ ├── internal_mods.rst │ │ │ ├── item.rst │ │ │ ├── loader.rst │ │ │ ├── map.rst │ │ │ ├── maparea.rst │ │ │ ├── mapobject.rst │ │ │ ├── mapview.rst │ │ │ ├── menu.rst │ │ │ ├── movement.rst │ │ │ ├── party.rst │ │ │ ├── path.rst │ │ │ ├── public_mods.rst │ │ │ ├── quest.rst │ │ │ ├── sound.rst │ │ │ ├── state.rst │ │ │ ├── tile.rst │ │ │ ├── util.rst │ │ │ ├── virtualscreen.rst │ │ │ └── world.rst │ │ │ └── tutorial │ │ │ ├── index.rst │ │ │ └── part01.rst │ ├── software_used.txt │ ├── tilesets.txt │ └── todo.txt ├── image.py ├── input.py ├── item.py ├── loader.py ├── locals.py ├── map.py ├── maparea.py ├── mapobject.py ├── mapview.py ├── menu │ ├── __init__.py │ ├── alignment.py │ ├── bar.py │ ├── cursor.py │ ├── div.py │ ├── grid.py │ ├── imagewidget.py │ ├── label.py │ ├── menu.py │ ├── navigator.py │ ├── panel.py │ ├── scrollarea.py │ ├── tab.py │ ├── theme.py │ └── widget.py ├── movement.py ├── party.py ├── path.py ├── quest.py ├── sound.py ├── starA.py ├── state.py ├── test │ ├── CREDITS.txt │ ├── bartest.py │ ├── bouldertest.map │ ├── bouldertest.py │ ├── city.map │ ├── city.py │ ├── contexttest16.py │ ├── item_icons.png │ ├── itembase.py │ ├── itempersisttest.map │ ├── itempersisttest.py │ ├── itemtest.py │ ├── loadertest.py │ ├── man_undies.png │ ├── maptest.map │ ├── maptest.py │ ├── maptest32.map │ ├── maptest32.py │ ├── matrixtest.py │ ├── menutest.py │ ├── objecttest.map │ ├── objecttest.py │ ├── objecttest16.map │ ├── objecttest16.py │ ├── park_1.ogg │ ├── partytest.py │ ├── questtest.py │ ├── sound6.wav │ ├── statetest.py │ ├── test16_charset.png │ ├── test16_lower_tileset.bnd │ ├── test16_lower_tileset.png │ ├── test16_upper_tileset.bnd │ ├── test16_upper_tileset.png │ ├── test_chars.png │ ├── tiletest.py │ ├── worldtest.py │ └── worldtest │ │ ├── __init__.py │ │ ├── map1.map │ │ ├── map2.map │ │ ├── map3.map │ │ ├── mymaps.py │ │ └── myworld.py ├── tile.py ├── tools │ ├── charset │ │ ├── join_images.py │ │ └── sg-save-all-layers.scm │ ├── source │ │ └── trailing_whitespace.py │ └── tileset │ │ └── init_boundaries.py ├── util.py ├── virtualscreen.py └── world.py ├── make_release.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/.pydevproject -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/README -------------------------------------------------------------------------------- /librpg/COPYING.LESSER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/COPYING.LESSER.txt -------------------------------------------------------------------------------- /librpg/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/COPYING.txt -------------------------------------------------------------------------------- /librpg/FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/FAQ.txt -------------------------------------------------------------------------------- /librpg/ROADMAP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/ROADMAP.txt -------------------------------------------------------------------------------- /librpg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/__init__.py -------------------------------------------------------------------------------- /librpg/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/animation.py -------------------------------------------------------------------------------- /librpg/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/camera.py -------------------------------------------------------------------------------- /librpg/collection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librpg/collection/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/collection/context.py -------------------------------------------------------------------------------- /librpg/collection/maparea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/collection/maparea.py -------------------------------------------------------------------------------- /librpg/collection/mapobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/collection/mapobject.py -------------------------------------------------------------------------------- /librpg/collection/menu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/collection/menu/__init__.py -------------------------------------------------------------------------------- /librpg/collection/menu/itemmenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/collection/menu/itemmenu.py -------------------------------------------------------------------------------- /librpg/collection/menu/partymenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/collection/menu/partymenu.py -------------------------------------------------------------------------------- /librpg/collection/menu/savemenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/collection/menu/savemenu.py -------------------------------------------------------------------------------- /librpg/collection/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/collection/theme.py -------------------------------------------------------------------------------- /librpg/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/color.py -------------------------------------------------------------------------------- /librpg/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/config.py -------------------------------------------------------------------------------- /librpg/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/context.py -------------------------------------------------------------------------------- /librpg/data/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/data/CREDITS.txt -------------------------------------------------------------------------------- /librpg/data/charset/char.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/data/charset/char.xcf -------------------------------------------------------------------------------- /librpg/data/charset/chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/data/charset/chest.png -------------------------------------------------------------------------------- /librpg/data/charset/naked_man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/data/charset/naked_man.png -------------------------------------------------------------------------------- /librpg/data/cursor_theme/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/data/cursor_theme/arrow.png -------------------------------------------------------------------------------- /librpg/data/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/data/icon.png -------------------------------------------------------------------------------- /librpg/data/item_icon/potions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/data/item_icon/potions.png -------------------------------------------------------------------------------- /librpg/data/tileset/city_lower.bnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/data/tileset/city_lower.bnd -------------------------------------------------------------------------------- /librpg/data/tileset/city_lower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/data/tileset/city_lower.png -------------------------------------------------------------------------------- /librpg/data/tileset/city_upper.bnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/data/tileset/city_upper.bnd -------------------------------------------------------------------------------- /librpg/data/tileset/city_upper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/data/tileset/city_upper.png -------------------------------------------------------------------------------- /librpg/data/tileset/cliff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/data/tileset/cliff.png -------------------------------------------------------------------------------- /librpg/data/tileset/town1.bnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/data/tileset/town1.bnd -------------------------------------------------------------------------------- /librpg/data/tileset/town1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/data/tileset/town1.png -------------------------------------------------------------------------------- /librpg/data/tileset/town2.bnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/data/tileset/town2.bnd -------------------------------------------------------------------------------- /librpg/data/tileset/town2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/data/tileset/town2.png -------------------------------------------------------------------------------- /librpg/data/tileset/world_upper.bnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/data/tileset/world_upper.bnd -------------------------------------------------------------------------------- /librpg/data/tileset/world_upper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/data/tileset/world_upper.png -------------------------------------------------------------------------------- /librpg/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/dialog.py -------------------------------------------------------------------------------- /librpg/docs/license_header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/license_header.txt -------------------------------------------------------------------------------- /librpg/docs/reference/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/Makefile -------------------------------------------------------------------------------- /librpg/docs/reference/file_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/file_types.txt -------------------------------------------------------------------------------- /librpg/docs/reference/gae/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/gae/app.yaml -------------------------------------------------------------------------------- /librpg/docs/reference/gae/gae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/gae/gae.py -------------------------------------------------------------------------------- /librpg/docs/reference/gae/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/gae/index.yaml -------------------------------------------------------------------------------- /librpg/docs/reference/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/make.bat -------------------------------------------------------------------------------- /librpg/docs/reference/source/.static/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librpg/docs/reference/source/.static/ss.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/.static/ss.PNG -------------------------------------------------------------------------------- /librpg/docs/reference/source/.static/ss2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/.static/ss2.PNG -------------------------------------------------------------------------------- /librpg/docs/reference/source/.templates/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librpg/docs/reference/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/conf.py -------------------------------------------------------------------------------- /librpg/docs/reference/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/index.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/installing.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/animation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/animation.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/camera.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/camera.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/config.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/context.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/context.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/dialog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/dialog.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/image.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/image.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/internal_mods.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/internal_mods.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/item.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/item.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/loader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/loader.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/map.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/map.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/maparea.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/maparea.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/mapobject.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/mapobject.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/mapview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/mapview.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/menu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/menu.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/movement.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/movement.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/party.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/party.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/path.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/path.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/public_mods.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/public_mods.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/quest.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/quest.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/sound.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/sound.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/state.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/state.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/tile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/tile.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/util.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/virtualscreen.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/virtualscreen.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/reference/world.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/reference/world.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/tutorial/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/tutorial/index.rst -------------------------------------------------------------------------------- /librpg/docs/reference/source/tutorial/part01.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/reference/source/tutorial/part01.rst -------------------------------------------------------------------------------- /librpg/docs/software_used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/software_used.txt -------------------------------------------------------------------------------- /librpg/docs/tilesets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/tilesets.txt -------------------------------------------------------------------------------- /librpg/docs/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/docs/todo.txt -------------------------------------------------------------------------------- /librpg/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/image.py -------------------------------------------------------------------------------- /librpg/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/input.py -------------------------------------------------------------------------------- /librpg/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/item.py -------------------------------------------------------------------------------- /librpg/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/loader.py -------------------------------------------------------------------------------- /librpg/locals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/locals.py -------------------------------------------------------------------------------- /librpg/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/map.py -------------------------------------------------------------------------------- /librpg/maparea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/maparea.py -------------------------------------------------------------------------------- /librpg/mapobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/mapobject.py -------------------------------------------------------------------------------- /librpg/mapview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/mapview.py -------------------------------------------------------------------------------- /librpg/menu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/menu/__init__.py -------------------------------------------------------------------------------- /librpg/menu/alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/menu/alignment.py -------------------------------------------------------------------------------- /librpg/menu/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/menu/bar.py -------------------------------------------------------------------------------- /librpg/menu/cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/menu/cursor.py -------------------------------------------------------------------------------- /librpg/menu/div.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/menu/div.py -------------------------------------------------------------------------------- /librpg/menu/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/menu/grid.py -------------------------------------------------------------------------------- /librpg/menu/imagewidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/menu/imagewidget.py -------------------------------------------------------------------------------- /librpg/menu/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/menu/label.py -------------------------------------------------------------------------------- /librpg/menu/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/menu/menu.py -------------------------------------------------------------------------------- /librpg/menu/navigator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/menu/navigator.py -------------------------------------------------------------------------------- /librpg/menu/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/menu/panel.py -------------------------------------------------------------------------------- /librpg/menu/scrollarea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/menu/scrollarea.py -------------------------------------------------------------------------------- /librpg/menu/tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/menu/tab.py -------------------------------------------------------------------------------- /librpg/menu/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/menu/theme.py -------------------------------------------------------------------------------- /librpg/menu/widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/menu/widget.py -------------------------------------------------------------------------------- /librpg/movement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/movement.py -------------------------------------------------------------------------------- /librpg/party.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/party.py -------------------------------------------------------------------------------- /librpg/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/path.py -------------------------------------------------------------------------------- /librpg/quest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/quest.py -------------------------------------------------------------------------------- /librpg/sound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/sound.py -------------------------------------------------------------------------------- /librpg/starA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/starA.py -------------------------------------------------------------------------------- /librpg/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/state.py -------------------------------------------------------------------------------- /librpg/test/CREDITS.txt: -------------------------------------------------------------------------------- 1 | sound6.wav 2 | park_1.ogg 3 | By http://www.pacdv.com/ 4 | -------------------------------------------------------------------------------- /librpg/test/bartest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/bartest.py -------------------------------------------------------------------------------- /librpg/test/bouldertest.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/bouldertest.map -------------------------------------------------------------------------------- /librpg/test/bouldertest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/bouldertest.py -------------------------------------------------------------------------------- /librpg/test/city.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/city.map -------------------------------------------------------------------------------- /librpg/test/city.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/city.py -------------------------------------------------------------------------------- /librpg/test/contexttest16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/contexttest16.py -------------------------------------------------------------------------------- /librpg/test/item_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/item_icons.png -------------------------------------------------------------------------------- /librpg/test/itembase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/itembase.py -------------------------------------------------------------------------------- /librpg/test/itempersisttest.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/itempersisttest.map -------------------------------------------------------------------------------- /librpg/test/itempersisttest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/itempersisttest.py -------------------------------------------------------------------------------- /librpg/test/itemtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/itemtest.py -------------------------------------------------------------------------------- /librpg/test/loadertest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/loadertest.py -------------------------------------------------------------------------------- /librpg/test/man_undies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/man_undies.png -------------------------------------------------------------------------------- /librpg/test/maptest.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/maptest.map -------------------------------------------------------------------------------- /librpg/test/maptest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/maptest.py -------------------------------------------------------------------------------- /librpg/test/maptest32.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/maptest32.map -------------------------------------------------------------------------------- /librpg/test/maptest32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/maptest32.py -------------------------------------------------------------------------------- /librpg/test/matrixtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/matrixtest.py -------------------------------------------------------------------------------- /librpg/test/menutest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/menutest.py -------------------------------------------------------------------------------- /librpg/test/objecttest.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/objecttest.map -------------------------------------------------------------------------------- /librpg/test/objecttest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/objecttest.py -------------------------------------------------------------------------------- /librpg/test/objecttest16.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/objecttest16.map -------------------------------------------------------------------------------- /librpg/test/objecttest16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/objecttest16.py -------------------------------------------------------------------------------- /librpg/test/park_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/park_1.ogg -------------------------------------------------------------------------------- /librpg/test/partytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/partytest.py -------------------------------------------------------------------------------- /librpg/test/questtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/questtest.py -------------------------------------------------------------------------------- /librpg/test/sound6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/sound6.wav -------------------------------------------------------------------------------- /librpg/test/statetest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/statetest.py -------------------------------------------------------------------------------- /librpg/test/test16_charset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/test16_charset.png -------------------------------------------------------------------------------- /librpg/test/test16_lower_tileset.bnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/test16_lower_tileset.bnd -------------------------------------------------------------------------------- /librpg/test/test16_lower_tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/test16_lower_tileset.png -------------------------------------------------------------------------------- /librpg/test/test16_upper_tileset.bnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/test16_upper_tileset.bnd -------------------------------------------------------------------------------- /librpg/test/test16_upper_tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/test16_upper_tileset.png -------------------------------------------------------------------------------- /librpg/test/test_chars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/test_chars.png -------------------------------------------------------------------------------- /librpg/test/tiletest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/tiletest.py -------------------------------------------------------------------------------- /librpg/test/worldtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/worldtest.py -------------------------------------------------------------------------------- /librpg/test/worldtest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /librpg/test/worldtest/map1.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/worldtest/map1.map -------------------------------------------------------------------------------- /librpg/test/worldtest/map2.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/worldtest/map2.map -------------------------------------------------------------------------------- /librpg/test/worldtest/map3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/worldtest/map3.map -------------------------------------------------------------------------------- /librpg/test/worldtest/mymaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/worldtest/mymaps.py -------------------------------------------------------------------------------- /librpg/test/worldtest/myworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/test/worldtest/myworld.py -------------------------------------------------------------------------------- /librpg/tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/tile.py -------------------------------------------------------------------------------- /librpg/tools/charset/join_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/tools/charset/join_images.py -------------------------------------------------------------------------------- /librpg/tools/charset/sg-save-all-layers.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/tools/charset/sg-save-all-layers.scm -------------------------------------------------------------------------------- /librpg/tools/source/trailing_whitespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/tools/source/trailing_whitespace.py -------------------------------------------------------------------------------- /librpg/tools/tileset/init_boundaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/tools/tileset/init_boundaries.py -------------------------------------------------------------------------------- /librpg/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/util.py -------------------------------------------------------------------------------- /librpg/virtualscreen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/virtualscreen.py -------------------------------------------------------------------------------- /librpg/world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/librpg/world.py -------------------------------------------------------------------------------- /make_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/make_release.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmeickle/libRPG/HEAD/setup.py --------------------------------------------------------------------------------