home *** CD-ROM | disk | FTP | other *** search
/ Toolkit for DOOM / DOOMTOOL.ISO / misc / dmps20.zip / DMPS.TXT < prev    next >
Text File  |  1994-09-01  |  4KB  |  98 lines

  1. DMPS: The Doom PostScript Map Generator, Version 2.0
  2. ----------------------------------------------------
  3. Original program for Unix and copyright (c) James Bonfield, March 3, 1994.
  4. Modified for PC by Gerhard Karnik, March 29, 1994.
  5. Extensive modifications & enhancements by Steve W Brewer, September 1, 1994.
  6.  
  7. Description
  8. -----------
  9. This program produces PostScript maps of Doom levels, extracted from WAD
  10. files.
  11.  
  12. Thick lines represent solid walls on the map.
  13. Black circles represent objects.  The letters inside represent what kind of
  14. object it is.
  15. Black circles with arrows represent the enemy. The direction of the arrow is
  16. the direction the creature is initially facing.
  17. Grey lines represent secret areas.
  18.  
  19. Usage
  20. -----
  21.  
  22. DMPS [episode [mission [wadfile[.WAD] ]]] [options]
  23.  
  24.   episode            Episode of mission.  (Default: 1)
  25.   mission            Mission to draw.  (Default: 1)
  26.   wadfile[.WAD]      Wadfile to read from.  (Default: DOOM.WAD)
  27.   /S1                Draw things present at skills 1 & 2.
  28.   /S3                Draw things present at skill 3.
  29.   /S4                Draw things present at skills 4 & 5.
  30.   /MUL               Draw things present in multi-player mode.
  31.   /NO                Don't draw objects.
  32.   /NM                Don't draw monsters.
  33.   /NS                Don't draw player start positions.
  34.   /NT                Don't put a title on the page.
  35.   /AL                Draw all linedefs.
  36.   /?                 Display the help screen.
  37.  
  38. Example 1: To print the map of Episode 1, Mission 1 of DOOM.WAD, showing only
  39. the walls, on the PostScript printer connected to LPT1:
  40.  
  41.   DMPS > LPT1:
  42.  
  43. Example 2: To create a PostScript file called NIFTY.PS, of Episode 2, Mission
  44. 5 of NIFTY.WAD, including all the objects and monsters in Ultra-Violence
  45. Deathmatch mode:
  46.  
  47.   DMPS 2 5 NIFTY /S4 /MUL > NIFTY.PS
  48.  
  49. Notes
  50. -----
  51.  
  52. More enhancements are in the works, including:
  53.  
  54.   * Option to print a Legend page, so you know what's what on the map.
  55.   * Option to fill in areas where you can't go (like outside the map area,
  56.     between rooms, and inside thick walls) with dark gray, to make the map
  57.     a little easier to read.
  58.   * Redesigned monster and object icons that are easier to read at small
  59.     sizes.
  60.   * Option to fill in hazardous sectors (like nukage) with light gray.
  61.   * Facility to let you save the PostScript directly to a file instead of
  62.     having to pipe it to one from stdout.
  63.  
  64. Don't hold your breath on any of these; I don't have a lot of free time to
  65. spend on this program, but they'll get done eventually.
  66.  
  67. If you have any comments, questions, suggestions, or (ack!) bug reports, feel
  68. free to email me at swbrew01@starbase.spd.louisville.edu.  Currently, I am
  69. on co-operative internship for a semester, so it is only very rarely that
  70. I am able to check my email.  When I finally do see your message, though, I
  71. will write back.
  72.  
  73. Revision History
  74. ----------------
  75. 2.0    September 1, 1994
  76.  
  77.          Much improved and simplified interface, which no longer requires
  78.          every command line parameter to be preceded by some kind of switch.
  79.          Map lines that do not represent a change in floor or ceiling height,
  80.          and are not some kind of switch or moving sector, are no longer
  81.          drawn unless the /AL switch is specified.  A title, giving the
  82.          episode, mission, and wadfile of the map, is printed on the page
  83.          in the upper left-hand corner, unless the /NT switch is specified.
  84.  
  85. 1.3a   June 30, 1994
  86.          
  87.          DMPS now works with PWADs.  Also, a /? switch has been added to
  88.          bring up the help screen.
  89.  
  90. 1.3    May 1, 1994
  91.  
  92.          This is my original release, based on the PC version of DOOM_PS by
  93.          Gerhard Karnik, which was based on the Unix version by James
  94.          Bonfield.  New to my version is a more graphical (and acuarate)
  95.          representation of objects and monsters, a finer dithering for gray
  96.          that is easier to see, a friendly help screen, and a few more
  97.          command-line options.
  98.