I have the following problem: I'm trying to write a javascript game, and the character is being controlled by the arrow keys.
The problem is, when one keeps the key pressed, there is a short delay between firing the first keypress and the repeated kepress.
Also, when one presses the "right arrow key" and keeps it pressed, and then presses the "up arrow key" the character doesn't move to the top right corner, but stops the moving in the right direction and starts moving up.
This is the code I'm using:

<body onLoad="Load()" onKeyDown="Pressed(event)">
function Pressed(e) { 
        cxc = e.keyCode;
        if(cxc == 37)
            Move(-1,0);
        if(cxc == 38)
            Move(0,-1);
        if(cxc == 39)
            Move(1,0);
        if(cxc == 40)
            Move(0,1);
    }

does anybody have an idea??

link|improve this question

your code wont work, thats for sure. am not sure if you can test that two keys are pressed at the same time in JS. will wait for the answers. – Alec Smart Sep 11 '10 at 15:02
well, it does in deed work, but not as expected. My game is a timer-based game, and waisting 1sec by waiting for the repeated keystrokes is not good. It's frustrating. – alex Sep 11 '10 at 15:08
3  
No flash, thats too much work and it doesn't work for everybody. My game is going to be a "non-flash-game". I prefer HTML5 – alex Sep 11 '10 at 15:11
1  
HTML5? That doesn't work for everybody either! Infact Flash has 98% adoption rate. – Alec Smart Sep 11 '10 at 15:12
1  
Yes, but HTML5 WILL work for everybody.... – Garis Suero Sep 11 '10 at 15:14
show 3 more comments
feedback

6 Answers

up vote 9 down vote accepted

If you want key repeat in a controllable fashion, you will have to implement it yourself, as keypress events are fired dependent on the OS's idea of how keys should repeat. That means there may be variable initial and following delays, and holding down two keys at once will cause only one of them to repeat.

You will have to keep a record of whether each key is currently pressed, and ignore keydown events when the key is already down. This is because many browsers will fire a keydown as well as a keypress event when an autorepeat occurs, and if you're reproducing key repeat yourself you'll need to suppress that.

For example:

// Keyboard input with customisable repeat (set to 0 for no key repeat)
//
function KeyboardController(keys, repeat) {
    // Lookup of key codes to timer ID, or null for no repeat
    //
    var timers= {};

    // When key is pressed and we don't already think it's pressed, call the
    // key action callback and set a timer to generate another one after a delay
    //
    document.onkeydown= function(event) {
        var key= (event || window.event).keyCode;
        if (!(key in keys))
            return true;
        if (!(key in timers)) {
            timers[key]= null;
            keys[key]();
            if (repeat!==0)
                timers[key]= setInterval(keys[key], repeat);
        }
        return false;
    };

    // Cancel timeout and mark key as released on keyup
    //
    document.onkeyup= function(event) {
        var key= (event || window.event).keyCode;
        if (key in timers) {
            if (timers[key]!==null)
                clearInterval(timers[key]);
            delete timers[key];
        }
    };

    // When window is unfocused we may not get key events. To prevent this
    // causing a key to 'get stuck down', cancel all held keys
    //
    window.onblur= function() {
        for (key in timers)
            if (timers[key]!==null)
                clearInterval(timers[key]);
        timers= {};
    };
};

then:

// Arrow key movement. Repeat key five times a second
//
KeyboardController({
    37: function() { Move(-1, 0); },
    38: function() { Move(0, -1); },
    39: function() { Move(1, 0); },
    40: function() { Move(0, 1); }
}, 200);

Although, most action-based games have a fixed-time main frame loop, which you can tie the key up/down handling into.

link|improve this answer
yes, Ive tryed to fix it like this: <body onKeyDown="Down(event)" onKeyUp="Up(event)" /> but it doesn't fire at all – alex Sep 11 '10 at 16:17
feedback

You could start the movement onkeydown and only end it onkeyup?

link|improve this answer
feedback

I've solved it like this:

var pressedl = 0;
var pressedu = 0;
var pressedr = 0;
var pressedd = 0;

function Down(e) { 
        cxc = e.keyCode;
        if(cxc == 37)
            pressedl = 1;
        if(cxc == 38)
            pressedu = 1;
        if(cxc == 39)
            pressedr = 1;
        if(cxc == 40)
            pressedd = 1;
        //alert(cxc);
    }
    function Up(e) {
        cxc = e.keyCode;
        if(cxc == 37)
            pressedl = 0;
        if(cxc == 38)
            pressedu = 0;
        if(cxc == 39)
            pressedr = 0;
        if(cxc == 40)
            pressedd = 0;
        //alert(cxc);
    }

<body onLoad="Load()" onKeyDown="Down(event)" onKeyUp="Up(event)">

link|improve this answer
2  
Thanks to bobince for pointing me in the right direction! – alex Sep 11 '10 at 16:28
feedback

As this event is to move whatever from one position to one position, why don't you use onkeypress event, so in that way if the user key pressed the up key, the whatever will keep moving up, as the Pressed(e) will be called many times until the user releases the key.

<body onLoad="Load()" onkeypress="Pressed(event)">
link|improve this answer
same problem. the delay of 1 sec is still there, and when two keys are pressed, it only recognizez 1 of them. – alex Sep 11 '10 at 15:26
feedback

I'm a total novice at this, but why not combine KeyDown with KeyUp? I am working on a similar project right now and, after checking out quirksmode I am going to set forth at figuring out how to combine the two events such that the whole time between a Down and Up realizes the desired affect.

link|improve this answer
Thats way too much work, if the solution is so simple. Just use the code from the accepted answer – alex Jun 20 '11 at 19:27
feedback

This here is Lucas' solution in a more abstract version:

http://jsfiddle.net/V2JeN/4/

Seems you can only press 3 keys at a time to my surprise.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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