summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Android
AgeCommit message (Collapse)Author
2016-01-06Move Android JNI bits from DolphinWX to the Android folder.Ryan Houdek
2016-01-04Android: More analog input configurationsPhatcat
Lets the user set the following in intervals of 10 between 10 and 100; - Stick/Radius (default 100,000000) - Triggers/Threshold (default 90,000000) - Tilt/Modifier/Range (default 50,000000) + mapped Tilt/Modifier button to the configurations for wiimotes & nunchuks
2016-01-04Android: Added categories to input controlsPhatcat
- Seperates input configurations into categories - Reworked input configurations to reuse more strings
2016-01-04Android: Revision of PR 3253 (Wiimote controls)Phatcat
- Fix small error in NativeLibrary (line 141) - Fix faulty indentment in arrays.xml - Rework numbering system to be more accessible.
2015-12-02Wiimote + Extensions for AndroidPhatcat
2015-09-04[Android] Fix multi-gamecube controller input, config changesRyan Houdek
2015-07-21Add Wiimote support to the Android backend.Ryan Houdek
Not actually wired up to the Android UI for configuration.
2015-05-25Set copyright year to when a file was createdTillmann Karras
2015-05-25Update license headers to GPLv2+Tillmann Karras
2015-05-21ButtonManager: Pass strings by const referenceLioncash
2015-02-24[Android] Stop eating button events we don't handle.Ryan Houdek
We were eating /all/ button events except the back button. This would cause issues where Android wouldn't receive button press events for things like volume rockers. So you couldn't change the audio ingame, even if that button isn't bound to an input. Now we return to Android if we've handled that button press, so it works fine.
2014-11-24More formatting and consistency fixesStevoisiak
2014-09-22Android: Silence some more warnings.Rohit Nirmal
2014-08-19GLInterface: Destroy GLWinJasper St. Pierre
Everything is now safely tucked inside each individual GLInterface.
2014-07-23Prevent potential buffer overflow in sscanfMoshe Kaplan
2014-06-16Use only section-based ini reading.Lioncash
2014-04-24[Android] Fix a bunch of input bugs.Ryan Houdek
Looking at the old code for the ButtonManager was a brainfsck. This fixes a ton of bugs I kept uncovering as I was moving along. Fixes the gamepad configuration file being incorrect. No longer treats touchscreen in a special way. Ends up as a regular device with a "Touchscreen" device name. Was incorrectly converting a index from integer to ButtonType. Wouldn't work due to the addition of some unused(in JNI) enumerators in ButtonType. Fixes an issue where a map had a key as an axis which was causing its binding to be overwritten for every axis that was used twice (eg main stick left and right); Fixes Triggers not working at all. Fixes DPad not working at all. Fixes C-Stick only half working. Removes touch screen specific nativelibrary types onTouchAxisEvent and onTouchEvent. Adds a configuration version configuration option. Allows easy configuration overwriting if the options need to be changed during updating. Supersedes github PR #291.
2014-03-29Remove all trailing whitespaces from our codebase.Pierre Bourdon
2014-02-28Various changes suggested by cppcheckTillmann Karras
- remove unused variables - reduce the scope where it makes sense - correct limits (did you know that strcat()'s last parameter does not include the \0 that is always added?) - set some free()'d pointers to NULL
2014-02-23Make DolphinWX/ mostly IWYU clean.Pierre Bourdon
2014-02-18Convert all includes to relative paths.Lioncash
2014-02-17Second and final pass of clearing out tabs.Lioncash
2014-02-13Turn loops into range-based formTillmann Karras
and some things suggested by cppcheck and compiler warnings.
2014-02-13Fix IniFile to use string& instead of char*Matthew Parlane
Also removes .c_str() usages where found.
2014-01-20Move GLInterface.h into GLInterface directoryScott Moreau
2014-01-17[GLExtensions] Remove a bunch of unneeded headers. Fix Linux+EGL compiling. ↵Ryan Houdek
Move include to glx.h around to work around it including global GL/gl.h
2013-12-31Remove unnecessary Src/ foldersJasper St. Pierre