Visplane overflow

From DoomWiki.org

Revision as of 18:42, 22 March 2012 by Gez (talk | contribs) (vanilla)


The visplane Overflow is a fatal error that occurs in vanilla Doom when there are more than 128 unique floor and ceiling surfaces (visplanes) on the screen simultaneously.

BSP v2.2 added features to detect and prevent visplane overflows, by changing how Subsectors are laid out. It used a heuristic which was based on guesses about the true causes of visplanes, and which was tested against actual WADs, in some cases positively identifying the exact location the player would need to be to cause a visplane overflow. When the exact cause of visplane overflows was found and fixed -- after the release of the Doom source code -- BSP v3.0 removed the code which attempted to guess about them, and left only the code which helped prevent them from affecting earlier versions of Doom.

Hexen raised the visplane limit to 160; and Strife to 200. Boom removed the restriction altogether by replacing the visplane array with a hash of 128 linked lists of visplanes. Removal of the visplane limit is a standard feature of almost all modern source ports. For technical information about visplanes, see Doom rendering engine.

External links