~hikiko/grail/grail.type-qualifiers-warning

« back to all changes in this revision

Viewing changes to include/gesture-buffer.h

  • Committer: Henrik Rydberg
  • Date: 2010-07-13 09:26:46 UTC
  • Revision ID: git-v1:3b837806891de6cf77d4d74d04567e7e68c82fc0
Gesture Recognition And Instantiation Library (grail)

The aim of this first commit is to get down to hard testing of concepts,
and the library currently has two test programs, touch and grail,
which can be run on commandline. Touch tests the touch interface,
and grail tests the gesture interface.

Expect thinking errors and some glitches. Other than that, the code
runs fine.

Signed-off-by: Henrik Rydberg <rydberg@bitmath.org>

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 <gesture.h>
 
29
 
 
30
#define DIM_GESTURE_EVENTS 512
 
31
 
 
32
struct gebuf {
 
33
        int head;
 
34
        int tail;
 
35
        struct gesture_event buffer[DIM_GESTURE_EVENTS];
 
36
};
 
37
 
 
38
static inline void gebuf_clear(struct gebuf *gebuf)
 
39
{
 
40
        gebuf->head = gebuf->tail = 0;
 
41
}
 
42
 
 
43
static inline int gebuf_empty(const struct gebuf *gebuf)
 
44
{
 
45
        return gebuf->head == gebuf->tail;
 
46
}
 
47
 
 
48
static inline void gebuf_put(struct gebuf *gebuf,
 
49
                             const struct gesture_event *ev)
 
50
{
 
51
        gebuf->buffer[gebuf->head++] = *ev;
 
52
        gebuf->head &= DIM_GESTURE_EVENTS - 1;
 
53
}
 
54
 
 
55
static inline void gebuf_get(struct gebuf *gebuf,
 
56
                             struct gesture_event *ev)
 
57
{
 
58
        *ev = gebuf->buffer[gebuf->tail++];
 
59
        gebuf->tail &= DIM_GESTURE_EVENTS - 1;
 
60
}
 
61
 
 
62
#endif