adventure

Software Screenshot:
adventure
Software Details:
Version: 1.3
Upload Date: 14 Apr 15
Distribution Type: Freeware
Downloads: 3

Rating: nan/5 (Total Votes: 0)

adventure is a faithful port of the "Adventure" game to Python 3 from the original 1977 FORTRAN code by Crowther and Woods, driven by the same advent.dat file, that lets you explore Colossal Cave, where others have found fortunes in treasure and gold, though it is rumored that some who enter are never seen again.

To encourage the use of Python 3, the game is designed to be played right at the Python prompt. Single-word commands can be typed by themselves, but two-word commands should be written as a function call (since a two-word command would not be valid Python):

>>> import adventure
>>> adventure.play()
WELCOME TO ADVENTURE!! WOULD YOU LIKE INSTRUCTIONS?

>>> no
YOU ARE STANDING AT THE END OF A ROAD BEFORE A SMALL BRICK BUILDING.
AROUND YOU IS A FOREST. A SMALL STREAM FLOWS OUT OF THE BUILDING AND
DOWN A GULLY.

>>> east
YOU ARE INSIDE A BUILDING, A WELL HOUSE FOR A LARGE SPRING.

THERE ARE SOME KEYS ON THE GROUND HERE.

THERE IS A SHINY BRASS LAMP NEARBY.

THERE IS FOOD HERE.

THERE IS A BOTTLE OF WATER HERE.

>>> get(lamp)
OK

>>> leave
YOU'RE AT END OF ROAD AGAIN.

>>> south
YOU ARE IN A VALLEY IN THE FOREST BESIDE A STREAM TUMBLING ALONG A
ROCKY BED.


The original Adventure payed attention to only the first five letters of each command, so a long command like inventory could simply be typed as inven. This package defines a symbol for both versions of every long word, so you can type the long or short version as you please.

You can find two complete, working walkthroughs of the game in its tests directory, which you can run using the discover module that comes built-in with Python 3.2:

$ python3.2 -m unittest discover adventure

I wrote most of this package over Christmas vacation 2010, to learn more about the workings of the game that so entralled me as a child; the project also gave me practice writing Python 3. I still forget the parentheses when writing print() if I am not paying attention.

What is new in this release:

  • Installs on Windows; fixed undefined commands

What is new in version 1.2:

  • traditional mode: restoring saves, 5-letter commands

What is new in version 1.1:

  • Traditional mode; more flexible Python syntax

What is new in version 1.0:

  • 100% test coverage, feature-complete

Requirements:

  • Python

Similar Software

Other Software of Developer Brandon Craig Rhodes

PyEphem
PyEphem

15 Apr 15

pyzmq-static
pyzmq-static

20 Feb 15

Comments to adventure

Comments not found
Add Comment
Turn on images!