Difference between revisions of "Programming:Keyboard scanning"

From CPCWiki - THE Amstrad CPC encyclopedia!
Jump to: navigation, search
m (Complete keyboard scanning routine slightly optimized)
(18 intermediate revisions by 9 users not shown)
Line 15: Line 15:
 
|'''&45''' || SPACE || N || J || H || Y || U || 7 || 8
 
|'''&45''' || SPACE || N || J || H || Y || U || 7 || 8
 
|-
 
|-
|'''&46''' || V || B || F || G || T || R || 5 || 6
+
|'''&46''' || V || B || F || G (Joy2 fire) || T (Joy2 right) || R (Joy2 left) || 5 (Joy2 down)|| 6 (Joy 2 up)
 
|-
 
|-
 
|'''&47''' || X || C || D || S || W || E || 3 || 4
 
|'''&47''' || X || C || D || S || W || E || 3 || 4
Line 21: Line 21:
 
|'''&48''' || Z || CAPSLOCK || A || TAB || Q || ESC || 2 || 1
 
|'''&48''' || Z || CAPSLOCK || A || TAB || Q || ESC || 2 || 1
 
|-
 
|-
|'''&49''' || DEL || - || - || - || - || - || - || -
+
|'''&49''' || DEL || Joy 1 Fire 3 (CPC only) || Joy 1 Fire 2 ||Joy1 Fire 1||Joy1 right||Joy1 left||Joy1 down||Joy1 up
 
|}
 
|}
 +
 +
== Computing key code ==
 +
 +
System key codes (codes that are writted on the top of the disc drive on 664/6128 or in the CPC user manual) can be computed with the formula : (Line*8)+bit
 +
 +
Example : for key SHIFT , Line = 2 , bit = 5 so (2*8)+5 = 21
 +
 +
== Keyboard clash ==
 +
 +
This is the name of the phenomenon when a "ghost" or "phantom" key is generated when you press some combinations of keys.
 +
It is caused by the design of the keyboard hardware. It has been tested and confirmed that keyboard clash doesn't occur on an English CPC664 keyboard.
 +
 +
For example, pressing Q,A,P will also generate :.
 +
 +
The ':' key is the "ghost" key.
 +
 +
The problem is much bigger in 2 player games.
 +
 +
It is possible to avoid or minimize the problem by carefully choosing the controls. The problem also occurs when using digital joysticks because these are part of the keyboard matrix.
 +
 +
If you visualize a rectangle in the keyboard matrix above, where 3 of the corners are 3 keys you have pressed. Then the key in the fourth corner will also be pressed this is the "ghost" key.
 +
 +
On Plus it is possible to avoid it mostly by having one player on analogue joystick and the other on keyboard/digital joystick.
  
 
== One line scanning routine ==
 
== One line scanning routine ==
  
This is a routine which scans one line of the keyboard directly. It is approximately 8% faster then the firmware routine and doesn't enable interrupts.
+
This is a routine which scans one line of the keyboard directly. It is approximately 8% faster than the firmware routine and doesn't enable interrupts.
  
'''Input:''' A = ''line (&40 - &49)
+
'''Input:''' A = ''line (&40 - &49)''
  
 
'''Output:''' A = ''hardware keyboard value''
 
'''Output:''' A = ''hardware keyboard value''
  
 
'''Destroyed:''' BC
 
'''Destroyed:''' BC
 +
<pre>LD A,kbdline ; from &40 to &49 with bdir/bc1=01
 +
LD D,0
 +
LD BC,#F782 ; PPI port A out /C out
 +
OUT (C),C
 +
LD BC,#F40E ; Select Ay reg 14 on ppi port A
 +
OUT (C),C
 +
LD BC,#F6C0 ; This value is an AY index (R14)
 +
OUT (C),C
 +
OUT (C),D ; Validate!! out (c),0
 +
LD BC,#F792 ; PPI port A in/C out
 +
OUT (C),C
 +
DEC B
 +
OUT (C),A ; Send KbdLine on reg 14 AY through ppi port A
 +
LD B,#F4 ; Read ppi port A
 +
IN A,(C) ; e.g. AY R14 (AY port A)
 +
LD BC,#F782 ; PPI port A out / C out
 +
OUT (C),C
 +
DEC B ; Reset PPI Write
 +
OUT (C),D ; out (c),0
  
