I'm building a game in which a wav file plays on click - in this case it's a gun sound "bang".

The problem is if I rapid click, it won't play the sound once for each click - it's as if the clicks are ignored while the sound is playing, and once the sound is finished, it starts listening for clicks again. The delay seems to be about one second long, so you figure if someone clicks 4 or 5 times per second, I want 5 bangs, not 1.

Here's my HTML:

<audio id="gun_sound" preload>
    <source src="http://www.seancannon.com/_test/audio/gun_bang.wav" />
</audio>

Here's my JS:

$('#' + CANVAS_ID).bind(_click, function() {
    document.getElementById('gun_sound').play();
    adj_game_data(GAME_DATA_AMMO_ID, -1);
    check_ammo();
}); 

Ideas?

link|improve this question

Why the downvote? – AlienWebguy Nov 8 '11 at 21:33
feedback

1 Answer

up vote 0 down vote accepted

Once the gun_bang.wav is preloaded, you can dynamically make new elements with that sound attached to it, play the audio, and then remove them when the audio has finished.

    function gun_bang(){
        var audio = document.createElement("audio");
        audio.src = "http://www.seancannon.com/_test/audio/gun_bang.wav";
        audio.addEventListener("ended", function () {
            document.removeChild(this);
        }, false);
        audio.play();   
    }

    $('#' + CANVAS_ID).bind(_click, function() {
        gun_bang();
        adj_game_data(GAME_DATA_AMMO_ID, -1);
        check_ammo();
    }); 
link|improve this answer
This looks promising. My only fear is that there will be latency between the click and the audio while the element is being created. Do I still need my initial audio tag? I assume that's how it's preloaded? – AlienWebguy Aug 1 '11 at 0:22
Hah all fears debunked, thanks! Now when will JQuery start supporting these functions so I can do $('selector').play() and whatnot? – AlienWebguy Aug 1 '11 at 0:31
This is an overkill. Just set currentTime to 0: stackoverflow.com/a/7005562/352796 – katspaugh Dec 22 '11 at 15:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.