aboutsummaryrefslogtreecommitdiff
path: root/platform/x11/joypad_linux.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright statements to 2018Rémi Verschelde2018-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* X11: Fix gamepads not being added whith udev.Andreas Haas2017-09-141-1/+0
| | | | | Seems like this property isn't present on some gamepads... Fixes #10958
* Use HTTPS URL for Godot's website in the headersRémi Verschelde2017-08-271-1/+1
|
* Add "Godot Engine contributors" copyright lineRémi Verschelde2017-04-081-0/+1
|
* Input: Remove usage of platform dependent event IDs.Andreas Haas2017-03-261-8/+7
| | | | | The ID property for InputEvents is set by `SceneTree` when sending the event down the tree. So there's no need for the platform specific code to set this value when it will later be overriden anyway...
* A Whole New World (clang-format edition)Rémi Verschelde2017-03-051-74/+74
| | | | | | | | | | | | | | | | | | | | | | | | I can show you the code Pretty, with proper whitespace Tell me, coder, now when did You last write readable code? I can open your eyes Make you see your bad indent Force you to respect the style The core devs agreed upon A whole new world A new fantastic code format A de facto standard With some sugar Enforced with clang-format A whole new world A dazzling style we all dreamed of And when we read it through It's crystal clear That now we're in a whole new world of code
* Better handling of joypad device IDs.Andreas Haas2017-02-261-10/+1
| | | | | | | Now InputDefault is responsible for giving out joypad device IDs to the platform, instead of each platform handling this itself. This makes it possible for c++ modules to add their own "custom" gamepad devices, without the risk of messing up events in case the user also has regular gamepads attached (using the OS code). For now, it's implemented for the main desktop platforms. Possible targets for future work: android, uwp, javascript
* Rename "joypad_linux" class to "JoypadLinux"Andreas Haas2017-01-081-21/+20
| | | | Named this class in GodotCase, so it fits with the rest of the codebase.
* Finish replacement of joystick by joypadRémi Verschelde2017-01-081-0/+561
Some parts were forgotten in 547a577.