diff options
| author | 2018-01-16 18:05:21 +0000 | |
|---|---|---|
| committer | 2018-01-16 18:05:21 +0000 | |
| commit | e35644c00533c797888a23420aae90b07e0da184 (patch) | |
| tree | 4b5464207a2bf8355cd7b2b732fc3c30d3524d24 /src | |
| parent | travis: Use more recent cmake on macOS (diff) | |
| download | yuzu-e35644c00533c797888a23420aae90b07e0da184.tar.gz yuzu-e35644c00533c797888a23420aae90b07e0da184.tar.xz yuzu-e35644c00533c797888a23420aae90b07e0da184.zip | |
clang-format
Diffstat (limited to 'src')
25 files changed, 54 insertions, 63 deletions
diff --git a/src/core/arm/arm_interface.h b/src/core/arm/arm_interface.h index 531875006..5ae60214e 100644 --- a/src/core/arm/arm_interface.h +++ b/src/core/arm/arm_interface.h | |||
| @@ -39,7 +39,8 @@ public: | |||
| 39 | Run(1); | 39 | Run(1); |
| 40 | } | 40 | } |
| 41 | 41 | ||
| 42 | virtual void MapBackingMemory(VAddr address, size_t size, u8* memory, Kernel::VMAPermission perms) {} | 42 | virtual void MapBackingMemory(VAddr address, size_t size, u8* memory, |
| 43 | Kernel::VMAPermission perms) {} | ||
| 43 | 44 | ||
| 44 | /// Clear all instruction cache | 45 | /// Clear all instruction cache |
| 45 | virtual void ClearInstructionCache() = 0; | 46 | virtual void ClearInstructionCache() = 0; |
diff --git a/src/core/hle/ipc.h b/src/core/hle/ipc.h index ec08be0f4..88ba105e5 100644 --- a/src/core/hle/ipc.h +++ b/src/core/hle/ipc.h | |||
| @@ -19,7 +19,6 @@ constexpr size_t COMMAND_BUFFER_LENGTH = 0x100 / sizeof(u32); | |||
| 19 | // TODO(yuriks): These will probably go away once translation is implemented inside the kernel. | 19 | // TODO(yuriks): These will probably go away once translation is implemented inside the kernel. |
| 20 | constexpr auto ERR_INVALID_HANDLE = Kernel::ERR_INVALID_HANDLE_OS; | 20 | constexpr auto ERR_INVALID_HANDLE = Kernel::ERR_INVALID_HANDLE_OS; |
| 21 | 21 | ||
| 22 | |||
| 23 | enum class ControlCommand : u32 { | 22 | enum class ControlCommand : u32 { |
| 24 | ConvertSessionToDomain = 0, | 23 | ConvertSessionToDomain = 0, |
| 25 | ConvertDomainToSession = 1, | 24 | ConvertDomainToSession = 1, |
| @@ -81,13 +80,13 @@ struct BufferDescriptorX { | |||
| 81 | u32_le address_bits_0_31; | 80 | u32_le address_bits_0_31; |
| 82 | 81 | ||
| 83 | u32_le Counter() const { | 82 | u32_le Counter() const { |
| 84 | u32_le counter{ counter_bits_0_5 }; | 83 | u32_le counter{counter_bits_0_5}; |
| 85 | counter |= counter_bits_9_11 << 9; | 84 | counter |= counter_bits_9_11 << 9; |
| 86 | return counter; | 85 | return counter; |
| 87 | } | 86 | } |
| 88 | 87 | ||
| 89 | VAddr Address() const { | 88 | VAddr Address() const { |
| 90 | VAddr address{ address_bits_0_31 }; | 89 | VAddr address{address_bits_0_31}; |
| 91 | address |= static_cast<VAddr>(address_bits_32_35) << 32; | 90 | address |= static_cast<VAddr>(address_bits_32_35) << 32; |
| 92 | address |= static_cast<VAddr>(address_bits_36_38) << 36; | 91 | address |= static_cast<VAddr>(address_bits_36_38) << 36; |
| 93 | return address; | 92 | return address; |
| @@ -107,14 +106,14 @@ struct BufferDescriptorABW { | |||
| 107 | }; | 106 | }; |
| 108 | 107 | ||
| 109 | VAddr Address() const { | 108 | VAddr Address() const { |
| 110 | VAddr address{ address_bits_0_31 }; | 109 | VAddr address{address_bits_0_31}; |
| 111 | address |= static_cast<VAddr>(address_bits_32_35) << 32; | 110 | address |= static_cast<VAddr>(address_bits_32_35) << 32; |
| 112 | address |= static_cast<VAddr>(address_bits_36_38) << 36; | 111 | address |= static_cast<VAddr>(address_bits_36_38) << 36; |
| 113 | return address; | 112 | return address; |
| 114 | } | 113 | } |
| 115 | 114 | ||
| 116 | u64 Size() const { | 115 | u64 Size() const { |
| 117 | u64 size{ size_bits_0_31 }; | 116 | u64 size{size_bits_0_31}; |
| 118 | size |= static_cast<u64>(size_bits_32_35) << 32; | 117 | size |= static_cast<u64>(size_bits_32_35) << 32; |
| 119 | return size; | 118 | return size; |
| 120 | } | 119 | } |
| @@ -130,7 +129,7 @@ struct BufferDescriptorC { | |||
| 130 | }; | 129 | }; |
| 131 | 130 | ||
| 132 | VAddr Address() const { | 131 | VAddr Address() const { |
| 133 | VAddr address{ address_bits_0_31 }; | 132 | VAddr address{address_bits_0_31}; |
| 134 | address |= static_cast<VAddr>(address_bits_32_47) << 32; | 133 | address |= static_cast<VAddr>(address_bits_32_47) << 32; |
| 135 | return address; | 134 | return address; |
| 136 | } | 135 | } |
diff --git a/src/core/hle/kernel/hle_ipc.h b/src/core/hle/kernel/hle_ipc.h index 09caa43df..164c6db69 100644 --- a/src/core/hle/kernel/hle_ipc.h +++ b/src/core/hle/kernel/hle_ipc.h | |||
| @@ -151,13 +151,13 @@ public: | |||
| 151 | return domain != nullptr; | 151 | return domain != nullptr; |
| 152 | } | 152 | } |
| 153 | 153 | ||
| 154 | template<typename T> | 154 | template <typename T> |
| 155 | SharedPtr<T> GetCopyObject(size_t index) { | 155 | SharedPtr<T> GetCopyObject(size_t index) { |
| 156 | ASSERT(index < copy_objects.size()); | 156 | ASSERT(index < copy_objects.size()); |
| 157 | return DynamicObjectCast<T>(copy_objects[index]); | 157 | return DynamicObjectCast<T>(copy_objects[index]); |
| 158 | } | 158 | } |
| 159 | 159 | ||
| 160 | template<typename T> | 160 | template <typename T> |
| 161 | SharedPtr<T> GetMoveObject(size_t index) { | 161 | SharedPtr<T> GetMoveObject(size_t index) { |
| 162 | ASSERT(index < move_objects.size()); | 162 | ASSERT(index < move_objects.size()); |
| 163 | return DynamicObjectCast<T>(move_objects[index]); | 163 | return DynamicObjectCast<T>(move_objects[index]); |
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h index df3b4083e..4d9549e45 100644 --- a/src/core/hle/kernel/kernel.h +++ b/src/core/hle/kernel/kernel.h | |||
| @@ -105,7 +105,6 @@ public: | |||
| 105 | UNREACHABLE(); | 105 | UNREACHABLE(); |
| 106 | } | 106 | } |
| 107 | 107 | ||
| 108 | |||
| 109 | public: | 108 | public: |
| 110 | static unsigned int next_object_id; | 109 | static unsigned int next_object_id; |
| 111 | 110 | ||
diff --git a/src/core/hle/kernel/memory.cpp b/src/core/hle/kernel/memory.cpp index d990d0569..d2600cdd7 100644 --- a/src/core/hle/kernel/memory.cpp +++ b/src/core/hle/kernel/memory.cpp | |||
| @@ -95,10 +95,8 @@ MemoryRegionInfo* GetMemoryRegion(MemoryRegion region) { | |||
| 95 | } | 95 | } |
| 96 | } | 96 | } |
| 97 | 97 | ||
| 98 | void HandleSpecialMapping(VMManager& address_space, const AddressMapping& mapping) { | 98 | void HandleSpecialMapping(VMManager& address_space, const AddressMapping& mapping) {} |
| 99 | } | ||
| 100 | 99 | ||
| 101 | void MapSharedPages(VMManager& address_space) { | 100 | void MapSharedPages(VMManager& address_space) {} |
| 102 | } | ||
| 103 | 101 | ||
| 104 | } // namespace Kernel | 102 | } // namespace Kernel |
diff --git a/src/core/hle/kernel/mutex.h b/src/core/hle/kernel/mutex.h index 49b6b454e..38db21005 100644 --- a/src/core/hle/kernel/mutex.h +++ b/src/core/hle/kernel/mutex.h | |||
| @@ -41,9 +41,9 @@ public: | |||
| 41 | return HANDLE_TYPE; | 41 | return HANDLE_TYPE; |
| 42 | } | 42 | } |
| 43 | 43 | ||
| 44 | u32 priority; ///< The priority of the mutex, used for priority inheritance. | 44 | u32 priority; ///< The priority of the mutex, used for priority inheritance. |
| 45 | std::string name; ///< Name of mutex (optional) | 45 | std::string name; ///< Name of mutex (optional) |
| 46 | VAddr guest_addr; ///< Address of the guest mutex value | 46 | VAddr guest_addr; ///< Address of the guest mutex value |
| 47 | 47 | ||
| 48 | /** | 48 | /** |
| 49 | * Elevate the mutex priority to the best priority | 49 | * Elevate the mutex priority to the best priority |
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 9c60576c1..6b3fd13c9 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp | |||
| @@ -255,9 +255,8 @@ static ResultCode CancelSynchronization(Handle thread_handle) { | |||
| 255 | /// Attempts to locks a mutex, creating it if it does not already exist | 255 | /// Attempts to locks a mutex, creating it if it does not already exist |
| 256 | static ResultCode LockMutex(Handle holding_thread_handle, VAddr mutex_addr, | 256 | static ResultCode LockMutex(Handle holding_thread_handle, VAddr mutex_addr, |
| 257 | Handle requesting_thread_handle) { | 257 | Handle requesting_thread_handle) { |
| 258 | LOG_TRACE(Kernel_SVC, | 258 | LOG_TRACE(Kernel_SVC, "called holding_thread_handle=0x%08X, mutex_addr=0x%llx, " |
| 259 | "called holding_thread_handle=0x%08X, mutex_addr=0x%llx, " | 259 | "requesting_current_thread_handle=0x%08X", |
| 260 | "requesting_current_thread_handle=0x%08X", | ||
| 261 | holding_thread_handle, mutex_addr, requesting_thread_handle); | 260 | holding_thread_handle, mutex_addr, requesting_thread_handle); |
| 262 | 261 | ||
| 263 | SharedPtr<Thread> holding_thread = g_handle_table.Get<Thread>(holding_thread_handle); | 262 | SharedPtr<Thread> holding_thread = g_handle_table.Get<Thread>(holding_thread_handle); |
| @@ -522,9 +521,8 @@ static ResultCode CreateThread(Handle* out_handle, VAddr entry_point, u64 arg, V | |||
| 522 | 521 | ||
| 523 | Core::System::GetInstance().PrepareReschedule(); | 522 | Core::System::GetInstance().PrepareReschedule(); |
| 524 | 523 | ||
| 525 | LOG_TRACE(Kernel_SVC, | 524 | LOG_TRACE(Kernel_SVC, "called entrypoint=0x%08X (%s), arg=0x%08X, stacktop=0x%08X, " |
| 526 | "called entrypoint=0x%08X (%s), arg=0x%08X, stacktop=0x%08X, " | 525 | "threadpriority=0x%08X, processorid=0x%08X : created handle=0x%08X", |
| 527 | "threadpriority=0x%08X, processorid=0x%08X : created handle=0x%08X", | ||
| 528 | entry_point, name.c_str(), arg, stack_top, priority, processor_id, *out_handle); | 526 | entry_point, name.c_str(), arg, stack_top, priority, processor_id, *out_handle); |
| 529 | 527 | ||
| 530 | return RESULT_SUCCESS; | 528 | return RESULT_SUCCESS; |
diff --git a/src/core/hle/kernel/vm_manager.cpp b/src/core/hle/kernel/vm_manager.cpp index dca637dde..650d47925 100644 --- a/src/core/hle/kernel/vm_manager.cpp +++ b/src/core/hle/kernel/vm_manager.cpp | |||
| @@ -6,9 +6,9 @@ | |||
| 6 | #include "common/assert.h" | 6 | #include "common/assert.h" |
| 7 | #include "common/logging/log.h" | 7 | #include "common/logging/log.h" |
| 8 | #include "core/arm/arm_interface.h" | 8 | #include "core/arm/arm_interface.h" |
| 9 | #include "core/core.h" | ||
| 9 | #include "core/hle/kernel/errors.h" | 10 | #include "core/hle/kernel/errors.h" |
| 10 | #include "core/hle/kernel/vm_manager.h" | 11 | #include "core/hle/kernel/vm_manager.h" |
| 11 | #include "core/core.h" | ||
| 12 | #include "core/memory.h" | 12 | #include "core/memory.h" |
| 13 | #include "core/memory_setup.h" | 13 | #include "core/memory_setup.h" |
| 14 | #include "core/mmio.h" | 14 | #include "core/mmio.h" |
| @@ -86,7 +86,8 @@ ResultVal<VMManager::VMAHandle> VMManager::MapMemoryBlock(VAddr target, | |||
| 86 | VirtualMemoryArea& final_vma = vma_handle->second; | 86 | VirtualMemoryArea& final_vma = vma_handle->second; |
| 87 | ASSERT(final_vma.size == size); | 87 | ASSERT(final_vma.size == size); |
| 88 | 88 | ||
| 89 | Core::CPU().MapBackingMemory(target, size, block->data() + offset, VMAPermission::ReadWriteExecute); | 89 | Core::CPU().MapBackingMemory(target, size, block->data() + offset, |
| 90 | VMAPermission::ReadWriteExecute); | ||
| 90 | 91 | ||
| 91 | final_vma.type = VMAType::AllocatedMemoryBlock; | 92 | final_vma.type = VMAType::AllocatedMemoryBlock; |
| 92 | final_vma.permissions = VMAPermission::ReadWrite; | 93 | final_vma.permissions = VMAPermission::ReadWrite; |
diff --git a/src/core/hle/service/apm/apm.cpp b/src/core/hle/service/apm/apm.cpp index f70b9fc10..957abdd66 100644 --- a/src/core/hle/service/apm/apm.cpp +++ b/src/core/hle/service/apm/apm.cpp | |||
| @@ -15,8 +15,7 @@ void InstallInterfaces(SM::ServiceManager& service_manager) { | |||
| 15 | 15 | ||
| 16 | APM::APM() : ServiceFramework("apm") { | 16 | APM::APM() : ServiceFramework("apm") { |
| 17 | static const FunctionInfo functions[] = { | 17 | static const FunctionInfo functions[] = { |
| 18 | {0x00000000, nullptr, "OpenSession"}, | 18 | {0x00000000, nullptr, "OpenSession"}, {0x00000001, nullptr, "GetPerformanceMode"}, |
| 19 | {0x00000001, nullptr, "GetPerformanceMode"}, | ||
| 20 | }; | 19 | }; |
| 21 | RegisterHandlers(functions); | 20 | RegisterHandlers(functions); |
| 22 | } | 21 | } |
diff --git a/src/core/hle/service/nvdrv/nvdrv.h b/src/core/hle/service/nvdrv/nvdrv.h index 7530d80ad..a1c050416 100644 --- a/src/core/hle/service/nvdrv/nvdrv.h +++ b/src/core/hle/service/nvdrv/nvdrv.h | |||
| @@ -26,6 +26,7 @@ public: | |||
| 26 | VAddr GetObjectAddress(u32 handle) const; | 26 | VAddr GetObjectAddress(u32 handle) const; |
| 27 | 27 | ||
| 28 | u32 ioctl(u32 command, const std::vector<u8>& input, std::vector<u8>& output) override; | 28 | u32 ioctl(u32 command, const std::vector<u8>& input, std::vector<u8>& output) override; |
| 29 | |||
| 29 | private: | 30 | private: |
| 30 | // Represents an nvmap object. | 31 | // Represents an nvmap object. |
| 31 | struct Object { | 32 | struct Object { |
diff --git a/src/core/loader/linker.cpp b/src/core/loader/linker.cpp index f82c6f4b4..87cc65e91 100644 --- a/src/core/loader/linker.cpp +++ b/src/core/loader/linker.cpp | |||
| @@ -48,9 +48,9 @@ struct Elf64_Sym { | |||
| 48 | }; | 48 | }; |
| 49 | static_assert(sizeof(Elf64_Sym) == 0x18, "Elf64_Sym has incorrect size."); | 49 | static_assert(sizeof(Elf64_Sym) == 0x18, "Elf64_Sym has incorrect size."); |
| 50 | 50 | ||
| 51 | void Linker::WriteRelocations(std::vector<u8>& program_image, | 51 | void Linker::WriteRelocations(std::vector<u8>& program_image, const std::vector<Symbol>& symbols, |
| 52 | const std::vector<Symbol>& symbols, u64 relocation_offset, | 52 | u64 relocation_offset, u64 size, bool is_jump_relocation, |
| 53 | u64 size, bool is_jump_relocation, VAddr load_base) { | 53 | VAddr load_base) { |
| 54 | for (u64 i = 0; i < size; i += sizeof(Elf64_Rela)) { | 54 | for (u64 i = 0; i < size; i += sizeof(Elf64_Rela)) { |
| 55 | Elf64_Rela rela; | 55 | Elf64_Rela rela; |
| 56 | std::memcpy(&rela, &program_image[relocation_offset + i], sizeof(Elf64_Rela)); | 56 | std::memcpy(&rela, &program_image[relocation_offset + i], sizeof(Elf64_Rela)); |
| @@ -90,8 +90,7 @@ void Linker::WriteRelocations(std::vector<u8>& program_image, | |||
| 90 | } | 90 | } |
| 91 | } | 91 | } |
| 92 | 92 | ||
| 93 | void Linker::Relocate(std::vector<u8>& program_image, u32 dynamic_section_offset, | 93 | void Linker::Relocate(std::vector<u8>& program_image, u32 dynamic_section_offset, VAddr load_base) { |
| 94 | VAddr load_base) { | ||
| 95 | std::map<u64, u64> dynamic; | 94 | std::map<u64, u64> dynamic; |
| 96 | while (dynamic_section_offset < program_image.size()) { | 95 | while (dynamic_section_offset < program_image.size()) { |
| 97 | Elf64_Dyn dyn; | 96 | Elf64_Dyn dyn; |
| @@ -141,8 +140,7 @@ void Linker::ResolveImports() { | |||
| 141 | const auto& search = exports.find(import.first); | 140 | const auto& search = exports.find(import.first); |
| 142 | if (search != exports.end()) { | 141 | if (search != exports.end()) { |
| 143 | Memory::Write64(import.second.ea, search->second + import.second.addend); | 142 | Memory::Write64(import.second.ea, search->second + import.second.addend); |
| 144 | } | 143 | } else { |
| 145 | else { | ||
| 146 | LOG_ERROR(Loader, "Unresolved import: %s", import.first.c_str()); | 144 | LOG_ERROR(Loader, "Unresolved import: %s", import.first.c_str()); |
| 147 | } | 145 | } |
| 148 | } | 146 | } |
diff --git a/src/core/loader/nso.cpp b/src/core/loader/nso.cpp index 7e1953701..a7d714bc8 100644 --- a/src/core/loader/nso.cpp +++ b/src/core/loader/nso.cpp | |||
| @@ -157,7 +157,8 @@ ResultStatus AppLoader_NSO::Load(Kernel::SharedPtr<Kernel::Process>& process) { | |||
| 157 | 157 | ||
| 158 | // Load NSO modules | 158 | // Load NSO modules |
| 159 | VAddr next_load_addr{Memory::PROCESS_IMAGE_VADDR}; | 159 | VAddr next_load_addr{Memory::PROCESS_IMAGE_VADDR}; |
| 160 | for (const auto& module : {"rtld", "sdk", "subsdk0", "subsdk1", "subsdk2", "subsdk3", "subsdk4"}) { | 160 | for (const auto& module : |
| 161 | {"rtld", "sdk", "subsdk0", "subsdk1", "subsdk2", "subsdk3", "subsdk4"}) { | ||
| 161 | const std::string path = filepath.substr(0, filepath.find_last_of("/\\")) + "/" + module; | 162 | const std::string path = filepath.substr(0, filepath.find_last_of("/\\")) + "/" + module; |
| 162 | const VAddr load_addr = next_load_addr; | 163 | const VAddr load_addr = next_load_addr; |
| 163 | next_load_addr = LoadNso(path, load_addr); | 164 | next_load_addr = LoadNso(path, load_addr); |
diff --git a/src/core/loader/nso.h b/src/core/loader/nso.h index 28df00384..03424e70d 100644 --- a/src/core/loader/nso.h +++ b/src/core/loader/nso.h | |||
| @@ -18,8 +18,7 @@ namespace Loader { | |||
| 18 | class AppLoader_NSO final : public AppLoader, Linker { | 18 | class AppLoader_NSO final : public AppLoader, Linker { |
| 19 | public: | 19 | public: |
| 20 | AppLoader_NSO(FileUtil::IOFile&& file, std::string filepath) | 20 | AppLoader_NSO(FileUtil::IOFile&& file, std::string filepath) |
| 21 | : AppLoader(std::move(file)), filepath(std::move(filepath)) { | 21 | : AppLoader(std::move(file)), filepath(std::move(filepath)) {} |
| 22 | } | ||
| 23 | 22 | ||
| 24 | /** | 23 | /** |
| 25 | * Returns the type of the file | 24 | * Returns the type of the file |
diff --git a/src/video_core/renderer_opengl/renderer_opengl.h b/src/video_core/renderer_opengl/renderer_opengl.h index dd01e1b1a..db6c355a5 100644 --- a/src/video_core/renderer_opengl/renderer_opengl.h +++ b/src/video_core/renderer_opengl/renderer_opengl.h | |||
| @@ -61,7 +61,8 @@ private: | |||
| 61 | // Loads framebuffer from emulated memory into the display information structure | 61 | // Loads framebuffer from emulated memory into the display information structure |
| 62 | void LoadFBToScreenInfo(const FramebufferInfo& framebuffer_info, ScreenInfo& screen_info); | 62 | void LoadFBToScreenInfo(const FramebufferInfo& framebuffer_info, ScreenInfo& screen_info); |
| 63 | // Fills active OpenGL texture with the given RGBA color. | 63 | // Fills active OpenGL texture with the given RGBA color. |
| 64 | void LoadColorToActiveGLTexture(u8 color_r, u8 color_g, u8 color_b, u8 color_a, const TextureInfo& texture); | 64 | void LoadColorToActiveGLTexture(u8 color_r, u8 color_g, u8 color_b, u8 color_a, |
| 65 | const TextureInfo& texture); | ||
| 65 | 66 | ||
| 66 | EmuWindow* render_window; ///< Handle to render window | 67 | EmuWindow* render_window; ///< Handle to render window |
| 67 | 68 | ||
diff --git a/src/yuzu/about_dialog.cpp b/src/yuzu/about_dialog.cpp index 0f1b6cdc6..da3429822 100644 --- a/src/yuzu/about_dialog.cpp +++ b/src/yuzu/about_dialog.cpp | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent), ui(new Ui::AboutDialog) { | 9 | AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent), ui(new Ui::AboutDialog) { |
| 10 | ui->setupUi(this); | 10 | ui->setupUi(this); |
| 11 | ui->labelBuildInfo->setText(ui->labelBuildInfo->text().arg( | 11 | ui->labelBuildInfo->setText(ui->labelBuildInfo->text().arg( |
| 12 | Common::g_build_name, Common::g_scm_branch, Common::g_scm_desc)); | 12 | Common::g_build_name, Common::g_scm_branch, Common::g_scm_desc)); |
| 13 | } | 13 | } |
| 14 | 14 | ||
| 15 | AboutDialog::~AboutDialog() {} | 15 | AboutDialog::~AboutDialog() {} |
diff --git a/src/yuzu/configuration/config.cpp b/src/yuzu/configuration/config.cpp index 923a7c53f..6a40f035c 100644 --- a/src/yuzu/configuration/config.cpp +++ b/src/yuzu/configuration/config.cpp | |||
| @@ -18,10 +18,10 @@ Config::Config() { | |||
| 18 | } | 18 | } |
| 19 | 19 | ||
| 20 | const std::array<int, Settings::NativeButton::NumButtons> Config::default_buttons = { | 20 | const std::array<int, Settings::NativeButton::NumButtons> Config::default_buttons = { |
| 21 | Qt::Key_A, Qt::Key_S, Qt::Key_Z, Qt::Key_X, Qt::Key_3, Qt::Key_4, Qt::Key_Q, Qt::Key_W, | 21 | Qt::Key_A, Qt::Key_S, Qt::Key_Z, Qt::Key_X, Qt::Key_3, Qt::Key_4, Qt::Key_Q, |
| 22 | Qt::Key_1, Qt::Key_2, Qt::Key_N, Qt::Key_M, Qt::Key_F, Qt::Key_T, Qt::Key_H, Qt::Key_G, | 22 | Qt::Key_W, Qt::Key_1, Qt::Key_2, Qt::Key_N, Qt::Key_M, Qt::Key_F, Qt::Key_T, |
| 23 | Qt::Key_Left, Qt::Key_Up, Qt::Key_Right, Qt::Key_Down, Qt::Key_J, Qt::Key_I, Qt::Key_L, | 23 | Qt::Key_H, Qt::Key_G, Qt::Key_Left, Qt::Key_Up, Qt::Key_Right, Qt::Key_Down, Qt::Key_J, |
| 24 | Qt::Key_K, Qt::Key_D, Qt::Key_C, Qt::Key_B, Qt::Key_V, | 24 | Qt::Key_I, Qt::Key_L, Qt::Key_K, Qt::Key_D, Qt::Key_C, Qt::Key_B, Qt::Key_V, |
| 25 | }; | 25 | }; |
| 26 | 26 | ||
| 27 | const std::array<std::array<int, 5>, Settings::NativeAnalog::NumAnalogs> Config::default_analogs{{ | 27 | const std::array<std::array<int, 5>, Settings::NativeAnalog::NumAnalogs> Config::default_analogs{{ |
diff --git a/src/yuzu/configuration/configure_debug.cpp b/src/yuzu/configuration/configure_debug.cpp index 9eb71c593..a45edd510 100644 --- a/src/yuzu/configuration/configure_debug.cpp +++ b/src/yuzu/configuration/configure_debug.cpp | |||
| @@ -6,7 +6,6 @@ | |||
| 6 | #include "ui_configure_debug.h" | 6 | #include "ui_configure_debug.h" |
| 7 | #include "yuzu/configuration/configure_debug.h" | 7 | #include "yuzu/configuration/configure_debug.h" |
| 8 | 8 | ||
| 9 | |||
| 10 | ConfigureDebug::ConfigureDebug(QWidget* parent) : QWidget(parent), ui(new Ui::ConfigureDebug) { | 9 | ConfigureDebug::ConfigureDebug(QWidget* parent) : QWidget(parent), ui(new Ui::ConfigureDebug) { |
| 11 | ui->setupUi(this); | 10 | ui->setupUi(this); |
| 12 | this->setConfiguration(); | 11 | this->setConfiguration(); |
diff --git a/src/yuzu/configuration/configure_dialog.cpp b/src/yuzu/configuration/configure_dialog.cpp index 23e5687d0..358f33005 100644 --- a/src/yuzu/configuration/configure_dialog.cpp +++ b/src/yuzu/configuration/configure_dialog.cpp | |||
| @@ -7,7 +7,6 @@ | |||
| 7 | #include "yuzu/configuration/config.h" | 7 | #include "yuzu/configuration/config.h" |
| 8 | #include "yuzu/configuration/configure_dialog.h" | 8 | #include "yuzu/configuration/configure_dialog.h" |
| 9 | 9 | ||
| 10 | |||
| 11 | ConfigureDialog::ConfigureDialog(QWidget* parent) : QDialog(parent), ui(new Ui::ConfigureDialog) { | 10 | ConfigureDialog::ConfigureDialog(QWidget* parent) : QDialog(parent), ui(new Ui::ConfigureDialog) { |
| 12 | ui->setupUi(this); | 11 | ui->setupUi(this); |
| 13 | this->setConfiguration(); | 12 | this->setConfiguration(); |
diff --git a/src/yuzu/configuration/configure_input.cpp b/src/yuzu/configuration/configure_input.cpp index cd7520f29..c7f0b613b 100644 --- a/src/yuzu/configuration/configure_input.cpp +++ b/src/yuzu/configuration/configure_input.cpp | |||
| @@ -50,13 +50,13 @@ ConfigureInput::ConfigureInput(QWidget* parent) | |||
| 50 | setFocusPolicy(Qt::ClickFocus); | 50 | setFocusPolicy(Qt::ClickFocus); |
| 51 | 51 | ||
| 52 | button_map = { | 52 | button_map = { |
| 53 | ui->buttonA, ui->buttonB, ui->buttonX, ui->buttonY, | 53 | ui->buttonA, ui->buttonB, ui->buttonX, ui->buttonY, |
| 54 | ui->buttonLStick, ui->buttonRStick, ui->buttonL, ui->buttonR, | 54 | ui->buttonLStick, ui->buttonRStick, ui->buttonL, ui->buttonR, |
| 55 | ui->buttonZL, ui->buttonZR, ui->buttonPlus, ui->buttonMinus, | 55 | ui->buttonZL, ui->buttonZR, ui->buttonPlus, ui->buttonMinus, |
| 56 | ui->buttonDpadLeft, ui->buttonDpadUp, ui->buttonDpadRight, ui->buttonDpadDown, | 56 | ui->buttonDpadLeft, ui->buttonDpadUp, ui->buttonDpadRight, ui->buttonDpadDown, |
| 57 | ui->buttonLStickLeft, ui->buttonLStickUp, ui->buttonLStickRight, ui->buttonLStickDown, | 57 | ui->buttonLStickLeft, ui->buttonLStickUp, ui->buttonLStickRight, ui->buttonLStickDown, |
| 58 | ui->buttonRStickLeft, ui->buttonRStickUp, ui->buttonRStickRight, ui->buttonRStickDown, | 58 | ui->buttonRStickLeft, ui->buttonRStickUp, ui->buttonRStickRight, ui->buttonRStickDown, |
| 59 | ui->buttonSL, ui->buttonSR, ui->buttonHome, ui->buttonScreenshot, | 59 | ui->buttonSL, ui->buttonSR, ui->buttonHome, ui->buttonScreenshot, |
| 60 | }; | 60 | }; |
| 61 | 61 | ||
| 62 | analog_map_buttons = {{ | 62 | analog_map_buttons = {{ |
diff --git a/src/yuzu/configuration/configure_system.cpp b/src/yuzu/configuration/configure_system.cpp index 417afef87..d198e38ae 100644 --- a/src/yuzu/configuration/configure_system.cpp +++ b/src/yuzu/configuration/configure_system.cpp | |||
| @@ -8,7 +8,6 @@ | |||
| 8 | #include "yuzu/configuration/configure_system.h" | 8 | #include "yuzu/configuration/configure_system.h" |
| 9 | #include "yuzu/ui_settings.h" | 9 | #include "yuzu/ui_settings.h" |
| 10 | 10 | ||
| 11 | |||
| 12 | static const std::array<int, 12> days_in_month = {{ | 11 | static const std::array<int, 12> days_in_month = {{ |
| 13 | 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31, | 12 | 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31, |
| 14 | }}; | 13 | }}; |
diff --git a/src/yuzu/debugger/registers.cpp b/src/yuzu/debugger/registers.cpp index a52725075..06e2d1647 100644 --- a/src/yuzu/debugger/registers.cpp +++ b/src/yuzu/debugger/registers.cpp | |||
| @@ -8,7 +8,6 @@ | |||
| 8 | #include "yuzu/debugger/registers.h" | 8 | #include "yuzu/debugger/registers.h" |
| 9 | #include "yuzu/util/util.h" | 9 | #include "yuzu/util/util.h" |
| 10 | 10 | ||
| 11 | |||
| 12 | RegistersWidget::RegistersWidget(QWidget* parent) : QDockWidget(parent) { | 11 | RegistersWidget::RegistersWidget(QWidget* parent) : QDockWidget(parent) { |
| 13 | cpu_regs_ui.setupUi(this); | 12 | cpu_regs_ui.setupUi(this); |
| 14 | 13 | ||
diff --git a/src/yuzu/game_list_p.h b/src/yuzu/game_list_p.h index e40cd38b3..a758b77aa 100644 --- a/src/yuzu/game_list_p.h +++ b/src/yuzu/game_list_p.h | |||
| @@ -9,8 +9,8 @@ | |||
| 9 | #include <QRunnable> | 9 | #include <QRunnable> |
| 10 | #include <QStandardItem> | 10 | #include <QStandardItem> |
| 11 | #include <QString> | 11 | #include <QString> |
| 12 | #include "yuzu/util/util.h" | ||
| 13 | #include "common/string_util.h" | 12 | #include "common/string_util.h" |
| 13 | #include "yuzu/util/util.h" | ||
| 14 | 14 | ||
| 15 | /** | 15 | /** |
| 16 | * Gets the default icon (for games without valid SMDH) | 16 | * Gets the default icon (for games without valid SMDH) |
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 7c711158a..31f2825ee 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -122,8 +122,9 @@ void GMainWindow::InitializeWidgets() { | |||
| 122 | statusBar()->addPermanentWidget(message_label, 1); | 122 | statusBar()->addPermanentWidget(message_label, 1); |
| 123 | 123 | ||
| 124 | emu_speed_label = new QLabel(); | 124 | emu_speed_label = new QLabel(); |
| 125 | emu_speed_label->setToolTip(tr("Current emulation speed. Values higher or lower than 100% " | 125 | emu_speed_label->setToolTip( |
| 126 | "indicate emulation is running faster or slower than a Switch.")); | 126 | tr("Current emulation speed. Values higher or lower than 100% " |
| 127 | "indicate emulation is running faster or slower than a Switch.")); | ||
| 127 | game_fps_label = new QLabel(); | 128 | game_fps_label = new QLabel(); |
| 128 | game_fps_label->setToolTip(tr("How many frames per second the game is currently displaying. " | 129 | game_fps_label->setToolTip(tr("How many frames per second the game is currently displaying. " |
| 129 | "This will vary from game to game and scene to scene.")); | 130 | "This will vary from game to game and scene to scene.")); |
| @@ -185,8 +186,8 @@ void GMainWindow::InitializeRecentFileMenuActions() { | |||
| 185 | void GMainWindow::InitializeHotkeys() { | 186 | void GMainWindow::InitializeHotkeys() { |
| 186 | RegisterHotkey("Main Window", "Load File", QKeySequence::Open); | 187 | RegisterHotkey("Main Window", "Load File", QKeySequence::Open); |
| 187 | RegisterHotkey("Main Window", "Start Emulation"); | 188 | RegisterHotkey("Main Window", "Start Emulation"); |
| 188 | RegisterHotkey( "Main Window", "Fullscreen", QKeySequence::FullScreen ); | 189 | RegisterHotkey("Main Window", "Fullscreen", QKeySequence::FullScreen); |
| 189 | RegisterHotkey( "Main Window", "Exit Fullscreen", QKeySequence::Cancel, Qt::ApplicationShortcut ); | 190 | RegisterHotkey("Main Window", "Exit Fullscreen", QKeySequence::Cancel, Qt::ApplicationShortcut); |
| 190 | LoadHotkeys(); | 191 | LoadHotkeys(); |
| 191 | 192 | ||
| 192 | connect(GetHotkey("Main Window", "Load File", this), SIGNAL(activated()), this, | 193 | connect(GetHotkey("Main Window", "Load File", this), SIGNAL(activated()), this, |
| @@ -194,9 +195,9 @@ void GMainWindow::InitializeHotkeys() { | |||
| 194 | connect(GetHotkey("Main Window", "Start Emulation", this), SIGNAL(activated()), this, | 195 | connect(GetHotkey("Main Window", "Start Emulation", this), SIGNAL(activated()), this, |
| 195 | SLOT(OnStartGame())); | 196 | SLOT(OnStartGame())); |
| 196 | connect(GetHotkey("Main Window", "Fullscreen", render_window), &QShortcut::activated, | 197 | connect(GetHotkey("Main Window", "Fullscreen", render_window), &QShortcut::activated, |
| 197 | ui.action_Fullscreen, &QAction::trigger); | 198 | ui.action_Fullscreen, &QAction::trigger); |
| 198 | connect(GetHotkey("Main Window", "Fullscreen", render_window), &QShortcut::activatedAmbiguously, | 199 | connect(GetHotkey("Main Window", "Fullscreen", render_window), &QShortcut::activatedAmbiguously, |
| 199 | ui.action_Fullscreen, &QAction::trigger); | 200 | ui.action_Fullscreen, &QAction::trigger); |
| 200 | connect(GetHotkey("Main Window", "Exit Fullscreen", this), &QShortcut::activated, this, [&] { | 201 | connect(GetHotkey("Main Window", "Exit Fullscreen", this), &QShortcut::activated, this, [&] { |
| 201 | if (emulation_running) { | 202 | if (emulation_running) { |
| 202 | ui.action_Fullscreen->setChecked(false); | 203 | ui.action_Fullscreen->setChecked(false); |
diff --git a/src/yuzu/util/spinbox.cpp b/src/yuzu/util/spinbox.cpp index ede6fe0a8..92753ec1c 100644 --- a/src/yuzu/util/spinbox.cpp +++ b/src/yuzu/util/spinbox.cpp | |||
| @@ -31,8 +31,8 @@ | |||
| 31 | #include <cstdlib> | 31 | #include <cstdlib> |
| 32 | #include <QLineEdit> | 32 | #include <QLineEdit> |
| 33 | #include <QRegExpValidator> | 33 | #include <QRegExpValidator> |
| 34 | #include "yuzu/util/spinbox.h" | ||
| 35 | #include "common/assert.h" | 34 | #include "common/assert.h" |
| 35 | #include "yuzu/util/spinbox.h" | ||
| 36 | 36 | ||
| 37 | CSpinBox::CSpinBox(QWidget* parent) | 37 | CSpinBox::CSpinBox(QWidget* parent) |
| 38 | : QAbstractSpinBox(parent), min_value(-100), max_value(100), value(0), base(10), num_digits(0) { | 38 | : QAbstractSpinBox(parent), min_value(-100), max_value(100), value(0), base(10), num_digits(0) { |
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp index 785d96672..8f7c75796 100644 --- a/src/yuzu_cmd/yuzu.cpp +++ b/src/yuzu_cmd/yuzu.cpp | |||
| @@ -37,7 +37,6 @@ | |||
| 37 | #include "yuzu_cmd/config.h" | 37 | #include "yuzu_cmd/config.h" |
| 38 | #include "yuzu_cmd/emu_window/emu_window_sdl2.h" | 38 | #include "yuzu_cmd/emu_window/emu_window_sdl2.h" |
| 39 | 39 | ||
| 40 | |||
| 41 | static void PrintHelp(const char* argv0) { | 40 | static void PrintHelp(const char* argv0) { |
| 42 | std::cout << "Usage: " << argv0 | 41 | std::cout << "Usage: " << argv0 |
| 43 | << " [options] <filename>\n" | 42 | << " [options] <filename>\n" |