| |
Didi
Registered: Nov 2011 Posts: 487 |
Kayboard scan without disturbance of Joystick #1
Hi Coders,
is there a way to scan keyboard without being disturbed by joystick #1? For Shotgun X-Mas Edition [2in1] +1KD I picked keys from the upper 3 lanes of DC01 to achieve that but I did not find a way to ignore the lower 5 bits to get a proper keyboard scan if something happens on joystick #1. Am I right that this is impossible the way C64 works? |
|
| |
oziphantom
Registered: Oct 2014 Posts: 490 |
what is you reverse the keyboard input/output for those keys?
So do
DC00 inputs
DC01 outputs
then do a
DC00 outputs
DC01 inputs
? |
| |
chatGPZ
Registered: Dec 2001 Posts: 11386 |
BOTH should be set to input when reading joysticks.
however, that does not remove the problem completely - what i do is first checking joystick, and when any joystick bits are 0 then skip the keyboard scanner for that frame. if you want keyboard input for sth like a third player, you'll have to pick keys that are from the already mentioned 3 rows. |
| |
Skate
Registered: Jul 2003 Posts: 494 |
I'm afraid we're unable to detect if the bit is set by the joystick or the keyboard at programming side. so, you should definitely go for the safe keyboard matrix rows. |
| |
TWW
Registered: Jul 2009 Posts: 545 |
That is not fully accurate, we can with full certainly tell when joystick port #1 is receiving input (the full column is set to '0'). What we can not be sure of is if there is any key-presses happening at the same time on any of the keys in the column(s) used by the joystick. I.e. use safe columns or the method GPZ is mentioning (although not sure if it would be any good).
Why not make your game work with this fancy port doubler I saw for sale allowing up to 4 joysticks being used? |
| |
Didi
Registered: Nov 2011 Posts: 487 |
@TWW: The game was made to be played with a 4-player adapter. I just added keyboard controls for the people who do not have such fancy hardware. ;) |
| |
TWW
Registered: Jul 2009 Posts: 545 |
Ah, should have checked before suggesting ;-)
Although I did think of another (innovative?) idea... Please consider the following:
You allow interference from the joystick port to a certain degree and also vice versa, from a safe keyboard column towards the joystick input in equal measure. Meaning you can sabotage the input for the other player(s) but off course also hempering your own movement in doing so. This way it adds a cheating feature which I don't think I saw before...
Anyway it's Friday and I'm just full of good ideas 8D |