1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
.ds command colossal\-cave\-adventure
.ds COMMAND COLOSSAL\-CAVE\-ADVENTURE
.\" ==========
.TH "\*[COMMAND]" 6 "2016-04-13" "python-adventure"
.
.\" ==========
.SH NAME
\*[command] \- text adventure of exploration in Colossal Cave
.
.\" ==========
.SH SYNOPSIS
.
.SY \*[command]
.RI [ SAVEFILE ]
.YS
.SY "\*[command] \-h"
.YS
.
.\" ==========
.SH DESCRIPTION
.B Colossal Cave Adventure
is a text adventure game of exploration.
.IP
Somewhere nearby is Colossal Cave, where others have found fortunes in treasure and gold, though it is rumored that some who enter are never seen again.
.PP
Originally named “ADVENT” or “Adventure”, this is the first known work of interactive fiction.
As the first text adventure game, it is considered the precursor for the adventure game genre.
.PP
In the game, you control a character through simple text commands to explore a cave rumored to be filled with wealth.
You earn predetetermined points for acquiring treasure and escaping the cave alive, with the goal to earn the maximum amount of points offered.
.PP
This is a re-implementation of the “350-point” version, using the same game content from the original Crowther and Woods PDP-10 source code of the late 1970s.
.PP
It uses the original text exactly, and emits responses slow enough to read as the contemporary terminal interfaces did.
.PP
.
.\" ==========
.SH OPTIONS
.
.SS Positional Arguments
.TP
\f[I]SAVEFILE\f[]
The filename of game you have saved.
.
.SS Optional Arguments
.TP
\f[B]\-\-help\f[], \f[B]\-h\f[]
Describe how to use the program.
.
.\" ==========
.SH INVOCATION
.SS Begin a game
Run the command
.B "\*[command]"
in a terminal to begin the game:
.IP
.EX
.RB "$ " "\*[command]"
WELCOME TO ADVENTURE!! WOULD YOU LIKE INSTRUCTIONS?
>
.EE
.PP
.
.SS Restore the game state
If you saved the game state with the in-game \f[B]save\f[]\~\f[I]SAVEFILE\f[] command, you can restore the game to the same state by specifying the
.I SAVEFILE
name when you invoke the program:
.IP
.EX
.RB "$ " "\*[command] mygame"
GAME RESTORED
>
.EE
.PP
.
.
.\" ==========
.SH COMMANDS
.
.SS Interact with the game
At the \f[CB]>\f[] prompt, type one\[hy] or two\[hy]word commands to specify what to do next:
.IP
.EX
WELCOME TO ADVENTURE!! WOULD YOU LIKE INSTRUCTIONS?
.RB "> " "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.
.RB "> " "go 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.
.RB "> " "get lamp"
OK
.RB "> " "leave"
YOU'RE AT END OF ROAD AGAIN.
.RB "> " "go south"
YOU ARE IN A VALLEY IN THE FOREST BESIDE A STREAM TUMBLING ALONG A
ROCKY BED.
.EE
.PP
The original Adventure paid attention to only the first five letters of each command, so a long command like
.B inventory
could simply be typed as
.BR 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.
.PP
.
.SS Save the game state
You can save the current state of your game at any time with the \f[B]save\f[]\~\f[I]SAVEFILE\f[] command:
.IP
.EX
.RB "> " "save mygame"
GAME SAVED
.RB "> " "quit"
DO YOU REALLY WANT TO QUIT NOW?
.RB "> " "y"
OK
.EE
.PP
.
.\" ==========
.SH NOTES
.SS Speed of output
For extra authenticity, the output of the Adventure game is typed to your screen at 1200 baud.
You will note that although this prints the text faster than you can read it anyway, your experience of the game will improve considerably, especially when a move results in a surprise.
.PP
Why is the game better at 1200 baud?
When a paragraph of text is allowed to appear on the screen all at once, your eyes scan the entire paragraph for important information, often ruining any surprises before you can then settle down and read it from the beginning.
But at 1200 baud, you wind up reading the text in order as it appears, which unfolds the narrative sequentially as the authors of \f[B]Adventure\f[] intended.
.
.\" ==========
.SH HISTORY
This is an implementation of the
.B Colossal Cave Adventure
game, originally written in 1975–1977 by Will Crowther and Don Woods.
Crowther's original source code, which had been presumed lost for decades, was recovered in 2005 from a backup (dated 1977-03) of Don Woods's student account on the PDP-10 computer at the Stanford Artificial Intelligence Lab (SAIL).
.PP
This is the
.UR https://pypi.python.org/pypi/adventure/
.B adventure
distribution
.UE ,
ported from the 1977 FORTRAN code to Python\~3 by
.MT brandon@rhodesmill.org
Brandon Craig Rhodes
.ME .
.
.\" ==========
.SH COPYRIGHT
Copyright © 2014–2016
.MT ben+debian@benfinney.id.au
Ben Finney
.ME .
.
.\" Local variables:
.\" coding: utf-8
.\" mode: nroff
.\" End:
.\" vim: fileencoding=utf-8 filetype=nroff :
|