<pre>
+
Register A now holds the value of requested keyboard row
ld a, line ;use the value from the table above
+
Now check for the value from the table e.g. with''''bit x,A''''and a condition e.g.''''jp z,xxxx''''or''''call z,xxxx''''
ld bc, &F6C0
+
out (c), c
+
ld bc, &F40E
+
out (c), c
+
ld bc, &F792
+
out (c), c
+
ld b, &F6
+
out (c), c
+
ld b, &F4
+
in a, (c)
+
ld bc, &F782
+
out (c), c
+
ld bc, &F600
+
out (c), c
+
 
</pre>
 
</pre>
 
Now check for the value from the table
 
e.g. with''' 'bit x,A' '''
 
and a condition
 
e.g.''' 'jp z,xxxx' '''or''' 'call z,xxxx' '''
 
 
 
Please note:
 
Please note:
 +
 
* Bit = 0: Key is pressed
 
* Bit = 0: Key is pressed
 
* Bit = 1: Key is not pressed
 
* Bit = 1: Key is not pressed
 
  
 
== Complete keyboard scanning routine ==
 
== Complete keyboard scanning routine ==
Line 79: Line 101:
 
         ld d,b          ;1
 
         ld d,b          ;1
 
         out (c),c      ;4
 
         out (c),c      ;4
         ld c,0          ;2
+
         xor a          ;1
         out (c),c       ;4
+
         out (c),a       ;4
 
         ld bc,#f792    ;3
 
         ld bc,#f792    ;3
 
         out (c),c      ;4
 
         out (c),c      ;4
 
         ld a,#40        ;2
 
         ld a,#40        ;2
         ld c,#4a        ;2 44
+
         ld c,#4a        ;2 43
 
loop    ld b,d          ;1
 
loop    ld b,d          ;1
 
         out (c),a      ;4 select line
 
         out (c),a      ;4 select line
Line 94: Line 116:
 
         ld bc,#f782    ;3
 
         ld bc,#f782    ;3
 
         out (c),c      ;4
 
         out (c),c      ;4
         ei              ;1 8 =211 microseconds
+
         ei              ;1 8 =210 microseconds
 
         ret
 
         ret
 
</pre>
 
</pre>
  
[[Category:Programming]]
+
== Developing programs that use joystick ==
 +
 
 +
In the CPC world it is more common that a game supports both keyboard and digital joystick for those users who don't own joysticks.
 +
In addition, it is also nice if the keys could be redefined but that is not necessary.
 +
 
 +
There are some common keyboard configurations used:
 +
 
 +
