Commit Graph

87 Commits (7f3c2525e6928ff6df7e19d8c01172c5ebacc02e)

Author SHA1 Message Date
Zach Hilman 2a16fd7ffc settings: Add config option to set RNG seed 7 years ago
Frederic Laing d34d0bfc87 configure_system: Fix compiler warning 7 years ago
Zach Hilman 702622b8f1 profile_manager: Load user icons, names, and UUIDs from system save 7 years ago
Zach Hilman e7e3d5898e settings: Add users and current_user settings and remove username 7 years ago
David 50e4e81fd3 Added Amiibo support (#1390)
* Fixed conflict with nfp

* Few fixups for nfc

* Conflict 2

* Fixed AttachAvailabilityChangeEvent

* Conflict 3

* Fixed byte padding

* Refactored amiibo to not reside in "System"

* Removed remaining references of nfc from system

* used enum for Nfc GetStateOld

* Added missing newline

* Moved file operations to front end

* Conflict 4

* Amiibos now use structs and added mutexes

* Removed amiibo_path
7 years ago
bunnei ee7c2dbf5a config: Rename use_accurate_framebuffers -> use_accurate_gpu_emulation.
- This will be used as a catch-all for slow-but-accurate GPU emulation paths.
7 years ago
Zach Hilman 95dff555a4 settings: Add program_args string setting 7 years ago
fearlessTobi 4d139943f2 Port web_service from Citra 7 years ago
bunnei 926dd41587
Merge pull request #1163 from FearlessTobi/add-audio-stretching
audio_core: Add audio stretching support
7 years ago
fearlessTobi 500e81429a hid: Implement ReloadInputDevices 7 years ago
fearlessTobi a6efff8b02 Add audio stretching support 7 years ago
Zach Hilman b2268f1f8d settings: Save and load NAND/SD dirs from config 7 years ago
fearlessTobi ba8ff096fd Port #3353 from Citra 7 years ago
bunnei 2b06301dbf
Merge pull request #849 from DarkLordZach/xci
XCI and Encrypted NCA Support
7 years ago
David c1d54f4aea Added ability to change username & language code in the settings ui. Added IProfile::Get and SET::GetLanguageCode for libnx tests (#851) 7 years ago
Zach Hilman df5b75694f Remove files that are not used 7 years ago
bunnei ca84b530a3 audio_core: Add configuration settings. 7 years ago
bunnei 1bbbd26563 settings: Add a configuration for use_accurate_framebuffers. 7 years ago
bunnei 9bf2a428f9 core: Add a configuration setting for use_multi_core. 7 years ago
Max Thomas 266703b50e hid: Tweaks, Analog Sticks (#435)
* hid: Update mouse/keyboard state

* hid: Working analog sticks

* hid: Nits

* hid: Nits

* hid: Update mystery sections

* hid: Tweaks
7 years ago
bunnei 212a6ab937 settings: Remove unused CpuCore class. 7 years ago
bunnei 94f4009c3b config: Use simplified checkbox (from Citra) for CPU JIT. 7 years ago
bunnei 5ecf152c8e config: Rename is_docked to use_docked_mode to be consistent with other config bools. 7 years ago
bunnei 12b05c719e config: Add setting for whether the system is docked or not. 7 years ago
James Rowe 096be16636 Format: Run the new clang format on everything 7 years ago
bunnei 8e2f62c6a5 settings: Fix button mappings array to have correct entries. 7 years ago
shinyquagsire23 801d6c1b6f settings: Screenshot button 7 years ago
shinyquagsire23 74aa14c9b4 settings: adjust button configs for Switch controllers 7 years ago
James Rowe 18ca3ca751 Removing unused settings and yuzu rebranding 7 years ago
MerryMage b628192bf2 configuration: Add cpu_core configuration option 7 years ago
bunnei 0906de9a14 hle: Remove a large amount of 3ds-specific service code. 8 years ago
B3n30 28c726f205 WebService: Verify username and token (#2930)
* WebService: Verify username and token; Log errors in PostJson

* Fixup: added docstrings to the functions

* Webservice: Added Icons to the verification, imrpved error detection in cpr, fixup nits

* fixup: fmt warning
8 years ago
bunnei 75cd28a7cc Merge pull request #2899 from wwylele/touch-refactor
Refactor touch input into a TouchDevice
8 years ago
bunnei c781aea947 settings: Add enable_telemetry, citra_username, and citra_token. 8 years ago
ThaMighty90 3cdf854e44 SidebySide Layout (#2859)
* added a SidebySide Layout

* Reworked, so both screen have the same height and cleaned up screen translates.

* added the option in the UI, hope this is the right way to do it. formated framebuffer_layout.cpp

* delete the x64 files

* deleted ui_configure_graphics.h

* added Option for the Layout in the xml

* got rid of SIDE_BY_SIDE_ASPECT_RATIO because it was useless. pulled translate into variables

* changed shift variables to u32 and moved them in their respective branch. remove notr="true" for the Screen layout drop down

* reworked intends :). changed function description for SideFrameLayout

* some description reworking
8 years ago
wwylele c84e60b470 HID: use TouchDevice for touch pad 8 years ago
wwylele 867eabd6b7 HID: use MotionDevice for Accelerometer and Gyroscope 8 years ago
bunnei 8abf808854 settings: Add telemetry endpoint URL. 8 years ago
bunnei ccc3985cc0 Merge pull request #2512 from SonofUgly/custom-layout
Add custom layout settings.
8 years ago
wwylele e02c4b7195 Input: remove unused stuff & clean up
1. removed zl, zr and c-stick from HID::PadState. They are handled by IR, not HID
2. removed button handling in EmuWindow
3. removed key_map
4. cleanup #include
8 years ago
wwylele 70420272ca HID: use AnalogDevice 8 years ago
wwylele 1d1329af23 HID: use ButtonDevice 8 years ago
SonofUgly e0a4450bbd Add custom layout settings. 8 years ago
Yuri Kunde Schlesner 1410aa1824 Merge pull request #2368 from wwylele/camera-2
CAM: build the service framework with a dummy implementation
8 years ago
Kloen Lansfiel f852369986 SDL: Select audio device (#2403)
* Initial Commit

Added Device logic to Sinks
Started on UI for selecting devices

Removed redundant import

* Audio Core: Complete Device Switching

Complete the device switching implementation by allowing the output
device to be loaded, changed and saved through the configurations menu.

Worked with the Sink abstraction and tuned the "Device Selection"
configuration so that the Device List is automatically populated when
the Sink is changed.
This hopefully addresses the concerns and recommendations mentioned in
the comments of the PR.

* Clean original implementation.

* Refactor GetSinkDetails
8 years ago
wwylele cf3a272332 CAM: implement basic camera functions with a blank camera 8 years ago
bunnei 22ad9094e6 config: Add option for specifying screen resolution scale factor. 8 years ago
wwylele 84e78790ab Config: auto-select region and language 8 years ago
emmauss c4e4fa53d9 Implement Frame rate limiter (#2223)
* implement frame limiter

* fixes
8 years ago
Emmanuel Gil Peyrot 0820c99462 GPU: Remove the broken frame_skip option.
Fixes #1960.
8 years ago