summaryrefslogtreecommitdiff
path: root/Source/Android/app/src
AgeCommit message (Collapse)Author
2023-03-11Android: Remove support for the old config systemJosJuice
All settings that we care about from an Android perspective are now supported by the new config system, so we can remove all the Android code for the old config system. This should have no impact on users.
2023-03-11Migrate game INI profile setting to new config systemJosJuice
2023-03-11Merge pull request #11385 from JosJuice/android-input-overhaulJosJuice
Android input overhaul
2023-03-08Android: Implement DocumentProviderRobin Kertels
This allows users to access the Dolphin user directory.
2023-03-08Android: Center list view headersRobin Kertels
2023-03-08Android: Only show divider in settings for headersRobin Kertels
2023-03-07Android: Use coroutine for system updatesCharles Lombardo
2023-03-07Android: Switch to indeterminate progress bar on system update cancelCharles Lombardo
2023-03-07Android: Remove hardcoded strings from system update dialogsCharles Lombardo
2023-03-07Android: Remove orientation lock on system update dialogCharles Lombardo
2023-03-07Android: Convert OnlineUpdateRegionSelectDialogFragment to KotlinCharles Lombardo
2023-03-07Android: Convert SystemMenuNotInstalledDialogFragment to KotlinCharles Lombardo
2023-03-07Android: Convert SystemUpdateResultFragment to KotlinCharles Lombardo
2023-03-07Android: Convert WiiUtils to KotlinCharles Lombardo
2023-03-07Android: Convert SystemUpdateViewModel to KotlinCharles Lombardo
2023-03-07Android: Convert SystemUpdateProgressBarDialogFragment to KotlinCharles Lombardo
2023-03-07Android: Disable input device sensor input due to crashJosJuice
2023-03-07Android: Add "more settings" button to overlay control setting dialogJosJuice
Some people might wonder where the ability to select an extension and the Sideways Wii Remote went. This button will take them to the general settings, which is where those settings now live. At some point in the future, we should probably move everything to the general settings. But this pull request is already big enough as it is!
2023-03-07Android: Change how the overlay controller setting works, part 2JosJuice
The previous commit wasn't enough for getting inputs to work for controllers 2-4.
2023-03-07Android: Change how the overlay controller setting worksJosJuice
Up until now, there have been two settings on Android that stored the selected Wii Remote extension: the normal one that's also used on PC, and a SharedPreferences one that's used by the overlay controls to determine what controls to show. It is possible for these two to end up out of sync, and my input changes have made that more likely to happen. To fix this, let's rework how the overlay controller setting works. We don't want it to encode the currently selected Wii Remote extension. However, we can't simply get rid of the setting, because for some Wii games we need the ability to switch between a GameCube controller and a Wii Remote. What this commit does is give the user the option to select any of the 4 GameCube controllers and any of the 4 Wii Remotes. (Before, controllers 2-4 weren't available in the overlay.) Could be useful for things like the Psycho Mantis fight in Metal Gear Solid. I'm also switching from SharedPreferences to Dolphin.ini while I'm at it.
2023-03-07Android: Remove the in-emulation IR sensitivity optionsJosJuice
This too can be set in the normal controller settings now.
2023-03-07Android: Remove the in-emulation motion control optionsJosJuice
You can set this in the normal controller settings now.
2023-03-07Android: Allow changing controller settings during emulationJosJuice
2023-03-07Android: Add the advanced input mapping dialogJosJuice
It's missing a lot of features from the PC version for now, like buttons for inserting functions and the ability to see what the expression evaluates to. I mostly just wanted to get something in place so you can set up rumble. Co-authored-by: Charles Lombardo <clombardo169@gmail.com>
2023-03-03Android: Add selecting input profile per gameJosJuice
2023-03-03Android: Add input profile managementJosJuice
Co-authored-by: Charles Lombardo <clombardo169@gmail.com>
2023-03-03Android: Show warning when using old pre-defined controller INIsJosJuice
Co-authored-by: Charles Lombardo <clombardo169@gmail.com>
2023-03-03Android: Add Default and Clear actions for controllersJosJuice
2023-03-03Android: Prevent showing mapping dialog with no device selectedJosJuice
2023-03-03Android: Add "Create mappings for other devices"JosJuice
2023-03-03Android: Add input device selectionJosJuice
2023-03-03Android: Implement enabling/disabling control groupsJosJuice
All this code for just a single checkbox... Ah well, it has to be done
2023-03-03Android: Move Sideways Wii Remote setting one submenu upJosJuice
A slight departure from DolphinQt, but I think it makes sense, because it will make the important Sideways Wii Remote setting easier to find.
2023-03-03Android: Split Wii Remote settings into submenusJosJuice
Too much stuff on one screen otherwise. This split matches DolphinQt.
2023-03-03Android: Add extension selectionJosJuice
2023-03-03Android: Add NumericSetting supportJosJuice
2023-03-03Android: Add new input mapping implementationJosJuice
2023-03-03Android: Remove old input mapping implementationJosJuice
This old code is of no use now that ButtonManager is gone.
2023-03-03Android: Remove copyAsset's overwrite parameterJosJuice
Because of the previous commit, this is no longer needed.
2023-03-03Android: Stop extracting pre-defined controller INIsJosJuice
2023-03-03ControllerInterface/Android: Implement rumbleJosJuice
2023-03-03ControllerInterface/Android: Automatically suspend sensorsJosJuice
This is a battery-saving measure. Whether a sensor should be suspended is determined in the same way as whether key events and motion events should be handled by the OS rather than consumed by Dolphin.
2023-03-03ControllerInterface/Android: Implement sensor input for InputDevicesJosJuice
This functionality was added in Android 12 to let apps get motion data for gamepads.
2023-03-03ControllerInterface/Android: Implement sensor inputJosJuice
2023-03-03ControllerInterface/Android: Implement hotplugJosJuice
2023-03-03ControllerInterface/Android: Handle input eventsJosJuice
Android doesn't let us poll inputs whenever we want. Instead, we listen to input events (activities will have to forward them to the input backend), and store the received values in atomic variables in the Input classes. This is similar in concept to how ButtonManager worked, but without its homegrown second input mapping system.
2023-03-03Android: Remove old rumble implementationJosJuice
2023-03-03Android: Remove old motion input implementationJosJuice
2023-03-03ControllerInterface/Android: Rip out ButtonManagerJosJuice
ButtonManager is very different from how a normal input backend works, and is making it hard for us to improve controller support on Android. The following commits will add a new input backend in its place.
2023-03-02Merge pull request #11605 from JosJuice/android-mappings-buttonMai
Android: Add a button for accessing controller mappings