• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*****************************************************************************
2  *
3  * mtdev - Multitouch Protocol Translation Library (MIT license)
4  *
5  * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
6  * Copyright (C) 2010 Canonical Ltd.
7  *
8  * Permission is hereby granted, free of charge, to any person obtaining a
9  * copy of this software and associated documentation files (the "Software"),
10  * to deal in the Software without restriction, including without limitation
11  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12  * and/or sell copies of the Software, and to permit persons to whom the
13  * Software is furnished to do so, subject to the following conditions:
14  *
15  * The above copyright notice and this permission notice (including the next
16  * paragraph) shall be included in all copies or substantial portions of the
17  * Software.
18  *
19  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
22  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
24  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25  * DEALINGS IN THE SOFTWARE.
26  *
27  ****************************************************************************/
28 
29 #ifndef MTDEV_STATE_H
30 #define MTDEV_STATE_H
31 
32 #include "iobuf.h"
33 #include "evbuf.h"
34 
35 /*
36  * struct mtdev_slot - represents the state of an input MT slot
37  * @abs: current values of ABS_MT axes for this slot
38  */
39 struct mtdev_slot {
40 	int touch_major;
41 	int touch_minor;
42 	int width_major;
43 	int width_minor;
44 	int orientation;
45 	int position_x;
46 	int position_y;
47 	int tool_type;
48 	int blob_id;
49 	int tracking_id;
50 	int pressure;
51 	int distance;
52 };
53 
get_sval(const struct mtdev_slot * slot,int ix)54 static inline int get_sval(const struct mtdev_slot *slot, int ix)
55 {
56 	return (&slot->touch_major)[ix];
57 }
58 
set_sval(struct mtdev_slot * slot,int ix,int value)59 static inline void set_sval(struct mtdev_slot *slot, int ix, int value)
60 {
61 	(&slot->touch_major)[ix] = value;
62 }
63 
64 /*
65  * struct mtdev_state - MT slot parsing
66  * @inbuf: input event buffer
67  * @outbuf: output event buffer
68  * @data: array of scratch slot data
69  * @used: bitmask of currently used slots
70  * @slot: slot currently being modified
71  * @lastid: last used tracking id
72  */
73 struct mtdev_state {
74 
75 	int has_ext_abs[MT_ABS_SIZE - LEGACY_API_NUM_MT_AXES];
76 	struct input_absinfo ext_abs[MT_ABS_SIZE - LEGACY_API_NUM_MT_AXES];
77 
78 	struct mtdev_iobuf iobuf;
79 	struct mtdev_evbuf inbuf;
80 	struct mtdev_evbuf outbuf;
81 	struct mtdev_slot data[DIM_FINGER];
82 
83 	bitmask_t used;
84 	bitmask_t slot;
85 	bitmask_t lastid;
86 };
87 
88 #endif
89