Navigation Menu

Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
246 lines (199 loc) · 5.2 KB

touchSimp.c

File metadata and controls

246 lines (199 loc) · 5.2 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <stdio.h>
#include <SDL.h>
#include <math.h>
#include <linux/input.h>
#include <fcntl.h>
#define PI 3.1415926535897
#define WIDTH 640
#define HEIGHT 480
#define BPP 4
#define DEPTH 32
#define MAX_FINGERS 2
int mousx,mousy;
int keystat[512];
int bstatus;
May 26, 2010
May 26, 2010
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
typedef struct {
int x,y;
} Point;
Point finger[MAX_FINGERS];
void handler (int sig)
{
printf ("\nexiting...(%d)\n", sig);
exit (0);
}
void perror_exit (char *error)
{
perror (error);
handler (9);
}
void setpix(SDL_Surface *screen, int x, int y, int col)
{
Uint32 *pixmem32;
Uint32 colour;
if((unsigned)x > screen->w) return;
if((unsigned)y > screen->h) return;
colour = SDL_MapRGB( screen->format, (col>>16)&0xFF, (col>>8)&0xFF, col&0xFF);
pixmem32 = (Uint32*) screen->pixels + y*screen->pitch/BPP + x;
*pixmem32 = colour;
}
void drawCircle(SDL_Surface* screen,int x,int y,int r,int c)
{
float a;
for(a=0;a<2*PI;a+=1.f/(float)r)
{
setpix(screen,(int)(x+r*cos(a)),(int)(y+r*sin(a)),c);
}
}
void DrawScreen(SDL_Surface* screen, int h)
{
int x, y, xm,ym,c;
if(SDL_MUSTLOCK(screen))
{
if(SDL_LockSurface(screen) < 0) return;
}
for(y = 0; y < screen->h; y++ )
{
for( x = 0; x < screen->w; x++ )
{
//setpixel(screen, x, y, (x*x)/256+3*y+h, (y*y)/256+x+h, h);
//xm = (x+h)%screen->w;
//ym = (y+h)%screen->w;
//c = sin(h/256*2*PI)*x*y/screen->w/screen->h;
//setpix(screen,x,y,255*sin(xm/screen->w*2*PI),sin(h/255*2*PI)*255*y/screen->h,c);
setpix(screen,x,y,((x%255)<<16) + ((y%255)<<8) + (x+y)%255);
}
}
drawCircle(screen,mousx,mousy,30,0xFFFFFF);
int i;
for(i=0;i<MAX_FINGERS;i++)
drawCircle(screen,finger[i].x,finger[i].y,30,0xFFFFFF);
if(SDL_MUSTLOCK(screen)) SDL_UnlockSurface(screen);
SDL_Flip(screen);
}
SDL_Surface* initScreen(int width,int height)
{
return SDL_SetVideoMode(width, height, DEPTH,
SDL_HWSURFACE | SDL_RESIZABLE);
}
int main(int argc, char* argv[])
{
struct input_event ev[64];
int fd, rd, value, size = sizeof (struct input_event);
char name[256] = "Unknown";
char *device = NULL;
//Setup check
if (argv[1] == NULL){
printf("Please specify (on the command line) the path to the dev event interface device\n");
exit (0);
}
if ((getuid ()) != 0)
printf ("You are not root! This may not work...\n");
if (argc > 1)
device = argv[1];
//Open Device
May 26, 2010
May 26, 2010
124
if ((fd = open (device, O_RDONLY | O_NONBLOCK)) == -1)
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
printf ("%s is not a vaild device.\n", device);
//Print Device Name
ioctl (fd, EVIOCGNAME (sizeof (name)), name);
printf ("Reading From : %s (%s)\n", device, name);
SDL_Surface *screen;
SDL_Event event;
int keypress = 0;
int h=0,s=1,i,j;
int tx,ty,curf=0;
memset(keystat,0,512*sizeof(keystat[0]));
if (SDL_Init(SDL_INIT_VIDEO) < 0 ) return 1;
if (!(screen = initScreen(WIDTH,HEIGHT)))
{
SDL_Quit();
return 1;
}
while(!keystat[27])
{
//Poll SDL
while(SDL_PollEvent(&event))
{
switch (event.type)
{
case SDL_QUIT:
keystat[27] = 1;
break;
case SDL_KEYDOWN:
//printf("%i\n",event.key.keysym.sym);
keystat[event.key.keysym.sym] = 1;
//keypress = 1;
break;
case SDL_KEYUP:
//printf("%i\n",event.key.keysym.sym);
keystat[event.key.keysym.sym] = 0;
//keypress = 1;
break;
case SDL_VIDEORESIZE:
if (!(screen = initScreen(event.resize.w,
event.resize.h)))
{
SDL_Quit();
return 1;
}
break;
case SDL_MOUSEMOTION:
mousx = event.motion.x;
mousy = event.motion.y;
break;
case SDL_MOUSEBUTTONDOWN:
bstatus |= (1<<(event.button.button-1));
break;
case SDL_MOUSEBUTTONUP:
bstatus &= ~(1<<(event.button.button-1));
break;
May 28, 2010
May 28, 2010
189
190
191
192
case SDL_FINGERMOTION:
printf("Holy SH!T\n");
break;
193
194
195
196
}
}
//poll for Touch <- Goal: make this a case:
May 26, 2010
May 26, 2010
197
198
199
200
/*if ((rd = read (fd, ev, size * 64)) < size)
perror_exit ("read()"); */
201
202
//printf("time: %i\n type: %X\n code: %X\n value: %i\n ",
// ev->time,ev->type,ev->code,ev->value);
May 26, 2010
May 26, 2010
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
if((rd = read (fd, ev, size * 64)) >= size)
for (i = 0; i < rd / sizeof(struct input_event); i++)
switch (ev[i].type)
{
case EV_ABS:
if(ev[i].code == ABS_X)
tx = ev[i].value;
else if (ev[i].code == ABS_Y)
ty = ev[i].value;
else if (ev[i].code == ABS_MISC)
{
//printf("Misc:type: %X\n code: %X\n value: %i\n ",
// ev[i].type,ev[i].code,ev[i].value);
}
break;
case EV_MSC:
if(ev[i].code == MSC_SERIAL)
curf = ev[i].value;
break;
case EV_SYN:
curf -= 1;
if(tx >= 0)
finger[curf].x = tx;
if(ty >= 0)
finger[curf].y = ty;
//printf("Synched: %i tx: %i, ty: %i\n",curf,finger[curf].x,finger[curf].y);
tx = -1;
ty = -1;
break;
}
//And draw
DrawScreen(screen,h);
/*
for(i=0;i<512;i++)
if(keystat[i]) printf("%i\n",i);
printf("Buttons:%i\n",bstatus);
*/
}
SDL_Quit();