Difference between revisions of "Sound effects behave differently on level 8"

From DoomWiki.org

[unchecked revision][checked revision]
m (Differences between vanilla Doom and the released source)
 
(11 intermediate revisions by 6 users not shown)
Line 1: Line 1:
Normally in [[Vanilla Doom]], sound effects decrease in volume with distance, with a cutoff at 1200 units.  Sound effects originating at a distance of more than 1200 units from the player are not heard. This behavior is different on level 8.  This affects level 8 when playing under any episode of [[Doom 1]] as well as MAP08 of Doom 2 and Final Doom. When playing on level 8, sound effects are not cut off. As the [[Boss]] levels in Doom 1 all occur on level 8, it is possible that this behavior was intended so that the player could always hear the boss monster from any distance. As an additional effect, if the sfx volume is decreased to zero, sound effects still play, but very quietly.  In this scenario, the effect of distance on volume is reversed.  Close sound effects are quiet while sound effects at a distance are loud. == Demonstrating the effect == To demonstrate this effect: # Start Doom and warp to level 8 (mission 8 of any episode or MAP08). # Wake up some monsters by attacking them. # Activate the noclip [[Cheat code|cheat]] (IDCLIP/IDSPISPOPD) and walk outside the level, far away from any monsters. # Notice that monster growling noises can still be heard despite the distance. # Go to the sound menu and move the sound effect volume slider to minimum. # Monsters can still be heard.  Travel back toward the monsters. # Notice that the volume of the monsters decreases when moving closer to them. == Technical == The cause of this is found in [[Doom source code: files|s_sound.c]] in the Doom source code:  // From _GG1_ p.428. Appox. eucledian distance fast. approx_dist = adx   ady - ((adx
+
Normally in [[vanilla Doom]], sound effects decrease in volume with distance, with a cutoff at 1200 units.  Sound effects originating at a distance of more than 1200 units from the player are not heard.
 +
 
 +
This behavior is different on level 8.  This affects level 8 when playing under any episode of [[Doom]]/[[Ultimate Doom]] as well as MAP08 of [[Doom II]] or [[Final Doom]].
 +
 
 +
When playing on level 8, sound effects are not cut off. As the [[boss]] levels in Doom all occur on level 8, it is possible that this behavior was intended so that the player could always hear the boss monster from any distance.  
 +
 
 +
As an additional effect, if the sfx volume is decreased to zero, sound effects still play, but very quietly.  In this scenario, the effect of distance on volume is reversed.  Close sound effects are quiet while sound effects at a distance are loud.
 +
 
 +
== Demonstrating the effect ==
 +
 
 +
To demonstrate this effect:
 +
 
 +
# Start Doom and warp to level 8 (mission 8 of any episode or MAP08).
 +
# Wake up some monsters by attacking them.
 +
# Activate the no-clip [[Doom cheat codes|cheat]] (<tt>idclip</tt>/<tt>idspispopd</tt>) and walk outside the level, far away from any monsters.
 +
# Notice that monster growling noises can still be heard despite the distance.
 +
# Go to the sound menu and move the sound effect volume slider to minimum.
 +
# Monsters can still be heard.  Travel back toward the monsters.
 +
# Notice that the volume of the monsters decreases when moving closer to them.
 +
 
 +
== Technical ==
 +
 
 +
The cause of this is found in [[Doom source code: files|s_sound.c]] in the Doom source code:
 +
 
 +
  // From _GG1_ p.428. Appox. eucledian distance fast.
 +
approx_dist = adx + ady - ((adx < ady ? adx : ady)>>1);
 +
 +
if (gamemap != 8
 +
  && approx_dist > S_CLIPPING_DIST)
 +
{
 +
    return 0;
 +
}
 +
 
 +
This code calculates the distance of the sound from the player.  If the sound is greater than the clipping distance (1,200 units), the function returns and the sound does not play.  However, a specific test is made to see if the current level is level 8.  If so, there is no distance cutoff.
 +
 
 +
// volume calculation
 +
if (approx_dist < S_CLOSE_DIST)
 +
{
 +
    *vol = snd_SfxVolume;
 +
}
 +
else if (gamemap == 8)
 +
{
 +
    if (approx_dist > S_CLIPPING_DIST)
 +
        approx_dist = S_CLIPPING_DIST;
 +
    *vol = 15+ ((snd_SfxVolume-15)
 +
              *((S_CLIPPING_DIST - approx_dist)>>FRACBITS))
 +
                    / S_ATTENUATOR;
 +
}
 +
else
 +
{
 +
    // distance effect
 +
    *vol = (snd_SfxVolume
 +
            * ((S_CLIPPING_DIST - approx_dist)>>FRACBITS))
 +
            / S_ATTENUATOR;
 +
}
 +
 
 +
This is the code which decreases the volume of sound effects with distance.  A different calculation is used here for level 8.  A value of 15 is always added to the volume, so that it is always above zero.
 +
 
 +
=== Differences between vanilla Doom and the released source ===
 +
 
 +
Examination of the released [[Doom source code]] can be misleading because of a change made to the sound code before the source release.  In vanilla Doom, there are two variables which hold the sound effect volume.  One of these is named "sfxVolume", and has a range of 0-15.  This is the value stored in the configuration file and controlled via the sound volume screen.
 +
 
 +
