summaryrefslogtreecommitdiff
path: root/src/gebuf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gebuf.h')
-rw-r--r--src/gebuf.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/src/gebuf.h b/src/gebuf.h
new file mode 100644
index 0000000..3f71ab5
--- /dev/null
+++ b/src/gebuf.h
@@ -0,0 +1,70 @@
1/*****************************************************************************
2 *
3 * grail - Gesture Recognition And Instantiation Library
4 *
5 * Copyright (C) 2010 Canonical Ltd.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 *
20 * Authors:
21 * Henrik Rydberg <rydberg@bitmath.org>
22 *
23 ****************************************************************************/
24
25#ifndef _GRAIL_GESTURE_BUFFER_H
26#define _GRAIL_GESTURE_BUFFER_H
27
28#include <grail.h>
29
30#define DIM_GESTURE_EVENTS 512
31
32struct gesture_event {
33 int ntouch;
34 int nprop;
35 touch_time_t time;
36 struct grail_coord pos;
37 grail_prop_t prop[DIM_GRAIL_PROP];
38};
39
40struct gebuf {
41 int head;
42 int tail;
43 struct gesture_event buffer[DIM_GESTURE_EVENTS];
44};
45
46static inline void gebuf_clear(struct gebuf *gebuf)
47{
48 gebuf->head = gebuf->tail = 0;
49}
50
51static inline int gebuf_empty(const struct gebuf *gebuf)
52{
53 return gebuf->head == gebuf->tail;
54}
55
56static inline void gebuf_put(struct gebuf *gebuf,
57 const struct gesture_event *ev)
58{
59 gebuf->buffer[gebuf->head++] = *ev;
60 gebuf->head &= DIM_GESTURE_EVENTS - 1;
61}
62
63static inline void gebuf_get(struct gebuf *gebuf,
64 struct gesture_event *ev)
65{
66 *ev = gebuf->buffer[gebuf->tail++];
67 gebuf->tail &= DIM_GESTURE_EVENTS - 1;
68}
69
70#endif