Difference between revisions of "AASTINKY"

From DoomWiki.org

[checked revision][unchecked revision]
m (wait, I was misinformed about Hacx.)
m (Removed two redundant words from last paragraph, added See Also section)
Line 18: Line 18:
 
|}
 
|}
  
Interestingly enough, Hexen also features two other dummy textures, one is explicitly named "BLANK" (and is not actually blank, but features a 64x1 patch at the bottom of a 64x128 texture), the other is named "POOT" and is the only texture defined in its TEXTURE2 lump. Since POOT is defined in TEXTURE2, it is actually a working texture, but it is not used (FOREST05 fills its real role instead).
+
Interestingly enough, Hexen features two dummy textures, one is explicitly named "BLANK" (and is not actually blank, but features a 64x1 patch at the bottom of a 64x128 texture), the other is named "POOT" and is the only texture defined in its TEXTURE2 lump. Since POOT is defined in TEXTURE2, it is actually a working texture, but it is not used (FOREST05 fills its real role instead).
  
 +
== See also ==
 +
*[[Tag 667]]
 
[[Category:Errors and bugs]]
 
[[Category:Errors and bugs]]
 
[[Category:Textures]]
 
[[Category:Textures]]

Revision as of 09:25, 2 April 2015

AASTINKY is the first texture in the Doom texture directory (TEXTURE1). In Doom II, the name AASHITTY is used instead. AASTINKY is not a real texture, but is a dummy texture to work around a quirk in the Doom engine's internals. Using this texture has the same effect as using the '-' "empty" texture.

Internally, Doom refers to textures by their index in the texture directory. A value of zero is used to represent the empty '-' texture. However, in C, which Doom is written in, array indices start from zero. The result is that the first texture in the WAD directory is equivalent to the empty texture.

The AASTINKY texture was likely introduced as a workaround to the indexing problem, deliberately occupying the first texture slot so that real textures will be unaffected by the problem. The AA prefix forces the texture to be the first in the directory, as the textures in Doom's WAD directory are sorted by alphabetical order. It is not necessary for textures in the WAD directory to be in alphabetical order, so it is likely that the tool used by Id to generate the directory automatically sorted the textures.

This dummy texture has a variety of names in other Doom-engine games:

The Ultimate Doom AASTINKY
Doom II/Final Doom AASHITTY
Heretic BADPATCH
Hexen ABADONE
Strife AASTINKY

Interestingly enough, Hexen features two dummy textures, one is explicitly named "BLANK" (and is not actually blank, but features a 64x1 patch at the bottom of a 64x128 texture), the other is named "POOT" and is the only texture defined in its TEXTURE2 lump. Since POOT is defined in TEXTURE2, it is actually a working texture, but it is not used (FOREST05 fills its real role instead).

See also