diff options
| author | Henrik Rydberg <rydberg@euromail.se> | 2010-08-06 21:11:17 +0200 |
|---|---|---|
| committer | Henrik Rydberg <rydberg@euromail.se> | 2010-08-06 21:11:17 +0200 |
| commit | 7db9d8d76ff61c4802ac15559dcea6fa54ff567a (patch) | |
| tree | b67e040c0abeb0ab1fca72754a767dc9ab851461 /src/gebuf.h | |
initial bzr repo at rev 27
Diffstat (limited to 'src/gebuf.h')
| -rw-r--r-- | src/gebuf.h | 70 |
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 | |||
| 32 | struct 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 | |||
| 40 | struct gebuf { | ||
| 41 | int head; | ||
| 42 | int tail; | ||
| 43 | struct gesture_event buffer[DIM_GESTURE_EVENTS]; | ||
| 44 | }; | ||
| 45 | |||
| 46 | static inline void gebuf_clear(struct gebuf *gebuf) | ||
| 47 | { | ||
| 48 | gebuf->head = gebuf->tail = 0; | ||
| 49 | } | ||
| 50 | |||
| 51 | static inline int gebuf_empty(const struct gebuf *gebuf) | ||
| 52 | { | ||
| 53 | return gebuf->head == gebuf->tail; | ||
| 54 | } | ||
| 55 | |||
| 56 | static 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 | |||
| 63 | static 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 | ||
