diff options
100 files changed, 739 insertions, 2102 deletions
diff --git a/.ci/yuzu-mainline-step1.yml b/.ci/yuzu-mainline-step1.yml index 3fd33d75a..6b6acb5c6 100644 --- a/.ci/yuzu-mainline-step1.yml +++ b/.ci/yuzu-mainline-step1.yml | |||
| @@ -1,6 +1,9 @@ | |||
| 1 | trigger: | 1 | trigger: |
| 2 | - master | 2 | - master |
| 3 | 3 | ||
| 4 | pool: | ||
| 5 | vmImage: 'ubuntu-latest' | ||
| 6 | |||
| 4 | stages: | 7 | stages: |
| 5 | - stage: merge | 8 | - stage: merge |
| 6 | displayName: 'merge' | 9 | displayName: 'merge' |
diff --git a/.ci/yuzu-patreon-step1.yml b/.ci/yuzu-patreon-step1.yml index cf30397cd..c63d7a066 100644 --- a/.ci/yuzu-patreon-step1.yml +++ b/.ci/yuzu-patreon-step1.yml | |||
| @@ -1,6 +1,9 @@ | |||
| 1 | trigger: | 1 | trigger: |
| 2 | - master | 2 | - master |
| 3 | 3 | ||
| 4 | pool: | ||
| 5 | vmImage: 'ubuntu-latest' | ||
| 6 | |||
| 4 | stages: | 7 | stages: |
| 5 | - stage: merge | 8 | - stage: merge |
| 6 | displayName: 'merge' | 9 | displayName: 'merge' |
diff --git a/.gitmodules b/.gitmodules index 749cd0408..dc6ed500f 100644 --- a/.gitmodules +++ b/.gitmodules | |||
| @@ -28,9 +28,6 @@ | |||
| 28 | [submodule "mbedtls"] | 28 | [submodule "mbedtls"] |
| 29 | path = externals/mbedtls | 29 | path = externals/mbedtls |
| 30 | url = https://github.com/yuzu-emu/mbedtls | 30 | url = https://github.com/yuzu-emu/mbedtls |
| 31 | [submodule "libzip"] | ||
| 32 | path = externals/libzip/libzip | ||
| 33 | url = https://github.com/nih-at/libzip.git | ||
| 34 | [submodule "xbyak"] | 31 | [submodule "xbyak"] |
| 35 | path = externals/xbyak | 32 | path = externals/xbyak |
| 36 | url = https://github.com/herumi/xbyak.git | 33 | url = https://github.com/herumi/xbyak.git |
diff --git a/CMakeLists.txt b/CMakeLists.txt index b7ea86d8a..123a3082a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -29,16 +29,10 @@ option(YUZU_USE_BUNDLED_FFMPEG "Download/Build bundled FFmpeg" "${WIN32}") | |||
| 29 | 29 | ||
| 30 | option(YUZU_USE_QT_WEB_ENGINE "Use QtWebEngine for web applet implementation" OFF) | 30 | option(YUZU_USE_QT_WEB_ENGINE "Use QtWebEngine for web applet implementation" OFF) |
| 31 | 31 | ||
| 32 | option(YUZU_ENABLE_BOXCAT "Enable the Boxcat service, a yuzu high-level implementation of BCAT" ON) | ||
| 33 | |||
| 34 | option(ENABLE_CUBEB "Enables the cubeb audio backend" ON) | 32 | option(ENABLE_CUBEB "Enables the cubeb audio backend" ON) |
| 35 | 33 | ||
| 36 | option(USE_DISCORD_PRESENCE "Enables Discord Rich Presence" OFF) | 34 | option(USE_DISCORD_PRESENCE "Enables Discord Rich Presence" OFF) |
| 37 | 35 | ||
| 38 | if (NOT ENABLE_WEB_SERVICE) | ||
| 39 | set(YUZU_ENABLE_BOXCAT OFF) | ||
| 40 | endif() | ||
| 41 | |||
| 42 | # Default to a Release build | 36 | # Default to a Release build |
| 43 | get_property(IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) | 37 | get_property(IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) |
| 44 | if (NOT IS_MULTI_CONFIG AND NOT CMAKE_BUILD_TYPE) | 38 | if (NOT IS_MULTI_CONFIG AND NOT CMAKE_BUILD_TYPE) |
| @@ -243,7 +237,7 @@ yuzu_find_packages() | |||
| 243 | 237 | ||
| 244 | # Qt5 requires that we find components, so it doesn't fit our pretty little find package function | 238 | # Qt5 requires that we find components, so it doesn't fit our pretty little find package function |
| 245 | if(ENABLE_QT) | 239 | if(ENABLE_QT) |
| 246 | set(QT_VERSION 5.12) | 240 | set(QT_VERSION 5.15) |
| 247 | # We want to load the generated conan qt config so that we get the QT_ROOT var so that we can use the official | 241 | # We want to load the generated conan qt config so that we get the QT_ROOT var so that we can use the official |
| 248 | # Qt5Config inside the root folder instead of the conan generated one. | 242 | # Qt5Config inside the root folder instead of the conan generated one. |
| 249 | if(EXISTS ${CMAKE_BINARY_DIR}/qtConfig.cmake) | 243 | if(EXISTS ${CMAKE_BINARY_DIR}/qtConfig.cmake) |
| @@ -345,8 +339,8 @@ if(ENABLE_QT) | |||
| 345 | set(QT_PREFIX_HINT) | 339 | set(QT_PREFIX_HINT) |
| 346 | 340 | ||
| 347 | if(YUZU_USE_BUNDLED_QT) | 341 | if(YUZU_USE_BUNDLED_QT) |
| 348 | if ((MSVC_VERSION GREATER_EQUAL 1910 AND MSVC_VERSION LESS 1930) AND ARCHITECTURE_x86_64) | 342 | if ((MSVC_VERSION GREATER_EQUAL 1920 AND MSVC_VERSION LESS 1940) AND ARCHITECTURE_x86_64) |
| 349 | set(QT_BUILD qt-5.12.8-msvc2017_64) | 343 | set(QT_BUILD qt-5.15.2-msvc2019_64) |
| 350 | elseif ((${CMAKE_SYSTEM_NAME} STREQUAL "Linux") AND NOT MINGW AND ARCHITECTURE_x86_64) | 344 | elseif ((${CMAKE_SYSTEM_NAME} STREQUAL "Linux") AND NOT MINGW AND ARCHITECTURE_x86_64) |
| 351 | set(QT_BUILD qt5_5_15_2) | 345 | set(QT_BUILD qt5_5_15_2) |
| 352 | else() | 346 | else() |
| @@ -375,7 +369,7 @@ endif() | |||
| 375 | if (ENABLE_SDL2) | 369 | if (ENABLE_SDL2) |
| 376 | if (YUZU_USE_BUNDLED_SDL2) | 370 | if (YUZU_USE_BUNDLED_SDL2) |
| 377 | # Detect toolchain and platform | 371 | # Detect toolchain and platform |
| 378 | if ((MSVC_VERSION GREATER_EQUAL 1910 AND MSVC_VERSION LESS 1930) AND ARCHITECTURE_x86_64) | 372 | if ((MSVC_VERSION GREATER_EQUAL 1920 AND MSVC_VERSION LESS 1940) AND ARCHITECTURE_x86_64) |
| 379 | set(SDL2_VER "SDL2-2.0.16") | 373 | set(SDL2_VER "SDL2-2.0.16") |
| 380 | else() | 374 | else() |
| 381 | message(FATAL_ERROR "No bundled SDL2 binaries for your toolchain. Disable YUZU_USE_BUNDLED_SDL2 and provide your own.") | 375 | message(FATAL_ERROR "No bundled SDL2 binaries for your toolchain. Disable YUZU_USE_BUNDLED_SDL2 and provide your own.") |
| @@ -422,11 +416,6 @@ if (CONAN_REQUIRED_LIBS) | |||
| 422 | endif() | 416 | endif() |
| 423 | include(${CMAKE_BINARY_DIR}/conan.cmake) | 417 | include(${CMAKE_BINARY_DIR}/conan.cmake) |
| 424 | 418 | ||
| 425 | set(CONAN_LIB_OPTIONS | ||
| 426 | libzip:with_openssl=False | ||
| 427 | libzip:enable_windows_crypto=False | ||
| 428 | ) | ||
| 429 | |||
| 430 | conan_check(VERSION 1.24.0 REQUIRED) | 419 | conan_check(VERSION 1.24.0 REQUIRED) |
| 431 | 420 | ||
| 432 | # Manually add iconv to fix a dep conflict between qt and sdl2 | 421 | # Manually add iconv to fix a dep conflict between qt and sdl2 |
| @@ -473,7 +462,7 @@ if (CONAN_REQUIRED_LIBS) | |||
| 473 | if(ENABLE_QT) | 462 | if(ENABLE_QT) |
| 474 | list(APPEND CMAKE_MODULE_PATH "${CONAN_QT_ROOT_RELEASE}") | 463 | list(APPEND CMAKE_MODULE_PATH "${CONAN_QT_ROOT_RELEASE}") |
| 475 | list(APPEND CMAKE_PREFIX_PATH "${CONAN_QT_ROOT_RELEASE}") | 464 | list(APPEND CMAKE_PREFIX_PATH "${CONAN_QT_ROOT_RELEASE}") |
| 476 | find_package(Qt5 5.12 REQUIRED COMPONENTS Widgets) | 465 | find_package(Qt5 5.15 REQUIRED COMPONENTS Widgets) |
| 477 | if (YUZU_USE_QT_WEB_ENGINE) | 466 | if (YUZU_USE_QT_WEB_ENGINE) |
| 478 | find_package(Qt5 REQUIRED COMPONENTS WebEngineCore WebEngineWidgets) | 467 | find_package(Qt5 REQUIRED COMPONENTS WebEngineCore WebEngineWidgets) |
| 479 | endif() | 468 | endif() |
diff --git a/CMakeModules/CopyYuzuQt5Deps.cmake b/CMakeModules/CopyYuzuQt5Deps.cmake index 4a6aeebbb..dd97f5b2b 100644 --- a/CMakeModules/CopyYuzuQt5Deps.cmake +++ b/CMakeModules/CopyYuzuQt5Deps.cmake | |||
| @@ -33,6 +33,7 @@ function(copy_yuzu_Qt5_deps target_dir) | |||
| 33 | Qt5Positioning$<$<CONFIG:Debug>:d>.* | 33 | Qt5Positioning$<$<CONFIG:Debug>:d>.* |
| 34 | Qt5PrintSupport$<$<CONFIG:Debug>:d>.* | 34 | Qt5PrintSupport$<$<CONFIG:Debug>:d>.* |
| 35 | Qt5Qml$<$<CONFIG:Debug>:d>.* | 35 | Qt5Qml$<$<CONFIG:Debug>:d>.* |
| 36 | Qt5QmlModels$<$<CONFIG:Debug>:d>.* | ||
| 36 | Qt5Quick$<$<CONFIG:Debug>:d>.* | 37 | Qt5Quick$<$<CONFIG:Debug>:d>.* |
| 37 | Qt5QuickWidgets$<$<CONFIG:Debug>:d>.* | 38 | Qt5QuickWidgets$<$<CONFIG:Debug>:d>.* |
| 38 | Qt5WebChannel$<$<CONFIG:Debug>:d>.* | 39 | Qt5WebChannel$<$<CONFIG:Debug>:d>.* |
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index 0c2c059a9..a76a3d800 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt | |||
| @@ -93,13 +93,6 @@ endif() | |||
| 93 | # Sirit | 93 | # Sirit |
| 94 | add_subdirectory(sirit) | 94 | add_subdirectory(sirit) |
| 95 | 95 | ||
| 96 | # libzip | ||
| 97 | find_package(libzip 1.5) | ||
| 98 | if (NOT libzip_FOUND) | ||
| 99 | message(STATUS "libzip 1.5 or newer not found, falling back to externals") | ||
| 100 | add_subdirectory(libzip EXCLUDE_FROM_ALL) | ||
| 101 | endif() | ||
| 102 | |||
| 103 | if (ENABLE_WEB_SERVICE) | 96 | if (ENABLE_WEB_SERVICE) |
| 104 | find_package(OpenSSL 1.1) | 97 | find_package(OpenSSL 1.1) |
| 105 | if (OPENSSL_FOUND) | 98 | if (OPENSSL_FOUND) |
diff --git a/externals/find-modules/Findlibzip.cmake b/externals/find-modules/Findlibzip.cmake deleted file mode 100644 index 8934de3b8..000000000 --- a/externals/find-modules/Findlibzip.cmake +++ /dev/null | |||
| @@ -1,72 +0,0 @@ | |||
| 1 | |||
| 2 | find_package(PkgConfig QUIET) | ||
| 3 | pkg_check_modules(PC_libzip QUIET libzip) | ||
| 4 | |||
| 5 | find_path(libzip_INCLUDE_DIR | ||
| 6 | NAMES zip.h | ||
| 7 | PATHS ${PC_libzip_INCLUDE_DIRS} | ||
| 8 | "$ENV{LIB_DIR}/include" | ||
| 9 | "$ENV{INCLUDE}" | ||
| 10 | /usr/local/include | ||
| 11 | /usr/include | ||
| 12 | ) | ||
| 13 | find_path(libzip_INCLUDE_DIR_ZIPCONF | ||
| 14 | NAMES zipconf.h | ||
| 15 | HINTS ${PC_libzip_INCLUDE_DIRS} | ||
| 16 | "$ENV{LIB_DIR}/include" | ||
| 17 | "$ENV{LIB_DIR}/lib/libzip/include" | ||
| 18 | "$ENV{LIB}/lib/libzip/include" | ||
| 19 | /usr/local/lib/libzip/include | ||
| 20 | /usr/lib/libzip/include | ||
| 21 | /usr/local/include | ||
| 22 | /usr/include | ||
| 23 | "$ENV{INCLUDE}" | ||
| 24 | ) | ||
| 25 | find_library(libzip_LIBRARY | ||
| 26 | NAMES zip | ||
| 27 | PATHS ${PC_libzip_LIBRARY_DIRS} | ||
| 28 | "$ENV{LIB_DIR}/lib" "$ENV{LIB}" /usr/local/lib /usr/lib | ||
| 29 | ) | ||
| 30 | |||
| 31 | if (libzip_INCLUDE_DIR_ZIPCONF) | ||
| 32 | FILE(READ "${libzip_INCLUDE_DIR_ZIPCONF}/zipconf.h" _libzip_VERSION_CONTENTS) | ||
| 33 | if (_libzip_VERSION_CONTENTS) | ||
| 34 | STRING(REGEX REPLACE ".*#define LIBZIP_VERSION \"([0-9.]+)\".*" "\\1" libzip_VERSION "${_libzip_VERSION_CONTENTS}") | ||
| 35 | endif() | ||
| 36 | unset(_libzip_VERSION_CONTENTS) | ||
| 37 | endif() | ||
| 38 | |||
| 39 | set(libzip_VERSION ${libzip_VERSION} CACHE STRING "Version number of libzip") | ||
| 40 | |||
| 41 | include(FindPackageHandleStandardArgs) | ||
| 42 | find_package_handle_standard_args(libzip | ||
| 43 | FOUND_VAR libzip_FOUND | ||
| 44 | REQUIRED_VARS | ||
| 45 | libzip_LIBRARY | ||
| 46 | libzip_INCLUDE_DIR | ||
| 47 | libzip_INCLUDE_DIR_ZIPCONF | ||
| 48 | libzip_VERSION | ||
| 49 | VERSION_VAR libzip_VERSION | ||
| 50 | ) | ||
| 51 | |||
| 52 | if(libzip_FOUND) | ||
| 53 | set(libzip_LIBRARIES ${libzip_LIBRARY}) | ||
| 54 | set(libzip_INCLUDE_DIRS ${libzip_INCLUDE_DIR}) | ||
| 55 | set(libzip_DEFINITIONS ${PC_libzip_CFLAGS_OTHER}) | ||
| 56 | endif() | ||
| 57 | |||
| 58 | if(libzip_FOUND AND NOT TARGET libzip::libzip) | ||
| 59 | add_library(libzip::libzip UNKNOWN IMPORTED) | ||
| 60 | set_target_properties(libzip::libzip PROPERTIES | ||
| 61 | IMPORTED_LOCATION "${libzip_LIBRARY}" | ||
| 62 | INTERFACE_COMPILE_OPTIONS "${PC_libzip_CFLAGS_OTHER}" | ||
| 63 | INTERFACE_INCLUDE_DIRECTORIES "${libzip_INCLUDE_DIR}" | ||
| 64 | ) | ||
| 65 | endif() | ||
| 66 | |||
| 67 | mark_as_advanced( | ||
| 68 | libzip_INCLUDE_DIR | ||
| 69 | libzip_INCLUDE_DIR_ZIPCONF | ||
| 70 | libzip_LIBRARY | ||
| 71 | libzip_VERSION | ||
| 72 | ) | ||
diff --git a/externals/libzip/CMakeLists.txt b/externals/libzip/CMakeLists.txt deleted file mode 100644 index ea5329fa0..000000000 --- a/externals/libzip/CMakeLists.txt +++ /dev/null | |||
| @@ -1,564 +0,0 @@ | |||
| 1 | # TODO: | ||
| 2 | # create usable libtool .la file | ||
| 3 | |||
| 4 | CMAKE_MINIMUM_REQUIRED(VERSION 3.0.2) | ||
| 5 | |||
| 6 | LIST(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/libzip") | ||
| 7 | |||
| 8 | PROJECT(libzip C) | ||
| 9 | |||
| 10 | OPTION(ENABLE_COMMONCRYPTO "Enable use of CommonCrypto" ON) | ||
| 11 | OPTION(ENABLE_GNUTLS "Enable use of GnuTLS" ON) | ||
| 12 | OPTION(ENABLE_MBEDTLS "Enable use of mbed TLS" ON) | ||
| 13 | OPTION(ENABLE_OPENSSL "Enable use of OpenSSL" ON) | ||
| 14 | OPTION(ENABLE_WINDOWS_CRYPTO "Enable use of Windows cryptography libraries" ON) | ||
| 15 | |||
| 16 | OPTION(ENABLE_BZIP2 "Enable use of BZip2" OFF) | ||
| 17 | OPTION(ENABLE_LZMA "Enable use of LZMA" OFF) | ||
| 18 | |||
| 19 | INCLUDE(CheckFunctionExists) | ||
| 20 | INCLUDE(CheckIncludeFiles) | ||
| 21 | INCLUDE(CheckSymbolExists) | ||
| 22 | INCLUDE(CheckTypeSize) | ||
| 23 | INCLUDE(CheckCSourceRuns) | ||
| 24 | INCLUDE(CheckCSourceCompiles) | ||
| 25 | INCLUDE(CheckStructHasMember) | ||
| 26 | INCLUDE(TestBigEndian) | ||
| 27 | INCLUDE(GNUInstallDirs) | ||
| 28 | IF(ENABLE_COMMONCRYPTO) | ||
| 29 | CHECK_INCLUDE_FILES(CommonCrypto/CommonCrypto.h COMMONCRYPTO_FOUND) | ||
| 30 | ELSE() | ||
| 31 | SET(COMMONCRYPTO_FOUND FALSE) | ||
| 32 | ENDIF() | ||
| 33 | IF(ENABLE_GNUTLS) | ||
| 34 | INCLUDE(FindNettle) | ||
| 35 | INCLUDE(FindGnuTLS) | ||
| 36 | ELSE() | ||
| 37 | SET(GNUTLS_FOUND FALSE) | ||
| 38 | ENDIF() | ||
| 39 | IF(ENABLE_MBEDTLS) | ||
| 40 | FIND_PATH(MBEDTLS_INCLUDE_DIR mbedtls/aes.h) | ||
| 41 | FIND_LIBRARY(MBEDTLS_LIBRARIES NAMES mbedcrypto) | ||
| 42 | ELSE() | ||
| 43 | SET(MBEDTLS_LIBRARIES FALSE) | ||
| 44 | ENDIF() | ||
| 45 | IF(ENABLE_OPENSSL) | ||
| 46 | INCLUDE(FindOpenSSL) | ||
| 47 | ELSE() | ||
| 48 | SET(OPENSSL_FOUND FALSE) | ||
| 49 | ENDIF() | ||
| 50 | IF(WIN32) | ||
| 51 | IF(ENABLE_WINDOWS_CRYPTO) | ||
| 52 | SET(WINDOWS_CRYPTO_FOUND TRUE) | ||
| 53 | ENDIF() | ||
| 54 | ELSE() | ||
| 55 | SET(WINDOWS_CRYPTO_FOUND FALSE) | ||
| 56 | ENDIF() | ||
| 57 | |||
| 58 | OPTION(BUILD_SHARED_LIBS "Build shared libraries" ON) | ||
| 59 | OPTION(SHARED_LIB_VERSIONNING "Add SO version in .so build" ON) | ||
| 60 | |||
| 61 | SET(PACKAGE "libzip") | ||
| 62 | SET(PACKAGE_NAME ${PACKAGE}) | ||
| 63 | SET(PACKAGE_VERSION_MAJOR "1") | ||
| 64 | SET(PACKAGE_VERSION_MINOR "5") | ||
| 65 | SET(PACKAGE_VERSION_MICRO "2a") | ||
| 66 | #SET(VERSION "${PACKAGE_VERSION_MAJOR}.${PACKAGE_VERSION_MINOR}") | ||
| 67 | SET(VERSION "${PACKAGE_VERSION_MAJOR}.${PACKAGE_VERSION_MINOR}.${PACKAGE_VERSION_MICRO}") | ||
| 68 | SET(PACKAGE_VERSION ${VERSION}) | ||
| 69 | SET(LIBZIP_VERSION ${PACKAGE_VERSION}) | ||
| 70 | SET(LIBZIP_VERSION_MAJOR ${PACKAGE_VERSION_MAJOR}) | ||
| 71 | SET(LIBZIP_VERSION_MINOR ${PACKAGE_VERSION_MINOR}) | ||
| 72 | SET(LIBZIP_VERSION_MICRO ${PACKAGE_VERSION_MICRO}) | ||
| 73 | SET(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}") | ||
| 74 | |||
| 75 | SET(ARCHIVE_NAME ${PACKAGE_NAME}-${PACKAGE_VERSION}) | ||
| 76 | IF(NOT TARGET dist) | ||
| 77 | ADD_CUSTOM_TARGET(dist | ||
| 78 | COMMAND git config tar.tar.xz.command "xz -c" | ||
| 79 | COMMAND git archive --prefix=${ARCHIVE_NAME}/ -o ${ARCHIVE_NAME}.tar.gz HEAD | ||
| 80 | COMMAND git archive --prefix=${ARCHIVE_NAME}/ -o ${ARCHIVE_NAME}.tar.xz HEAD | ||
| 81 | WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} | ||
| 82 | ) | ||
| 83 | ADD_CUSTOM_TARGET(distcheck | ||
| 84 | COMMAND chmod -R u+w ${ARCHIVE_NAME} ${ARCHIVE_NAME}-build ${ARCHIVE_NAME}-dest 2>/dev/null || true | ||
| 85 | COMMAND rm -rf ${ARCHIVE_NAME} ${ARCHIVE_NAME}-build ${ARCHIVE_NAME}-dest | ||
| 86 | COMMAND cmake -E tar xf ${ARCHIVE_NAME}.tar.gz | ||
| 87 | COMMAND chmod -R u-w ${ARCHIVE_NAME} | ||
| 88 | COMMAND mkdir ${ARCHIVE_NAME}-build | ||
| 89 | COMMAND mkdir ${ARCHIVE_NAME}-dest | ||
| 90 | COMMAND cd ${ARCHIVE_NAME}-build && cmake -DCMAKE_INSTALL_PREFIX=../${ARCHIVE_NAME}-dest ../${ARCHIVE_NAME} | ||
| 91 | COMMAND cd ${ARCHIVE_NAME}-build && make -j4 | ||
| 92 | COMMAND cd ${ARCHIVE_NAME}-build && make test | ||
| 93 | COMMAND cd ${ARCHIVE_NAME}-build && make install | ||
| 94 | # COMMAND cd ${ARCHIVE_NAME}-build && make uninstall | ||
| 95 | # COMMAND if [ `find ${ARCHIVE_NAME}-dest ! -type d | wc -l` -ne 0 ]; then echo leftover files in ${ARCHIVE_NAME}-dest; false; fi | ||
| 96 | COMMAND cd ${ARCHIVE_NAME}-build && make clean | ||
| 97 | COMMAND chmod -R u+w ${ARCHIVE_NAME} ${ARCHIVE_NAME}-build ${ARCHIVE_NAME}-dest | ||
| 98 | COMMAND rm -rf ${ARCHIVE_NAME} ${ARCHIVE_NAME}-build ${ARCHIVE_NAME}-dest | ||
| 99 | COMMAND echo "${ARCHIVE_NAME}.tar.gz is ready for distribution." | ||
| 100 | WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} | ||
| 101 | ) | ||
| 102 | ADD_DEPENDENCIES(distcheck dist) | ||
| 103 | ENDIF(NOT TARGET dist) | ||
| 104 | |||
| 105 | IF(BUILD_SHARED_LIBS) | ||
| 106 | SET(HAVE_SHARED TRUE) | ||
| 107 | ELSE() | ||
| 108 | SET(ZIP_STATIC TRUE) | ||
| 109 | ENDIF() | ||
| 110 | |||
| 111 | # Checks | ||
| 112 | |||
| 113 | CHECK_FUNCTION_EXISTS(_chmod HAVE__CHMOD) | ||
| 114 | CHECK_FUNCTION_EXISTS(_close HAVE__CLOSE) | ||
| 115 | CHECK_FUNCTION_EXISTS(_dup HAVE__DUP) | ||
| 116 | CHECK_FUNCTION_EXISTS(_fdopen HAVE__FDOPEN) | ||
| 117 | CHECK_FUNCTION_EXISTS(_fileno HAVE__FILENO) | ||
| 118 | CHECK_FUNCTION_EXISTS(_open HAVE__OPEN) | ||
| 119 | CHECK_FUNCTION_EXISTS(_setmode HAVE__SETMODE) | ||
| 120 | CHECK_FUNCTION_EXISTS(_snprintf HAVE__SNPRINTF) | ||
| 121 | CHECK_FUNCTION_EXISTS(_strdup HAVE__STRDUP) | ||
| 122 | CHECK_FUNCTION_EXISTS(_stricmp HAVE__STRICMP) | ||
| 123 | CHECK_FUNCTION_EXISTS(_strtoi64 HAVE__STRTOI64) | ||
| 124 | CHECK_FUNCTION_EXISTS(_strtoui64 HAVE__STRTOUI64) | ||
| 125 | CHECK_FUNCTION_EXISTS(_unlink HAVE__UNLINK) | ||
| 126 | CHECK_FUNCTION_EXISTS(arc4random HAVE_ARC4RANDOM) | ||
| 127 | CHECK_FUNCTION_EXISTS(clonefile HAVE_CLONEFILE) | ||
| 128 | CHECK_FUNCTION_EXISTS(explicit_bzero HAVE_EXPLICIT_BZERO) | ||
| 129 | CHECK_FUNCTION_EXISTS(explicit_memset HAVE_EXPLICIT_MEMSET) | ||
| 130 | CHECK_FUNCTION_EXISTS(fileno HAVE_FILENO) | ||
| 131 | CHECK_FUNCTION_EXISTS(fseeko HAVE_FSEEKO) | ||
| 132 | CHECK_FUNCTION_EXISTS(ftello HAVE_FTELLO) | ||
| 133 | CHECK_FUNCTION_EXISTS(getprogname HAVE_GETPROGNAME) | ||
| 134 | CHECK_FUNCTION_EXISTS(localtime_r HAVE_LOCALTIME_R) | ||
| 135 | CHECK_FUNCTION_EXISTS(open HAVE_OPEN) | ||
| 136 | CHECK_FUNCTION_EXISTS(setmode HAVE_SETMODE) | ||
| 137 | CHECK_FUNCTION_EXISTS(snprintf HAVE_SNPRINTF) | ||
| 138 | CHECK_FUNCTION_EXISTS(strcasecmp HAVE_STRCASECMP) | ||
| 139 | CHECK_FUNCTION_EXISTS(strdup HAVE_STRDUP) | ||
| 140 | CHECK_FUNCTION_EXISTS(stricmp HAVE_STRICMP) | ||
| 141 | CHECK_FUNCTION_EXISTS(strtoll HAVE_STRTOLL) | ||
| 142 | CHECK_FUNCTION_EXISTS(strtoull HAVE_STRTOULL) | ||
| 143 | |||
| 144 | CHECK_INCLUDE_FILES("sys/types.h;sys/stat.h;fts.h" HAVE_FTS_H) | ||
| 145 | CHECK_INCLUDE_FILES(stdbool.h HAVE_STDBOOL_H) | ||
| 146 | CHECK_INCLUDE_FILES(strings.h HAVE_STRINGS_H) | ||
| 147 | CHECK_INCLUDE_FILES(unistd.h HAVE_UNISTD_H) | ||
| 148 | |||
| 149 | CHECK_INCLUDE_FILES(inttypes.h HAVE_INTTYPES_H_LIBZIP) | ||
| 150 | CHECK_INCLUDE_FILES(stdint.h HAVE_STDINT_H_LIBZIP) | ||
| 151 | CHECK_INCLUDE_FILES(sys/types.h HAVE_SYS_TYPES_H_LIBZIP) | ||
| 152 | |||
| 153 | # TODO: fix test | ||
| 154 | # this test does not find __progname even when it exists | ||
| 155 | #CHECK_SYMBOL_EXISTS(__progname stdlib.h HAVE___PROGNAME) | ||
| 156 | |||
| 157 | CHECK_TYPE_SIZE(__int8 __INT8_LIBZIP) | ||
| 158 | CHECK_TYPE_SIZE(int8_t INT8_T_LIBZIP) | ||
| 159 | CHECK_TYPE_SIZE(uint8_t UINT8_T_LIBZIP) | ||
| 160 | CHECK_TYPE_SIZE(__int16 __INT16_LIBZIP) | ||
| 161 | CHECK_TYPE_SIZE(int16_t INT16_T_LIBZIP) | ||
| 162 | CHECK_TYPE_SIZE(uint16_t UINT16_T_LIBZIP) | ||
| 163 | CHECK_TYPE_SIZE(__int32 __INT32_LIBZIP) | ||
| 164 | CHECK_TYPE_SIZE(int32_t INT32_T_LIBZIP) | ||
| 165 | CHECK_TYPE_SIZE(uint32_t UINT32_T_LIBZIP) | ||
| 166 | CHECK_TYPE_SIZE(__int64 __INT64_LIBZIP) | ||
| 167 | CHECK_TYPE_SIZE(int64_t INT64_T_LIBZIP) | ||
| 168 | CHECK_TYPE_SIZE(uint64_t UINT64_T_LIBZIP) | ||
| 169 | CHECK_TYPE_SIZE("short" SHORT_LIBZIP) | ||
| 170 | CHECK_TYPE_SIZE("int" INT_LIBZIP) | ||
| 171 | CHECK_TYPE_SIZE("long" LONG_LIBZIP) | ||
| 172 | CHECK_TYPE_SIZE("long long" LONG_LONG_LIBZIP) | ||
| 173 | CHECK_TYPE_SIZE("off_t" SIZEOF_OFF_T) | ||
| 174 | CHECK_TYPE_SIZE("size_t" SIZE_T_LIBZIP) | ||
| 175 | CHECK_TYPE_SIZE("ssize_t" SSIZE_T_LIBZIP) | ||
| 176 | |||
| 177 | CHECK_C_SOURCE_COMPILES("#include <sys/ioctl.h> | ||
| 178 | #include <linux/fs.h> | ||
| 179 | int main(int argc, char *argv[]) { unsigned long x = FICLONERANGE; }" HAVE_FICLONERANGE) | ||
| 180 | |||
| 181 | CHECK_C_SOURCE_COMPILES(" | ||
| 182 | int foo(char * _Nullable bar); | ||
| 183 | int main(int argc, char *argv[]) { }" HAVE_NULLABLE) | ||
| 184 | |||
| 185 | TEST_BIG_ENDIAN(WORDS_BIGENDIAN) | ||
| 186 | |||
| 187 | #FIND_PACKAGE(ZLIB 1.1.2 REQUIRED) | ||
| 188 | INCLUDE_DIRECTORIES(../zlib/zlib) | ||
| 189 | SET(CMAKE_REQUIRED_INCLUDES ../zlib/zlib) | ||
| 190 | |||
| 191 | IF(ENABLE_BZIP2) | ||
| 192 | FIND_PACKAGE(BZip2) | ||
| 193 | IF(BZIP2_FOUND) | ||
| 194 | SET (HAVE_LIBBZ2 1) | ||
| 195 | |||
| 196 | INCLUDE_DIRECTORIES(${BZIP2_INCLUDE_DIR}) | ||
| 197 | SET (OPTIONAL_LIBRARY ${OPTIONAL_LIBRARY} ${BZIP2_LIBRARIES}) | ||
| 198 | ELSE() | ||
| 199 | MESSAGE(WARNING "-- bzip2 library not found; bzip2 support disabled") | ||
| 200 | ENDIF(BZIP2_FOUND) | ||
| 201 | ENDIF(ENABLE_BZIP2) | ||
| 202 | |||
| 203 | IF(ENABLE_LZMA) | ||
| 204 | FIND_PACKAGE(LibLZMA) | ||
| 205 | IF(LIBLZMA_FOUND) | ||
| 206 | SET (HAVE_LIBLZMA 1) | ||
| 207 | |||
| 208 | INCLUDE_DIRECTORIES(${LIBLZMA_INCLUDE_DIR}) | ||
| 209 | SET (OPTIONAL_LIBRARY ${OPTIONAL_LIBRARY} ${LIBLZMA_LIBRARY}) | ||
| 210 | ELSE() | ||
| 211 | MESSAGE(WARNING "-- lzma library not found; lzma support disabled") | ||
| 212 | ENDIF(LIBLZMA_FOUND) | ||
| 213 | ENDIF(ENABLE_LZMA) | ||
| 214 | |||
| 215 | |||
| 216 | IF (COMMONCRYPTO_FOUND) | ||
| 217 | SET (HAVE_CRYPTO 1) | ||
| 218 | SET (HAVE_COMMONCRYPTO 1) | ||
| 219 | ELSEIF (WINDOWS_CRYPTO_FOUND) | ||
| 220 | SET (HAVE_CRYPTO 1) | ||
| 221 | SET (HAVE_WINDOWS_CRYPTO 1) | ||
| 222 | ELSEIF (GNUTLS_FOUND AND NETTLE_FOUND) | ||
| 223 | SET (HAVE_CRYPTO 1) | ||
| 224 | SET (HAVE_GNUTLS 1) | ||
| 225 | INCLUDE_DIRECTORIES(${GNUTLS_INCLUDE_DIR} ${NETTLE_INCLUDE_DIR}) | ||
| 226 | SET (OPTIONAL_LIBRARY ${OPTIONAL_LIBRARY} ${GNUTLS_LIBRARY} ${NETTLE_LIBRARY}) | ||
| 227 | ELSEIF (OPENSSL_FOUND) | ||
| 228 | SET (HAVE_CRYPTO 1) | ||
| 229 | SET (HAVE_OPENSSL 1) | ||
| 230 | INCLUDE_DIRECTORIES(${OPENSSL_INCLUDE_DIR}) | ||
| 231 | SET (OPTIONAL_LIBRARY ${OPTIONAL_LIBRARY} ${OPENSSL_LIBRARIES}) | ||
| 232 | ELSEIF (MBEDTLS_LIBRARIES) | ||
| 233 | SET (HAVE_CRYPTO 1) | ||
| 234 | SET (HAVE_MBEDTLS 1) | ||
| 235 | INCLUDE_DIRECTORIES(${MBEDTLS_INCLUDE_DIR}) | ||
| 236 | SET (OPTIONAL_LIBRARY ${OPTIONAL_LIBRARY} ${MBEDTLS_LIBRARIES}) | ||
| 237 | ENDIF() | ||
| 238 | |||
| 239 | IF (NOT HAVE_CRYPTO) | ||
| 240 | MESSAGE(WARNING "-- neither Common Crypto, GnuTLS, mbed TLS, OpenSSL, nor Windows Cryptography found; AES support disabled") | ||
| 241 | ENDIF() | ||
| 242 | |||
| 243 | IF(MSVC) | ||
| 244 | ADD_DEFINITIONS("-D_CRT_SECURE_NO_WARNINGS") | ||
| 245 | ADD_DEFINITIONS("-D_CRT_NONSTDC_NO_DEPRECATE") | ||
| 246 | ENDIF(MSVC) | ||
| 247 | |||
| 248 | if(WIN32) | ||
| 249 | if(HAVE_WINDOWS_CRYPTO) | ||
| 250 | SET (OPTIONAL_LIBRARY ${OPTIONAL_LIBRARY} bcrypt) | ||
| 251 | endif() | ||
| 252 | if(CMAKE_SYSTEM_NAME MATCHES WindowsPhone OR CMAKE_SYSTEM_NAME MATCHES WindowsStore) | ||
| 253 | ADD_DEFINITIONS(-DMS_UWP) | ||
| 254 | else(CMAKE_SYSTEM_NAME MATCHES WindowsPhone OR CMAKE_SYSTEM_NAME MATCHES WindowsStore) | ||
| 255 | SET (OPTIONAL_LIBRARY ${OPTIONAL_LIBRARY} advapi32) | ||
| 256 | endif(CMAKE_SYSTEM_NAME MATCHES WindowsPhone OR CMAKE_SYSTEM_NAME MATCHES WindowsStore) | ||
| 257 | endif(WIN32) | ||
| 258 | |||
| 259 | ADD_DEFINITIONS("-DHAVE_CONFIG_H") | ||
| 260 | |||
| 261 | # rpath handling: use rpath in installed binaries | ||
| 262 | IF(NOT CMAKE_SYSTEM_NAME MATCHES Linux) | ||
| 263 | SET(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}") | ||
| 264 | SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) | ||
| 265 | ENDIF() | ||
| 266 | |||
| 267 | # fixed size integral types | ||
| 268 | |||
| 269 | IF(HAVE_INTTYPES_H_LIBZIP) | ||
| 270 | SET(LIBZIP_TYPES_INCLUDE "#define __STDC_FORMAT_MACROS 1 | ||
| 271 | #include <inttypes.h>") | ||
| 272 | ELSEIF(HAVE_STDINT_H_LIBZIP) | ||
| 273 | SET(LIBZIP_TYPES_INCLUDE "#include <stdint.h>") | ||
| 274 | ELSEIF(HAVE_SYS_TYPES_H_LIBZIP) | ||
| 275 | SET(LIBZIP_TYPES_INCLUDE "#include <sys/types.h>") | ||
| 276 | ENDIF() | ||
| 277 | |||
| 278 | IF(HAVE_INT8_T_LIBZIP) | ||
| 279 | SET(ZIP_INT8_T int8_t) | ||
| 280 | ELSEIF(HAVE___INT8_LIBZIP) | ||
| 281 | SET(ZIP_INT8_T __int8) | ||
| 282 | ELSE() | ||
| 283 | SET(ZIP_INT8_T "signed char") | ||
| 284 | ENDIF() | ||
| 285 | |||
| 286 | IF(HAVE_UINT8_T_LIBZIP) | ||
| 287 | SET(ZIP_UINT8_T uint8_t) | ||
| 288 | ELSEIF(HAVE___INT8_LIBZIP) | ||
| 289 | SET(ZIP_UINT8_T "unsigned __int8") | ||
| 290 | ELSE() | ||
| 291 | SET(ZIP_UINT8_T "unsigned char") | ||
| 292 | ENDIF() | ||
| 293 | |||
| 294 | IF(HAVE_INT16_T_LIBZIP) | ||
| 295 | SET(ZIP_INT16_T int16_t) | ||
| 296 | ELSEIF(HAVE___INT16_LIBZIP) | ||
| 297 | SET(INT16_T_LIBZIP __int16) | ||
| 298 | ELSEIF(SHORT_LIBZIP EQUAL 2) | ||
| 299 | SET(INT16_T_LIBZIP short) | ||
| 300 | ENDIF() | ||
| 301 | |||
| 302 | IF(HAVE_UINT16_T_LIBZIP) | ||
| 303 | SET(ZIP_UINT16_T uint16_t) | ||
| 304 | ELSEIF(HAVE___INT16_LIBZIP) | ||
| 305 | SET(UINT16_T_LIBZIP "unsigned __int16") | ||
| 306 | ELSEIF(SHORT_LIBZIP EQUAL 2) | ||
| 307 | SET(UINT16_T_LIBZIP "unsigned short") | ||
| 308 | ENDIF() | ||
| 309 | |||
| 310 | IF(HAVE_INT32_T_LIBZIP) | ||
| 311 | SET(ZIP_INT32_T int32_t) | ||
| 312 | ELSEIF(HAVE___INT32_LIBZIP) | ||
| 313 | SET(ZIP_INT32_T __int32) | ||
| 314 | ELSEIF(INT_LIBZIP EQUAL 4) | ||
| 315 | SET(ZIP_INT32_T int) | ||
| 316 | ELSEIF(LONG_LIBZIP EQUAL 4) | ||
| 317 | SET(ZIP_INT32_T long) | ||
| 318 | ENDIF() | ||
| 319 | |||
| 320 | IF(HAVE_UINT32_T_LIBZIP) | ||
| 321 | SET(ZIP_UINT32_T uint32_t) | ||
| 322 | ELSEIF(HAVE___INT32_LIBZIP) | ||
| 323 | SET(ZIP_UINT32_T "unsigned __int32") | ||
| 324 | ELSEIF(INT_LIBZIP EQUAL 4) | ||
| 325 | SET(ZIP_UINT32_T "unsigned int") | ||
| 326 | ELSEIF(LONG_LIBZIP EQUAL 4) | ||
| 327 | SET(ZIP_UINT32_T "unsigned long") | ||
| 328 | ENDIF() | ||
| 329 | |||
| 330 | IF(HAVE_INT64_T_LIBZIP) | ||
| 331 | SET(ZIP_INT64_T int64_t) | ||
| 332 | ELSEIF(HAVE___INT64_LIBZIP) | ||
| 333 | SET(ZIP_INT64_T __int64) | ||
| 334 | ELSEIF(LONG_LIBZIP EQUAL 8) | ||
| 335 | SET(ZIP_INT64_T long) | ||
| 336 | ELSEIF(LONG_LONG_LIBZIP EQUAL 8) | ||
| 337 | SET(ZIP_INT64_T "long long") | ||
| 338 | ENDIF() | ||
| 339 | |||
| 340 | IF(HAVE_UINT64_T_LIBZIP) | ||
| 341 | SET(ZIP_UINT64_T uint64_t) | ||
| 342 | ELSEIF(HAVE___INT64_LIBZIP) | ||
| 343 | SET(ZIP_UINT64_T "unsigned __int64") | ||
| 344 | ELSEIF(LONG_LIBZIP EQUAL 8) | ||
| 345 | SET(ZIP_UINT64_T "unsigned long") | ||
| 346 | ELSEIF(LONG_LONG_LIBZIP EQUAL 8) | ||
| 347 | SET(ZIP_UINT64_T "unsigned long long") | ||
| 348 | ENDIF() | ||
| 349 | |||
| 350 | IF(HAVE_NULLABLE) | ||
| 351 | SET(ZIP_NULLABLE_DEFINES) | ||
| 352 | ELSE() | ||
| 353 | SET(ZIP_NULLABLE_DEFINES "#define _Nullable | ||
| 354 | #define _Nonnull") | ||
| 355 | ENDIF() | ||
| 356 | |||
| 357 | # write out config file | ||
| 358 | CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/libzip/cmake-config.h.in ${CMAKE_CURRENT_BINARY_DIR}/libzip/config.h) | ||
| 359 | CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/libzip/cmake-zipconf.h.in ${CMAKE_CURRENT_BINARY_DIR}/libzip/zipconf.h) | ||
| 360 | |||
| 361 | # installation | ||
| 362 | INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/libzip/zipconf.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) | ||
| 363 | INSTALL(FILES libzip/lib/zip.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) | ||
| 364 | |||
| 365 | SET(CMAKE_C_VISIBILITY_PRESET hidden) | ||
| 366 | |||
| 367 | ADD_LIBRARY(zip | ||
| 368 | libzip/lib/zip_add.c | ||
| 369 | libzip/lib/zip_add_dir.c | ||
| 370 | libzip/lib/zip_add_entry.c | ||
| 371 | libzip/lib/zip_algorithm_deflate.c | ||
| 372 | libzip/lib/zip_buffer.c | ||
| 373 | libzip/lib/zip_close.c | ||
| 374 | libzip/lib/zip_delete.c | ||
| 375 | libzip/lib/zip_dir_add.c | ||
| 376 | libzip/lib/zip_dirent.c | ||
| 377 | libzip/lib/zip_discard.c | ||
| 378 | libzip/lib/zip_entry.c | ||
| 379 | libzip/lib/zip_err_str.c | ||
| 380 | libzip/lib/zip_error.c | ||
| 381 | libzip/lib/zip_error_clear.c | ||
| 382 | libzip/lib/zip_error_get.c | ||
| 383 | libzip/lib/zip_error_get_sys_type.c | ||
| 384 | libzip/lib/zip_error_strerror.c | ||
| 385 | libzip/lib/zip_error_to_str.c | ||
| 386 | libzip/lib/zip_extra_field.c | ||
| 387 | libzip/lib/zip_extra_field_api.c | ||
| 388 | libzip/lib/zip_fclose.c | ||
| 389 | libzip/lib/zip_fdopen.c | ||
| 390 | libzip/lib/zip_file_add.c | ||
| 391 | libzip/lib/zip_file_error_clear.c | ||
| 392 | libzip/lib/zip_file_error_get.c | ||
| 393 | libzip/lib/zip_file_get_comment.c | ||
| 394 | libzip/lib/zip_file_get_external_attributes.c | ||
| 395 | libzip/lib/zip_file_get_offset.c | ||
| 396 | libzip/lib/zip_file_rename.c | ||
| 397 | libzip/lib/zip_file_replace.c | ||
| 398 | libzip/lib/zip_file_set_comment.c | ||
| 399 | libzip/lib/zip_file_set_encryption.c | ||
| 400 | libzip/lib/zip_file_set_external_attributes.c | ||
| 401 | libzip/lib/zip_file_set_mtime.c | ||
| 402 | libzip/lib/zip_file_strerror.c | ||
| 403 | libzip/lib/zip_filerange_crc.c | ||
| 404 | libzip/lib/zip_fopen.c | ||
| 405 | libzip/lib/zip_fopen_encrypted.c | ||
| 406 | libzip/lib/zip_fopen_index.c | ||
| 407 | libzip/lib/zip_fopen_index_encrypted.c | ||
| 408 | libzip/lib/zip_fread.c | ||
| 409 | libzip/lib/zip_fseek.c | ||
| 410 | libzip/lib/zip_ftell.c | ||
| 411 | libzip/lib/zip_get_archive_comment.c | ||
| 412 | libzip/lib/zip_get_archive_flag.c | ||
| 413 | libzip/lib/zip_get_encryption_implementation.c | ||
| 414 | libzip/lib/zip_get_file_comment.c | ||
| 415 | libzip/lib/zip_get_name.c | ||
| 416 | libzip/lib/zip_get_num_entries.c | ||
| 417 | libzip/lib/zip_get_num_files.c | ||
| 418 | libzip/lib/zip_hash.c | ||
| 419 | libzip/lib/zip_io_util.c | ||
| 420 | libzip/lib/zip_libzip_version.c | ||
| 421 | libzip/lib/zip_memdup.c | ||
| 422 | libzip/lib/zip_name_locate.c | ||
| 423 | libzip/lib/zip_new.c | ||
| 424 | libzip/lib/zip_open.c | ||
| 425 | libzip/lib/zip_progress.c | ||
| 426 | libzip/lib/zip_rename.c | ||
| 427 | libzip/lib/zip_replace.c | ||
| 428 | libzip/lib/zip_set_archive_comment.c | ||
| 429 | libzip/lib/zip_set_archive_flag.c | ||
| 430 | libzip/lib/zip_set_default_password.c | ||
| 431 | libzip/lib/zip_set_file_comment.c | ||
| 432 | libzip/lib/zip_set_file_compression.c | ||
| 433 | libzip/lib/zip_set_name.c | ||
| 434 | libzip/lib/zip_source_accept_empty.c | ||
| 435 | libzip/lib/zip_source_begin_write.c | ||
| 436 | libzip/lib/zip_source_begin_write_cloning.c | ||
| 437 | libzip/lib/zip_source_buffer.c | ||
| 438 | libzip/lib/zip_source_call.c | ||
| 439 | libzip/lib/zip_source_close.c | ||
| 440 | libzip/lib/zip_source_commit_write.c | ||
| 441 | libzip/lib/zip_source_compress.c | ||
| 442 | libzip/lib/zip_source_crc.c | ||
| 443 | libzip/lib/zip_source_error.c | ||
| 444 | libzip/lib/zip_source_filep.c | ||
| 445 | libzip/lib/zip_source_free.c | ||
| 446 | libzip/lib/zip_source_function.c | ||
| 447 | libzip/lib/zip_source_get_compression_flags.c | ||
| 448 | libzip/lib/zip_source_is_deleted.c | ||
| 449 | libzip/lib/zip_source_layered.c | ||
| 450 | libzip/lib/zip_source_open.c | ||
| 451 | libzip/lib/zip_source_pkware.c | ||
| 452 | libzip/lib/zip_source_read.c | ||
| 453 | libzip/lib/zip_source_remove.c | ||
| 454 | libzip/lib/zip_source_rollback_write.c | ||
| 455 | libzip/lib/zip_source_seek.c | ||
| 456 | libzip/lib/zip_source_seek_write.c | ||
| 457 | libzip/lib/zip_source_stat.c | ||
| 458 | libzip/lib/zip_source_supports.c | ||
| 459 | libzip/lib/zip_source_tell.c | ||
| 460 | libzip/lib/zip_source_tell_write.c | ||
| 461 | libzip/lib/zip_source_window.c | ||
| 462 | libzip/lib/zip_source_write.c | ||
| 463 | libzip/lib/zip_source_zip.c | ||
| 464 | libzip/lib/zip_source_zip_new.c | ||
| 465 | libzip/lib/zip_stat.c | ||
| 466 | libzip/lib/zip_stat_index.c | ||
| 467 | libzip/lib/zip_stat_init.c | ||
| 468 | libzip/lib/zip_strerror.c | ||
| 469 | libzip/lib/zip_string.c | ||
| 470 | libzip/lib/zip_unchange.c | ||
| 471 | libzip/lib/zip_unchange_all.c | ||
| 472 | libzip/lib/zip_unchange_archive.c | ||
| 473 | libzip/lib/zip_unchange_data.c | ||
| 474 | libzip/lib/zip_utf-8.c | ||
| 475 | ) | ||
| 476 | |||
| 477 | IF(WIN32) | ||
| 478 | target_sources(zip PRIVATE | ||
| 479 | libzip/lib/zip_source_win32handle.c | ||
| 480 | libzip/lib/zip_source_win32utf8.c | ||
| 481 | libzip/lib/zip_source_win32w.c | ||
| 482 | ) | ||
| 483 | IF(CMAKE_SYSTEM_NAME MATCHES WindowsPhone OR CMAKE_SYSTEM_NAME MATCHES WindowsStore) | ||
| 484 | ELSE() | ||
| 485 | target_sources(zip PRIVATE libzip/lib/zip_source_win32a.c) | ||
| 486 | ENDIF() | ||
| 487 | ELSE() | ||
| 488 | target_sources(zip PRIVATE | ||
| 489 | libzip/lib/zip_mkstempm.c | ||
| 490 | libzip/lib/zip_source_file.c | ||
| 491 | libzip/lib/zip_random_unix.c | ||
| 492 | ) | ||
| 493 | ENDIF() | ||
| 494 | |||
| 495 | IF(HAVE_LIBBZ2) | ||
| 496 | target_sources(zip PRIVATE libzip/lib/zip_algorithm_bzip2.c) | ||
| 497 | ENDIF() | ||
| 498 | |||
| 499 | IF(HAVE_LIBLZMA) | ||
| 500 | target_sources(zip PRIVATE libzip/lib/zip_algorithm_xz.c) | ||
| 501 | ENDIF() | ||
| 502 | |||
| 503 | IF(HAVE_COMMONCRYPTO) | ||
| 504 | target_sources(zip PRIVATE libzip/lib/zip_crypto_commoncrypto.c) | ||
| 505 | ELSEIF(HAVE_WINDOWS_CRYPTO) | ||
| 506 | target_sources(zip PRIVATE libzip/lib/zip_crypto_win.c) | ||
| 507 | ELSEIF(HAVE_GNUTLS) | ||
| 508 | target_sources(zip PRIVATE libzip/lib/zip_crypto_gnutls.c) | ||
| 509 | ELSEIF(HAVE_OPENSSL) | ||
| 510 | target_sources(zip PRIVATE libzip/lib/zip_crypto_openssl.c) | ||
| 511 | ELSEIF(HAVE_MBEDTLS) | ||
| 512 | target_sources(zip PRIVATE libzip/lib/zip_crypto_mbedtls.c) | ||
| 513 | ENDIF() | ||
| 514 | |||
| 515 | IF(HAVE_CRYPTO) | ||
| 516 | target_sources(zip PRIVATE | ||
| 517 | libzip/lib/zip_winzip_aes.c | ||
| 518 | libzip/lib/zip_source_winzip_aes_decode.c | ||
| 519 | libzip/lib/zip_source_winzip_aes_encode.c | ||
| 520 | ) | ||
| 521 | ENDIF() | ||
| 522 | |||
| 523 | target_include_directories(zip | ||
| 524 | PUBLIC | ||
| 525 | libzip/lib | ||
| 526 | ${CMAKE_CURRENT_BINARY_DIR}/libzip | ||
| 527 | ) | ||
| 528 | |||
| 529 | # pkgconfig file | ||
| 530 | SET(prefix ${CMAKE_INSTALL_PREFIX}) | ||
| 531 | SET(exec_prefix \${prefix}) | ||
| 532 | SET(bindir \${exec_prefix}/${CMAKE_INSTALL_BINDIR}) | ||
| 533 | SET(libdir \${exec_prefix}/${CMAKE_INSTALL_LIBDIR}) | ||
| 534 | SET(includedir \${prefix}/${CMAKE_INSTALL_INCLUDEDIR}) | ||
| 535 | IF(CMAKE_SYSTEM_NAME MATCHES BSD) | ||
| 536 | SET(PKG_CONFIG_RPATH "-Wl,-R\${libdir}") | ||
| 537 | ENDIF(CMAKE_SYSTEM_NAME MATCHES BSD) | ||
| 538 | get_target_property(LIBS_PRIVATE zip LINK_LIBRARIES) | ||
| 539 | foreach(LIB ${LIBS_PRIVATE}) | ||
| 540 | if(LIB MATCHES "^/") | ||
| 541 | get_filename_component(LIB ${LIB} NAME_WE) | ||
| 542 | string(REGEX REPLACE "^lib" "" LIB ${LIB}) | ||
| 543 | endif() | ||
| 544 | set(LIBS "${LIBS} -l${LIB}") | ||
| 545 | endforeach() | ||
| 546 | CONFIGURE_FILE(libzip/libzip.pc.in libzip/libzip.pc @ONLY) | ||
| 547 | INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/libzip.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig) | ||
| 548 | |||
| 549 | ADD_CUSTOM_TARGET(update_zip_err_str | ||
| 550 | COMMAND sh ${CMAKE_CURRENT_SOURCE_DIR}/libzip/lib/make_zip_err_str.sh ${CMAKE_CURRENT_SOURCE_DIR}/libzip/lib/zip.h ${CMAKE_CURRENT_SOURCE_DIR}/libzip/lib/zip_err_str.c | ||
| 551 | DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/libzip/lib/zip.h ${CMAKE_CURRENT_SOURCE_DIR}/libzip/lib/make_zip_err_str.sh | ||
| 552 | ) | ||
| 553 | |||
| 554 | IF(SHARED_LIB_VERSIONNING) | ||
| 555 | SET_TARGET_PROPERTIES(zip PROPERTIES VERSION 5.0 SOVERSION 5) | ||
| 556 | ENDIF() | ||
| 557 | |||
| 558 | TARGET_LINK_LIBRARIES(zip ${ZLIB_LIBRARIES} ${OPTIONAL_LIBRARY}) | ||
| 559 | INSTALL(TARGETS zip | ||
| 560 | RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} | ||
| 561 | ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} | ||
| 562 | LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} | ||
| 563 | ) | ||
| 564 | |||
diff --git a/externals/libzip/libzip b/externals/libzip/libzip deleted file mode 160000 | |||
| Subproject 89bd6d63bdea9da7627695f6c82e54f16d368b5 | |||
diff --git a/src/audio_core/command_generator.cpp b/src/audio_core/command_generator.cpp index 45b2eef52..830af46ad 100644 --- a/src/audio_core/command_generator.cpp +++ b/src/audio_core/command_generator.cpp | |||
| @@ -2,13 +2,16 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <algorithm> | ||
| 5 | #include <cmath> | 6 | #include <cmath> |
| 6 | #include <numbers> | 7 | #include <numbers> |
| 8 | |||
| 7 | #include "audio_core/algorithm/interpolate.h" | 9 | #include "audio_core/algorithm/interpolate.h" |
| 8 | #include "audio_core/command_generator.h" | 10 | #include "audio_core/command_generator.h" |
| 9 | #include "audio_core/effect_context.h" | 11 | #include "audio_core/effect_context.h" |
| 10 | #include "audio_core/mix_context.h" | 12 | #include "audio_core/mix_context.h" |
| 11 | #include "audio_core/voice_context.h" | 13 | #include "audio_core/voice_context.h" |
| 14 | #include "common/common_types.h" | ||
| 12 | #include "core/memory.h" | 15 | #include "core/memory.h" |
| 13 | 16 | ||
| 14 | namespace AudioCore { | 17 | namespace AudioCore { |
diff --git a/src/audio_core/mix_context.cpp b/src/audio_core/mix_context.cpp index 4bca72eb0..057aab5ad 100644 --- a/src/audio_core/mix_context.cpp +++ b/src/audio_core/mix_context.cpp | |||
| @@ -2,6 +2,8 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <algorithm> | ||
| 6 | |||
| 5 | #include "audio_core/behavior_info.h" | 7 | #include "audio_core/behavior_info.h" |
| 6 | #include "audio_core/common.h" | 8 | #include "audio_core/common.h" |
| 7 | #include "audio_core/effect_context.h" | 9 | #include "audio_core/effect_context.h" |
diff --git a/src/audio_core/voice_context.cpp b/src/audio_core/voice_context.cpp index d8c954b60..75012a887 100644 --- a/src/audio_core/voice_context.cpp +++ b/src/audio_core/voice_context.cpp | |||
| @@ -2,6 +2,8 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <algorithm> | ||
| 6 | |||
| 5 | #include "audio_core/behavior_info.h" | 7 | #include "audio_core/behavior_info.h" |
| 6 | #include "audio_core/voice_context.h" | 8 | #include "audio_core/voice_context.h" |
| 7 | #include "core/memory.h" | 9 | #include "core/memory.h" |
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index b18a2a2f5..cb5c0f326 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt | |||
| @@ -79,6 +79,7 @@ add_library(common STATIC | |||
| 79 | logging/filter.cpp | 79 | logging/filter.cpp |
| 80 | logging/filter.h | 80 | logging/filter.h |
| 81 | logging/log.h | 81 | logging/log.h |
| 82 | logging/log_entry.h | ||
| 82 | logging/text_formatter.cpp | 83 | logging/text_formatter.cpp |
| 83 | logging/text_formatter.h | 84 | logging/text_formatter.h |
| 84 | logging/types.h | 85 | logging/types.h |
diff --git a/src/common/host_memory.cpp b/src/common/host_memory.cpp index 6661244cf..b44a44949 100644 --- a/src/common/host_memory.cpp +++ b/src/common/host_memory.cpp | |||
| @@ -314,8 +314,8 @@ private: | |||
| 314 | } | 314 | } |
| 315 | 315 | ||
| 316 | void UntrackPlaceholder(boost::icl::separate_interval_set<size_t>::iterator it) { | 316 | void UntrackPlaceholder(boost::icl::separate_interval_set<size_t>::iterator it) { |
| 317 | placeholders.erase(it); | ||
| 318 | placeholder_host_pointers.erase(it->lower()); | 317 | placeholder_host_pointers.erase(it->lower()); |
| 318 | placeholders.erase(it); | ||
| 319 | } | 319 | } |
| 320 | 320 | ||
| 321 | /// Return true when a given memory region is a "nieche" and the placeholders don't have to be | 321 | /// Return true when a given memory region is a "nieche" and the placeholders don't have to be |
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index e40d117d6..0e85a9c1d 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp | |||
| @@ -9,6 +9,8 @@ | |||
| 9 | #include <thread> | 9 | #include <thread> |
| 10 | #include <vector> | 10 | #include <vector> |
| 11 | 11 | ||
| 12 | #include <fmt/format.h> | ||
| 13 | |||
| 12 | #ifdef _WIN32 | 14 | #ifdef _WIN32 |
| 13 | #include <windows.h> // For OutputDebugStringW | 15 | #include <windows.h> // For OutputDebugStringW |
| 14 | #endif | 16 | #endif |
| @@ -22,6 +24,7 @@ | |||
| 22 | 24 | ||
| 23 | #include "common/logging/backend.h" | 25 | #include "common/logging/backend.h" |
| 24 | #include "common/logging/log.h" | 26 | #include "common/logging/log.h" |
| 27 | #include "common/logging/log_entry.h" | ||
| 25 | #include "common/logging/text_formatter.h" | 28 | #include "common/logging/text_formatter.h" |
| 26 | #include "common/settings.h" | 29 | #include "common/settings.h" |
| 27 | #ifdef _WIN32 | 30 | #ifdef _WIN32 |
diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 8d43eddc7..c186d55ef 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h | |||
| @@ -4,7 +4,11 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <fmt/format.h> | 7 | #include <algorithm> |
| 8 | #include <string_view> | ||
| 9 | |||
| 10 | #include <fmt/core.h> | ||
| 11 | |||
| 8 | #include "common/logging/types.h" | 12 | #include "common/logging/types.h" |
| 9 | 13 | ||
| 10 | namespace Common::Log { | 14 | namespace Common::Log { |
diff --git a/src/common/logging/log_entry.h b/src/common/logging/log_entry.h new file mode 100644 index 000000000..dd6f44841 --- /dev/null +++ b/src/common/logging/log_entry.h | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | // Copyright 2021 yuzu Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #pragma once | ||
| 6 | |||
| 7 | #include <chrono> | ||
| 8 | |||
| 9 | #include "common/logging/types.h" | ||
| 10 | |||
| 11 | namespace Common::Log { | ||
| 12 | |||
| 13 | /** | ||
| 14 | * A log entry. Log entries are store in a structured format to permit more varied output | ||
| 15 | * formatting on different frontends, as well as facilitating filtering and aggregation. | ||
| 16 | */ | ||
| 17 | struct Entry { | ||
| 18 | std::chrono::microseconds timestamp; | ||
| 19 | Class log_class{}; | ||
| 20 | Level log_level{}; | ||
| 21 | const char* filename = nullptr; | ||
| 22 | unsigned int line_num = 0; | ||
| 23 | std::string function; | ||
| 24 | std::string message; | ||
| 25 | bool final_entry = false; | ||
| 26 | }; | ||
| 27 | |||
| 28 | } // namespace Common::Log | ||
diff --git a/src/common/logging/text_formatter.cpp b/src/common/logging/text_formatter.cpp index cfc0d5846..10b2281db 100644 --- a/src/common/logging/text_formatter.cpp +++ b/src/common/logging/text_formatter.cpp | |||
| @@ -13,6 +13,7 @@ | |||
| 13 | #include "common/common_funcs.h" | 13 | #include "common/common_funcs.h" |
| 14 | #include "common/logging/filter.h" | 14 | #include "common/logging/filter.h" |
| 15 | #include "common/logging/log.h" | 15 | #include "common/logging/log.h" |
| 16 | #include "common/logging/log_entry.h" | ||
| 16 | #include "common/logging/text_formatter.h" | 17 | #include "common/logging/text_formatter.h" |
| 17 | #include "common/string_util.h" | 18 | #include "common/string_util.h" |
| 18 | 19 | ||
diff --git a/src/common/logging/types.h b/src/common/logging/types.h index ddf9d27ca..2d21fc483 100644 --- a/src/common/logging/types.h +++ b/src/common/logging/types.h | |||
| @@ -4,8 +4,6 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <chrono> | ||
| 8 | |||
| 9 | #include "common/common_types.h" | 7 | #include "common/common_types.h" |
| 10 | 8 | ||
| 11 | namespace Common::Log { | 9 | namespace Common::Log { |
| @@ -131,19 +129,4 @@ enum class Class : u8 { | |||
| 131 | Count ///< Total number of logging classes | 129 | Count ///< Total number of logging classes |
| 132 | }; | 130 | }; |
| 133 | 131 | ||
| 134 | /** | ||
| 135 | * A log entry. Log entries are store in a structured format to permit more varied output | ||
| 136 | * formatting on different frontends, as well as facilitating filtering and aggregation. | ||
| 137 | */ | ||
| 138 | struct Entry { | ||
| 139 | std::chrono::microseconds timestamp; | ||
| 140 | Class log_class{}; | ||
| 141 | Level log_level{}; | ||
| 142 | const char* filename = nullptr; | ||
| 143 | unsigned int line_num = 0; | ||
| 144 | std::string function; | ||
| 145 | std::string message; | ||
| 146 | bool final_entry = false; | ||
| 147 | }; | ||
| 148 | |||
| 149 | } // namespace Common::Log | 132 | } // namespace Common::Log |
diff --git a/src/common/param_package.cpp b/src/common/param_package.cpp index b916b4866..bbf20f5eb 100644 --- a/src/common/param_package.cpp +++ b/src/common/param_package.cpp | |||
| @@ -3,6 +3,7 @@ | |||
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <array> | 5 | #include <array> |
| 6 | #include <stdexcept> | ||
| 6 | #include <utility> | 7 | #include <utility> |
| 7 | #include <vector> | 8 | #include <vector> |
| 8 | 9 | ||
diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 69f0bd8c0..9dd5e3efb 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp | |||
| @@ -69,8 +69,6 @@ void LogSettings() { | |||
| 69 | log_path("DataStorage_NANDDir", Common::FS::GetYuzuPath(Common::FS::YuzuPath::NANDDir)); | 69 | log_path("DataStorage_NANDDir", Common::FS::GetYuzuPath(Common::FS::YuzuPath::NANDDir)); |
| 70 | log_path("DataStorage_SDMCDir", Common::FS::GetYuzuPath(Common::FS::YuzuPath::SDMCDir)); | 70 | log_path("DataStorage_SDMCDir", Common::FS::GetYuzuPath(Common::FS::YuzuPath::SDMCDir)); |
| 71 | log_setting("Debugging_ProgramArgs", values.program_args.GetValue()); | 71 | log_setting("Debugging_ProgramArgs", values.program_args.GetValue()); |
| 72 | log_setting("Services_BCATBackend", values.bcat_backend.GetValue()); | ||
| 73 | log_setting("Services_BCATBoxcatLocal", values.bcat_boxcat_local.GetValue()); | ||
| 74 | log_setting("Input_EnableMotion", values.motion_enabled.GetValue()); | 72 | log_setting("Input_EnableMotion", values.motion_enabled.GetValue()); |
| 75 | log_setting("Input_EnableVibration", values.vibration_enabled.GetValue()); | 73 | log_setting("Input_EnableVibration", values.vibration_enabled.GetValue()); |
| 76 | log_setting("Input_EnableRawInput", values.enable_raw_input.GetValue()); | 74 | log_setting("Input_EnableRawInput", values.enable_raw_input.GetValue()); |
diff --git a/src/common/settings.h b/src/common/settings.h index c53d5acc3..402339443 100644 --- a/src/common/settings.h +++ b/src/common/settings.h | |||
| @@ -568,8 +568,6 @@ struct Values { | |||
| 568 | BasicSetting<bool> use_dev_keys{false, "use_dev_keys"}; | 568 | BasicSetting<bool> use_dev_keys{false, "use_dev_keys"}; |
| 569 | 569 | ||
| 570 | // Network | 570 | // Network |
| 571 | BasicSetting<std::string> bcat_backend{"none", "bcat_backend"}; | ||
| 572 | BasicSetting<bool> bcat_boxcat_local{false, "bcat_boxcat_local"}; | ||
| 573 | BasicSetting<std::string> network_interface{std::string(), "network_interface"}; | 571 | BasicSetting<std::string> network_interface{std::string(), "network_interface"}; |
| 574 | 572 | ||
| 575 | // WebService | 573 | // WebService |
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 7140d0db8..9f0fbba2d 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt | |||
| @@ -106,8 +106,6 @@ add_library(core STATIC | |||
| 106 | file_sys/vfs_concat.h | 106 | file_sys/vfs_concat.h |
| 107 | file_sys/vfs_layered.cpp | 107 | file_sys/vfs_layered.cpp |
| 108 | file_sys/vfs_layered.h | 108 | file_sys/vfs_layered.h |
| 109 | file_sys/vfs_libzip.cpp | ||
| 110 | file_sys/vfs_libzip.h | ||
| 111 | file_sys/vfs_offset.cpp | 109 | file_sys/vfs_offset.cpp |
| 112 | file_sys/vfs_offset.h | 110 | file_sys/vfs_offset.h |
| 113 | file_sys/vfs_real.cpp | 111 | file_sys/vfs_real.cpp |
| @@ -218,6 +216,7 @@ add_library(core STATIC | |||
| 218 | hle/kernel/k_session.h | 216 | hle/kernel/k_session.h |
| 219 | hle/kernel/k_shared_memory.cpp | 217 | hle/kernel/k_shared_memory.cpp |
| 220 | hle/kernel/k_shared_memory.h | 218 | hle/kernel/k_shared_memory.h |
| 219 | hle/kernel/k_shared_memory_info.h | ||
| 221 | hle/kernel/k_slab_heap.h | 220 | hle/kernel/k_slab_heap.h |
| 222 | hle/kernel/k_spin_lock.cpp | 221 | hle/kernel/k_spin_lock.cpp |
| 223 | hle/kernel/k_spin_lock.h | 222 | hle/kernel/k_spin_lock.h |
| @@ -653,13 +652,6 @@ add_library(core STATIC | |||
| 653 | tools/freezer.h | 652 | tools/freezer.h |
| 654 | ) | 653 | ) |
| 655 | 654 | ||
| 656 | if (YUZU_ENABLE_BOXCAT) | ||
| 657 | target_sources(core PRIVATE | ||
| 658 | hle/service/bcat/backend/boxcat.cpp | ||
| 659 | hle/service/bcat/backend/boxcat.h | ||
| 660 | ) | ||
| 661 | endif() | ||
| 662 | |||
| 663 | if (MSVC) | 655 | if (MSVC) |
| 664 | target_compile_options(core PRIVATE | 656 | target_compile_options(core PRIVATE |
| 665 | /we4242 # 'identifier': conversion from 'type1' to 'type2', possible loss of data | 657 | /we4242 # 'identifier': conversion from 'type1' to 'type2', possible loss of data |
| @@ -690,12 +682,7 @@ endif() | |||
| 690 | create_target_directory_groups(core) | 682 | create_target_directory_groups(core) |
| 691 | 683 | ||
| 692 | target_link_libraries(core PUBLIC common PRIVATE audio_core video_core) | 684 | target_link_libraries(core PUBLIC common PRIVATE audio_core video_core) |
| 693 | target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt::fmt nlohmann_json::nlohmann_json mbedtls Opus::Opus zip) | 685 | target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt::fmt nlohmann_json::nlohmann_json mbedtls Opus::Opus) |
| 694 | |||
| 695 | if (YUZU_ENABLE_BOXCAT) | ||
| 696 | target_compile_definitions(core PRIVATE -DYUZU_ENABLE_BOXCAT) | ||
| 697 | target_link_libraries(core PRIVATE httplib nlohmann_json::nlohmann_json) | ||
| 698 | endif() | ||
| 699 | 686 | ||
| 700 | if (ENABLE_WEB_SERVICE) | 687 | if (ENABLE_WEB_SERVICE) |
| 701 | target_compile_definitions(core PRIVATE -DENABLE_WEB_SERVICE) | 688 | target_compile_definitions(core PRIVATE -DENABLE_WEB_SERVICE) |
diff --git a/src/core/core.cpp b/src/core/core.cpp index 50d5dab4b..bb268a319 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp | |||
| @@ -421,6 +421,7 @@ struct System::Impl { | |||
| 421 | bool is_async_gpu{}; | 421 | bool is_async_gpu{}; |
| 422 | 422 | ||
| 423 | ExecuteProgramCallback execute_program_callback; | 423 | ExecuteProgramCallback execute_program_callback; |
| 424 | ExitCallback exit_callback; | ||
| 424 | 425 | ||
| 425 | std::array<u64, Core::Hardware::NUM_CPU_CORES> dynarmic_ticks{}; | 426 | std::array<u64, Core::Hardware::NUM_CPU_CORES> dynarmic_ticks{}; |
| 426 | std::array<MicroProfileToken, Core::Hardware::NUM_CPU_CORES> microprofile_dynarmic{}; | 427 | std::array<MicroProfileToken, Core::Hardware::NUM_CPU_CORES> microprofile_dynarmic{}; |
| @@ -798,6 +799,18 @@ void System::ExecuteProgram(std::size_t program_index) { | |||
| 798 | } | 799 | } |
| 799 | } | 800 | } |
| 800 | 801 | ||
| 802 | void System::RegisterExitCallback(ExitCallback&& callback) { | ||
| 803 | impl->exit_callback = std::move(callback); | ||
| 804 | } | ||
| 805 | |||
| 806 | void System::Exit() { | ||
| 807 | if (impl->exit_callback) { | ||
| 808 | impl->exit_callback(); | ||
| 809 | } else { | ||
| 810 | LOG_CRITICAL(Core, "exit_callback must be initialized by the frontend"); | ||
| 811 | } | ||
| 812 | } | ||
| 813 | |||
| 801 | void System::ApplySettings() { | 814 | void System::ApplySettings() { |
| 802 | if (IsPoweredOn()) { | 815 | if (IsPoweredOn()) { |
| 803 | Renderer().RefreshBaseSettings(); | 816 | Renderer().RefreshBaseSettings(); |
diff --git a/src/core/core.h b/src/core/core.h index 715ab88e7..a796472b2 100644 --- a/src/core/core.h +++ b/src/core/core.h | |||
| @@ -387,6 +387,18 @@ public: | |||
| 387 | */ | 387 | */ |
| 388 | void ExecuteProgram(std::size_t program_index); | 388 | void ExecuteProgram(std::size_t program_index); |
| 389 | 389 | ||
| 390 | /// Type used for the frontend to designate a callback for System to exit the application. | ||
| 391 | using ExitCallback = std::function<void()>; | ||
| 392 | |||
| 393 | /** | ||
| 394 | * Registers a callback from the frontend for System to exit the application. | ||
| 395 | * @param callback Callback from the frontend to exit the application. | ||
| 396 | */ | ||
| 397 | void RegisterExitCallback(ExitCallback&& callback); | ||
| 398 | |||
| 399 | /// Instructs the frontend to exit the application. | ||
| 400 | void Exit(); | ||
| 401 | |||
| 390 | /// Applies any changes to settings to this core instance. | 402 | /// Applies any changes to settings to this core instance. |
| 391 | void ApplySettings(); | 403 | void ApplySettings(); |
| 392 | 404 | ||
diff --git a/src/core/file_sys/program_metadata.cpp b/src/core/file_sys/program_metadata.cpp index 01ae1a567..35a53d36c 100644 --- a/src/core/file_sys/program_metadata.cpp +++ b/src/core/file_sys/program_metadata.cpp | |||
| @@ -77,7 +77,7 @@ void ProgramMetadata::LoadManual(bool is_64_bit, ProgramAddressSpaceType address | |||
| 77 | aci_header.title_id = title_id; | 77 | aci_header.title_id = title_id; |
| 78 | aci_file_access.permissions = filesystem_permissions; | 78 | aci_file_access.permissions = filesystem_permissions; |
| 79 | npdm_header.system_resource_size = system_resource_size; | 79 | npdm_header.system_resource_size = system_resource_size; |
| 80 | aci_kernel_capabilities = std ::move(capabilities); | 80 | aci_kernel_capabilities = std::move(capabilities); |
| 81 | } | 81 | } |
| 82 | 82 | ||
| 83 | bool ProgramMetadata::Is64BitProgram() const { | 83 | bool ProgramMetadata::Is64BitProgram() const { |
diff --git a/src/core/file_sys/vfs_libzip.cpp b/src/core/file_sys/vfs_libzip.cpp deleted file mode 100644 index 00e256779..000000000 --- a/src/core/file_sys/vfs_libzip.cpp +++ /dev/null | |||
| @@ -1,88 +0,0 @@ | |||
| 1 | // Copyright 2019 yuzu emulator team | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #include <string> | ||
| 6 | |||
| 7 | #ifdef __GNUC__ | ||
| 8 | #pragma GCC diagnostic push | ||
| 9 | #pragma GCC diagnostic ignored "-Wshadow" | ||
| 10 | #endif | ||
| 11 | #include <zip.h> | ||
| 12 | #ifdef __GNUC__ | ||
| 13 | #pragma GCC diagnostic pop | ||
| 14 | #endif | ||
| 15 | |||
| 16 | #include "common/fs/path_util.h" | ||
| 17 | #include "core/file_sys/vfs.h" | ||
| 18 | #include "core/file_sys/vfs_libzip.h" | ||
| 19 | #include "core/file_sys/vfs_vector.h" | ||
| 20 | |||
| 21 | namespace FileSys { | ||
| 22 | |||
| 23 | VirtualDir ExtractZIP(VirtualFile file) { | ||
| 24 | zip_error_t error{}; | ||
| 25 | |||
| 26 | const auto data = file->ReadAllBytes(); | ||
| 27 | std::unique_ptr<zip_source_t, decltype(&zip_source_close)> src{ | ||
| 28 | zip_source_buffer_create(data.data(), data.size(), 0, &error), zip_source_close}; | ||
| 29 | if (src == nullptr) | ||
| 30 | return nullptr; | ||
| 31 | |||
| 32 | std::unique_ptr<zip_t, decltype(&zip_close)> zip{zip_open_from_source(src.get(), 0, &error), | ||
| 33 | zip_close}; | ||
| 34 | if (zip == nullptr) | ||
| 35 | return nullptr; | ||
| 36 | |||
| 37 | std::shared_ptr<VectorVfsDirectory> out = std::make_shared<VectorVfsDirectory>(); | ||
| 38 | |||
| 39 | const auto num_entries = static_cast<std::size_t>(zip_get_num_entries(zip.get(), 0)); | ||
| 40 | |||
| 41 | zip_stat_t stat{}; | ||
| 42 | zip_stat_init(&stat); | ||
| 43 | |||
| 44 | for (std::size_t i = 0; i < num_entries; ++i) { | ||
| 45 | const auto stat_res = zip_stat_index(zip.get(), i, 0, &stat); | ||
| 46 | if (stat_res == -1) | ||
| 47 | return nullptr; | ||
| 48 | |||
| 49 | const std::string name(stat.name); | ||
| 50 | if (name.empty()) | ||
| 51 | continue; | ||
| 52 | |||
| 53 | if (name.back() != '/') { | ||
| 54 | std::unique_ptr<zip_file_t, decltype(&zip_fclose)> file2{ | ||
| 55 | zip_fopen_index(zip.get(), i, 0), zip_fclose}; | ||
| 56 | |||
| 57 | std::vector<u8> buf(stat.size); | ||
| 58 | if (zip_fread(file2.get(), buf.data(), buf.size()) != s64(buf.size())) | ||
| 59 | return nullptr; | ||
| 60 | |||
| 61 | const auto parts = Common::FS::SplitPathComponents(stat.name); | ||
| 62 | const auto new_file = std::make_shared<VectorVfsFile>(buf, parts.back()); | ||
| 63 | |||
| 64 | std::shared_ptr<VectorVfsDirectory> dtrv = out; | ||
| 65 | for (std::size_t j = 0; j < parts.size() - 1; ++j) { | ||
| 66 | if (dtrv == nullptr) | ||
| 67 | return nullptr; | ||
| 68 | const auto subdir = dtrv->GetSubdirectory(parts[j]); | ||
| 69 | if (subdir == nullptr) { | ||
| 70 | const auto temp = std::make_shared<VectorVfsDirectory>( | ||
| 71 | std::vector<VirtualFile>{}, std::vector<VirtualDir>{}, parts[j]); | ||
| 72 | dtrv->AddDirectory(temp); | ||
| 73 | dtrv = temp; | ||
| 74 | } else { | ||
| 75 | dtrv = std::dynamic_pointer_cast<VectorVfsDirectory>(subdir); | ||
| 76 | } | ||
| 77 | } | ||
| 78 | |||
| 79 | if (dtrv == nullptr) | ||
| 80 | return nullptr; | ||
| 81 | dtrv->AddFile(new_file); | ||
| 82 | } | ||
| 83 | } | ||
| 84 | |||
| 85 | return out; | ||
| 86 | } | ||
| 87 | |||
| 88 | } // namespace FileSys | ||
diff --git a/src/core/file_sys/vfs_libzip.h b/src/core/file_sys/vfs_libzip.h deleted file mode 100644 index f68af576a..000000000 --- a/src/core/file_sys/vfs_libzip.h +++ /dev/null | |||
| @@ -1,13 +0,0 @@ | |||
| 1 | // Copyright 2019 yuzu emulator team | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #pragma once | ||
| 6 | |||
| 7 | #include "core/file_sys/vfs_types.h" | ||
| 8 | |||
| 9 | namespace FileSys { | ||
| 10 | |||
| 11 | VirtualDir ExtractZIP(VirtualFile zip); | ||
| 12 | |||
| 13 | } // namespace FileSys | ||
diff --git a/src/core/hle/kernel/k_auto_object_container.cpp b/src/core/hle/kernel/k_auto_object_container.cpp index 010006bb7..d5f80d5b2 100644 --- a/src/core/hle/kernel/k_auto_object_container.cpp +++ b/src/core/hle/kernel/k_auto_object_container.cpp | |||
| @@ -2,6 +2,8 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <algorithm> | ||
| 6 | |||
| 5 | #include "core/hle/kernel/k_auto_object_container.h" | 7 | #include "core/hle/kernel/k_auto_object_container.h" |
| 6 | 8 | ||
| 7 | namespace Kernel { | 9 | namespace Kernel { |
diff --git a/src/core/hle/kernel/k_handle_table.cpp b/src/core/hle/kernel/k_handle_table.cpp index 6a420d5b0..44d13169f 100644 --- a/src/core/hle/kernel/k_handle_table.cpp +++ b/src/core/hle/kernel/k_handle_table.cpp | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | namespace Kernel { | 7 | namespace Kernel { |
| 8 | 8 | ||
| 9 | KHandleTable::KHandleTable(KernelCore& kernel_) : kernel{kernel_} {} | 9 | KHandleTable::KHandleTable(KernelCore& kernel_) : kernel{kernel_} {} |
| 10 | KHandleTable ::~KHandleTable() = default; | 10 | KHandleTable::~KHandleTable() = default; |
| 11 | 11 | ||
| 12 | ResultCode KHandleTable::Finalize() { | 12 | ResultCode KHandleTable::Finalize() { |
| 13 | // Get the table and clear our record of it. | 13 | // Get the table and clear our record of it. |
diff --git a/src/core/hle/kernel/k_process.cpp b/src/core/hle/kernel/k_process.cpp index 8ead1a769..211157ccc 100644 --- a/src/core/hle/kernel/k_process.cpp +++ b/src/core/hle/kernel/k_process.cpp | |||
| @@ -23,6 +23,7 @@ | |||
| 23 | #include "core/hle/kernel/k_scheduler.h" | 23 | #include "core/hle/kernel/k_scheduler.h" |
| 24 | #include "core/hle/kernel/k_scoped_resource_reservation.h" | 24 | #include "core/hle/kernel/k_scoped_resource_reservation.h" |
| 25 | #include "core/hle/kernel/k_shared_memory.h" | 25 | #include "core/hle/kernel/k_shared_memory.h" |
| 26 | #include "core/hle/kernel/k_shared_memory_info.h" | ||
| 26 | #include "core/hle/kernel/k_slab_heap.h" | 27 | #include "core/hle/kernel/k_slab_heap.h" |
| 27 | #include "core/hle/kernel/k_thread.h" | 28 | #include "core/hle/kernel/k_thread.h" |
| 28 | #include "core/hle/kernel/kernel.h" | 29 | #include "core/hle/kernel/kernel.h" |
| @@ -254,10 +255,26 @@ ResultCode KProcess::AddSharedMemory(KSharedMemory* shmem, [[maybe_unused]] VAdd | |||
| 254 | // Lock ourselves, to prevent concurrent access. | 255 | // Lock ourselves, to prevent concurrent access. |
| 255 | KScopedLightLock lk(state_lock); | 256 | KScopedLightLock lk(state_lock); |
| 256 | 257 | ||
| 257 | // TODO(bunnei): Manage KSharedMemoryInfo list here. | 258 | // Try to find an existing info for the memory. |
| 259 | KSharedMemoryInfo* shemen_info = nullptr; | ||
| 260 | const auto iter = std::find_if( | ||
| 261 | shared_memory_list.begin(), shared_memory_list.end(), | ||
| 262 | [shmem](const KSharedMemoryInfo* info) { return info->GetSharedMemory() == shmem; }); | ||
| 263 | if (iter != shared_memory_list.end()) { | ||
| 264 | shemen_info = *iter; | ||
| 265 | } | ||
| 266 | |||
| 267 | if (shemen_info == nullptr) { | ||
| 268 | shemen_info = KSharedMemoryInfo::Allocate(kernel); | ||
| 269 | R_UNLESS(shemen_info != nullptr, ResultOutOfMemory); | ||
| 270 | |||
| 271 | shemen_info->Initialize(shmem); | ||
| 272 | shared_memory_list.push_back(shemen_info); | ||
| 273 | } | ||
| 258 | 274 | ||
| 259 | // Open a reference to the shared memory. | 275 | // Open a reference to the shared memory and its info. |
| 260 | shmem->Open(); | 276 | shmem->Open(); |
| 277 | shemen_info->Open(); | ||
| 261 | 278 | ||
| 262 | return ResultSuccess; | 279 | return ResultSuccess; |
| 263 | } | 280 | } |
| @@ -267,7 +284,20 @@ void KProcess::RemoveSharedMemory(KSharedMemory* shmem, [[maybe_unused]] VAddr a | |||
| 267 | // Lock ourselves, to prevent concurrent access. | 284 | // Lock ourselves, to prevent concurrent access. |
| 268 | KScopedLightLock lk(state_lock); | 285 | KScopedLightLock lk(state_lock); |
| 269 | 286 | ||
| 270 | // TODO(bunnei): Manage KSharedMemoryInfo list here. | 287 | KSharedMemoryInfo* shemen_info = nullptr; |
| 288 | const auto iter = std::find_if( | ||
| 289 | shared_memory_list.begin(), shared_memory_list.end(), | ||
| 290 | [shmem](const KSharedMemoryInfo* info) { return info->GetSharedMemory() == shmem; }); | ||
| 291 | if (iter != shared_memory_list.end()) { | ||
| 292 | shemen_info = *iter; | ||
| 293 | } | ||
| 294 | |||
| 295 | ASSERT(shemen_info != nullptr); | ||
| 296 | |||
| 297 | if (shemen_info->Close()) { | ||
| 298 | shared_memory_list.erase(iter); | ||
| 299 | KSharedMemoryInfo::Free(kernel, shemen_info); | ||
| 300 | } | ||
| 271 | 301 | ||
| 272 | // Close a reference to the shared memory. | 302 | // Close a reference to the shared memory. |
| 273 | shmem->Close(); | 303 | shmem->Close(); |
| @@ -412,6 +442,24 @@ void KProcess::Finalize() { | |||
| 412 | // Finalize the handle table and close any open handles. | 442 | // Finalize the handle table and close any open handles. |
| 413 | handle_table.Finalize(); | 443 | handle_table.Finalize(); |
| 414 | 444 | ||
| 445 | // Free all shared memory infos. | ||
| 446 | { | ||
| 447 | auto it = shared_memory_list.begin(); | ||
| 448 | while (it != shared_memory_list.end()) { | ||
| 449 | KSharedMemoryInfo* info = *it; | ||
| 450 | KSharedMemory* shmem = info->GetSharedMemory(); | ||
| 451 | |||
| 452 | while (!info->Close()) { | ||
| 453 | shmem->Close(); | ||
| 454 | } | ||
| 455 | |||
| 456 | shmem->Close(); | ||
| 457 | |||
| 458 | it = shared_memory_list.erase(it); | ||
| 459 | KSharedMemoryInfo::Free(kernel, info); | ||
| 460 | } | ||
| 461 | } | ||
| 462 | |||
| 415 | // Perform inherited finalization. | 463 | // Perform inherited finalization. |
| 416 | KAutoObjectWithSlabHeapAndContainer<KProcess, KSynchronizationObject>::Finalize(); | 464 | KAutoObjectWithSlabHeapAndContainer<KProcess, KSynchronizationObject>::Finalize(); |
| 417 | } | 465 | } |
diff --git a/src/core/hle/kernel/k_process.h b/src/core/hle/kernel/k_process.h index a03c074fb..1a53e2be7 100644 --- a/src/core/hle/kernel/k_process.h +++ b/src/core/hle/kernel/k_process.h | |||
| @@ -34,6 +34,7 @@ class KernelCore; | |||
| 34 | class KPageTable; | 34 | class KPageTable; |
| 35 | class KResourceLimit; | 35 | class KResourceLimit; |
| 36 | class KThread; | 36 | class KThread; |
| 37 | class KSharedMemoryInfo; | ||
| 37 | class TLSPage; | 38 | class TLSPage; |
| 38 | 39 | ||
| 39 | struct CodeSet; | 40 | struct CodeSet; |
| @@ -448,6 +449,9 @@ private: | |||
| 448 | /// List of threads that are running with this process as their owner. | 449 | /// List of threads that are running with this process as their owner. |
| 449 | std::list<const KThread*> thread_list; | 450 | std::list<const KThread*> thread_list; |
| 450 | 451 | ||
| 452 | /// List of shared memory that are running with this process as their owner. | ||
| 453 | std::list<KSharedMemoryInfo*> shared_memory_list; | ||
| 454 | |||
| 451 | /// Address of the top of the main thread's stack | 455 | /// Address of the top of the main thread's stack |
| 452 | VAddr main_thread_stack_top{}; | 456 | VAddr main_thread_stack_top{}; |
| 453 | 457 | ||
diff --git a/src/core/hle/kernel/k_shared_memory_info.h b/src/core/hle/kernel/k_shared_memory_info.h new file mode 100644 index 000000000..bf97a0184 --- /dev/null +++ b/src/core/hle/kernel/k_shared_memory_info.h | |||
| @@ -0,0 +1,46 @@ | |||
| 1 | // Copyright 2021 yuzu Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #pragma once | ||
| 6 | |||
| 7 | #include <memory> | ||
| 8 | #include <string> | ||
| 9 | |||
| 10 | #include <boost/intrusive/list.hpp> | ||
| 11 | |||
| 12 | #include "common/assert.h" | ||
| 13 | #include "core/hle/kernel/slab_helpers.h" | ||
| 14 | |||
| 15 | namespace Kernel { | ||
| 16 | |||
| 17 | class KSharedMemory; | ||
| 18 | |||
| 19 | class KSharedMemoryInfo final : public KSlabAllocated<KSharedMemoryInfo>, | ||
| 20 | public boost::intrusive::list_base_hook<> { | ||
| 21 | |||
| 22 | public: | ||
| 23 | explicit KSharedMemoryInfo() = default; | ||
| 24 | |||
| 25 | constexpr void Initialize(KSharedMemory* shmem) { | ||
| 26 | shared_memory = shmem; | ||
| 27 | } | ||
| 28 | |||
| 29 | constexpr KSharedMemory* GetSharedMemory() const { | ||
| 30 | return shared_memory; | ||
| 31 | } | ||
| 32 | |||
| 33 | constexpr void Open() { | ||
| 34 | ++reference_count; | ||
| 35 | } | ||
| 36 | |||
| 37 | constexpr bool Close() { | ||
| 38 | return (--reference_count) == 0; | ||
| 39 | } | ||
| 40 | |||
| 41 | private: | ||
| 42 | KSharedMemory* shared_memory{}; | ||
| 43 | size_t reference_count{}; | ||
| 44 | }; | ||
| 45 | |||
| 46 | } // namespace Kernel | ||
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h index 901d43da9..b6658b437 100644 --- a/src/core/hle/kernel/kernel.h +++ b/src/core/hle/kernel/kernel.h | |||
| @@ -49,6 +49,7 @@ class KScheduler; | |||
| 49 | class KServerSession; | 49 | class KServerSession; |
| 50 | class KSession; | 50 | class KSession; |
| 51 | class KSharedMemory; | 51 | class KSharedMemory; |
| 52 | class KSharedMemoryInfo; | ||
| 52 | class KThread; | 53 | class KThread; |
| 53 | class KTransferMemory; | 54 | class KTransferMemory; |
| 54 | class KWritableEvent; | 55 | class KWritableEvent; |
| @@ -309,6 +310,8 @@ public: | |||
| 309 | return slab_heap_container->session; | 310 | return slab_heap_container->session; |
| 310 | } else if constexpr (std::is_same_v<T, KSharedMemory>) { | 311 | } else if constexpr (std::is_same_v<T, KSharedMemory>) { |
| 311 | return slab_heap_container->shared_memory; | 312 | return slab_heap_container->shared_memory; |
| 313 | } else if constexpr (std::is_same_v<T, KSharedMemoryInfo>) { | ||
| 314 | return slab_heap_container->shared_memory_info; | ||
| 312 | } else if constexpr (std::is_same_v<T, KThread>) { | 315 | } else if constexpr (std::is_same_v<T, KThread>) { |
| 313 | return slab_heap_container->thread; | 316 | return slab_heap_container->thread; |
| 314 | } else if constexpr (std::is_same_v<T, KTransferMemory>) { | 317 | } else if constexpr (std::is_same_v<T, KTransferMemory>) { |
| @@ -362,6 +365,7 @@ private: | |||
| 362 | KSlabHeap<KResourceLimit> resource_limit; | 365 | KSlabHeap<KResourceLimit> resource_limit; |
| 363 | KSlabHeap<KSession> session; | 366 | KSlabHeap<KSession> session; |
| 364 | KSlabHeap<KSharedMemory> shared_memory; | 367 | KSlabHeap<KSharedMemory> shared_memory; |
| 368 | KSlabHeap<KSharedMemoryInfo> shared_memory_info; | ||
| 365 | KSlabHeap<KThread> thread; | 369 | KSlabHeap<KThread> thread; |
| 366 | KSlabHeap<KTransferMemory> transfer_memory; | 370 | KSlabHeap<KTransferMemory> transfer_memory; |
| 367 | KSlabHeap<KWritableEvent> writeable_event; | 371 | KSlabHeap<KWritableEvent> writeable_event; |
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 62fb06c45..f98f24a60 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp | |||
| @@ -320,17 +320,19 @@ static ResultCode SendSyncRequest(Core::System& system, Handle handle) { | |||
| 320 | 320 | ||
| 321 | auto& kernel = system.Kernel(); | 321 | auto& kernel = system.Kernel(); |
| 322 | 322 | ||
| 323 | KScopedAutoObject session = | ||
| 324 | kernel.CurrentProcess()->GetHandleTable().GetObject<KClientSession>(handle); | ||
| 325 | R_UNLESS(session.IsNotNull(), ResultInvalidHandle); | ||
| 326 | LOG_TRACE(Kernel_SVC, "called handle=0x{:08X}({})", handle, session->GetName()); | ||
| 327 | |||
| 328 | auto thread = kernel.CurrentScheduler()->GetCurrentThread(); | 323 | auto thread = kernel.CurrentScheduler()->GetCurrentThread(); |
| 329 | { | 324 | { |
| 330 | KScopedSchedulerLock lock(kernel); | 325 | KScopedSchedulerLock lock(kernel); |
| 331 | thread->SetState(ThreadState::Waiting); | 326 | thread->SetState(ThreadState::Waiting); |
| 332 | thread->SetWaitReasonForDebugging(ThreadWaitReasonForDebugging::IPC); | 327 | thread->SetWaitReasonForDebugging(ThreadWaitReasonForDebugging::IPC); |
| 333 | session->SendSyncRequest(thread, system.Memory(), system.CoreTiming()); | 328 | |
| 329 | { | ||
| 330 | KScopedAutoObject session = | ||
| 331 | kernel.CurrentProcess()->GetHandleTable().GetObject<KClientSession>(handle); | ||
| 332 | R_UNLESS(session.IsNotNull(), ResultInvalidHandle); | ||
| 333 | LOG_TRACE(Kernel_SVC, "called handle=0x{:08X}({})", handle, session->GetName()); | ||
| 334 | session->SendSyncRequest(thread, system.Memory(), system.CoreTiming()); | ||
| 335 | } | ||
| 334 | } | 336 | } |
| 335 | 337 | ||
| 336 | KSynchronizationObject* dummy{}; | 338 | KSynchronizationObject* dummy{}; |
diff --git a/src/core/hle/service/acc/async_context.cpp b/src/core/hle/service/acc/async_context.cpp index 459323132..a49dfdec7 100644 --- a/src/core/hle/service/acc/async_context.cpp +++ b/src/core/hle/service/acc/async_context.cpp | |||
| @@ -4,15 +4,12 @@ | |||
| 4 | 4 | ||
| 5 | #include "core/core.h" | 5 | #include "core/core.h" |
| 6 | #include "core/hle/ipc_helpers.h" | 6 | #include "core/hle/ipc_helpers.h" |
| 7 | #include "core/hle/kernel/k_event.h" | ||
| 7 | #include "core/hle/service/acc/async_context.h" | 8 | #include "core/hle/service/acc/async_context.h" |
| 8 | 9 | ||
| 9 | namespace Service::Account { | 10 | namespace Service::Account { |
| 10 | IAsyncContext::IAsyncContext(Core::System& system_) | 11 | IAsyncContext::IAsyncContext(Core::System& system_) |
| 11 | : ServiceFramework{system_, "IAsyncContext"}, compeletion_event{system_.Kernel()} { | 12 | : ServiceFramework{system_, "IAsyncContext"}, service_context{system_, "IAsyncContext"} { |
| 12 | |||
| 13 | Kernel::KAutoObject::Create(std::addressof(compeletion_event)); | ||
| 14 | compeletion_event.Initialize("IAsyncContext:CompletionEvent"); | ||
| 15 | |||
| 16 | // clang-format off | 13 | // clang-format off |
| 17 | static const FunctionInfo functions[] = { | 14 | static const FunctionInfo functions[] = { |
| 18 | {0, &IAsyncContext::GetSystemEvent, "GetSystemEvent"}, | 15 | {0, &IAsyncContext::GetSystemEvent, "GetSystemEvent"}, |
| @@ -23,6 +20,12 @@ IAsyncContext::IAsyncContext(Core::System& system_) | |||
| 23 | // clang-format on | 20 | // clang-format on |
| 24 | 21 | ||
| 25 | RegisterHandlers(functions); | 22 | RegisterHandlers(functions); |
| 23 | |||
| 24 | completion_event = service_context.CreateEvent("IAsyncContext:CompletionEvent"); | ||
| 25 | } | ||
| 26 | |||
| 27 | IAsyncContext::~IAsyncContext() { | ||
| 28 | service_context.CloseEvent(completion_event); | ||
| 26 | } | 29 | } |
| 27 | 30 | ||
| 28 | void IAsyncContext::GetSystemEvent(Kernel::HLERequestContext& ctx) { | 31 | void IAsyncContext::GetSystemEvent(Kernel::HLERequestContext& ctx) { |
| @@ -30,7 +33,7 @@ void IAsyncContext::GetSystemEvent(Kernel::HLERequestContext& ctx) { | |||
| 30 | 33 | ||
| 31 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 34 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 32 | rb.Push(ResultSuccess); | 35 | rb.Push(ResultSuccess); |
| 33 | rb.PushCopyObjects(compeletion_event.GetReadableEvent()); | 36 | rb.PushCopyObjects(completion_event->GetReadableEvent()); |
| 34 | } | 37 | } |
| 35 | 38 | ||
| 36 | void IAsyncContext::Cancel(Kernel::HLERequestContext& ctx) { | 39 | void IAsyncContext::Cancel(Kernel::HLERequestContext& ctx) { |
| @@ -62,7 +65,7 @@ void IAsyncContext::GetResult(Kernel::HLERequestContext& ctx) { | |||
| 62 | 65 | ||
| 63 | void IAsyncContext::MarkComplete() { | 66 | void IAsyncContext::MarkComplete() { |
| 64 | is_complete.store(true); | 67 | is_complete.store(true); |
| 65 | compeletion_event.GetWritableEvent().Signal(); | 68 | completion_event->GetWritableEvent().Signal(); |
| 66 | } | 69 | } |
| 67 | 70 | ||
| 68 | } // namespace Service::Account | 71 | } // namespace Service::Account |
diff --git a/src/core/hle/service/acc/async_context.h b/src/core/hle/service/acc/async_context.h index c694b4946..cc3a0a9fe 100644 --- a/src/core/hle/service/acc/async_context.h +++ b/src/core/hle/service/acc/async_context.h | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <atomic> | 7 | #include <atomic> |
| 8 | #include "core/hle/kernel/k_event.h" | 8 | #include "core/hle/service/kernel_helpers.h" |
| 9 | #include "core/hle/service/service.h" | 9 | #include "core/hle/service/service.h" |
| 10 | 10 | ||
| 11 | namespace Core { | 11 | namespace Core { |
| @@ -17,6 +17,7 @@ namespace Service::Account { | |||
| 17 | class IAsyncContext : public ServiceFramework<IAsyncContext> { | 17 | class IAsyncContext : public ServiceFramework<IAsyncContext> { |
| 18 | public: | 18 | public: |
| 19 | explicit IAsyncContext(Core::System& system_); | 19 | explicit IAsyncContext(Core::System& system_); |
| 20 | ~IAsyncContext() override; | ||
| 20 | 21 | ||
| 21 | void GetSystemEvent(Kernel::HLERequestContext& ctx); | 22 | void GetSystemEvent(Kernel::HLERequestContext& ctx); |
| 22 | void Cancel(Kernel::HLERequestContext& ctx); | 23 | void Cancel(Kernel::HLERequestContext& ctx); |
| @@ -30,8 +31,10 @@ protected: | |||
| 30 | 31 | ||
| 31 | void MarkComplete(); | 32 | void MarkComplete(); |
| 32 | 33 | ||
| 34 | KernelHelpers::ServiceContext service_context; | ||
| 35 | |||
| 33 | std::atomic<bool> is_complete{false}; | 36 | std::atomic<bool> is_complete{false}; |
| 34 | Kernel::KEvent compeletion_event; | 37 | Kernel::KEvent* completion_event; |
| 35 | }; | 38 | }; |
| 36 | 39 | ||
| 37 | } // namespace Service::Account | 40 | } // namespace Service::Account |
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp index 8c2e2f920..eccdcc20d 100644 --- a/src/core/hle/service/am/am.cpp +++ b/src/core/hle/service/am/am.cpp | |||
| @@ -16,9 +16,7 @@ | |||
| 16 | #include "core/hle/ipc_helpers.h" | 16 | #include "core/hle/ipc_helpers.h" |
| 17 | #include "core/hle/kernel/k_event.h" | 17 | #include "core/hle/kernel/k_event.h" |
| 18 | #include "core/hle/kernel/k_process.h" | 18 | #include "core/hle/kernel/k_process.h" |
| 19 | #include "core/hle/kernel/k_readable_event.h" | ||
| 20 | #include "core/hle/kernel/k_transfer_memory.h" | 19 | #include "core/hle/kernel/k_transfer_memory.h" |
| 21 | #include "core/hle/kernel/k_writable_event.h" | ||
| 22 | #include "core/hle/kernel/kernel.h" | 20 | #include "core/hle/kernel/kernel.h" |
| 23 | #include "core/hle/service/acc/profile_manager.h" | 21 | #include "core/hle/service/acc/profile_manager.h" |
| 24 | #include "core/hle/service/am/am.h" | 22 | #include "core/hle/service/am/am.h" |
| @@ -254,8 +252,9 @@ IDebugFunctions::IDebugFunctions(Core::System& system_) | |||
| 254 | IDebugFunctions::~IDebugFunctions() = default; | 252 | IDebugFunctions::~IDebugFunctions() = default; |
| 255 | 253 | ||
| 256 | ISelfController::ISelfController(Core::System& system_, NVFlinger::NVFlinger& nvflinger_) | 254 | ISelfController::ISelfController(Core::System& system_, NVFlinger::NVFlinger& nvflinger_) |
| 257 | : ServiceFramework{system_, "ISelfController"}, nvflinger{nvflinger_}, | 255 | : ServiceFramework{system_, "ISelfController"}, nvflinger{nvflinger_}, service_context{ |
| 258 | launchable_event{system.Kernel()}, accumulated_suspended_tick_changed_event{system.Kernel()} { | 256 | system, |
| 257 | "ISelfController"} { | ||
| 259 | // clang-format off | 258 | // clang-format off |
| 260 | static const FunctionInfo functions[] = { | 259 | static const FunctionInfo functions[] = { |
| 261 | {0, &ISelfController::Exit, "Exit"}, | 260 | {0, &ISelfController::Exit, "Exit"}, |
| @@ -311,9 +310,7 @@ ISelfController::ISelfController(Core::System& system_, NVFlinger::NVFlinger& nv | |||
| 311 | 310 | ||
| 312 | RegisterHandlers(functions); | 311 | RegisterHandlers(functions); |
| 313 | 312 | ||
| 314 | Kernel::KAutoObject::Create(std::addressof(launchable_event)); | 313 | launchable_event = service_context.CreateEvent("ISelfController:LaunchableEvent"); |
| 315 | |||
| 316 | launchable_event.Initialize("ISelfController:LaunchableEvent"); | ||
| 317 | 314 | ||
| 318 | // This event is created by AM on the first time GetAccumulatedSuspendedTickChangedEvent() is | 315 | // This event is created by AM on the first time GetAccumulatedSuspendedTickChangedEvent() is |
| 319 | // called. Yuzu can just create it unconditionally, since it doesn't need to support multiple | 316 | // called. Yuzu can just create it unconditionally, since it doesn't need to support multiple |
| @@ -321,21 +318,23 @@ ISelfController::ISelfController(Core::System& system_, NVFlinger::NVFlinger& nv | |||
| 321 | // suspended if the event has previously been created by a call to | 318 | // suspended if the event has previously been created by a call to |
| 322 | // GetAccumulatedSuspendedTickChangedEvent. | 319 | // GetAccumulatedSuspendedTickChangedEvent. |
| 323 | 320 | ||
| 324 | Kernel::KAutoObject::Create(std::addressof(accumulated_suspended_tick_changed_event)); | 321 | accumulated_suspended_tick_changed_event = |
| 325 | accumulated_suspended_tick_changed_event.Initialize( | 322 | service_context.CreateEvent("ISelfController:AccumulatedSuspendedTickChangedEvent"); |
| 326 | "ISelfController:AccumulatedSuspendedTickChangedEvent"); | 323 | accumulated_suspended_tick_changed_event->GetWritableEvent().Signal(); |
| 327 | accumulated_suspended_tick_changed_event.GetWritableEvent().Signal(); | ||
| 328 | } | 324 | } |
| 329 | 325 | ||
| 330 | ISelfController::~ISelfController() = default; | 326 | ISelfController::~ISelfController() { |
| 327 | service_context.CloseEvent(launchable_event); | ||
| 328 | service_context.CloseEvent(accumulated_suspended_tick_changed_event); | ||
| 329 | } | ||
| 331 | 330 | ||
| 332 | void ISelfController::Exit(Kernel::HLERequestContext& ctx) { | 331 | void ISelfController::Exit(Kernel::HLERequestContext& ctx) { |
| 333 | LOG_DEBUG(Service_AM, "called"); | 332 | LOG_DEBUG(Service_AM, "called"); |
| 334 | 333 | ||
| 335 | system.Shutdown(); | ||
| 336 | |||
| 337 | IPC::ResponseBuilder rb{ctx, 2}; | 334 | IPC::ResponseBuilder rb{ctx, 2}; |
| 338 | rb.Push(ResultSuccess); | 335 | rb.Push(ResultSuccess); |
| 336 | |||
| 337 | system.Exit(); | ||
| 339 | } | 338 | } |
| 340 | 339 | ||
| 341 | void ISelfController::LockExit(Kernel::HLERequestContext& ctx) { | 340 | void ISelfController::LockExit(Kernel::HLERequestContext& ctx) { |
| @@ -383,11 +382,11 @@ void ISelfController::LeaveFatalSection(Kernel::HLERequestContext& ctx) { | |||
| 383 | void ISelfController::GetLibraryAppletLaunchableEvent(Kernel::HLERequestContext& ctx) { | 382 | void ISelfController::GetLibraryAppletLaunchableEvent(Kernel::HLERequestContext& ctx) { |
| 384 | LOG_WARNING(Service_AM, "(STUBBED) called"); | 383 | LOG_WARNING(Service_AM, "(STUBBED) called"); |
| 385 | 384 | ||
| 386 | launchable_event.GetWritableEvent().Signal(); | 385 | launchable_event->GetWritableEvent().Signal(); |
| 387 | 386 | ||
| 388 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 387 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 389 | rb.Push(ResultSuccess); | 388 | rb.Push(ResultSuccess); |
| 390 | rb.PushCopyObjects(launchable_event.GetReadableEvent()); | 389 | rb.PushCopyObjects(launchable_event->GetReadableEvent()); |
| 391 | } | 390 | } |
| 392 | 391 | ||
| 393 | void ISelfController::SetScreenShotPermission(Kernel::HLERequestContext& ctx) { | 392 | void ISelfController::SetScreenShotPermission(Kernel::HLERequestContext& ctx) { |
| @@ -566,7 +565,7 @@ void ISelfController::GetAccumulatedSuspendedTickChangedEvent(Kernel::HLERequest | |||
| 566 | 565 | ||
| 567 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 566 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 568 | rb.Push(ResultSuccess); | 567 | rb.Push(ResultSuccess); |
| 569 | rb.PushCopyObjects(accumulated_suspended_tick_changed_event.GetReadableEvent()); | 568 | rb.PushCopyObjects(accumulated_suspended_tick_changed_event->GetReadableEvent()); |
| 570 | } | 569 | } |
| 571 | 570 | ||
| 572 | void ISelfController::SetAlbumImageTakenNotificationEnabled(Kernel::HLERequestContext& ctx) { | 571 | void ISelfController::SetAlbumImageTakenNotificationEnabled(Kernel::HLERequestContext& ctx) { |
| @@ -584,40 +583,39 @@ void ISelfController::SetAlbumImageTakenNotificationEnabled(Kernel::HLERequestCo | |||
| 584 | rb.Push(ResultSuccess); | 583 | rb.Push(ResultSuccess); |
| 585 | } | 584 | } |
| 586 | 585 | ||
| 587 | AppletMessageQueue::AppletMessageQueue(Kernel::KernelCore& kernel) | 586 | AppletMessageQueue::AppletMessageQueue(Core::System& system) |
| 588 | : on_new_message{kernel}, on_operation_mode_changed{kernel} { | 587 | : service_context{system, "AppletMessageQueue"} { |
| 589 | 588 | on_new_message = service_context.CreateEvent("AMMessageQueue:OnMessageReceived"); | |
| 590 | Kernel::KAutoObject::Create(std::addressof(on_new_message)); | 589 | on_operation_mode_changed = service_context.CreateEvent("AMMessageQueue:OperationModeChanged"); |
| 591 | Kernel::KAutoObject::Create(std::addressof(on_operation_mode_changed)); | ||
| 592 | |||
| 593 | on_new_message.Initialize("AMMessageQueue:OnMessageReceived"); | ||
| 594 | on_operation_mode_changed.Initialize("AMMessageQueue:OperationModeChanged"); | ||
| 595 | } | 590 | } |
| 596 | 591 | ||
| 597 | AppletMessageQueue::~AppletMessageQueue() = default; | 592 | AppletMessageQueue::~AppletMessageQueue() { |
| 593 | service_context.CloseEvent(on_new_message); | ||
| 594 | service_context.CloseEvent(on_operation_mode_changed); | ||
| 595 | } | ||
| 598 | 596 | ||
| 599 | Kernel::KReadableEvent& AppletMessageQueue::GetMessageReceiveEvent() { | 597 | Kernel::KReadableEvent& AppletMessageQueue::GetMessageReceiveEvent() { |
| 600 | return on_new_message.GetReadableEvent(); | 598 | return on_new_message->GetReadableEvent(); |
| 601 | } | 599 | } |
| 602 | 600 | ||
| 603 | Kernel::KReadableEvent& AppletMessageQueue::GetOperationModeChangedEvent() { | 601 | Kernel::KReadableEvent& AppletMessageQueue::GetOperationModeChangedEvent() { |
| 604 | return on_operation_mode_changed.GetReadableEvent(); | 602 | return on_operation_mode_changed->GetReadableEvent(); |
| 605 | } | 603 | } |
| 606 | 604 | ||
| 607 | void AppletMessageQueue::PushMessage(AppletMessage msg) { | 605 | void AppletMessageQueue::PushMessage(AppletMessage msg) { |
| 608 | messages.push(msg); | 606 | messages.push(msg); |
| 609 | on_new_message.GetWritableEvent().Signal(); | 607 | on_new_message->GetWritableEvent().Signal(); |
| 610 | } | 608 | } |
| 611 | 609 | ||
| 612 | AppletMessageQueue::AppletMessage AppletMessageQueue::PopMessage() { | 610 | AppletMessageQueue::AppletMessage AppletMessageQueue::PopMessage() { |
| 613 | if (messages.empty()) { | 611 | if (messages.empty()) { |
| 614 | on_new_message.GetWritableEvent().Clear(); | 612 | on_new_message->GetWritableEvent().Clear(); |
| 615 | return AppletMessage::NoMessage; | 613 | return AppletMessage::NoMessage; |
| 616 | } | 614 | } |
| 617 | auto msg = messages.front(); | 615 | auto msg = messages.front(); |
| 618 | messages.pop(); | 616 | messages.pop(); |
| 619 | if (messages.empty()) { | 617 | if (messages.empty()) { |
| 620 | on_new_message.GetWritableEvent().Clear(); | 618 | on_new_message->GetWritableEvent().Clear(); |
| 621 | } | 619 | } |
| 622 | return msg; | 620 | return msg; |
| 623 | } | 621 | } |
| @@ -637,7 +635,7 @@ void AppletMessageQueue::FocusStateChanged() { | |||
| 637 | void AppletMessageQueue::OperationModeChanged() { | 635 | void AppletMessageQueue::OperationModeChanged() { |
| 638 | PushMessage(AppletMessage::OperationModeChanged); | 636 | PushMessage(AppletMessage::OperationModeChanged); |
| 639 | PushMessage(AppletMessage::PerformanceModeChanged); | 637 | PushMessage(AppletMessage::PerformanceModeChanged); |
| 640 | on_operation_mode_changed.GetWritableEvent().Signal(); | 638 | on_operation_mode_changed->GetWritableEvent().Signal(); |
| 641 | } | 639 | } |
| 642 | 640 | ||
| 643 | ICommonStateGetter::ICommonStateGetter(Core::System& system_, | 641 | ICommonStateGetter::ICommonStateGetter(Core::System& system_, |
| @@ -1272,10 +1270,8 @@ void ILibraryAppletCreator::CreateHandleStorage(Kernel::HLERequestContext& ctx) | |||
| 1272 | } | 1270 | } |
| 1273 | 1271 | ||
| 1274 | IApplicationFunctions::IApplicationFunctions(Core::System& system_) | 1272 | IApplicationFunctions::IApplicationFunctions(Core::System& system_) |
| 1275 | : ServiceFramework{system_, "IApplicationFunctions"}, gpu_error_detected_event{system.Kernel()}, | 1273 | : ServiceFramework{system_, "IApplicationFunctions"}, service_context{system, |
| 1276 | friend_invitation_storage_channel_event{system.Kernel()}, | 1274 | "IApplicationFunctions"} { |
| 1277 | notification_storage_channel_event{system.Kernel()}, health_warning_disappeared_system_event{ | ||
| 1278 | system.Kernel()} { | ||
| 1279 | // clang-format off | 1275 | // clang-format off |
| 1280 | static const FunctionInfo functions[] = { | 1276 | static const FunctionInfo functions[] = { |
| 1281 | {1, &IApplicationFunctions::PopLaunchParameter, "PopLaunchParameter"}, | 1277 | {1, &IApplicationFunctions::PopLaunchParameter, "PopLaunchParameter"}, |
| @@ -1343,21 +1339,22 @@ IApplicationFunctions::IApplicationFunctions(Core::System& system_) | |||
| 1343 | 1339 | ||
| 1344 | RegisterHandlers(functions); | 1340 | RegisterHandlers(functions); |
| 1345 | 1341 | ||
| 1346 | Kernel::KAutoObject::Create(std::addressof(gpu_error_detected_event)); | 1342 | gpu_error_detected_event = |
| 1347 | Kernel::KAutoObject::Create(std::addressof(friend_invitation_storage_channel_event)); | 1343 | service_context.CreateEvent("IApplicationFunctions:GpuErrorDetectedSystemEvent"); |
| 1348 | Kernel::KAutoObject::Create(std::addressof(notification_storage_channel_event)); | 1344 | friend_invitation_storage_channel_event = |
| 1349 | Kernel::KAutoObject::Create(std::addressof(health_warning_disappeared_system_event)); | 1345 | service_context.CreateEvent("IApplicationFunctions:FriendInvitationStorageChannelEvent"); |
| 1350 | 1346 | notification_storage_channel_event = | |
| 1351 | gpu_error_detected_event.Initialize("IApplicationFunctions:GpuErrorDetectedSystemEvent"); | 1347 | service_context.CreateEvent("IApplicationFunctions:NotificationStorageChannelEvent"); |
| 1352 | friend_invitation_storage_channel_event.Initialize( | 1348 | health_warning_disappeared_system_event = |
| 1353 | "IApplicationFunctions:FriendInvitationStorageChannelEvent"); | 1349 | service_context.CreateEvent("IApplicationFunctions:HealthWarningDisappearedSystemEvent"); |
| 1354 | notification_storage_channel_event.Initialize( | ||
| 1355 | "IApplicationFunctions:NotificationStorageChannelEvent"); | ||
| 1356 | health_warning_disappeared_system_event.Initialize( | ||
| 1357 | "IApplicationFunctions:HealthWarningDisappearedSystemEvent"); | ||
| 1358 | } | 1350 | } |
| 1359 | 1351 | ||
| 1360 | IApplicationFunctions::~IApplicationFunctions() = default; | 1352 | IApplicationFunctions::~IApplicationFunctions() { |
| 1353 | service_context.CloseEvent(gpu_error_detected_event); | ||
| 1354 | service_context.CloseEvent(friend_invitation_storage_channel_event); | ||
| 1355 | service_context.CloseEvent(notification_storage_channel_event); | ||
| 1356 | service_context.CloseEvent(health_warning_disappeared_system_event); | ||
| 1357 | } | ||
| 1361 | 1358 | ||
| 1362 | void IApplicationFunctions::EnableApplicationCrashReport(Kernel::HLERequestContext& ctx) { | 1359 | void IApplicationFunctions::EnableApplicationCrashReport(Kernel::HLERequestContext& ctx) { |
| 1363 | LOG_WARNING(Service_AM, "(STUBBED) called"); | 1360 | LOG_WARNING(Service_AM, "(STUBBED) called"); |
| @@ -1751,7 +1748,7 @@ void IApplicationFunctions::GetGpuErrorDetectedSystemEvent(Kernel::HLERequestCon | |||
| 1751 | 1748 | ||
| 1752 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 1749 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 1753 | rb.Push(ResultSuccess); | 1750 | rb.Push(ResultSuccess); |
| 1754 | rb.PushCopyObjects(gpu_error_detected_event.GetReadableEvent()); | 1751 | rb.PushCopyObjects(gpu_error_detected_event->GetReadableEvent()); |
| 1755 | } | 1752 | } |
| 1756 | 1753 | ||
| 1757 | void IApplicationFunctions::GetFriendInvitationStorageChannelEvent(Kernel::HLERequestContext& ctx) { | 1754 | void IApplicationFunctions::GetFriendInvitationStorageChannelEvent(Kernel::HLERequestContext& ctx) { |
| @@ -1759,7 +1756,7 @@ void IApplicationFunctions::GetFriendInvitationStorageChannelEvent(Kernel::HLERe | |||
| 1759 | 1756 | ||
| 1760 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 1757 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 1761 | rb.Push(ResultSuccess); | 1758 | rb.Push(ResultSuccess); |
| 1762 | rb.PushCopyObjects(friend_invitation_storage_channel_event.GetReadableEvent()); | 1759 | rb.PushCopyObjects(friend_invitation_storage_channel_event->GetReadableEvent()); |
| 1763 | } | 1760 | } |
| 1764 | 1761 | ||
| 1765 | void IApplicationFunctions::TryPopFromFriendInvitationStorageChannel( | 1762 | void IApplicationFunctions::TryPopFromFriendInvitationStorageChannel( |
| @@ -1775,7 +1772,7 @@ void IApplicationFunctions::GetNotificationStorageChannelEvent(Kernel::HLEReques | |||
| 1775 | 1772 | ||
| 1776 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 1773 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 1777 | rb.Push(ResultSuccess); | 1774 | rb.Push(ResultSuccess); |
| 1778 | rb.PushCopyObjects(notification_storage_channel_event.GetReadableEvent()); | 1775 | rb.PushCopyObjects(notification_storage_channel_event->GetReadableEvent()); |
| 1779 | } | 1776 | } |
| 1780 | 1777 | ||
| 1781 | void IApplicationFunctions::GetHealthWarningDisappearedSystemEvent(Kernel::HLERequestContext& ctx) { | 1778 | void IApplicationFunctions::GetHealthWarningDisappearedSystemEvent(Kernel::HLERequestContext& ctx) { |
| @@ -1783,12 +1780,12 @@ void IApplicationFunctions::GetHealthWarningDisappearedSystemEvent(Kernel::HLERe | |||
| 1783 | 1780 | ||
| 1784 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 1781 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 1785 | rb.Push(ResultSuccess); | 1782 | rb.Push(ResultSuccess); |
| 1786 | rb.PushCopyObjects(health_warning_disappeared_system_event.GetReadableEvent()); | 1783 | rb.PushCopyObjects(health_warning_disappeared_system_event->GetReadableEvent()); |
| 1787 | } | 1784 | } |
| 1788 | 1785 | ||
| 1789 | void InstallInterfaces(SM::ServiceManager& service_manager, NVFlinger::NVFlinger& nvflinger, | 1786 | void InstallInterfaces(SM::ServiceManager& service_manager, NVFlinger::NVFlinger& nvflinger, |
| 1790 | Core::System& system) { | 1787 | Core::System& system) { |
| 1791 | auto message_queue = std::make_shared<AppletMessageQueue>(system.Kernel()); | 1788 | auto message_queue = std::make_shared<AppletMessageQueue>(system); |
| 1792 | // Needed on game boot | 1789 | // Needed on game boot |
| 1793 | message_queue->PushMessage(AppletMessageQueue::AppletMessage::FocusStateChanged); | 1790 | message_queue->PushMessage(AppletMessageQueue::AppletMessage::FocusStateChanged); |
| 1794 | 1791 | ||
| @@ -1801,8 +1798,8 @@ void InstallInterfaces(SM::ServiceManager& service_manager, NVFlinger::NVFlinger | |||
| 1801 | } | 1798 | } |
| 1802 | 1799 | ||
| 1803 | IHomeMenuFunctions::IHomeMenuFunctions(Core::System& system_) | 1800 | IHomeMenuFunctions::IHomeMenuFunctions(Core::System& system_) |
| 1804 | : ServiceFramework{system_, "IHomeMenuFunctions"}, pop_from_general_channel_event{ | 1801 | : ServiceFramework{system_, "IHomeMenuFunctions"}, service_context{system, |
| 1805 | system.Kernel()} { | 1802 | "IHomeMenuFunctions"} { |
| 1806 | // clang-format off | 1803 | // clang-format off |
| 1807 | static const FunctionInfo functions[] = { | 1804 | static const FunctionInfo functions[] = { |
| 1808 | {10, &IHomeMenuFunctions::RequestToGetForeground, "RequestToGetForeground"}, | 1805 | {10, &IHomeMenuFunctions::RequestToGetForeground, "RequestToGetForeground"}, |
| @@ -1823,11 +1820,13 @@ IHomeMenuFunctions::IHomeMenuFunctions(Core::System& system_) | |||
| 1823 | 1820 | ||
| 1824 | RegisterHandlers(functions); | 1821 | RegisterHandlers(functions); |
| 1825 | 1822 | ||
| 1826 | Kernel::KAutoObject::Create(std::addressof(pop_from_general_channel_event)); | 1823 | pop_from_general_channel_event = |
| 1827 | pop_from_general_channel_event.Initialize("IHomeMenuFunctions:PopFromGeneralChannelEvent"); | 1824 | service_context.CreateEvent("IHomeMenuFunctions:PopFromGeneralChannelEvent"); |
| 1828 | } | 1825 | } |
| 1829 | 1826 | ||
| 1830 | IHomeMenuFunctions::~IHomeMenuFunctions() = default; | 1827 | IHomeMenuFunctions::~IHomeMenuFunctions() { |
| 1828 | service_context.CloseEvent(pop_from_general_channel_event); | ||
| 1829 | } | ||
| 1831 | 1830 | ||
| 1832 | void IHomeMenuFunctions::RequestToGetForeground(Kernel::HLERequestContext& ctx) { | 1831 | void IHomeMenuFunctions::RequestToGetForeground(Kernel::HLERequestContext& ctx) { |
| 1833 | LOG_WARNING(Service_AM, "(STUBBED) called"); | 1832 | LOG_WARNING(Service_AM, "(STUBBED) called"); |
| @@ -1841,7 +1840,7 @@ void IHomeMenuFunctions::GetPopFromGeneralChannelEvent(Kernel::HLERequestContext | |||
| 1841 | 1840 | ||
| 1842 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 1841 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 1843 | rb.Push(ResultSuccess); | 1842 | rb.Push(ResultSuccess); |
| 1844 | rb.PushCopyObjects(pop_from_general_channel_event.GetReadableEvent()); | 1843 | rb.PushCopyObjects(pop_from_general_channel_event->GetReadableEvent()); |
| 1845 | } | 1844 | } |
| 1846 | 1845 | ||
| 1847 | IGlobalStateController::IGlobalStateController(Core::System& system_) | 1846 | IGlobalStateController::IGlobalStateController(Core::System& system_) |
diff --git a/src/core/hle/service/am/am.h b/src/core/hle/service/am/am.h index c13aa5787..202d20757 100644 --- a/src/core/hle/service/am/am.h +++ b/src/core/hle/service/am/am.h | |||
| @@ -8,7 +8,7 @@ | |||
| 8 | #include <memory> | 8 | #include <memory> |
| 9 | #include <queue> | 9 | #include <queue> |
| 10 | 10 | ||
| 11 | #include "core/hle/kernel/k_event.h" | 11 | #include "core/hle/service/kernel_helpers.h" |
| 12 | #include "core/hle/service/service.h" | 12 | #include "core/hle/service/service.h" |
| 13 | 13 | ||
| 14 | namespace Kernel { | 14 | namespace Kernel { |
| @@ -53,7 +53,7 @@ public: | |||
| 53 | PerformanceModeChanged = 31, | 53 | PerformanceModeChanged = 31, |
| 54 | }; | 54 | }; |
| 55 | 55 | ||
| 56 | explicit AppletMessageQueue(Kernel::KernelCore& kernel); | 56 | explicit AppletMessageQueue(Core::System& system); |
| 57 | ~AppletMessageQueue(); | 57 | ~AppletMessageQueue(); |
| 58 | 58 | ||
| 59 | Kernel::KReadableEvent& GetMessageReceiveEvent(); | 59 | Kernel::KReadableEvent& GetMessageReceiveEvent(); |
| @@ -66,9 +66,12 @@ public: | |||
| 66 | void OperationModeChanged(); | 66 | void OperationModeChanged(); |
| 67 | 67 | ||
| 68 | private: | 68 | private: |
| 69 | KernelHelpers::ServiceContext service_context; | ||
| 70 | |||
| 71 | Kernel::KEvent* on_new_message; | ||
| 72 | Kernel::KEvent* on_operation_mode_changed; | ||
| 73 | |||
| 69 | std::queue<AppletMessage> messages; | 74 | std::queue<AppletMessage> messages; |
| 70 | Kernel::KEvent on_new_message; | ||
| 71 | Kernel::KEvent on_operation_mode_changed; | ||
| 72 | }; | 75 | }; |
| 73 | 76 | ||
| 74 | class IWindowController final : public ServiceFramework<IWindowController> { | 77 | class IWindowController final : public ServiceFramework<IWindowController> { |
| @@ -156,8 +159,11 @@ private: | |||
| 156 | }; | 159 | }; |
| 157 | 160 | ||
| 158 | NVFlinger::NVFlinger& nvflinger; | 161 | NVFlinger::NVFlinger& nvflinger; |
| 159 | Kernel::KEvent launchable_event; | 162 | |
| 160 | Kernel::KEvent accumulated_suspended_tick_changed_event; | 163 | KernelHelpers::ServiceContext service_context; |
| 164 | |||
| 165 | Kernel::KEvent* launchable_event; | ||
| 166 | Kernel::KEvent* accumulated_suspended_tick_changed_event; | ||
| 161 | 167 | ||
| 162 | u32 idle_time_detection_extension = 0; | 168 | u32 idle_time_detection_extension = 0; |
| 163 | u64 num_fatal_sections_entered = 0; | 169 | u64 num_fatal_sections_entered = 0; |
| @@ -298,13 +304,15 @@ private: | |||
| 298 | void GetNotificationStorageChannelEvent(Kernel::HLERequestContext& ctx); | 304 | void GetNotificationStorageChannelEvent(Kernel::HLERequestContext& ctx); |
| 299 | void GetHealthWarningDisappearedSystemEvent(Kernel::HLERequestContext& ctx); | 305 | void GetHealthWarningDisappearedSystemEvent(Kernel::HLERequestContext& ctx); |
| 300 | 306 | ||
| 307 | KernelHelpers::ServiceContext service_context; | ||
| 308 | |||
| 301 | bool launch_popped_application_specific = false; | 309 | bool launch_popped_application_specific = false; |
| 302 | bool launch_popped_account_preselect = false; | 310 | bool launch_popped_account_preselect = false; |
| 303 | s32 previous_program_index{-1}; | 311 | s32 previous_program_index{-1}; |
| 304 | Kernel::KEvent gpu_error_detected_event; | 312 | Kernel::KEvent* gpu_error_detected_event; |
| 305 | Kernel::KEvent friend_invitation_storage_channel_event; | 313 | Kernel::KEvent* friend_invitation_storage_channel_event; |
| 306 | Kernel::KEvent notification_storage_channel_event; | 314 | Kernel::KEvent* notification_storage_channel_event; |
| 307 | Kernel::KEvent health_warning_disappeared_system_event; | 315 | Kernel::KEvent* health_warning_disappeared_system_event; |
| 308 | }; | 316 | }; |
| 309 | 317 | ||
| 310 | class IHomeMenuFunctions final : public ServiceFramework<IHomeMenuFunctions> { | 318 | class IHomeMenuFunctions final : public ServiceFramework<IHomeMenuFunctions> { |
| @@ -316,7 +324,9 @@ private: | |||
| 316 | void RequestToGetForeground(Kernel::HLERequestContext& ctx); | 324 | void RequestToGetForeground(Kernel::HLERequestContext& ctx); |
| 317 | void GetPopFromGeneralChannelEvent(Kernel::HLERequestContext& ctx); | 325 | void GetPopFromGeneralChannelEvent(Kernel::HLERequestContext& ctx); |
| 318 | 326 | ||
| 319 | Kernel::KEvent pop_from_general_channel_event; | 327 | KernelHelpers::ServiceContext service_context; |
| 328 | |||
| 329 | Kernel::KEvent* pop_from_general_channel_event; | ||
| 320 | }; | 330 | }; |
| 321 | 331 | ||
| 322 | class IGlobalStateController final : public ServiceFramework<IGlobalStateController> { | 332 | class IGlobalStateController final : public ServiceFramework<IGlobalStateController> { |
diff --git a/src/core/hle/service/am/applets/applets.cpp b/src/core/hle/service/am/applets/applets.cpp index 2b7685d42..7320b1c0f 100644 --- a/src/core/hle/service/am/applets/applets.cpp +++ b/src/core/hle/service/am/applets/applets.cpp | |||
| @@ -12,8 +12,7 @@ | |||
| 12 | #include "core/frontend/applets/profile_select.h" | 12 | #include "core/frontend/applets/profile_select.h" |
| 13 | #include "core/frontend/applets/software_keyboard.h" | 13 | #include "core/frontend/applets/software_keyboard.h" |
| 14 | #include "core/frontend/applets/web_browser.h" | 14 | #include "core/frontend/applets/web_browser.h" |
| 15 | #include "core/hle/kernel/k_readable_event.h" | 15 | #include "core/hle/kernel/k_event.h" |
| 16 | #include "core/hle/kernel/k_writable_event.h" | ||
| 17 | #include "core/hle/service/am/am.h" | 16 | #include "core/hle/service/am/am.h" |
| 18 | #include "core/hle/service/am/applet_ae.h" | 17 | #include "core/hle/service/am/applet_ae.h" |
| 19 | #include "core/hle/service/am/applet_oe.h" | 18 | #include "core/hle/service/am/applet_oe.h" |
| @@ -29,19 +28,19 @@ | |||
| 29 | namespace Service::AM::Applets { | 28 | namespace Service::AM::Applets { |
| 30 | 29 | ||
| 31 | AppletDataBroker::AppletDataBroker(Core::System& system_, LibraryAppletMode applet_mode_) | 30 | AppletDataBroker::AppletDataBroker(Core::System& system_, LibraryAppletMode applet_mode_) |
| 32 | : system{system_}, applet_mode{applet_mode_}, state_changed_event{system.Kernel()}, | 31 | : system{system_}, applet_mode{applet_mode_}, service_context{system, |
| 33 | pop_out_data_event{system.Kernel()}, pop_interactive_out_data_event{system.Kernel()} { | 32 | "ILibraryAppletAccessor"} { |
| 34 | 33 | state_changed_event = service_context.CreateEvent("ILibraryAppletAccessor:StateChangedEvent"); | |
| 35 | Kernel::KAutoObject::Create(std::addressof(state_changed_event)); | 34 | pop_out_data_event = service_context.CreateEvent("ILibraryAppletAccessor:PopDataOutEvent"); |
| 36 | Kernel::KAutoObject::Create(std::addressof(pop_out_data_event)); | 35 | pop_interactive_out_data_event = |
| 37 | Kernel::KAutoObject::Create(std::addressof(pop_interactive_out_data_event)); | 36 | service_context.CreateEvent("ILibraryAppletAccessor:PopInteractiveDataOutEvent"); |
| 38 | |||
| 39 | state_changed_event.Initialize("ILibraryAppletAccessor:StateChangedEvent"); | ||
| 40 | pop_out_data_event.Initialize("ILibraryAppletAccessor:PopDataOutEvent"); | ||
| 41 | pop_interactive_out_data_event.Initialize("ILibraryAppletAccessor:PopInteractiveDataOutEvent"); | ||
| 42 | } | 37 | } |
| 43 | 38 | ||
| 44 | AppletDataBroker::~AppletDataBroker() = default; | 39 | AppletDataBroker::~AppletDataBroker() { |
| 40 | service_context.CloseEvent(state_changed_event); | ||
| 41 | service_context.CloseEvent(pop_out_data_event); | ||
| 42 | service_context.CloseEvent(pop_interactive_out_data_event); | ||
| 43 | } | ||
| 45 | 44 | ||
| 46 | AppletDataBroker::RawChannelData AppletDataBroker::PeekDataToAppletForDebug() const { | 45 | AppletDataBroker::RawChannelData AppletDataBroker::PeekDataToAppletForDebug() const { |
| 47 | std::vector<std::vector<u8>> out_normal; | 46 | std::vector<std::vector<u8>> out_normal; |
| @@ -65,7 +64,7 @@ std::shared_ptr<IStorage> AppletDataBroker::PopNormalDataToGame() { | |||
| 65 | 64 | ||
| 66 | auto out = std::move(out_channel.front()); | 65 | auto out = std::move(out_channel.front()); |
| 67 | out_channel.pop_front(); | 66 | out_channel.pop_front(); |
| 68 | pop_out_data_event.GetWritableEvent().Clear(); | 67 | pop_out_data_event->GetWritableEvent().Clear(); |
| 69 | return out; | 68 | return out; |
| 70 | } | 69 | } |
| 71 | 70 | ||
| @@ -84,7 +83,7 @@ std::shared_ptr<IStorage> AppletDataBroker::PopInteractiveDataToGame() { | |||
| 84 | 83 | ||
| 85 | auto out = std::move(out_interactive_channel.front()); | 84 | auto out = std::move(out_interactive_channel.front()); |
| 86 | out_interactive_channel.pop_front(); | 85 | out_interactive_channel.pop_front(); |
| 87 | pop_interactive_out_data_event.GetWritableEvent().Clear(); | 86 | pop_interactive_out_data_event->GetWritableEvent().Clear(); |
| 88 | return out; | 87 | return out; |
| 89 | } | 88 | } |
| 90 | 89 | ||
| @@ -103,7 +102,7 @@ void AppletDataBroker::PushNormalDataFromGame(std::shared_ptr<IStorage>&& storag | |||
| 103 | 102 | ||
| 104 | void AppletDataBroker::PushNormalDataFromApplet(std::shared_ptr<IStorage>&& storage) { | 103 | void AppletDataBroker::PushNormalDataFromApplet(std::shared_ptr<IStorage>&& storage) { |
| 105 | out_channel.emplace_back(std::move(storage)); | 104 | out_channel.emplace_back(std::move(storage)); |
| 106 | pop_out_data_event.GetWritableEvent().Signal(); | 105 | pop_out_data_event->GetWritableEvent().Signal(); |
| 107 | } | 106 | } |
| 108 | 107 | ||
| 109 | void AppletDataBroker::PushInteractiveDataFromGame(std::shared_ptr<IStorage>&& storage) { | 108 | void AppletDataBroker::PushInteractiveDataFromGame(std::shared_ptr<IStorage>&& storage) { |
| @@ -112,11 +111,11 @@ void AppletDataBroker::PushInteractiveDataFromGame(std::shared_ptr<IStorage>&& s | |||
| 112 | 111 | ||
| 113 | void AppletDataBroker::PushInteractiveDataFromApplet(std::shared_ptr<IStorage>&& storage) { | 112 | void AppletDataBroker::PushInteractiveDataFromApplet(std::shared_ptr<IStorage>&& storage) { |
| 114 | out_interactive_channel.emplace_back(std::move(storage)); | 113 | out_interactive_channel.emplace_back(std::move(storage)); |
| 115 | pop_interactive_out_data_event.GetWritableEvent().Signal(); | 114 | pop_interactive_out_data_event->GetWritableEvent().Signal(); |
| 116 | } | 115 | } |
| 117 | 116 | ||
| 118 | void AppletDataBroker::SignalStateChanged() { | 117 | void AppletDataBroker::SignalStateChanged() { |
| 119 | state_changed_event.GetWritableEvent().Signal(); | 118 | state_changed_event->GetWritableEvent().Signal(); |
| 120 | 119 | ||
| 121 | switch (applet_mode) { | 120 | switch (applet_mode) { |
| 122 | case LibraryAppletMode::AllForeground: | 121 | case LibraryAppletMode::AllForeground: |
| @@ -141,15 +140,15 @@ void AppletDataBroker::SignalStateChanged() { | |||
| 141 | } | 140 | } |
| 142 | 141 | ||
| 143 | Kernel::KReadableEvent& AppletDataBroker::GetNormalDataEvent() { | 142 | Kernel::KReadableEvent& AppletDataBroker::GetNormalDataEvent() { |
| 144 | return pop_out_data_event.GetReadableEvent(); | 143 | return pop_out_data_event->GetReadableEvent(); |
| 145 | } | 144 | } |
| 146 | 145 | ||
| 147 | Kernel::KReadableEvent& AppletDataBroker::GetInteractiveDataEvent() { | 146 | Kernel::KReadableEvent& AppletDataBroker::GetInteractiveDataEvent() { |
| 148 | return pop_interactive_out_data_event.GetReadableEvent(); | 147 | return pop_interactive_out_data_event->GetReadableEvent(); |
| 149 | } | 148 | } |
| 150 | 149 | ||
| 151 | Kernel::KReadableEvent& AppletDataBroker::GetStateChangedEvent() { | 150 | Kernel::KReadableEvent& AppletDataBroker::GetStateChangedEvent() { |
| 152 | return state_changed_event.GetReadableEvent(); | 151 | return state_changed_event->GetReadableEvent(); |
| 153 | } | 152 | } |
| 154 | 153 | ||
| 155 | Applet::Applet(Core::System& system_, LibraryAppletMode applet_mode_) | 154 | Applet::Applet(Core::System& system_, LibraryAppletMode applet_mode_) |
diff --git a/src/core/hle/service/am/applets/applets.h b/src/core/hle/service/am/applets/applets.h index 5c0b4b459..15eeb4ee1 100644 --- a/src/core/hle/service/am/applets/applets.h +++ b/src/core/hle/service/am/applets/applets.h | |||
| @@ -8,7 +8,7 @@ | |||
| 8 | #include <queue> | 8 | #include <queue> |
| 9 | 9 | ||
| 10 | #include "common/swap.h" | 10 | #include "common/swap.h" |
| 11 | #include "core/hle/kernel/k_event.h" | 11 | #include "core/hle/service/kernel_helpers.h" |
| 12 | 12 | ||
| 13 | union ResultCode; | 13 | union ResultCode; |
| 14 | 14 | ||
| @@ -105,6 +105,8 @@ private: | |||
| 105 | Core::System& system; | 105 | Core::System& system; |
| 106 | LibraryAppletMode applet_mode; | 106 | LibraryAppletMode applet_mode; |
| 107 | 107 | ||
| 108 | KernelHelpers::ServiceContext service_context; | ||
| 109 | |||
| 108 | // Queues are named from applet's perspective | 110 | // Queues are named from applet's perspective |
| 109 | 111 | ||
| 110 | // PopNormalDataToApplet and PushNormalDataFromGame | 112 | // PopNormalDataToApplet and PushNormalDataFromGame |
| @@ -119,13 +121,13 @@ private: | |||
| 119 | // PopInteractiveDataToGame and PushInteractiveDataFromApplet | 121 | // PopInteractiveDataToGame and PushInteractiveDataFromApplet |
| 120 | std::deque<std::shared_ptr<IStorage>> out_interactive_channel; | 122 | std::deque<std::shared_ptr<IStorage>> out_interactive_channel; |
| 121 | 123 | ||
| 122 | Kernel::KEvent state_changed_event; | 124 | Kernel::KEvent* state_changed_event; |
| 123 | 125 | ||
| 124 | // Signaled on PushNormalDataFromApplet | 126 | // Signaled on PushNormalDataFromApplet |
| 125 | Kernel::KEvent pop_out_data_event; | 127 | Kernel::KEvent* pop_out_data_event; |
| 126 | 128 | ||
| 127 | // Signaled on PushInteractiveDataFromApplet | 129 | // Signaled on PushInteractiveDataFromApplet |
| 128 | Kernel::KEvent pop_interactive_out_data_event; | 130 | Kernel::KEvent* pop_interactive_out_data_event; |
| 129 | }; | 131 | }; |
| 130 | 132 | ||
| 131 | class Applet { | 133 | class Applet { |
diff --git a/src/core/hle/service/aoc/aoc_u.cpp b/src/core/hle/service/aoc/aoc_u.cpp index dd945e058..4c54066c6 100644 --- a/src/core/hle/service/aoc/aoc_u.cpp +++ b/src/core/hle/service/aoc/aoc_u.cpp | |||
| @@ -16,8 +16,8 @@ | |||
| 16 | #include "core/file_sys/patch_manager.h" | 16 | #include "core/file_sys/patch_manager.h" |
| 17 | #include "core/file_sys/registered_cache.h" | 17 | #include "core/file_sys/registered_cache.h" |
| 18 | #include "core/hle/ipc_helpers.h" | 18 | #include "core/hle/ipc_helpers.h" |
| 19 | #include "core/hle/kernel/k_event.h" | ||
| 19 | #include "core/hle/kernel/k_process.h" | 20 | #include "core/hle/kernel/k_process.h" |
| 20 | #include "core/hle/kernel/k_readable_event.h" | ||
| 21 | #include "core/hle/kernel/kernel.h" | 21 | #include "core/hle/kernel/kernel.h" |
| 22 | #include "core/hle/service/aoc/aoc_u.h" | 22 | #include "core/hle/service/aoc/aoc_u.h" |
| 23 | #include "core/loader/loader.h" | 23 | #include "core/loader/loader.h" |
| @@ -49,7 +49,8 @@ static std::vector<u64> AccumulateAOCTitleIDs(Core::System& system) { | |||
| 49 | class IPurchaseEventManager final : public ServiceFramework<IPurchaseEventManager> { | 49 | class IPurchaseEventManager final : public ServiceFramework<IPurchaseEventManager> { |
| 50 | public: | 50 | public: |
| 51 | explicit IPurchaseEventManager(Core::System& system_) | 51 | explicit IPurchaseEventManager(Core::System& system_) |
| 52 | : ServiceFramework{system_, "IPurchaseEventManager"}, purchased_event{system.Kernel()} { | 52 | : ServiceFramework{system_, "IPurchaseEventManager"}, service_context{ |
| 53 | system, "IPurchaseEventManager"} { | ||
| 53 | // clang-format off | 54 | // clang-format off |
| 54 | static const FunctionInfo functions[] = { | 55 | static const FunctionInfo functions[] = { |
| 55 | {0, &IPurchaseEventManager::SetDefaultDeliveryTarget, "SetDefaultDeliveryTarget"}, | 56 | {0, &IPurchaseEventManager::SetDefaultDeliveryTarget, "SetDefaultDeliveryTarget"}, |
| @@ -62,8 +63,11 @@ public: | |||
| 62 | 63 | ||
| 63 | RegisterHandlers(functions); | 64 | RegisterHandlers(functions); |
| 64 | 65 | ||
| 65 | Kernel::KAutoObject::Create(std::addressof(purchased_event)); | 66 | purchased_event = service_context.CreateEvent("IPurchaseEventManager:PurchasedEvent"); |
| 66 | purchased_event.Initialize("IPurchaseEventManager:PurchasedEvent"); | 67 | } |
| 68 | |||
| 69 | ~IPurchaseEventManager() override { | ||
| 70 | service_context.CloseEvent(purchased_event); | ||
| 67 | } | 71 | } |
| 68 | 72 | ||
| 69 | private: | 73 | private: |
| @@ -96,15 +100,17 @@ private: | |||
| 96 | 100 | ||
| 97 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 101 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 98 | rb.Push(ResultSuccess); | 102 | rb.Push(ResultSuccess); |
| 99 | rb.PushCopyObjects(purchased_event.GetReadableEvent()); | 103 | rb.PushCopyObjects(purchased_event->GetReadableEvent()); |
| 100 | } | 104 | } |
| 101 | 105 | ||
| 102 | Kernel::KEvent purchased_event; | 106 | KernelHelpers::ServiceContext service_context; |
| 107 | |||
| 108 | Kernel::KEvent* purchased_event; | ||
| 103 | }; | 109 | }; |
| 104 | 110 | ||
| 105 | AOC_U::AOC_U(Core::System& system_) | 111 | AOC_U::AOC_U(Core::System& system_) |
| 106 | : ServiceFramework{system_, "aoc:u"}, add_on_content{AccumulateAOCTitleIDs(system)}, | 112 | : ServiceFramework{system_, "aoc:u"}, add_on_content{AccumulateAOCTitleIDs(system)}, |
| 107 | aoc_change_event{system.Kernel()} { | 113 | service_context{system_, "aoc:u"} { |
| 108 | // clang-format off | 114 | // clang-format off |
| 109 | static const FunctionInfo functions[] = { | 115 | static const FunctionInfo functions[] = { |
| 110 | {0, nullptr, "CountAddOnContentByApplicationId"}, | 116 | {0, nullptr, "CountAddOnContentByApplicationId"}, |
| @@ -126,11 +132,12 @@ AOC_U::AOC_U(Core::System& system_) | |||
| 126 | 132 | ||
| 127 | RegisterHandlers(functions); | 133 | RegisterHandlers(functions); |
| 128 | 134 | ||
| 129 | Kernel::KAutoObject::Create(std::addressof(aoc_change_event)); | 135 | aoc_change_event = service_context.CreateEvent("GetAddOnContentListChanged:Event"); |
| 130 | aoc_change_event.Initialize("GetAddOnContentListChanged:Event"); | ||
| 131 | } | 136 | } |
| 132 | 137 | ||
| 133 | AOC_U::~AOC_U() = default; | 138 | AOC_U::~AOC_U() { |
| 139 | service_context.CloseEvent(aoc_change_event); | ||
| 140 | } | ||
| 134 | 141 | ||
| 135 | void AOC_U::CountAddOnContent(Kernel::HLERequestContext& ctx) { | 142 | void AOC_U::CountAddOnContent(Kernel::HLERequestContext& ctx) { |
| 136 | struct Parameters { | 143 | struct Parameters { |
| @@ -254,7 +261,7 @@ void AOC_U::GetAddOnContentListChangedEvent(Kernel::HLERequestContext& ctx) { | |||
| 254 | 261 | ||
| 255 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 262 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 256 | rb.Push(ResultSuccess); | 263 | rb.Push(ResultSuccess); |
| 257 | rb.PushCopyObjects(aoc_change_event.GetReadableEvent()); | 264 | rb.PushCopyObjects(aoc_change_event->GetReadableEvent()); |
| 258 | } | 265 | } |
| 259 | 266 | ||
| 260 | void AOC_U::GetAddOnContentListChangedEventWithProcessId(Kernel::HLERequestContext& ctx) { | 267 | void AOC_U::GetAddOnContentListChangedEventWithProcessId(Kernel::HLERequestContext& ctx) { |
| @@ -262,7 +269,7 @@ void AOC_U::GetAddOnContentListChangedEventWithProcessId(Kernel::HLERequestConte | |||
| 262 | 269 | ||
| 263 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 270 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 264 | rb.Push(ResultSuccess); | 271 | rb.Push(ResultSuccess); |
| 265 | rb.PushCopyObjects(aoc_change_event.GetReadableEvent()); | 272 | rb.PushCopyObjects(aoc_change_event->GetReadableEvent()); |
| 266 | } | 273 | } |
| 267 | 274 | ||
| 268 | void AOC_U::CreateEcPurchasedEventManager(Kernel::HLERequestContext& ctx) { | 275 | void AOC_U::CreateEcPurchasedEventManager(Kernel::HLERequestContext& ctx) { |
diff --git a/src/core/hle/service/aoc/aoc_u.h b/src/core/hle/service/aoc/aoc_u.h index bb6ffb8eb..31d645be8 100644 --- a/src/core/hle/service/aoc/aoc_u.h +++ b/src/core/hle/service/aoc/aoc_u.h | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include "core/hle/kernel/k_event.h" | 7 | #include "core/hle/service/kernel_helpers.h" |
| 8 | #include "core/hle/service/service.h" | 8 | #include "core/hle/service/service.h" |
| 9 | 9 | ||
| 10 | namespace Core { | 10 | namespace Core { |
| @@ -33,7 +33,9 @@ private: | |||
| 33 | void CreatePermanentEcPurchasedEventManager(Kernel::HLERequestContext& ctx); | 33 | void CreatePermanentEcPurchasedEventManager(Kernel::HLERequestContext& ctx); |
| 34 | 34 | ||
| 35 | std::vector<u64> add_on_content; | 35 | std::vector<u64> add_on_content; |
| 36 | Kernel::KEvent aoc_change_event; | 36 | KernelHelpers::ServiceContext service_context; |
| 37 | |||
| 38 | Kernel::KEvent* aoc_change_event; | ||
| 37 | }; | 39 | }; |
| 38 | 40 | ||
| 39 | /// Registers all AOC services with the specified service manager. | 41 | /// Registers all AOC services with the specified service manager. |
diff --git a/src/core/hle/service/audio/audin_u.cpp b/src/core/hle/service/audio/audin_u.cpp index 570525019..840d1d883 100644 --- a/src/core/hle/service/audio/audin_u.cpp +++ b/src/core/hle/service/audio/audin_u.cpp | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | namespace Service::Audio { | 12 | namespace Service::Audio { |
| 13 | 13 | ||
| 14 | IAudioIn::IAudioIn(Core::System& system_) | 14 | IAudioIn::IAudioIn(Core::System& system_) |
| 15 | : ServiceFramework{system_, "IAudioIn"}, buffer_event{system_.Kernel()} { | 15 | : ServiceFramework{system_, "IAudioIn"}, service_context{system_, "IAudioIn"} { |
| 16 | // clang-format off | 16 | // clang-format off |
| 17 | static const FunctionInfo functions[] = { | 17 | static const FunctionInfo functions[] = { |
| 18 | {0, nullptr, "GetAudioInState"}, | 18 | {0, nullptr, "GetAudioInState"}, |
| @@ -35,11 +35,12 @@ IAudioIn::IAudioIn(Core::System& system_) | |||
| 35 | 35 | ||
| 36 | RegisterHandlers(functions); | 36 | RegisterHandlers(functions); |
| 37 | 37 | ||
| 38 | Kernel::KAutoObject::Create(std::addressof(buffer_event)); | 38 | buffer_event = service_context.CreateEvent("IAudioIn:BufferEvent"); |
| 39 | buffer_event.Initialize("IAudioIn:BufferEvent"); | ||
| 40 | } | 39 | } |
| 41 | 40 | ||
| 42 | IAudioIn::~IAudioIn() = default; | 41 | IAudioIn::~IAudioIn() { |
| 42 | service_context.CloseEvent(buffer_event); | ||
| 43 | } | ||
| 43 | 44 | ||
| 44 | void IAudioIn::Start(Kernel::HLERequestContext& ctx) { | 45 | void IAudioIn::Start(Kernel::HLERequestContext& ctx) { |
| 45 | LOG_WARNING(Service_Audio, "(STUBBED) called"); | 46 | LOG_WARNING(Service_Audio, "(STUBBED) called"); |
| @@ -53,7 +54,7 @@ void IAudioIn::RegisterBufferEvent(Kernel::HLERequestContext& ctx) { | |||
| 53 | 54 | ||
| 54 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 55 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 55 | rb.Push(ResultSuccess); | 56 | rb.Push(ResultSuccess); |
| 56 | rb.PushCopyObjects(buffer_event.GetReadableEvent()); | 57 | rb.PushCopyObjects(buffer_event->GetReadableEvent()); |
| 57 | } | 58 | } |
| 58 | 59 | ||
| 59 | void IAudioIn::AppendAudioInBufferAuto(Kernel::HLERequestContext& ctx) { | 60 | void IAudioIn::AppendAudioInBufferAuto(Kernel::HLERequestContext& ctx) { |
diff --git a/src/core/hle/service/audio/audin_u.h b/src/core/hle/service/audio/audin_u.h index f2f7f9932..bf3418613 100644 --- a/src/core/hle/service/audio/audin_u.h +++ b/src/core/hle/service/audio/audin_u.h | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include "core/hle/kernel/k_event.h" | 7 | #include "core/hle/service/kernel_helpers.h" |
| 8 | #include "core/hle/service/service.h" | 8 | #include "core/hle/service/service.h" |
| 9 | 9 | ||
| 10 | namespace Core { | 10 | namespace Core { |
| @@ -27,7 +27,9 @@ private: | |||
| 27 | void RegisterBufferEvent(Kernel::HLERequestContext& ctx); | 27 | void RegisterBufferEvent(Kernel::HLERequestContext& ctx); |
| 28 | void AppendAudioInBufferAuto(Kernel::HLERequestContext& ctx); | 28 | void AppendAudioInBufferAuto(Kernel::HLERequestContext& ctx); |
| 29 | 29 | ||
| 30 | Kernel::KEvent buffer_event; | 30 | KernelHelpers::ServiceContext service_context; |
| 31 | |||
| 32 | Kernel::KEvent* buffer_event; | ||
| 31 | }; | 33 | }; |
| 32 | 34 | ||
| 33 | class AudInU final : public ServiceFramework<AudInU> { | 35 | class AudInU final : public ServiceFramework<AudInU> { |
diff --git a/src/core/hle/service/audio/audout_u.cpp b/src/core/hle/service/audio/audout_u.cpp index 92d4510b1..beb387745 100644 --- a/src/core/hle/service/audio/audout_u.cpp +++ b/src/core/hle/service/audio/audout_u.cpp | |||
| @@ -15,11 +15,10 @@ | |||
| 15 | #include "core/hle/ipc_helpers.h" | 15 | #include "core/hle/ipc_helpers.h" |
| 16 | #include "core/hle/kernel/hle_ipc.h" | 16 | #include "core/hle/kernel/hle_ipc.h" |
| 17 | #include "core/hle/kernel/k_event.h" | 17 | #include "core/hle/kernel/k_event.h" |
| 18 | #include "core/hle/kernel/k_readable_event.h" | ||
| 19 | #include "core/hle/kernel/k_writable_event.h" | ||
| 20 | #include "core/hle/kernel/kernel.h" | 18 | #include "core/hle/kernel/kernel.h" |
| 21 | #include "core/hle/service/audio/audout_u.h" | 19 | #include "core/hle/service/audio/audout_u.h" |
| 22 | #include "core/hle/service/audio/errors.h" | 20 | #include "core/hle/service/audio/errors.h" |
| 21 | #include "core/hle/service/kernel_helpers.h" | ||
| 23 | #include "core/memory.h" | 22 | #include "core/memory.h" |
| 24 | 23 | ||
| 25 | namespace Service::Audio { | 24 | namespace Service::Audio { |
| @@ -41,11 +40,12 @@ enum class AudioState : u32 { | |||
| 41 | 40 | ||
| 42 | class IAudioOut final : public ServiceFramework<IAudioOut> { | 41 | class IAudioOut final : public ServiceFramework<IAudioOut> { |
| 43 | public: | 42 | public: |
| 44 | IAudioOut(Core::System& system_, AudoutParams audio_params_, AudioCore::AudioOut& audio_core_, | 43 | explicit IAudioOut(Core::System& system_, AudoutParams audio_params_, |
| 45 | std::string&& device_name_, std::string&& unique_name) | 44 | AudioCore::AudioOut& audio_core_, std::string&& device_name_, |
| 46 | : ServiceFramework{system_, "IAudioOut"}, audio_core{audio_core_}, device_name{std::move( | 45 | std::string&& unique_name) |
| 47 | device_name_)}, | 46 | : ServiceFramework{system_, "IAudioOut"}, audio_core{audio_core_}, |
| 48 | audio_params{audio_params_}, buffer_event{system.Kernel()}, main_memory{system.Memory()} { | 47 | device_name{std::move(device_name_)}, audio_params{audio_params_}, |
| 48 | main_memory{system.Memory()}, service_context{system_, "IAudioOut"} { | ||
| 49 | // clang-format off | 49 | // clang-format off |
| 50 | static const FunctionInfo functions[] = { | 50 | static const FunctionInfo functions[] = { |
| 51 | {0, &IAudioOut::GetAudioOutState, "GetAudioOutState"}, | 51 | {0, &IAudioOut::GetAudioOutState, "GetAudioOutState"}, |
| @@ -67,16 +67,19 @@ public: | |||
| 67 | RegisterHandlers(functions); | 67 | RegisterHandlers(functions); |
| 68 | 68 | ||
| 69 | // This is the event handle used to check if the audio buffer was released | 69 | // This is the event handle used to check if the audio buffer was released |
| 70 | Kernel::KAutoObject::Create(std::addressof(buffer_event)); | 70 | buffer_event = service_context.CreateEvent("IAudioOutBufferReleased"); |
| 71 | buffer_event.Initialize("IAudioOutBufferReleased"); | ||
| 72 | 71 | ||
| 73 | stream = audio_core.OpenStream(system.CoreTiming(), audio_params.sample_rate, | 72 | stream = audio_core.OpenStream(system.CoreTiming(), audio_params.sample_rate, |
| 74 | audio_params.channel_count, std::move(unique_name), [this] { | 73 | audio_params.channel_count, std::move(unique_name), [this] { |
| 75 | const auto guard = LockService(); | 74 | const auto guard = LockService(); |
| 76 | buffer_event.GetWritableEvent().Signal(); | 75 | buffer_event->GetWritableEvent().Signal(); |
| 77 | }); | 76 | }); |
| 78 | } | 77 | } |
| 79 | 78 | ||
| 79 | ~IAudioOut() override { | ||
| 80 | service_context.CloseEvent(buffer_event); | ||
| 81 | } | ||
| 82 | |||
| 80 | private: | 83 | private: |
| 81 | struct AudioBuffer { | 84 | struct AudioBuffer { |
| 82 | u64_le next; | 85 | u64_le next; |
| @@ -126,7 +129,7 @@ private: | |||
| 126 | 129 | ||
| 127 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 130 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 128 | rb.Push(ResultSuccess); | 131 | rb.Push(ResultSuccess); |
| 129 | rb.PushCopyObjects(buffer_event.GetReadableEvent()); | 132 | rb.PushCopyObjects(buffer_event->GetReadableEvent()); |
| 130 | } | 133 | } |
| 131 | 134 | ||
| 132 | void AppendAudioOutBufferImpl(Kernel::HLERequestContext& ctx) { | 135 | void AppendAudioOutBufferImpl(Kernel::HLERequestContext& ctx) { |
| @@ -227,9 +230,12 @@ private: | |||
| 227 | 230 | ||
| 228 | [[maybe_unused]] AudoutParams audio_params{}; | 231 | [[maybe_unused]] AudoutParams audio_params{}; |
| 229 | 232 | ||
| 230 | /// This is the event handle used to check if the audio buffer was released | ||
| 231 | Kernel::KEvent buffer_event; | ||
| 232 | Core::Memory::Memory& main_memory; | 233 | Core::Memory::Memory& main_memory; |
| 234 | |||
| 235 | KernelHelpers::ServiceContext service_context; | ||
| 236 | |||
| 237 | /// This is the event handle used to check if the audio buffer was released | ||
| 238 | Kernel::KEvent* buffer_event; | ||
| 233 | }; | 239 | }; |
| 234 | 240 | ||
| 235 | AudOutU::AudOutU(Core::System& system_) : ServiceFramework{system_, "audout:u"} { | 241 | AudOutU::AudOutU(Core::System& system_) : ServiceFramework{system_, "audout:u"} { |
diff --git a/src/core/hle/service/audio/audren_u.cpp b/src/core/hle/service/audio/audren_u.cpp index 1a91719f5..1f69d39cc 100644 --- a/src/core/hle/service/audio/audren_u.cpp +++ b/src/core/hle/service/audio/audren_u.cpp | |||
| @@ -17,8 +17,6 @@ | |||
| 17 | #include "core/hle/ipc_helpers.h" | 17 | #include "core/hle/ipc_helpers.h" |
| 18 | #include "core/hle/kernel/hle_ipc.h" | 18 | #include "core/hle/kernel/hle_ipc.h" |
| 19 | #include "core/hle/kernel/k_event.h" | 19 | #include "core/hle/kernel/k_event.h" |
| 20 | #include "core/hle/kernel/k_readable_event.h" | ||
| 21 | #include "core/hle/kernel/k_writable_event.h" | ||
| 22 | #include "core/hle/kernel/kernel.h" | 20 | #include "core/hle/kernel/kernel.h" |
| 23 | #include "core/hle/service/audio/audren_u.h" | 21 | #include "core/hle/service/audio/audren_u.h" |
| 24 | #include "core/hle/service/audio/errors.h" | 22 | #include "core/hle/service/audio/errors.h" |
| @@ -30,7 +28,7 @@ public: | |||
| 30 | explicit IAudioRenderer(Core::System& system_, | 28 | explicit IAudioRenderer(Core::System& system_, |
| 31 | const AudioCommon::AudioRendererParameter& audren_params, | 29 | const AudioCommon::AudioRendererParameter& audren_params, |
| 32 | const std::size_t instance_number) | 30 | const std::size_t instance_number) |
| 33 | : ServiceFramework{system_, "IAudioRenderer"}, system_event{system.Kernel()} { | 31 | : ServiceFramework{system_, "IAudioRenderer"}, service_context{system_, "IAudioRenderer"} { |
| 34 | // clang-format off | 32 | // clang-format off |
| 35 | static const FunctionInfo functions[] = { | 33 | static const FunctionInfo functions[] = { |
| 36 | {0, &IAudioRenderer::GetSampleRate, "GetSampleRate"}, | 34 | {0, &IAudioRenderer::GetSampleRate, "GetSampleRate"}, |
| @@ -49,17 +47,20 @@ public: | |||
| 49 | // clang-format on | 47 | // clang-format on |
| 50 | RegisterHandlers(functions); | 48 | RegisterHandlers(functions); |
| 51 | 49 | ||
| 52 | Kernel::KAutoObject::Create(std::addressof(system_event)); | 50 | system_event = service_context.CreateEvent("IAudioRenderer:SystemEvent"); |
| 53 | system_event.Initialize("IAudioRenderer:SystemEvent"); | ||
| 54 | renderer = std::make_unique<AudioCore::AudioRenderer>( | 51 | renderer = std::make_unique<AudioCore::AudioRenderer>( |
| 55 | system.CoreTiming(), system.Memory(), audren_params, | 52 | system.CoreTiming(), system.Memory(), audren_params, |
| 56 | [this]() { | 53 | [this]() { |
| 57 | const auto guard = LockService(); | 54 | const auto guard = LockService(); |
| 58 | system_event.GetWritableEvent().Signal(); | 55 | system_event->GetWritableEvent().Signal(); |
| 59 | }, | 56 | }, |
| 60 | instance_number); | 57 | instance_number); |
| 61 | } | 58 | } |
| 62 | 59 | ||
| 60 | ~IAudioRenderer() override { | ||
| 61 | service_context.CloseEvent(system_event); | ||
| 62 | } | ||
| 63 | |||
| 63 | private: | 64 | private: |
| 64 | void GetSampleRate(Kernel::HLERequestContext& ctx) { | 65 | void GetSampleRate(Kernel::HLERequestContext& ctx) { |
| 65 | LOG_DEBUG(Service_Audio, "called"); | 66 | LOG_DEBUG(Service_Audio, "called"); |
| @@ -130,7 +131,7 @@ private: | |||
| 130 | 131 | ||
| 131 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 132 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 132 | rb.Push(ResultSuccess); | 133 | rb.Push(ResultSuccess); |
| 133 | rb.PushCopyObjects(system_event.GetReadableEvent()); | 134 | rb.PushCopyObjects(system_event->GetReadableEvent()); |
| 134 | } | 135 | } |
| 135 | 136 | ||
| 136 | void SetRenderingTimeLimit(Kernel::HLERequestContext& ctx) { | 137 | void SetRenderingTimeLimit(Kernel::HLERequestContext& ctx) { |
| @@ -164,14 +165,16 @@ private: | |||
| 164 | rb.Push(ERR_NOT_SUPPORTED); | 165 | rb.Push(ERR_NOT_SUPPORTED); |
| 165 | } | 166 | } |
| 166 | 167 | ||
| 167 | Kernel::KEvent system_event; | 168 | KernelHelpers::ServiceContext service_context; |
| 169 | |||
| 170 | Kernel::KEvent* system_event; | ||
| 168 | std::unique_ptr<AudioCore::AudioRenderer> renderer; | 171 | std::unique_ptr<AudioCore::AudioRenderer> renderer; |
| 169 | u32 rendering_time_limit_percent = 100; | 172 | u32 rendering_time_limit_percent = 100; |
| 170 | }; | 173 | }; |
| 171 | 174 | ||
| 172 | class IAudioDevice final : public ServiceFramework<IAudioDevice> { | 175 | class IAudioDevice final : public ServiceFramework<IAudioDevice> { |
| 173 | public: | 176 | public: |
| 174 | explicit IAudioDevice(Core::System& system_, Kernel::KEvent& buffer_event_, u32_le revision_) | 177 | explicit IAudioDevice(Core::System& system_, Kernel::KEvent* buffer_event_, u32_le revision_) |
| 175 | : ServiceFramework{system_, "IAudioDevice"}, buffer_event{buffer_event_}, revision{ | 178 | : ServiceFramework{system_, "IAudioDevice"}, buffer_event{buffer_event_}, revision{ |
| 176 | revision_} { | 179 | revision_} { |
| 177 | static const FunctionInfo functions[] = { | 180 | static const FunctionInfo functions[] = { |
| @@ -279,11 +282,11 @@ private: | |||
| 279 | void QueryAudioDeviceSystemEvent(Kernel::HLERequestContext& ctx) { | 282 | void QueryAudioDeviceSystemEvent(Kernel::HLERequestContext& ctx) { |
| 280 | LOG_WARNING(Service_Audio, "(STUBBED) called"); | 283 | LOG_WARNING(Service_Audio, "(STUBBED) called"); |
| 281 | 284 | ||
| 282 | buffer_event.GetWritableEvent().Signal(); | 285 | buffer_event->GetWritableEvent().Signal(); |
| 283 | 286 | ||
| 284 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 287 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 285 | rb.Push(ResultSuccess); | 288 | rb.Push(ResultSuccess); |
| 286 | rb.PushCopyObjects(buffer_event.GetReadableEvent()); | 289 | rb.PushCopyObjects(buffer_event->GetReadableEvent()); |
| 287 | } | 290 | } |
| 288 | 291 | ||
| 289 | void GetActiveChannelCount(Kernel::HLERequestContext& ctx) { | 292 | void GetActiveChannelCount(Kernel::HLERequestContext& ctx) { |
| @@ -300,7 +303,7 @@ private: | |||
| 300 | 303 | ||
| 301 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 304 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 302 | rb.Push(ResultSuccess); | 305 | rb.Push(ResultSuccess); |
| 303 | rb.PushCopyObjects(buffer_event.GetReadableEvent()); | 306 | rb.PushCopyObjects(buffer_event->GetReadableEvent()); |
| 304 | } | 307 | } |
| 305 | 308 | ||
| 306 | void QueryAudioDeviceOutputEvent(Kernel::HLERequestContext& ctx) { | 309 | void QueryAudioDeviceOutputEvent(Kernel::HLERequestContext& ctx) { |
| @@ -308,16 +311,15 @@ private: | |||
| 308 | 311 | ||
| 309 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 312 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 310 | rb.Push(ResultSuccess); | 313 | rb.Push(ResultSuccess); |
| 311 | rb.PushCopyObjects(buffer_event.GetReadableEvent()); | 314 | rb.PushCopyObjects(buffer_event->GetReadableEvent()); |
| 312 | } | 315 | } |
| 313 | 316 | ||
| 314 | Kernel::KEvent& buffer_event; | 317 | Kernel::KEvent* buffer_event; |
| 315 | u32_le revision = 0; | 318 | u32_le revision = 0; |
| 316 | }; | 319 | }; |
| 317 | 320 | ||
| 318 | AudRenU::AudRenU(Core::System& system_) | 321 | AudRenU::AudRenU(Core::System& system_) |
| 319 | : ServiceFramework{system_, "audren:u"}, buffer_event{system.Kernel()} { | 322 | : ServiceFramework{system_, "audren:u"}, service_context{system_, "audren:u"} { |
| 320 | |||
| 321 | // clang-format off | 323 | // clang-format off |
| 322 | static const FunctionInfo functions[] = { | 324 | static const FunctionInfo functions[] = { |
| 323 | {0, &AudRenU::OpenAudioRenderer, "OpenAudioRenderer"}, | 325 | {0, &AudRenU::OpenAudioRenderer, "OpenAudioRenderer"}, |
| @@ -330,11 +332,12 @@ AudRenU::AudRenU(Core::System& system_) | |||
| 330 | 332 | ||
| 331 | RegisterHandlers(functions); | 333 | RegisterHandlers(functions); |
| 332 | 334 | ||
| 333 | Kernel::KAutoObject::Create(std::addressof(buffer_event)); | 335 | buffer_event = service_context.CreateEvent("IAudioOutBufferReleasedEvent"); |
| 334 | buffer_event.Initialize("IAudioOutBufferReleasedEvent"); | ||
| 335 | } | 336 | } |
| 336 | 337 | ||
| 337 | AudRenU::~AudRenU() = default; | 338 | AudRenU::~AudRenU() { |
| 339 | service_context.CloseEvent(buffer_event); | ||
| 340 | } | ||
| 338 | 341 | ||
| 339 | void AudRenU::OpenAudioRenderer(Kernel::HLERequestContext& ctx) { | 342 | void AudRenU::OpenAudioRenderer(Kernel::HLERequestContext& ctx) { |
| 340 | LOG_DEBUG(Service_Audio, "called"); | 343 | LOG_DEBUG(Service_Audio, "called"); |
diff --git a/src/core/hle/service/audio/audren_u.h b/src/core/hle/service/audio/audren_u.h index 0ee6f9542..5922b4b27 100644 --- a/src/core/hle/service/audio/audren_u.h +++ b/src/core/hle/service/audio/audren_u.h | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include "core/hle/kernel/k_event.h" | 7 | #include "core/hle/service/kernel_helpers.h" |
| 8 | #include "core/hle/service/service.h" | 8 | #include "core/hle/service/service.h" |
| 9 | 9 | ||
| 10 | namespace Core { | 10 | namespace Core { |
| @@ -31,8 +31,10 @@ private: | |||
| 31 | 31 | ||
| 32 | void OpenAudioRendererImpl(Kernel::HLERequestContext& ctx); | 32 | void OpenAudioRendererImpl(Kernel::HLERequestContext& ctx); |
| 33 | 33 | ||
| 34 | KernelHelpers::ServiceContext service_context; | ||
| 35 | |||
| 34 | std::size_t audren_instance_count = 0; | 36 | std::size_t audren_instance_count = 0; |
| 35 | Kernel::KEvent buffer_event; | 37 | Kernel::KEvent* buffer_event; |
| 36 | }; | 38 | }; |
| 37 | 39 | ||
| 38 | // Describes a particular audio feature that may be supported in a particular revision. | 40 | // Describes a particular audio feature that may be supported in a particular revision. |
diff --git a/src/core/hle/service/bcat/backend/backend.cpp b/src/core/hle/service/bcat/backend/backend.cpp index a78544c88..4c7d3bb6e 100644 --- a/src/core/hle/service/bcat/backend/backend.cpp +++ b/src/core/hle/service/bcat/backend/backend.cpp | |||
| @@ -5,22 +5,24 @@ | |||
| 5 | #include "common/hex_util.h" | 5 | #include "common/hex_util.h" |
| 6 | #include "common/logging/log.h" | 6 | #include "common/logging/log.h" |
| 7 | #include "core/core.h" | 7 | #include "core/core.h" |
| 8 | #include "core/hle/kernel/k_readable_event.h" | 8 | #include "core/hle/kernel/k_event.h" |
| 9 | #include "core/hle/kernel/k_writable_event.h" | ||
| 10 | #include "core/hle/lock.h" | 9 | #include "core/hle/lock.h" |
| 11 | #include "core/hle/service/bcat/backend/backend.h" | 10 | #include "core/hle/service/bcat/backend/backend.h" |
| 12 | 11 | ||
| 13 | namespace Service::BCAT { | 12 | namespace Service::BCAT { |
| 14 | 13 | ||
| 15 | ProgressServiceBackend::ProgressServiceBackend(Kernel::KernelCore& kernel, | 14 | ProgressServiceBackend::ProgressServiceBackend(Core::System& system, std::string_view event_name) |
| 16 | std::string_view event_name) | 15 | : service_context{system, "ProgressServiceBackend"} { |
| 17 | : update_event{kernel} { | 16 | update_event = service_context.CreateEvent("ProgressServiceBackend:UpdateEvent:" + |
| 18 | Kernel::KAutoObject::Create(std::addressof(update_event)); | 17 | std::string(event_name)); |
| 19 | update_event.Initialize("ProgressServiceBackend:UpdateEvent:" + std::string(event_name)); | 18 | } |
| 19 | |||
| 20 | ProgressServiceBackend::~ProgressServiceBackend() { | ||
| 21 | service_context.CloseEvent(update_event); | ||
| 20 | } | 22 | } |
| 21 | 23 | ||
| 22 | Kernel::KReadableEvent& ProgressServiceBackend::GetEvent() { | 24 | Kernel::KReadableEvent& ProgressServiceBackend::GetEvent() { |
| 23 | return update_event.GetReadableEvent(); | 25 | return update_event->GetReadableEvent(); |
| 24 | } | 26 | } |
| 25 | 27 | ||
| 26 | DeliveryCacheProgressImpl& ProgressServiceBackend::GetImpl() { | 28 | DeliveryCacheProgressImpl& ProgressServiceBackend::GetImpl() { |
| @@ -88,9 +90,9 @@ void ProgressServiceBackend::FinishDownload(ResultCode result) { | |||
| 88 | void ProgressServiceBackend::SignalUpdate() { | 90 | void ProgressServiceBackend::SignalUpdate() { |
| 89 | if (need_hle_lock) { | 91 | if (need_hle_lock) { |
| 90 | std::lock_guard lock(HLE::g_hle_lock); | 92 | std::lock_guard lock(HLE::g_hle_lock); |
| 91 | update_event.GetWritableEvent().Signal(); | 93 | update_event->GetWritableEvent().Signal(); |
| 92 | } else { | 94 | } else { |
| 93 | update_event.GetWritableEvent().Signal(); | 95 | update_event->GetWritableEvent().Signal(); |
| 94 | } | 96 | } |
| 95 | } | 97 | } |
| 96 | 98 | ||
diff --git a/src/core/hle/service/bcat/backend/backend.h b/src/core/hle/service/bcat/backend/backend.h index e79a9c2ad..749e046c7 100644 --- a/src/core/hle/service/bcat/backend/backend.h +++ b/src/core/hle/service/bcat/backend/backend.h | |||
| @@ -11,8 +11,8 @@ | |||
| 11 | 11 | ||
| 12 | #include "common/common_types.h" | 12 | #include "common/common_types.h" |
| 13 | #include "core/file_sys/vfs_types.h" | 13 | #include "core/file_sys/vfs_types.h" |
| 14 | #include "core/hle/kernel/k_event.h" | ||
| 15 | #include "core/hle/result.h" | 14 | #include "core/hle/result.h" |
| 15 | #include "core/hle/service/kernel_helpers.h" | ||
| 16 | 16 | ||
| 17 | namespace Core { | 17 | namespace Core { |
| 18 | class System; | 18 | class System; |
| @@ -70,6 +70,8 @@ class ProgressServiceBackend { | |||
| 70 | friend class IBcatService; | 70 | friend class IBcatService; |
| 71 | 71 | ||
| 72 | public: | 72 | public: |
| 73 | ~ProgressServiceBackend(); | ||
| 74 | |||
| 73 | // Clients should call this with true if any of the functions are going to be called from a | 75 | // Clients should call this with true if any of the functions are going to be called from a |
| 74 | // non-HLE thread and this class need to lock the hle mutex. (default is false) | 76 | // non-HLE thread and this class need to lock the hle mutex. (default is false) |
| 75 | void SetNeedHLELock(bool need); | 77 | void SetNeedHLELock(bool need); |
| @@ -97,15 +99,17 @@ public: | |||
| 97 | void FinishDownload(ResultCode result); | 99 | void FinishDownload(ResultCode result); |
| 98 | 100 | ||
| 99 | private: | 101 | private: |
| 100 | explicit ProgressServiceBackend(Kernel::KernelCore& kernel, std::string_view event_name); | 102 | explicit ProgressServiceBackend(Core::System& system, std::string_view event_name); |
| 101 | 103 | ||
| 102 | Kernel::KReadableEvent& GetEvent(); | 104 | Kernel::KReadableEvent& GetEvent(); |
| 103 | DeliveryCacheProgressImpl& GetImpl(); | 105 | DeliveryCacheProgressImpl& GetImpl(); |
| 104 | 106 | ||
| 105 | void SignalUpdate(); | 107 | void SignalUpdate(); |
| 106 | 108 | ||
| 109 | KernelHelpers::ServiceContext service_context; | ||
| 110 | |||
| 107 | DeliveryCacheProgressImpl impl{}; | 111 | DeliveryCacheProgressImpl impl{}; |
| 108 | Kernel::KEvent update_event; | 112 | Kernel::KEvent* update_event; |
| 109 | bool need_hle_lock = false; | 113 | bool need_hle_lock = false; |
| 110 | }; | 114 | }; |
| 111 | 115 | ||
diff --git a/src/core/hle/service/bcat/backend/boxcat.cpp b/src/core/hle/service/bcat/backend/boxcat.cpp deleted file mode 100644 index 7ca7f2aac..000000000 --- a/src/core/hle/service/bcat/backend/boxcat.cpp +++ /dev/null | |||
| @@ -1,548 +0,0 @@ | |||
| 1 | // Copyright 2019 yuzu emulator team | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #include <fmt/ostream.h> | ||
| 6 | |||
| 7 | #ifdef __GNUC__ | ||
| 8 | #pragma GCC diagnostic push | ||
| 9 | #pragma GCC diagnostic ignored "-Wshadow" | ||
| 10 | #ifndef __clang__ | ||
| 11 | #pragma GCC diagnostic ignored "-Wmaybe-uninitialized" | ||
| 12 | #endif | ||
| 13 | #endif | ||
| 14 | #include <httplib.h> | ||
| 15 | #include <mbedtls/sha256.h> | ||
| 16 | #include <nlohmann/json.hpp> | ||
| 17 | #ifdef __GNUC__ | ||
| 18 | #pragma GCC diagnostic pop | ||
| 19 | #endif | ||
| 20 | |||
| 21 | #include "common/fs/file.h" | ||
| 22 | #include "common/fs/fs.h" | ||
| 23 | #include "common/fs/path_util.h" | ||
| 24 | #include "common/hex_util.h" | ||
| 25 | #include "common/logging/log.h" | ||
| 26 | #include "common/settings.h" | ||
| 27 | #include "core/core.h" | ||
| 28 | #include "core/file_sys/vfs.h" | ||
| 29 | #include "core/file_sys/vfs_libzip.h" | ||
| 30 | #include "core/file_sys/vfs_vector.h" | ||
| 31 | #include "core/frontend/applets/error.h" | ||
| 32 | #include "core/hle/service/am/applets/applets.h" | ||
| 33 | #include "core/hle/service/bcat/backend/boxcat.h" | ||
| 34 | |||
| 35 | namespace Service::BCAT { | ||
| 36 | namespace { | ||
| 37 | |||
| 38 | // Prevents conflicts with windows macro called CreateFile | ||
| 39 | FileSys::VirtualFile VfsCreateFileWrap(FileSys::VirtualDir dir, std::string_view name) { | ||
| 40 | return dir->CreateFile(name); | ||
| 41 | } | ||
| 42 | |||
| 43 | // Prevents conflicts with windows macro called DeleteFile | ||
| 44 | bool VfsDeleteFileWrap(FileSys::VirtualDir dir, std::string_view name) { | ||
| 45 | return dir->DeleteFile(name); | ||
| 46 | } | ||
| 47 | |||
| 48 | constexpr ResultCode ERROR_GENERAL_BCAT_FAILURE{ErrorModule::BCAT, 1}; | ||
| 49 | |||
| 50 | constexpr char BOXCAT_HOSTNAME[] = "api.yuzu-emu.org"; | ||
| 51 | |||
| 52 | // Formatted using fmt with arg[0] = hex title id | ||
| 53 | constexpr char BOXCAT_PATHNAME_DATA[] = "/game-assets/{:016X}/boxcat"; | ||
| 54 | constexpr char BOXCAT_PATHNAME_LAUNCHPARAM[] = "/game-assets/{:016X}/launchparam"; | ||
| 55 | |||
| 56 | constexpr char BOXCAT_PATHNAME_EVENTS[] = "/game-assets/boxcat/events"; | ||
| 57 | |||
| 58 | constexpr char BOXCAT_API_VERSION[] = "1"; | ||
| 59 | constexpr char BOXCAT_CLIENT_TYPE[] = "yuzu"; | ||
| 60 | |||
| 61 | // HTTP status codes for Boxcat | ||
| 62 | enum class ResponseStatus { | ||
| 63 | Ok = 200, ///< Operation completed successfully. | ||
| 64 | BadClientVersion = 301, ///< The Boxcat-Client-Version doesn't match the server. | ||
| 65 | NoUpdate = 304, ///< The digest provided would match the new data, no need to update. | ||
| 66 | NoMatchTitleId = 404, ///< The title ID provided doesn't have a boxcat implementation. | ||
| 67 | NoMatchBuildId = 406, ///< The build ID provided is blacklisted (potentially because of format | ||
| 68 | ///< issues or whatnot) and has no data. | ||
| 69 | }; | ||
| 70 | |||
| 71 | enum class DownloadResult { | ||
| 72 | Success = 0, | ||
| 73 | NoResponse, | ||
| 74 | GeneralWebError, | ||
| 75 | NoMatchTitleId, | ||
| 76 | NoMatchBuildId, | ||
| 77 | InvalidContentType, | ||
| 78 | GeneralFSError, | ||
| 79 | BadClientVersion, | ||
| 80 | }; | ||
| 81 | |||
| 82 | constexpr std::array<const char*, 8> DOWNLOAD_RESULT_LOG_MESSAGES{ | ||
| 83 | "Success", | ||
| 84 | "There was no response from the server.", | ||
| 85 | "There was a general web error code returned from the server.", | ||
| 86 | "The title ID of the current game doesn't have a boxcat implementation. If you believe an " | ||
| 87 | "implementation should be added, contact yuzu support.", | ||
| 88 | "The build ID of the current version of the game is marked as incompatible with the current " | ||
| 89 | "BCAT distribution. Try upgrading or downgrading your game version or contacting yuzu support.", | ||
| 90 | "The content type of the web response was invalid.", | ||
| 91 | "There was a general filesystem error while saving the zip file.", | ||
| 92 | "The server is either too new or too old to serve the request. Try using the latest version of " | ||
| 93 | "an official release of yuzu.", | ||
| 94 | }; | ||
| 95 | |||
| 96 | std::ostream& operator<<(std::ostream& os, DownloadResult result) { | ||
| 97 | return os << DOWNLOAD_RESULT_LOG_MESSAGES.at(static_cast<std::size_t>(result)); | ||
| 98 | } | ||
| 99 | |||
| 100 | constexpr u32 PORT = 443; | ||
| 101 | constexpr u32 TIMEOUT_SECONDS = 30; | ||
| 102 | [[maybe_unused]] constexpr u64 VFS_COPY_BLOCK_SIZE = 1ULL << 24; // 4MB | ||
| 103 | |||
| 104 | std::filesystem::path GetBINFilePath(u64 title_id) { | ||
| 105 | return Common::FS::GetYuzuPath(Common::FS::YuzuPath::CacheDir) / "bcat" / | ||
| 106 | fmt::format("{:016X}/launchparam.bin", title_id); | ||
| 107 | } | ||
| 108 | |||
| 109 | std::filesystem::path GetZIPFilePath(u64 title_id) { | ||
| 110 | return Common::FS::GetYuzuPath(Common::FS::YuzuPath::CacheDir) / "bcat" / | ||
| 111 | fmt::format("{:016X}/data.zip", title_id); | ||
| 112 | } | ||
| 113 | |||
| 114 | // If the error is something the user should know about (build ID mismatch, bad client version), | ||
| 115 | // display an error. | ||
| 116 | void HandleDownloadDisplayResult(const AM::Applets::AppletManager& applet_manager, | ||
| 117 | DownloadResult res) { | ||
| 118 | if (res == DownloadResult::Success || res == DownloadResult::NoResponse || | ||
| 119 | res == DownloadResult::GeneralWebError || res == DownloadResult::GeneralFSError || | ||
| 120 | res == DownloadResult::NoMatchTitleId || res == DownloadResult::InvalidContentType) { | ||
| 121 | return; | ||
| 122 | } | ||
| 123 | |||
| 124 | const auto& frontend{applet_manager.GetAppletFrontendSet()}; | ||
| 125 | frontend.error->ShowCustomErrorText( | ||
| 126 | ResultUnknown, "There was an error while attempting to use Boxcat.", | ||
| 127 | DOWNLOAD_RESULT_LOG_MESSAGES[static_cast<std::size_t>(res)], [] {}); | ||
| 128 | } | ||
| 129 | |||
| 130 | bool VfsRawCopyProgress(FileSys::VirtualFile src, FileSys::VirtualFile dest, | ||
| 131 | std::string_view dir_name, ProgressServiceBackend& progress, | ||
| 132 | std::size_t block_size = 0x1000) { | ||
| 133 | if (src == nullptr || dest == nullptr || !src->IsReadable() || !dest->IsWritable()) | ||
| 134 | return false; | ||
| 135 | if (!dest->Resize(src->GetSize())) | ||
| 136 | return false; | ||
| 137 | |||
| 138 | progress.StartDownloadingFile(dir_name, src->GetName(), src->GetSize()); | ||
| 139 | |||
| 140 | std::vector<u8> temp(std::min(block_size, src->GetSize())); | ||
| 141 | for (std::size_t i = 0; i < src->GetSize(); i += block_size) { | ||
| 142 | const auto read = std::min(block_size, src->GetSize() - i); | ||
| 143 | |||
| 144 | if (src->Read(temp.data(), read, i) != read) { | ||
| 145 | return false; | ||
| 146 | } | ||
| 147 | |||
| 148 | if (dest->Write(temp.data(), read, i) != read) { | ||
| 149 | return false; | ||
| 150 | } | ||
| 151 | |||
| 152 | progress.UpdateFileProgress(i); | ||
| 153 | } | ||
| 154 | |||
| 155 | progress.FinishDownloadingFile(); | ||
| 156 | |||
| 157 | return true; | ||
| 158 | } | ||
| 159 | |||
| 160 | bool VfsRawCopyDProgressSingle(FileSys::VirtualDir src, FileSys::VirtualDir dest, | ||
| 161 | ProgressServiceBackend& progress, std::size_t block_size = 0x1000) { | ||
| 162 | if (src == nullptr || dest == nullptr || !src->IsReadable() || !dest->IsWritable()) | ||
| 163 | return false; | ||
| 164 | |||
| 165 | for (const auto& file : src->GetFiles()) { | ||
| 166 | const auto out_file = VfsCreateFileWrap(dest, file->GetName()); | ||
| 167 | if (!VfsRawCopyProgress(file, out_file, src->GetName(), progress, block_size)) { | ||
| 168 | return false; | ||
| 169 | } | ||
| 170 | } | ||
| 171 | progress.CommitDirectory(src->GetName()); | ||
| 172 | |||
| 173 | return true; | ||
| 174 | } | ||
| 175 | |||
| 176 | bool VfsRawCopyDProgress(FileSys::VirtualDir src, FileSys::VirtualDir dest, | ||
| 177 | ProgressServiceBackend& progress, std::size_t block_size = 0x1000) { | ||
| 178 | if (src == nullptr || dest == nullptr || !src->IsReadable() || !dest->IsWritable()) | ||
| 179 | return false; | ||
| 180 | |||
| 181 | for (const auto& dir : src->GetSubdirectories()) { | ||
| 182 | const auto out = dest->CreateSubdirectory(dir->GetName()); | ||
| 183 | if (!VfsRawCopyDProgressSingle(dir, out, progress, block_size)) { | ||
| 184 | return false; | ||
| 185 | } | ||
| 186 | } | ||
| 187 | |||
| 188 | return true; | ||
| 189 | } | ||
| 190 | |||
| 191 | } // Anonymous namespace | ||
| 192 | |||
| 193 | class Boxcat::Client { | ||
| 194 | public: | ||
| 195 | Client(std::filesystem::path path_, u64 title_id_, u64 build_id_) | ||
| 196 | : path(std::move(path_)), title_id(title_id_), build_id(build_id_) {} | ||
| 197 | |||
| 198 | DownloadResult DownloadDataZip() { | ||
| 199 | return DownloadInternal(fmt::format(BOXCAT_PATHNAME_DATA, title_id), TIMEOUT_SECONDS, | ||
| 200 | "application/zip"); | ||
| 201 | } | ||
| 202 | |||
| 203 | DownloadResult DownloadLaunchParam() { | ||
| 204 | return DownloadInternal(fmt::format(BOXCAT_PATHNAME_LAUNCHPARAM, title_id), | ||
| 205 | TIMEOUT_SECONDS / 3, "application/octet-stream"); | ||
| 206 | } | ||
| 207 | |||
| 208 | private: | ||
| 209 | DownloadResult DownloadInternal(const std::string& resolved_path, u32 timeout_seconds, | ||
| 210 | const std::string& content_type_name) { | ||
| 211 | if (client == nullptr) { | ||
| 212 | client = std::make_unique<httplib::SSLClient>(BOXCAT_HOSTNAME, PORT); | ||
| 213 | client->set_connection_timeout(timeout_seconds); | ||
| 214 | client->set_read_timeout(timeout_seconds); | ||
| 215 | client->set_write_timeout(timeout_seconds); | ||
| 216 | } | ||
| 217 | |||
| 218 | httplib::Headers headers{ | ||
| 219 | {std::string("Game-Assets-API-Version"), std::string(BOXCAT_API_VERSION)}, | ||
| 220 | {std::string("Boxcat-Client-Type"), std::string(BOXCAT_CLIENT_TYPE)}, | ||
| 221 | {std::string("Game-Build-Id"), fmt::format("{:016X}", build_id)}, | ||
| 222 | }; | ||
| 223 | |||
| 224 | if (Common::FS::Exists(path)) { | ||
| 225 | Common::FS::IOFile file{path, Common::FS::FileAccessMode::Read, | ||
| 226 | Common::FS::FileType::BinaryFile}; | ||
| 227 | if (file.IsOpen()) { | ||
| 228 | std::vector<u8> bytes(file.GetSize()); | ||
| 229 | void(file.Read(bytes)); | ||
| 230 | const auto digest = DigestFile(bytes); | ||
| 231 | headers.insert({std::string("If-None-Match"), Common::HexToString(digest, false)}); | ||
| 232 | } | ||
| 233 | } | ||
| 234 | |||
| 235 | const auto response = client->Get(resolved_path.c_str(), headers); | ||
| 236 | if (response == nullptr) | ||
| 237 | return DownloadResult::NoResponse; | ||
| 238 | |||
| 239 | if (response->status == static_cast<int>(ResponseStatus::NoUpdate)) | ||
| 240 | return DownloadResult::Success; | ||
| 241 | if (response->status == static_cast<int>(ResponseStatus::BadClientVersion)) | ||
| 242 | return DownloadResult::BadClientVersion; | ||
| 243 | if (response->status == static_cast<int>(ResponseStatus::NoMatchTitleId)) | ||
| 244 | return DownloadResult::NoMatchTitleId; | ||
| 245 | if (response->status == static_cast<int>(ResponseStatus::NoMatchBuildId)) | ||
| 246 | return DownloadResult::NoMatchBuildId; | ||
| 247 | if (response->status != static_cast<int>(ResponseStatus::Ok)) | ||
| 248 | return DownloadResult::GeneralWebError; | ||
| 249 | |||
| 250 | const auto content_type = response->headers.find("content-type"); | ||
| 251 | if (content_type == response->headers.end() || | ||
| 252 | content_type->second.find(content_type_name) == std::string::npos) { | ||
| 253 | return DownloadResult::InvalidContentType; | ||
| 254 | } | ||
| 255 | |||
| 256 | if (!Common::FS::CreateDirs(path)) { | ||
| 257 | return DownloadResult::GeneralFSError; | ||
| 258 | } | ||
| 259 | |||
| 260 | Common::FS::IOFile file{path, Common::FS::FileAccessMode::Append, | ||
| 261 | Common::FS::FileType::BinaryFile}; | ||
| 262 | if (!file.IsOpen()) { | ||
| 263 | return DownloadResult::GeneralFSError; | ||
| 264 | } | ||
| 265 | |||
| 266 | if (!file.SetSize(response->body.size())) { | ||
| 267 | return DownloadResult::GeneralFSError; | ||
| 268 | } | ||
| 269 | |||
| 270 | if (file.Write(response->body) != response->body.size()) { | ||
| 271 | return DownloadResult::GeneralFSError; | ||
| 272 | } | ||
| 273 | |||
| 274 | return DownloadResult::Success; | ||
| 275 | } | ||
| 276 | |||
| 277 | using Digest = std::array<u8, 0x20>; | ||
| 278 | static Digest DigestFile(std::vector<u8> bytes) { | ||
| 279 | Digest out{}; | ||
| 280 | mbedtls_sha256_ret(bytes.data(), bytes.size(), out.data(), 0); | ||
| 281 | return out; | ||
| 282 | } | ||
| 283 | |||
| 284 | std::unique_ptr<httplib::SSLClient> client; | ||
| 285 | std::filesystem::path path; | ||
| 286 | u64 title_id; | ||
| 287 | u64 build_id; | ||
| 288 | }; | ||
| 289 | |||
| 290 | Boxcat::Boxcat(AM::Applets::AppletManager& applet_manager_, DirectoryGetter getter) | ||
| 291 | : Backend(std::move(getter)), applet_manager{applet_manager_} {} | ||
| 292 | |||
| 293 | Boxcat::~Boxcat() = default; | ||
| 294 | |||
| 295 | void SynchronizeInternal(AM::Applets::AppletManager& applet_manager, DirectoryGetter dir_getter, | ||
| 296 | TitleIDVersion title, ProgressServiceBackend& progress, | ||
| 297 | std::optional<std::string> dir_name = {}) { | ||
| 298 | progress.SetNeedHLELock(true); | ||
| 299 | |||
| 300 | if (Settings::values.bcat_boxcat_local) { | ||
| 301 | LOG_INFO(Service_BCAT, "Boxcat using local data by override, skipping download."); | ||
| 302 | const auto dir = dir_getter(title.title_id); | ||
| 303 | if (dir) | ||
| 304 | progress.SetTotalSize(dir->GetSize()); | ||
| 305 | progress.FinishDownload(ResultSuccess); | ||
| 306 | return; | ||
| 307 | } | ||
| 308 | |||
| 309 | const auto zip_path = GetZIPFilePath(title.title_id); | ||
| 310 | Boxcat::Client client{zip_path, title.title_id, title.build_id}; | ||
| 311 | |||
| 312 | progress.StartConnecting(); | ||
| 313 | |||
| 314 | const auto res = client.DownloadDataZip(); | ||
| 315 | if (res != DownloadResult::Success) { | ||
| 316 | LOG_ERROR(Service_BCAT, "Boxcat synchronization failed with error '{}'!", res); | ||
| 317 | |||
| 318 | if (res == DownloadResult::NoMatchBuildId || res == DownloadResult::NoMatchTitleId) { | ||
| 319 | Common::FS::RemoveFile(zip_path); | ||
| 320 | } | ||
| 321 | |||
| 322 | HandleDownloadDisplayResult(applet_manager, res); | ||
| 323 | progress.FinishDownload(ERROR_GENERAL_BCAT_FAILURE); | ||
| 324 | return; | ||
| 325 | } | ||
| 326 | |||
| 327 | progress.StartProcessingDataList(); | ||
| 328 | |||
| 329 | Common::FS::IOFile zip{zip_path, Common::FS::FileAccessMode::Read, | ||
| 330 | Common::FS::FileType::BinaryFile}; | ||
| 331 | const auto size = zip.GetSize(); | ||
| 332 | std::vector<u8> bytes(size); | ||
| 333 | if (!zip.IsOpen() || size == 0 || zip.Read(bytes) != bytes.size()) { | ||
| 334 | LOG_ERROR(Service_BCAT, "Boxcat failed to read ZIP file at path '{}'!", | ||
| 335 | Common::FS::PathToUTF8String(zip_path)); | ||
| 336 | progress.FinishDownload(ERROR_GENERAL_BCAT_FAILURE); | ||
| 337 | return; | ||
| 338 | } | ||
| 339 | |||
| 340 | const auto extracted = FileSys::ExtractZIP(std::make_shared<FileSys::VectorVfsFile>(bytes)); | ||
| 341 | if (extracted == nullptr) { | ||
| 342 | LOG_ERROR(Service_BCAT, "Boxcat failed to extract ZIP file!"); | ||
| 343 | progress.FinishDownload(ERROR_GENERAL_BCAT_FAILURE); | ||
| 344 | return; | ||
| 345 | } | ||
| 346 | |||
| 347 | if (dir_name == std::nullopt) { | ||
| 348 | progress.SetTotalSize(extracted->GetSize()); | ||
| 349 | |||
| 350 | const auto target_dir = dir_getter(title.title_id); | ||
| 351 | if (target_dir == nullptr || !VfsRawCopyDProgress(extracted, target_dir, progress)) { | ||
| 352 | LOG_ERROR(Service_BCAT, "Boxcat failed to copy extracted ZIP to target directory!"); | ||
| 353 | progress.FinishDownload(ERROR_GENERAL_BCAT_FAILURE); | ||
| 354 | return; | ||
| 355 | } | ||
| 356 | } else { | ||
| 357 | const auto target_dir = dir_getter(title.title_id); | ||
| 358 | if (target_dir == nullptr) { | ||
| 359 | LOG_ERROR(Service_BCAT, "Boxcat failed to get directory for title ID!"); | ||
| 360 | progress.FinishDownload(ERROR_GENERAL_BCAT_FAILURE); | ||
| 361 | return; | ||
| 362 | } | ||
| 363 | |||
| 364 | const auto target_sub = target_dir->GetSubdirectory(*dir_name); | ||
| 365 | const auto source_sub = extracted->GetSubdirectory(*dir_name); | ||
| 366 | |||
| 367 | progress.SetTotalSize(source_sub->GetSize()); | ||
| 368 | |||
| 369 | std::vector<std::string> filenames; | ||
| 370 | { | ||
| 371 | const auto files = target_sub->GetFiles(); | ||
| 372 | std::transform(files.begin(), files.end(), std::back_inserter(filenames), | ||
| 373 | [](const auto& vfile) { return vfile->GetName(); }); | ||
| 374 | } | ||
| 375 | |||
| 376 | for (const auto& filename : filenames) { | ||
| 377 | VfsDeleteFileWrap(target_sub, filename); | ||
| 378 | } | ||
| 379 | |||
| 380 | if (target_sub == nullptr || source_sub == nullptr || | ||
| 381 | !VfsRawCopyDProgressSingle(source_sub, target_sub, progress)) { | ||
| 382 | LOG_ERROR(Service_BCAT, "Boxcat failed to copy extracted ZIP to target directory!"); | ||
| 383 | progress.FinishDownload(ERROR_GENERAL_BCAT_FAILURE); | ||
| 384 | return; | ||
| 385 | } | ||
| 386 | } | ||
| 387 | |||
| 388 | progress.FinishDownload(ResultSuccess); | ||
| 389 | } | ||
| 390 | |||
| 391 | bool Boxcat::Synchronize(TitleIDVersion title, ProgressServiceBackend& progress) { | ||
| 392 | is_syncing.exchange(true); | ||
| 393 | |||
| 394 | std::thread([this, title, &progress] { | ||
| 395 | SynchronizeInternal(applet_manager, dir_getter, title, progress); | ||
| 396 | }).detach(); | ||
| 397 | |||
| 398 | return true; | ||
| 399 | } | ||
| 400 | |||
| 401 | bool Boxcat::SynchronizeDirectory(TitleIDVersion title, std::string name, | ||
| 402 | ProgressServiceBackend& progress) { | ||
| 403 | is_syncing.exchange(true); | ||
| 404 | |||
| 405 | std::thread([this, title, name, &progress] { | ||
| 406 | SynchronizeInternal(applet_manager, dir_getter, title, progress, name); | ||
| 407 | }).detach(); | ||
| 408 | |||
| 409 | return true; | ||
| 410 | } | ||
| 411 | |||
| 412 | bool Boxcat::Clear(u64 title_id) { | ||
| 413 | if (Settings::values.bcat_boxcat_local) { | ||
| 414 | LOG_INFO(Service_BCAT, "Boxcat using local data by override, skipping clear."); | ||
| 415 | return true; | ||
| 416 | } | ||
| 417 | |||
| 418 | const auto dir = dir_getter(title_id); | ||
| 419 | |||
| 420 | std::vector<std::string> dirnames; | ||
| 421 | |||
| 422 | for (const auto& subdir : dir->GetSubdirectories()) | ||
| 423 | dirnames.push_back(subdir->GetName()); | ||
| 424 | |||
| 425 | for (const auto& subdir : dirnames) { | ||
| 426 | if (!dir->DeleteSubdirectoryRecursive(subdir)) | ||
| 427 | return false; | ||
| 428 | } | ||
| 429 | |||
| 430 | return true; | ||
| 431 | } | ||
| 432 | |||
| 433 | void Boxcat::SetPassphrase(u64 title_id, const Passphrase& passphrase) { | ||
| 434 | LOG_DEBUG(Service_BCAT, "called, title_id={:016X}, passphrase={}", title_id, | ||
| 435 | Common::HexToString(passphrase)); | ||
| 436 | } | ||
| 437 | |||
| 438 | std::optional<std::vector<u8>> Boxcat::GetLaunchParameter(TitleIDVersion title) { | ||
| 439 | const auto bin_file_path = GetBINFilePath(title.title_id); | ||
| 440 | |||
| 441 | if (Settings::values.bcat_boxcat_local) { | ||
| 442 | LOG_INFO(Service_BCAT, "Boxcat using local data by override, skipping download."); | ||
| 443 | } else { | ||
| 444 | Client launch_client{bin_file_path, title.title_id, title.build_id}; | ||
| 445 | |||
| 446 | const auto res = launch_client.DownloadLaunchParam(); | ||
| 447 | if (res != DownloadResult::Success) { | ||
| 448 | LOG_ERROR(Service_BCAT, "Boxcat synchronization failed with error '{}'!", res); | ||
| 449 | |||
| 450 | if (res == DownloadResult::NoMatchBuildId || res == DownloadResult::NoMatchTitleId) { | ||
| 451 | Common::FS::RemoveFile(bin_file_path); | ||
| 452 | } | ||
| 453 | |||
| 454 | HandleDownloadDisplayResult(applet_manager, res); | ||
| 455 | return std::nullopt; | ||
| 456 | } | ||
| 457 | } | ||
| 458 | |||
| 459 | Common::FS::IOFile bin{bin_file_path, Common::FS::FileAccessMode::Read, | ||
| 460 | Common::FS::FileType::BinaryFile}; | ||
| 461 | const auto size = bin.GetSize(); | ||
| 462 | std::vector<u8> bytes(size); | ||
| 463 | if (!bin.IsOpen() || size == 0 || bin.Read(bytes) != bytes.size()) { | ||
| 464 | LOG_ERROR(Service_BCAT, "Boxcat failed to read launch parameter binary at path '{}'!", | ||
| 465 | Common::FS::PathToUTF8String(bin_file_path)); | ||
| 466 | return std::nullopt; | ||
| 467 | } | ||
| 468 | |||
| 469 | return bytes; | ||
| 470 | } | ||
| 471 | |||
| 472 | Boxcat::StatusResult Boxcat::GetStatus(std::optional<std::string>& global, | ||
| 473 | std::map<std::string, EventStatus>& games) { | ||
| 474 | httplib::SSLClient client{BOXCAT_HOSTNAME, static_cast<int>(PORT)}; | ||
| 475 | client.set_connection_timeout(static_cast<int>(TIMEOUT_SECONDS)); | ||
| 476 | client.set_read_timeout(static_cast<int>(TIMEOUT_SECONDS)); | ||
| 477 | client.set_write_timeout(static_cast<int>(TIMEOUT_SECONDS)); | ||
| 478 | |||
| 479 | httplib::Headers headers{ | ||
| 480 | {std::string("Game-Assets-API-Version"), std::string(BOXCAT_API_VERSION)}, | ||
| 481 | {std::string("Boxcat-Client-Type"), std::string(BOXCAT_CLIENT_TYPE)}, | ||
| 482 | }; | ||
| 483 | |||
| 484 | if (!client.is_valid()) { | ||
| 485 | LOG_ERROR(Service_BCAT, "Client is invalid, going offline!"); | ||
| 486 | return StatusResult::Offline; | ||
| 487 | } | ||
| 488 | |||
| 489 | if (!client.is_socket_open()) { | ||
| 490 | LOG_ERROR(Service_BCAT, "Failed to open socket, going offline!"); | ||
| 491 | return StatusResult::Offline; | ||
| 492 | } | ||
| 493 | |||
| 494 | const auto response = client.Get(BOXCAT_PATHNAME_EVENTS, headers); | ||
| 495 | if (response == nullptr) | ||
| 496 | return StatusResult::Offline; | ||
| 497 | |||
| 498 | if (response->status == static_cast<int>(ResponseStatus::BadClientVersion)) | ||
| 499 | return StatusResult::BadClientVersion; | ||
| 500 | |||
| 501 | try { | ||
| 502 | nlohmann::json json = nlohmann::json::parse(response->body); | ||
| 503 | |||
| 504 | if (!json["online"].get<bool>()) | ||
| 505 | return StatusResult::Offline; | ||
| 506 | |||
| 507 | if (json["global"].is_null()) | ||
| 508 | global = std::nullopt; | ||
| 509 | else | ||
| 510 | global = json["global"].get<std::string>(); | ||
| 511 | |||
| 512 | if (json["games"].is_array()) { | ||
| 513 | for (const auto& object : json["games"]) { | ||
| 514 | if (object.is_object() && object.find("name") != object.end()) { | ||
| 515 | EventStatus detail{}; | ||
| 516 | if (object["header"].is_string()) { | ||
| 517 | detail.header = object["header"].get<std::string>(); | ||
| 518 | } else { | ||
| 519 | detail.header = std::nullopt; | ||
| 520 | } | ||
| 521 | |||
| 522 | if (object["footer"].is_string()) { | ||
| 523 | detail.footer = object["footer"].get<std::string>(); | ||
| 524 | } else { | ||
| 525 | detail.footer = std::nullopt; | ||
| 526 | } | ||
| 527 | |||
| 528 | if (object["events"].is_array()) { | ||
| 529 | for (const auto& event : object["events"]) { | ||
| 530 | if (!event.is_string()) | ||
| 531 | continue; | ||
| 532 | detail.events.push_back(event.get<std::string>()); | ||
| 533 | } | ||
| 534 | } | ||
| 535 | |||
| 536 | games.insert_or_assign(object["name"], std::move(detail)); | ||
| 537 | } | ||
| 538 | } | ||
| 539 | } | ||
| 540 | |||
| 541 | return StatusResult::Success; | ||
| 542 | } catch (const nlohmann::json::parse_error& error) { | ||
| 543 | LOG_ERROR(Service_BCAT, "{}", error.what()); | ||
| 544 | return StatusResult::ParseError; | ||
| 545 | } | ||
| 546 | } | ||
| 547 | |||
| 548 | } // namespace Service::BCAT | ||
diff --git a/src/core/hle/service/bcat/backend/boxcat.h b/src/core/hle/service/bcat/backend/boxcat.h deleted file mode 100644 index d65b42e58..000000000 --- a/src/core/hle/service/bcat/backend/boxcat.h +++ /dev/null | |||
| @@ -1,64 +0,0 @@ | |||
| 1 | // Copyright 2019 yuzu emulator team | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #pragma once | ||
| 6 | |||
| 7 | #include <atomic> | ||
| 8 | #include <map> | ||
| 9 | #include <optional> | ||
| 10 | #include "core/hle/service/bcat/backend/backend.h" | ||
| 11 | |||
| 12 | namespace Service::AM::Applets { | ||
| 13 | class AppletManager; | ||
| 14 | } | ||
| 15 | |||
| 16 | namespace Service::BCAT { | ||
| 17 | |||
| 18 | struct EventStatus { | ||
| 19 | std::optional<std::string> header; | ||
| 20 | std::optional<std::string> footer; | ||
| 21 | std::vector<std::string> events; | ||
| 22 | }; | ||
| 23 | |||
| 24 | /// Boxcat is yuzu's custom backend implementation of Nintendo's BCAT service. It is free to use and | ||
| 25 | /// doesn't require a switch or nintendo account. The content is controlled by the yuzu team. | ||
| 26 | class Boxcat final : public Backend { | ||
| 27 | friend void SynchronizeInternal(AM::Applets::AppletManager& applet_manager, | ||
| 28 | DirectoryGetter dir_getter, TitleIDVersion title, | ||
| 29 | ProgressServiceBackend& progress, | ||
| 30 | std::optional<std::string> dir_name); | ||
| 31 | |||
| 32 | public: | ||
| 33 | explicit Boxcat(AM::Applets::AppletManager& applet_manager_, DirectoryGetter getter); | ||
| 34 | ~Boxcat() override; | ||
| 35 | |||
| 36 | bool Synchronize(TitleIDVersion title, ProgressServiceBackend& progress) override; | ||
| 37 | bool SynchronizeDirectory(TitleIDVersion title, std::string name, | ||
| 38 | ProgressServiceBackend& progress) override; | ||
| 39 | |||
| 40 | bool Clear(u64 title_id) override; | ||
| 41 | |||
| 42 | void SetPassphrase(u64 title_id, const Passphrase& passphrase) override; | ||
| 43 | |||
| 44 | std::optional<std::vector<u8>> GetLaunchParameter(TitleIDVersion title) override; | ||
| 45 | |||
| 46 | enum class StatusResult { | ||
| 47 | Success, | ||
| 48 | Offline, | ||
| 49 | ParseError, | ||
| 50 | BadClientVersion, | ||
| 51 | }; | ||
| 52 | |||
| 53 | static StatusResult GetStatus(std::optional<std::string>& global, | ||
| 54 | std::map<std::string, EventStatus>& games); | ||
| 55 | |||
| 56 | private: | ||
| 57 | std::atomic_bool is_syncing{false}; | ||
| 58 | |||
| 59 | class Client; | ||
| 60 | std::unique_ptr<Client> client; | ||
| 61 | AM::Applets::AppletManager& applet_manager; | ||
| 62 | }; | ||
| 63 | |||
| 64 | } // namespace Service::BCAT | ||
diff --git a/src/core/hle/service/bcat/bcat_module.cpp b/src/core/hle/service/bcat/bcat_module.cpp index 72294eb2e..27e9b8df8 100644 --- a/src/core/hle/service/bcat/bcat_module.cpp +++ b/src/core/hle/service/bcat/bcat_module.cpp | |||
| @@ -4,7 +4,6 @@ | |||
| 4 | 4 | ||
| 5 | #include <cctype> | 5 | #include <cctype> |
| 6 | #include <mbedtls/md5.h> | 6 | #include <mbedtls/md5.h> |
| 7 | #include "backend/boxcat.h" | ||
| 8 | #include "common/hex_util.h" | 7 | #include "common/hex_util.h" |
| 9 | #include "common/logging/log.h" | 8 | #include "common/logging/log.h" |
| 10 | #include "common/settings.h" | 9 | #include "common/settings.h" |
| @@ -128,8 +127,8 @@ public: | |||
| 128 | explicit IBcatService(Core::System& system_, Backend& backend_) | 127 | explicit IBcatService(Core::System& system_, Backend& backend_) |
| 129 | : ServiceFramework{system_, "IBcatService"}, backend{backend_}, | 128 | : ServiceFramework{system_, "IBcatService"}, backend{backend_}, |
| 130 | progress{{ | 129 | progress{{ |
| 131 | ProgressServiceBackend{system_.Kernel(), "Normal"}, | 130 | ProgressServiceBackend{system_, "Normal"}, |
| 132 | ProgressServiceBackend{system_.Kernel(), "Directory"}, | 131 | ProgressServiceBackend{system_, "Directory"}, |
| 133 | }} { | 132 | }} { |
| 134 | // clang-format off | 133 | // clang-format off |
| 135 | static const FunctionInfo functions[] = { | 134 | static const FunctionInfo functions[] = { |
| @@ -578,12 +577,6 @@ void Module::Interface::CreateDeliveryCacheStorageServiceWithApplicationId( | |||
| 578 | 577 | ||
| 579 | std::unique_ptr<Backend> CreateBackendFromSettings([[maybe_unused]] Core::System& system, | 578 | std::unique_ptr<Backend> CreateBackendFromSettings([[maybe_unused]] Core::System& system, |
| 580 | DirectoryGetter getter) { | 579 | DirectoryGetter getter) { |
| 581 | #ifdef YUZU_ENABLE_BOXCAT | ||
| 582 | if (Settings::values.bcat_backend.GetValue() == "boxcat") { | ||
| 583 | return std::make_unique<Boxcat>(system.GetAppletManager(), std::move(getter)); | ||
| 584 | } | ||
| 585 | #endif | ||
| 586 | |||
| 587 | return std::make_unique<NullBackend>(std::move(getter)); | 580 | return std::make_unique<NullBackend>(std::move(getter)); |
| 588 | } | 581 | } |
| 589 | 582 | ||
diff --git a/src/core/hle/service/btdrv/btdrv.cpp b/src/core/hle/service/btdrv/btdrv.cpp index acf791de2..ecd3bd22a 100644 --- a/src/core/hle/service/btdrv/btdrv.cpp +++ b/src/core/hle/service/btdrv/btdrv.cpp | |||
| @@ -7,9 +7,9 @@ | |||
| 7 | #include "core/hle/ipc_helpers.h" | 7 | #include "core/hle/ipc_helpers.h" |
| 8 | #include "core/hle/kernel/hle_ipc.h" | 8 | #include "core/hle/kernel/hle_ipc.h" |
| 9 | #include "core/hle/kernel/k_event.h" | 9 | #include "core/hle/kernel/k_event.h" |
| 10 | #include "core/hle/kernel/k_readable_event.h" | ||
| 11 | #include "core/hle/kernel/kernel.h" | 10 | #include "core/hle/kernel/kernel.h" |
| 12 | #include "core/hle/service/btdrv/btdrv.h" | 11 | #include "core/hle/service/btdrv/btdrv.h" |
| 12 | #include "core/hle/service/kernel_helpers.h" | ||
| 13 | #include "core/hle/service/service.h" | 13 | #include "core/hle/service/service.h" |
| 14 | #include "core/hle/service/sm/sm.h" | 14 | #include "core/hle/service/sm/sm.h" |
| 15 | 15 | ||
| @@ -18,7 +18,7 @@ namespace Service::BtDrv { | |||
| 18 | class Bt final : public ServiceFramework<Bt> { | 18 | class Bt final : public ServiceFramework<Bt> { |
| 19 | public: | 19 | public: |
| 20 | explicit Bt(Core::System& system_) | 20 | explicit Bt(Core::System& system_) |
| 21 | : ServiceFramework{system_, "bt"}, register_event{system.Kernel()} { | 21 | : ServiceFramework{system_, "bt"}, service_context{system_, "bt"} { |
| 22 | // clang-format off | 22 | // clang-format off |
| 23 | static const FunctionInfo functions[] = { | 23 | static const FunctionInfo functions[] = { |
| 24 | {0, nullptr, "LeClientReadCharacteristic"}, | 24 | {0, nullptr, "LeClientReadCharacteristic"}, |
| @@ -35,8 +35,11 @@ public: | |||
| 35 | // clang-format on | 35 | // clang-format on |
| 36 | RegisterHandlers(functions); | 36 | RegisterHandlers(functions); |
| 37 | 37 | ||
| 38 | Kernel::KAutoObject::Create(std::addressof(register_event)); | 38 | register_event = service_context.CreateEvent("BT:RegisterEvent"); |
| 39 | register_event.Initialize("BT:RegisterEvent"); | 39 | } |
| 40 | |||
| 41 | ~Bt() override { | ||
| 42 | service_context.CloseEvent(register_event); | ||
| 40 | } | 43 | } |
| 41 | 44 | ||
| 42 | private: | 45 | private: |
| @@ -45,10 +48,12 @@ private: | |||
| 45 | 48 | ||
| 46 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 49 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 47 | rb.Push(ResultSuccess); | 50 | rb.Push(ResultSuccess); |
| 48 | rb.PushCopyObjects(register_event.GetReadableEvent()); | 51 | rb.PushCopyObjects(register_event->GetReadableEvent()); |
| 49 | } | 52 | } |
| 50 | 53 | ||
| 51 | Kernel::KEvent register_event; | 54 | KernelHelpers::ServiceContext service_context; |
| 55 | |||
| 56 | Kernel::KEvent* register_event; | ||
| 52 | }; | 57 | }; |
| 53 | 58 | ||
| 54 | class BtDrv final : public ServiceFramework<BtDrv> { | 59 | class BtDrv final : public ServiceFramework<BtDrv> { |
diff --git a/src/core/hle/service/btm/btm.cpp b/src/core/hle/service/btm/btm.cpp index 3ab29036a..780a99c2d 100644 --- a/src/core/hle/service/btm/btm.cpp +++ b/src/core/hle/service/btm/btm.cpp | |||
| @@ -9,9 +9,9 @@ | |||
| 9 | #include "core/hle/ipc_helpers.h" | 9 | #include "core/hle/ipc_helpers.h" |
| 10 | #include "core/hle/kernel/hle_ipc.h" | 10 | #include "core/hle/kernel/hle_ipc.h" |
| 11 | #include "core/hle/kernel/k_event.h" | 11 | #include "core/hle/kernel/k_event.h" |
| 12 | #include "core/hle/kernel/k_readable_event.h" | ||
| 13 | #include "core/hle/kernel/kernel.h" | 12 | #include "core/hle/kernel/kernel.h" |
| 14 | #include "core/hle/service/btm/btm.h" | 13 | #include "core/hle/service/btm/btm.h" |
| 14 | #include "core/hle/service/kernel_helpers.h" | ||
| 15 | #include "core/hle/service/service.h" | 15 | #include "core/hle/service/service.h" |
| 16 | 16 | ||
| 17 | namespace Service::BTM { | 17 | namespace Service::BTM { |
| @@ -19,9 +19,7 @@ namespace Service::BTM { | |||
| 19 | class IBtmUserCore final : public ServiceFramework<IBtmUserCore> { | 19 | class IBtmUserCore final : public ServiceFramework<IBtmUserCore> { |
| 20 | public: | 20 | public: |
| 21 | explicit IBtmUserCore(Core::System& system_) | 21 | explicit IBtmUserCore(Core::System& system_) |
| 22 | : ServiceFramework{system_, "IBtmUserCore"}, scan_event{system.Kernel()}, | 22 | : ServiceFramework{system_, "IBtmUserCore"}, service_context{system_, "IBtmUserCore"} { |
| 23 | connection_event{system.Kernel()}, service_discovery{system.Kernel()}, | ||
| 24 | config_event{system.Kernel()} { | ||
| 25 | // clang-format off | 23 | // clang-format off |
| 26 | static const FunctionInfo functions[] = { | 24 | static const FunctionInfo functions[] = { |
| 27 | {0, &IBtmUserCore::AcquireBleScanEvent, "AcquireBleScanEvent"}, | 25 | {0, &IBtmUserCore::AcquireBleScanEvent, "AcquireBleScanEvent"}, |
| @@ -60,15 +58,17 @@ public: | |||
| 60 | // clang-format on | 58 | // clang-format on |
| 61 | RegisterHandlers(functions); | 59 | RegisterHandlers(functions); |
| 62 | 60 | ||
| 63 | Kernel::KAutoObject::Create(std::addressof(scan_event)); | 61 | scan_event = service_context.CreateEvent("IBtmUserCore:ScanEvent"); |
| 64 | Kernel::KAutoObject::Create(std::addressof(connection_event)); | 62 | connection_event = service_context.CreateEvent("IBtmUserCore:ConnectionEvent"); |
| 65 | Kernel::KAutoObject::Create(std::addressof(service_discovery)); | 63 | service_discovery_event = service_context.CreateEvent("IBtmUserCore:DiscoveryEvent"); |
| 66 | Kernel::KAutoObject::Create(std::addressof(config_event)); | 64 | config_event = service_context.CreateEvent("IBtmUserCore:ConfigEvent"); |
| 65 | } | ||
| 67 | 66 | ||
| 68 | scan_event.Initialize("IBtmUserCore:ScanEvent"); | 67 | ~IBtmUserCore() override { |
| 69 | connection_event.Initialize("IBtmUserCore:ConnectionEvent"); | 68 | service_context.CloseEvent(scan_event); |
| 70 | service_discovery.Initialize("IBtmUserCore:Discovery"); | 69 | service_context.CloseEvent(connection_event); |
| 71 | config_event.Initialize("IBtmUserCore:ConfigEvent"); | 70 | service_context.CloseEvent(service_discovery_event); |
| 71 | service_context.CloseEvent(config_event); | ||
| 72 | } | 72 | } |
| 73 | 73 | ||
| 74 | private: | 74 | private: |
| @@ -77,7 +77,7 @@ private: | |||
| 77 | 77 | ||
| 78 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 78 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 79 | rb.Push(ResultSuccess); | 79 | rb.Push(ResultSuccess); |
| 80 | rb.PushCopyObjects(scan_event.GetReadableEvent()); | 80 | rb.PushCopyObjects(scan_event->GetReadableEvent()); |
| 81 | } | 81 | } |
| 82 | 82 | ||
| 83 | void AcquireBleConnectionEvent(Kernel::HLERequestContext& ctx) { | 83 | void AcquireBleConnectionEvent(Kernel::HLERequestContext& ctx) { |
| @@ -85,7 +85,7 @@ private: | |||
| 85 | 85 | ||
| 86 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 86 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 87 | rb.Push(ResultSuccess); | 87 | rb.Push(ResultSuccess); |
| 88 | rb.PushCopyObjects(connection_event.GetReadableEvent()); | 88 | rb.PushCopyObjects(connection_event->GetReadableEvent()); |
| 89 | } | 89 | } |
| 90 | 90 | ||
| 91 | void AcquireBleServiceDiscoveryEvent(Kernel::HLERequestContext& ctx) { | 91 | void AcquireBleServiceDiscoveryEvent(Kernel::HLERequestContext& ctx) { |
| @@ -93,7 +93,7 @@ private: | |||
| 93 | 93 | ||
| 94 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 94 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 95 | rb.Push(ResultSuccess); | 95 | rb.Push(ResultSuccess); |
| 96 | rb.PushCopyObjects(service_discovery.GetReadableEvent()); | 96 | rb.PushCopyObjects(service_discovery_event->GetReadableEvent()); |
| 97 | } | 97 | } |
| 98 | 98 | ||
| 99 | void AcquireBleMtuConfigEvent(Kernel::HLERequestContext& ctx) { | 99 | void AcquireBleMtuConfigEvent(Kernel::HLERequestContext& ctx) { |
| @@ -101,13 +101,15 @@ private: | |||
| 101 | 101 | ||
| 102 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 102 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 103 | rb.Push(ResultSuccess); | 103 | rb.Push(ResultSuccess); |
| 104 | rb.PushCopyObjects(config_event.GetReadableEvent()); | 104 | rb.PushCopyObjects(config_event->GetReadableEvent()); |
| 105 | } | 105 | } |
| 106 | 106 | ||
| 107 | Kernel::KEvent scan_event; | 107 | KernelHelpers::ServiceContext service_context; |
| 108 | Kernel::KEvent connection_event; | 108 | |
| 109 | Kernel::KEvent service_discovery; | 109 | Kernel::KEvent* scan_event; |
| 110 | Kernel::KEvent config_event; | 110 | Kernel::KEvent* connection_event; |
| 111 | Kernel::KEvent* service_discovery_event; | ||
| 112 | Kernel::KEvent* config_event; | ||
| 111 | }; | 113 | }; |
| 112 | 114 | ||
| 113 | class BTM_USR final : public ServiceFramework<BTM_USR> { | 115 | class BTM_USR final : public ServiceFramework<BTM_USR> { |
diff --git a/src/core/hle/service/friend/friend.cpp b/src/core/hle/service/friend/friend.cpp index b58c152ce..68c9240ae 100644 --- a/src/core/hle/service/friend/friend.cpp +++ b/src/core/hle/service/friend/friend.cpp | |||
| @@ -8,11 +8,10 @@ | |||
| 8 | #include "core/core.h" | 8 | #include "core/core.h" |
| 9 | #include "core/hle/ipc_helpers.h" | 9 | #include "core/hle/ipc_helpers.h" |
| 10 | #include "core/hle/kernel/k_event.h" | 10 | #include "core/hle/kernel/k_event.h" |
| 11 | #include "core/hle/kernel/k_readable_event.h" | ||
| 12 | #include "core/hle/kernel/k_writable_event.h" | ||
| 13 | #include "core/hle/service/friend/errors.h" | 11 | #include "core/hle/service/friend/errors.h" |
| 14 | #include "core/hle/service/friend/friend.h" | 12 | #include "core/hle/service/friend/friend.h" |
| 15 | #include "core/hle/service/friend/friend_interface.h" | 13 | #include "core/hle/service/friend/friend_interface.h" |
| 14 | #include "core/hle/service/kernel_helpers.h" | ||
| 16 | 15 | ||
| 17 | namespace Service::Friend { | 16 | namespace Service::Friend { |
| 18 | 17 | ||
| @@ -184,9 +183,9 @@ private: | |||
| 184 | 183 | ||
| 185 | class INotificationService final : public ServiceFramework<INotificationService> { | 184 | class INotificationService final : public ServiceFramework<INotificationService> { |
| 186 | public: | 185 | public: |
| 187 | explicit INotificationService(Common::UUID uuid_, Core::System& system_) | 186 | explicit INotificationService(Core::System& system_, Common::UUID uuid_) |
| 188 | : ServiceFramework{system_, "INotificationService"}, uuid{uuid_}, notification_event{ | 187 | : ServiceFramework{system_, "INotificationService"}, uuid{uuid_}, |
| 189 | system.Kernel()} { | 188 | service_context{system_, "INotificationService"} { |
| 190 | // clang-format off | 189 | // clang-format off |
| 191 | static const FunctionInfo functions[] = { | 190 | static const FunctionInfo functions[] = { |
| 192 | {0, &INotificationService::GetEvent, "GetEvent"}, | 191 | {0, &INotificationService::GetEvent, "GetEvent"}, |
| @@ -197,8 +196,11 @@ public: | |||
| 197 | 196 | ||
| 198 | RegisterHandlers(functions); | 197 | RegisterHandlers(functions); |
| 199 | 198 | ||
| 200 | Kernel::KAutoObject::Create(std::addressof(notification_event)); | 199 | notification_event = service_context.CreateEvent("INotificationService:NotifyEvent"); |
| 201 | notification_event.Initialize("INotificationService:NotifyEvent"); | 200 | } |
| 201 | |||
| 202 | ~INotificationService() override { | ||
| 203 | service_context.CloseEvent(notification_event); | ||
| 202 | } | 204 | } |
| 203 | 205 | ||
| 204 | private: | 206 | private: |
| @@ -207,7 +209,7 @@ private: | |||
| 207 | 209 | ||
| 208 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 210 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 209 | rb.Push(ResultSuccess); | 211 | rb.Push(ResultSuccess); |
| 210 | rb.PushCopyObjects(notification_event.GetReadableEvent()); | 212 | rb.PushCopyObjects(notification_event->GetReadableEvent()); |
| 211 | } | 213 | } |
| 212 | 214 | ||
| 213 | void Clear(Kernel::HLERequestContext& ctx) { | 215 | void Clear(Kernel::HLERequestContext& ctx) { |
| @@ -272,8 +274,10 @@ private: | |||
| 272 | bool has_received_friend_request; | 274 | bool has_received_friend_request; |
| 273 | }; | 275 | }; |
| 274 | 276 | ||
| 275 | Common::UUID uuid{Common::INVALID_UUID}; | 277 | Common::UUID uuid; |
| 276 | Kernel::KEvent notification_event; | 278 | KernelHelpers::ServiceContext service_context; |
| 279 | |||
| 280 | Kernel::KEvent* notification_event; | ||
| 277 | std::queue<SizedNotificationInfo> notifications; | 281 | std::queue<SizedNotificationInfo> notifications; |
| 278 | States states{}; | 282 | States states{}; |
| 279 | }; | 283 | }; |
| @@ -293,7 +297,7 @@ void Module::Interface::CreateNotificationService(Kernel::HLERequestContext& ctx | |||
| 293 | 297 | ||
| 294 | IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | 298 | IPC::ResponseBuilder rb{ctx, 2, 0, 1}; |
| 295 | rb.Push(ResultSuccess); | 299 | rb.Push(ResultSuccess); |
| 296 | rb.PushIpcInterface<INotificationService>(uuid, system); | 300 | rb.PushIpcInterface<INotificationService>(system, uuid); |
| 297 | } | 301 | } |
| 298 | 302 | ||
| 299 | Module::Interface::Interface(std::shared_ptr<Module> module_, Core::System& system_, | 303 | Module::Interface::Interface(std::shared_ptr<Module> module_, Core::System& system_, |
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp index c930996ab..8c363142c 100644 --- a/src/core/hle/service/hid/hid.cpp +++ b/src/core/hle/service/hid/hid.cpp | |||
| @@ -106,7 +106,7 @@ void IAppletResource::DeactivateController(HidController controller) { | |||
| 106 | controllers[static_cast<size_t>(controller)]->DeactivateController(); | 106 | controllers[static_cast<size_t>(controller)]->DeactivateController(); |
| 107 | } | 107 | } |
| 108 | 108 | ||
| 109 | IAppletResource ::~IAppletResource() { | 109 | IAppletResource::~IAppletResource() { |
| 110 | system.CoreTiming().UnscheduleEvent(pad_update_event, 0); | 110 | system.CoreTiming().UnscheduleEvent(pad_update_event, 0); |
| 111 | system.CoreTiming().UnscheduleEvent(motion_update_event, 0); | 111 | system.CoreTiming().UnscheduleEvent(motion_update_event, 0); |
| 112 | } | 112 | } |
diff --git a/src/core/hle/service/lbl/lbl.cpp b/src/core/hle/service/lbl/lbl.cpp index 24890c830..37ff37277 100644 --- a/src/core/hle/service/lbl/lbl.cpp +++ b/src/core/hle/service/lbl/lbl.cpp | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <cmath> | ||
| 5 | #include <memory> | 6 | #include <memory> |
| 6 | 7 | ||
| 7 | #include "common/logging/log.h" | 8 | #include "common/logging/log.h" |
diff --git a/src/core/hle/service/nfp/nfp.cpp b/src/core/hle/service/nfp/nfp.cpp index 5f1ca029d..6791f20a5 100644 --- a/src/core/hle/service/nfp/nfp.cpp +++ b/src/core/hle/service/nfp/nfp.cpp | |||
| @@ -8,9 +8,8 @@ | |||
| 8 | #include "common/logging/log.h" | 8 | #include "common/logging/log.h" |
| 9 | #include "core/core.h" | 9 | #include "core/core.h" |
| 10 | #include "core/hle/ipc_helpers.h" | 10 | #include "core/hle/ipc_helpers.h" |
| 11 | #include "core/hle/kernel/k_readable_event.h" | 11 | #include "core/hle/kernel/k_event.h" |
| 12 | #include "core/hle/kernel/k_thread.h" | 12 | #include "core/hle/kernel/k_thread.h" |
| 13 | #include "core/hle/kernel/k_writable_event.h" | ||
| 14 | #include "core/hle/kernel/kernel.h" | 13 | #include "core/hle/kernel/kernel.h" |
| 15 | #include "core/hle/lock.h" | 14 | #include "core/hle/lock.h" |
| 16 | #include "core/hle/service/nfp/nfp.h" | 15 | #include "core/hle/service/nfp/nfp.h" |
| @@ -23,18 +22,21 @@ constexpr ResultCode ERR_NO_APPLICATION_AREA(ErrorModule::NFP, 152); | |||
| 23 | 22 | ||
| 24 | Module::Interface::Interface(std::shared_ptr<Module> module_, Core::System& system_, | 23 | Module::Interface::Interface(std::shared_ptr<Module> module_, Core::System& system_, |
| 25 | const char* name) | 24 | const char* name) |
| 26 | : ServiceFramework{system_, name}, nfc_tag_load{system.Kernel()}, module{std::move(module_)} { | 25 | : ServiceFramework{system_, name}, module{std::move(module_)}, service_context{system_, |
| 27 | Kernel::KAutoObject::Create(std::addressof(nfc_tag_load)); | 26 | "NFP::IUser"} { |
| 28 | nfc_tag_load.Initialize("IUser:NFCTagDetected"); | 27 | nfc_tag_load = service_context.CreateEvent("NFP::IUser:NFCTagDetected"); |
| 29 | } | 28 | } |
| 30 | 29 | ||
| 31 | Module::Interface::~Interface() = default; | 30 | Module::Interface::~Interface() { |
| 31 | service_context.CloseEvent(nfc_tag_load); | ||
| 32 | } | ||
| 32 | 33 | ||
| 33 | class IUser final : public ServiceFramework<IUser> { | 34 | class IUser final : public ServiceFramework<IUser> { |
| 34 | public: | 35 | public: |
| 35 | explicit IUser(Module::Interface& nfp_interface_, Core::System& system_) | 36 | explicit IUser(Module::Interface& nfp_interface_, Core::System& system_, |
| 37 | KernelHelpers::ServiceContext& service_context_) | ||
| 36 | : ServiceFramework{system_, "NFP::IUser"}, nfp_interface{nfp_interface_}, | 38 | : ServiceFramework{system_, "NFP::IUser"}, nfp_interface{nfp_interface_}, |
| 37 | deactivate_event{system.Kernel()}, availability_change_event{system.Kernel()} { | 39 | service_context{service_context_} { |
| 38 | static const FunctionInfo functions[] = { | 40 | static const FunctionInfo functions[] = { |
| 39 | {0, &IUser::Initialize, "Initialize"}, | 41 | {0, &IUser::Initialize, "Initialize"}, |
| 40 | {1, &IUser::Finalize, "Finalize"}, | 42 | {1, &IUser::Finalize, "Finalize"}, |
| @@ -64,11 +66,14 @@ public: | |||
| 64 | }; | 66 | }; |
| 65 | RegisterHandlers(functions); | 67 | RegisterHandlers(functions); |
| 66 | 68 | ||
| 67 | Kernel::KAutoObject::Create(std::addressof(deactivate_event)); | 69 | deactivate_event = service_context.CreateEvent("NFP::IUser:DeactivateEvent"); |
| 68 | Kernel::KAutoObject::Create(std::addressof(availability_change_event)); | 70 | availability_change_event = |
| 71 | service_context.CreateEvent("NFP::IUser:AvailabilityChangeEvent"); | ||
| 72 | } | ||
| 69 | 73 | ||
| 70 | deactivate_event.Initialize("IUser:DeactivateEvent"); | 74 | ~IUser() override { |
| 71 | availability_change_event.Initialize("IUser:AvailabilityChangeEvent"); | 75 | service_context.CloseEvent(deactivate_event); |
| 76 | service_context.CloseEvent(availability_change_event); | ||
| 72 | } | 77 | } |
| 73 | 78 | ||
| 74 | private: | 79 | private: |
| @@ -166,7 +171,7 @@ private: | |||
| 166 | 171 | ||
| 167 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 172 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 168 | rb.Push(ResultSuccess); | 173 | rb.Push(ResultSuccess); |
| 169 | rb.PushCopyObjects(deactivate_event.GetReadableEvent()); | 174 | rb.PushCopyObjects(deactivate_event->GetReadableEvent()); |
| 170 | } | 175 | } |
| 171 | 176 | ||
| 172 | void StopDetection(Kernel::HLERequestContext& ctx) { | 177 | void StopDetection(Kernel::HLERequestContext& ctx) { |
| @@ -175,7 +180,7 @@ private: | |||
| 175 | switch (device_state) { | 180 | switch (device_state) { |
| 176 | case DeviceState::TagFound: | 181 | case DeviceState::TagFound: |
| 177 | case DeviceState::TagNearby: | 182 | case DeviceState::TagNearby: |
| 178 | deactivate_event.GetWritableEvent().Signal(); | 183 | deactivate_event->GetWritableEvent().Signal(); |
| 179 | device_state = DeviceState::Initialized; | 184 | device_state = DeviceState::Initialized; |
| 180 | break; | 185 | break; |
| 181 | case DeviceState::SearchingForTag: | 186 | case DeviceState::SearchingForTag: |
| @@ -264,7 +269,7 @@ private: | |||
| 264 | 269 | ||
| 265 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 270 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 266 | rb.Push(ResultSuccess); | 271 | rb.Push(ResultSuccess); |
| 267 | rb.PushCopyObjects(availability_change_event.GetReadableEvent()); | 272 | rb.PushCopyObjects(availability_change_event->GetReadableEvent()); |
| 268 | } | 273 | } |
| 269 | 274 | ||
| 270 | void GetRegisterInfo(Kernel::HLERequestContext& ctx) { | 275 | void GetRegisterInfo(Kernel::HLERequestContext& ctx) { |
| @@ -313,14 +318,16 @@ private: | |||
| 313 | rb.PushRaw<u32>(0); // This is from the GetCommonInfo stub | 318 | rb.PushRaw<u32>(0); // This is from the GetCommonInfo stub |
| 314 | } | 319 | } |
| 315 | 320 | ||
| 321 | Module::Interface& nfp_interface; | ||
| 322 | KernelHelpers::ServiceContext& service_context; | ||
| 323 | |||
| 316 | bool has_attached_handle{}; | 324 | bool has_attached_handle{}; |
| 317 | const u64 device_handle{0}; // Npad device 1 | 325 | const u64 device_handle{0}; // Npad device 1 |
| 318 | const u32 npad_id{0}; // Player 1 controller | 326 | const u32 npad_id{0}; // Player 1 controller |
| 319 | State state{State::NonInitialized}; | 327 | State state{State::NonInitialized}; |
| 320 | DeviceState device_state{DeviceState::Initialized}; | 328 | DeviceState device_state{DeviceState::Initialized}; |
| 321 | Module::Interface& nfp_interface; | 329 | Kernel::KEvent* deactivate_event; |
| 322 | Kernel::KEvent deactivate_event; | 330 | Kernel::KEvent* availability_change_event; |
| 323 | Kernel::KEvent availability_change_event; | ||
| 324 | }; | 331 | }; |
| 325 | 332 | ||
| 326 | void Module::Interface::CreateUserInterface(Kernel::HLERequestContext& ctx) { | 333 | void Module::Interface::CreateUserInterface(Kernel::HLERequestContext& ctx) { |
| @@ -328,7 +335,7 @@ void Module::Interface::CreateUserInterface(Kernel::HLERequestContext& ctx) { | |||
| 328 | 335 | ||
| 329 | IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | 336 | IPC::ResponseBuilder rb{ctx, 2, 0, 1}; |
| 330 | rb.Push(ResultSuccess); | 337 | rb.Push(ResultSuccess); |
| 331 | rb.PushIpcInterface<IUser>(*this, system); | 338 | rb.PushIpcInterface<IUser>(*this, system, service_context); |
| 332 | } | 339 | } |
| 333 | 340 | ||
| 334 | bool Module::Interface::LoadAmiibo(const std::vector<u8>& buffer) { | 341 | bool Module::Interface::LoadAmiibo(const std::vector<u8>& buffer) { |
| @@ -338,12 +345,12 @@ bool Module::Interface::LoadAmiibo(const std::vector<u8>& buffer) { | |||
| 338 | } | 345 | } |
| 339 | 346 | ||
| 340 | std::memcpy(&amiibo, buffer.data(), sizeof(amiibo)); | 347 | std::memcpy(&amiibo, buffer.data(), sizeof(amiibo)); |
| 341 | nfc_tag_load.GetWritableEvent().Signal(); | 348 | nfc_tag_load->GetWritableEvent().Signal(); |
| 342 | return true; | 349 | return true; |
| 343 | } | 350 | } |
| 344 | 351 | ||
| 345 | Kernel::KReadableEvent& Module::Interface::GetNFCEvent() { | 352 | Kernel::KReadableEvent& Module::Interface::GetNFCEvent() { |
| 346 | return nfc_tag_load.GetReadableEvent(); | 353 | return nfc_tag_load->GetReadableEvent(); |
| 347 | } | 354 | } |
| 348 | 355 | ||
| 349 | const Module::Interface::AmiiboFile& Module::Interface::GetAmiiboBuffer() const { | 356 | const Module::Interface::AmiiboFile& Module::Interface::GetAmiiboBuffer() const { |
diff --git a/src/core/hle/service/nfp/nfp.h b/src/core/hle/service/nfp/nfp.h index 5e4e49bc6..95c127efb 100644 --- a/src/core/hle/service/nfp/nfp.h +++ b/src/core/hle/service/nfp/nfp.h | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | #include <array> | 7 | #include <array> |
| 8 | #include <vector> | 8 | #include <vector> |
| 9 | 9 | ||
| 10 | #include "core/hle/kernel/k_event.h" | 10 | #include "core/hle/service/kernel_helpers.h" |
| 11 | #include "core/hle/service/service.h" | 11 | #include "core/hle/service/service.h" |
| 12 | 12 | ||
| 13 | namespace Kernel { | 13 | namespace Kernel { |
| @@ -42,12 +42,13 @@ public: | |||
| 42 | Kernel::KReadableEvent& GetNFCEvent(); | 42 | Kernel::KReadableEvent& GetNFCEvent(); |
| 43 | const AmiiboFile& GetAmiiboBuffer() const; | 43 | const AmiiboFile& GetAmiiboBuffer() const; |
| 44 | 44 | ||
| 45 | private: | ||
| 46 | Kernel::KEvent nfc_tag_load; | ||
| 47 | AmiiboFile amiibo{}; | ||
| 48 | |||
| 49 | protected: | 45 | protected: |
| 50 | std::shared_ptr<Module> module; | 46 | std::shared_ptr<Module> module; |
| 47 | |||
| 48 | private: | ||
| 49 | KernelHelpers::ServiceContext service_context; | ||
| 50 | Kernel::KEvent* nfc_tag_load; | ||
| 51 | AmiiboFile amiibo{}; | ||
| 51 | }; | 52 | }; |
| 52 | }; | 53 | }; |
| 53 | 54 | ||
diff --git a/src/core/hle/service/nifm/nifm.cpp b/src/core/hle/service/nifm/nifm.cpp index 9decb9290..f13dc8b0d 100644 --- a/src/core/hle/service/nifm/nifm.cpp +++ b/src/core/hle/service/nifm/nifm.cpp | |||
| @@ -6,10 +6,21 @@ | |||
| 6 | #include "core/core.h" | 6 | #include "core/core.h" |
| 7 | #include "core/hle/ipc_helpers.h" | 7 | #include "core/hle/ipc_helpers.h" |
| 8 | #include "core/hle/kernel/k_event.h" | 8 | #include "core/hle/kernel/k_event.h" |
| 9 | #include "core/hle/kernel/k_readable_event.h" | ||
| 10 | #include "core/hle/kernel/kernel.h" | 9 | #include "core/hle/kernel/kernel.h" |
| 10 | #include "core/hle/service/kernel_helpers.h" | ||
| 11 | #include "core/hle/service/nifm/nifm.h" | 11 | #include "core/hle/service/nifm/nifm.h" |
| 12 | #include "core/hle/service/service.h" | 12 | #include "core/hle/service/service.h" |
| 13 | |||
| 14 | namespace { | ||
| 15 | |||
| 16 | // Avoids name conflict with Windows' CreateEvent macro. | ||
| 17 | [[nodiscard]] Kernel::KEvent* CreateKEvent(Service::KernelHelpers::ServiceContext& service_context, | ||
| 18 | std::string&& name) { | ||
| 19 | return service_context.CreateEvent(std::move(name)); | ||
| 20 | } | ||
| 21 | |||
| 22 | } // Anonymous namespace | ||
| 23 | |||
| 13 | #include "core/network/network.h" | 24 | #include "core/network/network.h" |
| 14 | #include "core/network/network_interface.h" | 25 | #include "core/network/network_interface.h" |
| 15 | 26 | ||
| @@ -129,7 +140,7 @@ public: | |||
| 129 | class IRequest final : public ServiceFramework<IRequest> { | 140 | class IRequest final : public ServiceFramework<IRequest> { |
| 130 | public: | 141 | public: |
| 131 | explicit IRequest(Core::System& system_) | 142 | explicit IRequest(Core::System& system_) |
| 132 | : ServiceFramework{system_, "IRequest"}, event1{system.Kernel()}, event2{system.Kernel()} { | 143 | : ServiceFramework{system_, "IRequest"}, service_context{system_, "IRequest"} { |
| 133 | static const FunctionInfo functions[] = { | 144 | static const FunctionInfo functions[] = { |
| 134 | {0, &IRequest::GetRequestState, "GetRequestState"}, | 145 | {0, &IRequest::GetRequestState, "GetRequestState"}, |
| 135 | {1, &IRequest::GetResult, "GetResult"}, | 146 | {1, &IRequest::GetResult, "GetResult"}, |
| @@ -159,11 +170,13 @@ public: | |||
| 159 | }; | 170 | }; |
| 160 | RegisterHandlers(functions); | 171 | RegisterHandlers(functions); |
| 161 | 172 | ||
| 162 | Kernel::KAutoObject::Create(std::addressof(event1)); | 173 | event1 = CreateKEvent(service_context, "IRequest:Event1"); |
| 163 | Kernel::KAutoObject::Create(std::addressof(event2)); | 174 | event2 = CreateKEvent(service_context, "IRequest:Event2"); |
| 175 | } | ||
| 164 | 176 | ||
| 165 | event1.Initialize("IRequest:Event1"); | 177 | ~IRequest() override { |
| 166 | event2.Initialize("IRequest:Event2"); | 178 | service_context.CloseEvent(event1); |
| 179 | service_context.CloseEvent(event2); | ||
| 167 | } | 180 | } |
| 168 | 181 | ||
| 169 | private: | 182 | private: |
| @@ -199,7 +212,7 @@ private: | |||
| 199 | 212 | ||
| 200 | IPC::ResponseBuilder rb{ctx, 2, 2}; | 213 | IPC::ResponseBuilder rb{ctx, 2, 2}; |
| 201 | rb.Push(ResultSuccess); | 214 | rb.Push(ResultSuccess); |
| 202 | rb.PushCopyObjects(event1.GetReadableEvent(), event2.GetReadableEvent()); | 215 | rb.PushCopyObjects(event1->GetReadableEvent(), event2->GetReadableEvent()); |
| 203 | } | 216 | } |
| 204 | 217 | ||
| 205 | void Cancel(Kernel::HLERequestContext& ctx) { | 218 | void Cancel(Kernel::HLERequestContext& ctx) { |
| @@ -230,7 +243,10 @@ private: | |||
| 230 | rb.Push<u32>(0); | 243 | rb.Push<u32>(0); |
| 231 | } | 244 | } |
| 232 | 245 | ||
| 233 | Kernel::KEvent event1, event2; | 246 | KernelHelpers::ServiceContext service_context; |
| 247 | |||
| 248 | Kernel::KEvent* event1; | ||
| 249 | Kernel::KEvent* event2; | ||
| 234 | }; | 250 | }; |
| 235 | 251 | ||
| 236 | class INetworkProfile final : public ServiceFramework<INetworkProfile> { | 252 | class INetworkProfile final : public ServiceFramework<INetworkProfile> { |
diff --git a/src/core/hle/service/nim/nim.cpp b/src/core/hle/service/nim/nim.cpp index 7447cc38f..30fb060b8 100644 --- a/src/core/hle/service/nim/nim.cpp +++ b/src/core/hle/service/nim/nim.cpp | |||
| @@ -7,9 +7,8 @@ | |||
| 7 | #include "core/core.h" | 7 | #include "core/core.h" |
| 8 | #include "core/hle/ipc_helpers.h" | 8 | #include "core/hle/ipc_helpers.h" |
| 9 | #include "core/hle/kernel/k_event.h" | 9 | #include "core/hle/kernel/k_event.h" |
| 10 | #include "core/hle/kernel/k_readable_event.h" | ||
| 11 | #include "core/hle/kernel/k_writable_event.h" | ||
| 12 | #include "core/hle/kernel/kernel.h" | 10 | #include "core/hle/kernel/kernel.h" |
| 11 | #include "core/hle/service/kernel_helpers.h" | ||
| 13 | #include "core/hle/service/nim/nim.h" | 12 | #include "core/hle/service/nim/nim.h" |
| 14 | #include "core/hle/service/service.h" | 13 | #include "core/hle/service/service.h" |
| 15 | #include "core/hle/service/sm/sm.h" | 14 | #include "core/hle/service/sm/sm.h" |
| @@ -301,7 +300,7 @@ class IEnsureNetworkClockAvailabilityService final | |||
| 301 | public: | 300 | public: |
| 302 | explicit IEnsureNetworkClockAvailabilityService(Core::System& system_) | 301 | explicit IEnsureNetworkClockAvailabilityService(Core::System& system_) |
| 303 | : ServiceFramework{system_, "IEnsureNetworkClockAvailabilityService"}, | 302 | : ServiceFramework{system_, "IEnsureNetworkClockAvailabilityService"}, |
| 304 | finished_event{system.Kernel()} { | 303 | service_context{system_, "IEnsureNetworkClockAvailabilityService"} { |
| 305 | static const FunctionInfo functions[] = { | 304 | static const FunctionInfo functions[] = { |
| 306 | {0, &IEnsureNetworkClockAvailabilityService::StartTask, "StartTask"}, | 305 | {0, &IEnsureNetworkClockAvailabilityService::StartTask, "StartTask"}, |
| 307 | {1, &IEnsureNetworkClockAvailabilityService::GetFinishNotificationEvent, | 306 | {1, &IEnsureNetworkClockAvailabilityService::GetFinishNotificationEvent, |
| @@ -313,17 +312,19 @@ public: | |||
| 313 | }; | 312 | }; |
| 314 | RegisterHandlers(functions); | 313 | RegisterHandlers(functions); |
| 315 | 314 | ||
| 316 | Kernel::KAutoObject::Create(std::addressof(finished_event)); | 315 | finished_event = |
| 317 | finished_event.Initialize("IEnsureNetworkClockAvailabilityService:FinishEvent"); | 316 | service_context.CreateEvent("IEnsureNetworkClockAvailabilityService:FinishEvent"); |
| 318 | } | 317 | } |
| 319 | 318 | ||
| 320 | private: | 319 | ~IEnsureNetworkClockAvailabilityService() override { |
| 321 | Kernel::KEvent finished_event; | 320 | service_context.CloseEvent(finished_event); |
| 321 | } | ||
| 322 | 322 | ||
| 323 | private: | ||
| 323 | void StartTask(Kernel::HLERequestContext& ctx) { | 324 | void StartTask(Kernel::HLERequestContext& ctx) { |
| 324 | // No need to connect to the internet, just finish the task straight away. | 325 | // No need to connect to the internet, just finish the task straight away. |
| 325 | LOG_DEBUG(Service_NIM, "called"); | 326 | LOG_DEBUG(Service_NIM, "called"); |
| 326 | finished_event.GetWritableEvent().Signal(); | 327 | finished_event->GetWritableEvent().Signal(); |
| 327 | IPC::ResponseBuilder rb{ctx, 2}; | 328 | IPC::ResponseBuilder rb{ctx, 2}; |
| 328 | rb.Push(ResultSuccess); | 329 | rb.Push(ResultSuccess); |
| 329 | } | 330 | } |
| @@ -333,7 +334,7 @@ private: | |||
| 333 | 334 | ||
| 334 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 335 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 335 | rb.Push(ResultSuccess); | 336 | rb.Push(ResultSuccess); |
| 336 | rb.PushCopyObjects(finished_event.GetReadableEvent()); | 337 | rb.PushCopyObjects(finished_event->GetReadableEvent()); |
| 337 | } | 338 | } |
| 338 | 339 | ||
| 339 | void GetResult(Kernel::HLERequestContext& ctx) { | 340 | void GetResult(Kernel::HLERequestContext& ctx) { |
| @@ -345,7 +346,7 @@ private: | |||
| 345 | 346 | ||
| 346 | void Cancel(Kernel::HLERequestContext& ctx) { | 347 | void Cancel(Kernel::HLERequestContext& ctx) { |
| 347 | LOG_DEBUG(Service_NIM, "called"); | 348 | LOG_DEBUG(Service_NIM, "called"); |
| 348 | finished_event.GetWritableEvent().Clear(); | 349 | finished_event->GetWritableEvent().Clear(); |
| 349 | IPC::ResponseBuilder rb{ctx, 2}; | 350 | IPC::ResponseBuilder rb{ctx, 2}; |
| 350 | rb.Push(ResultSuccess); | 351 | rb.Push(ResultSuccess); |
| 351 | } | 352 | } |
| @@ -368,6 +369,10 @@ private: | |||
| 368 | rb.Push(ResultSuccess); | 369 | rb.Push(ResultSuccess); |
| 369 | rb.PushRaw<s64>(server_time); | 370 | rb.PushRaw<s64>(server_time); |
| 370 | } | 371 | } |
| 372 | |||
| 373 | KernelHelpers::ServiceContext service_context; | ||
| 374 | |||
| 375 | Kernel::KEvent* finished_event; | ||
| 371 | }; | 376 | }; |
| 372 | 377 | ||
| 373 | class NTC final : public ServiceFramework<NTC> { | 378 | class NTC final : public ServiceFramework<NTC> { |
diff --git a/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp b/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp index a33e47d0b..789000294 100644 --- a/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp +++ b/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp | |||
| @@ -16,7 +16,7 @@ namespace Service::Nvidia::Devices { | |||
| 16 | 16 | ||
| 17 | nvdisp_disp0::nvdisp_disp0(Core::System& system_, std::shared_ptr<nvmap> nvmap_dev_) | 17 | nvdisp_disp0::nvdisp_disp0(Core::System& system_, std::shared_ptr<nvmap> nvmap_dev_) |
| 18 | : nvdevice{system_}, nvmap_dev{std::move(nvmap_dev_)} {} | 18 | : nvdevice{system_}, nvmap_dev{std::move(nvmap_dev_)} {} |
| 19 | nvdisp_disp0 ::~nvdisp_disp0() = default; | 19 | nvdisp_disp0::~nvdisp_disp0() = default; |
| 20 | 20 | ||
| 21 | NvResult nvdisp_disp0::Ioctl1(DeviceFD fd, Ioctl command, const std::vector<u8>& input, | 21 | NvResult nvdisp_disp0::Ioctl1(DeviceFD fd, Ioctl command, const std::vector<u8>& input, |
| 22 | std::vector<u8>& output) { | 22 | std::vector<u8>& output) { |
diff --git a/src/core/hle/service/ptm/psm.cpp b/src/core/hle/service/ptm/psm.cpp index d9897c5c5..22ff5269c 100644 --- a/src/core/hle/service/ptm/psm.cpp +++ b/src/core/hle/service/ptm/psm.cpp | |||
| @@ -8,9 +8,8 @@ | |||
| 8 | #include "core/core.h" | 8 | #include "core/core.h" |
| 9 | #include "core/hle/ipc_helpers.h" | 9 | #include "core/hle/ipc_helpers.h" |
| 10 | #include "core/hle/kernel/k_event.h" | 10 | #include "core/hle/kernel/k_event.h" |
| 11 | #include "core/hle/kernel/k_readable_event.h" | ||
| 12 | #include "core/hle/kernel/k_writable_event.h" | ||
| 13 | #include "core/hle/kernel/kernel.h" | 11 | #include "core/hle/kernel/kernel.h" |
| 12 | #include "core/hle/service/kernel_helpers.h" | ||
| 14 | #include "core/hle/service/ptm/psm.h" | 13 | #include "core/hle/service/ptm/psm.h" |
| 15 | #include "core/hle/service/service.h" | 14 | #include "core/hle/service/service.h" |
| 16 | #include "core/hle/service/sm/sm.h" | 15 | #include "core/hle/service/sm/sm.h" |
| @@ -20,7 +19,7 @@ namespace Service::PSM { | |||
| 20 | class IPsmSession final : public ServiceFramework<IPsmSession> { | 19 | class IPsmSession final : public ServiceFramework<IPsmSession> { |
| 21 | public: | 20 | public: |
| 22 | explicit IPsmSession(Core::System& system_) | 21 | explicit IPsmSession(Core::System& system_) |
| 23 | : ServiceFramework{system_, "IPsmSession"}, state_change_event{system.Kernel()} { | 22 | : ServiceFramework{system_, "IPsmSession"}, service_context{system_, "IPsmSession"} { |
| 24 | // clang-format off | 23 | // clang-format off |
| 25 | static const FunctionInfo functions[] = { | 24 | static const FunctionInfo functions[] = { |
| 26 | {0, &IPsmSession::BindStateChangeEvent, "BindStateChangeEvent"}, | 25 | {0, &IPsmSession::BindStateChangeEvent, "BindStateChangeEvent"}, |
| @@ -33,27 +32,28 @@ public: | |||
| 33 | 32 | ||
| 34 | RegisterHandlers(functions); | 33 | RegisterHandlers(functions); |
| 35 | 34 | ||
| 36 | Kernel::KAutoObject::Create(std::addressof(state_change_event)); | 35 | state_change_event = service_context.CreateEvent("IPsmSession::state_change_event"); |
| 37 | state_change_event.Initialize("IPsmSession::state_change_event"); | ||
| 38 | } | 36 | } |
| 39 | 37 | ||
| 40 | ~IPsmSession() override = default; | 38 | ~IPsmSession() override { |
| 39 | service_context.CloseEvent(state_change_event); | ||
| 40 | } | ||
| 41 | 41 | ||
| 42 | void SignalChargerTypeChanged() { | 42 | void SignalChargerTypeChanged() { |
| 43 | if (should_signal && should_signal_charger_type) { | 43 | if (should_signal && should_signal_charger_type) { |
| 44 | state_change_event.GetWritableEvent().Signal(); | 44 | state_change_event->GetWritableEvent().Signal(); |
| 45 | } | 45 | } |
| 46 | } | 46 | } |
| 47 | 47 | ||
| 48 | void SignalPowerSupplyChanged() { | 48 | void SignalPowerSupplyChanged() { |
| 49 | if (should_signal && should_signal_power_supply) { | 49 | if (should_signal && should_signal_power_supply) { |
| 50 | state_change_event.GetWritableEvent().Signal(); | 50 | state_change_event->GetWritableEvent().Signal(); |
| 51 | } | 51 | } |
| 52 | } | 52 | } |
| 53 | 53 | ||
| 54 | void SignalBatteryVoltageStateChanged() { | 54 | void SignalBatteryVoltageStateChanged() { |
| 55 | if (should_signal && should_signal_battery_voltage) { | 55 | if (should_signal && should_signal_battery_voltage) { |
| 56 | state_change_event.GetWritableEvent().Signal(); | 56 | state_change_event->GetWritableEvent().Signal(); |
| 57 | } | 57 | } |
| 58 | } | 58 | } |
| 59 | 59 | ||
| @@ -65,7 +65,7 @@ private: | |||
| 65 | 65 | ||
| 66 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 66 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 67 | rb.Push(ResultSuccess); | 67 | rb.Push(ResultSuccess); |
| 68 | rb.PushCopyObjects(state_change_event.GetReadableEvent()); | 68 | rb.PushCopyObjects(state_change_event->GetReadableEvent()); |
| 69 | } | 69 | } |
| 70 | 70 | ||
| 71 | void UnbindStateChangeEvent(Kernel::HLERequestContext& ctx) { | 71 | void UnbindStateChangeEvent(Kernel::HLERequestContext& ctx) { |
| @@ -110,11 +110,13 @@ private: | |||
| 110 | rb.Push(ResultSuccess); | 110 | rb.Push(ResultSuccess); |
| 111 | } | 111 | } |
| 112 | 112 | ||
| 113 | KernelHelpers::ServiceContext service_context; | ||
| 114 | |||
| 113 | bool should_signal_charger_type{}; | 115 | bool should_signal_charger_type{}; |
| 114 | bool should_signal_power_supply{}; | 116 | bool should_signal_power_supply{}; |
| 115 | bool should_signal_battery_voltage{}; | 117 | bool should_signal_battery_voltage{}; |
| 116 | bool should_signal{}; | 118 | bool should_signal{}; |
| 117 | Kernel::KEvent state_change_event; | 119 | Kernel::KEvent* state_change_event; |
| 118 | }; | 120 | }; |
| 119 | 121 | ||
| 120 | class PSM final : public ServiceFramework<PSM> { | 122 | class PSM final : public ServiceFramework<PSM> { |
diff --git a/src/core/hle/service/time/standard_user_system_clock_core.cpp b/src/core/hle/service/time/standard_user_system_clock_core.cpp index ef79ab917..e94220a44 100644 --- a/src/core/hle/service/time/standard_user_system_clock_core.cpp +++ b/src/core/hle/service/time/standard_user_system_clock_core.cpp | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | #include "common/assert.h" | 5 | #include "common/assert.h" |
| 6 | #include "core/core.h" | 6 | #include "core/core.h" |
| 7 | #include "core/hle/kernel/k_event.h" | ||
| 7 | #include "core/hle/service/time/standard_local_system_clock_core.h" | 8 | #include "core/hle/service/time/standard_local_system_clock_core.h" |
| 8 | #include "core/hle/service/time/standard_network_system_clock_core.h" | 9 | #include "core/hle/service/time/standard_network_system_clock_core.h" |
| 9 | #include "core/hle/service/time/standard_user_system_clock_core.h" | 10 | #include "core/hle/service/time/standard_user_system_clock_core.h" |
| @@ -16,10 +17,15 @@ StandardUserSystemClockCore::StandardUserSystemClockCore( | |||
| 16 | : SystemClockCore(local_system_clock_core_.GetSteadyClockCore()), | 17 | : SystemClockCore(local_system_clock_core_.GetSteadyClockCore()), |
| 17 | local_system_clock_core{local_system_clock_core_}, | 18 | local_system_clock_core{local_system_clock_core_}, |
| 18 | network_system_clock_core{network_system_clock_core_}, | 19 | network_system_clock_core{network_system_clock_core_}, |
| 19 | auto_correction_time{SteadyClockTimePoint::GetRandom()}, auto_correction_event{ | 20 | auto_correction_time{SteadyClockTimePoint::GetRandom()}, service_context{ |
| 20 | system_.Kernel()} { | 21 | system_, |
| 21 | Kernel::KAutoObject::Create(std::addressof(auto_correction_event)); | 22 | "StandardUserSystemClockCore"} { |
| 22 | auto_correction_event.Initialize("StandardUserSystemClockCore:AutoCorrectionEvent"); | 23 | auto_correction_event = |
| 24 | service_context.CreateEvent("StandardUserSystemClockCore:AutoCorrectionEvent"); | ||
| 25 | } | ||
| 26 | |||
| 27 | StandardUserSystemClockCore::~StandardUserSystemClockCore() { | ||
| 28 | service_context.CloseEvent(auto_correction_event); | ||
| 23 | } | 29 | } |
| 24 | 30 | ||
| 25 | ResultCode StandardUserSystemClockCore::SetAutomaticCorrectionEnabled(Core::System& system, | 31 | ResultCode StandardUserSystemClockCore::SetAutomaticCorrectionEnabled(Core::System& system, |
diff --git a/src/core/hle/service/time/standard_user_system_clock_core.h b/src/core/hle/service/time/standard_user_system_clock_core.h index bf9ec5e42..b7cb2b045 100644 --- a/src/core/hle/service/time/standard_user_system_clock_core.h +++ b/src/core/hle/service/time/standard_user_system_clock_core.h | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include "core/hle/kernel/k_event.h" | 7 | #include "core/hle/service/kernel_helpers.h" |
| 8 | #include "core/hle/service/time/clock_types.h" | 8 | #include "core/hle/service/time/clock_types.h" |
| 9 | #include "core/hle/service/time/system_clock_core.h" | 9 | #include "core/hle/service/time/system_clock_core.h" |
| 10 | 10 | ||
| @@ -27,6 +27,8 @@ public: | |||
| 27 | StandardNetworkSystemClockCore& network_system_clock_core_, | 27 | StandardNetworkSystemClockCore& network_system_clock_core_, |
| 28 | Core::System& system_); | 28 | Core::System& system_); |
| 29 | 29 | ||
| 30 | ~StandardUserSystemClockCore() override; | ||
| 31 | |||
| 30 | ResultCode SetAutomaticCorrectionEnabled(Core::System& system, bool value); | 32 | ResultCode SetAutomaticCorrectionEnabled(Core::System& system, bool value); |
| 31 | 33 | ||
| 32 | ResultCode GetClockContext(Core::System& system, SystemClockContext& ctx) const override; | 34 | ResultCode GetClockContext(Core::System& system, SystemClockContext& ctx) const override; |
| @@ -55,7 +57,8 @@ private: | |||
| 55 | StandardNetworkSystemClockCore& network_system_clock_core; | 57 | StandardNetworkSystemClockCore& network_system_clock_core; |
| 56 | bool auto_correction_enabled{}; | 58 | bool auto_correction_enabled{}; |
| 57 | SteadyClockTimePoint auto_correction_time; | 59 | SteadyClockTimePoint auto_correction_time; |
| 58 | Kernel::KEvent auto_correction_event; | 60 | KernelHelpers::ServiceContext service_context; |
| 61 | Kernel::KEvent* auto_correction_event; | ||
| 59 | }; | 62 | }; |
| 60 | 63 | ||
| 61 | } // namespace Service::Time::Clock | 64 | } // namespace Service::Time::Clock |
diff --git a/src/core/hle/service/time/system_clock_context_update_callback.h b/src/core/hle/service/time/system_clock_context_update_callback.h index 797954958..6936397a5 100644 --- a/src/core/hle/service/time/system_clock_context_update_callback.h +++ b/src/core/hle/service/time/system_clock_context_update_callback.h | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <memory> | ||
| 7 | #include <vector> | 8 | #include <vector> |
| 8 | 9 | ||
| 9 | #include "core/hle/service/time/clock_types.h" | 10 | #include "core/hle/service/time/clock_types.h" |
diff --git a/src/core/hle/service/time/system_clock_core.cpp b/src/core/hle/service/time/system_clock_core.cpp index bd334bbef..5c2354cdd 100644 --- a/src/core/hle/service/time/system_clock_core.cpp +++ b/src/core/hle/service/time/system_clock_core.cpp | |||
| @@ -13,7 +13,7 @@ SystemClockCore::SystemClockCore(SteadyClockCore& steady_clock_core_) | |||
| 13 | context.steady_time_point.clock_source_id = steady_clock_core.GetClockSourceId(); | 13 | context.steady_time_point.clock_source_id = steady_clock_core.GetClockSourceId(); |
| 14 | } | 14 | } |
| 15 | 15 | ||
| 16 | SystemClockCore ::~SystemClockCore() = default; | 16 | SystemClockCore::~SystemClockCore() = default; |
| 17 | 17 | ||
| 18 | ResultCode SystemClockCore::GetCurrentTime(Core::System& system, s64& posix_time) const { | 18 | ResultCode SystemClockCore::GetCurrentTime(Core::System& system, s64& posix_time) const { |
| 19 | posix_time = 0; | 19 | posix_time = 0; |
diff --git a/src/core/hle/service/time/system_clock_core.h b/src/core/hle/service/time/system_clock_core.h index 83d0e5d62..b9237ad28 100644 --- a/src/core/hle/service/time/system_clock_core.h +++ b/src/core/hle/service/time/system_clock_core.h | |||
| @@ -4,6 +4,8 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <memory> | ||
| 8 | |||
| 7 | #include "common/common_types.h" | 9 | #include "common/common_types.h" |
| 8 | #include "core/hle/service/time/clock_types.h" | 10 | #include "core/hle/service/time/clock_types.h" |
| 9 | 11 | ||
diff --git a/src/core/hle/service/time/time_zone_service.cpp b/src/core/hle/service/time/time_zone_service.cpp index 5c3108768..3871e7316 100644 --- a/src/core/hle/service/time/time_zone_service.cpp +++ b/src/core/hle/service/time/time_zone_service.cpp | |||
| @@ -10,8 +10,8 @@ | |||
| 10 | 10 | ||
| 11 | namespace Service::Time { | 11 | namespace Service::Time { |
| 12 | 12 | ||
| 13 | ITimeZoneService ::ITimeZoneService(Core::System& system_, | 13 | ITimeZoneService::ITimeZoneService(Core::System& system_, |
| 14 | TimeZone::TimeZoneContentManager& time_zone_manager_) | 14 | TimeZone::TimeZoneContentManager& time_zone_manager_) |
| 15 | : ServiceFramework{system_, "ITimeZoneService"}, time_zone_content_manager{time_zone_manager_} { | 15 | : ServiceFramework{system_, "ITimeZoneService"}, time_zone_content_manager{time_zone_manager_} { |
| 16 | static const FunctionInfo functions[] = { | 16 | static const FunctionInfo functions[] = { |
| 17 | {0, &ITimeZoneService::GetDeviceLocationName, "GetDeviceLocationName"}, | 17 | {0, &ITimeZoneService::GetDeviceLocationName, "GetDeviceLocationName"}, |
diff --git a/src/core/memory.cpp b/src/core/memory.cpp index 51c4dea26..88d6ec908 100644 --- a/src/core/memory.cpp +++ b/src/core/memory.cpp | |||
| @@ -587,7 +587,11 @@ void Memory::UnmapRegion(Common::PageTable& page_table, VAddr base, u64 size) { | |||
| 587 | bool Memory::IsValidVirtualAddress(const VAddr vaddr) const { | 587 | bool Memory::IsValidVirtualAddress(const VAddr vaddr) const { |
| 588 | const Kernel::KProcess& process = *system.CurrentProcess(); | 588 | const Kernel::KProcess& process = *system.CurrentProcess(); |
| 589 | const auto& page_table = process.PageTable().PageTableImpl(); | 589 | const auto& page_table = process.PageTable().PageTableImpl(); |
| 590 | const auto [pointer, type] = page_table.pointers[vaddr >> PAGE_BITS].PointerType(); | 590 | const size_t page = vaddr >> PAGE_BITS; |
| 591 | if (page >= page_table.pointers.size()) { | ||
| 592 | return false; | ||
| 593 | } | ||
| 594 | const auto [pointer, type] = page_table.pointers[page].PointerType(); | ||
| 591 | return pointer != nullptr || type == Common::PageType::RasterizerCachedMemory; | 595 | return pointer != nullptr || type == Common::PageType::RasterizerCachedMemory; |
| 592 | } | 596 | } |
| 593 | 597 | ||
diff --git a/src/core/network/network.cpp b/src/core/network/network.cpp index 72eea52f0..a3e0664b9 100644 --- a/src/core/network/network.cpp +++ b/src/core/network/network.cpp | |||
| @@ -366,8 +366,6 @@ std::optional<IPv4Address> GetHostIPv4Address() { | |||
| 366 | if (res != network_interfaces.end()) { | 366 | if (res != network_interfaces.end()) { |
| 367 | char ip_addr[16] = {}; | 367 | char ip_addr[16] = {}; |
| 368 | ASSERT(inet_ntop(AF_INET, &res->ip_address, ip_addr, sizeof(ip_addr)) != nullptr); | 368 | ASSERT(inet_ntop(AF_INET, &res->ip_address, ip_addr, sizeof(ip_addr)) != nullptr); |
| 369 | LOG_INFO(Network, "IP address: {}", ip_addr); | ||
| 370 | |||
| 371 | return TranslateIPv4(res->ip_address); | 369 | return TranslateIPv4(res->ip_address); |
| 372 | } else { | 370 | } else { |
| 373 | LOG_ERROR(Network, "Couldn't find selected interface \"{}\"", selected_network_interface); | 371 | LOG_ERROR(Network, "Couldn't find selected interface \"{}\"", selected_network_interface); |
diff --git a/src/input_common/sdl/sdl_impl.cpp b/src/input_common/sdl/sdl_impl.cpp index 03888b7cb..ab6211b29 100644 --- a/src/input_common/sdl/sdl_impl.cpp +++ b/src/input_common/sdl/sdl_impl.cpp | |||
| @@ -254,11 +254,25 @@ public: | |||
| 254 | } | 254 | } |
| 255 | 255 | ||
| 256 | bool IsJoyconLeft() const { | 256 | bool IsJoyconLeft() const { |
| 257 | return std::strstr(GetControllerName().c_str(), "Joy-Con Left") != nullptr; | 257 | const std::string controller_name = GetControllerName(); |
| 258 | if (std::strstr(controller_name.c_str(), "Joy-Con Left") != nullptr) { | ||
| 259 | return true; | ||
| 260 | } | ||
| 261 | if (std::strstr(controller_name.c_str(), "Joy-Con (L)") != nullptr) { | ||
| 262 | return true; | ||
| 263 | } | ||
| 264 | return false; | ||
| 258 | } | 265 | } |
| 259 | 266 | ||
| 260 | bool IsJoyconRight() const { | 267 | bool IsJoyconRight() const { |
| 261 | return std::strstr(GetControllerName().c_str(), "Joy-Con Right") != nullptr; | 268 | const std::string controller_name = GetControllerName(); |
| 269 | if (std::strstr(controller_name.c_str(), "Joy-Con Right") != nullptr) { | ||
| 270 | return true; | ||
| 271 | } | ||
| 272 | if (std::strstr(controller_name.c_str(), "Joy-Con (R)") != nullptr) { | ||
| 273 | return true; | ||
| 274 | } | ||
| 275 | return false; | ||
| 262 | } | 276 | } |
| 263 | 277 | ||
| 264 | std::string GetControllerName() const { | 278 | std::string GetControllerName() const { |
diff --git a/src/shader_recompiler/backend/glsl/emit_glsl_context_get_set.cpp b/src/shader_recompiler/backend/glsl/emit_glsl_context_get_set.cpp index 580063fa9..170db269a 100644 --- a/src/shader_recompiler/backend/glsl/emit_glsl_context_get_set.cpp +++ b/src/shader_recompiler/backend/glsl/emit_glsl_context_get_set.cpp | |||
| @@ -58,8 +58,8 @@ void GetCbuf(EmitContext& ctx, std::string_view ret, const IR::Value& binding, | |||
| 58 | const auto cbuf{fmt::format("{}_cbuf{}", ctx.stage_name, binding.U32())}; | 58 | const auto cbuf{fmt::format("{}_cbuf{}", ctx.stage_name, binding.U32())}; |
| 59 | const auto cbuf_cast{fmt::format("{}({}[{}]{{}})", cast, cbuf, index)}; | 59 | const auto cbuf_cast{fmt::format("{}({}[{}]{{}})", cast, cbuf, index)}; |
| 60 | const auto extraction{num_bits == 32 ? cbuf_cast | 60 | const auto extraction{num_bits == 32 ? cbuf_cast |
| 61 | : fmt ::format("bitfieldExtract({},int({}),{})", cbuf_cast, | 61 | : fmt::format("bitfieldExtract({},int({}),{})", cbuf_cast, |
| 62 | bit_offset, num_bits)}; | 62 | bit_offset, num_bits)}; |
| 63 | if (!component_indexing_bug) { | 63 | if (!component_indexing_bug) { |
| 64 | const auto result{fmt::format(fmt::runtime(extraction), swizzle)}; | 64 | const auto result{fmt::format(fmt::runtime(extraction), swizzle)}; |
| 65 | ctx.Add("{}={};", ret, result); | 65 | ctx.Add("{}={};", ret, result); |
diff --git a/src/video_core/buffer_cache/buffer_cache.h b/src/video_core/buffer_cache/buffer_cache.h index 7bfd57369..d350c9b36 100644 --- a/src/video_core/buffer_cache/buffer_cache.h +++ b/src/video_core/buffer_cache/buffer_cache.h | |||
| @@ -570,13 +570,12 @@ bool BufferCache<P>::DMACopy(GPUVAddr src_address, GPUVAddr dest_address, u64 am | |||
| 570 | ForEachWrittenRange(*cpu_src_address, amount, mirror); | 570 | ForEachWrittenRange(*cpu_src_address, amount, mirror); |
| 571 | // This subtraction in this order is important for overlapping copies. | 571 | // This subtraction in this order is important for overlapping copies. |
| 572 | common_ranges.subtract(subtract_interval); | 572 | common_ranges.subtract(subtract_interval); |
| 573 | bool atleast_1_download = tmp_intervals.size() != 0; | 573 | const bool has_new_downloads = tmp_intervals.size() != 0; |
| 574 | for (const IntervalType add_interval : tmp_intervals) { | 574 | for (const IntervalType& add_interval : tmp_intervals) { |
| 575 | common_ranges.add(add_interval); | 575 | common_ranges.add(add_interval); |
| 576 | } | 576 | } |
| 577 | |||
| 578 | runtime.CopyBuffer(dest_buffer, src_buffer, copies); | 577 | runtime.CopyBuffer(dest_buffer, src_buffer, copies); |
| 579 | if (atleast_1_download) { | 578 | if (has_new_downloads) { |
| 580 | dest_buffer.MarkRegionAsGpuModified(*cpu_dest_address, amount); | 579 | dest_buffer.MarkRegionAsGpuModified(*cpu_dest_address, amount); |
| 581 | } | 580 | } |
| 582 | std::vector<u8> tmp_buffer(amount); | 581 | std::vector<u8> tmp_buffer(amount); |
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h index 7f4ca6282..f22342dfb 100644 --- a/src/video_core/engines/maxwell_3d.h +++ b/src/video_core/engines/maxwell_3d.h | |||
| @@ -6,6 +6,7 @@ | |||
| 6 | 6 | ||
| 7 | #include <array> | 7 | #include <array> |
| 8 | #include <bitset> | 8 | #include <bitset> |
| 9 | #include <cmath> | ||
| 9 | #include <limits> | 10 | #include <limits> |
| 10 | #include <optional> | 11 | #include <optional> |
| 11 | #include <type_traits> | 12 | #include <type_traits> |
diff --git a/src/video_core/engines/maxwell_dma.cpp b/src/video_core/engines/maxwell_dma.cpp index c7ec1eac9..67388d980 100644 --- a/src/video_core/engines/maxwell_dma.cpp +++ b/src/video_core/engines/maxwell_dma.cpp | |||
| @@ -82,41 +82,41 @@ void MaxwellDMA::Launch() { | |||
| 82 | } | 82 | } |
| 83 | 83 | ||
| 84 | void MaxwellDMA::CopyPitchToPitch() { | 84 | void MaxwellDMA::CopyPitchToPitch() { |
| 85 | // When `multi_line_enable` bit is disabled the copy is performed as if we were copying a 1D | 85 | // When `multi_line_enable` bit is enabled we copy a 2D image of dimensions |
| 86 | // buffer of length `line_length_in`. | 86 | // (line_length_in, line_count). |
| 87 | // Otherwise we copy a 2D image of dimensions (line_length_in, line_count). | 87 | // Otherwise the copy is performed as if we were copying a 1D buffer of length line_length_in. |
| 88 | auto& accelerate = rasterizer->AccessAccelerateDMA(); | 88 | const bool remap_enabled = regs.launch_dma.remap_enable != 0; |
| 89 | if (!regs.launch_dma.multi_line_enable) { | 89 | if (regs.launch_dma.multi_line_enable) { |
| 90 | const bool is_buffer_clear = regs.launch_dma.remap_enable != 0 && | 90 | UNIMPLEMENTED_IF(remap_enabled); |
| 91 | regs.remap_const.dst_x == RemapConst::Swizzle::CONST_A; | 91 | |
| 92 | // TODO: allow multisized components. | 92 | // Perform a line-by-line copy. |
| 93 | if (is_buffer_clear) { | 93 | // We're going to take a subrect of size (line_length_in, line_count) from the source |
| 94 | ASSERT(regs.remap_const.component_size_minus_one == 3); | 94 | // rectangle. There is no need to manually flush/invalidate the regions because CopyBlock |
| 95 | accelerate.BufferClear(regs.offset_out, regs.line_length_in, regs.remap_consta_value); | 95 | // does that for us. |
| 96 | std::vector<u32> tmp_buffer(regs.line_length_in, regs.remap_consta_value); | 96 | for (u32 line = 0; line < regs.line_count; ++line) { |
| 97 | memory_manager.WriteBlockUnsafe(regs.offset_out, | 97 | const GPUVAddr source_line = regs.offset_in + static_cast<size_t>(line) * regs.pitch_in; |
| 98 | reinterpret_cast<u8*>(tmp_buffer.data()), | 98 | const GPUVAddr dest_line = regs.offset_out + static_cast<size_t>(line) * regs.pitch_out; |
| 99 | regs.line_length_in * sizeof(u32)); | 99 | memory_manager.CopyBlock(dest_line, source_line, regs.line_length_in); |
| 100 | return; | ||
| 101 | } | ||
| 102 | UNIMPLEMENTED_IF(regs.launch_dma.remap_enable != 0); | ||
| 103 | if (!accelerate.BufferCopy(regs.offset_in, regs.offset_out, regs.line_length_in)) { | ||
| 104 | std::vector<u8> tmp_buffer(regs.line_length_in); | ||
| 105 | memory_manager.ReadBlockUnsafe(regs.offset_in, tmp_buffer.data(), regs.line_length_in); | ||
| 106 | memory_manager.WriteBlock(regs.offset_out, tmp_buffer.data(), regs.line_length_in); | ||
| 107 | } | 100 | } |
| 108 | return; | 101 | return; |
| 109 | } | 102 | } |
| 110 | 103 | // TODO: allow multisized components. | |
| 111 | UNIMPLEMENTED_IF(regs.launch_dma.remap_enable != 0); | 104 | auto& accelerate = rasterizer->AccessAccelerateDMA(); |
| 112 | 105 | const bool is_const_a_dst = regs.remap_const.dst_x == RemapConst::Swizzle::CONST_A; | |
| 113 | // Perform a line-by-line copy. | 106 | const bool is_buffer_clear = remap_enabled && is_const_a_dst; |
| 114 | // We're going to take a subrect of size (line_length_in, line_count) from the source rectangle. | 107 | if (is_buffer_clear) { |
| 115 | // There is no need to manually flush/invalidate the regions because CopyBlock does that for us. | 108 | ASSERT(regs.remap_const.component_size_minus_one == 3); |
| 116 | for (u32 line = 0; line < regs.line_count; ++line) { | 109 | accelerate.BufferClear(regs.offset_out, regs.line_length_in, regs.remap_consta_value); |
| 117 | const GPUVAddr source_line = regs.offset_in + static_cast<size_t>(line) * regs.pitch_in; | 110 | std::vector<u32> tmp_buffer(regs.line_length_in, regs.remap_consta_value); |
| 118 | const GPUVAddr dest_line = regs.offset_out + static_cast<size_t>(line) * regs.pitch_out; | 111 | memory_manager.WriteBlockUnsafe(regs.offset_out, reinterpret_cast<u8*>(tmp_buffer.data()), |
| 119 | memory_manager.CopyBlock(dest_line, source_line, regs.line_length_in); | 112 | regs.line_length_in * sizeof(u32)); |
| 113 | return; | ||
| 114 | } | ||
| 115 | UNIMPLEMENTED_IF(remap_enabled); | ||
| 116 | if (!accelerate.BufferCopy(regs.offset_in, regs.offset_out, regs.line_length_in)) { | ||
| 117 | std::vector<u8> tmp_buffer(regs.line_length_in); | ||
| 118 | memory_manager.ReadBlockUnsafe(regs.offset_in, tmp_buffer.data(), regs.line_length_in); | ||
| 119 | memory_manager.WriteBlock(regs.offset_out, tmp_buffer.data(), regs.line_length_in); | ||
| 120 | } | 120 | } |
| 121 | } | 121 | } |
| 122 | 122 | ||
diff --git a/src/video_core/engines/maxwell_dma.h b/src/video_core/engines/maxwell_dma.h index 9e457ae16..a04514425 100644 --- a/src/video_core/engines/maxwell_dma.h +++ b/src/video_core/engines/maxwell_dma.h | |||
| @@ -175,7 +175,7 @@ public: | |||
| 175 | static_assert(sizeof(LaunchDMA) == 4); | 175 | static_assert(sizeof(LaunchDMA) == 4); |
| 176 | 176 | ||
| 177 | struct RemapConst { | 177 | struct RemapConst { |
| 178 | enum Swizzle : u32 { | 178 | enum class Swizzle : u32 { |
| 179 | SRC_X = 0, | 179 | SRC_X = 0, |
| 180 | SRC_Y = 1, | 180 | SRC_Y = 1, |
| 181 | SRC_Z = 2, | 181 | SRC_Z = 2, |
diff --git a/src/video_core/host_shaders/CMakeLists.txt b/src/video_core/host_shaders/CMakeLists.txt index c9cff7450..20d748c12 100644 --- a/src/video_core/host_shaders/CMakeLists.txt +++ b/src/video_core/host_shaders/CMakeLists.txt | |||
| @@ -6,7 +6,6 @@ set(SHADER_FILES | |||
| 6 | convert_float_to_depth.frag | 6 | convert_float_to_depth.frag |
| 7 | full_screen_triangle.vert | 7 | full_screen_triangle.vert |
| 8 | opengl_copy_bc4.comp | 8 | opengl_copy_bc4.comp |
| 9 | opengl_copy_bgra.comp | ||
| 10 | opengl_present.frag | 9 | opengl_present.frag |
| 11 | opengl_present.vert | 10 | opengl_present.vert |
| 12 | pitch_unswizzle.comp | 11 | pitch_unswizzle.comp |
diff --git a/src/video_core/host_shaders/opengl_copy_bgra.comp b/src/video_core/host_shaders/opengl_copy_bgra.comp deleted file mode 100644 index 2571a4abf..000000000 --- a/src/video_core/host_shaders/opengl_copy_bgra.comp +++ /dev/null | |||
| @@ -1,15 +0,0 @@ | |||
| 1 | // Copyright 2021 yuzu Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #version 430 core | ||
| 6 | |||
| 7 | layout (local_size_x = 4, local_size_y = 4) in; | ||
| 8 | |||
| 9 | layout(binding = 0, rgba8) readonly uniform image2DArray bgr_input; | ||
| 10 | layout(binding = 1, rgba8) writeonly uniform image2DArray bgr_output; | ||
| 11 | |||
| 12 | void main() { | ||
| 13 | vec4 color = imageLoad(bgr_input, ivec3(gl_GlobalInvocationID)); | ||
| 14 | imageStore(bgr_output, ivec3(gl_GlobalInvocationID), color.bgra); | ||
| 15 | } | ||
diff --git a/src/video_core/renderer_opengl/gl_buffer_cache.cpp b/src/video_core/renderer_opengl/gl_buffer_cache.cpp index 07a995f7d..187a28e4d 100644 --- a/src/video_core/renderer_opengl/gl_buffer_cache.cpp +++ b/src/video_core/renderer_opengl/gl_buffer_cache.cpp | |||
| @@ -147,8 +147,7 @@ void BufferCacheRuntime::CopyBuffer(Buffer& dst_buffer, Buffer& src_buffer, | |||
| 147 | 147 | ||
| 148 | void BufferCacheRuntime::ClearBuffer(Buffer& dest_buffer, u32 offset, size_t size, u32 value) { | 148 | void BufferCacheRuntime::ClearBuffer(Buffer& dest_buffer, u32 offset, size_t size, u32 value) { |
| 149 | glClearNamedBufferSubData(dest_buffer.Handle(), GL_R32UI, static_cast<GLintptr>(offset), | 149 | glClearNamedBufferSubData(dest_buffer.Handle(), GL_R32UI, static_cast<GLintptr>(offset), |
| 150 | static_cast<GLsizeiptr>(size / sizeof(u32)), GL_RED, GL_UNSIGNED_INT, | 150 | static_cast<GLsizeiptr>(size), GL_RED, GL_UNSIGNED_INT, &value); |
| 151 | &value); | ||
| 152 | } | 151 | } |
| 153 | 152 | ||
| 154 | void BufferCacheRuntime::BindIndexBuffer(Buffer& buffer, u32 offset, u32 size) { | 153 | void BufferCacheRuntime::BindIndexBuffer(Buffer& buffer, u32 offset, u32 size) { |
diff --git a/src/video_core/renderer_opengl/gl_texture_cache.cpp b/src/video_core/renderer_opengl/gl_texture_cache.cpp index b0aee6cc1..54dae2c41 100644 --- a/src/video_core/renderer_opengl/gl_texture_cache.cpp +++ b/src/video_core/renderer_opengl/gl_texture_cache.cpp | |||
| @@ -461,7 +461,7 @@ bool TextureCacheRuntime::CanImageBeCopied(const Image& dst, const Image& src) { | |||
| 461 | if (dst.info.type == ImageType::e3D && dst.info.format == PixelFormat::BC4_UNORM) { | 461 | if (dst.info.type == ImageType::e3D && dst.info.format == PixelFormat::BC4_UNORM) { |
| 462 | return false; | 462 | return false; |
| 463 | } | 463 | } |
| 464 | if (IsPixelFormatBGR(dst.info.format) || IsPixelFormatBGR(src.info.format)) { | 464 | if (IsPixelFormatBGR(dst.info.format) != IsPixelFormatBGR(src.info.format)) { |
| 465 | return false; | 465 | return false; |
| 466 | } | 466 | } |
| 467 | return true; | 467 | return true; |
| @@ -473,7 +473,7 @@ void TextureCacheRuntime::EmulateCopyImage(Image& dst, Image& src, | |||
| 473 | ASSERT(src.info.type == ImageType::e3D); | 473 | ASSERT(src.info.type == ImageType::e3D); |
| 474 | util_shaders.CopyBC4(dst, src, copies); | 474 | util_shaders.CopyBC4(dst, src, copies); |
| 475 | } else if (IsPixelFormatBGR(dst.info.format) || IsPixelFormatBGR(src.info.format)) { | 475 | } else if (IsPixelFormatBGR(dst.info.format) || IsPixelFormatBGR(src.info.format)) { |
| 476 | util_shaders.CopyBGR(dst, src, copies); | 476 | bgr_copy_pass.CopyBGR(dst, src, copies); |
| 477 | } else { | 477 | } else { |
| 478 | UNREACHABLE(); | 478 | UNREACHABLE(); |
| 479 | } | 479 | } |
| @@ -1112,4 +1112,37 @@ Framebuffer::Framebuffer(TextureCacheRuntime& runtime, std::span<ImageView*, NUM | |||
| 1112 | framebuffer.handle = handle; | 1112 | framebuffer.handle = handle; |
| 1113 | } | 1113 | } |
| 1114 | 1114 | ||
| 1115 | void BGRCopyPass::CopyBGR(Image& dst_image, Image& src_image, | ||
| 1116 | std::span<const VideoCommon::ImageCopy> copies) { | ||
| 1117 | static constexpr VideoCommon::Offset3D zero_offset{0, 0, 0}; | ||
| 1118 | const u32 requested_pbo_size = | ||
| 1119 | std::max(src_image.unswizzled_size_bytes, dst_image.unswizzled_size_bytes); | ||
| 1120 | |||
| 1121 | if (bgr_pbo_size < requested_pbo_size) { | ||
| 1122 | bgr_pbo.Create(); | ||
| 1123 | bgr_pbo_size = requested_pbo_size; | ||
| 1124 | glNamedBufferData(bgr_pbo.handle, bgr_pbo_size, nullptr, GL_STREAM_COPY); | ||
| 1125 | } | ||
| 1126 | for (const ImageCopy& copy : copies) { | ||
| 1127 | ASSERT(copy.src_offset == zero_offset); | ||
| 1128 | ASSERT(copy.dst_offset == zero_offset); | ||
| 1129 | |||
| 1130 | // Copy from source to PBO | ||
| 1131 | glPixelStorei(GL_PACK_ALIGNMENT, 1); | ||
| 1132 | glPixelStorei(GL_PACK_ROW_LENGTH, copy.extent.width); | ||
| 1133 | glBindBuffer(GL_PIXEL_PACK_BUFFER, bgr_pbo.handle); | ||
| 1134 | glGetTextureSubImage(src_image.Handle(), 0, 0, 0, 0, copy.extent.width, copy.extent.height, | ||
| 1135 | copy.src_subresource.num_layers, src_image.GlFormat(), | ||
| 1136 | src_image.GlType(), static_cast<GLsizei>(bgr_pbo_size), nullptr); | ||
| 1137 | |||
| 1138 | // Copy from PBO to destination in desired GL format | ||
| 1139 | glPixelStorei(GL_UNPACK_ALIGNMENT, 1); | ||
| 1140 | glPixelStorei(GL_UNPACK_ROW_LENGTH, copy.extent.width); | ||
| 1141 | glBindBuffer(GL_PIXEL_UNPACK_BUFFER, bgr_pbo.handle); | ||
| 1142 | glTextureSubImage3D(dst_image.Handle(), 0, 0, 0, 0, copy.extent.width, copy.extent.height, | ||
| 1143 | copy.dst_subresource.num_layers, dst_image.GlFormat(), | ||
| 1144 | dst_image.GlType(), nullptr); | ||
| 1145 | } | ||
| 1146 | } | ||
| 1147 | |||
| 1115 | } // namespace OpenGL | 1148 | } // namespace OpenGL |
diff --git a/src/video_core/renderer_opengl/gl_texture_cache.h b/src/video_core/renderer_opengl/gl_texture_cache.h index 4a4f6301c..c498a8a8f 100644 --- a/src/video_core/renderer_opengl/gl_texture_cache.h +++ b/src/video_core/renderer_opengl/gl_texture_cache.h | |||
| @@ -47,6 +47,19 @@ struct FormatProperties { | |||
| 47 | bool is_compressed; | 47 | bool is_compressed; |
| 48 | }; | 48 | }; |
| 49 | 49 | ||
| 50 | class BGRCopyPass { | ||
| 51 | public: | ||
| 52 | BGRCopyPass() = default; | ||
| 53 | ~BGRCopyPass() = default; | ||
| 54 | |||
| 55 | void CopyBGR(Image& dst_image, Image& src_image, | ||
| 56 | std::span<const VideoCommon::ImageCopy> copies); | ||
| 57 | |||
| 58 | private: | ||
| 59 | OGLBuffer bgr_pbo; | ||
| 60 | size_t bgr_pbo_size{}; | ||
| 61 | }; | ||
| 62 | |||
| 50 | class TextureCacheRuntime { | 63 | class TextureCacheRuntime { |
| 51 | friend Framebuffer; | 64 | friend Framebuffer; |
| 52 | friend Image; | 65 | friend Image; |
| @@ -118,6 +131,7 @@ private: | |||
| 118 | const Device& device; | 131 | const Device& device; |
| 119 | StateTracker& state_tracker; | 132 | StateTracker& state_tracker; |
| 120 | UtilShaders util_shaders; | 133 | UtilShaders util_shaders; |
| 134 | BGRCopyPass bgr_copy_pass; | ||
| 121 | 135 | ||
| 122 | std::array<std::unordered_map<GLenum, FormatProperties>, 3> format_properties; | 136 | std::array<std::unordered_map<GLenum, FormatProperties>, 3> format_properties; |
| 123 | bool has_broken_texture_view_formats = false; | 137 | bool has_broken_texture_view_formats = false; |
| @@ -162,6 +176,14 @@ public: | |||
| 162 | return texture.handle; | 176 | return texture.handle; |
| 163 | } | 177 | } |
| 164 | 178 | ||
| 179 | GLuint GlFormat() const noexcept { | ||
| 180 | return gl_format; | ||
| 181 | } | ||
| 182 | |||
| 183 | GLuint GlType() const noexcept { | ||
| 184 | return gl_type; | ||
| 185 | } | ||
| 186 | |||
| 165 | private: | 187 | private: |
| 166 | void CopyBufferToImage(const VideoCommon::BufferImageCopy& copy, size_t buffer_offset); | 188 | void CopyBufferToImage(const VideoCommon::BufferImageCopy& copy, size_t buffer_offset); |
| 167 | 189 | ||
diff --git a/src/video_core/renderer_opengl/maxwell_to_gl.h b/src/video_core/renderer_opengl/maxwell_to_gl.h index 672f94bfc..39158aa3e 100644 --- a/src/video_core/renderer_opengl/maxwell_to_gl.h +++ b/src/video_core/renderer_opengl/maxwell_to_gl.h | |||
| @@ -52,7 +52,7 @@ constexpr std::array<FormatTuple, VideoCore::Surface::MaxPixelFormat> FORMAT_TAB | |||
| 52 | {GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT}, // BC6H_UFLOAT | 52 | {GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT}, // BC6H_UFLOAT |
| 53 | {GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT}, // BC6H_SFLOAT | 53 | {GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT}, // BC6H_SFLOAT |
| 54 | {GL_COMPRESSED_RGBA_ASTC_4x4_KHR}, // ASTC_2D_4X4_UNORM | 54 | {GL_COMPRESSED_RGBA_ASTC_4x4_KHR}, // ASTC_2D_4X4_UNORM |
| 55 | {GL_RGBA8, GL_RGBA, GL_UNSIGNED_BYTE}, // B8G8R8A8_UNORM | 55 | {GL_RGBA8, GL_BGRA, GL_UNSIGNED_INT_8_8_8_8_REV}, // B8G8R8A8_UNORM |
| 56 | {GL_RGBA32F, GL_RGBA, GL_FLOAT}, // R32G32B32A32_FLOAT | 56 | {GL_RGBA32F, GL_RGBA, GL_FLOAT}, // R32G32B32A32_FLOAT |
| 57 | {GL_RGBA32I, GL_RGBA_INTEGER, GL_INT}, // R32G32B32A32_SINT | 57 | {GL_RGBA32I, GL_RGBA_INTEGER, GL_INT}, // R32G32B32A32_SINT |
| 58 | {GL_RG32F, GL_RG, GL_FLOAT}, // R32G32_FLOAT | 58 | {GL_RG32F, GL_RG, GL_FLOAT}, // R32G32_FLOAT |
| @@ -81,7 +81,7 @@ constexpr std::array<FormatTuple, VideoCore::Surface::MaxPixelFormat> FORMAT_TAB | |||
| 81 | {GL_COMPRESSED_RGBA_ASTC_8x8_KHR}, // ASTC_2D_8X8_UNORM | 81 | {GL_COMPRESSED_RGBA_ASTC_8x8_KHR}, // ASTC_2D_8X8_UNORM |
| 82 | {GL_COMPRESSED_RGBA_ASTC_8x5_KHR}, // ASTC_2D_8X5_UNORM | 82 | {GL_COMPRESSED_RGBA_ASTC_8x5_KHR}, // ASTC_2D_8X5_UNORM |
| 83 | {GL_COMPRESSED_RGBA_ASTC_5x4_KHR}, // ASTC_2D_5X4_UNORM | 83 | {GL_COMPRESSED_RGBA_ASTC_5x4_KHR}, // ASTC_2D_5X4_UNORM |
| 84 | {GL_SRGB8_ALPHA8, GL_RGBA, GL_UNSIGNED_BYTE}, // B8G8R8A8_SRGB | 84 | {GL_SRGB8_ALPHA8, GL_BGRA, GL_UNSIGNED_INT_8_8_8_8_REV}, // B8G8R8A8_SRGB |
| 85 | {GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT}, // BC1_RGBA_SRGB | 85 | {GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT}, // BC1_RGBA_SRGB |
| 86 | {GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT}, // BC2_SRGB | 86 | {GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT}, // BC2_SRGB |
| 87 | {GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT}, // BC3_SRGB | 87 | {GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT}, // BC3_SRGB |
diff --git a/src/video_core/renderer_opengl/util_shaders.cpp b/src/video_core/renderer_opengl/util_shaders.cpp index 333f35a1c..897c380b3 100644 --- a/src/video_core/renderer_opengl/util_shaders.cpp +++ b/src/video_core/renderer_opengl/util_shaders.cpp | |||
| @@ -14,7 +14,6 @@ | |||
| 14 | #include "video_core/host_shaders/block_linear_unswizzle_2d_comp.h" | 14 | #include "video_core/host_shaders/block_linear_unswizzle_2d_comp.h" |
| 15 | #include "video_core/host_shaders/block_linear_unswizzle_3d_comp.h" | 15 | #include "video_core/host_shaders/block_linear_unswizzle_3d_comp.h" |
| 16 | #include "video_core/host_shaders/opengl_copy_bc4_comp.h" | 16 | #include "video_core/host_shaders/opengl_copy_bc4_comp.h" |
| 17 | #include "video_core/host_shaders/opengl_copy_bgra_comp.h" | ||
| 18 | #include "video_core/host_shaders/pitch_unswizzle_comp.h" | 17 | #include "video_core/host_shaders/pitch_unswizzle_comp.h" |
| 19 | #include "video_core/renderer_opengl/gl_shader_manager.h" | 18 | #include "video_core/renderer_opengl/gl_shader_manager.h" |
| 20 | #include "video_core/renderer_opengl/gl_shader_util.h" | 19 | #include "video_core/renderer_opengl/gl_shader_util.h" |
| @@ -44,11 +43,6 @@ namespace { | |||
| 44 | OGLProgram MakeProgram(std::string_view source) { | 43 | OGLProgram MakeProgram(std::string_view source) { |
| 45 | return CreateProgram(source, GL_COMPUTE_SHADER); | 44 | return CreateProgram(source, GL_COMPUTE_SHADER); |
| 46 | } | 45 | } |
| 47 | |||
| 48 | size_t NumPixelsInCopy(const VideoCommon::ImageCopy& copy) { | ||
| 49 | return static_cast<size_t>(copy.extent.width * copy.extent.height * | ||
| 50 | copy.src_subresource.num_layers); | ||
| 51 | } | ||
| 52 | } // Anonymous namespace | 46 | } // Anonymous namespace |
| 53 | 47 | ||
| 54 | UtilShaders::UtilShaders(ProgramManager& program_manager_) | 48 | UtilShaders::UtilShaders(ProgramManager& program_manager_) |
| @@ -56,7 +50,6 @@ UtilShaders::UtilShaders(ProgramManager& program_manager_) | |||
| 56 | block_linear_unswizzle_2d_program(MakeProgram(BLOCK_LINEAR_UNSWIZZLE_2D_COMP)), | 50 | block_linear_unswizzle_2d_program(MakeProgram(BLOCK_LINEAR_UNSWIZZLE_2D_COMP)), |
| 57 | block_linear_unswizzle_3d_program(MakeProgram(BLOCK_LINEAR_UNSWIZZLE_3D_COMP)), | 51 | block_linear_unswizzle_3d_program(MakeProgram(BLOCK_LINEAR_UNSWIZZLE_3D_COMP)), |
| 58 | pitch_unswizzle_program(MakeProgram(PITCH_UNSWIZZLE_COMP)), | 52 | pitch_unswizzle_program(MakeProgram(PITCH_UNSWIZZLE_COMP)), |
| 59 | copy_bgra_program(MakeProgram(OPENGL_COPY_BGRA_COMP)), | ||
| 60 | copy_bc4_program(MakeProgram(OPENGL_COPY_BC4_COMP)) { | 53 | copy_bc4_program(MakeProgram(OPENGL_COPY_BC4_COMP)) { |
| 61 | const auto swizzle_table = Tegra::Texture::MakeSwizzleTable(); | 54 | const auto swizzle_table = Tegra::Texture::MakeSwizzleTable(); |
| 62 | swizzle_table_buffer.Create(); | 55 | swizzle_table_buffer.Create(); |
| @@ -255,43 +248,6 @@ void UtilShaders::CopyBC4(Image& dst_image, Image& src_image, std::span<const Im | |||
| 255 | program_manager.RestoreGuestCompute(); | 248 | program_manager.RestoreGuestCompute(); |
| 256 | } | 249 | } |
| 257 | 250 | ||
| 258 | void UtilShaders::CopyBGR(Image& dst_image, Image& src_image, | ||
| 259 | std::span<const VideoCommon::ImageCopy> copies) { | ||
| 260 | static constexpr GLuint BINDING_INPUT_IMAGE = 0; | ||
| 261 | static constexpr GLuint BINDING_OUTPUT_IMAGE = 1; | ||
| 262 | static constexpr VideoCommon::Offset3D zero_offset{0, 0, 0}; | ||
| 263 | const u32 bytes_per_block = BytesPerBlock(dst_image.info.format); | ||
| 264 | switch (bytes_per_block) { | ||
| 265 | case 2: | ||
| 266 | // BGR565 copy | ||
| 267 | for (const ImageCopy& copy : copies) { | ||
| 268 | ASSERT(copy.src_offset == zero_offset); | ||
| 269 | ASSERT(copy.dst_offset == zero_offset); | ||
| 270 | bgr_copy_pass.Execute(dst_image, src_image, copy); | ||
| 271 | } | ||
| 272 | break; | ||
| 273 | case 4: { | ||
| 274 | // BGRA8 copy | ||
| 275 | program_manager.BindComputeProgram(copy_bgra_program.handle); | ||
| 276 | constexpr GLenum FORMAT = GL_RGBA8; | ||
| 277 | for (const ImageCopy& copy : copies) { | ||
| 278 | ASSERT(copy.src_offset == zero_offset); | ||
| 279 | ASSERT(copy.dst_offset == zero_offset); | ||
| 280 | glBindImageTexture(BINDING_INPUT_IMAGE, src_image.StorageHandle(), | ||
| 281 | copy.src_subresource.base_level, GL_FALSE, 0, GL_READ_ONLY, FORMAT); | ||
| 282 | glBindImageTexture(BINDING_OUTPUT_IMAGE, dst_image.StorageHandle(), | ||
| 283 | copy.dst_subresource.base_level, GL_FALSE, 0, GL_WRITE_ONLY, FORMAT); | ||
| 284 | glDispatchCompute(copy.extent.width, copy.extent.height, copy.extent.depth); | ||
| 285 | } | ||
| 286 | program_manager.RestoreGuestCompute(); | ||
| 287 | break; | ||
| 288 | } | ||
| 289 | default: | ||
| 290 | UNREACHABLE(); | ||
| 291 | break; | ||
| 292 | } | ||
| 293 | } | ||
| 294 | |||
| 295 | GLenum StoreFormat(u32 bytes_per_block) { | 251 | GLenum StoreFormat(u32 bytes_per_block) { |
| 296 | switch (bytes_per_block) { | 252 | switch (bytes_per_block) { |
| 297 | case 1: | 253 | case 1: |
| @@ -309,36 +265,4 @@ GLenum StoreFormat(u32 bytes_per_block) { | |||
| 309 | return GL_R8UI; | 265 | return GL_R8UI; |
| 310 | } | 266 | } |
| 311 | 267 | ||
| 312 | void Bgr565CopyPass::Execute(const Image& dst_image, const Image& src_image, | ||
| 313 | const ImageCopy& copy) { | ||
| 314 | if (CopyBufferCreationNeeded(copy)) { | ||
| 315 | CreateNewCopyBuffer(copy, GL_TEXTURE_2D_ARRAY, GL_RGB565); | ||
| 316 | } | ||
| 317 | // Copy from source to PBO | ||
| 318 | glPixelStorei(GL_PACK_ALIGNMENT, 1); | ||
| 319 | glPixelStorei(GL_PACK_ROW_LENGTH, copy.extent.width); | ||
| 320 | glBindBuffer(GL_PIXEL_PACK_BUFFER, bgr16_pbo.handle); | ||
| 321 | glGetTextureSubImage(src_image.Handle(), 0, 0, 0, 0, copy.extent.width, copy.extent.height, | ||
| 322 | copy.src_subresource.num_layers, GL_RGB, GL_UNSIGNED_SHORT_5_6_5, | ||
| 323 | static_cast<GLsizei>(bgr16_pbo_size), nullptr); | ||
| 324 | |||
| 325 | // Copy from PBO to destination in reverse order | ||
| 326 | glPixelStorei(GL_UNPACK_ALIGNMENT, 1); | ||
| 327 | glPixelStorei(GL_UNPACK_ROW_LENGTH, copy.extent.width); | ||
| 328 | glBindBuffer(GL_PIXEL_UNPACK_BUFFER, bgr16_pbo.handle); | ||
| 329 | glTextureSubImage3D(dst_image.Handle(), 0, 0, 0, 0, copy.extent.width, copy.extent.height, | ||
| 330 | copy.dst_subresource.num_layers, GL_RGB, GL_UNSIGNED_SHORT_5_6_5_REV, | ||
| 331 | nullptr); | ||
| 332 | } | ||
| 333 | |||
| 334 | bool Bgr565CopyPass::CopyBufferCreationNeeded(const ImageCopy& copy) { | ||
| 335 | return bgr16_pbo_size < NumPixelsInCopy(copy) * sizeof(u16); | ||
| 336 | } | ||
| 337 | |||
| 338 | void Bgr565CopyPass::CreateNewCopyBuffer(const ImageCopy& copy, GLenum target, GLuint format) { | ||
| 339 | bgr16_pbo.Create(); | ||
| 340 | bgr16_pbo_size = NumPixelsInCopy(copy) * sizeof(u16); | ||
| 341 | glNamedBufferData(bgr16_pbo.handle, bgr16_pbo_size, nullptr, GL_STREAM_COPY); | ||
| 342 | } | ||
| 343 | |||
| 344 | } // namespace OpenGL | 268 | } // namespace OpenGL |
diff --git a/src/video_core/renderer_opengl/util_shaders.h b/src/video_core/renderer_opengl/util_shaders.h index ef881e35f..5de95ea7a 100644 --- a/src/video_core/renderer_opengl/util_shaders.h +++ b/src/video_core/renderer_opengl/util_shaders.h | |||
| @@ -19,22 +19,6 @@ class ProgramManager; | |||
| 19 | 19 | ||
| 20 | struct ImageBufferMap; | 20 | struct ImageBufferMap; |
| 21 | 21 | ||
| 22 | class Bgr565CopyPass { | ||
| 23 | public: | ||
| 24 | Bgr565CopyPass() = default; | ||
| 25 | ~Bgr565CopyPass() = default; | ||
| 26 | |||
| 27 | void Execute(const Image& dst_image, const Image& src_image, | ||
| 28 | const VideoCommon::ImageCopy& copy); | ||
| 29 | |||
| 30 | private: | ||
| 31 | [[nodiscard]] bool CopyBufferCreationNeeded(const VideoCommon::ImageCopy& copy); | ||
| 32 | void CreateNewCopyBuffer(const VideoCommon::ImageCopy& copy, GLenum target, GLuint format); | ||
| 33 | |||
| 34 | OGLBuffer bgr16_pbo; | ||
| 35 | size_t bgr16_pbo_size{}; | ||
| 36 | }; | ||
| 37 | |||
| 38 | class UtilShaders { | 22 | class UtilShaders { |
| 39 | public: | 23 | public: |
| 40 | explicit UtilShaders(ProgramManager& program_manager); | 24 | explicit UtilShaders(ProgramManager& program_manager); |
| @@ -55,9 +39,6 @@ public: | |||
| 55 | void CopyBC4(Image& dst_image, Image& src_image, | 39 | void CopyBC4(Image& dst_image, Image& src_image, |
| 56 | std::span<const VideoCommon::ImageCopy> copies); | 40 | std::span<const VideoCommon::ImageCopy> copies); |
| 57 | 41 | ||
| 58 | void CopyBGR(Image& dst_image, Image& src_image, | ||
| 59 | std::span<const VideoCommon::ImageCopy> copies); | ||
| 60 | |||
| 61 | private: | 42 | private: |
| 62 | ProgramManager& program_manager; | 43 | ProgramManager& program_manager; |
| 63 | 44 | ||
| @@ -67,10 +48,7 @@ private: | |||
| 67 | OGLProgram block_linear_unswizzle_2d_program; | 48 | OGLProgram block_linear_unswizzle_2d_program; |
| 68 | OGLProgram block_linear_unswizzle_3d_program; | 49 | OGLProgram block_linear_unswizzle_3d_program; |
| 69 | OGLProgram pitch_unswizzle_program; | 50 | OGLProgram pitch_unswizzle_program; |
| 70 | OGLProgram copy_bgra_program; | ||
| 71 | OGLProgram copy_bc4_program; | 51 | OGLProgram copy_bc4_program; |
| 72 | |||
| 73 | Bgr565CopyPass bgr_copy_pass; | ||
| 74 | }; | 52 | }; |
| 75 | 53 | ||
| 76 | GLenum StoreFormat(u32 bytes_per_block); | 54 | GLenum StoreFormat(u32 bytes_per_block); |
diff --git a/src/video_core/renderer_vulkan/vk_graphics_pipeline.cpp b/src/video_core/renderer_vulkan/vk_graphics_pipeline.cpp index 11cd41ad7..8634c3316 100644 --- a/src/video_core/renderer_vulkan/vk_graphics_pipeline.cpp +++ b/src/video_core/renderer_vulkan/vk_graphics_pipeline.cpp | |||
| @@ -568,12 +568,21 @@ void GraphicsPipeline::MakePipeline(VkRenderPass render_pass) { | |||
| 568 | if (!vertex_binding_divisors.empty()) { | 568 | if (!vertex_binding_divisors.empty()) { |
| 569 | vertex_input_ci.pNext = &input_divisor_ci; | 569 | vertex_input_ci.pNext = &input_divisor_ci; |
| 570 | } | 570 | } |
| 571 | const bool has_tess_stages = spv_modules[1] || spv_modules[2]; | ||
| 571 | auto input_assembly_topology = MaxwellToVK::PrimitiveTopology(device, key.state.topology); | 572 | auto input_assembly_topology = MaxwellToVK::PrimitiveTopology(device, key.state.topology); |
| 572 | if (input_assembly_topology == VK_PRIMITIVE_TOPOLOGY_PATCH_LIST) { | 573 | if (input_assembly_topology == VK_PRIMITIVE_TOPOLOGY_PATCH_LIST) { |
| 573 | if (!spv_modules[1] && !spv_modules[2]) { | 574 | if (!has_tess_stages) { |
| 574 | LOG_WARNING(Render_Vulkan, "Patch topology used without tessellation, using points"); | 575 | LOG_WARNING(Render_Vulkan, "Patch topology used without tessellation, using points"); |
| 575 | input_assembly_topology = VK_PRIMITIVE_TOPOLOGY_POINT_LIST; | 576 | input_assembly_topology = VK_PRIMITIVE_TOPOLOGY_POINT_LIST; |
| 576 | } | 577 | } |
| 578 | } else { | ||
| 579 | if (has_tess_stages) { | ||
| 580 | // The Vulkan spec requires patch list IA topology be used with tessellation | ||
| 581 | // shader stages. Forcing it fixes a crash on some drivers | ||
| 582 | LOG_WARNING(Render_Vulkan, | ||
| 583 | "Patch topology not used with tessellation, using patch list"); | ||
| 584 | input_assembly_topology = VK_PRIMITIVE_TOPOLOGY_PATCH_LIST; | ||
| 585 | } | ||
| 577 | } | 586 | } |
| 578 | const VkPipelineInputAssemblyStateCreateInfo input_assembly_ci{ | 587 | const VkPipelineInputAssemblyStateCreateInfo input_assembly_ci{ |
| 579 | .sType = VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO, | 588 | .sType = VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO, |
diff --git a/src/yuzu/CMakeLists.txt b/src/yuzu/CMakeLists.txt index b6dda283d..402be6a78 100644 --- a/src/yuzu/CMakeLists.txt +++ b/src/yuzu/CMakeLists.txt | |||
| @@ -290,10 +290,6 @@ if (YUZU_USE_QT_WEB_ENGINE) | |||
| 290 | target_compile_definitions(yuzu PRIVATE -DYUZU_USE_QT_WEB_ENGINE) | 290 | target_compile_definitions(yuzu PRIVATE -DYUZU_USE_QT_WEB_ENGINE) |
| 291 | endif () | 291 | endif () |
| 292 | 292 | ||
| 293 | if (YUZU_ENABLE_BOXCAT) | ||
| 294 | target_compile_definitions(yuzu PRIVATE -DYUZU_ENABLE_BOXCAT) | ||
| 295 | endif () | ||
| 296 | |||
| 297 | if(UNIX AND NOT APPLE) | 293 | if(UNIX AND NOT APPLE) |
| 298 | install(TARGETS yuzu RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin") | 294 | install(TARGETS yuzu RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin") |
| 299 | endif() | 295 | endif() |
diff --git a/src/yuzu/applets/qt_web_browser.cpp b/src/yuzu/applets/qt_web_browser.cpp index 652d99570..7d433ca50 100644 --- a/src/yuzu/applets/qt_web_browser.cpp +++ b/src/yuzu/applets/qt_web_browser.cpp | |||
| @@ -54,6 +54,9 @@ QtNXWebEngineView::QtNXWebEngineView(QWidget* parent, Core::System& system, | |||
| 54 | input_interpreter(std::make_unique<InputInterpreter>(system)), | 54 | input_interpreter(std::make_unique<InputInterpreter>(system)), |
| 55 | default_profile{QWebEngineProfile::defaultProfile()}, | 55 | default_profile{QWebEngineProfile::defaultProfile()}, |
| 56 | global_settings{QWebEngineSettings::globalSettings()} { | 56 | global_settings{QWebEngineSettings::globalSettings()} { |
| 57 | default_profile->setPersistentStoragePath(QString::fromStdString(Common::FS::PathToUTF8String( | ||
| 58 | Common::FS::GetYuzuPath(Common::FS::YuzuPath::YuzuDir) / "qtwebengine"))); | ||
| 59 | |||
| 57 | QWebEngineScript gamepad; | 60 | QWebEngineScript gamepad; |
| 58 | QWebEngineScript window_nx; | 61 | QWebEngineScript window_nx; |
| 59 | 62 | ||
diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp index 1519a46ed..8b9e186b0 100644 --- a/src/yuzu/bootmanager.cpp +++ b/src/yuzu/bootmanager.cpp | |||
| @@ -302,12 +302,17 @@ GRenderWindow::GRenderWindow(GMainWindow* parent, EmuThread* emu_thread_, | |||
| 302 | connect(this, &GRenderWindow::FirstFrameDisplayed, parent, &GMainWindow::OnLoadComplete); | 302 | connect(this, &GRenderWindow::FirstFrameDisplayed, parent, &GMainWindow::OnLoadComplete); |
| 303 | connect(this, &GRenderWindow::ExecuteProgramSignal, parent, &GMainWindow::OnExecuteProgram, | 303 | connect(this, &GRenderWindow::ExecuteProgramSignal, parent, &GMainWindow::OnExecuteProgram, |
| 304 | Qt::QueuedConnection); | 304 | Qt::QueuedConnection); |
| 305 | connect(this, &GRenderWindow::ExitSignal, parent, &GMainWindow::OnExit, Qt::QueuedConnection); | ||
| 305 | } | 306 | } |
| 306 | 307 | ||
| 307 | void GRenderWindow::ExecuteProgram(std::size_t program_index) { | 308 | void GRenderWindow::ExecuteProgram(std::size_t program_index) { |
| 308 | emit ExecuteProgramSignal(program_index); | 309 | emit ExecuteProgramSignal(program_index); |
| 309 | } | 310 | } |
| 310 | 311 | ||
| 312 | void GRenderWindow::Exit() { | ||
| 313 | emit ExitSignal(); | ||
| 314 | } | ||
| 315 | |||
| 311 | GRenderWindow::~GRenderWindow() { | 316 | GRenderWindow::~GRenderWindow() { |
| 312 | input_subsystem->Shutdown(); | 317 | input_subsystem->Shutdown(); |
| 313 | } | 318 | } |
diff --git a/src/yuzu/bootmanager.h b/src/yuzu/bootmanager.h index 402dd2ee1..54c4e2142 100644 --- a/src/yuzu/bootmanager.h +++ b/src/yuzu/bootmanager.h | |||
| @@ -181,6 +181,9 @@ public: | |||
| 181 | */ | 181 | */ |
| 182 | void ExecuteProgram(std::size_t program_index); | 182 | void ExecuteProgram(std::size_t program_index); |
| 183 | 183 | ||
| 184 | /// Instructs the window to exit the application. | ||
| 185 | void Exit(); | ||
| 186 | |||
| 184 | public slots: | 187 | public slots: |
| 185 | void OnEmulationStarting(EmuThread* emu_thread); | 188 | void OnEmulationStarting(EmuThread* emu_thread); |
| 186 | void OnEmulationStopping(); | 189 | void OnEmulationStopping(); |
| @@ -191,6 +194,7 @@ signals: | |||
| 191 | void Closed(); | 194 | void Closed(); |
| 192 | void FirstFrameDisplayed(); | 195 | void FirstFrameDisplayed(); |
| 193 | void ExecuteProgramSignal(std::size_t program_index); | 196 | void ExecuteProgramSignal(std::size_t program_index); |
| 197 | void ExitSignal(); | ||
| 194 | void MouseActivity(); | 198 | void MouseActivity(); |
| 195 | 199 | ||
| 196 | private: | 200 | private: |
diff --git a/src/yuzu/configuration/config.cpp b/src/yuzu/configuration/config.cpp index b5796a8fc..eb941ce02 100644 --- a/src/yuzu/configuration/config.cpp +++ b/src/yuzu/configuration/config.cpp | |||
| @@ -709,8 +709,6 @@ void Config::ReadDebuggingValues() { | |||
| 709 | 709 | ||
| 710 | void Config::ReadServiceValues() { | 710 | void Config::ReadServiceValues() { |
| 711 | qt_config->beginGroup(QStringLiteral("Services")); | 711 | qt_config->beginGroup(QStringLiteral("Services")); |
| 712 | ReadBasicSetting(Settings::values.bcat_backend); | ||
| 713 | ReadBasicSetting(Settings::values.bcat_boxcat_local); | ||
| 714 | ReadBasicSetting(Settings::values.network_interface); | 712 | ReadBasicSetting(Settings::values.network_interface); |
| 715 | qt_config->endGroup(); | 713 | qt_config->endGroup(); |
| 716 | } | 714 | } |
| @@ -1269,8 +1267,6 @@ void Config::SaveDebuggingValues() { | |||
| 1269 | void Config::SaveNetworkValues() { | 1267 | void Config::SaveNetworkValues() { |
| 1270 | qt_config->beginGroup(QStringLiteral("Services")); | 1268 | qt_config->beginGroup(QStringLiteral("Services")); |
| 1271 | 1269 | ||
| 1272 | WriteBasicSetting(Settings::values.bcat_backend); | ||
| 1273 | WriteBasicSetting(Settings::values.bcat_boxcat_local); | ||
| 1274 | WriteBasicSetting(Settings::values.network_interface); | 1270 | WriteBasicSetting(Settings::values.network_interface); |
| 1275 | 1271 | ||
| 1276 | qt_config->endGroup(); | 1272 | qt_config->endGroup(); |
diff --git a/src/yuzu/configuration/configure_network.cpp b/src/yuzu/configuration/configure_network.cpp index ae22f1018..cc15d36c2 100644 --- a/src/yuzu/configuration/configure_network.cpp +++ b/src/yuzu/configuration/configure_network.cpp | |||
| @@ -6,64 +6,25 @@ | |||
| 6 | #include <QtConcurrent/QtConcurrent> | 6 | #include <QtConcurrent/QtConcurrent> |
| 7 | #include "common/settings.h" | 7 | #include "common/settings.h" |
| 8 | #include "core/core.h" | 8 | #include "core/core.h" |
| 9 | #include "core/hle/service/bcat/backend/boxcat.h" | ||
| 10 | #include "core/network/network_interface.h" | 9 | #include "core/network/network_interface.h" |
| 11 | #include "ui_configure_network.h" | 10 | #include "ui_configure_network.h" |
| 12 | #include "yuzu/configuration/configure_network.h" | 11 | #include "yuzu/configuration/configure_network.h" |
| 13 | 12 | ||
| 14 | #ifdef YUZU_ENABLE_BOXCAT | ||
| 15 | namespace { | ||
| 16 | QString FormatEventStatusString(const Service::BCAT::EventStatus& status) { | ||
| 17 | QString out; | ||
| 18 | |||
| 19 | if (status.header.has_value()) { | ||
| 20 | out += QStringLiteral("<i>%1</i><br>").arg(QString::fromStdString(*status.header)); | ||
| 21 | } | ||
| 22 | |||
| 23 | if (status.events.size() == 1) { | ||
| 24 | out += QStringLiteral("%1<br>").arg(QString::fromStdString(status.events.front())); | ||
| 25 | } else { | ||
| 26 | for (const auto& event : status.events) { | ||
| 27 | out += QStringLiteral("- %1<br>").arg(QString::fromStdString(event)); | ||
| 28 | } | ||
| 29 | } | ||
| 30 | |||
| 31 | if (status.footer.has_value()) { | ||
| 32 | out += QStringLiteral("<i>%1</i><br>").arg(QString::fromStdString(*status.footer)); | ||
| 33 | } | ||
| 34 | |||
| 35 | return out; | ||
| 36 | } | ||
| 37 | } // Anonymous namespace | ||
| 38 | #endif | ||
| 39 | |||
| 40 | ConfigureNetwork::ConfigureNetwork(QWidget* parent) | 13 | ConfigureNetwork::ConfigureNetwork(QWidget* parent) |
| 41 | : QWidget(parent), ui(std::make_unique<Ui::ConfigureNetwork>()) { | 14 | : QWidget(parent), ui(std::make_unique<Ui::ConfigureNetwork>()) { |
| 42 | ui->setupUi(this); | 15 | ui->setupUi(this); |
| 43 | 16 | ||
| 44 | ui->bcat_source->addItem(QStringLiteral("None")); | ||
| 45 | ui->bcat_empty_label->setHidden(true); | ||
| 46 | ui->bcat_empty_header->setHidden(true); | ||
| 47 | |||
| 48 | #ifdef YUZU_ENABLE_BOXCAT | ||
| 49 | ui->bcat_source->addItem(QStringLiteral("Boxcat"), QStringLiteral("boxcat")); | ||
| 50 | #endif | ||
| 51 | |||
| 52 | ui->network_interface->addItem(tr("None")); | 17 | ui->network_interface->addItem(tr("None")); |
| 53 | for (const auto& iface : Network::GetAvailableNetworkInterfaces()) { | 18 | for (const auto& iface : Network::GetAvailableNetworkInterfaces()) { |
| 54 | ui->network_interface->addItem(QString::fromStdString(iface.name)); | 19 | ui->network_interface->addItem(QString::fromStdString(iface.name)); |
| 55 | } | 20 | } |
| 56 | 21 | ||
| 57 | connect(ui->bcat_source, QOverload<int>::of(&QComboBox::currentIndexChanged), this, | ||
| 58 | &ConfigureNetwork::OnBCATImplChanged); | ||
| 59 | |||
| 60 | this->SetConfiguration(); | 22 | this->SetConfiguration(); |
| 61 | } | 23 | } |
| 62 | 24 | ||
| 63 | ConfigureNetwork::~ConfigureNetwork() = default; | 25 | ConfigureNetwork::~ConfigureNetwork() = default; |
| 64 | 26 | ||
| 65 | void ConfigureNetwork::ApplyConfiguration() { | 27 | void ConfigureNetwork::ApplyConfiguration() { |
| 66 | Settings::values.bcat_backend = ui->bcat_source->currentText().toLower().toStdString(); | ||
| 67 | Settings::values.network_interface = ui->network_interface->currentText().toStdString(); | 28 | Settings::values.network_interface = ui->network_interface->currentText().toStdString(); |
| 68 | } | 29 | } |
| 69 | 30 | ||
| @@ -74,86 +35,8 @@ void ConfigureNetwork::RetranslateUi() { | |||
| 74 | void ConfigureNetwork::SetConfiguration() { | 35 | void ConfigureNetwork::SetConfiguration() { |
| 75 | const bool runtime_lock = !Core::System::GetInstance().IsPoweredOn(); | 36 | const bool runtime_lock = !Core::System::GetInstance().IsPoweredOn(); |
| 76 | 37 | ||
| 77 | const int index = | ||
| 78 | ui->bcat_source->findData(QString::fromStdString(Settings::values.bcat_backend.GetValue())); | ||
| 79 | ui->bcat_source->setCurrentIndex(index == -1 ? 0 : index); | ||
| 80 | |||
| 81 | const std::string& network_interface = Settings::values.network_interface.GetValue(); | 38 | const std::string& network_interface = Settings::values.network_interface.GetValue(); |
| 82 | 39 | ||
| 83 | ui->network_interface->setCurrentText(QString::fromStdString(network_interface)); | 40 | ui->network_interface->setCurrentText(QString::fromStdString(network_interface)); |
| 84 | ui->network_interface->setEnabled(runtime_lock); | 41 | ui->network_interface->setEnabled(runtime_lock); |
| 85 | } | 42 | } |
| 86 | |||
| 87 | std::pair<QString, QString> ConfigureNetwork::BCATDownloadEvents() { | ||
| 88 | #ifdef YUZU_ENABLE_BOXCAT | ||
| 89 | std::optional<std::string> global; | ||
| 90 | std::map<std::string, Service::BCAT::EventStatus> map; | ||
| 91 | const auto res = Service::BCAT::Boxcat::GetStatus(global, map); | ||
| 92 | |||
| 93 | switch (res) { | ||
| 94 | case Service::BCAT::Boxcat::StatusResult::Success: | ||
| 95 | break; | ||
| 96 | case Service::BCAT::Boxcat::StatusResult::Offline: | ||
| 97 | return {QString{}, | ||
| 98 | tr("The boxcat service is offline or you are not connected to the internet.")}; | ||
| 99 | case Service::BCAT::Boxcat::StatusResult::ParseError: | ||
| 100 | return {QString{}, | ||
| 101 | tr("There was an error while processing the boxcat event data. Contact the yuzu " | ||
| 102 | "developers.")}; | ||
| 103 | case Service::BCAT::Boxcat::StatusResult::BadClientVersion: | ||
| 104 | return {QString{}, | ||
| 105 | tr("The version of yuzu you are using is either too new or too old for the server. " | ||
| 106 | "Try updating to the latest official release of yuzu.")}; | ||
| 107 | } | ||
| 108 | |||
| 109 | if (map.empty()) { | ||
| 110 | return {QStringLiteral("Current Boxcat Events"), | ||
| 111 | tr("There are currently no events on boxcat.")}; | ||
| 112 | } | ||
| 113 | |||
| 114 | QString out; | ||
| 115 | |||
| 116 | if (global.has_value()) { | ||
| 117 | out += QStringLiteral("%1<br>").arg(QString::fromStdString(*global)); | ||
| 118 | } | ||
| 119 | |||
| 120 | for (const auto& [key, value] : map) { | ||
| 121 | out += QStringLiteral("%1<b>%2</b><br>%3") | ||
| 122 | .arg(out.isEmpty() ? QString{} : QStringLiteral("<br>")) | ||
| 123 | .arg(QString::fromStdString(key)) | ||
| 124 | .arg(FormatEventStatusString(value)); | ||
| 125 | } | ||
| 126 | return {tr("Current Boxcat Events"), std::move(out)}; | ||
| 127 | #else | ||
| 128 | return {tr("Current Boxcat Events"), tr("There are currently no events on boxcat.")}; | ||
| 129 | #endif | ||
| 130 | } | ||
| 131 | |||
| 132 | void ConfigureNetwork::OnBCATImplChanged() { | ||
| 133 | #ifdef YUZU_ENABLE_BOXCAT | ||
| 134 | const auto boxcat = ui->bcat_source->currentText() == QStringLiteral("Boxcat"); | ||
| 135 | ui->bcat_empty_header->setHidden(!boxcat); | ||
| 136 | ui->bcat_empty_label->setHidden(!boxcat); | ||
| 137 | ui->bcat_empty_header->setText(QString{}); | ||
| 138 | ui->bcat_empty_label->setText(tr("Yuzu is retrieving the latest boxcat status...")); | ||
| 139 | |||
| 140 | if (!boxcat) | ||
| 141 | return; | ||
| 142 | |||
| 143 | const auto future = QtConcurrent::run([this] { return BCATDownloadEvents(); }); | ||
| 144 | |||
| 145 | watcher.setFuture(future); | ||
| 146 | connect(&watcher, &QFutureWatcher<std::pair<QString, QString>>::finished, this, | ||
| 147 | [this] { OnUpdateBCATEmptyLabel(watcher.result()); }); | ||
| 148 | #endif | ||
| 149 | } | ||
| 150 | |||
| 151 | void ConfigureNetwork::OnUpdateBCATEmptyLabel(std::pair<QString, QString> string) { | ||
| 152 | #ifdef YUZU_ENABLE_BOXCAT | ||
| 153 | const auto boxcat = ui->bcat_source->currentText() == QStringLiteral("Boxcat"); | ||
| 154 | if (boxcat) { | ||
| 155 | ui->bcat_empty_header->setText(string.first); | ||
| 156 | ui->bcat_empty_label->setText(string.second); | ||
| 157 | } | ||
| 158 | #endif | ||
| 159 | } | ||
diff --git a/src/yuzu/configuration/configure_network.h b/src/yuzu/configuration/configure_network.h index 442b68e6b..028fd4acc 100644 --- a/src/yuzu/configuration/configure_network.h +++ b/src/yuzu/configuration/configure_network.h | |||
| @@ -25,10 +25,5 @@ public: | |||
| 25 | private: | 25 | private: |
| 26 | void SetConfiguration(); | 26 | void SetConfiguration(); |
| 27 | 27 | ||
| 28 | std::pair<QString, QString> BCATDownloadEvents(); | ||
| 29 | void OnBCATImplChanged(); | ||
| 30 | void OnUpdateBCATEmptyLabel(std::pair<QString, QString> string); | ||
| 31 | |||
| 32 | std::unique_ptr<Ui::ConfigureNetwork> ui; | 28 | std::unique_ptr<Ui::ConfigureNetwork> ui; |
| 33 | QFutureWatcher<std::pair<QString, QString>> watcher{this}; | ||
| 34 | }; | 29 | }; |
diff --git a/src/yuzu/configuration/configure_network.ui b/src/yuzu/configuration/configure_network.ui index 5f9b7e97b..9a79262f0 100644 --- a/src/yuzu/configuration/configure_network.ui +++ b/src/yuzu/configuration/configure_network.ui | |||
| @@ -35,92 +35,6 @@ | |||
| 35 | </layout> | 35 | </layout> |
| 36 | </widget> | 36 | </widget> |
| 37 | </item> | 37 | </item> |
| 38 | <item> | ||
| 39 | <widget class="QGroupBox" name="groupBox"> | ||
| 40 | <property name="title"> | ||
| 41 | <string>BCAT</string> | ||
| 42 | </property> | ||
| 43 | <layout class="QGridLayout" name="gridLayout"> | ||
| 44 | <item row="3" column="0"> | ||
| 45 | <widget class="QLabel" name="bcat_empty_header"> | ||
| 46 | <property name="text"> | ||
| 47 | <string/> | ||
| 48 | </property> | ||
| 49 | <property name="alignment"> | ||
| 50 | <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set> | ||
| 51 | </property> | ||
| 52 | <property name="wordWrap"> | ||
| 53 | <bool>true</bool> | ||
| 54 | </property> | ||
| 55 | </widget> | ||
| 56 | </item> | ||
| 57 | <item row="0" column="0"> | ||
| 58 | <widget class="QLabel" name="label"> | ||
| 59 | <property name="maximumSize"> | ||
| 60 | <size> | ||
| 61 | <width>16777215</width> | ||
| 62 | <height>16777215</height> | ||
| 63 | </size> | ||
| 64 | </property> | ||
| 65 | <property name="text"> | ||
| 66 | <string>BCAT Backend</string> | ||
| 67 | </property> | ||
| 68 | </widget> | ||
| 69 | </item> | ||
| 70 | <item row="1" column="1" colspan="2"> | ||
| 71 | <widget class="QLabel" name="label_2"> | ||
| 72 | <property name="maximumSize"> | ||
| 73 | <size> | ||
| 74 | <width>260</width> | ||
| 75 | <height>16777215</height> | ||
| 76 | </size> | ||
| 77 | </property> | ||
| 78 | <property name="text"> | ||
| 79 | <string>BCAT is Nintendo's way of sending data to games to engage its community and unlock additional content.</string> | ||
| 80 | </property> | ||
| 81 | <property name="wordWrap"> | ||
| 82 | <bool>true</bool> | ||
| 83 | </property> | ||
| 84 | </widget> | ||
| 85 | </item> | ||
| 86 | <item row="2" column="1" colspan="2"> | ||
| 87 | <widget class="QLabel" name="label_3"> | ||
| 88 | <property name="text"> | ||
| 89 | <string><html><head/><body><p><a href="https://yuzu-emu.org/help/feature/boxcat"><span style=" text-decoration: underline; color:#0000ff;">Learn more about BCAT, Boxcat, and Current Events</span></a></p></body></html></string> | ||
| 90 | </property> | ||
| 91 | <property name="openExternalLinks"> | ||
| 92 | <bool>true</bool> | ||
| 93 | </property> | ||
| 94 | </widget> | ||
| 95 | </item> | ||
| 96 | <item row="0" column="1" colspan="2"> | ||
| 97 | <widget class="QComboBox" name="bcat_source"/> | ||
| 98 | </item> | ||
| 99 | <item row="3" column="1" colspan="2"> | ||
| 100 | <widget class="QLabel" name="bcat_empty_label"> | ||
| 101 | <property name="enabled"> | ||
| 102 | <bool>true</bool> | ||
| 103 | </property> | ||
| 104 | <property name="maximumSize"> | ||
| 105 | <size> | ||
| 106 | <width>260</width> | ||
| 107 | <height>16777215</height> | ||
| 108 | </size> | ||
| 109 | </property> | ||
| 110 | <property name="text"> | ||
| 111 | <string/> | ||
| 112 | </property> | ||
| 113 | <property name="alignment"> | ||
| 114 | <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set> | ||
| 115 | </property> | ||
| 116 | <property name="wordWrap"> | ||
| 117 | <bool>true</bool> | ||
| 118 | </property> | ||
| 119 | </widget> | ||
| 120 | </item> | ||
| 121 | </layout> | ||
| 122 | </widget> | ||
| 123 | </item> | ||
| 124 | </layout> | 38 | </layout> |
| 125 | </item> | 39 | </item> |
| 126 | <item> | 40 | <item> |
diff --git a/src/yuzu/configuration/configure_profile_manager.cpp b/src/yuzu/configuration/configure_profile_manager.cpp index ac849b01d..136614bf8 100644 --- a/src/yuzu/configuration/configure_profile_manager.cpp +++ b/src/yuzu/configuration/configure_profile_manager.cpp | |||
| @@ -76,7 +76,7 @@ QString GetProfileUsernameFromUser(QWidget* parent, const QString& description_t | |||
| 76 | } | 76 | } |
| 77 | } // Anonymous namespace | 77 | } // Anonymous namespace |
| 78 | 78 | ||
| 79 | ConfigureProfileManager ::ConfigureProfileManager(QWidget* parent) | 79 | ConfigureProfileManager::ConfigureProfileManager(QWidget* parent) |
| 80 | : QWidget(parent), ui(new Ui::ConfigureProfileManager), | 80 | : QWidget(parent), ui(new Ui::ConfigureProfileManager), |
| 81 | profile_manager(std::make_unique<Service::Account::ProfileManager>()) { | 81 | profile_manager(std::make_unique<Service::Account::ProfileManager>()) { |
| 82 | ui->setupUi(this); | 82 | ui->setupUi(this); |
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 3c2824362..552c2cc63 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -1384,6 +1384,9 @@ void GMainWindow::BootGame(const QString& filename, u64 program_id, std::size_t | |||
| 1384 | system.RegisterExecuteProgramCallback( | 1384 | system.RegisterExecuteProgramCallback( |
| 1385 | [this](std::size_t program_index) { render_window->ExecuteProgram(program_index); }); | 1385 | [this](std::size_t program_index) { render_window->ExecuteProgram(program_index); }); |
| 1386 | 1386 | ||
| 1387 | // Register an Exit callback such that Core can exit the currently running application. | ||
| 1388 | system.RegisterExitCallback([this]() { render_window->Exit(); }); | ||
| 1389 | |||
| 1387 | connect(render_window, &GRenderWindow::Closed, this, &GMainWindow::OnStopGame); | 1390 | connect(render_window, &GRenderWindow::Closed, this, &GMainWindow::OnStopGame); |
| 1388 | connect(render_window, &GRenderWindow::MouseActivity, this, &GMainWindow::OnMouseActivity); | 1391 | connect(render_window, &GRenderWindow::MouseActivity, this, &GMainWindow::OnMouseActivity); |
| 1389 | // BlockingQueuedConnection is important here, it makes sure we've finished refreshing our views | 1392 | // BlockingQueuedConnection is important here, it makes sure we've finished refreshing our views |
| @@ -2469,6 +2472,10 @@ void GMainWindow::OnExecuteProgram(std::size_t program_index) { | |||
| 2469 | BootGame(last_filename_booted, 0, program_index); | 2472 | BootGame(last_filename_booted, 0, program_index); |
| 2470 | } | 2473 | } |
| 2471 | 2474 | ||
| 2475 | void GMainWindow::OnExit() { | ||
| 2476 | OnStopGame(); | ||
| 2477 | } | ||
| 2478 | |||
| 2472 | void GMainWindow::ErrorDisplayDisplayError(QString error_code, QString error_text) { | 2479 | void GMainWindow::ErrorDisplayDisplayError(QString error_code, QString error_text) { |
| 2473 | OverlayDialog dialog(render_window, Core::System::GetInstance(), error_code, error_text, | 2480 | OverlayDialog dialog(render_window, Core::System::GetInstance(), error_code, error_text, |
| 2474 | QString{}, tr("OK"), Qt::AlignLeft | Qt::AlignVCenter); | 2481 | QString{}, tr("OK"), Qt::AlignLeft | Qt::AlignVCenter); |
| @@ -2913,8 +2920,13 @@ void GMainWindow::UpdateWindowTitle(std::string_view title_name, std::string_vie | |||
| 2913 | if (title_name.empty()) { | 2920 | if (title_name.empty()) { |
| 2914 | setWindowTitle(QString::fromStdString(window_title)); | 2921 | setWindowTitle(QString::fromStdString(window_title)); |
| 2915 | } else { | 2922 | } else { |
| 2916 | const auto run_title = | 2923 | const auto run_title = [window_title, title_name, title_version, gpu_vendor]() { |
| 2917 | fmt::format("{} | {} | {} | {}", window_title, title_name, title_version, gpu_vendor); | 2924 | if (title_version.empty()) { |
| 2925 | return fmt::format("{} | {} | {}", window_title, title_name, gpu_vendor); | ||
| 2926 | } | ||
| 2927 | return fmt::format("{} | {} | {} | {}", window_title, title_name, title_version, | ||
| 2928 | gpu_vendor); | ||
| 2929 | }(); | ||
| 2918 | setWindowTitle(QString::fromStdString(run_title)); | 2930 | setWindowTitle(QString::fromStdString(run_title)); |
| 2919 | } | 2931 | } |
| 2920 | } | 2932 | } |
diff --git a/src/yuzu/main.h b/src/yuzu/main.h index 36eed6103..60ce01471 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h | |||
| @@ -153,6 +153,7 @@ signals: | |||
| 153 | public slots: | 153 | public slots: |
| 154 | void OnLoadComplete(); | 154 | void OnLoadComplete(); |
| 155 | void OnExecuteProgram(std::size_t program_index); | 155 | void OnExecuteProgram(std::size_t program_index); |
| 156 | void OnExit(); | ||
| 156 | void ControllerSelectorReconfigureControllers( | 157 | void ControllerSelectorReconfigureControllers( |
| 157 | const Core::Frontend::ControllerParameters& parameters); | 158 | const Core::Frontend::ControllerParameters& parameters); |
| 158 | void SoftwareKeyboardInitialize( | 159 | void SoftwareKeyboardInitialize( |
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index d74eb7e2b..434518d53 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp | |||
| @@ -518,10 +518,6 @@ void Config::ReadValues() { | |||
| 518 | ReadSetting("WebService", Settings::values.web_api_url); | 518 | ReadSetting("WebService", Settings::values.web_api_url); |
| 519 | ReadSetting("WebService", Settings::values.yuzu_username); | 519 | ReadSetting("WebService", Settings::values.yuzu_username); |
| 520 | ReadSetting("WebService", Settings::values.yuzu_token); | 520 | ReadSetting("WebService", Settings::values.yuzu_token); |
| 521 | |||
| 522 | // Services | ||
| 523 | ReadSetting("Services", Settings::values.bcat_backend); | ||
| 524 | ReadSetting("Services", Settings::values.bcat_boxcat_local); | ||
| 525 | } | 521 | } |
| 526 | 522 | ||
| 527 | void Config::Reload() { | 523 | void Config::Reload() { |
diff --git a/src/yuzu_cmd/default_ini.h b/src/yuzu_cmd/default_ini.h index 72f3213fb..8119a50d8 100644 --- a/src/yuzu_cmd/default_ini.h +++ b/src/yuzu_cmd/default_ini.h | |||
| @@ -428,11 +428,6 @@ web_api_url = https://api.yuzu-emu.org | |||
| 428 | yuzu_username = | 428 | yuzu_username = |
| 429 | yuzu_token = | 429 | yuzu_token = |
| 430 | 430 | ||
| 431 | [Services] | ||
| 432 | # The name of the backend to use for BCAT | ||
| 433 | # If this is set to 'boxcat' boxcat will be used, otherwise a null implementation will be used | ||
| 434 | bcat_backend = | ||
| 435 | |||
| 436 | [AddOns] | 431 | [AddOns] |
| 437 | # Used to disable add-ons | 432 | # Used to disable add-ons |
| 438 | # List of title IDs of games that will have add-ons disabled (separated by '|'): | 433 | # List of title IDs of games that will have add-ons disabled (separated by '|'): |