history 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. History of the Unix f77 Implementation of Dungeon
  2. =================================================
  3. This version of dungeon has been modified from the original source
  4. so that it will compile and execute on Unix[TM] Systems using the
  5. f77 FORTRAN Compiler. The original was written in DEC FORTRAN,
  6. translated from MDL. See the file "dungeon.doc" for the complete
  7. original documentation. See the file "PDP.doc" for notes on the
  8. Unix/pdp implementation.
  9. I. From the original documentation...
  10. To: Dungeon Players
  11. From: "The Translator"
  12. Subj: Game Information
  13. Date: 8-OCT-80
  14. This is the first (and last) source release of the PDP-11 version of
  15. Dungeon.
  16. Please note that Dungeon has been superceded by the game ZORK(tm).
  17. The following is an extract from the new product announcement for
  18. ZORK in the September, 1980 issue of the RT-11 SIG newsletter:
  19. "'ZORK: The Great Underground Empire - Part I' ...was developed
  20. by the original authors based on their ZORK (Dungeon) game for
  21. the PDP-10. It features a greatly improved parser; command
  22. input and transcript output files; SAVEs to any device and
  23. file name; and adaptation to different terminal types,
  24. including a status line on VT100s. Note: this is not the
  25. FORTRAN version that has been available through DECUS. This
  26. version has been completely rewritten to run efficiently on
  27. small machines - up to 10 times as fast as the DECUS version.
  28. ...ZORK runs under RT-ll, HT-ll, or RSTS/E and requires as
  29. little as 20K words of memory and a single floppy disk drive.
  30. The game package, consisting of an RX01-format diskette and
  31. an instruction booklet, is available from Infocom, Inc.,
  32. P.O. Box 120, Kendall Station, Cambridge, Ma. 02142."
  33. ZORK(tm) is a trademark of Infocom, Inc. It is available for several
  34. popular personal computers as well as for the PDP-ll.
  35. SUMMARY
  36. -------
  37. Welcome to Dungeon!
  38. Dungeon is a game of adventure, danger, and low cunning. In it
  39. you will explore some of the most amazing territory ever seen by mortal
  40. man. Hardened adventurers have run screaming from the terrors contained
  41. within.
  42. In Dungeon, the intrepid explorer delves into the forgotten secrets
  43. of a lost labyrinth deep in the bowels of the earth, searching for
  44. vast treasures long hidden from prying eyes, treasures guarded by
  45. fearsome monsters and diabolical traps!
  46. No DECsystem should be without one!
  47. Dungeon was created at the Programming Technology Division of the MIT
  48. Laboratory for Computer Science by Tim Anderson, Marc Blank, Bruce
  49. Daniels, and Dave Lebling. It was inspired by the Adventure game of
  50. Crowther and Woods, and the Dungeons and Dragons game of Gygax
  51. and Arneson. The original version was written in MDL (alias MUDDLE).
  52. The current version was translated from MDL into FORTRAN IV by
  53. a somewhat paranoid DEC engineer who prefers to remain anonymous.
  54. On-line information may be obtained with the commands HELP and INFO.
  55. II. DEC FORTRAN to f77 Conversion (17-nov-81)
  56. The conversion from DEC FORTRAN to Unix f77 was done by Randy Dietrich,
  57. Lynn Cochran and Sig Peterson. Much hacking was done to get it to fit
  58. in the limited address space of a PDP-11/44 (split I/D). See the
  59. file "PDP.doc" for all the gory details. Suffice it to say that by
  60. leaving out the debugging package and not linking in the f77 i/o
  61. library they managed to get it to run.
  62. III. PDP to VAX (dec-85)
  63. Based on the work of Randy, Lynn and Sig, Bill Randle folded in the
  64. full save/restore functions and the game debugging package (gdt) into
  65. the pdp version to create a Vax/Unix version. This version also uses
  66. f77 i/o, thus eliminating the extra speak and listen processes needed
  67. on the pdp.
  68. IV. Cleanup I (11-dec-86)
  69. John Gilmore (hoptoad!gnu) cleaned up the source files by moving
  70. most of the common declarations into include files and added
  71. comments from the original (FORTRAN or MDL?) source. His efforts
  72. are greatly appreciated.
  73. V. Cleanup II (9-feb-87)
  74. Bill Randle (billr@tekred.tek.com) added the pdp dependencies back
  75. into the Vax source files with #ifdefs in order to have just one
  76. set of sources. Previously, there were two sets of source: one for
  77. the pdp and one for the Vax. In addition, a shell escape of the
  78. form !cmd was added and the wizard can enter the gdt without having
  79. to recompile the source. Finally, a man page was generated, based
  80. on the dungeon.doc file.