├── .coveragerc ├── .coveragerc-examplegame ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .requirements-readthedocs.txt ├── COMPATIBILITY.txt ├── DEPS.txt ├── ExampleGame ├── examplegame │ ├── __init__.py │ ├── furniture.py │ ├── glass.py │ ├── japanese.py │ ├── mice.py │ ├── quiche.py │ ├── squeaky.py │ ├── test │ │ ├── __init__.py │ │ ├── test_furniture.py │ │ ├── test_glass.py │ │ ├── test_japanese.py │ │ ├── test_mice.py │ │ ├── test_quiche.py │ │ ├── test_squeaky.py │ │ └── test_tether.py │ └── tether.py ├── imaginary │ └── plugins │ │ ├── monsters.py │ │ └── quiche.py └── setup.py ├── LICENSE ├── MANIFEST.in ├── MULTIPLAYER.rst ├── NAME.txt ├── NEWS.txt ├── README.rst ├── doc ├── Makefile ├── _build │ └── .placeholder ├── _static │ └── .placeholder ├── _templates │ └── .placeholder ├── conf.py ├── examples │ └── example_world.py ├── index.rst ├── make.bat └── simulation.rst ├── setup.py ├── src ├── axiom │ └── plugins │ │ └── imaginaryversion.py ├── imaginary │ ├── __init__.py │ ├── __main__.py │ ├── _version.py │ ├── action.py │ ├── creation.py │ ├── eimaginary.py │ ├── enhancement.py │ ├── events.py │ ├── garments.py │ ├── idea.py │ ├── iimaginary.py │ ├── iterutils.py │ ├── language.py │ ├── manipulation.py │ ├── objects.py │ ├── plugins │ │ ├── __init__.py │ │ ├── clothes.py │ │ ├── imaginary_basic.py │ │ └── lighting.py │ ├── pyparsing.py │ ├── resources │ │ ├── __init__.py │ │ ├── help │ │ │ ├── actions │ │ │ ├── bury │ │ │ ├── close │ │ │ ├── commands │ │ │ ├── create │ │ │ ├── describe │ │ │ ├── dig │ │ │ ├── drop │ │ │ ├── eat │ │ │ ├── emote │ │ │ ├── equipment │ │ │ ├── find │ │ │ ├── get │ │ │ ├── go │ │ │ ├── help │ │ │ ├── hit │ │ │ ├── illuminate │ │ │ ├── inventory │ │ │ ├── list │ │ │ ├── list thing types │ │ │ ├── look │ │ │ ├── name │ │ │ ├── open │ │ │ ├── put │ │ │ ├── quit │ │ │ ├── rebuild │ │ │ ├── remove │ │ │ ├── restore │ │ │ ├── say │ │ │ ├── score │ │ │ ├── scrutinize │ │ │ ├── search │ │ │ ├── set │ │ │ ├── take │ │ │ ├── wear │ │ │ └── who │ │ └── motd │ ├── test │ │ ├── __init__.py │ │ ├── commandutils.py │ │ ├── test_actions.py │ │ ├── test_actor.py │ │ ├── test_concept.py │ │ ├── test_container.py │ │ ├── test_create.py │ │ ├── test_drop.py │ │ ├── test_enhancement.py │ │ ├── test_garments.py │ │ ├── test_hit.py │ │ ├── test_idea.py │ │ ├── test_illumination.py │ │ ├── test_language.py │ │ ├── test_look.py │ │ ├── test_objects.py │ │ ├── test_player.py │ │ ├── test_put.py │ │ ├── test_runner.py │ │ ├── test_set.py │ │ ├── test_text.py │ │ ├── test_util.py │ │ ├── test_who.py │ │ ├── test_wiring.py │ │ └── test_world.py │ ├── text.py │ ├── unc.py │ ├── vision.py │ ├── wiring │ │ ├── __init__.py │ │ ├── faucet.py │ │ ├── player.py │ │ ├── terminalui.py │ │ ├── textserver.py │ │ └── tuiserver.py │ └── world.py └── xmantissa │ └── plugins │ └── imaginaryoff.py └── versioneer.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/.coveragerc -------------------------------------------------------------------------------- /.coveragerc-examplegame: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/.coveragerc-examplegame -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | imaginary/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.requirements-readthedocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/.requirements-readthedocs.txt -------------------------------------------------------------------------------- /COMPATIBILITY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/COMPATIBILITY.txt -------------------------------------------------------------------------------- /DEPS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/DEPS.txt -------------------------------------------------------------------------------- /ExampleGame/examplegame/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ExampleGame/examplegame/furniture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/ExampleGame/examplegame/furniture.py -------------------------------------------------------------------------------- /ExampleGame/examplegame/glass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/ExampleGame/examplegame/glass.py -------------------------------------------------------------------------------- /ExampleGame/examplegame/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/ExampleGame/examplegame/japanese.py -------------------------------------------------------------------------------- /ExampleGame/examplegame/mice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/ExampleGame/examplegame/mice.py -------------------------------------------------------------------------------- /ExampleGame/examplegame/quiche.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/ExampleGame/examplegame/quiche.py -------------------------------------------------------------------------------- /ExampleGame/examplegame/squeaky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/ExampleGame/examplegame/squeaky.py -------------------------------------------------------------------------------- /ExampleGame/examplegame/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ExampleGame/examplegame/test/test_furniture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/ExampleGame/examplegame/test/test_furniture.py -------------------------------------------------------------------------------- /ExampleGame/examplegame/test/test_glass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/ExampleGame/examplegame/test/test_glass.py -------------------------------------------------------------------------------- /ExampleGame/examplegame/test/test_japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/ExampleGame/examplegame/test/test_japanese.py -------------------------------------------------------------------------------- /ExampleGame/examplegame/test/test_mice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/ExampleGame/examplegame/test/test_mice.py -------------------------------------------------------------------------------- /ExampleGame/examplegame/test/test_quiche.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/ExampleGame/examplegame/test/test_quiche.py -------------------------------------------------------------------------------- /ExampleGame/examplegame/test/test_squeaky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/ExampleGame/examplegame/test/test_squeaky.py -------------------------------------------------------------------------------- /ExampleGame/examplegame/test/test_tether.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/ExampleGame/examplegame/test/test_tether.py -------------------------------------------------------------------------------- /ExampleGame/examplegame/tether.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/ExampleGame/examplegame/tether.py -------------------------------------------------------------------------------- /ExampleGame/imaginary/plugins/monsters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/ExampleGame/imaginary/plugins/monsters.py -------------------------------------------------------------------------------- /ExampleGame/imaginary/plugins/quiche.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/ExampleGame/imaginary/plugins/quiche.py -------------------------------------------------------------------------------- /ExampleGame/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/ExampleGame/setup.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /MULTIPLAYER.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/MULTIPLAYER.rst -------------------------------------------------------------------------------- /NAME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/NAME.txt -------------------------------------------------------------------------------- /NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/NEWS.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/README.rst -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_build/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/_templates/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/examples/example_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/doc/examples/example_world.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/simulation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/doc/simulation.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/setup.py -------------------------------------------------------------------------------- /src/axiom/plugins/imaginaryversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/axiom/plugins/imaginaryversion.py -------------------------------------------------------------------------------- /src/imaginary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/__init__.py -------------------------------------------------------------------------------- /src/imaginary/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/__main__.py -------------------------------------------------------------------------------- /src/imaginary/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/_version.py -------------------------------------------------------------------------------- /src/imaginary/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/action.py -------------------------------------------------------------------------------- /src/imaginary/creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/creation.py -------------------------------------------------------------------------------- /src/imaginary/eimaginary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/eimaginary.py -------------------------------------------------------------------------------- /src/imaginary/enhancement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/enhancement.py -------------------------------------------------------------------------------- /src/imaginary/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/events.py -------------------------------------------------------------------------------- /src/imaginary/garments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/garments.py -------------------------------------------------------------------------------- /src/imaginary/idea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/idea.py -------------------------------------------------------------------------------- /src/imaginary/iimaginary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/iimaginary.py -------------------------------------------------------------------------------- /src/imaginary/iterutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/iterutils.py -------------------------------------------------------------------------------- /src/imaginary/language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/language.py -------------------------------------------------------------------------------- /src/imaginary/manipulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/manipulation.py -------------------------------------------------------------------------------- /src/imaginary/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/objects.py -------------------------------------------------------------------------------- /src/imaginary/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/plugins/__init__.py -------------------------------------------------------------------------------- /src/imaginary/plugins/clothes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/plugins/clothes.py -------------------------------------------------------------------------------- /src/imaginary/plugins/imaginary_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/plugins/imaginary_basic.py -------------------------------------------------------------------------------- /src/imaginary/plugins/lighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/plugins/lighting.py -------------------------------------------------------------------------------- /src/imaginary/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/pyparsing.py -------------------------------------------------------------------------------- /src/imaginary/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/imaginary/resources/help/actions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/actions -------------------------------------------------------------------------------- /src/imaginary/resources/help/bury: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/bury -------------------------------------------------------------------------------- /src/imaginary/resources/help/close: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/close -------------------------------------------------------------------------------- /src/imaginary/resources/help/commands: -------------------------------------------------------------------------------- 1 | COMMANDS 2 | 3 | See: help actions 4 | -------------------------------------------------------------------------------- /src/imaginary/resources/help/create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/create -------------------------------------------------------------------------------- /src/imaginary/resources/help/describe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/describe -------------------------------------------------------------------------------- /src/imaginary/resources/help/dig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/dig -------------------------------------------------------------------------------- /src/imaginary/resources/help/drop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/drop -------------------------------------------------------------------------------- /src/imaginary/resources/help/eat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/eat -------------------------------------------------------------------------------- /src/imaginary/resources/help/emote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/emote -------------------------------------------------------------------------------- /src/imaginary/resources/help/equipment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/equipment -------------------------------------------------------------------------------- /src/imaginary/resources/help/find: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/find -------------------------------------------------------------------------------- /src/imaginary/resources/help/get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/get -------------------------------------------------------------------------------- /src/imaginary/resources/help/go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/go -------------------------------------------------------------------------------- /src/imaginary/resources/help/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/help -------------------------------------------------------------------------------- /src/imaginary/resources/help/hit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/hit -------------------------------------------------------------------------------- /src/imaginary/resources/help/illuminate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/illuminate -------------------------------------------------------------------------------- /src/imaginary/resources/help/inventory: -------------------------------------------------------------------------------- 1 | INVENTORY 2 | 3 | Usage: inventory 4 | 5 | Display the objects currently in your possession. 6 | -------------------------------------------------------------------------------- /src/imaginary/resources/help/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/list -------------------------------------------------------------------------------- /src/imaginary/resources/help/list thing types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/list thing types -------------------------------------------------------------------------------- /src/imaginary/resources/help/look: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/look -------------------------------------------------------------------------------- /src/imaginary/resources/help/name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/name -------------------------------------------------------------------------------- /src/imaginary/resources/help/open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/open -------------------------------------------------------------------------------- /src/imaginary/resources/help/put: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/put -------------------------------------------------------------------------------- /src/imaginary/resources/help/quit: -------------------------------------------------------------------------------- 1 | QUIT 2 | 3 | Usage: quit 4 | 5 | Depart the realm. 6 | -------------------------------------------------------------------------------- /src/imaginary/resources/help/rebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/rebuild -------------------------------------------------------------------------------- /src/imaginary/resources/help/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/remove -------------------------------------------------------------------------------- /src/imaginary/resources/help/restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/restore -------------------------------------------------------------------------------- /src/imaginary/resources/help/say: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/say -------------------------------------------------------------------------------- /src/imaginary/resources/help/score: -------------------------------------------------------------------------------- 1 | SCORE 2 | 3 | Usage: score 4 | 5 | Reveal the details of your personal progress. 6 | -------------------------------------------------------------------------------- /src/imaginary/resources/help/scrutinize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/scrutinize -------------------------------------------------------------------------------- /src/imaginary/resources/help/search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/search -------------------------------------------------------------------------------- /src/imaginary/resources/help/set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/help/set -------------------------------------------------------------------------------- /src/imaginary/resources/help/take: -------------------------------------------------------------------------------- 1 | TAKE 2 | 3 | See GET 4 | -------------------------------------------------------------------------------- /src/imaginary/resources/help/wear: -------------------------------------------------------------------------------- 1 | WEAR 2 | 3 | Usage: wear 4 | 5 | Put the piece of clothing named onto your body. 6 | -------------------------------------------------------------------------------- /src/imaginary/resources/help/who: -------------------------------------------------------------------------------- 1 | WHO 2 | 3 | Usage: who 4 | 5 | Display a list of currently connected characters. 6 | -------------------------------------------------------------------------------- /src/imaginary/resources/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/resources/motd -------------------------------------------------------------------------------- /src/imaginary/test/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/imaginary/test/commandutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/commandutils.py -------------------------------------------------------------------------------- /src/imaginary/test/test_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_actions.py -------------------------------------------------------------------------------- /src/imaginary/test/test_actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_actor.py -------------------------------------------------------------------------------- /src/imaginary/test/test_concept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_concept.py -------------------------------------------------------------------------------- /src/imaginary/test/test_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_container.py -------------------------------------------------------------------------------- /src/imaginary/test/test_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_create.py -------------------------------------------------------------------------------- /src/imaginary/test/test_drop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_drop.py -------------------------------------------------------------------------------- /src/imaginary/test/test_enhancement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_enhancement.py -------------------------------------------------------------------------------- /src/imaginary/test/test_garments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_garments.py -------------------------------------------------------------------------------- /src/imaginary/test/test_hit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_hit.py -------------------------------------------------------------------------------- /src/imaginary/test/test_idea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_idea.py -------------------------------------------------------------------------------- /src/imaginary/test/test_illumination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_illumination.py -------------------------------------------------------------------------------- /src/imaginary/test/test_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_language.py -------------------------------------------------------------------------------- /src/imaginary/test/test_look.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_look.py -------------------------------------------------------------------------------- /src/imaginary/test/test_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_objects.py -------------------------------------------------------------------------------- /src/imaginary/test/test_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_player.py -------------------------------------------------------------------------------- /src/imaginary/test/test_put.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_put.py -------------------------------------------------------------------------------- /src/imaginary/test/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_runner.py -------------------------------------------------------------------------------- /src/imaginary/test/test_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_set.py -------------------------------------------------------------------------------- /src/imaginary/test/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_text.py -------------------------------------------------------------------------------- /src/imaginary/test/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_util.py -------------------------------------------------------------------------------- /src/imaginary/test/test_who.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_who.py -------------------------------------------------------------------------------- /src/imaginary/test/test_wiring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_wiring.py -------------------------------------------------------------------------------- /src/imaginary/test/test_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/test/test_world.py -------------------------------------------------------------------------------- /src/imaginary/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/text.py -------------------------------------------------------------------------------- /src/imaginary/unc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/unc.py -------------------------------------------------------------------------------- /src/imaginary/vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/vision.py -------------------------------------------------------------------------------- /src/imaginary/wiring/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/imaginary/wiring/faucet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/wiring/faucet.py -------------------------------------------------------------------------------- /src/imaginary/wiring/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/wiring/player.py -------------------------------------------------------------------------------- /src/imaginary/wiring/terminalui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/wiring/terminalui.py -------------------------------------------------------------------------------- /src/imaginary/wiring/textserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/wiring/textserver.py -------------------------------------------------------------------------------- /src/imaginary/wiring/tuiserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/wiring/tuiserver.py -------------------------------------------------------------------------------- /src/imaginary/world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/imaginary/world.py -------------------------------------------------------------------------------- /src/xmantissa/plugins/imaginaryoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/src/xmantissa/plugins/imaginaryoff.py -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twisted/imaginary/HEAD/versioneer.py --------------------------------------------------------------------------------