forked from Tasssadar/multirom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput_type_b.c
77 lines (68 loc) · 2.15 KB
/
input_type_b.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
* This file is part of MultiROM.
*
* MultiROM is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* MultiROM is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with MultiROM. If not, see <http://www.gnu.org/licenses/>.
*/
// Implementation of "Protocol Example B" from kernel's
// Documentation/input/multi-touch-protocol.txt
#include <linux/input.h>
#include "input.h"
#include "input_priv.h"
#include "util.h"
void init_touch_specifics(void)
{
}
void destroy_touch_specifics(void)
{
}
void handle_abs_event(struct input_event *ev)
{
switch(ev->code)
{
case ABS_MT_SLOT:
if(ev->value < (int)ARRAY_SIZE(mt_events))
mt_slot = ev->value;
break;
case ABS_MT_TRACKING_ID:
{
if(ev->value != -1)
{
mt_events[mt_slot].id = ev->value;
mt_events[mt_slot].changed |= TCHNG_ADDED;
}
else
mt_events[mt_slot].changed |= TCHNG_REMOVED;
break;
}
case ABS_MT_POSITION_X:
case ABS_MT_POSITION_Y:
{
if((ev->code == ABS_MT_POSITION_X) ^ (mt_switch_xy != 0))
{
mt_events[mt_slot].orig_x = calc_mt_pos(ev->value, mt_range_x, mt_screen_res[0]);
if(mt_switch_xy)
mt_events[mt_slot].orig_x = mt_screen_res[0] - mt_events[mt_slot].orig_x;
}
else
mt_events[mt_slot].orig_y = calc_mt_pos(ev->value, mt_range_y, mt_screen_res[1]);
mt_events[mt_slot].changed |= TCHNG_POS;
break;
}
}
}
void handle_syn_event(struct input_event *ev)
{
if(ev->code == SYN_REPORT)
touch_commit_events(ev->time);
}