-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathjoystick_part.py
570 lines (451 loc) · 17.2 KB
/
joystick_part.py
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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
import os
import array
import time
import struct
import random
from threading import Thread
import logging
from prettytable import PrettyTable
class Joystick(object):
'''
An interface to a physical joystick
'''
def __init__(self, dev_fn='/dev/input/js0'):
self.axis_states = {}
self.button_states = {}
self.axis_names = {}
self.button_names = {}
self.axis_map = []
self.button_map = []
self.jsdev = None
self.dev_fn = dev_fn
def init(self):
try:
from fcntl import ioctl
except ModuleNotFoundError:
self.num_axes = 0
self.num_buttons = 0
print("no support for fnctl module. joystick not enabled.")
return False
if not os.path.exists(self.dev_fn):
print(self.dev_fn, "is missing")
return False
'''
call once to setup connection to device and map buttons
'''
# Open the joystick device.
print('Opening %s...' % self.dev_fn)
self.jsdev = open(self.dev_fn, 'rb')
# Get the device name.
buf = array.array('B', [0] * 64)
ioctl(self.jsdev, 0x80006a13 + (0x10000 * len(buf)), buf) # JSIOCGNAME(len)
self.js_name = buf.tobytes().decode('utf-8')
print('Device name: %s' % self.js_name)
# Get number of axes and buttons.
buf = array.array('B', [0])
ioctl(self.jsdev, 0x80016a11, buf) # JSIOCGAXES
self.num_axes = buf[0]
buf = array.array('B', [0])
ioctl(self.jsdev, 0x80016a12, buf) # JSIOCGBUTTONS
self.num_buttons = buf[0]
# Get the axis map.
buf = array.array('B', [0] * 0x40)
ioctl(self.jsdev, 0x80406a32, buf) # JSIOCGAXMAP
for axis in buf[:self.num_axes]:
axis_name = self.axis_names.get(axis, 'unknown(0x%02x)' % axis)
self.axis_map.append(axis_name)
self.axis_states[axis_name] = 0.0
# Get the button map.
buf = array.array('H', [0] * 200)
ioctl(self.jsdev, 0x80406a34, buf) # JSIOCGBTNMAP
for btn in buf[:self.num_buttons]:
btn_name = self.button_names.get(btn, 'unknown(0x%03x)' % btn)
self.button_map.append(btn_name)
self.button_states[btn_name] = 0
#print('btn', '0x%03x' % btn, 'name', btn_name)
return True
def show_map(self):
'''
list the buttons and axis found on this joystick
'''
print ('%d axes found: %s' % (self.num_axes, ', '.join(self.axis_map)))
print ('%d buttons found: %s' % (self.num_buttons, ', '.join(self.button_map)))
def poll(self):
'''
query the state of the joystick, returns button which was pressed, if any,
and axis which was moved, if any. button_state will be None, 1, or 0 if no changes,
pressed, or released. axis_val will be a float from -1 to +1. button and axis will
be the string label determined by the axis map in init.
'''
button = None
button_state = None
axis = None
axis_val = None
if self.jsdev is None:
return button, button_state, axis, axis_val
# Main event loop
evbuf = self.jsdev.read(8)
if evbuf:
tval, value, typev, number = struct.unpack('IhBB', evbuf)
if typev & 0x80:
#ignore initialization event
return button, button_state, axis, axis_val
if typev & 0x01:
button = self.button_map[number]
#print(tval, value, typev, number, button, 'pressed')
if button:
self.button_states[button] = value
button_state = value
logging.info("button: %s state: %d" % (button, value))
if typev & 0x02:
axis = self.axis_map[number]
if axis:
fvalue = value / 32767.0
self.axis_states[axis] = fvalue
axis_val = fvalue
logging.debug("axis: %s val: %f" % (axis, fvalue))
return button, button_state, axis, axis_val
class LogitechJoystick(Joystick):
'''
An interface to a physical Logitech joystick available at /dev/input/js0
Contains mapping that work for Raspian Stretch drivers
Tested with Logitech Gamepad F710
https://www.amazon.com/Logitech-940-000117-Gamepad-F710/dp/B0041RR0TW
credit:
https://github.com/kevkruemp/donkeypart_logitech_controller/blob/master/donkeypart_logitech_controller/part.py
'''
def __init__(self, *args, **kwargs):
super(LogitechJoystick, self).__init__(*args, **kwargs)
self.axis_names = {
0x00: 'left_stick_horz',
0x01: 'left_stick_vert',
0x03: 'right_stick_horz',
0x04: 'right_stick_vert',
0x02: 'L2_pressure',
0x05: 'R2_pressure',
0x10: 'dpad_leftright', # 1 is right, -1 is left
0x11: 'dpad_up_down', # 1 is down, -1 is up
}
self.button_names = {
0x13a: 'back', # 8 314
0x13b: 'start', # 9 315
0x13c: 'Logitech', # a 316
0x130: 'A',
0x131: 'B',
0x133: 'X',
0x134: 'Y',
0x136: 'L1',
0x137: 'R1',
0x13d: 'left_stick_press',
0x13e: 'right_stick_press',
}
class JoystickController(object):
'''
JoystickController is a base class. You will not use this class directly,
but instantiate a flavor based on your joystick type. See classes following this.
Joystick client using access to local physical input. Maps button
presses into actions and takes action. Interacts with the Donkey part
framework.
'''
ES_IDLE = -1
ES_START = 0
ES_THROTTLE_NEG_ONE = 1
ES_THROTTLE_POS_ONE = 2
ES_THROTTLE_NEG_TWO = 3
def __init__(self, poll_delay=0.0,
throttle_scale=1.0,
steering_scale=1.0,
throttle_dir=-1.0,
dev_fn='/dev/input/js0',
auto_record_on_throttle=True):
self.angle = 0.0
self.throttle = 0.0
self.mode = 'user'
self.poll_delay = poll_delay
self.running = True
self.last_throttle_axis_val = 0
self.throttle_scale = throttle_scale
self.steering_scale = steering_scale
self.throttle_dir = throttle_dir
self.recording = False
self.constant_throttle = False
self.auto_record_on_throttle = auto_record_on_throttle
self.dev_fn = dev_fn
self.js = None
self.tub = None
self.num_records_to_erase = 100
self.estop_state = self.ES_IDLE
self.chaos_monkey_steering = None
self.dead_zone = 0.0
self.button_down_trigger_map = {}
self.button_up_trigger_map = {}
self.axis_trigger_map = {}
self.init_trigger_maps()
def init_js(self):
'''
Attempt to init joystick. Should be definied by derived class
Should return true on successfully created joystick object
'''
raise(Exception("Subclass needs to define init_js"))
def init_trigger_maps(self):
'''
Creating mapping of buttons to functions.
Should be definied by derived class
'''
raise(Exception("init_trigger_maps"))
def set_deadzone(self, val):
'''
sets the minimim throttle for recording
'''
self.dead_zone = val
def print_controls(self):
'''
print the mapping of buttons and axis to functions
'''
pt = PrettyTable()
pt.field_names = ["control", "action"]
for button, control in self.button_down_trigger_map.items():
pt.add_row([button, control.__name__])
for axis, control in self.axis_trigger_map.items():
pt.add_row([axis, control.__name__])
print("Joystick Controls:")
print(pt)
# print("Joystick Controls:")
# print("On Button Down:")
# print(self.button_down_trigger_map)
# print("On Button Up:")
# print(self.button_up_trigger_map)
# print("On Axis Move:")
# print(self.axis_trigger_map)
def set_button_down_trigger(self, button, func):
'''
assign a string button descriptor to a given function call
'''
self.button_down_trigger_map[button] = func
def set_button_up_trigger(self, button, func):
'''
assign a string button descriptor to a given function call
'''
self.button_up_trigger_map[button] = func
def set_axis_trigger(self, axis, func):
'''
assign a string axis descriptor to a given function call
'''
self.axis_trigger_map[axis] = func
def set_tub(self, tub):
self.tub = tub
def erase_last_N_records(self):
if self.tub is not None:
try:
self.tub.erase_last_n_records(self.num_records_to_erase)
print('erased last %d records.' % self.num_records_to_erase)
except:
print('failed to erase')
def on_throttle_changes(self):
'''
turn on recording when non zero throttle in the user mode.
'''
if self.auto_record_on_throttle:
self.recording = (abs(self.throttle) > self.dead_zone and self.mode == 'user')
def emergency_stop(self):
'''
initiate a series of steps to try to stop the vehicle as quickly as possible
'''
print('E-Stop!!!')
self.mode = "user"
self.recording = False
self.constant_throttle = False
self.estop_state = self.ES_START
self.throttle = 0.0
def update(self):
'''
poll a joystick for input events
'''
#wait for joystick to be online
while self.running and self.js is None and not self.init_js():
time.sleep(3)
while self.running:
button, button_state, axis, axis_val = self.js.poll()
if axis is not None and axis in self.axis_trigger_map:
'''
then invoke the function attached to that axis
'''
self.axis_trigger_map[axis](axis_val)
if button and button_state >= 1 and button in self.button_down_trigger_map:
'''
then invoke the function attached to that button
'''
self.button_down_trigger_map[button]()
if button and button_state == 0 and button in self.button_up_trigger_map:
'''
then invoke the function attached to that button
'''
self.button_up_trigger_map[button]()
time.sleep(self.poll_delay)
def set_steering(self, axis_val):
self.angle = self.steering_scale * axis_val
#print("angle", self.angle)
def set_throttle(self, axis_val):
#this value is often reversed, with positive value when pulling down
self.last_throttle_axis_val = axis_val
self.throttle = (self.throttle_dir * axis_val * self.throttle_scale)
#print("throttle", self.throttle)
self.on_throttle_changes()
def toggle_manual_recording(self):
'''
toggle recording on/off
'''
if self.auto_record_on_throttle:
print('auto record on throttle is enabled.')
elif self.recording:
self.recording = False
else:
self.recording = True
print('recording:', self.recording)
def increase_max_throttle(self):
'''
increase throttle scale setting
'''
self.throttle_scale = round(min(1.0, self.throttle_scale + 0.01), 2)
if self.constant_throttle:
self.throttle = self.throttle_scale
self.on_throttle_changes()
else:
self.throttle = (self.throttle_dir * self.last_throttle_axis_val * self.throttle_scale)
print('throttle_scale:', self.throttle_scale)
def decrease_max_throttle(self):
'''
decrease throttle scale setting
'''
self.throttle_scale = round(max(0.0, self.throttle_scale - 0.01), 2)
if self.constant_throttle:
self.throttle = self.throttle_scale
self.on_throttle_changes()
else:
self.throttle = (self.throttle_dir * self.last_throttle_axis_val * self.throttle_scale)
print('throttle_scale:', self.throttle_scale)
def toggle_constant_throttle(self):
'''
toggle constant throttle
'''
if self.constant_throttle:
self.constant_throttle = False
self.throttle = 0
self.on_throttle_changes()
else:
self.constant_throttle = True
self.throttle = self.throttle_scale
self.on_throttle_changes()
print('constant_throttle:', self.constant_throttle)
def toggle_mode(self):
'''
switch modes from:
user: human controlled steer and throttle
local_angle: ai steering, human throttle
local: ai steering, ai throttle
'''
if self.mode == 'user':
self.mode = 'local_angle'
elif self.mode == 'local_angle':
self.mode = 'local'
else:
self.mode = 'user'
print('new mode:', self.mode)
def chaos_monkey_on_left(self):
self.chaos_monkey_steering = -0.2
def chaos_monkey_on_right(self):
self.chaos_monkey_steering = 0.2
def chaos_monkey_off(self):
self.chaos_monkey_steering = None
def run_threaded(self, img_arr=None):
self.img_arr = img_arr
'''
process E-Stop state machine
'''
if self.estop_state > self.ES_IDLE:
if self.estop_state == self.ES_START:
self.estop_state = self.ES_THROTTLE_NEG_ONE
return 0.0, -1.0 * self.throttle_scale, self.mode, False
elif self.estop_state == self.ES_THROTTLE_NEG_ONE:
self.estop_state = self.ES_THROTTLE_POS_ONE
return 0.0, 0.01, self.mode, False
elif self.estop_state == self.ES_THROTTLE_POS_ONE:
self.estop_state = self.ES_THROTTLE_NEG_TWO
self.throttle = -1.0 * self.throttle_scale
return 0.0, self.throttle, self.mode, False
elif self.estop_state == self.ES_THROTTLE_NEG_TWO:
self.throttle += 0.05
if self.throttle >= 0.0:
self.throttle = 0.0
self.estop_state = self.ES_IDLE
return 0.0, self.throttle, self.mode, False
if self.chaos_monkey_steering is not None:
return self.chaos_monkey_steering, self.throttle, self.mode, False
return self.angle, self.throttle, self.mode, self.recording
def run(self, img_arr=None):
raise Exception("We expect for this part to be run with the threaded=True argument.")
return None, None, None, None
def shutdown(self):
#set flag to exit polling thread, then wait a sec for it to leave
self.running = False
time.sleep(0.5)
class LogitechJoystickController(JoystickController):
'''
A Controller object that maps inputs to actions
credit:
https://github.com/kevkruemp/donkeypart_logitech_controller/blob/master/donkeypart_logitech_controller/part.py
'''
def __init__(self, *args, **kwargs):
super(LogitechJoystickController, self).__init__(*args, **kwargs)
def init_js(self):
'''
attempt to init joystick
'''
try:
self.js = LogitechJoystick(self.dev_fn)
self.js.init()
except FileNotFoundError:
print(self.dev_fn, "not found.")
self.js = None
return self.js is not None
def init_trigger_maps(self):
'''
init set of mapping from buttons to function calls
'''
self.button_down_trigger_map = {
'start': self.toggle_mode,
'B': self.toggle_manual_recording,
'Y': self.erase_last_N_records,
'A': self.emergency_stop,
'back': self.toggle_constant_throttle,
"R1" : self.chaos_monkey_on_right,
"L1" : self.chaos_monkey_on_left,
}
self.button_up_trigger_map = {
"R1" : self.chaos_monkey_off,
"L1" : self.chaos_monkey_off,
}
self.axis_trigger_map = {
'right_stick_horz': self.set_steering,
'left_stick_vert': self.set_throttle,
'dpad_leftright' : self.on_axis_dpad_LR,
'dpad_up_down' : self.on_axis_dpad_UD,
}
def on_axis_dpad_LR(self, val):
if val == -1.0:
self.on_dpad_left()
elif val == 1.0:
self.on_dpad_right()
def on_axis_dpad_UD(self, val):
if val == -1.0:
self.on_dpad_up()
elif val == 1.0:
self.on_dpad_down()
def on_dpad_up(self):
self.increase_max_throttle()
def on_dpad_down(self):
self.decrease_max_throttle()
def on_dpad_left(self):
print("dpad left un-mapped")
def on_dpad_right(self):
print("dpad right un-mapped")