* '''Joystick''' - This configuration is compatible with all Amstrad machines, even the GX4000 and you need to scan only one keyboard line (this means you can't be faster)
 +
 
 +
* '''Cursor keys & SPACE''' - This configuration is often used and is great for the CPC6128 and Plus and playing using emulators. This is '''not''' good for CPC 464 and 664 (which have uncomfortably arranged cursor keys)
 +
 
 +
* '''Q,A,O,P,SPACE''' - (Q up, A down, O left, P right, SPACE fire) This is a good solution, and it's a sort of standard (used by many games). It is best for english QWERTY keyboards, on french AZERTY it'd be A-Q-O-P (but because the decoding of the keys is done in software, normally by the OS, the bits in the keyboard matrix are actually the same).
 +
 
 +
[[Category:Programming]][[Category:CPC Internal Components]]

Revision as of 16:39, 15 June 2020

Hardware scancode table

Bit:
Line
7 6 5 4 3 2 1 0
&40 F Dot ENTER F3 F6 F9 CURDOWN CURRIGHT CURUP
&41 F0 F2 F1 F5 F8 F7 COPY CURLEFT
&42 CONTROL \ SHIFT F4 ] RETURN [ CLR
&43 . /  :  ; P @ - ^
&44 , M K L I O 9 0
&45 SPACE N J H Y U 7 8
&46 V B F G (Joy2 fire) T (Joy2 right) R (Joy2 left) 5 (Joy2 down) 6 (Joy 2 up)
&47 X C D S W E 3 4
&48 Z CAPSLOCK A TAB Q ESC 2 1
&49 DEL Joy 1 Fire 3 (CPC only) Joy 1 Fire 2 Joy1 Fire 1 Joy1 right Joy1 left Joy1 down Joy1 up

Computing key code

System key codes (codes that are writted on the top of the disc drive on 664/6128 or in the CPC user manual) can be computed with the formula : (Line*8)+bit

Example : for key SHIFT , Line = 2 , bit = 5 so (2*8)+5 = 21

Keyboard clash

This is the name of the phenomenon when a "ghost" or "phantom" key is generated when you press some combinations of keys. It is caused by the design of the keyboard hardware. It has been tested and confirmed that keyboard clash doesn't occur on an English CPC664 keyboard.

For example, pressing Q,A,P will also generate :.

The ':' key is the "ghost" key.

The problem is much bigger in 2 player games.

It is possible to avoid or minimize the problem by carefully choosing the controls. The problem also occurs when using digital joysticks because these are part of the keyboard matrix.

If you visualize a rectangle in the keyboard matrix above, where 3 of the corners are 3 keys you have pressed. Then the key in the fourth corner will also be pressed this is the "ghost" key.

On Plus it is possible to avoid it mostly by having one player on analogue joystick and the other on keyboard/digital joystick.

One line scanning routine

This is a routine which scans one line of the keyboard directly. It is approximately 8% faster than the firmware routine and doesn't enable interrupts.

Input: A = line (&40 - &49)

Output: A = hardware keyboard value

Destroyed: BC

LD A,kbdline ; from &40 to &49 with bdir/bc1=01
LD D,0
LD BC,#F782 ; PPI port A out /C out 
OUT (C),C 
LD BC,#F40E ; Select Ay reg 14 on ppi port A 
OUT (C),C 
LD BC,#F6C0 ; This value is an AY index (R14) 
OUT (C),C 
OUT (C),D ; Validate!! out (c),0
LD BC,#F792 ; PPI port A in/C out 
OUT (C),C 
DEC B 
OUT (C),A ; Send KbdLine on reg 14 AY through ppi port A
LD B,#F4 ; Read ppi port A 
IN A,(C) ; e.g. AY R14 (AY port A) 
LD BC,#F782 ; PPI port A out / C out 
OUT (C),C 
DEC B ; Reset PPI Write 
OUT (C),D ; out (c),0

Register A now holds the value of requested keyboard row
Now check for the value from the table e.g. with''''bit x,A''''and a condition e.g.''''jp z,xxxx''''or''''call z,xxxx''''

Please note:

  • Bit = 0: Key is pressed
  • Bit = 1: Key is not pressed

Complete keyboard scanning routine

This routine scans the complete keyboard and writes all key status bits in a map.

keymap  ds 10  ;map with 10*8 = 80 key status bits (bit=0 key is pressed)

keyscan di              ;1 ##%%## C P C   VERSION ##%%##
        ld hl,keymap    ;3
        ld bc,#f782     ;3
        out (c),c       ;4
        ld bc,#f40e     ;3
        ld e,b          ;1
        out (c),c       ;4
        ld bc,#f6c0     ;3
        ld d,b          ;1
        out (c),c       ;4
        xor a           ;1
        out (c),a       ;4
        ld bc,#f792     ;3
        out (c),c       ;4
        ld a,#40        ;2
        ld c,#4a        ;2 43
loop    ld b,d          ;1
        out (c),a       ;4 select line
        ld b,e          ;1
        ini             ;5 read bits and write into KEYMAP
        inc a           ;1
        cp c            ;1
        jr c,loop       ;2/3 9*16+1*15=159
        ld bc,#f782     ;3
        out (c),c       ;4
        ei              ;1 8 =210 microseconds
        ret

Developing programs that use joystick

In the CPC world it is more common that a game supports both keyboard and digital joystick for those users who don't own joysticks. In addition, it is also nice if the keys could be redefined but that is not necessary.

There are some common keyboard configurations used:

  • Joystick - This configuration is compatible with all Amstrad machines, even the GX4000 and you need to scan only one keyboard line (this means you can't be faster)
  • Cursor keys & SPACE - This configuration is often used and is great for the CPC6128 and Plus and playing using emulators. This is not good for CPC 464 and 664 (which have uncomfortably arranged cursor keys)
  • Q,A,O,P,SPACE - (Q up, A down, O left, P right, SPACE fire) This is a good solution, and it's a sort of standard (used by many games). It is best for english QWERTY keyboards, on french AZERTY it'd be A-Q-O-P (but because the decoding of the keys is done in software, normally by the OS, the bits in the keyboard matrix are actually the same).