home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / FAQSYS18.ZIP / FAQS.DAT / BSP_TREE.TXT < prev    next >
Internet Message Format  |  1994-11-29  |  11KB

  1. Date: Mon, 28 Nov 94 17:30:41 GMT
  2. From: ee@datcon.co.uk (Eddie Edwards)
  3.  
  4. BSP Trees
  5. ---------
  6.  
  7. This article explains how BSP (binary space partitioning) trees can be used in 
  8. a game such as DOOM as part of the rendering pipeline to perform back-face
  9. culling, partial Z-ordering and hidden surface removal.
  10.  
  11. To explain the use of BSP trees, it is best to start with an example. Consider
  12. a very simple DOOM level.
  13.  
  14.      A---------------------------------a----------------------------------B
  15.   |  |                                                                    |  |
  16.   |  |                                            y                       |  |
  17.   d1 |                                                                    |  b1
  18.   |  |                               f'                                   |  |
  19.   |  |                                                                    |  |
  20.      |          C--------------------f-----------------------D            | 
  21.   |  |          |                                            |            |  |
  22.   |  |          |                    f"                      |            |  |
  23.   |  d          |                                            |            b  |
  24.   |  |          |                                            |            |  |
  25.   |  |       e" e  e'                                     g' g  g"        |  |
  26.   d2 |          |                                            |            |  b2
  27.   |  |          |                                            |            |  |
  28.   |  |          |                                            |            |  |
  29.   |  |          E                                            F            |  |
  30.   |  |                              x                                     |  |
  31.   |  |                                                                    |  |
  32.      G---------------------------------c----------------------------------H
  33.                                                               
  34.       ----c1---- ----------------------c2-------------------- -----c3-----    
  35.  
  36.  
  37.  
  38. The level consists of a room within a room. The player cannot go outside of the
  39. area within the square ABHG.
  40.  
  41. First some definitions (sorry :-)
  42.  
  43. The _vertices_ are marked A-H, the _faces_ are marked a-g.
  44.  
  45. We define a _line_ by using an ordered pair of vertices, so that
  46.  
  47.       a = (A,B)  e = (E,C)  f = (C,D)  g = (F,D)
  48.  
  49. We say a point is to the _left_ of a line if it is to the left of the vector
  50. between its two vertices, taken in order.
  51.  
  52. So, in the above example, nothing is to the left of line a; everything is to
  53. the right of it. Note that this depends upon our defintion of line a, and if
  54. we had defined a = (B,A) then everything would be to the left of line a.
  55.  
  56. A _face_ is a side of a line which is visible to the player. Wall e above, for
  57. example, has two faces (marked e' and e"). Not all walls have two faces - if 
  58. the player can never see one side of a wall it only has one.
  59.  
  60. A face is fully defined by an ordered pair of vertices and an ordered pair of
  61. faces - a left face and a right face.
  62.  
  63. The BSP tree for the example above might look like this:
  64.  
  65.  
  66.                      f 
  67.                     / \
  68.                    /   \ 
  69.                   /     \
  70.            a,d1,b1       e
  71.                         / \
  72.                        /   \
  73.                       /     \
  74.                  d2,c1       g
  75.                             / \
  76.                            /   \
  77.                           /     \
  78.                         c2       c3,b2
  79.  
  80.  
  81. Each node contains a line. Everything to the left of that line is in the left
  82. subtree, and everything to the right of that line is in the right subtree.
  83.  
  84. Note that face d is neither completely to the right of nor to the left of face
  85. f. To accomodate this, we split it up into two halves, and put one half into
  86. the left subtree and one half into the right subtree. Thus, we have to generate
  87. new faces in order to build the BSP tree.
  88.  
  89. I will explain how the BSP tree is created later. Firstly, I will give the
  90. algorithm used to render a picture using the tree.
  91.  
  92. Suppose the player is standing at position 'x', and looking North.
  93.  
  94. We start at the top of the tree at line f. We are standing to the right of line
  95. f, so we go down the LEFT of the tree. This is because we want the furthest
  96. polygons first.
  97.  
  98. We come to the left-hand-most terminating node. We write down the faces here
  99. in our notepad. "a,d1,b1".
  100.  
  101. Since we've come to a terminator, we back up a level. Back to the top, but we
  102. have to go down the right subtree yet. Firstly, though, we look at face f - the
  103. deciding face for this node. We've got everything behind it in our list, we've
  104. yet to look at anything in front of it, but we must put it into our list.
  105. Note that face f has two sides - f' and f". Since we already know we're on the
  106. right of line f, we know that we can only see its right side - so we write 
  107. f" in our notepad. It now says a,d1,b1,f".
  108.  
  109. Note, though, that if we were looking south (i.e. our line-of-sight vector
  110. points away from face f) then we could not see either face f or anything on
  111. the other side of face f - in this case, we just don't bother going any further
  112. down the tree.
  113.  
  114. Now we go down the subtree and come to node e. We are on the right of e, so we
  115. go down the left subtree and get a terminal node - we just write d2,c1 in our
  116. notepad. 
  117.  
  118. Back up, decide on which side of e to put in. We decide e'. The notepad now 
  119. says a,d1,b1,f",d2,c1,e'.
  120.  
  121. Down the right subtree to node g. We're on the left, so down the right subtree
  122. to c3,b2, up, check g (we're on the left = g'), back down to the final node,
  123. get c2, up, up, up, and we're done.
  124.  
  125. The notepad ends up saying:
  126.  
  127. a d1 b1 f" d2 c1 e' c3 b2 g' c2
  128.  
  129. If we draw these walls, in this order, then we will get the correct scene. I
  130. would recommend using a one-dimensional Z-buffer to get finer granularity than
  131. the painter's algorithm provides, before plotting the walls. Note also that
  132. some walls are behind you - however, since you need to calculate their z
  133. coordinates for the perspective transform, you can merely discard faces with
  134. negative z values.
  135.  
  136. Creating the BSP tree
  137. ---------------------
  138.  
  139. The BSP tree almost creates itself. The only difficulty is knowing when to stop
  140. recursing. Notice that the terminal nodes are just put into the list - so a
  141. sufficient condition for a group of faces to form a terminal node is that they
  142. can be drawn in a set order without any mistakes occuring in the drawing. That
  143. is, if wherever the player can stand, the group of walls will never obscure
  144. each other. 
  145.  
  146. So let us begin: Choose face f (the choice is fairly arbitrary - it is best
  147. to choose faces which don't split many other faces up. However, in this case
  148. it is unavoidable). Split up faces d and b, because they straddle the line f.
  149. (The line you are splitting along is known as the _nodeline_ in DOOM-speak).
  150.  
  151. Then put everything to the left of f in the left subtree, and vice-versa:
  152.  
  153.  
  154.                             f
  155.                            / \
  156.                           /   \
  157.                          /     \
  158.                   a,d1,b1       b2,c,d2,e,g
  159.  
  160. We can terminate the left node - because walls a,d1 and b1 form a convex
  161. shape, they can never overlap each other from any point of view. However, on
  162. the other side, face e can obscure face d2 from certain viewpoints (our example
  163. viewpoint above, for one) so we divide along side e. This causes side c to be
  164. split, but side a is not split because it's not in our current list of sides.
  165.  
  166. The next level is:
  167.  
  168.                             f
  169.                            / \
  170.                           /   \
  171.                          /     \
  172.                   a,d1,b1       e
  173.                                / \
  174.                               /   \ 
  175.                              /     \
  176.                         d2,c1       b2,c2,g
  177.  
  178. Now, c1 and d2 never overlap, so we have another terminal node. We next divide
  179. along line g, splitting c2 into c2 and c3, and the last nodes are terminals
  180. (a node with one face in is always terminal :-).
  181.  
  182. This is the basic idea behind a BSP tree - to give an example how effective it
  183. is, consider standing at point y and looking North. Because you're looking
  184. away from face f, you don't bother recursing down the entire left subtree. This
  185. then very quickly gives you the ordered list of faces: a,d1,b1. 
  186.  
  187. Refinements
  188. -----------
  189.  
  190. If at each node we define a bounding box for each subtree, such that every line
  191. in a subtree is contained by its corresponding bounding box, then we can cut
  192. some invisible polygons (ones which lie to the left or right of the screen) out
  193. by comparing each bounding box with the cone of vision - if they don't
  194. intersect, then you don't go down the whole subtree. DOOM does this, allowing
  195. it to store an *entire* level in one huge BSP tree.
  196.  
  197. Here's some pseudo-code to traverse the tree. The function left() returns TRUE
  198. if the second input vector is to the left of the first input vector. This is
  199. a simple dot product, and by pre-calculating the slope of the nodeline can be
  200. done with one multiply and one subtract. 
  201.  
  202. vector  player                         ; player's map position
  203. vector  left_sightline                 ; vector representing a ray cast through
  204.                                        ; the left-most pixel of the screen
  205. vector  right_sightline                ; the right-most pixel of the screen
  206.  
  207. structure node 
  208. {
  209.   vector vertex1
  210.   vector vertex2
  211.   node   left_subtree
  212.   node   right_subtree
  213.   face   left_face
  214.   face   right_face
  215.   box    bounding_box
  216.   bool   terminal_node
  217.   face   terminal_node_faces[lots]
  218.  
  219. recurse(node input)
  220.  
  221. if (cone defined by left and right sightlines does not intersect the node's
  222.     bounding box)
  223.   return
  224. fi
  225.  
  226. if node.terminal_node
  227.   ; terminal node - add faces to list
  228.   add(node.terminal_node_faces)
  229.   return
  230. fi
  231.  
  232. if left(vertex2-vertex1,player-vertex1)
  233.   ; player is to the left of the nodeline
  234.   if not left(vertex2-vertex1,right_sightline)
  235.     ; sight points right - we are looking at the face
  236.     recurse(node.right_subtree)
  237.     add(node.left_face)
  238.   fi
  239.   ; now go down the left subtree
  240.   recurse(node.left_subtree)
  241. else
  242.   ; player is to the right of the nodeline
  243.   if left(vertex2-vertex1,left_sightline)
  244.     ; sight points left - we are looking at the face
  245.     recurse(node.left_subtree)
  246.     add(node.right_face)
  247.   fi
  248.   ; now go down the right subtree
  249.   recurse(node.right_subtree)
  250. fi
  251.  
  252. return                                                                         
  253.  
  254. end recurse
  255.  
  256. This isn't anywhere near a decent implementation - the data structures, for
  257. example, leave a *lot* to be desired :-)
  258.  
  259. It should be possible to encode all the functions inline; in fact, it would be
  260. feasible to take a BSP tree and hard-code it into some run-time generated code
  261. which you just call to recurse the tree ... but I'm just a hacker at heart ;-)
  262.  
  263. Anyway, I hope this helps answer some peoples' questions on this subject. If
  264. you have any more questions, please don't hesitate to email me.
  265.  
  266. Catch you later,
  267.  
  268. Eddie xxx
  269.  
  270. ee@datcon.co.uk
  271.  
  272.  
  273. ===========================================================================
  274. Official Archimedes convertor of : Hear and remember, see and understand,
  275. Wolfenstein 3D and proud of it!! : do and forget.
  276. =================================: Something like that, anyway.
  277.          ee@datcon.co.uk         ==========================================
  278.  
  279.