/usr/bin/xboxdrvctl is in xboxdrv 0.8.5-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 | #!/usr/bin/python
## Xbox360 USB Gamepad Userspace Driver
## Copyright (C) 2011 Ingo Ruhnke <grumbel@gmx.de>
##
## 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 3 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, see <http://www.gnu.org/licenses/>.
import dbus
import sys
import re
from optparse import OptionParser, OptionGroup
parser = OptionParser("Usage: %prog [OPTIONS]\n"
"Remote control application for the xboxdrv daemon")
group = OptionGroup(parser, "D-Bus Options")
group.add_option("-b", "--bus", metavar="BUS",
dest="connection", default="org.seul.Xboxdrv",
help="connect to D-Bus bus BUS")
group.add_option("-o", "--object", metavar="OBJ",
dest="object", default="connect List all resource files",
help="use D-Bus object OBJ")
parser.add_option_group(group)
group = OptionGroup(parser, "Xboxdrv Options")
group.add_option("-S", "--status",
dest="status", action="store_true",
help="print controller status")
group.add_option("-s", "--slot", metavar="SLOT", type="int",
dest="slot",
help="use slot SLOT for actions")
group.add_option("-l", "--led", metavar="NUM", type="int",
dest="led",
help="set LED")
group.add_option("-r", "--rumble", metavar="L:R",
dest="rumble",
help="print controller status")
group.add_option("-c", "--config", metavar="NUM", type="int",
dest="config",
help="switches to controller configuration NUM")
group.add_option("--shutdown", action="store_true",
dest="shutdown",
help="shuts down the daemon")
parser.add_option_group(group)
(options, args) = parser.parse_args()
bus = dbus.SessionBus()
if options.status:
daemon = bus.get_object("org.seul.Xboxdrv", '/org/seul/Xboxdrv/Daemon')
sys.stdout.write(daemon.Status())
elif options.shutdown:
daemon = bus.get_object("org.seul.Xboxdrv", '/org/seul/Xboxdrv/Daemon')
daemon.Shutdown()
else:
if (options.led or options.rumble or options.config) and options.slot == None:
print "Error: --slot argument required"
exit()
else:
if options.slot != None:
slot = bus.get_object("org.seul.Xboxdrv", '/org/seul/Xboxdrv/ControllerSlots/%d' % options.slot)
if options.led != None:
slot.SetLed(options.led)
if options.rumble:
m = re.match('^(\d+):(\d+)$', options.rumble)
if not m:
print "Error: invalid argument to --rumble"
exit()
else:
left = int(m.group(1))
right = int(m.group(2))
slot.SetRumble(left, right)
if options.config != None:
slot.SetConfig(options.config)
else:
parser.print_help()
# EOF #
|