mirror of
https://github.com/moparisthebest/uinput-mapper
synced 2024-11-28 09:52:16 -05:00
More networked code; experimental config support.
read.py now deprecates test.py I went with optparse rather than argparse to support Python <2.7. Switching to argparse later should not be that hard. Configurations still need to be extended with, among other things: * Name for the device
This commit is contained in:
parent
19868360a3
commit
4323e92a13
40
py/configs/touchscreen.py
Normal file
40
py/configs/touchscreen.py
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
from cinput import *
|
||||||
|
|
||||||
|
def transform_x(x):
|
||||||
|
print 'old y', x
|
||||||
|
|
||||||
|
# offset
|
||||||
|
x -= 200
|
||||||
|
|
||||||
|
x = int(x / (3800. / 1366.))
|
||||||
|
#x = int(x / (3800. / 1920.))
|
||||||
|
print 'new x', x
|
||||||
|
return x
|
||||||
|
|
||||||
|
def transform_y(y):
|
||||||
|
print 'old y', y
|
||||||
|
|
||||||
|
# invert
|
||||||
|
y = 3800 - y
|
||||||
|
|
||||||
|
# offset
|
||||||
|
y -= 200
|
||||||
|
y = int(y / (3800. / 768.))
|
||||||
|
#y = int(y / (3800. / 1080.))
|
||||||
|
print 'new y', y
|
||||||
|
return y
|
||||||
|
|
||||||
|
config = {
|
||||||
|
EV_ABS : {
|
||||||
|
ABS_X : {
|
||||||
|
'type' : EV_ABS,
|
||||||
|
'code' : ABS_X,
|
||||||
|
'value' : transform_x
|
||||||
|
},
|
||||||
|
ABS_Y : {
|
||||||
|
'type' : EV_ABS,
|
||||||
|
'code' : ABS_Y,
|
||||||
|
'value' : transform_y
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
41
py/create.py
41
py/create.py
@ -4,15 +4,37 @@ from mapper import KeyMapper, parse_conf
|
|||||||
from example_conf import config
|
from example_conf import config
|
||||||
from linux_input import timeval, input_event
|
from linux_input import timeval, input_event
|
||||||
|
|
||||||
|
import imp
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import cPickle as pickle
|
import cPickle as pickle
|
||||||
except ImportError:
|
except ImportError:
|
||||||
import pickle
|
import pickle
|
||||||
|
|
||||||
|
|
||||||
|
import optparse
|
||||||
|
|
||||||
|
parser = optparse.OptionParser(description='Create input devices. '
|
||||||
|
'TODO')
|
||||||
|
parser.add_option('-c', '--config', type=str, action='append',
|
||||||
|
default=[],
|
||||||
|
help='Merge configuration file with default '
|
||||||
|
'configuration (allowed to be used multiple times)')
|
||||||
|
parser.add_option('-C', '--compat', action='store_true',
|
||||||
|
help='Enable compatibility mode; for Python < 2.7')
|
||||||
|
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
# Unpickle from stdin ; currently this is the default and only way
|
||||||
f = pickle.Unpickler(sys.stdin)
|
f = pickle.Unpickler(sys.stdin)
|
||||||
|
|
||||||
conf = f.load()
|
conf = f.load()
|
||||||
|
|
||||||
|
for path in args.config:
|
||||||
|
if path:
|
||||||
|
config = imp.load_source('', path).config
|
||||||
|
conf.update(config)
|
||||||
|
|
||||||
m = KeyMapper(conf)
|
m = KeyMapper(conf)
|
||||||
|
|
||||||
d = UInputDevice()
|
d = UInputDevice()
|
||||||
@ -21,22 +43,13 @@ d.setup('Example input device')
|
|||||||
|
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
|
if not args.compat:
|
||||||
ev = f.load()
|
ev = f.load()
|
||||||
# Use code below rather than the line above if you use an old python
|
else:
|
||||||
# version (also edit read.py)
|
ev_p = f.load()
|
||||||
|
ti = timeval(ev_p[0], ev_p[1])
|
||||||
#ev_p = f.load()
|
ev = input_event(ti, ev_p[2], ev_p[3], ev_p[4])
|
||||||
#ti = timeval(ev_p[0], ev_p[1])
|
|
||||||
#ev = input_event(ti, ev_p[2], ev_p[3], ev_p[4])
|
|
||||||
|
|
||||||
ev = m.map_event(ev)
|
ev = m.map_event(ev)
|
||||||
|
|
||||||
d.fire_event(ev)
|
d.fire_event(ev)
|
||||||
|
|
||||||
#try:
|
|
||||||
# print ev.time.tv_sec, ev.time.tv_usec
|
|
||||||
# s = '%s %s %d' % (rev_events[ev.type], rev_event_keys[ev.type][ev.code], ev.value)
|
|
||||||
# print 'Event type:', s
|
|
||||||
|
|
||||||
#except KeyError:
|
|
||||||
# pass
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import cinput
|
import cinput
|
||||||
|
|
||||||
|
# XXX: Also parse name, etc
|
||||||
def parse_conf(f):
|
def parse_conf(f):
|
||||||
conf = {}
|
conf = {}
|
||||||
e = f.get_exposed_events()
|
e = f.get_exposed_events()
|
||||||
|
83
py/read.py
83
py/read.py
@ -3,48 +3,71 @@ from cinput import *
|
|||||||
from mapper import KeyMapper, parse_conf
|
from mapper import KeyMapper, parse_conf
|
||||||
from example_conf import config
|
from example_conf import config
|
||||||
|
|
||||||
clone = True
|
|
||||||
|
|
||||||
f = InputDevice(sys.argv[1] if len(sys.argv) == 2 else "/dev/input/event3")
|
|
||||||
|
|
||||||
if clone:
|
|
||||||
config = parse_conf(f)
|
|
||||||
m = KeyMapper(config)
|
|
||||||
else:
|
|
||||||
m = KeyMapper(config)
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import cPickle as pickle
|
import cPickle as pickle
|
||||||
except ImportError:
|
except ImportError:
|
||||||
import pickle
|
import pickle
|
||||||
p = pickle.Pickler(sys.stdout)
|
|
||||||
|
|
||||||
p.dump(config)
|
import optparse
|
||||||
sys.stdout.flush()
|
|
||||||
|
|
||||||
#d = UInputDevice()
|
parser = optparse.OptionParser(description='Read input devices. '
|
||||||
#m.expose(d)
|
'TODO')
|
||||||
#d.setup('Example input device')
|
parser.add_option('-D', '--dump', action='store_false',
|
||||||
|
default=True, help='Dump will marshall all the events to stdout')
|
||||||
|
parser.add_option('-i', '--input-file', action='append',
|
||||||
|
type=str, default=[],
|
||||||
|
help='Read events from this input device')
|
||||||
|
|
||||||
|
parser.add_option('-C', '--compat', action='store_true',
|
||||||
|
help='Enable compatibility mode; for Python < 2.7')
|
||||||
|
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
|
||||||
while True:
|
if len(args.input_file) == 0:
|
||||||
ev = f.next_event()
|
parser.print_help()
|
||||||
p.dump(ev)
|
exit(0)
|
||||||
|
|
||||||
# Use this rather than the line above if you use an old python version (also
|
# TODO: Support multiple input files + epoll; InputDevices?
|
||||||
# edit create.py)
|
f = InputDevice(args.input_file[0])
|
||||||
#p.dump((ev.time.tv_sec, ev.time.tv_usec, ev.type, ev.code, ev.value))
|
|
||||||
|
config = parse_conf(f)
|
||||||
|
m = KeyMapper(config)
|
||||||
|
|
||||||
|
if args.dump:
|
||||||
|
print 'Version:', f.get_version()
|
||||||
|
print f.get_name()
|
||||||
|
|
||||||
|
d = f.get_exposed_events()
|
||||||
|
for k, v in d.iteritems():
|
||||||
|
print k + ':', ', '.join(v)
|
||||||
|
|
||||||
|
else:
|
||||||
|
p = pickle.Pickler(sys.stdout)
|
||||||
|
|
||||||
|
p.dump(config)
|
||||||
|
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
|
|
||||||
#ev = m.map_event(ev)
|
while True:
|
||||||
|
# TODO: Poll multiple files ; add file description (not descriptor...)
|
||||||
|
# f, ev = fs.next_event()
|
||||||
|
ev = f.next_event()
|
||||||
|
|
||||||
#d.fire_event(ev)
|
if args.dump:
|
||||||
|
try:
|
||||||
|
print ev.time.tv_sec, ev.time.tv_usec
|
||||||
|
s = '%s %s %d' % (rev_events[ev.type], rev_event_keys[ev.type][ev.code], ev.value)
|
||||||
|
print 'Event type:', s
|
||||||
|
except KeyError:
|
||||||
|
pass
|
||||||
|
|
||||||
#try:
|
else:
|
||||||
# print ev.time.tv_sec, ev.time.tv_usec
|
if not args.compat:
|
||||||
# s = '%s %s %d' % (rev_events[ev.type], rev_event_keys[ev.type][ev.code], ev.value)
|
p.dump(ev)
|
||||||
# print 'Event type:', s
|
else:
|
||||||
|
# Use this rather than the line above if you use an old python version (also
|
||||||
|
# edit create.py)
|
||||||
|
p.dump((ev.time.tv_sec, ev.time.tv_usec, ev.type, ev.code, ev.value))
|
||||||
|
|
||||||
#except KeyError:
|
sys.stdout.flush()
|
||||||
# pass
|
|
||||||
|
24
py/test.py
24
py/test.py
@ -1,24 +0,0 @@
|
|||||||
from cinput import *
|
|
||||||
import ctypes
|
|
||||||
|
|
||||||
import sys
|
|
||||||
|
|
||||||
#f = open(sys.argv[1] if len(sys.argv) == 2 else "/dev/input/event3")
|
|
||||||
f = InputDevice(sys.argv[1] if len(sys.argv) == 2 else "/dev/input/event3")
|
|
||||||
|
|
||||||
print 'Version:', f.get_version()
|
|
||||||
print f.get_name()
|
|
||||||
|
|
||||||
d = f.get_exposed_events()
|
|
||||||
for k, v in d.iteritems():
|
|
||||||
print k + ':', ', '.join(v)
|
|
||||||
|
|
||||||
while True:
|
|
||||||
ev = f.next_event()
|
|
||||||
|
|
||||||
try:
|
|
||||||
print ev.time.tv_sec, ev.time.tv_usec
|
|
||||||
s = '%s %s %d' % (rev_events[ev.type], rev_event_keys[ev.type][ev.code], ev.value)
|
|
||||||
print 'Event type:', s
|
|
||||||
except KeyError:
|
|
||||||
pass
|
|
Loading…
Reference in New Issue
Block a user