home *** CD-ROM | disk | FTP | other *** search
/ Quake++ for Quake / Quake++.iso / quake / mbuild / mbuild.txt < prev    next >
Encoding:
Text File  |  1996-07-21  |  4.2 KB  |  133 lines

  1. ==================================================================
  2. Mbuild v0.3 -- David Langeliers -- Copyright(c)1996
  3. (e-mail:  dave@hidesert.com)
  4. (WWW:     http://www.hidesert.com/user/dave)
  5. ==================================================================
  6.  
  7. 1. What Is Mbuild
  8. 2. Mbuild Language Reference
  9. 3. Example levels
  10. 4. Verion 0.4
  11. 5. Author Info
  12.  
  13. --------------------------------
  14. 1. What Is Mbuild
  15.  
  16. Mbuild is a program for creating .MAP files for Quake.
  17. It reads .MPB files, which are similar to POV-Ray files.
  18. In version 0.3, Mbuild only supports 6 sided brushes, box's.
  19. .MPB files are made up of shapes and tags, shapes actually
  20. define the brushes in Quake(walls, floors, bridges, etc..)
  21. while tags change the current texture, rotation, and slope.
  22. Tags are also used to place objects in the level, such as
  23. monsters and weapons.
  24. Remember that external .MAP files don't work with
  25. Quake Shareware v1.0 and above. You can find instructions
  26. for compiling MAP files at:
  27. http://www.hidesert.com/user/dave
  28.  
  29. --------------------------------
  30. 2. Mbuild Language Reference
  31.  
  32. The only shape supported so far is the box. Here is the syntax:
  33.  
  34. box {
  35. <x1, y1, z1>, <x2, y2, z2>
  36. }
  37.  
  38. The first point is left, down, and near. The second is right, up, and far.
  39. This means that x1 < x2 & y1 < y2 & z1 < z2. If not, your map will not
  40. compile correctly with QBSP.
  41.  
  42. There are many tags in Mbuild, they all consist
  43. of a colon(:), 2 letters, and n number of fields
  44. depending on the tag.
  45.  
  46. :wd path_to_wad
  47. path_to_wad is the path to your texture wad file.
  48. NOTE-use backslashes(/), not forwardslashes(\)
  49.  
  50. :ms message_for_level
  51. message_for_level is the message that is displayed when entering your level.
  52. NOTE-The :wd and :ms tags MUST be before any brushes in the file.
  53.  
  54. :tx texture_name
  55. Sets the current texture to texture_name
  56.  
  57. :xm x_mult
  58. All X values beyond this tag will be multiplied by x_mult.
  59. This is useful if you create your level on a scale of 0 to 1.
  60. Also you can change this tag many times in the file to scale
  61. certain objects.
  62. The default x_mult is 128, this means that a X value of 1
  63. would be converted to 128 in the map file.
  64.  
  65. :ym y_mult
  66. All Z values beyond this tag will be multiplied by y_mult.
  67.  
  68. :zm z_mult
  69. All Z values beyond this tag will be multiplied by z_mult.
  70.  
  71. :zr z_angle
  72. This rotates all the brushes beyond this tag by z_angle.
  73. NOTE-I haven't added :xr and :yr, but they should be in 0.4
  74.  
  75. :xc x_change
  76. Moves the top of all brushes beyond this tag x_change along the X axis.
  77. This can be used for making slopes.
  78. The tag :xc 128 would slide the top of the brush 128, this would
  79. make a slope, the steepness of the slope would depend on the
  80. height of the brush.
  81.  
  82. :yc y_change
  83. Moves the top of all brushes beyond this tag y_change along the Y axis.
  84.  
  85. :ob object_name x y z ang [light_value]
  86. Places object_name at point <x, y, z> with the angle ang.
  87. The light_value field depends on the object name. If the
  88. name starts with 'light', then the light_value specifies
  89. the brightness of the light.
  90. NOTE-Put all your objects at the END of the file.
  91. All the objects must be after all the shapes!
  92.  
  93. --------------------------------
  94. 3. Example levels
  95.  
  96. I have included 5 example levels with package.
  97. BOX.MPB - a simple box level
  98. WBOX.MPB - simple box, half filled with water.
  99. RBOX.MPB - simple box, water, and a rotated platform.
  100. SBOX.MPB - simple box, water, and a slope.
  101. QK102.MPB - A small deathmatch level built using Mbuild.
  102.  
  103. There are also a few text files included to help you with
  104. certain aspects of building levels.
  105. BRUSHES.TXT
  106. WATER.TXT
  107. OBJECTS.TXT
  108.  
  109. --------------------------------
  110. 4. Verion 0.4
  111.  
  112. I am hoping to implement the following into v0.4
  113. +Function brushes(doors, teleporters, platforms, etc..)
  114. +X and Y rotation
  115. +Cylinders
  116. +Spheres
  117. +Pyramid's
  118. +Multiple point, noshape, brushes
  119. +MAP to MPB
  120.  
  121. --------------------------------
  122. 5. Author Info
  123.  
  124. My name is David Langeliers, and I'm 16.
  125. You may have used Wuake, that was mine.
  126. I listen to classic rock. I like to windsurf,
  127. play DooM/Quake, and program. I live in
  128. Palmdale, California.
  129. -Dave (dave@hidesert.com)
  130.  
  131. --------------------------------
  132. July 22, 1996, 12:50am :)
  133.