From your view should I get a Steam Controller or an Xbox One gamepad? Like messing with the emulators and seeing how. Software drivers for the PS4 but the steam client seems to have the.
Xbox One Controller Pc Driver
- Dec 20, 2015 - ok, so I'm trying to play portal 2 using 2 steam controllers in local coop mode. I got it to work almost using the xbox 360 profile; but, the right.
- How to 'Emulate' Original Xbox Games Sign in to follow this. Until it was later ported the PC, Fable was exclusive to the Xbox.The Fable Anniversary package can be found on steam, which includes native Xbox controller support, widescreen resolutions up to 2160p, improved graphics and textures, and the “Lost Chapters.
This project is a standalone userland driver for the steam controller to be used where the steam client can't be installed.
Two modes are already working with haptic feedback:
- xbox360: gamepad emulator
- desktop: mouse, keyboard mode
The final purpose is to have support for custom mapping created with a stand-alone tool or imported from steam vdf files.
The initial target is GNU/Linux, but I'll welcome any contributor that want to port input generation for other OS (OSX, Windows, *BSD, Android/Linux, ...)
This project is licensed under MIT.
Installation
- Install dependencies
- for python 3.4+:
- Install python libusb1
sudo pip install libusb1
- Install python libusb1
- for python 2.7+ (you might have to use pip2 for python2.7 or pip3 for python3):
- Install python libusb1
sudo pip install libusb1
- Install python enum backport
sudo pip install enum34
- Install python libusb1
- Get the project tarbal or clone it from github:
wget https://github.com/ynsta/steamcontroller/archive/master.tar.gz
tar xf master.tar.gz
cd steamcontroller-master
git clone https://github.com/ynsta/steamcontroller.git
cd steamcontroller
- Install python modules and scripts with
sudo python setup.py install
- Install udev rules (if not already done for steam) in
/etc/udev/rules.d/99-steam-controller.rules
:
- Reload udev
sudo udevadm control --reload
Usage
- Exit Steam.
- Start:
sc-xbox.py start
for the simple xbox360 emulator.sc-desktop.py start
for the desktop keyboard/mouse mode.
- Stop:
sc-xbox.py stop
orsc-desktop.py stop
Other test tools are installed:
sc-dump.py
: Dump raw message from the controller.sc-gyro-plot.py
: Plot curves from gyro data (require pyqtgraph and pyside installed).sc-test-cmsg.py
: Permit to send control message to the contoller. For example:echo 8f07005e 015e01f4 01000000 | sc-test-cmsg.py
will make the controller beep.vdf2json.py
: Convert Steam VDF file to JSON.json2vdf.py
: Convert back JSON to VDF file.
TODO / Status
- Finish to guess each bytes/bits roles in the usb message (Done).
- Understand how to configure haptic feed backs (Done).
- Understand how to enable gyroscopes (Done).
- Redirect inputs to userland events via uinput (Done).
- Xbox360 uintput device (Done)
- Keyboard uintput device (Done)
- Mouse uintput device with trackball model (Done)
- Create a simple xbox event mapper (Done)
- Create a configurable event mapper (Paused):
- Create an event mapper that reads steam vdf files and maps usb inputs to uinput events.
- Create fallback mappings for unsupported config options.
- Get all possible configurations of steam config file.
- Create a haptic feedback Manager (Paused)
- Measure latencies.
- Support multiple controller in wireless mode (Done)
- Support multiple controller in wired mode
- Support correct deconnexion of controllers (with 2sec press on steam button) (Done)
- Add support to control light intensity
- Add support for gyroscopes in the event mapper:
- Enable gyro condition (always on, or on specific button event)
- Use gyro as mouse (add yaw, pitch, roll accell to mouse event with a scale factor).
- Use gyro as an axis (compute yawn, pitch or roll from quaternion, normalize to -32768 32768 and use it as an axe)
- Optimize event mapper.
- Verify if pairing between a controller and a dongle is possible without steam or add a tools to do it.
- Add support to change 'music' for power on off.
- Create an tool to convert musical notes, to haptic messages.
Control Messages Capture
sudo modprobe usbmon
lsusb -d 28de:1142
and look at bus and device numbers (B & D)sudo cat /sys/kernel/debug/usb/usbmon/Bu | grep Co:B:D:0
(B=3 and D=003 for example)
Disable auto feedback on rpad:
Xbox Controller To Steam
81000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
Enable Gyro
87153284 03180000 31020008 07000707 00301400 2f010000 00000000 00000000
Disable Gyro
87153284 03180000 31020008 07000707 00300000 2f010000 00000000 00000000
Stop Controller
9f046f66 66210000 ...
Control Messages formats
Haptic feedback format:
- u8 :
8f
- u8 :
07
- u8 :
00
for Right01
for Left - u16 : Amplitude
- u16 : Period
- u16 : count
- pads the end with
00