The second variable is internal to the sound subsystem (snd_SfxVolume in the above code fragment).  Unlike sfxVolume this has a range of 0–127.  The menu updates this internal variable by calling ''S_SetSfxVolume'' to inform the sound subsystem of volume changes.  Before the source code release, the two variables were combined into a single variable named ''snd_SfxVolume'', having a range of 0–15. 
 +
 
 +
The result of this is that the sound code from the source release behaves differently on level 8.  If the volume setting is at maximum (15), then all sound effects play at maximum volume regardless of distance from the player.  Secondly, the reversed volume effect occurs at any volume setting below this.
 +
 
 +
Remnants of this change are scattered throughout the source release.  The following is from [[Doom source code: files|m_menu.c]]:
 +
 
 +
S_SetSfxVolume(snd_SfxVolume /* *8 */);
 +
 
 +
The commented-out multiply-by-8 was needed in vanilla Doom to convert from the 0–15 to 0–127 range, but after the two variables were merged, became useless.  ''S_SetSfxVolume'' itself still checks values are in the range 0–127, although the function essentially became pointless after the change.
 +
 
 +
[[Category:Errors and bugs]]
 +
[[Category:Audio]]

Latest revision as of 04:07, 20 August 2018

Normally in vanilla Doom, sound effects decrease in volume with distance, with a cutoff at 1200 units. Sound effects originating at a distance of more than 1200 units from the player are not heard.

This behavior is different on level 8. This affects level 8 when playing under any episode of Doom/Ultimate Doom as well as MAP08 of Doom II or Final Doom.

When playing on level 8, sound effects are not cut off. As the boss levels in Doom all occur on level 8, it is possible that this behavior was intended so that the player could always hear the boss monster from any distance.

As an additional effect, if the sfx volume is decreased to zero, sound effects still play, but very quietly. In this scenario, the effect of distance on volume is reversed. Close sound effects are quiet while sound effects at a distance are loud.

Demonstrating the effect[edit]

To demonstrate this effect:

  1. Start Doom and warp to level 8 (mission 8 of any episode or MAP08).
  2. Wake up some monsters by attacking them.
  3. Activate the no-clip cheat (idclip/idspispopd) and walk outside the level, far away from any monsters.
  4. Notice that monster growling noises can still be heard despite the distance.
  5. Go to the sound menu and move the sound effect volume slider to minimum.
  6. Monsters can still be heard. Travel back toward the monsters.
  7. Notice that the volume of the monsters decreases when moving closer to them.

Technical[edit]

The cause of this is found in s_sound.c in the Doom source code:

// From _GG1_ p.428. Appox. eucledian distance fast.
approx_dist = adx + ady - ((adx < ady ? adx : ady)>>1);

if (gamemap != 8
  && approx_dist > S_CLIPPING_DIST)
{
    return 0;
}

This code calculates the distance of the sound from the player. If the sound is greater than the clipping distance (1,200 units), the function returns and the sound does not play. However, a specific test is made to see if the current level is level 8. If so, there is no distance cutoff.

// volume calculation
if (approx_dist < S_CLOSE_DIST)
{
    *vol = snd_SfxVolume;
}
else if (gamemap == 8)
{
    if (approx_dist > S_CLIPPING_DIST)
        approx_dist = S_CLIPPING_DIST;
    *vol = 15+ ((snd_SfxVolume-15)
              *((S_CLIPPING_DIST - approx_dist)>>FRACBITS))
                    / S_ATTENUATOR;
}
else
{
    // distance effect
    *vol = (snd_SfxVolume
            * ((S_CLIPPING_DIST - approx_dist)>>FRACBITS))
           / S_ATTENUATOR; 
}

This is the code which decreases the volume of sound effects with distance. A different calculation is used here for level 8. A value of 15 is always added to the volume, so that it is always above zero.

Differences between vanilla Doom and the released source[edit]

Examination of the released Doom source code can be misleading because of a change made to the sound code before the source release. In vanilla Doom, there are two variables which hold the sound effect volume. One of these is named "sfxVolume", and has a range of 0-15. This is the value stored in the configuration file and controlled via the sound volume screen.

The second variable is internal to the sound subsystem (snd_SfxVolume in the above code fragment). Unlike sfxVolume this has a range of 0–127. The menu updates this internal variable by calling S_SetSfxVolume to inform the sound subsystem of volume changes. Before the source code release, the two variables were combined into a single variable named snd_SfxVolume, having a range of 0–15.

The result of this is that the sound code from the source release behaves differently on level 8. If the volume setting is at maximum (15), then all sound effects play at maximum volume regardless of distance from the player. Secondly, the reversed volume effect occurs at any volume setting below this.

Remnants of this change are scattered throughout the source release. The following is from m_menu.c:

S_SetSfxVolume(snd_SfxVolume /* *8 */);

The commented-out multiply-by-8 was needed in vanilla Doom to convert from the 0–15 to 0–127 range, but after the two variables were merged, became useless. S_SetSfxVolume itself still checks values are in the range 0–127, although the function essentially became pointless after the change.