Difference between revisions of "Door"

From DoomWiki.org

[checked revision][checked revision]
(Checked, with some additions)
m
Line 9: Line 9:
 
There are many [[Wall texture|textures]] designed specifically for doorjambs, a common one being DOORTRAK. Some door textures, such as EXITDOOR, also have a special cosmetic purpose. While the mentioned texture, obviously, indicates the final door of the map, DOOR3 is the main texture for an entrance "door", a wall only textured to look line one. These two types of doors were used in both Doom and [[Doom II]], albeit less frequently in the latter.
 
There are many [[Wall texture|textures]] designed specifically for doorjambs, a common one being DOORTRAK. Some door textures, such as EXITDOOR, also have a special cosmetic purpose. While the mentioned texture, obviously, indicates the final door of the map, DOOR3 is the main texture for an entrance "door", a wall only textured to look line one. These two types of doors were used in both Doom and [[Doom II]], albeit less frequently in the latter.
  
The precise behavior of a door is dictated by the [[linedef type#Terminology|type]] field of the linedef that activates it. Doors  themselves can be given a variety of types that determine, for instance, whether the doors stay open or close four seconds after reaching their destination heights. For unlocked closing doors, it is also changeable if the player is able to activate them again while they are in motion or in their up position. Some of the linedef types require a [[keys|key]], and the corresponding door is thus locked. Generally, locked doors are bordered with a distinctive frame or have an alternative sign in the appropriate color.
+
The precise behavior of a door is dictated by the [[linedef type#Terminology|type]] field of the linedef that activates it. Doors  themselves can be given a variety of types that determine, for instance, whether the doors stay open or close four seconds after reaching their destination heights. For unlocked closing doors, one can also affect if the player is able to activate them again while they are in motion or in their up position. Some of the linedef types require a [[keys|key]], and the corresponding door is thus locked. Generally, locked doors are bordered with a distinctive frame or have an alternative sign in the appropriate color.
  
 
Doom II presented ''fast'' doors that move in a higher speed in comparison with the original ones and have their own sound effects. More particularly, the enhancement included a group of linedef types that allow door switches to be "locked". When the player has the correct key, the switch can be activated to open a fast door permanently, no matter how far it lies from the switch. The feature, anyhow, was used only in [[Ultimate Doom]] and [[Final Doom]].       
 
Doom II presented ''fast'' doors that move in a higher speed in comparison with the original ones and have their own sound effects. More particularly, the enhancement included a group of linedef types that allow door switches to be "locked". When the player has the correct key, the switch can be activated to open a fast door permanently, no matter how far it lies from the switch. The feature, anyhow, was used only in [[Ultimate Doom]] and [[Final Doom]].       

Revision as of 19:27, 30 July 2012

A characteristic E1 door in map 7

Surfaces: BIGDOOR4
Doorjambs: DOORTRAK
Ceiling flat: FLAT20
Type: Unlocked, stays open
Doors in Doom, Heretic and Strife only go up and down. This is because the NODES tree is prebuilt and not modified at runtime, and thus all linedefs must stay in the same place (when the level is viewed from above). However, Hexen introduced more flexible doors that can be made using polyobjects.

A closed door is constructed as a sector - a thin and rectangular one usually - whose ceiling and floor are both at the same height as the neighboring sectors' floors. When the door is opened, its ceiling moves up at a controlled rate to four units below the lowest adjacent ceiling. By convention, doors are 16 units thick, but any thickness will work.

The doorjambs (or doortracks) are the walls exposed at the sides as the door opens. They are usually specified with the lower unpegged bit, which causes them to be drawn from the floor up rather than from the ceiling down as usual. When this bit is not used, the doorjambs move up and down with the door.

There are many textures designed specifically for doorjambs, a common one being DOORTRAK. Some door textures, such as EXITDOOR, also have a special cosmetic purpose. While the mentioned texture, obviously, indicates the final door of the map, DOOR3 is the main texture for an entrance "door", a wall only textured to look line one. These two types of doors were used in both Doom and Doom II, albeit less frequently in the latter.

The precise behavior of a door is dictated by the type field of the linedef that activates it. Doors themselves can be given a variety of types that determine, for instance, whether the doors stay open or close four seconds after reaching their destination heights. For unlocked closing doors, one can also affect if the player is able to activate them again while they are in motion or in their up position. Some of the linedef types require a key, and the corresponding door is thus locked. Generally, locked doors are bordered with a distinctive frame or have an alternative sign in the appropriate color.

Doom II presented fast doors that move in a higher speed in comparison with the original ones and have their own sound effects. More particularly, the enhancement included a group of linedef types that allow door switches to be "locked". When the player has the correct key, the switch can be activated to open a fast door permanently, no matter how far it lies from the switch. The feature, anyhow, was used only in Ultimate Doom and Final Doom.

A door does no damage to the player or monsters if it closes upon their head. If, however, they are killed in a doorway, a closing door will transform their corpses into a pool of blood. Items dropped by monsters, and subsequently trapped beneath a closing door, vanish and are removed from play.

Sliding doors

In the early stages of Doom's development cycle, doors were supposed to have the additional option of sliding open horizontally to reflect the original door behavior in Wolfenstein 3D. The alpha versions of Doom still contained graphics for doors that were designed for horizontal movement. The option was never completed and dropped entirely for retail. Remnants of this code is still present in the source code but commented out; it can be enabled via additional code or by applying patches.

A patch for Chocolate Doom is available here: http://www.soulsphere.org/random/slidoor.zip. A video demonstration is also available at YouTube.

The sliding door is a cosmetic feature only; it most closely resembles, and acts as, a non-passable linedef. Weapons can, predictably, fire right through a horizontal door. It should be mentioned that no source port to date have re-enabled the sliding doors.

Trivia

  • Two sector types, 10 and 14, offer door behavior that is independent of linedef types. The former makes its host sector close when thirty seconds have elapsed from the level startup. Meanwhile, the latter commands its sector to open when the player has been in the level for five minutes. A notorious example of a type 10 sector is found in MAP27: Monster Condo where a secret compartment in the northern hall (with the blue door) becomes blocked for good after half a minute.
  • E2M3: Refinery is a special map in usage of door textures. It is the only stock level to have EXITDOOR texture depicting an entrance door. The locked blue door also has skull frames although the key itself is a card, not a skull. A similar oddity can be met in MAP24: The Chasm.

See also