aboutsummaryrefslogtreecommitdiffstats
path: root/src/state.h
blob: 8b41920db7f41142c6f7854beb85641b9b793be7 (plain)
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
#ifndef MTEVENT_H
#define MTEVENT_H

#include "hwdata.h"

////////////////////////////////////////////////////////

struct FingerState {
	struct FingerData hw;
	int id;
};

////////////////////////////////////////////////////////

struct State {
	struct FingerState finger[DIM_FINGER];
	int button[DIM_BUTTON];
	int nfinger, lastid;
};

////////////////////////////////////////////////////////

void init_state(struct State *s);
void modify_state(struct State *s, const struct HWData* hw);
void output_state(const struct State *s);

const struct FingerState *find_finger(const struct State *s, int id);

////////////////////////////////////////////////////////

#endif