history 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. History of the C Implementation of Dungeon
  2. ==========================================
  3. This version of dungeon has been modified from FORTRAN to C. The
  4. original was written in DEC FORTRAN, translated from MDL. It was then
  5. translated to f77 for UN*X systems, from which it was translated to C.
  6. The C translation was done with the help of f2c, the FORTRAN to C
  7. translator written by David Gay (AT&T Bell Labs), Stu Feldman
  8. (Bellcore), Mark Maimone (Carnegie-Mellon University), and Norm
  9. Schryer (AT&T Bell Labs).
  10. I. From the original documentation...
  11. To: Dungeon Players
  12. From: "The Translator"
  13. Subj: Game Information
  14. Date: 8-OCT-80
  15. This is the first (and last) source release of the PDP-11 version of
  16. Dungeon.
  17. Please note that Dungeon has been superceded by the game ZORK(tm).
  18. The following is an extract from the new product announcement for
  19. ZORK in the September, 1980 issue of the RT-11 SIG newsletter:
  20. "'ZORK: The Great Underground Empire - Part I' ...was developed
  21. by the original authors based on their ZORK (Dungeon) game for
  22. the PDP-10. It features a greatly improved parser; command
  23. input and transcript output files; SAVEs to any device and
  24. file name; and adaptation to different terminal types,
  25. including a status line on VT100s. Note: this is not the
  26. FORTRAN version that has been available through DECUS. This
  27. version has been completely rewritten to run efficiently on
  28. small machines - up to 10 times as fast as the DECUS version.
  29. ...ZORK runs under RT-ll, HT-ll, or RSTS/E and requires as
  30. little as 20K words of memory and a single floppy disk drive.
  31. The game package, consisting of an RX01-format diskette and
  32. an instruction booklet, is available from Infocom, Inc.,
  33. P.O. Box 120, Kendall Station, Cambridge, Ma. 02142."
  34. ZORK(tm) is a trademark of Infocom, Inc. It is available for several
  35. popular personal computers as well as for the PDP-ll.
  36. SUMMARY
  37. -------
  38. Welcome to Dungeon!
  39. Dungeon is a game of adventure, danger, and low cunning. In it
  40. you will explore some of the most amazing territory ever seen by mortal
  41. man. Hardened adventurers have run screaming from the terrors contained
  42. within.
  43. In Dungeon, the intrepid explorer delves into the forgotten secrets
  44. of a lost labyrinth deep in the bowels of the earth, searching for
  45. vast treasures long hidden from prying eyes, treasures guarded by
  46. fearsome monsters and diabolical traps!
  47. No DECsystem should be without one!
  48. Dungeon was created at the Programming Technology Division of the MIT
  49. Laboratory for Computer Science by Tim Anderson, Marc Blank, Bruce
  50. Daniels, and Dave Lebling. It was inspired by the Adventure game of
  51. Crowther and Woods, and the Dungeons and Dragons game of Gygax
  52. and Arneson. The original version was written in MDL (alias MUDDLE).
  53. The current version was translated from MDL into FORTRAN IV by
  54. a somewhat paranoid DEC engineer who prefers to remain anonymous.
  55. On-line information may be obtained with the commands HELP and INFO.
  56. II. DEC FORTRAN to f77 Conversion (17-nov-81)
  57. The conversion from DEC FORTRAN to Unix f77 was done by Randy
  58. Dietrich, Lynn Cochran and Sig Peterson. Much hacking was done to get
  59. it to fit in the limited address space of a PDP-11/44 (split I/D).
  60. Suffice it to say that by leaving out the debugging package and not
  61. linking in the f77 i/o 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.
  81. VI. f77 to C (11-mar-91)
  82. Ian Lance Taylor (ian@airs.com or uunet!airs!ian) used the f2c
  83. translator to generate C source code. The resulting code was modified
  84. to remove the FORTRAN I/O library, to add simple more processing, and
  85. to change the format of the database file. Andre Srinivasan
  86. (andre@cs.pitt.edu) help test it. Jonathan Mark
  87. (uunet!microsoft!jonm) made it work under MS-DOS and Microsoft C.