4 * Implementation of the standard mouse device
6 * Copyright (c) 2005 Nathan Keynes.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
22 #include "maple/maple.h"
24 #define MOUSE_IDENT { 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00,\
25 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0x44, 0x72, 0x65, 0x61, 0x6d, 0x63, 0x61, 0x73, 0x74, 0x20,\
26 0x4d, 0x6f, 0x75, 0x73, 0x65, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,\
27 0x20, 0x20, 0x20, 0x20, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x64, 0x20, 0x42, 0x79, 0x20,\
28 0x6f, 0x72, 0x20, 0x55, 0x6e, 0x64, 0x65, 0x72, 0x20, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65,\
29 0x20, 0x46, 0x72, 0x6f, 0x6d, 0x20, 0x53, 0x45, 0x47, 0x41, 0x20, 0x45, 0x4e, 0x54, 0x45, 0x52,\
30 0x50, 0x52, 0x49, 0x53, 0x45, 0x53, 0x2c, 0x4c, 0x54, 0x44, 0x2e, 0x20, 0x20, 0x20, 0x20, 0x20,\
31 0x90, 0x01, 0xf4, 0x01 }
32 #define MOUSE_VERSION { 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x20, 0x31, 0x2e, 0x30, 0x30,\
33 0x30, 0x2c, 0x32, 0x30, 0x30, 0x30, 0x2f, 0x30, 0x32, 0x2f, 0x32, 0x35, 0x2c, 0x33, 0x31, 0x35,\
34 0x2d, 0x36, 0x32, 0x31, 0x31, 0x2d, 0x41, 0x54, 0x20, 0x20, 0x20, 0x2c, 0x33, 0x20, 0x42, 0x75,\
35 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x26, 0x20, 0x58, 0x2d, 0x59, 0x20, 0x42, 0x61, 0x6c, 0x6c, 0x20,\
36 0x26, 0x20, 0x5a, 0x20, 0x57, 0x68, 0x65, 0x65, 0x6c, 0x20, 0x2c, 0x34, 0x30, 0x30, 0x64, 0x70,\
37 0x69, 0x20, 0x20, 0x20 }
39 #define BUTTON_MIDDLE 0x01
40 #define BUTTON_RIGHT 0x02
41 #define BUTTON_LEFT 0x04
42 #define BUTTON_THUMB 0x08
44 void mouse_attach( maple_device_t dev );
45 void mouse_detach( maple_device_t dev );
46 maple_device_t mouse_clone( maple_device_t dev );
47 maple_device_t mouse_new();
48 int mouse_get_cond( maple_device_t dev, int function, unsigned char *outbuf,
49 unsigned int *outlen );
51 typedef struct mouse_device {
52 struct maple_device dev;
57 struct maple_device_class mouse_class = { "Sega Mouse", mouse_new };
59 static struct mouse_device base_mouse = {
60 { MAPLE_DEVICE_TAG, &mouse_class, MAPLE_GRAB_YES,
61 MOUSE_IDENT, MOUSE_VERSION,
62 NULL, NULL, mouse_attach, mouse_detach, maple_default_destroy,
63 mouse_clone, NULL, NULL, mouse_get_cond, NULL, NULL, NULL },
67 static int32_t mouse_axis_scale_factors[8] = { 10, 10, 1, 1, 1, 1, 1, 1 };
69 #define MOUSE(x) ((mouse_device_t)(x))
71 maple_device_t mouse_new( )
73 mouse_device_t dev = malloc( sizeof(struct mouse_device) );
74 memcpy( dev, &base_mouse, sizeof(base_mouse) );
75 return MAPLE_DEVICE(dev);
78 maple_device_t mouse_clone( maple_device_t srcdevice )
80 mouse_device_t src = (mouse_device_t)srcdevice;
81 mouse_device_t dev = (mouse_device_t)mouse_new();
82 dev->buttons = src->buttons;
83 memcpy( dev->axis, src->axis, sizeof(src->axis) );
84 return MAPLE_DEVICE(dev);
87 void mouse_input_callback( void *mdev, uint32_t buttons, int32_t x, int32_t y )
89 mouse_device_t dev = (mouse_device_t)mdev;
91 if( buttons & 0x01 ) {
92 dev->buttons &= ~BUTTON_LEFT;
94 if( buttons & 0x02 ) {
95 dev->buttons &= ~BUTTON_MIDDLE;
97 if( buttons & 0x04 ) {
98 dev->buttons &= ~BUTTON_RIGHT;
100 if( buttons & 0x08 ) {
101 dev->buttons &= ~BUTTON_THUMB;
107 void mouse_attach( maple_device_t dev )
109 input_register_mouse_hook( TRUE, mouse_input_callback, dev );
112 void mouse_detach( maple_device_t dev )
114 input_unregister_mouse_hook( mouse_input_callback, dev );
117 int mouse_get_cond( maple_device_t mdev, int function, unsigned char *outbuf,
118 unsigned int *outlen )
120 mouse_device_t dev = (mouse_device_t)mdev;
121 if( function == MAPLE_FUNC_MOUSE ) {
123 *(uint32_t *)outbuf = dev->buttons;
124 uint16_t *p = (uint16_t *)(outbuf+4);
126 // Axis values are in the range 0..0x3FF, where 0x200 is zero movement
127 for( i=0; i<8; i++ ) {
128 int32_t value = dev->axis[i] / mouse_axis_scale_factors[i];
129 if( value < -0x200 ) {
131 } else if( value > 0x1FF ) {
134 p[i] = 0x200 + value;
136 dev->axis[i] = 0; // clear after returning.
140 return MAPLE_ERR_FUNC_UNSUP;
.