-
Notifications
You must be signed in to change notification settings - Fork 4
/
xmacroplay.cpp
509 lines (438 loc) · 14.9 KB
/
xmacroplay.cpp
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
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
124
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
/*****************************************************************************
*
* xmacroplay - a utility for playing X mouse and key events.
* Portions Copyright (C) 2000 Gabor Keresztfalvi <[email protected]>
*
* The recorded events are read from the standard input.
*
* This program is heavily based on
* xremote (http://infa.abo.fi/~chakie/xremote/) which is:
* Copyright (C) 2000 Jan Ekholm <[email protected]>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
****************************************************************************/
/*****************************************************************************
* Do we have config.h?
****************************************************************************/
#ifdef HAVE_CONFIG
#include "config.h"
#endif
/*****************************************************************************
* Includes
****************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <ctype.h>
#include <X11/Xlibint.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/cursorfont.h>
#include <X11/keysymdef.h>
#include <X11/keysym.h>
#include <X11/extensions/XTest.h>
#include "chartbl.h"
/*****************************************************************************
* What iostream do we have?
****************************************************************************/
#define HAVE_IOSTREAM
#ifdef HAVE_IOSTREAM
#include <iostream>
#include <iomanip>
#else
#include <iostream.h>
#include <iomanip.h>
#endif
#define PROG "xmacroplay"
/*****************************************************************************
* The delay in milliseconds when sending events to the remote display
****************************************************************************/
const int DefaultDelay = 10;
/*****************************************************************************
* The multiplier used fot scaling coordinates before sending them to the
* remote display. By default we don't scale at all
****************************************************************************/
const float DefaultScale = 1.0;
/*****************************************************************************
* Globals...
****************************************************************************/
int Delay = DefaultDelay;
float Scale = DefaultScale;
char * Remote;
using namespace std;
/****************************************************************************/
/*! Prints the usage, i.e. how the program is used. Exits the application with
the passed exit-code.
\arg const int ExitCode - the exitcode to use for exiting.
*/
/****************************************************************************/
void usage (const int exitCode) {
// print the usage
cerr << PROG << " " << VERSION << endl;
cerr << "Usage: " << PROG << " [options] remote_display" << endl;
cerr << "Options: " << endl;
cerr << " -d DELAY delay in milliseconds for events sent to remote display." << endl
<< " Default: 10ms."
<< endl
<< " -s FACTOR scalefactor for coordinates. Default: 1.0." << endl
<< " -v show version. " << endl
<< " -h this help. " << endl << endl;
// we're done
exit ( EXIT_SUCCESS );
}
/****************************************************************************/
/*! Prints the version of the application and exits.
*/
/****************************************************************************/
void version () {
// print the version
cerr << PROG << " " << VERSION << endl;
// we're done
exit ( EXIT_SUCCESS );
}
/****************************************************************************/
/*! Parses the commandline and stores all data in globals (shudder). Exits
the application with a failed exitcode if a parameter is illegal.
\arg int argc - number of commandline arguments.
\arg char * argv[] - vector of the commandline argument strings.
*/
/****************************************************************************/
void parseCommandLine (int argc, char * argv[]) {
int Index = 1;
// check the number of arguments
if ( argc < 2 ) {
// oops, too few arguments, go away
usage ( EXIT_FAILURE );
}
// loop through all arguments except the last, which is assumed to be the
// name of the display
while ( Index < argc ) {
// is this '-v'?
if ( strcmp (argv[Index], "-v" ) == 0 ) {
// yep, show version and exit
version ();
}
// is this '-h'?
if ( strcmp (argv[Index], "-h" ) == 0 ) {
// yep, show usage and exit
usage ( EXIT_SUCCESS );
}
// is this '-d'?
else if ( strcmp (argv[Index], "-d" ) == 0 && Index + 1 < argc ) {
// yep, and there seems to be a parameter too, interpret it as a
// number
if ( sscanf ( argv[Index + 1], "%d", &Delay ) != 1 ) {
// oops, not a valid intereger
cerr << "Invalid parameter for '-d'." << endl;
usage ( EXIT_FAILURE );
}
Index++;
}
// is this '-s'?
else if ( strcmp (argv[Index], "-s" ) == 0 && Index + 1 < argc ) {
// yep, and there seems to be a parameter too, interpret it as a
// floating point number
if ( sscanf ( argv[Index + 1], "%f", &Scale ) != 1 ) {
// oops, not a valid intereger
cerr << "Invalid parameter for '-s'." << endl;
usage ( EXIT_FAILURE );
}
Index++;
}
// is this the last parameter?
else if ( Index == argc - 1 ) {
// yep, we assume it's the display, store it
Remote = argv [ Index ];
}
else {
// we got this far, the parameter is no good...
cerr << "Invalid parameter '" << argv[Index] << "'." << endl;
usage ( EXIT_FAILURE );
}
// next value
Index++;
}
}
/****************************************************************************/
/*! Connects to the desired display. Returns the \c Display or \c 0 if
no display could be obtained.
\arg const char * DisplayName - name of the remote display.
*/
/****************************************************************************/
Display * remoteDisplay (const char * DisplayName) {
int Event, Error;
int Major, Minor;
// open the display
Display * D = XOpenDisplay ( DisplayName );
// did we get it?
if ( ! D ) {
// nope, so show error and abort
cerr << PROG << ": could not open display \"" << XDisplayName ( DisplayName )
<< "\", aborting." << endl;
exit ( EXIT_FAILURE );
}
// does the remote display have the Xtest-extension?
if ( ! XTestQueryExtension (D, &Event, &Error, &Major, &Minor ) ) {
// nope, extension not supported
cerr << PROG << ": XTest extension not supported on server \""
<< DisplayString(D) << "\"" << endl;
// close the display and go away
XCloseDisplay ( D );
exit ( EXIT_FAILURE );
}
// print some information
cerr << "XTest for server \"" << DisplayString(D) << "\" is version "
<< Major << "." << Minor << "." << endl << endl;;
// execute requests even if server is grabbed
XTestGrabControl ( D, True );
// sync the server
XSync ( D,True );
// return the display
return D;
}
/****************************************************************************/
/*! Scales the passed coordinate with the given saling factor. the factor is
either given as a commandline argument or it is 1.0.
*/
/****************************************************************************/
int scale (const int Coordinate) {
// perform the scaling, all in one ugly line
return (int)( (float)Coordinate * Scale );
}
/****************************************************************************/
/*! Sends a \a character to the remote display \a RemoteDpy. The character is
converted to a \c KeySym based on a character table and then reconverted to
a \c KeyCode on the remote display. Seems to work quite ok, apart from
something weird with the Alt key.
\arg Display * RemoteDpy - used display.
\arg char c - character to send.
*/
/****************************************************************************/
void sendChar(Display *RemoteDpy, char c)
{
KeySym ks, sks, *kss, ksl, ksu;
KeyCode kc, skc;
int syms;
#ifdef DEBUG
int i;
#endif
sks=XK_Shift_L;
ks=XStringToKeysym(chartbl[0][(unsigned char)c]);
if ( ( kc = XKeysymToKeycode ( RemoteDpy, ks ) ) == 0 )
{
cerr << "No keycode on remote display found for char: " << c << endl;
return;
}
if ( ( skc = XKeysymToKeycode ( RemoteDpy, sks ) ) == 0 )
{
cerr << "No keycode on remote display found for XK_Shift_L!" << endl;
return;
}
kss=XGetKeyboardMapping(RemoteDpy, kc, 1, &syms);
if (!kss)
{
cerr << "XGetKeyboardMapping failed on the remote display (keycode: " << kc << ")" << endl;
return;
}
for (; syms && (!kss[syms-1]); syms--);
if (!syms)
{
cerr << "XGetKeyboardMapping failed on the remote display (no syms) (keycode: " << kc << ")" << endl;
XFree(kss);
return;
}
XConvertCase(ks,&ksl,&ksu);
#ifdef DEBUG
cout << "kss: ";
for (i=0; i<syms; i++) cout << kss[i] << " ";
cout << "(" << ks << " l: " << ksl << " h: " << ksu << ")" << endl;
#endif
if (ks==kss[0] && (ks==ksl && ks==ksu)) sks=NoSymbol;
if (ks==ksl && ks!=ksu) sks=NoSymbol;
if (sks!=NoSymbol) XTestFakeKeyEvent ( RemoteDpy, skc, True, Delay );
XTestFakeKeyEvent ( RemoteDpy, kc, True, Delay );
XFlush ( RemoteDpy );
XTestFakeKeyEvent ( RemoteDpy, kc, False, Delay );
if (sks!=NoSymbol) XTestFakeKeyEvent ( RemoteDpy, skc, False, Delay );
XFlush ( RemoteDpy );
XFree(kss);
}
/****************************************************************************/
/*! Main event-loop of the application. Loops until a key with the keycode
\a QuitKey is pressed. Sends all mouse- and key-events to the remote
display.
\arg Display * RemoteDpy - used display.
\arg int RemoteScreen - the used screen.
*/
/****************************************************************************/
void eventLoop (Display * RemoteDpy, int RemoteScreen) {
char ev[200], str[1024];
int x, y;
unsigned int b;
KeySym ks;
KeyCode kc;
while ( !cin.eof() ) {
cin >> ev;
if (ev[0]=='#')
{
cout << "Comment: " << ev << endl;
continue;
}
if (!strcasecmp("Delay",ev))
{
cin >> b;
cout << "Delay: " << b << endl;
sleep ( b );
}
else if (!strcasecmp("ButtonPress",ev))
{
cin >> b;
cout << "ButtonPress: " << b << endl;
XTestFakeButtonEvent ( RemoteDpy, b, True, Delay );
}
else if (!strcasecmp("ButtonRelease",ev))
{
cin >> b;
cout << "ButtonRelease: " << b << endl;
XTestFakeButtonEvent ( RemoteDpy, b, False, Delay );
}
else if (!strcasecmp("MotionNotify",ev))
{
cin >> x >> y;
cout << "MotionNotify: " << x << " " << y << endl;
XTestFakeMotionEvent ( RemoteDpy, RemoteScreen , scale ( x ), scale ( y ), Delay );
}
else if (!strcasecmp("KeyCodePress",ev))
{
cin >> kc;
cout << "KeyPress: " << kc << endl;
XTestFakeKeyEvent ( RemoteDpy, kc, True, Delay );
}
else if (!strcasecmp("KeyCodeRelease",ev))
{
cin >> kc;
cout << "KeyRelease: " << kc << endl;
XTestFakeKeyEvent ( RemoteDpy, kc, False, Delay );
}
else if (!strcasecmp("KeySym",ev))
{
cin >> ks;
cout << "KeySym: " << ks << endl;
if ( ( kc = XKeysymToKeycode ( RemoteDpy, ks ) ) == 0 )
{
cerr << "No keycode on remote display found for keysym: " << ks << endl;
continue;
}
XTestFakeKeyEvent ( RemoteDpy, kc, True, Delay );
XFlush ( RemoteDpy );
XTestFakeKeyEvent ( RemoteDpy, kc, False, Delay );
}
else if (!strcasecmp("KeySymPress",ev))
{
cin >> ks;
cout << "KeySymPress: " << ks << endl;
if ( ( kc = XKeysymToKeycode ( RemoteDpy, ks ) ) == 0 )
{
cerr << "No keycode on remote display found for keysym: " << ks << endl;
continue;
}
XTestFakeKeyEvent ( RemoteDpy, kc, True, Delay );
}
else if (!strcasecmp("KeySymRelease",ev))
{
cin >> ks;
cout << "KeySymRelease: " << ks << endl;
if ( ( kc = XKeysymToKeycode ( RemoteDpy, ks ) ) == 0 )
{
cerr << "No keycode on remote display found for keysym: " << ks << endl;
continue;
}
XTestFakeKeyEvent ( RemoteDpy, kc, False, Delay );
}
else if (!strcasecmp("KeyStr",ev))
{
cin >> ev;
cout << "KeyStr: " << ev << endl;
ks=XStringToKeysym(ev);
if ( ( kc = XKeysymToKeycode ( RemoteDpy, ks ) ) == 0 )
{
cerr << "No keycode on remote display found for '" << ev << "': " << ks << endl;
continue;
}
XTestFakeKeyEvent ( RemoteDpy, kc, True, Delay );
XFlush ( RemoteDpy );
XTestFakeKeyEvent ( RemoteDpy, kc, False, Delay );
}
else if (!strcasecmp("KeyStrPress",ev))
{
cin >> ev;
cout << "KeyStrPress: " << ev << endl;
ks=XStringToKeysym(ev);
if ( ( kc = XKeysymToKeycode ( RemoteDpy, ks ) ) == 0 )
{
cerr << "No keycode on remote display found for '" << ev << "': " << ks << endl;
continue;
}
XTestFakeKeyEvent ( RemoteDpy, kc, True, Delay );
}
else if (!strcasecmp("KeyStrRelease",ev))
{
cin >> ev;
cout << "KeyStrRelease: " << ev << endl;
ks=XStringToKeysym(ev);
if ( ( kc = XKeysymToKeycode ( RemoteDpy, ks ) ) == 0 )
{
cerr << "No keycode on remote display found for '" << ev << "': " << ks << endl;
continue;
}
XTestFakeKeyEvent ( RemoteDpy, kc, False, Delay );
}
else if (!strcasecmp("String",ev))
{
cin.ignore().get(str,1024);
cout << "String: " << str << endl;
b=0;
while(str[b]) sendChar(RemoteDpy, str[b++]);
}
else if (ev[0]!=0) cout << "Unknown tag: " << ev << endl;
// sync the remote server
XFlush ( RemoteDpy );
}
}
/****************************************************************************/
/*! Main function of the application. It expects no commandline arguments.
\arg int argc - number of commandline arguments.
\arg char * argv[] - vector of the commandline argument strings.
*/
/****************************************************************************/
int main (int argc, char * argv[]) {
// parse commandline arguments
parseCommandLine ( argc, argv );
// open the remote display or abort
Display * RemoteDpy = remoteDisplay ( Remote );
// get the screens too
int RemoteScreen = DefaultScreen ( RemoteDpy );
XTestDiscard ( RemoteDpy );
// start the main event loop
eventLoop ( RemoteDpy, RemoteScreen );
// discard and even flush all events on the remote display
XTestDiscard ( RemoteDpy );
XFlush ( RemoteDpy );
// we're done with the display
XCloseDisplay ( RemoteDpy );
cerr << PROG << ": pointer and keyboard released. " << endl;
// go away
exit ( EXIT_SUCCESS );
}