Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (406)
games submitted by our members
Games in WIP (293)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  not registering spacebar when up and left is pressed  (Read 1499 times)
0 Members and 1 Guest are viewing this topic.
Offline achoi77

Junior Newbie




Java games rock!


« Posted 2008-03-05 06:03:39 »

I was writing a little app using Slick, and I came across this little issue. I thought for a while that it had something to do with my code, then I came across this:

http://www.newdawnsoftware.com/resources/jinput/webstart/jinput.jnlp

and was getting the same result: I would hold down up and left, and while both would register, pressing the spacebar doesn't when the up and left keys are held down. Anyone else come across this? I wonder if it's my keyboard - I'm on a Dell laptop (XPS M1210) running Vista
Offline endolf
« League of Dukes »

JGO Coder


Medals: 4
Projects: 1


Current project release date: sometime in 3003


« Reply #1 - Posted 2008-03-05 07:58:51 »

Same happens on my Inspiron 8600. Interestingly, up + left + 5 + 4 works. If you open notepad, hold down up and left, and then press space does a space character appear?, it doesn't for me, which means the OS doesn't like that key combination, so we are never going to be able to see it in any applications either.

HTH

Endolf

Offline oNyx

JGO Coder


Medals: 1


pixels! :x


« Reply #2 - Posted 2008-03-05 09:11:17 »

It's a hardware issue. See:
http://www.java-gaming.org/forums/index.php?topic=17883.0

弾幕 ☆ @mahonnaiseblog
Games published by our own members! Check 'em out!
Play the free demo of Revenge of the Titans!
Offline broumbroum

Junior Member





« Reply #3 - Posted 2008-03-06 00:54:31 »

hi! I can't tell you if the JInput handles keyboard, because I use JInput for the Gamepad handler. But keyboard is really simple to handle with the common AWT dispatcher. But as far as I tested AWT with keyboard, I've experienced multiple issues, especially with the key-pressed EVENT. It can be dispatched repeatly or once. Anyway, handling correctly a keyboard event is notifying accurately WHEN and WHERE the event is handled. have a look at the KeyEventDispatcher interface and you can notice two things : the returned BOOLEAN and  the KeyboardFocusManager that it is handling the impl. interface.
1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
class MyKeybardHandler implements KeyEventDispatcher {
    // registry for the dispatched EventObject's
   SortedMap<Long, Integer> events = Collections.synchronizedSortedMap(new TreeMap<Long, Integer>());
    public boolean dispatchKeyEvent(KeyEvent e) {
       // usually, we handle a KeyEvent over a switch callback
      switch(e.getID()) {
               case KeyEvent.KEY_PRESSED:
                        events.put(e.getWhen(), e.getKeyCode());
                        return true;
               case KeyEvent.KEY_RELEASED:
                        if(events.containsValue(e.getKeyCode())) {
                              synchronized(events) {
                              for(Iterator<Long> it = events.values().iterator(); i.hasNext();) { if(e.getKeyCode() == i.next()) i.remove(); }
                              }
                              return true;
                        } break;
               default:
                        break;
       } return false;
   }
}
adding this class to a KeyboardFocusManager and you can detect the pressed keys on your keyboard. It is important to "focus" on the real time processing events, not the processed event realizing timing. Smiley If you want KeyEvent.KEY_TYPED events, you must be aware that that type of event is SEPARATELY dispatched by AWT, thus it must be handled seperately from the two types above, eventually as a separate Thread.

::::... :..... :::::: ;;;:::™ b23:production 2006 GNU/GPL @ http://b23prodtm.webhop.info
on sf.net: /projects/sf3jswing
Java (1.6u10 plz) Web Start pool
dev' VODcast[/ur
Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Browse for soundtracks for your game!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (73 views)
2013-05-17 21:29:12

alaslipknot (85 views)
2013-05-16 21:24:48

gouessej (114 views)
2013-05-16 00:53:38

gouessej (109 views)
2013-05-16 00:17:58

theagentd (120 views)
2013-05-15 15:01:13

theagentd (109 views)
2013-05-15 15:00:54

StreetDoggy (154 views)
2013-05-14 15:56:26

kutucuk (176 views)
2013-05-12 17:10:36

kutucuk (173 views)
2013-05-12 15:36:09

UnluckyDevil (182 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.188 seconds with 22 queries.