2 ; Driver for a "joystick mouse".
4 ; Ullrich von Bassewitz, 2004-03-29, 2009-09-26
5 ; 2010-02-08, Greg King
7 ; The driver prevents the keyboard from interfering by changing the
8 ; keyboard's output port into an input port while the driver reads its
9 ; controller device. That disables a wire that is left active by the
10 ; Kernal. That wire is used by the STOP-key to break out of BASIC
11 ; programs -- CC65 programs don't use that feature. The wire is shared
12 ; by these keys: STOP, "Q", Commodore, Space, "2", CTRL, Left-Arrow, and
13 ; "1". I listed them, in order, from bit 7 over to bit 0. The
14 ; rightmost five keys can look like joystick switches.
16 ; The driver prevents the mouse/joystick from interfering by "blinding"
17 ; the keyboard scanner while any button/switch is active. It changes
18 ; the input port into an output port, then stores all zero-bits in that
19 ; port's latch. Reading from an output port sees the bitwise-AND of the
20 ; latch and the input signals. Therefore, the scanner thinks that eight
21 ; keys are being pushed at the same time. It doesn't know what to do
22 ; about that condition; so, it does nothing. The driver lets the
23 ; scanner see normally, again, when no buttons/switches are active.
26 .include "zeropage.inc"
27 .include "mouse-kernel.inc"
32 ; ------------------------------------------------------------------------
33 ; Header. Includes jump table
41 .byte $6d, $6f, $75 ; "mou"
42 .byte MOUSE_API_VERSION ; Mouse driver API version number
61 .byte MOUSE_FLAG_LATE_IRQ
63 ; Callback table, set by the kernel before INSTALL is called
65 CHIDE: jmp $0000 ; Hide the cursor
66 CSHOW: jmp $0000 ; Show the cursor
67 CMOVEX: jmp $0000 ; Move the cursor to X coord
68 CMOVEY: jmp $0000 ; Move the cursor to Y coord
71 ;----------------------------------------------------------------------------
85 ;----------------------------------------------------------------------------
86 ; Global variables. The bounding box values are sorted so that they can be
87 ; written with the least effort in the SETBOX and GETBOX routines, so don't
93 YPos: .res 2 ; Current mouse position, Y
94 XPos: .res 2 ; Current mouse position, X
95 XMin: .res 2 ; X1 value of bounding box
96 YMin: .res 2 ; Y1 value of bounding box
97 XMax: .res 2 ; X2 value of bounding box
98 YMax: .res 2 ; Y2 value of bounding box
99 Buttons: .res 1 ; Button mask
101 ; Temporary value used in the int handler
105 ; Default values for above variables
110 .word SCREEN_HEIGHT/2 ; YPos
111 .word SCREEN_WIDTH/2 ; XPos
114 .word SCREEN_WIDTH ; XMax
115 .word SCREEN_HEIGHT ; YMax
121 ;----------------------------------------------------------------------------
122 ; INSTALL routine. Is called after the driver is loaded into memory. If
123 ; possible, check if the hardware is present.
124 ; Must return an MOUSE_ERR_xx code in a/x.
128 ; Initialize variables. Just copy the default stuff over
130 ldx #.sizeof(DefVars)-1
136 ; Be sure the mouse cursor is invisible and at the default location. We
137 ; need to do that here, because our mouse interrupt handler doesn't set the
138 ; mouse position if it hasn't changed.
150 ; Done, return zero (= MOUSE_ERR_OK)
156 ;----------------------------------------------------------------------------
157 ; UNINSTALL routine. Is called before the driver is removed from memory.
158 ; No return code required (the driver is removed from memory on return).
160 UNINSTALL = HIDE ; Hide cursor on exit
162 ;----------------------------------------------------------------------------
163 ; HIDE routine. Is called to hide the mouse pointer. The mouse kernel manages
164 ; a counter for calls to show/hide, and the driver entry point is only called
165 ; if the mouse is currently visible and should get hidden. For most drivers,
166 ; no special action is required besides hiding the mouse cursor.
167 ; No return code required.
174 ;----------------------------------------------------------------------------
175 ; SHOW routine. Is called to show the mouse pointer. The mouse kernel manages
176 ; a counter for calls to show/hide, and the driver entry point is only called
177 ; if the mouse is currently hidden and should become visible. For most drivers,
178 ; no special action is required besides enabling the mouse cursor.
179 ; No return code required.
186 ;----------------------------------------------------------------------------
187 ; SETBOX: Set the mouse bounding box. The parameters are passed as they come
188 ; from the C program, that is, a pointer to a mouse_box struct in a/x.
189 ; No checks are done if the mouse is currently inside the box, this is the job
190 ; of the caller. It is not necessary to validate the parameters, trust the
191 ; caller and save some code here. No return code required.
194 stx ptr1+1 ; Save data pointer
196 ldy #.sizeof (MOUSE_BOX)-1
207 ;----------------------------------------------------------------------------
208 ; GETBOX: Return the mouse bounding box. The parameters are passed as they
209 ; come from the C program, that is, a pointer to a mouse_box struct in a/x.
212 stx ptr1+1 ; Save data pointer
214 ldy #.sizeof (MOUSE_BOX)-1
223 ;----------------------------------------------------------------------------
224 ; MOVE: Move the mouse to a new position. The position is passed as it comes
225 ; from the C program, that is: X on the stack and Y in a/x. The C wrapper will
226 ; remove the parameter from the stack on return.
227 ; No checks are done if the new position is valid (within the bounding box or
228 ; the screen). No return code required.
231 MOVE: sei ; No interrupts
234 stx YPos+1 ; New Y position
243 sta XPos ; New X position
245 jsr CMOVEX ; Move the cursor
247 cli ; Allow interrupts
250 ;----------------------------------------------------------------------------
251 ; BUTTONS: Return the button mask in a/x.
258 ;----------------------------------------------------------------------------
259 ; POS: Return the mouse position in the MOUSE_POS struct pointed to by ptr1.
260 ; No return code required.
262 POS: ldy #MOUSE_POS::XCOORD ; Structure offset
264 sei ; Disable interrupts
265 lda XPos ; Transfer the position
274 cli ; Enable interrupts
277 sta (ptr1),y ; Store last byte
281 ;----------------------------------------------------------------------------
282 ; INFO: Returns mouse position and current button mask in the MOUSE_INFO
283 ; struct pointed to by ptr1. No return code required.
285 ; We're cheating here to keep the code smaller: The first fields of the
286 ; mouse_info struct are identical to the mouse_pos struct, so we will just
287 ; call _mouse_pos to initialize the struct pointer and fill the position
292 ; Fill in the button state
295 ldy #MOUSE_INFO::BUTTONS
300 ;----------------------------------------------------------------------------
301 ; IOCTL: Driver defined entry point. The wrapper will pass a pointer to ioctl
302 ; specific data in ptr1, and the ioctl code in A.
303 ; Must return an error code in a/x.
306 IOCTL: lda #<MOUSE_ERR_INV_IOCTL ; We don't support ioclts for now
307 ldx #>MOUSE_ERR_INV_IOCTL
310 ;----------------------------------------------------------------------------
311 ; IRQ: Irq handler entry point. Called as a subroutine but in IRQ context
312 ; (so be careful). The routine MUST return carry set if the interrupt has been
313 ; 'handled' - which means that the interrupt source is gone. Otherwise it
314 ; MUST return carry clear.
317 ; Avoid crosstalk between the keyboard and a joystick.
319 IRQ: ldy #%00000000 ; Set ports A and B to input
321 sty CIA1_DDRA ; Keyboard won't look like joystick
322 lda CIA1_PRB ; Read Control-Port 1
323 dec CIA1_DDRA ; Set port A back to output
324 eor #%11111111 ; Bit goes up when switch goes down
326 dec CIA1_DDRB ; Joystick won't look like keyboard
327 sty CIA1_PRB ; Set "all keys pushed"
330 ; Check for a pressed button and place the result into Buttons
332 ldx #$00 ; Assume no button pressed
333 and #JOY::FIRE ; Check fire button
334 beq @L0 ; Jump if not pressed
335 ldx #MOUSE_BTN_LEFT ; Left (only) button is pressed
340 lda Temp ; Read joystick #0
341 and #(JOY::LEFT | JOY::RIGHT)
344 ; We will cheat here and rely on the fact that either the left, OR the right
347 and #JOY::RIGHT ; Check RIGHT bit
351 bne @AddX ; Branch always
355 ; Calculate the new X coordinate (--> a/y)
358 tay ; Remember low byte
363 ; Limit the X coordinate to the bounding box
381 ; Move the mouse pointer to the new X pos
386 ; Calculate the Y movement vector
388 @SkipX: lda Temp ; Read joystick #0
389 and #(JOY::UP | JOY::DOWN) ; Check up/down
392 ; We will cheat here and rely on the fact that either the up, OR the down
403 ; Calculate the new Y coordinate (--> a/y)
406 tay ; Remember low byte
411 ; Limit the Y coordinate to the bounding box
429 ; Move the mouse pointer to the new X pos
436 @SkipY: clc ; Interrupt not handled