Talk:BSP (file format)
This is the talk page of a redirect that targets the page: • .bsp Because this page is not frequently watched, present and future discussions, edit requests and requested moves should take place at: • Talk:.bsp |
Untitled
[edit]I disagree with "A .BSP file includes everything in the map, except the textures (with the exception of Half-Life, BSP version 30), ". I think that BSP-files for Quake I DO contain all the textures for that map. —Preceding unsigned comment added by 91.35.185.207 (talk) 10:11, 1 November 2007 (UTC)
Removed reference to Doom from the first paragraph, as none of these games (except for perhaps Doom 3) use the .BSP format for maps. 213.105.95.254 (talk) 09:37, 29 November 2009 (UTC)
Inaccuracies?
[edit]The opening paragraph seems a little inaccurate:
"BSP files use binary space partitioning to generate levels that can be rendered quickly while minimizing the number of polygons that need to be redrawn every time the screen refreshes."
Actually the BSP isn't directly used to cull the rendering - which seems to be a common error - perhaps because it can be used to minimise overdraw by drawing from front to back - but is used to lookup the current leaf or cluster that a point is in, or the set of leaves and clusters an AABB overlaps, etc.
The PVS data is used for the render culling, which groups BSP leaves into clusters which contain a list of which other clusters are visible to them. The BSP tree is used to generate this since it provides well behaved data (convex regions) that makes the PVS data easier to calculate. This is not unique to BSP trees or BSP files and the infact PVS data need not actually be included to create a valid BSP file... try compiling with novis in Radiant or whatever to see what I mean.
Also whats up with "minimizing the number of polygons that need to be redrawn every time the screen refreshes"? Its pretty wordy - how about: "minimising the number of polygons drawn".
"One of the biggest problems with the .BSP file format is that large open areas do not work well due to the nature of the partitioning algorithm used."
This has nothing to do with the BSP format or the BSP tree data structure, which has similar lookup complexity to any other binary lookup tree - O(log n). I suspect this again refers to the PVS implementation, because being a large open area is precisely the same thing as being difficult to optimise the PVS. Every visibility culling algorithm suffers from this problem by default.
Jheriko (talk) 13:27, 13 April 2010 (UTC)
... in fact reading the whole thing through its littered with small errors Jheriko (talk) 13:38, 13 April 2010 (UTC)