aboutsummaryrefslogtreecommitdiffstats
path: root/src/gestures.c
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2010-04-10 22:57:26 +0200
committerHenrik Rydberg <rydberg@euromail.se>2010-04-15 06:10:07 +0200
commit963d6f71bb64125603d59c8bb70eaeec38c6fd72 (patch)
tree87dc34640a4e47cee618ebbc8d665e100e21239f /src/gestures.c
parent9c24576540ba57449c31bafcb8f4aab41b8623b7 (diff)
downloadxorg-input-kobomultitouch-963d6f71bb64125603d59c8bb70eaeec38c6fd72.tar.gz
xorg-input-kobomultitouch-963d6f71bb64125603d59c8bb70eaeec38c6fd72.tar.bz2
xorg-input-kobomultitouch-963d6f71bb64125603d59c8bb70eaeec38c6fd72.zip
Introduce the MTState
The HWState keeps, for good reason, both touching fingers and fingers going away. However, this implies that additional logic is needed to keep track of the number of actual touching fingers. In particular the test for touching fingers is somewhat misplaced in hwstate.c. Moreover, HWState should only exist in one instance, since it contains data which does not need to be referred to during gesture extraction. This patch introduces the MTState structure, which keeps more digested data for gesture extraction. In particular, it only keeps the actual touches. Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'src/gestures.c')
-rw-r--r--src/gestures.c23
1 files changed, 12 insertions, 11 deletions
diff --git a/src/gestures.c b/src/gestures.c
index 5dd6861..ebf103f 100644
--- a/src/gestures.c
+++ b/src/gestures.c
@@ -25,16 +25,16 @@
void extract_gestures(struct Gestures *gs, struct MTouch* mt)
{
- const struct FingerState *b = mt->nhs.finger;
- const struct FingerState *e = b + mt->nhs.nfinger;
+ const struct FingerState *b = mt->state.finger;
+ const struct FingerState *e = b + mt->state.nfinger;
const struct FingerState *p, *fs;
- int nof = count_fingers(&mt->ohs);
- int nsf = count_fingers(&mt->nhs);
+ int nof = mt->prev_state.nfinger;
+ int nsf = mt->state.nfinger;
int dn = 0, i;
memset(gs, 0, sizeof(struct Gestures));
if (nof == nsf) {
for (p = b; p != e; p++) {
- fs = find_finger(&mt->ohs, p->id);
+ fs = find_finger(&mt->prev_state, p->id);
if (fs) {
gs->dx += p->hw.position_x - fs->hw.position_x;
gs->dy += p->hw.position_y - fs->hw.position_y;
@@ -52,14 +52,15 @@ void extract_gestures(struct Gestures *gs, struct MTouch* mt)
if (nsf == 3)
SETBIT(gs->type, GS_HSCROLL);
}
- if (mt->nhs.button == BITMASK(MT_BUTTON_LEFT)) {
+ if (mt->state.button == BITMASK(MT_BUTTON_LEFT)) {
if (nsf == 2)
- mt->nhs.button = BITMASK(MT_BUTTON_RIGHT);
+ mt->state.button = BITMASK(MT_BUTTON_RIGHT);
if (nsf == 3)
- mt->nhs.button = BITMASK(MT_BUTTON_MIDDLE);
+ mt->state.button = BITMASK(MT_BUTTON_MIDDLE);
}
- gs->btmask = (mt->nhs.button ^ mt->ohs.button) & BITONES(DIM_BUTTON);
- gs->btdata = mt->nhs.button & BITONES(DIM_BUTTON);
- mt->ohs = mt->nhs;
+ gs->btmask = (mt->state.button ^ mt->prev_state.button) &
+ BITONES(DIM_BUTTON);
+ gs->btdata = mt->state.button & BITONES(DIM_BUTTON);
+ mt->prev_state = mt->state;
}