Page 1 of 1

Sound played by weapon interrupted at the start of a level

Posted: Wed Dec 05, 2018 5:44 am
by Player701
So, it appears that playing sounds and doing other non-trivial things on the first tick of a weapon's Select state doesn't work after a level transition, and this is not a bug (though it keeps puzzling me why). So I tried to circumvent it by doing this on the second tick instead. It all seems to work fine, save for one thing: playing sounds. They work almost fine - an average player may not even notice this, but it also depends on the sound itself. Consider this example code:

Code: Select all

class TestPistol : Pistol
{
    States
    {
        Select:
            PISG A 1 A_Raise;
            PISG A 1 A_PlaySound("misc/teleport", CHAN_WEAPON);
            PISG A 1 A_Raise;
            Goto Select+2;        
    }
}
The testing procedure is given below. It is advised to turn music off so that the sound can be heard better. Also, it looks like this bug only happens when "Screen wipe style" is not "None" (see below for more on this).
  1. Warp to any map.
  2. Type "give TestPistol" in the console. The pistol plays a teleporting sound when it is selected.
  3. Switch to another level by using the "changemap" console command, so that the weapons you are carrying are preserved.
  4. When the next level starts, the following may happen: First, you hear a very short part of the teleporting sound, for a fraction of a second. Then, the sound gets interrupted for a noticeable amount of time (a second at the very least) - this is probably when the screen wipe effect happens. After that, you hear the rest of the sound.
Unfortunately, this behavior cannot be reproduced reliably. Several iterations of the testing procedure may be required for the interruption to appear. The length of the interrupted fragment also seems to vary, but it's always very short - that's why I've picked the teleporting sound for testing, as it is quite loud in the beginning, which probably makes noticing the bug easier.

I also can't reproduce this in any number of iterations if I disable the screen wipe effect. It appears that the sound erroneously starts playing before the screen wipe happens, gets interrupted by it, and then continues from where it left off. Although this is only a theory, as I haven't looked at the code yet.

Re: Sound played by weapon interrupted at the start of a lev

Posted: Wed Dec 05, 2018 6:47 am
by Graf Zahl
The wipe code is very badly designed, using a busy loop in which other subsystems do not get their regular updates. This is probably just a side effect of that problem.
This particular piece of code is how id originally implemented the wipe for DOS.

Re: Sound played by weapon interrupted at the start of a lev

Posted: Wed Dec 05, 2018 7:31 am
by Apeirogon
Player701 wrote:non-trivial things on the first tick of a weapon's Select state doesn't work after a level transition
You can make weapon switching instantly, this trick gzdoom, by using SetPlayerProperty(0,0,2) to turn it on and SetPlayerProperty(0,1,2) to turn it off, and use something like

Code: Select all

Select:
sprite a 0 SetPlayerProperty(0,0,2);
goto state_name;

state_name:
sprite a 0 {do stuff};
goto ready;

deselect:
sprite a 0 SetPlayerProperty(0,1,2);
deselect_loop:
sprite a 1 A_Lower();
Loop;

Re: Sound played by weapon interrupted at the start of a lev

Posted: Wed Dec 05, 2018 7:42 am
by Player701
Thanks, but even with your solution, playing sounds from the weapon on the first tick after a level change still doesn't work. Perhaps I worded it incorrectly by saying the problem was with the Select state. It is not actually important what state is used, at least one tick has to pass since the start of the level.

Re: Sound played by weapon interrupted at the start of a lev

Posted: Wed Dec 05, 2018 7:46 am
by Apeirogon
I mention this in connection with bug you mention in you post, which not a bug, not this one.