From: Shawn Hargreaves Newsgroups: comp.os.msdos.djgpp Subject: Re: Allegro Keyboard Problem Date: Thu, 13 Feb 1997 20:21:18 +0000 Organization: None Distribution: world Message-ID: References: <330389AB DOT 3F20 AT post DOT comstar DOT ru> <97Feb13.142302+0100_mez.395711-215+2169 AT hphalle0 DOT informatik DOT tu-muenchen DOT de> NNTP-Posting-Host: talula.demon.co.uk MIME-Version: 1.0 Lines: 18 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Christian Tamasiu writes: >While Allegro will detect the combination KEY_UP, KEY_RIGHT and KEY_SPACE, while >the combination KEY_UP, KEY_LEFT and KEY_SPACE doesn't work (Allegro just >detects that 2 of the 3 keys are pressed). This is a flaw in the design of the PC keyboard. I don't know all the details, but it uses some sort of grid system to detect presses, which breaks down if more than two or three keys are held down at a time. Interrupts are never generated for any additional keys, so there is no way they can be detected. Exactly how many you can detect depends on which keys they are, and on the model of keyboard being used. For this reason, most multiplayer games have an option to reconfigure the keyboard so the user can choose combinations that work on their machine. /* * Shawn Hargreaves - shawn AT talula DOT demon DOT co DOT uk - http://www.talula.demon.co.uk/ * Ghoti: 'gh' as in 'enough', 'o' as in 'women', and 'ti' as in 'nation'. */