psl1ght
A free SDK for Sony's PS3 console
mouse.h
1 #ifndef __LV2_MOUSE_H__
2 #define __LV2_MOUSE_H__
3 
4 #include <ppu-types.h>
5 
6 #define MAX_MICE 127
7 #define MOUSE_MAX_CODES 64
8 
9 #define MOUSE_MAX_DATA_LIST (8)
10 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
15 
16 typedef struct _mouse_info
17 {
18  u32 max; /* max mice allowed to connect */
19  u32 connected; /* how many mice connected */
20  u32 info; /* bit 0 lets the system intercept pad? other bits are reserved */
21  u16 vendor_id[MAX_MICE]; /* vendor id */
22  u16 product_id[MAX_MICE]; /* product id */
23  u8 status[MAX_MICE]; /* 0: Not connected, 1: Connected, 5: Connected to custom controller.*/
24 } mouseInfo;
25 
26 typedef struct _mouse_info_tablet
27 {
28  u32 supported;
29  u32 mode;
31 
32 typedef struct _mouse_raw_data
33 {
34  s32 len;
35  u8 data[MOUSE_MAX_CODES];
36 } mouseRawData;
37 
38 typedef struct _mouse_data
39 {
40  u8 update;
41  u8 buttons;
42  s8 x_axis;
43  s8 y_axis;
44  s8 wheel;
45  s8 tilt;
46 } mouseData;
47 
48 typedef struct _mouse_data_list
49 {
50  u32 count;
51  mouseData list[MOUSE_MAX_DATA_LIST];
53 
54 typedef struct _mouse_tablet_data
55 {
56  s32 len;
57  u8 data[MOUSE_MAX_CODES];
59 
61 {
62  u32 count;
63  mouseTabletData list[MOUSE_MAX_DATA_LIST];
65 
66 s32 ioMouseInit(u32 max);
67 s32 ioMouseEnd();
68 s32 ioMouseClearBuf(u32 port);
69 s32 ioMouseGetInfo(mouseInfo* info);
70 s32 ioMouseGetRawData(u32 port, mouseRawData* rawData);
71 s32 ioMouseGetData(u32 port, mouseData* data);
72 s32 ioMouseGetDataList(u32 port, mouseDataList* dataList);
73 s32 ioMouseGetTabletDataList(u32 port, mouseTabletDataList* tabletDataList);
74 s32 ioMouseInfoTabletMode(u32 port, mouseInfoTablet* infoTablet);
75 s32 ioMouseSetTabletMode(u32 port, u32 mode);
76 
77 
78 #ifdef __cplusplus
79  }
80 #endif
81 
82 #endif
Definition: mouse.h:38
Definition: mouse.h:54
Definition: mouse.h:32
Definition: mouse.h:26
Definition: mouse.h:48
Definition: mouse.h:60
Definition: mouse.h:16