diff options
23 files changed, 816 insertions, 805 deletions
diff --git a/.ci/scripts/android/eabuild.sh b/.ci/scripts/android/eabuild.sh new file mode 100644 index 000000000..1672f2948 --- /dev/null +++ b/.ci/scripts/android/eabuild.sh | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | #!/bin/bash -ex | ||
| 2 | |||
| 3 | # SPDX-FileCopyrightText: 2024 yuzu Emulator Project | ||
| 4 | # SPDX-License-Identifier: GPL-3.0-or-later | ||
| 5 | |||
| 6 | export NDK_CCACHE="$(which ccache)" | ||
| 7 | ccache -s | ||
| 8 | |||
| 9 | export ANDROID_KEYSTORE_FILE="${GITHUB_WORKSPACE}/ks.jks" | ||
| 10 | base64 --decode <<< "${EA_PLAY_ANDROID_KEYSTORE_B64}" > "${ANDROID_KEYSTORE_FILE}" | ||
| 11 | export ANDROID_KEY_ALIAS="${PLAY_ANDROID_KEY_ALIAS}" | ||
| 12 | export ANDROID_KEYSTORE_PASS="${PLAY_ANDROID_KEYSTORE_PASS}" | ||
| 13 | export SERVICE_ACCOUNT_KEY_PATH="${GITHUB_WORKSPACE}/sa.json" | ||
| 14 | base64 --decode <<< "${EA_SERVICE_ACCOUNT_KEY_B64}" > "${SERVICE_ACCOUNT_KEY_PATH}" | ||
| 15 | ./gradlew "publishEaReleaseBundle" | ||
| 16 | |||
| 17 | ccache -s | ||
| 18 | |||
| 19 | if [ ! -z "${ANDROID_KEYSTORE_B64}" ]; then | ||
| 20 | rm "${ANDROID_KEYSTORE_FILE}" | ||
| 21 | fi | ||
diff --git a/.ci/scripts/android/mainlinebuild.sh b/.ci/scripts/android/mainlinebuild.sh new file mode 100644 index 000000000..f3b89ed1c --- /dev/null +++ b/.ci/scripts/android/mainlinebuild.sh | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | #!/bin/bash -ex | ||
| 2 | |||
| 3 | # SPDX-FileCopyrightText: 2024 yuzu Emulator Project | ||
| 4 | # SPDX-License-Identifier: GPL-3.0-or-later | ||
| 5 | |||
| 6 | export NDK_CCACHE="$(which ccache)" | ||
| 7 | ccache -s | ||
| 8 | |||
| 9 | export ANDROID_KEYSTORE_FILE="${GITHUB_WORKSPACE}/ks.jks" | ||
| 10 | base64 --decode <<< "${MAINLINE_PLAY_ANDROID_KEYSTORE_B64}" > "${ANDROID_KEYSTORE_FILE}" | ||
| 11 | export ANDROID_KEY_ALIAS="${PLAY_ANDROID_KEY_ALIAS}" | ||
| 12 | export ANDROID_KEYSTORE_PASS="${PLAY_ANDROID_KEYSTORE_PASS}" | ||
| 13 | export SERVICE_ACCOUNT_KEY_PATH="${GITHUB_WORKSPACE}/sa.json" | ||
| 14 | base64 --decode <<< "${MAINLINE_SERVICE_ACCOUNT_KEY_B64}" > "${SERVICE_ACCOUNT_KEY_PATH}" | ||
| 15 | ./gradlew "publishMainlineReleaseBundle" | ||
| 16 | |||
| 17 | ccache -s | ||
| 18 | |||
| 19 | if [ ! -z "${ANDROID_KEYSTORE_B64}" ]; then | ||
| 20 | rm "${ANDROID_KEYSTORE_FILE}" | ||
| 21 | fi | ||
diff --git a/.github/workflows/android-ea-play-release.yml b/.github/workflows/android-ea-play-release.yml new file mode 100644 index 000000000..0cf78279c --- /dev/null +++ b/.github/workflows/android-ea-play-release.yml | |||
| @@ -0,0 +1,66 @@ | |||
| 1 | # SPDX-FileCopyrightText: 2024 yuzu Emulator Project | ||
| 2 | # SPDX-License-Identifier: GPL-2.0-or-later | ||
| 3 | |||
| 4 | name: yuzu-android-ea-play-release | ||
| 5 | |||
| 6 | on: | ||
| 7 | workflow_dispatch: | ||
| 8 | inputs: | ||
| 9 | release-track: | ||
| 10 | description: 'Play store release track (internal/alpha/beta/production)' | ||
| 11 | required: true | ||
| 12 | default: 'alpha' | ||
| 13 | |||
| 14 | jobs: | ||
| 15 | android: | ||
| 16 | runs-on: ubuntu-latest | ||
| 17 | if: ${{ github.repository == 'yuzu-emu/yuzu' }} | ||
| 18 | steps: | ||
| 19 | - uses: actions/checkout@v3 | ||
| 20 | name: Checkout | ||
| 21 | with: | ||
| 22 | fetch-depth: 0 | ||
| 23 | submodules: true | ||
| 24 | token: ${{ secrets.ALT_GITHUB_TOKEN }} | ||
| 25 | - run: npm install execa@5 | ||
| 26 | - uses: actions/github-script@v5 | ||
| 27 | name: 'Merge and publish Android EA changes' | ||
| 28 | env: | ||
| 29 | ALT_GITHUB_TOKEN: ${{ secrets.ALT_GITHUB_TOKEN }} | ||
| 30 | BUILD_EA: true | ||
| 31 | with: | ||
| 32 | script: | | ||
| 33 | const execa = require("execa"); | ||
| 34 | const mergebot = require('./.github/workflows/android-merge.js').mergebot; | ||
| 35 | process.chdir('${{ github.workspace }}'); | ||
| 36 | mergebot(github, context, execa); | ||
| 37 | - name: Get tag name | ||
| 38 | run: echo "GIT_TAG_NAME=$(cat tag-name.txt)" >> $GITHUB_ENV | ||
| 39 | - name: Set up JDK 17 | ||
| 40 | uses: actions/setup-java@v3 | ||
| 41 | with: | ||
| 42 | java-version: '17' | ||
| 43 | distribution: 'temurin' | ||
| 44 | - name: Install dependencies | ||
| 45 | run: | | ||
| 46 | sudo apt-get update | ||
| 47 | sudo apt-get install -y ccache apksigner glslang-dev glslang-tools | ||
| 48 | - name: Build | ||
| 49 | run: ./.ci/scripts/android/eabuild.sh | ||
| 50 | env: | ||
| 51 | EA_PLAY_ANDROID_KEYSTORE_B64: ${{ secrets.PLAY_ANDROID_KEYSTORE_B64 }} | ||
| 52 | PLAY_ANDROID_KEY_ALIAS: ${{ secrets.PLAY_ANDROID_KEY_ALIAS }} | ||
| 53 | PLAY_ANDROID_KEYSTORE_PASS: ${{ secrets.PLAY_ANDROID_KEYSTORE_PASS }} | ||
| 54 | EA_SERVICE_ACCOUNT_KEY_B64: ${{ secrets.EA_SERVICE_ACCOUNT_KEY_B64 }} | ||
| 55 | STORE_TRACK: ${{ github.event.inputs.release-track }} | ||
| 56 | AUTO_VERSIONED: true | ||
| 57 | BUILD_EA: true | ||
| 58 | - name: Create release | ||
| 59 | uses: softprops/action-gh-release@v1 | ||
| 60 | with: | ||
| 61 | tag_name: ${{ env.EA_TAG_NAME }} | ||
| 62 | name: ${{ env.EA_TAG_NAME }} | ||
| 63 | draft: false | ||
| 64 | prerelease: false | ||
| 65 | repository: yuzu/yuzu-android | ||
| 66 | token: ${{ secrets.ALT_GITHUB_TOKEN }} | ||
diff --git a/.github/workflows/android-mainline-play-release.yml b/.github/workflows/android-mainline-play-release.yml new file mode 100644 index 000000000..8255e0a40 --- /dev/null +++ b/.github/workflows/android-mainline-play-release.yml | |||
| @@ -0,0 +1,59 @@ | |||
| 1 | # SPDX-FileCopyrightText: 2024 yuzu Emulator Project | ||
| 2 | # SPDX-License-Identifier: GPL-2.0-or-later | ||
| 3 | |||
| 4 | name: yuzu-android-mainline-play-release | ||
| 5 | |||
| 6 | on: | ||
| 7 | workflow_dispatch: | ||
| 8 | inputs: | ||
| 9 | release-tag: | ||
| 10 | description: 'Tag # from yuzu-android that you want to build and publish' | ||
| 11 | required: true | ||
| 12 | default: '200' | ||
| 13 | release-track: | ||
| 14 | description: 'Play store release track (internal/alpha/beta/production)' | ||
| 15 | required: true | ||
| 16 | default: 'alpha' | ||
| 17 | |||
| 18 | jobs: | ||
| 19 | android: | ||
| 20 | runs-on: ubuntu-latest | ||
| 21 | if: ${{ github.repository == 'yuzu-emu/yuzu' }} | ||
| 22 | steps: | ||
| 23 | - uses: actions/checkout@v3 | ||
| 24 | name: Checkout | ||
| 25 | with: | ||
| 26 | fetch-depth: 0 | ||
| 27 | submodules: true | ||
| 28 | token: ${{ secrets.ALT_GITHUB_TOKEN }} | ||
| 29 | - run: npm install execa@5 | ||
| 30 | - uses: actions/github-script@v5 | ||
| 31 | name: 'Pull mainline tag' | ||
| 32 | env: | ||
| 33 | MAINLINE_TAG: ${{ github.event.inputs.release-tag }} | ||
| 34 | with: | ||
| 35 | script: | | ||
| 36 | const execa = require("execa"); | ||
| 37 | const mergebot = require('./.github/workflows/android-merge.js').getMainlineTag; | ||
| 38 | process.chdir('${{ github.workspace }}'); | ||
| 39 | mergebot(execa); | ||
| 40 | - name: Set up JDK 17 | ||
| 41 | uses: actions/setup-java@v3 | ||
| 42 | with: | ||
| 43 | java-version: '17' | ||
| 44 | distribution: 'temurin' | ||
| 45 | - name: Install dependencies | ||
| 46 | run: | | ||
| 47 | sudo apt-get update | ||
| 48 | sudo apt-get install -y ccache apksigner glslang-dev glslang-tools | ||
| 49 | - name: Build | ||
| 50 | run: | | ||
| 51 | echo "GIT_TAG_NAME=android-${{ github.event.inputs.releast-tag }}" >> $GITHUB_ENV | ||
| 52 | ./.ci/scripts/android/mainlinebuild.sh | ||
| 53 | env: | ||
| 54 | MAINLINE_PLAY_ANDROID_KEYSTORE_B64: ${{ secrets.PLAY_ANDROID_KEYSTORE_B64 }} | ||
| 55 | PLAY_ANDROID_KEY_ALIAS: ${{ secrets.PLAY_ANDROID_KEY_ALIAS }} | ||
| 56 | PLAY_ANDROID_KEYSTORE_PASS: ${{ secrets.PLAY_ANDROID_KEYSTORE_PASS }} | ||
| 57 | SERVICE_ACCOUNT_KEY_B64: ${{ secrets.MAINLINE_SERVICE_ACCOUNT_KEY_B64 }} | ||
| 58 | STORE_TRACK: ${{ github.event.inputs.release-track }} | ||
| 59 | AUTO_VERSIONED: true | ||
diff --git a/.github/workflows/android-merge.js b/.github/workflows/android-merge.js index 44ab56e44..315f81ba0 100644 --- a/.github/workflows/android-merge.js +++ b/.github/workflows/android-merge.js | |||
| @@ -6,9 +6,12 @@ | |||
| 6 | 6 | ||
| 7 | const fs = require("fs"); | 7 | const fs = require("fs"); |
| 8 | // which label to check for changes | 8 | // which label to check for changes |
| 9 | const CHANGE_LABEL = 'android-merge'; | 9 | const CHANGE_LABEL_MAINLINE = 'android-merge'; |
| 10 | const CHANGE_LABEL_EA = 'android-ea-merge'; | ||
| 10 | // how far back in time should we consider the changes are "recent"? (default: 24 hours) | 11 | // how far back in time should we consider the changes are "recent"? (default: 24 hours) |
| 11 | const DETECTION_TIME_FRAME = (parseInt(process.env.DETECTION_TIME_FRAME)) || (24 * 3600 * 1000); | 12 | const DETECTION_TIME_FRAME = (parseInt(process.env.DETECTION_TIME_FRAME)) || (24 * 3600 * 1000); |
| 13 | const BUILD_EA = process.env.BUILD_EA == 'true'; | ||
| 14 | const MAINLINE_TAG = process.env.MAINLINE_TAG; | ||
| 12 | 15 | ||
| 13 | async function checkBaseChanges(github) { | 16 | async function checkBaseChanges(github) { |
| 14 | // query the commit date of the latest commit on this branch | 17 | // query the commit date of the latest commit on this branch |
| @@ -40,20 +43,7 @@ async function checkBaseChanges(github) { | |||
| 40 | 43 | ||
| 41 | async function checkAndroidChanges(github) { | 44 | async function checkAndroidChanges(github) { |
| 42 | if (checkBaseChanges(github)) return true; | 45 | if (checkBaseChanges(github)) return true; |
| 43 | const query = `query($owner:String!, $name:String!, $label:String!) { | 46 | const pulls = getPulls(github, false); |
| 44 | repository(name:$name, owner:$owner) { | ||
| 45 | pullRequests(labels: [$label], states: OPEN, first: 100) { | ||
| 46 | nodes { number headRepository { pushedAt } } | ||
| 47 | } | ||
| 48 | } | ||
| 49 | }`; | ||
| 50 | const variables = { | ||
| 51 | owner: 'yuzu-emu', | ||
| 52 | name: 'yuzu', | ||
| 53 | label: CHANGE_LABEL, | ||
| 54 | }; | ||
| 55 | const result = await github.graphql(query, variables); | ||
| 56 | const pulls = result.repository.pullRequests.nodes; | ||
| 57 | for (let i = 0; i < pulls.length; i++) { | 47 | for (let i = 0; i < pulls.length; i++) { |
| 58 | let pull = pulls[i]; | 48 | let pull = pulls[i]; |
| 59 | if (new Date() - new Date(pull.headRepository.pushedAt) <= DETECTION_TIME_FRAME) { | 49 | if (new Date() - new Date(pull.headRepository.pushedAt) <= DETECTION_TIME_FRAME) { |
| @@ -83,7 +73,13 @@ async function tagAndPush(github, owner, repo, execa, commit=false) { | |||
| 83 | }; | 73 | }; |
| 84 | const tags = await github.graphql(query, variables); | 74 | const tags = await github.graphql(query, variables); |
| 85 | const tagList = tags.repository.refs.nodes; | 75 | const tagList = tags.repository.refs.nodes; |
| 86 | const lastTag = tagList[0] ? tagList[0].name : 'dummy-0'; | 76 | let lastTag = 'android-1'; |
| 77 | for (let i = 0; i < tagList.length; ++i) { | ||
| 78 | if (tagList[i].name.includes('android-')) { | ||
| 79 | lastTag = tagList[i].name; | ||
| 80 | break; | ||
| 81 | } | ||
| 82 | } | ||
| 87 | const tagNumber = /\w+-(\d+)/.exec(lastTag)[1] | 0; | 83 | const tagNumber = /\w+-(\d+)/.exec(lastTag)[1] | 0; |
| 88 | const channel = repo.split('-')[1]; | 84 | const channel = repo.split('-')[1]; |
| 89 | const newTag = `${channel}-${tagNumber + 1}`; | 85 | const newTag = `${channel}-${tagNumber + 1}`; |
| @@ -101,6 +97,48 @@ async function tagAndPush(github, owner, repo, execa, commit=false) { | |||
| 101 | console.info('Successfully pushed new changes.'); | 97 | console.info('Successfully pushed new changes.'); |
| 102 | } | 98 | } |
| 103 | 99 | ||
| 100 | async function tagAndPushEA(github, owner, repo, execa) { | ||
| 101 | let altToken = process.env.ALT_GITHUB_TOKEN; | ||
| 102 | if (!altToken) { | ||
| 103 | throw `Please set ALT_GITHUB_TOKEN environment variable. This token should have write access to ${owner}/${repo}.`; | ||
| 104 | } | ||
| 105 | const query = `query ($owner:String!, $name:String!) { | ||
| 106 | repository(name:$name, owner:$owner) { | ||
| 107 | refs(refPrefix: "refs/tags/", orderBy: {field: TAG_COMMIT_DATE, direction: DESC}, first: 10) { | ||
| 108 | nodes { name } | ||
| 109 | } | ||
| 110 | } | ||
| 111 | }`; | ||
| 112 | const variables = { | ||
| 113 | owner: owner, | ||
| 114 | name: repo, | ||
| 115 | }; | ||
| 116 | const tags = await github.graphql(query, variables); | ||
| 117 | const tagList = tags.repository.refs.nodes; | ||
| 118 | let lastTag = 'ea-1'; | ||
| 119 | for (let i = 0; i < tagList.length; ++i) { | ||
| 120 | if (tagList[i].name.includes('ea-')) { | ||
| 121 | lastTag = tagList[i].name; | ||
| 122 | break; | ||
| 123 | } | ||
| 124 | } | ||
| 125 | const tagNumber = /\w+-(\d+)/.exec(lastTag)[1] | 0; | ||
| 126 | const newTag = `ea-${tagNumber + 1}`; | ||
| 127 | console.log(`New tag: ${newTag}`); | ||
| 128 | console.info('Pushing tags to GitHub ...'); | ||
| 129 | await execa("git", ["remote", "add", "android", "https://github.com/yuzu-emu/yuzu-android.git"]); | ||
| 130 | await execa("git", ["fetch", "android"]); | ||
| 131 | |||
| 132 | await execa("git", ['tag', newTag]); | ||
| 133 | await execa("git", ['push', 'android', `${newTag}`]); | ||
| 134 | |||
| 135 | fs.writeFile('tag-name.txt', newTag, (err) => { | ||
| 136 | if (err) throw 'Could not write tag name to file!' | ||
| 137 | }) | ||
| 138 | |||
| 139 | console.info('Successfully pushed new changes.'); | ||
| 140 | } | ||
| 141 | |||
| 104 | async function generateReadme(pulls, context, mergeResults, execa) { | 142 | async function generateReadme(pulls, context, mergeResults, execa) { |
| 105 | let baseUrl = `https://github.com/${context.repo.owner}/${context.repo.repo}/`; | 143 | let baseUrl = `https://github.com/${context.repo.owner}/${context.repo.repo}/`; |
| 106 | let output = | 144 | let output = |
| @@ -202,10 +240,7 @@ async function resetBranch(execa) { | |||
| 202 | } | 240 | } |
| 203 | } | 241 | } |
| 204 | 242 | ||
| 205 | async function mergebot(github, context, execa) { | 243 | async function getPulls(github) { |
| 206 | // Reset our local copy of master to what appears on yuzu-emu/yuzu - master | ||
| 207 | await resetBranch(execa); | ||
| 208 | |||
| 209 | const query = `query ($owner:String!, $name:String!, $label:String!) { | 244 | const query = `query ($owner:String!, $name:String!, $label:String!) { |
| 210 | repository(name:$name, owner:$owner) { | 245 | repository(name:$name, owner:$owner) { |
| 211 | pullRequests(labels: [$label], states: OPEN, first: 100) { | 246 | pullRequests(labels: [$label], states: OPEN, first: 100) { |
| @@ -215,13 +250,49 @@ async function mergebot(github, context, execa) { | |||
| 215 | } | 250 | } |
| 216 | } | 251 | } |
| 217 | }`; | 252 | }`; |
| 218 | const variables = { | 253 | const mainlineVariables = { |
| 219 | owner: 'yuzu-emu', | 254 | owner: 'yuzu-emu', |
| 220 | name: 'yuzu', | 255 | name: 'yuzu', |
| 221 | label: CHANGE_LABEL, | 256 | label: CHANGE_LABEL_MAINLINE, |
| 222 | }; | 257 | }; |
| 223 | const result = await github.graphql(query, variables); | 258 | const mainlineResult = await github.graphql(query, mainlineVariables); |
| 224 | const pulls = result.repository.pullRequests.nodes; | 259 | const pulls = mainlineResult.repository.pullRequests.nodes; |
| 260 | if (BUILD_EA) { | ||
| 261 | const eaVariables = { | ||
| 262 | owner: 'yuzu-emu', | ||
| 263 | name: 'yuzu', | ||
| 264 | label: CHANGE_LABEL_EA, | ||
| 265 | }; | ||
| 266 | const eaResult = await github.graphql(query, eaVariables); | ||
| 267 | const eaPulls = eaResult.repository.pullRequests.nodes; | ||
| 268 | return pulls.concat(eaPulls); | ||
| 269 | } | ||
| 270 | return pulls; | ||
| 271 | } | ||
| 272 | |||
| 273 | async function getMainlineTag(execa) { | ||
| 274 | console.log(`::group::Getting mainline tag android-${MAINLINE_TAG}`); | ||
| 275 | let hasFailed = false; | ||
| 276 | try { | ||
| 277 | await execa("git", ["remote", "add", "mainline", "https://github.com/yuzu-emu/yuzu-android.git"]); | ||
| 278 | await execa("git", ["fetch", "mainline", "--tags"]); | ||
| 279 | await execa("git", ["checkout", `tags/android-${MAINLINE_TAG}`]); | ||
| 280 | await execa("git", ["submodule", "update", "--init", "--recursive"]); | ||
| 281 | } catch (err) { | ||
| 282 | console.log('::error title=Failed pull tag'); | ||
| 283 | hasFailed = true; | ||
| 284 | } | ||
| 285 | console.log("::endgroup::"); | ||
| 286 | if (hasFailed) { | ||
| 287 | throw 'Failed pull mainline tag. Aborting!'; | ||
| 288 | } | ||
| 289 | } | ||
| 290 | |||
| 291 | async function mergebot(github, context, execa) { | ||
| 292 | // Reset our local copy of master to what appears on yuzu-emu/yuzu - master | ||
| 293 | await resetBranch(execa); | ||
| 294 | |||
| 295 | const pulls = await getPulls(github); | ||
| 225 | let displayList = []; | 296 | let displayList = []; |
| 226 | for (let i = 0; i < pulls.length; i++) { | 297 | for (let i = 0; i < pulls.length; i++) { |
| 227 | let pull = pulls[i]; | 298 | let pull = pulls[i]; |
| @@ -231,11 +302,17 @@ async function mergebot(github, context, execa) { | |||
| 231 | console.table(displayList); | 302 | console.table(displayList); |
| 232 | await fetchPullRequests(pulls, "https://github.com/yuzu-emu/yuzu", execa); | 303 | await fetchPullRequests(pulls, "https://github.com/yuzu-emu/yuzu", execa); |
| 233 | const mergeResults = await mergePullRequests(pulls, execa); | 304 | const mergeResults = await mergePullRequests(pulls, execa); |
| 234 | await generateReadme(pulls, context, mergeResults, execa); | 305 | |
| 235 | await tagAndPush(github, 'yuzu-emu', `yuzu-android`, execa, true); | 306 | if (BUILD_EA) { |
| 307 | await tagAndPushEA(github, 'yuzu-emu', `yuzu-android`, execa); | ||
| 308 | } else { | ||
| 309 | await generateReadme(pulls, context, mergeResults, execa); | ||
| 310 | await tagAndPush(github, 'yuzu-emu', `yuzu-android`, execa, true); | ||
| 311 | } | ||
| 236 | } | 312 | } |
| 237 | 313 | ||
| 238 | module.exports.mergebot = mergebot; | 314 | module.exports.mergebot = mergebot; |
| 239 | module.exports.checkAndroidChanges = checkAndroidChanges; | 315 | module.exports.checkAndroidChanges = checkAndroidChanges; |
| 240 | module.exports.tagAndPush = tagAndPush; | 316 | module.exports.tagAndPush = tagAndPush; |
| 241 | module.exports.checkBaseChanges = checkBaseChanges; | 317 | module.exports.checkBaseChanges = checkBaseChanges; |
| 318 | module.exports.getMainlineTag = getMainlineTag; | ||
diff --git a/.github/workflows/android-publish.yml b/.github/workflows/android-publish.yml index 68e21c2f2..61f739e96 100644 --- a/.github/workflows/android-publish.yml +++ b/.github/workflows/android-publish.yml | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | # SPDX-FileCopyrightText: 2023 yuzu Emulator Project | 1 | # SPDX-FileCopyrightText: 2024 yuzu Emulator Project |
| 2 | # SPDX-License-Identifier: GPL-2.0-or-later | 2 | # SPDX-License-Identifier: GPL-2.0-or-later |
| 3 | 3 | ||
| 4 | name: yuzu-android-publish | 4 | name: yuzu-android-publish |
| @@ -16,7 +16,7 @@ on: | |||
| 16 | jobs: | 16 | jobs: |
| 17 | android: | 17 | android: |
| 18 | runs-on: ubuntu-latest | 18 | runs-on: ubuntu-latest |
| 19 | if: ${{ github.event.inputs.android != 'false' && github.repository == 'yuzu-emu/yuzu-android' }} | 19 | if: ${{ github.event.inputs.android != 'false' && github.repository == 'yuzu-emu/yuzu' }} |
| 20 | steps: | 20 | steps: |
| 21 | # this checkout is required to make sure the GitHub Actions scripts are available | 21 | # this checkout is required to make sure the GitHub Actions scripts are available |
| 22 | - uses: actions/checkout@v3 | 22 | - uses: actions/checkout@v3 |
diff --git a/src/android/app/build.gradle.kts b/src/android/app/build.gradle.kts index 188ef9469..d44bb4c74 100644 --- a/src/android/app/build.gradle.kts +++ b/src/android/app/build.gradle.kts | |||
| @@ -3,8 +3,8 @@ | |||
| 3 | 3 | ||
| 4 | import android.annotation.SuppressLint | 4 | import android.annotation.SuppressLint |
| 5 | import kotlin.collections.setOf | 5 | import kotlin.collections.setOf |
| 6 | import org.jetbrains.kotlin.konan.properties.Properties | ||
| 7 | import org.jlleitschuh.gradle.ktlint.reporter.ReporterType | 6 | import org.jlleitschuh.gradle.ktlint.reporter.ReporterType |
| 7 | import com.github.triplet.gradle.androidpublisher.ReleaseStatus | ||
| 8 | 8 | ||
| 9 | plugins { | 9 | plugins { |
| 10 | id("com.android.application") | 10 | id("com.android.application") |
| @@ -13,6 +13,7 @@ plugins { | |||
| 13 | kotlin("plugin.serialization") version "1.9.20" | 13 | kotlin("plugin.serialization") version "1.9.20" |
| 14 | id("androidx.navigation.safeargs.kotlin") | 14 | id("androidx.navigation.safeargs.kotlin") |
| 15 | id("org.jlleitschuh.gradle.ktlint") version "11.4.0" | 15 | id("org.jlleitschuh.gradle.ktlint") version "11.4.0" |
| 16 | id("com.github.triplet.play") version "3.8.6" | ||
| 16 | } | 17 | } |
| 17 | 18 | ||
| 18 | /** | 19 | /** |
| @@ -58,15 +59,7 @@ android { | |||
| 58 | targetSdk = 34 | 59 | targetSdk = 34 |
| 59 | versionName = getGitVersion() | 60 | versionName = getGitVersion() |
| 60 | 61 | ||
| 61 | // If you want to use autoVersion for the versionCode, create a property in local.properties | 62 | versionCode = if (System.getenv("AUTO_VERSIONED") == "true") { |
| 62 | // named "autoVersioned" and set it to "true" | ||
| 63 | val properties = Properties() | ||
| 64 | val versionProperty = try { | ||
| 65 | properties.load(project.rootProject.file("local.properties").inputStream()) | ||
| 66 | properties.getProperty("autoVersioned") ?: "" | ||
| 67 | } catch (e: Exception) { "" } | ||
| 68 | |||
| 69 | versionCode = if (versionProperty == "true") { | ||
| 70 | autoVersion | 63 | autoVersion |
| 71 | } else { | 64 | } else { |
| 72 | 1 | 65 | 1 |
| @@ -221,6 +214,15 @@ ktlint { | |||
| 221 | } | 214 | } |
| 222 | } | 215 | } |
| 223 | 216 | ||
| 217 | play { | ||
| 218 | val keyPath = System.getenv("SERVICE_ACCOUNT_KEY_PATH") | ||
| 219 | if (keyPath != null) { | ||
| 220 | serviceAccountCredentials.set(File(keyPath)) | ||
| 221 | } | ||
| 222 | track.set(System.getenv("STORE_TRACK") ?: "internal") | ||
| 223 | releaseStatus.set(ReleaseStatus.COMPLETED) | ||
| 224 | } | ||
| 225 | |||
| 224 | dependencies { | 226 | dependencies { |
| 225 | implementation("androidx.core:core-ktx:1.12.0") | 227 | implementation("androidx.core:core-ktx:1.12.0") |
| 226 | implementation("androidx.appcompat:appcompat:1.6.1") | 228 | implementation("androidx.appcompat:appcompat:1.6.1") |
| @@ -257,14 +259,13 @@ fun runGitCommand(command: List<String>): String { | |||
| 257 | } | 259 | } |
| 258 | 260 | ||
| 259 | fun getGitVersion(): String { | 261 | fun getGitVersion(): String { |
| 262 | val gitVersion = runGitCommand(listOf("git", "describe", "--always", "--long")) | ||
| 260 | val versionName = if (System.getenv("GITHUB_ACTIONS") != null) { | 263 | val versionName = if (System.getenv("GITHUB_ACTIONS") != null) { |
| 261 | val gitTag = System.getenv("GIT_TAG_NAME") ?: "" | 264 | System.getenv("GIT_TAG_NAME") ?: gitVersion |
| 262 | gitTag | ||
| 263 | } else { | 265 | } else { |
| 264 | runGitCommand(listOf("git", "describe", "--always", "--long")) | 266 | gitVersion |
| 265 | .replace(Regex("(-0)?-[^-]+$"), "") | ||
| 266 | } | 267 | } |
| 267 | return versionName.ifEmpty { "0.0" } | 268 | return versionName.replace(Regex("(-0)?-[^-]+$"), "").ifEmpty { "0.0" } |
| 268 | } | 269 | } |
| 269 | 270 | ||
| 270 | fun getGitHash(): String = | 271 | fun getGitHash(): String = |
diff --git a/src/core/hle/service/hid/hid_debug_server.cpp b/src/core/hle/service/hid/hid_debug_server.cpp index 610af34dd..4e2663672 100644 --- a/src/core/hle/service/hid/hid_debug_server.cpp +++ b/src/core/hle/service/hid/hid_debug_server.cpp | |||
| @@ -3,6 +3,7 @@ | |||
| 3 | 3 | ||
| 4 | #include <algorithm> | 4 | #include <algorithm> |
| 5 | 5 | ||
| 6 | #include "core/hle/service/cmif_serialization.h" | ||
| 6 | #include "core/hle/service/hid/hid_debug_server.h" | 7 | #include "core/hle/service/hid/hid_debug_server.h" |
| 7 | #include "core/hle/service/ipc_helpers.h" | 8 | #include "core/hle/service/ipc_helpers.h" |
| 8 | #include "hid_core/hid_types.h" | 9 | #include "hid_core/hid_types.h" |
| @@ -11,7 +12,6 @@ | |||
| 11 | 12 | ||
| 12 | #include "hid_core/resources/touch_screen/gesture.h" | 13 | #include "hid_core/resources/touch_screen/gesture.h" |
| 13 | #include "hid_core/resources/touch_screen/touch_screen.h" | 14 | #include "hid_core/resources/touch_screen/touch_screen.h" |
| 14 | #include "hid_core/resources/touch_screen/touch_types.h" | ||
| 15 | 15 | ||
| 16 | namespace Service::HID { | 16 | namespace Service::HID { |
| 17 | 17 | ||
| @@ -24,14 +24,14 @@ IHidDebugServer::IHidDebugServer(Core::System& system_, std::shared_ptr<Resource | |||
| 24 | {0, nullptr, "DeactivateDebugPad"}, | 24 | {0, nullptr, "DeactivateDebugPad"}, |
| 25 | {1, nullptr, "SetDebugPadAutoPilotState"}, | 25 | {1, nullptr, "SetDebugPadAutoPilotState"}, |
| 26 | {2, nullptr, "UnsetDebugPadAutoPilotState"}, | 26 | {2, nullptr, "UnsetDebugPadAutoPilotState"}, |
| 27 | {10, &IHidDebugServer::DeactivateTouchScreen, "DeactivateTouchScreen"}, | 27 | {10, C<&IHidDebugServer::DeactivateTouchScreen>, "DeactivateTouchScreen"}, |
| 28 | {11, &IHidDebugServer::SetTouchScreenAutoPilotState, "SetTouchScreenAutoPilotState"}, | 28 | {11, C<&IHidDebugServer::SetTouchScreenAutoPilotState>, "SetTouchScreenAutoPilotState"}, |
| 29 | {12, &IHidDebugServer::UnsetTouchScreenAutoPilotState, "UnsetTouchScreenAutoPilotState"}, | 29 | {12, C<&IHidDebugServer::UnsetTouchScreenAutoPilotState>, "UnsetTouchScreenAutoPilotState"}, |
| 30 | {13, &IHidDebugServer::GetTouchScreenConfiguration, "GetTouchScreenConfiguration"}, | 30 | {13, C<&IHidDebugServer::GetTouchScreenConfiguration>, "GetTouchScreenConfiguration"}, |
| 31 | {14, &IHidDebugServer::ProcessTouchScreenAutoTune, "ProcessTouchScreenAutoTune"}, | 31 | {14, C<&IHidDebugServer::ProcessTouchScreenAutoTune>, "ProcessTouchScreenAutoTune"}, |
| 32 | {15, &IHidDebugServer::ForceStopTouchScreenManagement, "ForceStopTouchScreenManagement"}, | 32 | {15, C<&IHidDebugServer::ForceStopTouchScreenManagement>, "ForceStopTouchScreenManagement"}, |
| 33 | {16, &IHidDebugServer::ForceRestartTouchScreenManagement, "ForceRestartTouchScreenManagement"}, | 33 | {16, C<&IHidDebugServer::ForceRestartTouchScreenManagement>, "ForceRestartTouchScreenManagement"}, |
| 34 | {17, &IHidDebugServer::IsTouchScreenManaged, "IsTouchScreenManaged"}, | 34 | {17, C<&IHidDebugServer::IsTouchScreenManaged>, "IsTouchScreenManaged"}, |
| 35 | {20, nullptr, "DeactivateMouse"}, | 35 | {20, nullptr, "DeactivateMouse"}, |
| 36 | {21, nullptr, "SetMouseAutoPilotState"}, | 36 | {21, nullptr, "SetMouseAutoPilotState"}, |
| 37 | {22, nullptr, "UnsetMouseAutoPilotState"}, | 37 | {22, nullptr, "UnsetMouseAutoPilotState"}, |
| @@ -47,7 +47,7 @@ IHidDebugServer::IHidDebugServer(Core::System& system_, std::shared_ptr<Resource | |||
| 47 | {60, nullptr, "ClearNpadSystemCommonPolicy"}, | 47 | {60, nullptr, "ClearNpadSystemCommonPolicy"}, |
| 48 | {61, nullptr, "DeactivateNpad"}, | 48 | {61, nullptr, "DeactivateNpad"}, |
| 49 | {62, nullptr, "ForceDisconnectNpad"}, | 49 | {62, nullptr, "ForceDisconnectNpad"}, |
| 50 | {91, &IHidDebugServer::DeactivateGesture, "DeactivateGesture"}, | 50 | {91, C<&IHidDebugServer::DeactivateGesture>, "DeactivateGesture"}, |
| 51 | {110, nullptr, "DeactivateHomeButton"}, | 51 | {110, nullptr, "DeactivateHomeButton"}, |
| 52 | {111, nullptr, "SetHomeButtonAutoPilotState"}, | 52 | {111, nullptr, "SetHomeButtonAutoPilotState"}, |
| 53 | {112, nullptr, "UnsetHomeButtonAutoPilotState"}, | 53 | {112, nullptr, "UnsetHomeButtonAutoPilotState"}, |
| @@ -160,169 +160,122 @@ IHidDebugServer::IHidDebugServer(Core::System& system_, std::shared_ptr<Resource | |||
| 160 | } | 160 | } |
| 161 | 161 | ||
| 162 | IHidDebugServer::~IHidDebugServer() = default; | 162 | IHidDebugServer::~IHidDebugServer() = default; |
| 163 | void IHidDebugServer::DeactivateTouchScreen(HLERequestContext& ctx) { | ||
| 164 | LOG_INFO(Service_HID, "called"); | ||
| 165 | 163 | ||
| 166 | Result result = ResultSuccess; | 164 | Result IHidDebugServer::DeactivateTouchScreen() { |
| 165 | LOG_INFO(Service_HID, "called"); | ||
| 167 | 166 | ||
| 168 | if (!firmware_settings->IsDeviceManaged()) { | 167 | if (!firmware_settings->IsDeviceManaged()) { |
| 169 | result = GetResourceManager()->GetTouchScreen()->Deactivate(); | 168 | R_RETURN(GetResourceManager()->GetTouchScreen()->Deactivate()); |
| 170 | } | 169 | } |
| 171 | 170 | ||
| 172 | IPC::ResponseBuilder rb{ctx, 2}; | 171 | R_SUCCEED(); |
| 173 | rb.Push(result); | ||
| 174 | } | 172 | } |
| 175 | 173 | ||
| 176 | void IHidDebugServer::SetTouchScreenAutoPilotState(HLERequestContext& ctx) { | 174 | Result IHidDebugServer::SetTouchScreenAutoPilotState( |
| 175 | InArray<TouchState, BufferAttr_HipcMapAlias> auto_pilot_buffer) { | ||
| 177 | AutoPilotState auto_pilot{}; | 176 | AutoPilotState auto_pilot{}; |
| 178 | auto_pilot.count = ctx.GetReadBufferNumElements<TouchState>(); | ||
| 179 | const auto buffer = ctx.ReadBuffer(); | ||
| 180 | 177 | ||
| 181 | auto_pilot.count = std::min(auto_pilot.count, static_cast<u64>(auto_pilot.state.size())); | 178 | auto_pilot.count = |
| 182 | memcpy(auto_pilot.state.data(), buffer.data(), auto_pilot.count * sizeof(TouchState)); | 179 | static_cast<u64>(std::min(auto_pilot_buffer.size(), auto_pilot.state.size())); |
| 180 | memcpy(auto_pilot.state.data(), auto_pilot_buffer.data(), | ||
| 181 | auto_pilot.count * sizeof(TouchState)); | ||
| 183 | 182 | ||
| 184 | LOG_INFO(Service_HID, "called, auto_pilot_count={}", auto_pilot.count); | 183 | LOG_INFO(Service_HID, "called, auto_pilot_count={}", auto_pilot.count); |
| 185 | 184 | ||
| 186 | const Result result = | 185 | R_RETURN(GetResourceManager()->GetTouchScreen()->SetTouchScreenAutoPilotState(auto_pilot)); |
| 187 | GetResourceManager()->GetTouchScreen()->SetTouchScreenAutoPilotState(auto_pilot); | ||
| 188 | |||
| 189 | IPC::ResponseBuilder rb{ctx, 2}; | ||
| 190 | rb.Push(result); | ||
| 191 | } | 186 | } |
| 192 | 187 | ||
| 193 | void IHidDebugServer::UnsetTouchScreenAutoPilotState(HLERequestContext& ctx) { | 188 | Result IHidDebugServer::UnsetTouchScreenAutoPilotState() { |
| 194 | LOG_INFO(Service_HID, "called"); | 189 | LOG_INFO(Service_HID, "called"); |
| 195 | 190 | R_RETURN(GetResourceManager()->GetTouchScreen()->UnsetTouchScreenAutoPilotState()); | |
| 196 | const Result result = GetResourceManager()->GetTouchScreen()->UnsetTouchScreenAutoPilotState(); | ||
| 197 | |||
| 198 | IPC::ResponseBuilder rb{ctx, 2}; | ||
| 199 | rb.Push(result); | ||
| 200 | } | 191 | } |
| 201 | 192 | ||
| 202 | void IHidDebugServer::GetTouchScreenConfiguration(HLERequestContext& ctx) { | 193 | Result IHidDebugServer::GetTouchScreenConfiguration( |
| 203 | IPC::RequestParser rp{ctx}; | 194 | Out<Core::HID::TouchScreenConfigurationForNx> out_touchscreen_config, |
| 204 | const auto applet_resource_user_id{rp.Pop<u64>()}; | 195 | ClientAppletResourceUserId aruid) { |
| 205 | 196 | LOG_INFO(Service_HID, "called, applet_resource_user_id={}", aruid.pid); | |
| 206 | LOG_INFO(Service_HID, "called, applet_resource_user_id={}", applet_resource_user_id); | ||
| 207 | 197 | ||
| 208 | Core::HID::TouchScreenConfigurationForNx touchscreen_config{}; | 198 | R_TRY(GetResourceManager()->GetTouchScreen()->GetTouchScreenConfiguration( |
| 209 | const Result result = GetResourceManager()->GetTouchScreen()->GetTouchScreenConfiguration( | 199 | *out_touchscreen_config, aruid.pid)); |
| 210 | touchscreen_config, applet_resource_user_id); | ||
| 211 | 200 | ||
| 212 | if (touchscreen_config.mode != Core::HID::TouchScreenModeForNx::Heat2 && | 201 | if (out_touchscreen_config->mode != Core::HID::TouchScreenModeForNx::Heat2 && |
| 213 | touchscreen_config.mode != Core::HID::TouchScreenModeForNx::Finger) { | 202 | out_touchscreen_config->mode != Core::HID::TouchScreenModeForNx::Finger) { |
| 214 | touchscreen_config.mode = Core::HID::TouchScreenModeForNx::UseSystemSetting; | 203 | out_touchscreen_config->mode = Core::HID::TouchScreenModeForNx::UseSystemSetting; |
| 215 | } | 204 | } |
| 216 | 205 | ||
| 217 | IPC::ResponseBuilder rb{ctx, 6}; | 206 | R_SUCCEED(); |
| 218 | rb.Push(result); | ||
| 219 | rb.PushRaw(touchscreen_config); | ||
| 220 | } | 207 | } |
| 221 | 208 | ||
| 222 | void IHidDebugServer::ProcessTouchScreenAutoTune(HLERequestContext& ctx) { | 209 | Result IHidDebugServer::ProcessTouchScreenAutoTune() { |
| 223 | LOG_INFO(Service_HID, "called"); | 210 | LOG_INFO(Service_HID, "called"); |
| 224 | 211 | R_RETURN(GetResourceManager()->GetTouchScreen()->ProcessTouchScreenAutoTune()); | |
| 225 | Result result = GetResourceManager()->GetTouchScreen()->ProcessTouchScreenAutoTune(); | ||
| 226 | |||
| 227 | IPC::ResponseBuilder rb{ctx, 2}; | ||
| 228 | rb.Push(result); | ||
| 229 | } | 212 | } |
| 230 | 213 | ||
| 231 | void IHidDebugServer::ForceStopTouchScreenManagement(HLERequestContext& ctx) { | 214 | Result IHidDebugServer::ForceStopTouchScreenManagement() { |
| 232 | LOG_INFO(Service_HID, "called"); | 215 | LOG_INFO(Service_HID, "called"); |
| 233 | 216 | ||
| 234 | if (!firmware_settings->IsDeviceManaged()) { | 217 | if (!firmware_settings->IsDeviceManaged()) { |
| 235 | IPC::ResponseBuilder rb{ctx, 2}; | 218 | R_SUCCEED(); |
| 236 | rb.Push(ResultSuccess); | ||
| 237 | return; | ||
| 238 | } | 219 | } |
| 239 | 220 | ||
| 240 | Result result = ResultSuccess; | ||
| 241 | bool is_touch_active{}; | ||
| 242 | bool is_gesture_active{}; | ||
| 243 | auto touch_screen = GetResourceManager()->GetTouchScreen(); | 221 | auto touch_screen = GetResourceManager()->GetTouchScreen(); |
| 244 | auto gesture = GetResourceManager()->GetGesture(); | 222 | auto gesture = GetResourceManager()->GetGesture(); |
| 245 | 223 | ||
| 246 | if (firmware_settings->IsTouchI2cManaged()) { | 224 | if (firmware_settings->IsTouchI2cManaged()) { |
| 247 | result = touch_screen->IsActive(is_touch_active); | 225 | bool is_touch_active{}; |
| 248 | if (result.IsSuccess()) { | 226 | bool is_gesture_active{}; |
| 249 | result = gesture->IsActive(is_gesture_active); | 227 | R_TRY(touch_screen->IsActive(is_touch_active)); |
| 250 | } | 228 | R_TRY(gesture->IsActive(is_gesture_active)); |
| 251 | if (result.IsSuccess() && is_touch_active) { | 229 | |
| 252 | result = touch_screen->Deactivate(); | 230 | if (is_touch_active) { |
| 231 | R_TRY(touch_screen->Deactivate()); | ||
| 253 | } | 232 | } |
| 254 | if (result.IsSuccess() && is_gesture_active) { | 233 | if (is_gesture_active) { |
| 255 | result = gesture->Deactivate(); | 234 | R_TRY(gesture->Deactivate()); |
| 256 | } | 235 | } |
| 257 | } | 236 | } |
| 258 | 237 | ||
| 259 | IPC::ResponseBuilder rb{ctx, 2}; | 238 | R_SUCCEED(); |
| 260 | rb.Push(result); | ||
| 261 | } | 239 | } |
| 262 | 240 | ||
| 263 | void IHidDebugServer::ForceRestartTouchScreenManagement(HLERequestContext& ctx) { | 241 | Result IHidDebugServer::ForceRestartTouchScreenManagement(u32 basic_gesture_id, |
| 264 | IPC::RequestParser rp{ctx}; | 242 | ClientAppletResourceUserId aruid) { |
| 265 | struct Parameters { | ||
| 266 | u32 basic_gesture_id; | ||
| 267 | INSERT_PADDING_WORDS_NOINIT(1); | ||
| 268 | u64 applet_resource_user_id; | ||
| 269 | }; | ||
| 270 | static_assert(sizeof(Parameters) == 0x10, "Parameters has incorrect size."); | ||
| 271 | |||
| 272 | const auto parameters{rp.PopRaw<Parameters>()}; | ||
| 273 | |||
| 274 | LOG_INFO(Service_HID, "called, basic_gesture_id={}, applet_resource_user_id={}", | 243 | LOG_INFO(Service_HID, "called, basic_gesture_id={}, applet_resource_user_id={}", |
| 275 | parameters.basic_gesture_id, parameters.applet_resource_user_id); | 244 | basic_gesture_id, aruid.pid); |
| 276 | 245 | ||
| 277 | Result result = ResultSuccess; | ||
| 278 | auto touch_screen = GetResourceManager()->GetTouchScreen(); | 246 | auto touch_screen = GetResourceManager()->GetTouchScreen(); |
| 279 | auto gesture = GetResourceManager()->GetGesture(); | 247 | auto gesture = GetResourceManager()->GetGesture(); |
| 280 | 248 | ||
| 281 | if (firmware_settings->IsDeviceManaged() && firmware_settings->IsTouchI2cManaged()) { | 249 | if (firmware_settings->IsDeviceManaged() && firmware_settings->IsTouchI2cManaged()) { |
| 282 | result = gesture->Activate(); | 250 | R_TRY(gesture->Activate()); |
| 283 | if (result.IsSuccess()) { | 251 | R_TRY(gesture->Activate(aruid.pid, basic_gesture_id)); |
| 284 | result = | 252 | R_TRY(touch_screen->Activate()); |
| 285 | gesture->Activate(parameters.applet_resource_user_id, parameters.basic_gesture_id); | 253 | R_TRY(touch_screen->Activate(aruid.pid)); |
| 286 | } | ||
| 287 | if (result.IsSuccess()) { | ||
| 288 | result = touch_screen->Activate(); | ||
| 289 | } | ||
| 290 | if (result.IsSuccess()) { | ||
| 291 | result = touch_screen->Activate(parameters.applet_resource_user_id); | ||
| 292 | } | ||
| 293 | } | 254 | } |
| 294 | 255 | ||
| 295 | IPC::ResponseBuilder rb{ctx, 2}; | 256 | R_SUCCEED(); |
| 296 | rb.Push(result); | ||
| 297 | } | 257 | } |
| 298 | 258 | ||
| 299 | void IHidDebugServer::IsTouchScreenManaged(HLERequestContext& ctx) { | 259 | Result IHidDebugServer::IsTouchScreenManaged(Out<bool> out_is_managed) { |
| 300 | LOG_INFO(Service_HID, "called"); | 260 | LOG_INFO(Service_HID, "called"); |
| 301 | 261 | ||
| 302 | bool is_touch_active{}; | 262 | bool is_touch_active{}; |
| 303 | bool is_gesture_active{}; | 263 | bool is_gesture_active{}; |
| 264 | R_TRY(GetResourceManager()->GetTouchScreen()->IsActive(is_touch_active)); | ||
| 265 | R_TRY(GetResourceManager()->GetGesture()->IsActive(is_gesture_active)); | ||
| 304 | 266 | ||
| 305 | Result result = GetResourceManager()->GetTouchScreen()->IsActive(is_touch_active); | 267 | *out_is_managed = is_touch_active || is_gesture_active; |
| 306 | if (result.IsSuccess()) { | 268 | R_SUCCEED(); |
| 307 | result = GetResourceManager()->GetGesture()->IsActive(is_gesture_active); | ||
| 308 | } | ||
| 309 | |||
| 310 | IPC::ResponseBuilder rb{ctx, 3}; | ||
| 311 | rb.Push(result); | ||
| 312 | rb.Push(is_touch_active | is_gesture_active); | ||
| 313 | } | 269 | } |
| 314 | 270 | ||
| 315 | void IHidDebugServer::DeactivateGesture(HLERequestContext& ctx) { | 271 | Result IHidDebugServer::DeactivateGesture() { |
| 316 | LOG_INFO(Service_HID, "called"); | 272 | LOG_INFO(Service_HID, "called"); |
| 317 | 273 | ||
| 318 | Result result = ResultSuccess; | ||
| 319 | |||
| 320 | if (!firmware_settings->IsDeviceManaged()) { | 274 | if (!firmware_settings->IsDeviceManaged()) { |
| 321 | result = GetResourceManager()->GetGesture()->Deactivate(); | 275 | R_RETURN(GetResourceManager()->GetGesture()->Deactivate()); |
| 322 | } | 276 | } |
| 323 | 277 | ||
| 324 | IPC::ResponseBuilder rb{ctx, 2}; | 278 | R_SUCCEED(); |
| 325 | rb.Push(result); | ||
| 326 | } | 279 | } |
| 327 | 280 | ||
| 328 | std::shared_ptr<ResourceManager> IHidDebugServer::GetResourceManager() { | 281 | std::shared_ptr<ResourceManager> IHidDebugServer::GetResourceManager() { |
diff --git a/src/core/hle/service/hid/hid_debug_server.h b/src/core/hle/service/hid/hid_debug_server.h index 7d5b082b3..3a483f07e 100644 --- a/src/core/hle/service/hid/hid_debug_server.h +++ b/src/core/hle/service/hid/hid_debug_server.h | |||
| @@ -3,7 +3,9 @@ | |||
| 3 | 3 | ||
| 4 | #pragma once | 4 | #pragma once |
| 5 | 5 | ||
| 6 | #include "core/hle/service/cmif_types.h" | ||
| 6 | #include "core/hle/service/service.h" | 7 | #include "core/hle/service/service.h" |
| 8 | #include "hid_core/resources/touch_screen/touch_types.h" | ||
| 7 | 9 | ||
| 8 | namespace Core { | 10 | namespace Core { |
| 9 | class System; | 11 | class System; |
| @@ -20,15 +22,19 @@ public: | |||
| 20 | ~IHidDebugServer() override; | 22 | ~IHidDebugServer() override; |
| 21 | 23 | ||
| 22 | private: | 24 | private: |
| 23 | void DeactivateTouchScreen(HLERequestContext& ctx); | 25 | Result DeactivateTouchScreen(); |
| 24 | void SetTouchScreenAutoPilotState(HLERequestContext& ctx); | 26 | Result SetTouchScreenAutoPilotState( |
| 25 | void UnsetTouchScreenAutoPilotState(HLERequestContext& ctx); | 27 | InArray<TouchState, BufferAttr_HipcMapAlias> auto_pilot_buffer); |
| 26 | void GetTouchScreenConfiguration(HLERequestContext& ctx); | 28 | Result UnsetTouchScreenAutoPilotState(); |
| 27 | void ProcessTouchScreenAutoTune(HLERequestContext& ctx); | 29 | Result GetTouchScreenConfiguration( |
| 28 | void ForceStopTouchScreenManagement(HLERequestContext& ctx); | 30 | Out<Core::HID::TouchScreenConfigurationForNx> out_touchscreen_config, |
| 29 | void ForceRestartTouchScreenManagement(HLERequestContext& ctx); | 31 | ClientAppletResourceUserId aruid); |
| 30 | void IsTouchScreenManaged(HLERequestContext& ctx); | 32 | Result ProcessTouchScreenAutoTune(); |
| 31 | void DeactivateGesture(HLERequestContext& ctx); | 33 | Result ForceStopTouchScreenManagement(); |
| 34 | Result ForceRestartTouchScreenManagement(u32 basic_gesture_id, | ||
| 35 | ClientAppletResourceUserId aruid); | ||
| 36 | Result IsTouchScreenManaged(Out<bool> out_is_managed); | ||
| 37 | Result DeactivateGesture(); | ||
| 32 | 38 | ||
| 33 | std::shared_ptr<ResourceManager> GetResourceManager(); | 39 | std::shared_ptr<ResourceManager> GetResourceManager(); |
| 34 | 40 | ||
diff --git a/src/core/hle/service/hid/irs.cpp b/src/core/hle/service/hid/irs.cpp index 18e544f2f..7d7368ff9 100644 --- a/src/core/hle/service/hid/irs.cpp +++ b/src/core/hle/service/hid/irs.cpp | |||
| @@ -9,6 +9,7 @@ | |||
| 9 | #include "core/hle/kernel/k_shared_memory.h" | 9 | #include "core/hle/kernel/k_shared_memory.h" |
| 10 | #include "core/hle/kernel/k_transfer_memory.h" | 10 | #include "core/hle/kernel/k_transfer_memory.h" |
| 11 | #include "core/hle/kernel/kernel.h" | 11 | #include "core/hle/kernel/kernel.h" |
| 12 | #include "core/hle/service/cmif_serialization.h" | ||
| 12 | #include "core/hle/service/hid/irs.h" | 13 | #include "core/hle/service/hid/irs.h" |
| 13 | #include "core/hle/service/ipc_helpers.h" | 14 | #include "core/hle/service/ipc_helpers.h" |
| 14 | #include "core/memory.h" | 15 | #include "core/memory.h" |
| @@ -28,24 +29,24 @@ namespace Service::IRS { | |||
| 28 | IRS::IRS(Core::System& system_) : ServiceFramework{system_, "irs"} { | 29 | IRS::IRS(Core::System& system_) : ServiceFramework{system_, "irs"} { |
| 29 | // clang-format off | 30 | // clang-format off |
| 30 | static const FunctionInfo functions[] = { | 31 | static const FunctionInfo functions[] = { |
| 31 | {302, &IRS::ActivateIrsensor, "ActivateIrsensor"}, | 32 | {302, C<&IRS::ActivateIrsensor>, "ActivateIrsensor"}, |
| 32 | {303, &IRS::DeactivateIrsensor, "DeactivateIrsensor"}, | 33 | {303, C<&IRS::DeactivateIrsensor>, "DeactivateIrsensor"}, |
| 33 | {304, &IRS::GetIrsensorSharedMemoryHandle, "GetIrsensorSharedMemoryHandle"}, | 34 | {304, C<&IRS::GetIrsensorSharedMemoryHandle>, "GetIrsensorSharedMemoryHandle"}, |
| 34 | {305, &IRS::StopImageProcessor, "StopImageProcessor"}, | 35 | {305, C<&IRS::StopImageProcessor>, "StopImageProcessor"}, |
| 35 | {306, &IRS::RunMomentProcessor, "RunMomentProcessor"}, | 36 | {306, C<&IRS::RunMomentProcessor>, "RunMomentProcessor"}, |
| 36 | {307, &IRS::RunClusteringProcessor, "RunClusteringProcessor"}, | 37 | {307, C<&IRS::RunClusteringProcessor>, "RunClusteringProcessor"}, |
| 37 | {308, &IRS::RunImageTransferProcessor, "RunImageTransferProcessor"}, | 38 | {308, C<&IRS::RunImageTransferProcessor>, "RunImageTransferProcessor"}, |
| 38 | {309, &IRS::GetImageTransferProcessorState, "GetImageTransferProcessorState"}, | 39 | {309, C<&IRS::GetImageTransferProcessorState>, "GetImageTransferProcessorState"}, |
| 39 | {310, &IRS::RunTeraPluginProcessor, "RunTeraPluginProcessor"}, | 40 | {310, C<&IRS::RunTeraPluginProcessor>, "RunTeraPluginProcessor"}, |
| 40 | {311, &IRS::GetNpadIrCameraHandle, "GetNpadIrCameraHandle"}, | 41 | {311, C<&IRS::GetNpadIrCameraHandle>, "GetNpadIrCameraHandle"}, |
| 41 | {312, &IRS::RunPointingProcessor, "RunPointingProcessor"}, | 42 | {312, C<&IRS::RunPointingProcessor>, "RunPointingProcessor"}, |
| 42 | {313, &IRS::SuspendImageProcessor, "SuspendImageProcessor"}, | 43 | {313, C<&IRS::SuspendImageProcessor>, "SuspendImageProcessor"}, |
| 43 | {314, &IRS::CheckFirmwareVersion, "CheckFirmwareVersion"}, | 44 | {314, C<&IRS::CheckFirmwareVersion>, "CheckFirmwareVersion"}, |
| 44 | {315, &IRS::SetFunctionLevel, "SetFunctionLevel"}, | 45 | {315, C<&IRS::SetFunctionLevel>, "SetFunctionLevel"}, |
| 45 | {316, &IRS::RunImageTransferExProcessor, "RunImageTransferExProcessor"}, | 46 | {316, C<&IRS::RunImageTransferExProcessor>, "RunImageTransferExProcessor"}, |
| 46 | {317, &IRS::RunIrLedProcessor, "RunIrLedProcessor"}, | 47 | {317, C<&IRS::RunIrLedProcessor>, "RunIrLedProcessor"}, |
| 47 | {318, &IRS::StopImageProcessorAsync, "StopImageProcessorAsync"}, | 48 | {318, C<&IRS::StopImageProcessorAsync>, "StopImageProcessorAsync"}, |
| 48 | {319, &IRS::ActivateIrsensorWithFunctionLevel, "ActivateIrsensorWithFunctionLevel"}, | 49 | {319, C<&IRS::ActivateIrsensorWithFunctionLevel>, "ActivateIrsensorWithFunctionLevel"}, |
| 49 | }; | 50 | }; |
| 50 | // clang-format on | 51 | // clang-format on |
| 51 | 52 | ||
| @@ -57,489 +58,292 @@ IRS::IRS(Core::System& system_) : ServiceFramework{system_, "irs"} { | |||
| 57 | } | 58 | } |
| 58 | IRS::~IRS() = default; | 59 | IRS::~IRS() = default; |
| 59 | 60 | ||
| 60 | void IRS::ActivateIrsensor(HLERequestContext& ctx) { | 61 | Result IRS::ActivateIrsensor(ClientAppletResourceUserId aruid) { |
| 61 | IPC::RequestParser rp{ctx}; | 62 | LOG_WARNING(Service_IRS, "(STUBBED) called, applet_resource_user_id={}", aruid.pid); |
| 62 | const auto applet_resource_user_id{rp.Pop<u64>()}; | 63 | R_SUCCEED(); |
| 63 | |||
| 64 | LOG_WARNING(Service_IRS, "(STUBBED) called, applet_resource_user_id={}", | ||
| 65 | applet_resource_user_id); | ||
| 66 | |||
| 67 | IPC::ResponseBuilder rb{ctx, 2}; | ||
| 68 | rb.Push(ResultSuccess); | ||
| 69 | } | 64 | } |
| 70 | 65 | ||
| 71 | void IRS::DeactivateIrsensor(HLERequestContext& ctx) { | 66 | Result IRS::DeactivateIrsensor(ClientAppletResourceUserId aruid) { |
| 72 | IPC::RequestParser rp{ctx}; | 67 | LOG_WARNING(Service_IRS, "(STUBBED) called, applet_resource_user_id={}", aruid.pid); |
| 73 | const auto applet_resource_user_id{rp.Pop<u64>()}; | 68 | R_SUCCEED(); |
| 74 | |||
| 75 | LOG_WARNING(Service_IRS, "(STUBBED) called, applet_resource_user_id={}", | ||
| 76 | applet_resource_user_id); | ||
| 77 | |||
| 78 | IPC::ResponseBuilder rb{ctx, 2}; | ||
| 79 | rb.Push(ResultSuccess); | ||
| 80 | } | 69 | } |
| 81 | 70 | ||
| 82 | void IRS::GetIrsensorSharedMemoryHandle(HLERequestContext& ctx) { | 71 | Result IRS::GetIrsensorSharedMemoryHandle(OutCopyHandle<Kernel::KSharedMemory> out_shared_memory, |
| 83 | IPC::RequestParser rp{ctx}; | 72 | ClientAppletResourceUserId aruid) { |
| 84 | const auto applet_resource_user_id{rp.Pop<u64>()}; | 73 | LOG_DEBUG(Service_IRS, "called, applet_resource_user_id={}", aruid.pid); |
| 85 | |||
| 86 | LOG_DEBUG(Service_IRS, "called, applet_resource_user_id={}", applet_resource_user_id); | ||
| 87 | 74 | ||
| 88 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 75 | *out_shared_memory = &system.Kernel().GetIrsSharedMem(); |
| 89 | rb.Push(ResultSuccess); | 76 | R_SUCCEED(); |
| 90 | rb.PushCopyObjects(&system.Kernel().GetIrsSharedMem()); | ||
| 91 | } | 77 | } |
| 92 | 78 | ||
| 93 | void IRS::StopImageProcessor(HLERequestContext& ctx) { | 79 | Result IRS::StopImageProcessor(Core::IrSensor::IrCameraHandle camera_handle, |
| 94 | IPC::RequestParser rp{ctx}; | 80 | ClientAppletResourceUserId aruid) { |
| 95 | struct Parameters { | ||
| 96 | Core::IrSensor::IrCameraHandle camera_handle; | ||
| 97 | INSERT_PADDING_WORDS_NOINIT(1); | ||
| 98 | u64 applet_resource_user_id; | ||
| 99 | }; | ||
| 100 | static_assert(sizeof(Parameters) == 0x10, "Parameters has incorrect size."); | ||
| 101 | |||
| 102 | const auto parameters{rp.PopRaw<Parameters>()}; | ||
| 103 | |||
| 104 | LOG_WARNING(Service_IRS, | 81 | LOG_WARNING(Service_IRS, |
| 105 | "(STUBBED) called, npad_type={}, npad_id={}, applet_resource_user_id={}", | 82 | "(STUBBED) called, npad_type={}, npad_id={}, applet_resource_user_id={}", |
| 106 | parameters.camera_handle.npad_type, parameters.camera_handle.npad_id, | 83 | camera_handle.npad_type, camera_handle.npad_id, aruid.pid); |
| 107 | parameters.applet_resource_user_id); | ||
| 108 | |||
| 109 | auto result = IsIrCameraHandleValid(parameters.camera_handle); | ||
| 110 | if (result.IsSuccess()) { | ||
| 111 | // TODO: Stop Image processor | ||
| 112 | npad_device->SetPollingMode(Core::HID::EmulatedDeviceIndex::RightIndex, | ||
| 113 | Common::Input::PollingMode::Active); | ||
| 114 | result = ResultSuccess; | ||
| 115 | } | ||
| 116 | 84 | ||
| 117 | IPC::ResponseBuilder rb{ctx, 2}; | 85 | R_TRY(IsIrCameraHandleValid(camera_handle)); |
| 118 | rb.Push(result); | ||
| 119 | } | ||
| 120 | |||
| 121 | void IRS::RunMomentProcessor(HLERequestContext& ctx) { | ||
| 122 | IPC::RequestParser rp{ctx}; | ||
| 123 | struct Parameters { | ||
| 124 | Core::IrSensor::IrCameraHandle camera_handle; | ||
| 125 | INSERT_PADDING_WORDS_NOINIT(1); | ||
| 126 | u64 applet_resource_user_id; | ||
| 127 | Core::IrSensor::PackedMomentProcessorConfig processor_config; | ||
| 128 | }; | ||
| 129 | static_assert(sizeof(Parameters) == 0x30, "Parameters has incorrect size."); | ||
| 130 | 86 | ||
| 131 | const auto parameters{rp.PopRaw<Parameters>()}; | 87 | // TODO: Stop Image processor |
| 88 | npad_device->SetPollingMode(Core::HID::EmulatedDeviceIndex::RightIndex, | ||
| 89 | Common::Input::PollingMode::Active); | ||
| 90 | R_SUCCEED(); | ||
| 91 | } | ||
| 132 | 92 | ||
| 93 | Result IRS::RunMomentProcessor( | ||
| 94 | Core::IrSensor::IrCameraHandle camera_handle, ClientAppletResourceUserId aruid, | ||
| 95 | const Core::IrSensor::PackedMomentProcessorConfig& processor_config) { | ||
| 133 | LOG_WARNING(Service_IRS, | 96 | LOG_WARNING(Service_IRS, |
| 134 | "(STUBBED) called, npad_type={}, npad_id={}, applet_resource_user_id={}", | 97 | "(STUBBED) called, npad_type={}, npad_id={}, applet_resource_user_id={}", |
| 135 | parameters.camera_handle.npad_type, parameters.camera_handle.npad_id, | 98 | camera_handle.npad_type, camera_handle.npad_id, aruid.pid); |
| 136 | parameters.applet_resource_user_id); | ||
| 137 | |||
| 138 | const auto result = IsIrCameraHandleValid(parameters.camera_handle); | ||
| 139 | |||
| 140 | if (result.IsSuccess()) { | ||
| 141 | auto& device = GetIrCameraSharedMemoryDeviceEntry(parameters.camera_handle); | ||
| 142 | MakeProcessorWithCoreContext<MomentProcessor>(parameters.camera_handle, device); | ||
| 143 | auto& image_transfer_processor = GetProcessor<MomentProcessor>(parameters.camera_handle); | ||
| 144 | image_transfer_processor.SetConfig(parameters.processor_config); | ||
| 145 | npad_device->SetPollingMode(Core::HID::EmulatedDeviceIndex::RightIndex, | ||
| 146 | Common::Input::PollingMode::IR); | ||
| 147 | } | ||
| 148 | 99 | ||
| 149 | IPC::ResponseBuilder rb{ctx, 2}; | 100 | R_TRY(IsIrCameraHandleValid(camera_handle)); |
| 150 | rb.Push(result); | ||
| 151 | } | ||
| 152 | 101 | ||
| 153 | void IRS::RunClusteringProcessor(HLERequestContext& ctx) { | 102 | auto& device = GetIrCameraSharedMemoryDeviceEntry(camera_handle); |
| 154 | IPC::RequestParser rp{ctx}; | 103 | MakeProcessorWithCoreContext<MomentProcessor>(camera_handle, device); |
| 155 | struct Parameters { | 104 | auto& image_transfer_processor = GetProcessor<MomentProcessor>(camera_handle); |
| 156 | Core::IrSensor::IrCameraHandle camera_handle; | 105 | image_transfer_processor.SetConfig(processor_config); |
| 157 | INSERT_PADDING_WORDS_NOINIT(1); | 106 | npad_device->SetPollingMode(Core::HID::EmulatedDeviceIndex::RightIndex, |
| 158 | u64 applet_resource_user_id; | 107 | Common::Input::PollingMode::IR); |
| 159 | Core::IrSensor::PackedClusteringProcessorConfig processor_config; | ||
| 160 | }; | ||
| 161 | static_assert(sizeof(Parameters) == 0x38, "Parameters has incorrect size."); | ||
| 162 | 108 | ||
| 163 | const auto parameters{rp.PopRaw<Parameters>()}; | 109 | R_SUCCEED(); |
| 110 | } | ||
| 164 | 111 | ||
| 112 | Result IRS::RunClusteringProcessor( | ||
| 113 | Core::IrSensor::IrCameraHandle camera_handle, ClientAppletResourceUserId aruid, | ||
| 114 | const Core::IrSensor::PackedClusteringProcessorConfig& processor_config) { | ||
| 165 | LOG_WARNING(Service_IRS, | 115 | LOG_WARNING(Service_IRS, |
| 166 | "(STUBBED) called, npad_type={}, npad_id={}, applet_resource_user_id={}", | 116 | "(STUBBED) called, npad_type={}, npad_id={}, applet_resource_user_id={}", |
| 167 | parameters.camera_handle.npad_type, parameters.camera_handle.npad_id, | 117 | camera_handle.npad_type, camera_handle.npad_id, aruid.pid); |
| 168 | parameters.applet_resource_user_id); | ||
| 169 | |||
| 170 | auto result = IsIrCameraHandleValid(parameters.camera_handle); | ||
| 171 | |||
| 172 | if (result.IsSuccess()) { | ||
| 173 | auto& device = GetIrCameraSharedMemoryDeviceEntry(parameters.camera_handle); | ||
| 174 | MakeProcessorWithCoreContext<ClusteringProcessor>(parameters.camera_handle, device); | ||
| 175 | auto& image_transfer_processor = | ||
| 176 | GetProcessor<ClusteringProcessor>(parameters.camera_handle); | ||
| 177 | image_transfer_processor.SetConfig(parameters.processor_config); | ||
| 178 | npad_device->SetPollingMode(Core::HID::EmulatedDeviceIndex::RightIndex, | ||
| 179 | Common::Input::PollingMode::IR); | ||
| 180 | } | ||
| 181 | 118 | ||
| 182 | IPC::ResponseBuilder rb{ctx, 2}; | 119 | R_TRY(IsIrCameraHandleValid(camera_handle)); |
| 183 | rb.Push(result); | ||
| 184 | } | ||
| 185 | 120 | ||
| 186 | void IRS::RunImageTransferProcessor(HLERequestContext& ctx) { | 121 | auto& device = GetIrCameraSharedMemoryDeviceEntry(camera_handle); |
| 187 | IPC::RequestParser rp{ctx}; | 122 | MakeProcessorWithCoreContext<ClusteringProcessor>(camera_handle, device); |
| 188 | struct Parameters { | 123 | auto& image_transfer_processor = GetProcessor<ClusteringProcessor>(camera_handle); |
| 189 | Core::IrSensor::IrCameraHandle camera_handle; | 124 | image_transfer_processor.SetConfig(processor_config); |
| 190 | INSERT_PADDING_WORDS_NOINIT(1); | 125 | npad_device->SetPollingMode(Core::HID::EmulatedDeviceIndex::RightIndex, |
| 191 | u64 applet_resource_user_id; | 126 | Common::Input::PollingMode::IR); |
| 192 | Core::IrSensor::PackedImageTransferProcessorConfig processor_config; | ||
| 193 | u32 transfer_memory_size; | ||
| 194 | }; | ||
| 195 | static_assert(sizeof(Parameters) == 0x30, "Parameters has incorrect size."); | ||
| 196 | 127 | ||
| 197 | const auto parameters{rp.PopRaw<Parameters>()}; | 128 | R_SUCCEED(); |
| 198 | const auto t_mem_handle{ctx.GetCopyHandle(0)}; | 129 | } |
| 199 | 130 | ||
| 200 | auto t_mem = ctx.GetObjectFromHandle<Kernel::KTransferMemory>(t_mem_handle); | 131 | Result IRS::RunImageTransferProcessor( |
| 132 | Core::IrSensor::IrCameraHandle camera_handle, ClientAppletResourceUserId aruid, | ||
| 133 | const Core::IrSensor::PackedImageTransferProcessorConfig& processor_config, | ||
| 134 | u64 transfer_memory_size, InCopyHandle<Kernel::KTransferMemory> t_mem) { | ||
| 201 | 135 | ||
| 202 | if (t_mem.IsNull()) { | 136 | ASSERT_MSG(t_mem->GetSize() == transfer_memory_size, "t_mem has incorrect size"); |
| 203 | LOG_ERROR(Service_IRS, "t_mem is a nullptr for handle=0x{:08X}", t_mem_handle); | ||
| 204 | IPC::ResponseBuilder rb{ctx, 2}; | ||
| 205 | rb.Push(ResultUnknown); | ||
| 206 | return; | ||
| 207 | } | ||
| 208 | |||
| 209 | ASSERT_MSG(t_mem->GetSize() == parameters.transfer_memory_size, "t_mem has incorrect size"); | ||
| 210 | 137 | ||
| 211 | LOG_INFO(Service_IRS, | 138 | LOG_INFO(Service_IRS, |
| 212 | "called, npad_type={}, npad_id={}, transfer_memory_size={}, transfer_memory_size={}, " | 139 | "called, npad_type={}, npad_id={}, transfer_memory_size={}, transfer_memory_size={}, " |
| 213 | "applet_resource_user_id={}", | 140 | "applet_resource_user_id={}", |
| 214 | parameters.camera_handle.npad_type, parameters.camera_handle.npad_id, | 141 | camera_handle.npad_type, camera_handle.npad_id, transfer_memory_size, t_mem->GetSize(), |
| 215 | parameters.transfer_memory_size, t_mem->GetSize(), parameters.applet_resource_user_id); | 142 | aruid.pid); |
| 216 | |||
| 217 | const auto result = IsIrCameraHandleValid(parameters.camera_handle); | ||
| 218 | |||
| 219 | if (result.IsSuccess()) { | ||
| 220 | auto& device = GetIrCameraSharedMemoryDeviceEntry(parameters.camera_handle); | ||
| 221 | MakeProcessorWithCoreContext<ImageTransferProcessor>(parameters.camera_handle, device); | ||
| 222 | auto& image_transfer_processor = | ||
| 223 | GetProcessor<ImageTransferProcessor>(parameters.camera_handle); | ||
| 224 | image_transfer_processor.SetConfig(parameters.processor_config); | ||
| 225 | image_transfer_processor.SetTransferMemoryAddress(t_mem->GetSourceAddress()); | ||
| 226 | npad_device->SetPollingMode(Core::HID::EmulatedDeviceIndex::RightIndex, | ||
| 227 | Common::Input::PollingMode::IR); | ||
| 228 | } | ||
| 229 | 143 | ||
| 230 | IPC::ResponseBuilder rb{ctx, 2}; | 144 | R_TRY(IsIrCameraHandleValid(camera_handle)); |
| 231 | rb.Push(result); | ||
| 232 | } | ||
| 233 | 145 | ||
| 234 | void IRS::GetImageTransferProcessorState(HLERequestContext& ctx) { | 146 | auto& device = GetIrCameraSharedMemoryDeviceEntry(camera_handle); |
| 235 | IPC::RequestParser rp{ctx}; | 147 | MakeProcessorWithCoreContext<ImageTransferProcessor>(camera_handle, device); |
| 236 | struct Parameters { | 148 | auto& image_transfer_processor = GetProcessor<ImageTransferProcessor>(camera_handle); |
| 237 | Core::IrSensor::IrCameraHandle camera_handle; | 149 | image_transfer_processor.SetConfig(processor_config); |
| 238 | INSERT_PADDING_WORDS_NOINIT(1); | 150 | image_transfer_processor.SetTransferMemoryAddress(t_mem->GetSourceAddress()); |
| 239 | u64 applet_resource_user_id; | 151 | npad_device->SetPollingMode(Core::HID::EmulatedDeviceIndex::RightIndex, |
| 240 | }; | 152 | Common::Input::PollingMode::IR); |
| 241 | static_assert(sizeof(Parameters) == 0x10, "Parameters has incorrect size."); | ||
| 242 | 153 | ||
| 243 | const auto parameters{rp.PopRaw<Parameters>()}; | 154 | R_SUCCEED(); |
| 155 | } | ||
| 244 | 156 | ||
| 157 | Result IRS::GetImageTransferProcessorState( | ||
| 158 | Out<Core::IrSensor::ImageTransferProcessorState> out_state, | ||
| 159 | Core::IrSensor::IrCameraHandle camera_handle, ClientAppletResourceUserId aruid, | ||
| 160 | OutBuffer<BufferAttr_HipcMapAlias> out_buffer_data) { | ||
| 245 | LOG_DEBUG(Service_IRS, "(STUBBED) called, npad_type={}, npad_id={}, applet_resource_user_id={}", | 161 | LOG_DEBUG(Service_IRS, "(STUBBED) called, npad_type={}, npad_id={}, applet_resource_user_id={}", |
| 246 | parameters.camera_handle.npad_type, parameters.camera_handle.npad_id, | 162 | camera_handle.npad_type, camera_handle.npad_id, aruid.pid); |
| 247 | parameters.applet_resource_user_id); | ||
| 248 | |||
| 249 | const auto result = IsIrCameraHandleValid(parameters.camera_handle); | ||
| 250 | if (result.IsError()) { | ||
| 251 | IPC::ResponseBuilder rb{ctx, 2}; | ||
| 252 | rb.Push(result); | ||
| 253 | return; | ||
| 254 | } | ||
| 255 | 163 | ||
| 256 | const auto& device = GetIrCameraSharedMemoryDeviceEntry(parameters.camera_handle); | 164 | R_TRY(IsIrCameraHandleValid(camera_handle)); |
| 257 | 165 | ||
| 258 | if (device.mode != Core::IrSensor::IrSensorMode::ImageTransferProcessor) { | 166 | const auto& device = GetIrCameraSharedMemoryDeviceEntry(camera_handle); |
| 259 | IPC::ResponseBuilder rb{ctx, 2}; | 167 | |
| 260 | rb.Push(InvalidProcessorState); | 168 | R_TRY(IsIrCameraHandleValid(camera_handle)); |
| 261 | return; | 169 | R_UNLESS(device.mode == Core::IrSensor::IrSensorMode::ImageTransferProcessor, |
| 262 | } | 170 | InvalidProcessorState); |
| 263 | 171 | ||
| 264 | std::vector<u8> data{}; | 172 | *out_state = GetProcessor<ImageTransferProcessor>(camera_handle).GetState(out_buffer_data); |
| 265 | const auto& image_transfer_processor = | ||
| 266 | GetProcessor<ImageTransferProcessor>(parameters.camera_handle); | ||
| 267 | const auto& state = image_transfer_processor.GetState(data); | ||
| 268 | 173 | ||
| 269 | ctx.WriteBuffer(data); | 174 | R_SUCCEED(); |
| 270 | IPC::ResponseBuilder rb{ctx, 6}; | ||
| 271 | rb.Push(ResultSuccess); | ||
| 272 | rb.PushRaw(state); | ||
| 273 | } | 175 | } |
| 274 | 176 | ||
| 275 | void IRS::RunTeraPluginProcessor(HLERequestContext& ctx) { | 177 | Result IRS::RunTeraPluginProcessor(Core::IrSensor::IrCameraHandle camera_handle, |
| 276 | IPC::RequestParser rp{ctx}; | 178 | Core::IrSensor::PackedTeraPluginProcessorConfig processor_config, |
| 277 | struct Parameters { | 179 | ClientAppletResourceUserId aruid) { |
| 278 | Core::IrSensor::IrCameraHandle camera_handle; | 180 | LOG_WARNING(Service_IRS, |
| 279 | Core::IrSensor::PackedTeraPluginProcessorConfig processor_config; | 181 | "(STUBBED) called, npad_type={}, npad_id={}, mode={}, mcu_version={}.{}, " |
| 280 | INSERT_PADDING_WORDS_NOINIT(1); | 182 | "applet_resource_user_id={}", |
| 281 | u64 applet_resource_user_id; | 183 | camera_handle.npad_type, camera_handle.npad_id, processor_config.mode, |
| 282 | }; | 184 | processor_config.required_mcu_version.major, |
| 283 | static_assert(sizeof(Parameters) == 0x18, "Parameters has incorrect size."); | 185 | processor_config.required_mcu_version.minor, aruid.pid); |
| 284 | 186 | ||
| 285 | const auto parameters{rp.PopRaw<Parameters>()}; | 187 | R_TRY(IsIrCameraHandleValid(camera_handle)); |
| 286 | 188 | ||
| 287 | LOG_WARNING( | 189 | auto& device = GetIrCameraSharedMemoryDeviceEntry(camera_handle); |
| 288 | Service_IRS, | 190 | MakeProcessor<TeraPluginProcessor>(camera_handle, device); |
| 289 | "(STUBBED) called, npad_type={}, npad_id={}, mode={}, mcu_version={}.{}, " | 191 | auto& image_transfer_processor = GetProcessor<TeraPluginProcessor>(camera_handle); |
| 290 | "applet_resource_user_id={}", | 192 | image_transfer_processor.SetConfig(processor_config); |
| 291 | parameters.camera_handle.npad_type, parameters.camera_handle.npad_id, | 193 | npad_device->SetPollingMode(Core::HID::EmulatedDeviceIndex::RightIndex, |
| 292 | parameters.processor_config.mode, parameters.processor_config.required_mcu_version.major, | 194 | Common::Input::PollingMode::IR); |
| 293 | parameters.processor_config.required_mcu_version.minor, parameters.applet_resource_user_id); | ||
| 294 | |||
| 295 | const auto result = IsIrCameraHandleValid(parameters.camera_handle); | ||
| 296 | |||
| 297 | if (result.IsSuccess()) { | ||
| 298 | auto& device = GetIrCameraSharedMemoryDeviceEntry(parameters.camera_handle); | ||
| 299 | MakeProcessor<TeraPluginProcessor>(parameters.camera_handle, device); | ||
| 300 | auto& image_transfer_processor = | ||
| 301 | GetProcessor<TeraPluginProcessor>(parameters.camera_handle); | ||
| 302 | image_transfer_processor.SetConfig(parameters.processor_config); | ||
| 303 | npad_device->SetPollingMode(Core::HID::EmulatedDeviceIndex::RightIndex, | ||
| 304 | Common::Input::PollingMode::IR); | ||
| 305 | } | ||
| 306 | 195 | ||
| 307 | IPC::ResponseBuilder rb{ctx, 2}; | 196 | R_SUCCEED(); |
| 308 | rb.Push(result); | ||
| 309 | } | 197 | } |
| 310 | 198 | ||
| 311 | void IRS::GetNpadIrCameraHandle(HLERequestContext& ctx) { | 199 | Result IRS::GetNpadIrCameraHandle(Out<Core::IrSensor::IrCameraHandle> out_camera_handle, |
| 312 | IPC::RequestParser rp{ctx}; | 200 | Core::HID::NpadIdType npad_id) { |
| 313 | const auto npad_id{rp.PopEnum<Core::HID::NpadIdType>()}; | 201 | R_UNLESS(HID::IsNpadIdValid(npad_id), HID::ResultInvalidNpadId); |
| 314 | |||
| 315 | if (npad_id > Core::HID::NpadIdType::Player8 && npad_id != Core::HID::NpadIdType::Invalid && | ||
| 316 | npad_id != Core::HID::NpadIdType::Handheld) { | ||
| 317 | IPC::ResponseBuilder rb{ctx, 2}; | ||
| 318 | rb.Push(Service::HID::ResultInvalidNpadId); | ||
| 319 | return; | ||
| 320 | } | ||
| 321 | 202 | ||
| 322 | Core::IrSensor::IrCameraHandle camera_handle{ | 203 | *out_camera_handle = { |
| 323 | .npad_id = static_cast<u8>(HID::NpadIdTypeToIndex(npad_id)), | 204 | .npad_id = static_cast<u8>(HID::NpadIdTypeToIndex(npad_id)), |
| 324 | .npad_type = Core::HID::NpadStyleIndex::None, | 205 | .npad_type = Core::HID::NpadStyleIndex::None, |
| 325 | }; | 206 | }; |
| 326 | 207 | ||
| 327 | LOG_INFO(Service_IRS, "called, npad_id={}, camera_npad_id={}, camera_npad_type={}", npad_id, | 208 | LOG_INFO(Service_IRS, "called, npad_id={}, camera_npad_id={}, camera_npad_type={}", npad_id, |
| 328 | camera_handle.npad_id, camera_handle.npad_type); | 209 | out_camera_handle->npad_id, out_camera_handle->npad_type); |
| 329 | 210 | ||
| 330 | IPC::ResponseBuilder rb{ctx, 3}; | 211 | R_SUCCEED(); |
| 331 | rb.Push(ResultSuccess); | ||
| 332 | rb.PushRaw(camera_handle); | ||
| 333 | } | 212 | } |
| 334 | 213 | ||
| 335 | void IRS::RunPointingProcessor(HLERequestContext& ctx) { | 214 | Result IRS::RunPointingProcessor( |
| 336 | IPC::RequestParser rp{ctx}; | 215 | Core::IrSensor::IrCameraHandle camera_handle, |
| 337 | const auto camera_handle{rp.PopRaw<Core::IrSensor::IrCameraHandle>()}; | 216 | const Core::IrSensor::PackedPointingProcessorConfig& processor_config, |
| 338 | const auto processor_config{rp.PopRaw<Core::IrSensor::PackedPointingProcessorConfig>()}; | 217 | ClientAppletResourceUserId aruid) { |
| 339 | const auto applet_resource_user_id{rp.Pop<u64>()}; | ||
| 340 | |||
| 341 | LOG_WARNING( | 218 | LOG_WARNING( |
| 342 | Service_IRS, | 219 | Service_IRS, |
| 343 | "(STUBBED) called, npad_type={}, npad_id={}, mcu_version={}.{}, applet_resource_user_id={}", | 220 | "(STUBBED) called, npad_type={}, npad_id={}, mcu_version={}.{}, applet_resource_user_id={}", |
| 344 | camera_handle.npad_type, camera_handle.npad_id, processor_config.required_mcu_version.major, | 221 | camera_handle.npad_type, camera_handle.npad_id, processor_config.required_mcu_version.major, |
| 345 | processor_config.required_mcu_version.minor, applet_resource_user_id); | 222 | processor_config.required_mcu_version.minor, aruid.pid); |
| 346 | 223 | ||
| 347 | auto result = IsIrCameraHandleValid(camera_handle); | 224 | R_TRY(IsIrCameraHandleValid(camera_handle)); |
| 348 | 225 | ||
| 349 | if (result.IsSuccess()) { | 226 | auto& device = GetIrCameraSharedMemoryDeviceEntry(camera_handle); |
| 350 | auto& device = GetIrCameraSharedMemoryDeviceEntry(camera_handle); | 227 | MakeProcessor<PointingProcessor>(camera_handle, device); |
| 351 | MakeProcessor<PointingProcessor>(camera_handle, device); | 228 | auto& image_transfer_processor = GetProcessor<PointingProcessor>(camera_handle); |
| 352 | auto& image_transfer_processor = GetProcessor<PointingProcessor>(camera_handle); | 229 | image_transfer_processor.SetConfig(processor_config); |
| 353 | image_transfer_processor.SetConfig(processor_config); | 230 | npad_device->SetPollingMode(Core::HID::EmulatedDeviceIndex::RightIndex, |
| 354 | npad_device->SetPollingMode(Core::HID::EmulatedDeviceIndex::RightIndex, | 231 | Common::Input::PollingMode::IR); |
| 355 | Common::Input::PollingMode::IR); | ||
| 356 | } | ||
| 357 | 232 | ||
| 358 | IPC::ResponseBuilder rb{ctx, 2}; | 233 | R_SUCCEED(); |
| 359 | rb.Push(result); | ||
| 360 | } | 234 | } |
| 361 | 235 | ||
| 362 | void IRS::SuspendImageProcessor(HLERequestContext& ctx) { | 236 | Result IRS::SuspendImageProcessor(Core::IrSensor::IrCameraHandle camera_handle, |
| 363 | IPC::RequestParser rp{ctx}; | 237 | ClientAppletResourceUserId aruid) { |
| 364 | struct Parameters { | ||
| 365 | Core::IrSensor::IrCameraHandle camera_handle; | ||
| 366 | INSERT_PADDING_WORDS_NOINIT(1); | ||
| 367 | u64 applet_resource_user_id; | ||
| 368 | }; | ||
| 369 | static_assert(sizeof(Parameters) == 0x10, "Parameters has incorrect size."); | ||
| 370 | |||
| 371 | const auto parameters{rp.PopRaw<Parameters>()}; | ||
| 372 | |||
| 373 | LOG_WARNING(Service_IRS, | 238 | LOG_WARNING(Service_IRS, |
| 374 | "(STUBBED) called, npad_type={}, npad_id={}, applet_resource_user_id={}", | 239 | "(STUBBED) called, npad_type={}, npad_id={}, applet_resource_user_id={}", |
| 375 | parameters.camera_handle.npad_type, parameters.camera_handle.npad_id, | 240 | camera_handle.npad_type, camera_handle.npad_id, aruid.pid); |
| 376 | parameters.applet_resource_user_id); | ||
| 377 | 241 | ||
| 378 | auto result = IsIrCameraHandleValid(parameters.camera_handle); | 242 | R_TRY(IsIrCameraHandleValid(camera_handle)); |
| 379 | if (result.IsSuccess()) { | ||
| 380 | // TODO: Suspend image processor | ||
| 381 | result = ResultSuccess; | ||
| 382 | } | ||
| 383 | 243 | ||
| 384 | IPC::ResponseBuilder rb{ctx, 2}; | 244 | // TODO: Suspend image processor |
| 385 | rb.Push(result); | ||
| 386 | } | ||
| 387 | 245 | ||
| 388 | void IRS::CheckFirmwareVersion(HLERequestContext& ctx) { | 246 | R_SUCCEED(); |
| 389 | IPC::RequestParser rp{ctx}; | 247 | } |
| 390 | const auto camera_handle{rp.PopRaw<Core::IrSensor::IrCameraHandle>()}; | ||
| 391 | const auto mcu_version{rp.PopRaw<Core::IrSensor::PackedMcuVersion>()}; | ||
| 392 | const auto applet_resource_user_id{rp.Pop<u64>()}; | ||
| 393 | 248 | ||
| 249 | Result IRS::CheckFirmwareVersion(Core::IrSensor::IrCameraHandle camera_handle, | ||
| 250 | Core::IrSensor::PackedMcuVersion mcu_version, | ||
| 251 | ClientAppletResourceUserId aruid) { | ||
| 394 | LOG_WARNING( | 252 | LOG_WARNING( |
| 395 | Service_IRS, | 253 | Service_IRS, |
| 396 | "(STUBBED) called, npad_type={}, npad_id={}, applet_resource_user_id={}, mcu_version={}.{}", | 254 | "(STUBBED) called, npad_type={}, npad_id={}, applet_resource_user_id={}, mcu_version={}.{}", |
| 397 | camera_handle.npad_type, camera_handle.npad_id, applet_resource_user_id, mcu_version.major, | 255 | camera_handle.npad_type, camera_handle.npad_id, aruid.pid, mcu_version.major, |
| 398 | mcu_version.minor); | 256 | mcu_version.minor); |
| 399 | 257 | ||
| 400 | auto result = IsIrCameraHandleValid(camera_handle); | 258 | R_TRY(IsIrCameraHandleValid(camera_handle)); |
| 401 | if (result.IsSuccess()) { | ||
| 402 | // TODO: Check firmware version | ||
| 403 | result = ResultSuccess; | ||
| 404 | } | ||
| 405 | 259 | ||
| 406 | IPC::ResponseBuilder rb{ctx, 2}; | 260 | // TODO: Check firmware version |
| 407 | rb.Push(result); | ||
| 408 | } | ||
| 409 | 261 | ||
| 410 | void IRS::SetFunctionLevel(HLERequestContext& ctx) { | 262 | R_SUCCEED(); |
| 411 | IPC::RequestParser rp{ctx}; | 263 | } |
| 412 | const auto camera_handle{rp.PopRaw<Core::IrSensor::IrCameraHandle>()}; | ||
| 413 | const auto function_level{rp.PopRaw<Core::IrSensor::PackedFunctionLevel>()}; | ||
| 414 | const auto applet_resource_user_id{rp.Pop<u64>()}; | ||
| 415 | 264 | ||
| 265 | Result IRS::SetFunctionLevel(Core::IrSensor::IrCameraHandle camera_handle, | ||
| 266 | Core::IrSensor::PackedFunctionLevel function_level, | ||
| 267 | ClientAppletResourceUserId aruid) { | ||
| 416 | LOG_WARNING( | 268 | LOG_WARNING( |
| 417 | Service_IRS, | 269 | Service_IRS, |
| 418 | "(STUBBED) called, npad_type={}, npad_id={}, function_level={}, applet_resource_user_id={}", | 270 | "(STUBBED) called, npad_type={}, npad_id={}, function_level={}, applet_resource_user_id={}", |
| 419 | camera_handle.npad_type, camera_handle.npad_id, function_level.function_level, | 271 | camera_handle.npad_type, camera_handle.npad_id, function_level.function_level, aruid.pid); |
| 420 | applet_resource_user_id); | ||
| 421 | 272 | ||
| 422 | auto result = IsIrCameraHandleValid(camera_handle); | 273 | R_TRY(IsIrCameraHandleValid(camera_handle)); |
| 423 | if (result.IsSuccess()) { | ||
| 424 | // TODO: Set Function level | ||
| 425 | result = ResultSuccess; | ||
| 426 | } | ||
| 427 | 274 | ||
| 428 | IPC::ResponseBuilder rb{ctx, 2}; | 275 | // TODO: Set Function level |
| 429 | rb.Push(result); | ||
| 430 | } | ||
| 431 | 276 | ||
| 432 | void IRS::RunImageTransferExProcessor(HLERequestContext& ctx) { | 277 | R_SUCCEED(); |
| 433 | IPC::RequestParser rp{ctx}; | 278 | } |
| 434 | struct Parameters { | ||
| 435 | Core::IrSensor::IrCameraHandle camera_handle; | ||
| 436 | INSERT_PADDING_WORDS_NOINIT(1); | ||
| 437 | u64 applet_resource_user_id; | ||
| 438 | Core::IrSensor::PackedImageTransferProcessorExConfig processor_config; | ||
| 439 | u64 transfer_memory_size; | ||
| 440 | }; | ||
| 441 | static_assert(sizeof(Parameters) == 0x38, "Parameters has incorrect size."); | ||
| 442 | 279 | ||
| 443 | const auto parameters{rp.PopRaw<Parameters>()}; | 280 | Result IRS::RunImageTransferExProcessor( |
| 444 | const auto t_mem_handle{ctx.GetCopyHandle(0)}; | 281 | Core::IrSensor::IrCameraHandle camera_handle, ClientAppletResourceUserId aruid, |
| 282 | const Core::IrSensor::PackedImageTransferProcessorExConfig& processor_config, | ||
| 283 | u64 transfer_memory_size, InCopyHandle<Kernel::KTransferMemory> t_mem) { | ||
| 445 | 284 | ||
| 446 | auto t_mem = ctx.GetObjectFromHandle<Kernel::KTransferMemory>(t_mem_handle); | 285 | ASSERT_MSG(t_mem->GetSize() == transfer_memory_size, "t_mem has incorrect size"); |
| 447 | 286 | ||
| 448 | LOG_INFO(Service_IRS, | 287 | LOG_INFO(Service_IRS, |
| 449 | "called, npad_type={}, npad_id={}, transfer_memory_size={}, " | 288 | "called, npad_type={}, npad_id={}, transfer_memory_size={}, " |
| 450 | "applet_resource_user_id={}", | 289 | "applet_resource_user_id={}", |
| 451 | parameters.camera_handle.npad_type, parameters.camera_handle.npad_id, | 290 | camera_handle.npad_type, camera_handle.npad_id, transfer_memory_size, aruid.pid); |
| 452 | parameters.transfer_memory_size, parameters.applet_resource_user_id); | ||
| 453 | |||
| 454 | auto result = IsIrCameraHandleValid(parameters.camera_handle); | ||
| 455 | |||
| 456 | if (result.IsSuccess()) { | ||
| 457 | auto& device = GetIrCameraSharedMemoryDeviceEntry(parameters.camera_handle); | ||
| 458 | MakeProcessorWithCoreContext<ImageTransferProcessor>(parameters.camera_handle, device); | ||
| 459 | auto& image_transfer_processor = | ||
| 460 | GetProcessor<ImageTransferProcessor>(parameters.camera_handle); | ||
| 461 | image_transfer_processor.SetConfig(parameters.processor_config); | ||
| 462 | image_transfer_processor.SetTransferMemoryAddress(t_mem->GetSourceAddress()); | ||
| 463 | npad_device->SetPollingMode(Core::HID::EmulatedDeviceIndex::RightIndex, | ||
| 464 | Common::Input::PollingMode::IR); | ||
| 465 | } | ||
| 466 | 291 | ||
| 467 | IPC::ResponseBuilder rb{ctx, 2}; | 292 | R_TRY(IsIrCameraHandleValid(camera_handle)); |
| 468 | rb.Push(result); | 293 | |
| 469 | } | 294 | auto& device = GetIrCameraSharedMemoryDeviceEntry(camera_handle); |
| 295 | MakeProcessorWithCoreContext<ImageTransferProcessor>(camera_handle, device); | ||
| 296 | auto& image_transfer_processor = GetProcessor<ImageTransferProcessor>(camera_handle); | ||
| 297 | image_transfer_processor.SetConfig(processor_config); | ||
| 298 | image_transfer_processor.SetTransferMemoryAddress(t_mem->GetSourceAddress()); | ||
| 299 | npad_device->SetPollingMode(Core::HID::EmulatedDeviceIndex::RightIndex, | ||
| 300 | Common::Input::PollingMode::IR); | ||
| 470 | 301 | ||
| 471 | void IRS::RunIrLedProcessor(HLERequestContext& ctx) { | 302 | R_SUCCEED(); |
| 472 | IPC::RequestParser rp{ctx}; | 303 | } |
| 473 | const auto camera_handle{rp.PopRaw<Core::IrSensor::IrCameraHandle>()}; | ||
| 474 | const auto processor_config{rp.PopRaw<Core::IrSensor::PackedIrLedProcessorConfig>()}; | ||
| 475 | const auto applet_resource_user_id{rp.Pop<u64>()}; | ||
| 476 | 304 | ||
| 305 | Result IRS::RunIrLedProcessor(Core::IrSensor::IrCameraHandle camera_handle, | ||
| 306 | Core::IrSensor::PackedIrLedProcessorConfig processor_config, | ||
| 307 | ClientAppletResourceUserId aruid) { | ||
| 477 | LOG_WARNING(Service_IRS, | 308 | LOG_WARNING(Service_IRS, |
| 478 | "(STUBBED) called, npad_type={}, npad_id={}, light_target={}, mcu_version={}.{} " | 309 | "(STUBBED) called, npad_type={}, npad_id={}, light_target={}, mcu_version={}.{} " |
| 479 | "applet_resource_user_id={}", | 310 | "applet_resource_user_id={}", |
| 480 | camera_handle.npad_type, camera_handle.npad_id, processor_config.light_target, | 311 | camera_handle.npad_type, camera_handle.npad_id, processor_config.light_target, |
| 481 | processor_config.required_mcu_version.major, | 312 | processor_config.required_mcu_version.major, |
| 482 | processor_config.required_mcu_version.minor, applet_resource_user_id); | 313 | processor_config.required_mcu_version.minor, aruid.pid); |
| 483 | 314 | ||
| 484 | auto result = IsIrCameraHandleValid(camera_handle); | 315 | R_TRY(IsIrCameraHandleValid(camera_handle)); |
| 485 | 316 | ||
| 486 | if (result.IsSuccess()) { | 317 | auto& device = GetIrCameraSharedMemoryDeviceEntry(camera_handle); |
| 487 | auto& device = GetIrCameraSharedMemoryDeviceEntry(camera_handle); | 318 | MakeProcessor<IrLedProcessor>(camera_handle, device); |
| 488 | MakeProcessor<IrLedProcessor>(camera_handle, device); | 319 | auto& image_transfer_processor = GetProcessor<IrLedProcessor>(camera_handle); |
| 489 | auto& image_transfer_processor = GetProcessor<IrLedProcessor>(camera_handle); | 320 | image_transfer_processor.SetConfig(processor_config); |
| 490 | image_transfer_processor.SetConfig(processor_config); | 321 | npad_device->SetPollingMode(Core::HID::EmulatedDeviceIndex::RightIndex, |
| 491 | npad_device->SetPollingMode(Core::HID::EmulatedDeviceIndex::RightIndex, | 322 | Common::Input::PollingMode::IR); |
| 492 | Common::Input::PollingMode::IR); | ||
| 493 | } | ||
| 494 | 323 | ||
| 495 | IPC::ResponseBuilder rb{ctx, 2}; | 324 | R_SUCCEED(); |
| 496 | rb.Push(result); | ||
| 497 | } | 325 | } |
| 498 | 326 | ||
| 499 | void IRS::StopImageProcessorAsync(HLERequestContext& ctx) { | 327 | Result IRS::StopImageProcessorAsync(Core::IrSensor::IrCameraHandle camera_handle, |
| 500 | IPC::RequestParser rp{ctx}; | 328 | ClientAppletResourceUserId aruid) { |
| 501 | struct Parameters { | ||
| 502 | Core::IrSensor::IrCameraHandle camera_handle; | ||
| 503 | INSERT_PADDING_WORDS_NOINIT(1); | ||
| 504 | u64 applet_resource_user_id; | ||
| 505 | }; | ||
| 506 | static_assert(sizeof(Parameters) == 0x10, "Parameters has incorrect size."); | ||
| 507 | |||
| 508 | const auto parameters{rp.PopRaw<Parameters>()}; | ||
| 509 | |||
| 510 | LOG_WARNING(Service_IRS, | 329 | LOG_WARNING(Service_IRS, |
| 511 | "(STUBBED) called, npad_type={}, npad_id={}, applet_resource_user_id={}", | 330 | "(STUBBED) called, npad_type={}, npad_id={}, applet_resource_user_id={}", |
| 512 | parameters.camera_handle.npad_type, parameters.camera_handle.npad_id, | 331 | camera_handle.npad_type, camera_handle.npad_id, aruid.pid); |
| 513 | parameters.applet_resource_user_id); | ||
| 514 | |||
| 515 | auto result = IsIrCameraHandleValid(parameters.camera_handle); | ||
| 516 | if (result.IsSuccess()) { | ||
| 517 | // TODO: Stop image processor async | ||
| 518 | npad_device->SetPollingMode(Core::HID::EmulatedDeviceIndex::RightIndex, | ||
| 519 | Common::Input::PollingMode::Active); | ||
| 520 | result = ResultSuccess; | ||
| 521 | } | ||
| 522 | 332 | ||
| 523 | IPC::ResponseBuilder rb{ctx, 2}; | 333 | R_TRY(IsIrCameraHandleValid(camera_handle)); |
| 524 | rb.Push(result); | ||
| 525 | } | ||
| 526 | 334 | ||
| 527 | void IRS::ActivateIrsensorWithFunctionLevel(HLERequestContext& ctx) { | 335 | // TODO: Stop image processor async |
| 528 | IPC::RequestParser rp{ctx}; | 336 | npad_device->SetPollingMode(Core::HID::EmulatedDeviceIndex::RightIndex, |
| 529 | struct Parameters { | 337 | Common::Input::PollingMode::Active); |
| 530 | Core::IrSensor::PackedFunctionLevel function_level; | ||
| 531 | INSERT_PADDING_WORDS_NOINIT(1); | ||
| 532 | u64 applet_resource_user_id; | ||
| 533 | }; | ||
| 534 | static_assert(sizeof(Parameters) == 0x10, "Parameters has incorrect size."); | ||
| 535 | 338 | ||
| 536 | const auto parameters{rp.PopRaw<Parameters>()}; | 339 | R_SUCCEED(); |
| 340 | } | ||
| 537 | 341 | ||
| 342 | Result IRS::ActivateIrsensorWithFunctionLevel(Core::IrSensor::PackedFunctionLevel function_level, | ||
| 343 | ClientAppletResourceUserId aruid) { | ||
| 538 | LOG_WARNING(Service_IRS, "(STUBBED) called, function_level={}, applet_resource_user_id={}", | 344 | LOG_WARNING(Service_IRS, "(STUBBED) called, function_level={}, applet_resource_user_id={}", |
| 539 | parameters.function_level.function_level, parameters.applet_resource_user_id); | 345 | function_level.function_level, aruid.pid); |
| 540 | 346 | R_SUCCEED(); | |
| 541 | IPC::ResponseBuilder rb{ctx, 2}; | ||
| 542 | rb.Push(ResultSuccess); | ||
| 543 | } | 347 | } |
| 544 | 348 | ||
| 545 | Result IRS::IsIrCameraHandleValid(const Core::IrSensor::IrCameraHandle& camera_handle) const { | 349 | Result IRS::IsIrCameraHandleValid(const Core::IrSensor::IrCameraHandle& camera_handle) const { |
diff --git a/src/core/hle/service/hid/irs.h b/src/core/hle/service/hid/irs.h index 06b7279ee..58dfee6c3 100644 --- a/src/core/hle/service/hid/irs.h +++ b/src/core/hle/service/hid/irs.h | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | #pragma once | 4 | #pragma once |
| 5 | 5 | ||
| 6 | #include "core/core.h" | 6 | #include "core/core.h" |
| 7 | #include "core/hle/service/cmif_types.h" | ||
| 7 | #include "core/hle/service/service.h" | 8 | #include "core/hle/service/service.h" |
| 8 | #include "hid_core/hid_types.h" | 9 | #include "hid_core/hid_types.h" |
| 9 | #include "hid_core/irsensor/irs_types.h" | 10 | #include "hid_core/irsensor/irs_types.h" |
| @@ -35,26 +36,73 @@ private: | |||
| 35 | }; | 36 | }; |
| 36 | static_assert(sizeof(StatusManager) == 0x8000, "StatusManager is an invalid size"); | 37 | static_assert(sizeof(StatusManager) == 0x8000, "StatusManager is an invalid size"); |
| 37 | 38 | ||
| 38 | void ActivateIrsensor(HLERequestContext& ctx); | 39 | Result ActivateIrsensor(ClientAppletResourceUserId aruid); |
| 39 | void DeactivateIrsensor(HLERequestContext& ctx); | 40 | |
| 40 | void GetIrsensorSharedMemoryHandle(HLERequestContext& ctx); | 41 | Result DeactivateIrsensor(ClientAppletResourceUserId aruid); |
| 41 | void StopImageProcessor(HLERequestContext& ctx); | 42 | |
| 42 | void RunMomentProcessor(HLERequestContext& ctx); | 43 | Result GetIrsensorSharedMemoryHandle(OutCopyHandle<Kernel::KSharedMemory> out_shared_memory, |
| 43 | void RunClusteringProcessor(HLERequestContext& ctx); | 44 | ClientAppletResourceUserId aruid); |
| 44 | void RunImageTransferProcessor(HLERequestContext& ctx); | 45 | Result StopImageProcessor(Core::IrSensor::IrCameraHandle camera_handle, |
| 45 | void GetImageTransferProcessorState(HLERequestContext& ctx); | 46 | ClientAppletResourceUserId aruid); |
| 46 | void RunTeraPluginProcessor(HLERequestContext& ctx); | 47 | |
| 47 | void GetNpadIrCameraHandle(HLERequestContext& ctx); | 48 | Result RunMomentProcessor(Core::IrSensor::IrCameraHandle camera_handle, |
| 48 | void RunPointingProcessor(HLERequestContext& ctx); | 49 | ClientAppletResourceUserId aruid, |
| 49 | void SuspendImageProcessor(HLERequestContext& ctx); | 50 | const Core::IrSensor::PackedMomentProcessorConfig& processor_config); |
| 50 | void CheckFirmwareVersion(HLERequestContext& ctx); | 51 | |
| 51 | void SetFunctionLevel(HLERequestContext& ctx); | 52 | Result RunClusteringProcessor( |
| 52 | void RunImageTransferExProcessor(HLERequestContext& ctx); | 53 | Core::IrSensor::IrCameraHandle camera_handle, ClientAppletResourceUserId aruid, |
| 53 | void RunIrLedProcessor(HLERequestContext& ctx); | 54 | const Core::IrSensor::PackedClusteringProcessorConfig& processor_config); |
| 54 | void StopImageProcessorAsync(HLERequestContext& ctx); | 55 | |
| 55 | void ActivateIrsensorWithFunctionLevel(HLERequestContext& ctx); | 56 | Result RunImageTransferProcessor( |
| 57 | Core::IrSensor::IrCameraHandle camera_handle, ClientAppletResourceUserId aruid, | ||
| 58 | const Core::IrSensor::PackedImageTransferProcessorConfig& processor_config, | ||
| 59 | u64 transfer_memory_size, InCopyHandle<Kernel::KTransferMemory> t_mem); | ||
| 60 | |||
| 61 | Result GetImageTransferProcessorState( | ||
| 62 | Out<Core::IrSensor::ImageTransferProcessorState> out_state, | ||
| 63 | Core::IrSensor::IrCameraHandle camera_handle, ClientAppletResourceUserId aruid, | ||
| 64 | OutBuffer<BufferAttr_HipcMapAlias> out_buffer_data); | ||
| 65 | |||
| 66 | Result RunTeraPluginProcessor(Core::IrSensor::IrCameraHandle camera_handle, | ||
| 67 | Core::IrSensor::PackedTeraPluginProcessorConfig processor_config, | ||
| 68 | ClientAppletResourceUserId aruid); | ||
| 69 | |||
| 70 | Result GetNpadIrCameraHandle(Out<Core::IrSensor::IrCameraHandle> out_camera_handle, | ||
| 71 | Core::HID::NpadIdType npad_id); | ||
| 72 | |||
| 73 | Result RunPointingProcessor( | ||
| 74 | Core::IrSensor::IrCameraHandle camera_handle, | ||
| 75 | const Core::IrSensor::PackedPointingProcessorConfig& processor_config, | ||
| 76 | ClientAppletResourceUserId aruid); | ||
| 77 | |||
| 78 | Result SuspendImageProcessor(Core::IrSensor::IrCameraHandle camera_handle, | ||
| 79 | ClientAppletResourceUserId aruid); | ||
| 80 | |||
| 81 | Result CheckFirmwareVersion(Core::IrSensor::IrCameraHandle camera_handle, | ||
| 82 | Core::IrSensor::PackedMcuVersion mcu_version, | ||
| 83 | ClientAppletResourceUserId aruid); | ||
| 84 | |||
| 85 | Result SetFunctionLevel(Core::IrSensor::IrCameraHandle camera_handle, | ||
| 86 | Core::IrSensor::PackedFunctionLevel function_level, | ||
| 87 | ClientAppletResourceUserId aruid); | ||
| 88 | |||
| 89 | Result RunImageTransferExProcessor( | ||
| 90 | Core::IrSensor::IrCameraHandle camera_handle, ClientAppletResourceUserId aruid, | ||
| 91 | const Core::IrSensor::PackedImageTransferProcessorExConfig& processor_config, | ||
| 92 | u64 transfer_memory_size, InCopyHandle<Kernel::KTransferMemory> t_mem); | ||
| 93 | |||
| 94 | Result RunIrLedProcessor(Core::IrSensor::IrCameraHandle camera_handle, | ||
| 95 | Core::IrSensor::PackedIrLedProcessorConfig processor_config, | ||
| 96 | ClientAppletResourceUserId aruid); | ||
| 97 | |||
| 98 | Result StopImageProcessorAsync(Core::IrSensor::IrCameraHandle camera_handle, | ||
| 99 | ClientAppletResourceUserId aruid); | ||
| 100 | |||
| 101 | Result ActivateIrsensorWithFunctionLevel(Core::IrSensor::PackedFunctionLevel function_level, | ||
| 102 | ClientAppletResourceUserId aruid); | ||
| 56 | 103 | ||
| 57 | Result IsIrCameraHandleValid(const Core::IrSensor::IrCameraHandle& camera_handle) const; | 104 | Result IsIrCameraHandleValid(const Core::IrSensor::IrCameraHandle& camera_handle) const; |
| 105 | |||
| 58 | Core::IrSensor::DeviceFormat& GetIrCameraSharedMemoryDeviceEntry( | 106 | Core::IrSensor::DeviceFormat& GetIrCameraSharedMemoryDeviceEntry( |
| 59 | const Core::IrSensor::IrCameraHandle& camera_handle); | 107 | const Core::IrSensor::IrCameraHandle& camera_handle); |
| 60 | 108 | ||
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_as_gpu.cpp b/src/core/hle/service/nvdrv/devices/nvhost_as_gpu.cpp index e6646ba04..68fe38874 100644 --- a/src/core/hle/service/nvdrv/devices/nvhost_as_gpu.cpp +++ b/src/core/hle/service/nvdrv/devices/nvhost_as_gpu.cpp | |||
| @@ -123,6 +123,8 @@ NvResult nvhost_as_gpu::AllocAsEx(IoctlAllocAsEx& params) { | |||
| 123 | vm.va_range_end = params.va_range_end; | 123 | vm.va_range_end = params.va_range_end; |
| 124 | } | 124 | } |
| 125 | 125 | ||
| 126 | const u64 max_big_page_bits = Common::Log2Ceil64(vm.va_range_end); | ||
| 127 | |||
| 126 | const auto start_pages{static_cast<u32>(vm.va_range_start >> VM::PAGE_SIZE_BITS)}; | 128 | const auto start_pages{static_cast<u32>(vm.va_range_start >> VM::PAGE_SIZE_BITS)}; |
| 127 | const auto end_pages{static_cast<u32>(vm.va_range_split >> VM::PAGE_SIZE_BITS)}; | 129 | const auto end_pages{static_cast<u32>(vm.va_range_split >> VM::PAGE_SIZE_BITS)}; |
| 128 | vm.small_page_allocator = std::make_shared<VM::Allocator>(start_pages, end_pages); | 130 | vm.small_page_allocator = std::make_shared<VM::Allocator>(start_pages, end_pages); |
| @@ -132,8 +134,8 @@ NvResult nvhost_as_gpu::AllocAsEx(IoctlAllocAsEx& params) { | |||
| 132 | static_cast<u32>((vm.va_range_end - vm.va_range_split) >> vm.big_page_size_bits)}; | 134 | static_cast<u32>((vm.va_range_end - vm.va_range_split) >> vm.big_page_size_bits)}; |
| 133 | vm.big_page_allocator = std::make_unique<VM::Allocator>(start_big_pages, end_big_pages); | 135 | vm.big_page_allocator = std::make_unique<VM::Allocator>(start_big_pages, end_big_pages); |
| 134 | 136 | ||
| 135 | gmmu = std::make_shared<Tegra::MemoryManager>(system, 40, vm.big_page_size_bits, | 137 | gmmu = std::make_shared<Tegra::MemoryManager>(system, max_big_page_bits, vm.va_range_split, |
| 136 | VM::PAGE_SIZE_BITS); | 138 | vm.big_page_size_bits, VM::PAGE_SIZE_BITS); |
| 137 | system.GPU().InitAddressSpace(*gmmu); | 139 | system.GPU().InitAddressSpace(*gmmu); |
| 138 | vm.initialised = true; | 140 | vm.initialised = true; |
| 139 | 141 | ||
diff --git a/src/hid_core/irsensor/image_transfer_processor.cpp b/src/hid_core/irsensor/image_transfer_processor.cpp index d6573f8dc..2b5a50ef6 100644 --- a/src/hid_core/irsensor/image_transfer_processor.cpp +++ b/src/hid_core/irsensor/image_transfer_processor.cpp | |||
| @@ -145,9 +145,8 @@ void ImageTransferProcessor::SetTransferMemoryAddress(Common::ProcessAddress t_m | |||
| 145 | } | 145 | } |
| 146 | 146 | ||
| 147 | Core::IrSensor::ImageTransferProcessorState ImageTransferProcessor::GetState( | 147 | Core::IrSensor::ImageTransferProcessorState ImageTransferProcessor::GetState( |
| 148 | std::vector<u8>& data) const { | 148 | std::span<u8> data) const { |
| 149 | const auto size = GetDataSize(current_config.trimming_format); | 149 | const auto size = std::min(GetDataSize(current_config.trimming_format), data.size()); |
| 150 | data.resize(size); | ||
| 151 | system.ApplicationMemory().ReadBlock(transfer_memory, data.data(), size); | 150 | system.ApplicationMemory().ReadBlock(transfer_memory, data.data(), size); |
| 152 | return processor_state; | 151 | return processor_state; |
| 153 | } | 152 | } |
diff --git a/src/hid_core/irsensor/image_transfer_processor.h b/src/hid_core/irsensor/image_transfer_processor.h index 4e0117084..df1c9d920 100644 --- a/src/hid_core/irsensor/image_transfer_processor.h +++ b/src/hid_core/irsensor/image_transfer_processor.h | |||
| @@ -3,6 +3,8 @@ | |||
| 3 | 3 | ||
| 4 | #pragma once | 4 | #pragma once |
| 5 | 5 | ||
| 6 | #include <span> | ||
| 7 | |||
| 6 | #include "common/typed_address.h" | 8 | #include "common/typed_address.h" |
| 7 | #include "hid_core/irsensor/irs_types.h" | 9 | #include "hid_core/irsensor/irs_types.h" |
| 8 | #include "hid_core/irsensor/processor_base.h" | 10 | #include "hid_core/irsensor/processor_base.h" |
| @@ -39,7 +41,7 @@ public: | |||
| 39 | // Transfer memory where the image data will be stored | 41 | // Transfer memory where the image data will be stored |
| 40 | void SetTransferMemoryAddress(Common::ProcessAddress t_mem); | 42 | void SetTransferMemoryAddress(Common::ProcessAddress t_mem); |
| 41 | 43 | ||
| 42 | Core::IrSensor::ImageTransferProcessorState GetState(std::vector<u8>& data) const; | 44 | Core::IrSensor::ImageTransferProcessorState GetState(std::span<u8> data) const; |
| 43 | 45 | ||
| 44 | private: | 46 | private: |
| 45 | // This is nn::irsensor::ImageTransferProcessorConfig | 47 | // This is nn::irsensor::ImageTransferProcessorConfig |
diff --git a/src/hid_core/resources/abstracted_pad/abstract_sixaxis_handler.cpp b/src/hid_core/resources/abstracted_pad/abstract_sixaxis_handler.cpp index 6d759298e..0dde244ef 100644 --- a/src/hid_core/resources/abstracted_pad/abstract_sixaxis_handler.cpp +++ b/src/hid_core/resources/abstracted_pad/abstract_sixaxis_handler.cpp | |||
| @@ -57,7 +57,7 @@ Result NpadAbstractSixAxisHandler::UpdateSixAxisState() { | |||
| 57 | Core::HID::NpadIdType npad_id = properties_handler->GetNpadId(); | 57 | Core::HID::NpadIdType npad_id = properties_handler->GetNpadId(); |
| 58 | for (std::size_t i = 0; i < AruidIndexMax; i++) { | 58 | for (std::size_t i = 0; i < AruidIndexMax; i++) { |
| 59 | auto* data = applet_resource_holder->applet_resource->GetAruidDataByIndex(i); | 59 | auto* data = applet_resource_holder->applet_resource->GetAruidDataByIndex(i); |
| 60 | if (data->flag.is_assigned) { | 60 | if (data == nullptr || !data->flag.is_assigned) { |
| 61 | continue; | 61 | continue; |
| 62 | } | 62 | } |
| 63 | auto& npad_entry = data->shared_memory_format->npad.npad_entry[NpadIdTypeToIndex(npad_id)]; | 63 | auto& npad_entry = data->shared_memory_format->npad.npad_entry[NpadIdTypeToIndex(npad_id)]; |
diff --git a/src/hid_core/resources/npad/npad.cpp b/src/hid_core/resources/npad/npad.cpp index fe3fdc5cd..053625b55 100644 --- a/src/hid_core/resources/npad/npad.cpp +++ b/src/hid_core/resources/npad/npad.cpp | |||
| @@ -131,7 +131,7 @@ void NPad::ControllerUpdate(Core::HID::ControllerTriggerType type, std::size_t c | |||
| 131 | 131 | ||
| 132 | auto* data = applet_resource_holder.applet_resource->GetAruidDataByIndex(aruid_index); | 132 | auto* data = applet_resource_holder.applet_resource->GetAruidDataByIndex(aruid_index); |
| 133 | 133 | ||
| 134 | if (!data->flag.is_assigned) { | 134 | if (data == nullptr || !data->flag.is_assigned) { |
| 135 | continue; | 135 | continue; |
| 136 | } | 136 | } |
| 137 | 137 | ||
| @@ -463,13 +463,13 @@ void NPad::OnUpdate(const Core::Timing::CoreTiming& core_timing) { | |||
| 463 | std::scoped_lock lock{*applet_resource_holder.shared_mutex}; | 463 | std::scoped_lock lock{*applet_resource_holder.shared_mutex}; |
| 464 | for (std::size_t aruid_index = 0; aruid_index < AruidIndexMax; ++aruid_index) { | 464 | for (std::size_t aruid_index = 0; aruid_index < AruidIndexMax; ++aruid_index) { |
| 465 | const auto* data = applet_resource_holder.applet_resource->GetAruidDataByIndex(aruid_index); | 465 | const auto* data = applet_resource_holder.applet_resource->GetAruidDataByIndex(aruid_index); |
| 466 | const auto aruid = data->aruid; | ||
| 467 | 466 | ||
| 468 | if (!data->flag.is_assigned) { | 467 | if (data == nullptr || !data->flag.is_assigned) { |
| 469 | continue; | 468 | continue; |
| 470 | } | 469 | } |
| 471 | 470 | ||
| 472 | bool is_set{}; | 471 | bool is_set{}; |
| 472 | const auto aruid = data->aruid; | ||
| 473 | npad_resource.IsSupportedNpadStyleSet(is_set, aruid); | 473 | npad_resource.IsSupportedNpadStyleSet(is_set, aruid); |
| 474 | // Wait until style is defined | 474 | // Wait until style is defined |
| 475 | if (!is_set) { | 475 | if (!is_set) { |
diff --git a/src/hid_core/resources/six_axis/six_axis.cpp b/src/hid_core/resources/six_axis/six_axis.cpp index abb6fd152..b407a5c76 100644 --- a/src/hid_core/resources/six_axis/six_axis.cpp +++ b/src/hid_core/resources/six_axis/six_axis.cpp | |||
| @@ -28,142 +28,148 @@ void SixAxis::OnRelease() {} | |||
| 28 | 28 | ||
| 29 | void SixAxis::OnUpdate(const Core::Timing::CoreTiming& core_timing) { | 29 | void SixAxis::OnUpdate(const Core::Timing::CoreTiming& core_timing) { |
| 30 | std::scoped_lock shared_lock{*shared_mutex}; | 30 | std::scoped_lock shared_lock{*shared_mutex}; |
| 31 | const u64 aruid = applet_resource->GetActiveAruid(); | ||
| 32 | auto* data = applet_resource->GetAruidData(aruid); | ||
| 33 | 31 | ||
| 34 | if (data == nullptr || !data->flag.is_assigned) { | 32 | for (std::size_t aruid_index = 0; aruid_index < AruidIndexMax; ++aruid_index) { |
| 35 | return; | 33 | const auto* data = applet_resource->GetAruidDataByIndex(aruid_index); |
| 36 | } | ||
| 37 | |||
| 38 | if (!IsControllerActivated()) { | ||
| 39 | return; | ||
| 40 | } | ||
| 41 | 34 | ||
| 42 | for (std::size_t i = 0; i < controller_data.size(); ++i) { | 35 | if (data == nullptr || !data->flag.is_assigned) { |
| 43 | NpadSharedMemoryEntry& shared_memory = data->shared_memory_format->npad.npad_entry[i]; | ||
| 44 | auto& controller = controller_data[i]; | ||
| 45 | const auto& controller_type = controller.device->GetNpadStyleIndex(); | ||
| 46 | |||
| 47 | if (controller_type == Core::HID::NpadStyleIndex::None || | ||
| 48 | !controller.device->IsConnected()) { | ||
| 49 | continue; | 36 | continue; |
| 50 | } | 37 | } |
| 51 | 38 | ||
| 52 | const auto& motion_state = controller.device->GetMotions(); | 39 | if (!IsControllerActivated()) { |
| 53 | auto& sixaxis_fullkey_state = controller.sixaxis_fullkey_state; | 40 | return; |
| 54 | auto& sixaxis_handheld_state = controller.sixaxis_handheld_state; | ||
| 55 | auto& sixaxis_dual_left_state = controller.sixaxis_dual_left_state; | ||
| 56 | auto& sixaxis_dual_right_state = controller.sixaxis_dual_right_state; | ||
| 57 | auto& sixaxis_left_lifo_state = controller.sixaxis_left_lifo_state; | ||
| 58 | auto& sixaxis_right_lifo_state = controller.sixaxis_right_lifo_state; | ||
| 59 | |||
| 60 | auto& sixaxis_fullkey_lifo = shared_memory.internal_state.sixaxis_fullkey_lifo; | ||
| 61 | auto& sixaxis_handheld_lifo = shared_memory.internal_state.sixaxis_handheld_lifo; | ||
| 62 | auto& sixaxis_dual_left_lifo = shared_memory.internal_state.sixaxis_dual_left_lifo; | ||
| 63 | auto& sixaxis_dual_right_lifo = shared_memory.internal_state.sixaxis_dual_right_lifo; | ||
| 64 | auto& sixaxis_left_lifo = shared_memory.internal_state.sixaxis_left_lifo; | ||
| 65 | auto& sixaxis_right_lifo = shared_memory.internal_state.sixaxis_right_lifo; | ||
| 66 | |||
| 67 | // Clear previous state | ||
| 68 | sixaxis_fullkey_state = {}; | ||
| 69 | sixaxis_handheld_state = {}; | ||
| 70 | sixaxis_dual_left_state = {}; | ||
| 71 | sixaxis_dual_right_state = {}; | ||
| 72 | sixaxis_left_lifo_state = {}; | ||
| 73 | sixaxis_right_lifo_state = {}; | ||
| 74 | |||
| 75 | if (controller.sixaxis_sensor_enabled && Settings::values.motion_enabled.GetValue()) { | ||
| 76 | controller.sixaxis_at_rest = true; | ||
| 77 | for (std::size_t e = 0; e < motion_state.size(); ++e) { | ||
| 78 | controller.sixaxis_at_rest = | ||
| 79 | controller.sixaxis_at_rest && motion_state[e].is_at_rest; | ||
| 80 | } | ||
| 81 | } | 41 | } |
| 82 | 42 | ||
| 83 | const auto set_motion_state = [&](Core::HID::SixAxisSensorState& state, | 43 | for (std::size_t i = 0; i < controller_data.size(); ++i) { |
| 84 | const Core::HID::ControllerMotion& hid_state) { | 44 | NpadSharedMemoryEntry& shared_memory = data->shared_memory_format->npad.npad_entry[i]; |
| 85 | using namespace std::literals::chrono_literals; | 45 | auto& controller = controller_data[i]; |
| 86 | static constexpr Core::HID::SixAxisSensorState default_motion_state = { | 46 | const auto& controller_type = controller.device->GetNpadStyleIndex(); |
| 87 | .delta_time = std::chrono::nanoseconds(5ms).count(), | 47 | |
| 88 | .accel = {0, 0, -1.0f}, | 48 | if (!data->flag.enable_six_axis_sensor) { |
| 89 | .orientation = | 49 | continue; |
| 90 | { | 50 | } |
| 91 | Common::Vec3f{1.0f, 0, 0}, | 51 | |
| 92 | Common::Vec3f{0, 1.0f, 0}, | 52 | if (controller_type == Core::HID::NpadStyleIndex::None || |
| 93 | Common::Vec3f{0, 0, 1.0f}, | 53 | !controller.device->IsConnected()) { |
| 94 | }, | 54 | continue; |
| 95 | .attribute = {1}, | 55 | } |
| 56 | |||
| 57 | const auto& motion_state = controller.device->GetMotions(); | ||
| 58 | auto& sixaxis_fullkey_state = controller.sixaxis_fullkey_state; | ||
| 59 | auto& sixaxis_handheld_state = controller.sixaxis_handheld_state; | ||
| 60 | auto& sixaxis_dual_left_state = controller.sixaxis_dual_left_state; | ||
| 61 | auto& sixaxis_dual_right_state = controller.sixaxis_dual_right_state; | ||
| 62 | auto& sixaxis_left_lifo_state = controller.sixaxis_left_lifo_state; | ||
| 63 | auto& sixaxis_right_lifo_state = controller.sixaxis_right_lifo_state; | ||
| 64 | |||
| 65 | auto& sixaxis_fullkey_lifo = shared_memory.internal_state.sixaxis_fullkey_lifo; | ||
| 66 | auto& sixaxis_handheld_lifo = shared_memory.internal_state.sixaxis_handheld_lifo; | ||
| 67 | auto& sixaxis_dual_left_lifo = shared_memory.internal_state.sixaxis_dual_left_lifo; | ||
| 68 | auto& sixaxis_dual_right_lifo = shared_memory.internal_state.sixaxis_dual_right_lifo; | ||
| 69 | auto& sixaxis_left_lifo = shared_memory.internal_state.sixaxis_left_lifo; | ||
| 70 | auto& sixaxis_right_lifo = shared_memory.internal_state.sixaxis_right_lifo; | ||
| 71 | |||
| 72 | // Clear previous state | ||
| 73 | sixaxis_fullkey_state = {}; | ||
| 74 | sixaxis_handheld_state = {}; | ||
| 75 | sixaxis_dual_left_state = {}; | ||
| 76 | sixaxis_dual_right_state = {}; | ||
| 77 | sixaxis_left_lifo_state = {}; | ||
| 78 | sixaxis_right_lifo_state = {}; | ||
| 79 | |||
| 80 | if (controller.sixaxis_sensor_enabled && Settings::values.motion_enabled.GetValue()) { | ||
| 81 | controller.sixaxis_at_rest = true; | ||
| 82 | for (std::size_t e = 0; e < motion_state.size(); ++e) { | ||
| 83 | controller.sixaxis_at_rest = | ||
| 84 | controller.sixaxis_at_rest && motion_state[e].is_at_rest; | ||
| 85 | } | ||
| 86 | } | ||
| 87 | |||
| 88 | const auto set_motion_state = [&](Core::HID::SixAxisSensorState& state, | ||
| 89 | const Core::HID::ControllerMotion& hid_state) { | ||
| 90 | using namespace std::literals::chrono_literals; | ||
| 91 | static constexpr Core::HID::SixAxisSensorState default_motion_state = { | ||
| 92 | .delta_time = std::chrono::nanoseconds(5ms).count(), | ||
| 93 | .accel = {0, 0, -1.0f}, | ||
| 94 | .orientation = | ||
| 95 | { | ||
| 96 | Common::Vec3f{1.0f, 0, 0}, | ||
| 97 | Common::Vec3f{0, 1.0f, 0}, | ||
| 98 | Common::Vec3f{0, 0, 1.0f}, | ||
| 99 | }, | ||
| 100 | .attribute = {1}, | ||
| 101 | }; | ||
| 102 | if (!controller.sixaxis_sensor_enabled) { | ||
| 103 | state = default_motion_state; | ||
| 104 | return; | ||
| 105 | } | ||
| 106 | if (!Settings::values.motion_enabled.GetValue()) { | ||
| 107 | state = default_motion_state; | ||
| 108 | return; | ||
| 109 | } | ||
| 110 | state.attribute.is_connected.Assign(1); | ||
| 111 | state.delta_time = std::chrono::nanoseconds(5ms).count(); | ||
| 112 | state.accel = hid_state.accel; | ||
| 113 | state.gyro = hid_state.gyro; | ||
| 114 | state.rotation = hid_state.rotation; | ||
| 115 | state.orientation = hid_state.orientation; | ||
| 96 | }; | 116 | }; |
| 97 | if (!controller.sixaxis_sensor_enabled) { | 117 | |
| 98 | state = default_motion_state; | 118 | switch (controller_type) { |
| 99 | return; | 119 | case Core::HID::NpadStyleIndex::None: |
| 120 | ASSERT(false); | ||
| 121 | break; | ||
| 122 | case Core::HID::NpadStyleIndex::Fullkey: | ||
| 123 | set_motion_state(sixaxis_fullkey_state, motion_state[0]); | ||
| 124 | break; | ||
| 125 | case Core::HID::NpadStyleIndex::Handheld: | ||
| 126 | set_motion_state(sixaxis_handheld_state, motion_state[0]); | ||
| 127 | break; | ||
| 128 | case Core::HID::NpadStyleIndex::JoyconDual: | ||
| 129 | set_motion_state(sixaxis_dual_left_state, motion_state[0]); | ||
| 130 | set_motion_state(sixaxis_dual_right_state, motion_state[1]); | ||
| 131 | break; | ||
| 132 | case Core::HID::NpadStyleIndex::JoyconLeft: | ||
| 133 | set_motion_state(sixaxis_left_lifo_state, motion_state[0]); | ||
| 134 | break; | ||
| 135 | case Core::HID::NpadStyleIndex::JoyconRight: | ||
| 136 | set_motion_state(sixaxis_right_lifo_state, motion_state[1]); | ||
| 137 | break; | ||
| 138 | case Core::HID::NpadStyleIndex::Pokeball: | ||
| 139 | using namespace std::literals::chrono_literals; | ||
| 140 | set_motion_state(sixaxis_fullkey_state, motion_state[0]); | ||
| 141 | sixaxis_fullkey_state.delta_time = std::chrono::nanoseconds(15ms).count(); | ||
| 142 | break; | ||
| 143 | default: | ||
| 144 | break; | ||
| 100 | } | 145 | } |
| 101 | if (!Settings::values.motion_enabled.GetValue()) { | 146 | |
| 102 | state = default_motion_state; | 147 | sixaxis_fullkey_state.sampling_number = |
| 103 | return; | 148 | sixaxis_fullkey_lifo.lifo.ReadCurrentEntry().state.sampling_number + 1; |
| 149 | sixaxis_handheld_state.sampling_number = | ||
| 150 | sixaxis_handheld_lifo.lifo.ReadCurrentEntry().state.sampling_number + 1; | ||
| 151 | sixaxis_dual_left_state.sampling_number = | ||
| 152 | sixaxis_dual_left_lifo.lifo.ReadCurrentEntry().state.sampling_number + 1; | ||
| 153 | sixaxis_dual_right_state.sampling_number = | ||
| 154 | sixaxis_dual_right_lifo.lifo.ReadCurrentEntry().state.sampling_number + 1; | ||
| 155 | sixaxis_left_lifo_state.sampling_number = | ||
| 156 | sixaxis_left_lifo.lifo.ReadCurrentEntry().state.sampling_number + 1; | ||
| 157 | sixaxis_right_lifo_state.sampling_number = | ||
| 158 | sixaxis_right_lifo.lifo.ReadCurrentEntry().state.sampling_number + 1; | ||
| 159 | |||
| 160 | if (IndexToNpadIdType(i) == Core::HID::NpadIdType::Handheld) { | ||
| 161 | // This buffer only is updated on handheld on HW | ||
| 162 | sixaxis_handheld_lifo.lifo.WriteNextEntry(sixaxis_handheld_state); | ||
| 163 | } else { | ||
| 164 | // Handheld doesn't update this buffer on HW | ||
| 165 | sixaxis_fullkey_lifo.lifo.WriteNextEntry(sixaxis_fullkey_state); | ||
| 104 | } | 166 | } |
| 105 | state.attribute.is_connected.Assign(1); | ||
| 106 | state.delta_time = std::chrono::nanoseconds(5ms).count(); | ||
| 107 | state.accel = hid_state.accel; | ||
| 108 | state.gyro = hid_state.gyro; | ||
| 109 | state.rotation = hid_state.rotation; | ||
| 110 | state.orientation = hid_state.orientation; | ||
| 111 | }; | ||
| 112 | |||
| 113 | switch (controller_type) { | ||
| 114 | case Core::HID::NpadStyleIndex::None: | ||
| 115 | ASSERT(false); | ||
| 116 | break; | ||
| 117 | case Core::HID::NpadStyleIndex::Fullkey: | ||
| 118 | set_motion_state(sixaxis_fullkey_state, motion_state[0]); | ||
| 119 | break; | ||
| 120 | case Core::HID::NpadStyleIndex::Handheld: | ||
| 121 | set_motion_state(sixaxis_handheld_state, motion_state[0]); | ||
| 122 | break; | ||
| 123 | case Core::HID::NpadStyleIndex::JoyconDual: | ||
| 124 | set_motion_state(sixaxis_dual_left_state, motion_state[0]); | ||
| 125 | set_motion_state(sixaxis_dual_right_state, motion_state[1]); | ||
| 126 | break; | ||
| 127 | case Core::HID::NpadStyleIndex::JoyconLeft: | ||
| 128 | set_motion_state(sixaxis_left_lifo_state, motion_state[0]); | ||
| 129 | break; | ||
| 130 | case Core::HID::NpadStyleIndex::JoyconRight: | ||
| 131 | set_motion_state(sixaxis_right_lifo_state, motion_state[1]); | ||
| 132 | break; | ||
| 133 | case Core::HID::NpadStyleIndex::Pokeball: | ||
| 134 | using namespace std::literals::chrono_literals; | ||
| 135 | set_motion_state(sixaxis_fullkey_state, motion_state[0]); | ||
| 136 | sixaxis_fullkey_state.delta_time = std::chrono::nanoseconds(15ms).count(); | ||
| 137 | break; | ||
| 138 | default: | ||
| 139 | break; | ||
| 140 | } | ||
| 141 | 167 | ||
| 142 | sixaxis_fullkey_state.sampling_number = | 168 | sixaxis_dual_left_lifo.lifo.WriteNextEntry(sixaxis_dual_left_state); |
| 143 | sixaxis_fullkey_lifo.lifo.ReadCurrentEntry().state.sampling_number + 1; | 169 | sixaxis_dual_right_lifo.lifo.WriteNextEntry(sixaxis_dual_right_state); |
| 144 | sixaxis_handheld_state.sampling_number = | 170 | sixaxis_left_lifo.lifo.WriteNextEntry(sixaxis_left_lifo_state); |
| 145 | sixaxis_handheld_lifo.lifo.ReadCurrentEntry().state.sampling_number + 1; | 171 | sixaxis_right_lifo.lifo.WriteNextEntry(sixaxis_right_lifo_state); |
| 146 | sixaxis_dual_left_state.sampling_number = | ||
| 147 | sixaxis_dual_left_lifo.lifo.ReadCurrentEntry().state.sampling_number + 1; | ||
| 148 | sixaxis_dual_right_state.sampling_number = | ||
| 149 | sixaxis_dual_right_lifo.lifo.ReadCurrentEntry().state.sampling_number + 1; | ||
| 150 | sixaxis_left_lifo_state.sampling_number = | ||
| 151 | sixaxis_left_lifo.lifo.ReadCurrentEntry().state.sampling_number + 1; | ||
| 152 | sixaxis_right_lifo_state.sampling_number = | ||
| 153 | sixaxis_right_lifo.lifo.ReadCurrentEntry().state.sampling_number + 1; | ||
| 154 | |||
| 155 | if (IndexToNpadIdType(i) == Core::HID::NpadIdType::Handheld) { | ||
| 156 | // This buffer only is updated on handheld on HW | ||
| 157 | sixaxis_handheld_lifo.lifo.WriteNextEntry(sixaxis_handheld_state); | ||
| 158 | } else { | ||
| 159 | // Handheld doesn't update this buffer on HW | ||
| 160 | sixaxis_fullkey_lifo.lifo.WriteNextEntry(sixaxis_fullkey_state); | ||
| 161 | } | 172 | } |
| 162 | |||
| 163 | sixaxis_dual_left_lifo.lifo.WriteNextEntry(sixaxis_dual_left_state); | ||
| 164 | sixaxis_dual_right_lifo.lifo.WriteNextEntry(sixaxis_dual_right_state); | ||
| 165 | sixaxis_left_lifo.lifo.WriteNextEntry(sixaxis_left_lifo_state); | ||
| 166 | sixaxis_right_lifo.lifo.WriteNextEntry(sixaxis_right_lifo_state); | ||
| 167 | } | 173 | } |
| 168 | } | 174 | } |
| 169 | 175 | ||
diff --git a/src/hid_core/resources/touch_screen/touch_screen_resource.cpp b/src/hid_core/resources/touch_screen/touch_screen_resource.cpp index 56e8e8e51..c39321915 100644 --- a/src/hid_core/resources/touch_screen/touch_screen_resource.cpp +++ b/src/hid_core/resources/touch_screen/touch_screen_resource.cpp | |||
| @@ -63,7 +63,7 @@ Result TouchResource::ActivateTouch(u64 aruid) { | |||
| 63 | auto* applet_data = applet_resource->GetAruidDataByIndex(aruid_index); | 63 | auto* applet_data = applet_resource->GetAruidDataByIndex(aruid_index); |
| 64 | TouchAruidData& touch_data = aruid_data[aruid_index]; | 64 | TouchAruidData& touch_data = aruid_data[aruid_index]; |
| 65 | 65 | ||
| 66 | if (!applet_data->flag.is_assigned) { | 66 | if (applet_data == nullptr || !applet_data->flag.is_assigned) { |
| 67 | touch_data = {}; | 67 | touch_data = {}; |
| 68 | continue; | 68 | continue; |
| 69 | } | 69 | } |
| @@ -124,7 +124,7 @@ Result TouchResource::ActivateGesture(u64 aruid, u32 basic_gesture_id) { | |||
| 124 | auto* applet_data = applet_resource->GetAruidDataByIndex(aruid_index); | 124 | auto* applet_data = applet_resource->GetAruidDataByIndex(aruid_index); |
| 125 | TouchAruidData& touch_data = aruid_data[aruid_index]; | 125 | TouchAruidData& touch_data = aruid_data[aruid_index]; |
| 126 | 126 | ||
| 127 | if (!applet_data->flag.is_assigned) { | 127 | if (applet_data == nullptr || !applet_data->flag.is_assigned) { |
| 128 | touch_data = {}; | 128 | touch_data = {}; |
| 129 | continue; | 129 | continue; |
| 130 | } | 130 | } |
| @@ -324,7 +324,7 @@ Result TouchResource::SetTouchScreenConfiguration( | |||
| 324 | const auto* applet_data = applet_resource->GetAruidDataByIndex(aruid_index); | 324 | const auto* applet_data = applet_resource->GetAruidDataByIndex(aruid_index); |
| 325 | TouchAruidData& data = aruid_data[aruid_index]; | 325 | TouchAruidData& data = aruid_data[aruid_index]; |
| 326 | 326 | ||
| 327 | if (!applet_data->flag.is_assigned) { | 327 | if (applet_data == nullptr || !applet_data->flag.is_assigned) { |
| 328 | continue; | 328 | continue; |
| 329 | } | 329 | } |
| 330 | if (aruid != data.aruid) { | 330 | if (aruid != data.aruid) { |
| @@ -344,7 +344,7 @@ Result TouchResource::GetTouchScreenConfiguration( | |||
| 344 | const auto* applet_data = applet_resource->GetAruidDataByIndex(aruid_index); | 344 | const auto* applet_data = applet_resource->GetAruidDataByIndex(aruid_index); |
| 345 | const TouchAruidData& data = aruid_data[aruid_index]; | 345 | const TouchAruidData& data = aruid_data[aruid_index]; |
| 346 | 346 | ||
| 347 | if (!applet_data->flag.is_assigned) { | 347 | if (applet_data == nullptr || !applet_data->flag.is_assigned) { |
| 348 | continue; | 348 | continue; |
| 349 | } | 349 | } |
| 350 | if (aruid != data.aruid) { | 350 | if (aruid != data.aruid) { |
diff --git a/src/video_core/host1x/host1x.cpp b/src/video_core/host1x/host1x.cpp index c4c7a5883..e923bfa22 100644 --- a/src/video_core/host1x/host1x.cpp +++ b/src/video_core/host1x/host1x.cpp | |||
| @@ -10,7 +10,7 @@ namespace Host1x { | |||
| 10 | 10 | ||
| 11 | Host1x::Host1x(Core::System& system_) | 11 | Host1x::Host1x(Core::System& system_) |
| 12 | : system{system_}, syncpoint_manager{}, | 12 | : system{system_}, syncpoint_manager{}, |
| 13 | memory_manager(system.DeviceMemory()), gmmu_manager{system, memory_manager, 32, 12}, | 13 | memory_manager(system.DeviceMemory()), gmmu_manager{system, memory_manager, 32, 0, 12}, |
| 14 | allocator{std::make_unique<Common::FlatAllocator<u32, 0, 32>>(1 << 12)} {} | 14 | allocator{std::make_unique<Common::FlatAllocator<u32, 0, 32>>(1 << 12)} {} |
| 15 | 15 | ||
| 16 | Host1x::~Host1x() = default; | 16 | Host1x::~Host1x() = default; |
diff --git a/src/video_core/memory_manager.cpp b/src/video_core/memory_manager.cpp index a52f8e486..ffafc48ef 100644 --- a/src/video_core/memory_manager.cpp +++ b/src/video_core/memory_manager.cpp | |||
| @@ -22,11 +22,12 @@ using Tegra::Memory::GuestMemoryFlags; | |||
| 22 | std::atomic<size_t> MemoryManager::unique_identifier_generator{}; | 22 | std::atomic<size_t> MemoryManager::unique_identifier_generator{}; |
| 23 | 23 | ||
| 24 | MemoryManager::MemoryManager(Core::System& system_, MaxwellDeviceMemoryManager& memory_, | 24 | MemoryManager::MemoryManager(Core::System& system_, MaxwellDeviceMemoryManager& memory_, |
| 25 | u64 address_space_bits_, u64 big_page_bits_, u64 page_bits_) | 25 | u64 address_space_bits_, GPUVAddr split_address_, u64 big_page_bits_, |
| 26 | u64 page_bits_) | ||
| 26 | : system{system_}, memory{memory_}, address_space_bits{address_space_bits_}, | 27 | : system{system_}, memory{memory_}, address_space_bits{address_space_bits_}, |
| 27 | page_bits{page_bits_}, big_page_bits{big_page_bits_}, entries{}, big_entries{}, | 28 | split_address{split_address_}, page_bits{page_bits_}, big_page_bits{big_page_bits_}, |
| 28 | page_table{address_space_bits, address_space_bits + page_bits - 38, | 29 | entries{}, big_entries{}, page_table{address_space_bits, address_space_bits + page_bits - 38, |
| 29 | page_bits != big_page_bits ? page_bits : 0}, | 30 | page_bits != big_page_bits ? page_bits : 0}, |
| 30 | kind_map{PTEKind::INVALID}, unique_identifier{unique_identifier_generator.fetch_add( | 31 | kind_map{PTEKind::INVALID}, unique_identifier{unique_identifier_generator.fetch_add( |
| 31 | 1, std::memory_order_acq_rel)}, | 32 | 1, std::memory_order_acq_rel)}, |
| 32 | accumulator{std::make_unique<VideoCommon::InvalidationAccumulator>()} { | 33 | accumulator{std::make_unique<VideoCommon::InvalidationAccumulator>()} { |
| @@ -48,10 +49,10 @@ MemoryManager::MemoryManager(Core::System& system_, MaxwellDeviceMemoryManager& | |||
| 48 | entries.resize(page_table_size / 32, 0); | 49 | entries.resize(page_table_size / 32, 0); |
| 49 | } | 50 | } |
| 50 | 51 | ||
| 51 | MemoryManager::MemoryManager(Core::System& system_, u64 address_space_bits_, u64 big_page_bits_, | 52 | MemoryManager::MemoryManager(Core::System& system_, u64 address_space_bits_, |
| 52 | u64 page_bits_) | 53 | GPUVAddr split_address_, u64 big_page_bits_, u64 page_bits_) |
| 53 | : MemoryManager(system_, system_.Host1x().MemoryManager(), address_space_bits_, big_page_bits_, | 54 | : MemoryManager(system_, system_.Host1x().MemoryManager(), address_space_bits_, split_address_, |
| 54 | page_bits_) {} | 55 | big_page_bits_, page_bits_) {} |
| 55 | 56 | ||
| 56 | MemoryManager::~MemoryManager() = default; | 57 | MemoryManager::~MemoryManager() = default; |
| 57 | 58 | ||
diff --git a/src/video_core/memory_manager.h b/src/video_core/memory_manager.h index c5255f36c..ac7c1472a 100644 --- a/src/video_core/memory_manager.h +++ b/src/video_core/memory_manager.h | |||
| @@ -36,10 +36,11 @@ namespace Tegra { | |||
| 36 | class MemoryManager final { | 36 | class MemoryManager final { |
| 37 | public: | 37 | public: |
| 38 | explicit MemoryManager(Core::System& system_, u64 address_space_bits_ = 40, | 38 | explicit MemoryManager(Core::System& system_, u64 address_space_bits_ = 40, |
| 39 | u64 big_page_bits_ = 16, u64 page_bits_ = 12); | 39 | GPUVAddr split_address = 1ULL << 34, u64 big_page_bits_ = 16, |
| 40 | explicit MemoryManager(Core::System& system_, MaxwellDeviceMemoryManager& memory_, | ||
| 41 | u64 address_space_bits_ = 40, u64 big_page_bits_ = 16, | ||
| 42 | u64 page_bits_ = 12); | 40 | u64 page_bits_ = 12); |
| 41 | explicit MemoryManager(Core::System& system_, MaxwellDeviceMemoryManager& memory_, | ||
| 42 | u64 address_space_bits_ = 40, GPUVAddr split_address = 1ULL << 34, | ||
| 43 | u64 big_page_bits_ = 16, u64 page_bits_ = 12); | ||
| 43 | ~MemoryManager(); | 44 | ~MemoryManager(); |
| 44 | 45 | ||
| 45 | size_t GetID() const { | 46 | size_t GetID() const { |
| @@ -192,6 +193,7 @@ private: | |||
| 192 | MaxwellDeviceMemoryManager& memory; | 193 | MaxwellDeviceMemoryManager& memory; |
| 193 | 194 | ||
| 194 | const u64 address_space_bits; | 195 | const u64 address_space_bits; |
| 196 | GPUVAddr split_address; | ||
| 195 | const u64 page_bits; | 197 | const u64 page_bits; |
| 196 | u64 address_space_size; | 198 | u64 address_space_size; |
| 197 | u64 page_size; | 199 | u64 page_size; |
diff --git a/src/web_service/web_backend.cpp b/src/web_service/web_backend.cpp index dff380cca..fdf3ac846 100644 --- a/src/web_service/web_backend.cpp +++ b/src/web_service/web_backend.cpp | |||
| @@ -32,9 +32,14 @@ struct Client::Impl { | |||
| 32 | Impl(std::string host_, std::string username_, std::string token_) | 32 | Impl(std::string host_, std::string username_, std::string token_) |
| 33 | : host{std::move(host_)}, username{std::move(username_)}, token{std::move(token_)} { | 33 | : host{std::move(host_)}, username{std::move(username_)}, token{std::move(token_)} { |
| 34 | std::scoped_lock lock{jwt_cache.mutex}; | 34 | std::scoped_lock lock{jwt_cache.mutex}; |
| 35 | if (username == jwt_cache.username && token == jwt_cache.token) { | 35 | if (this->username == jwt_cache.username && this->token == jwt_cache.token) { |
| 36 | jwt = jwt_cache.jwt; | 36 | jwt = jwt_cache.jwt; |
| 37 | } | 37 | } |
| 38 | |||
| 39 | // Normalize host expression | ||
| 40 | if (!this->host.empty() && this->host.back() == '/') { | ||
| 41 | static_cast<void>(this->host.pop_back()); | ||
| 42 | } | ||
| 38 | } | 43 | } |
| 39 | 44 | ||
| 40 | /// A generic function handles POST, GET and DELETE request together | 45 | /// A generic function handles POST, GET and DELETE request together |
| @@ -71,18 +76,16 @@ struct Client::Impl { | |||
| 71 | const std::string& jwt_ = "", const std::string& username_ = "", | 76 | const std::string& jwt_ = "", const std::string& username_ = "", |
| 72 | const std::string& token_ = "") { | 77 | const std::string& token_ = "") { |
| 73 | if (cli == nullptr) { | 78 | if (cli == nullptr) { |
| 74 | cli = std::make_unique<httplib::Client>(host); | 79 | cli = std::make_unique<httplib::Client>(host.c_str()); |
| 80 | cli->set_connection_timeout(TIMEOUT_SECONDS); | ||
| 81 | cli->set_read_timeout(TIMEOUT_SECONDS); | ||
| 82 | cli->set_write_timeout(TIMEOUT_SECONDS); | ||
| 75 | } | 83 | } |
| 76 | |||
| 77 | if (!cli->is_valid()) { | 84 | if (!cli->is_valid()) { |
| 78 | LOG_ERROR(WebService, "Client is invalid, skipping request!"); | 85 | LOG_ERROR(WebService, "Invalid URL {}", host + path); |
| 79 | return {}; | 86 | return WebResult{WebResult::Code::InvalidURL, "Invalid URL", ""}; |
| 80 | } | 87 | } |
| 81 | 88 | ||
| 82 | cli->set_connection_timeout(TIMEOUT_SECONDS); | ||
| 83 | cli->set_read_timeout(TIMEOUT_SECONDS); | ||
| 84 | cli->set_write_timeout(TIMEOUT_SECONDS); | ||
| 85 | |||
| 86 | httplib::Headers params; | 89 | httplib::Headers params; |
| 87 | if (!jwt_.empty()) { | 90 | if (!jwt_.empty()) { |
| 88 | params = { | 91 | params = { |
| @@ -107,15 +110,15 @@ struct Client::Impl { | |||
| 107 | request.headers = params; | 110 | request.headers = params; |
| 108 | request.body = data; | 111 | request.body = data; |
| 109 | 112 | ||
| 110 | httplib::Response response; | 113 | httplib::Result result = cli->send(request); |
| 111 | httplib::Error error; | ||
| 112 | 114 | ||
| 113 | if (!cli->send(request, response, error)) { | 115 | if (!result) { |
| 114 | LOG_ERROR(WebService, "{} to {} returned null (httplib Error: {})", method, host + path, | 116 | LOG_ERROR(WebService, "{} to {} returned null", method, host + path); |
| 115 | httplib::to_string(error)); | ||
| 116 | return WebResult{WebResult::Code::LibError, "Null response", ""}; | 117 | return WebResult{WebResult::Code::LibError, "Null response", ""}; |
| 117 | } | 118 | } |
| 118 | 119 | ||
| 120 | httplib::Response response = result.value(); | ||
| 121 | |||
| 119 | if (response.status >= 400) { | 122 | if (response.status >= 400) { |
| 120 | LOG_ERROR(WebService, "{} to {} returned error status code: {}", method, host + path, | 123 | LOG_ERROR(WebService, "{} to {} returned error status code: {}", method, host + path, |
| 121 | response.status); | 124 | response.status); |
diff --git a/src/yuzu/configuration/configure_ui.cpp b/src/yuzu/configuration/configure_ui.cpp index c8e871151..f3c91586c 100644 --- a/src/yuzu/configuration/configure_ui.cpp +++ b/src/yuzu/configuration/configure_ui.cpp | |||
| @@ -248,82 +248,22 @@ void ConfigureUi::RetranslateUI() { | |||
| 248 | } | 248 | } |
| 249 | 249 | ||
| 250 | void ConfigureUi::InitializeLanguageComboBox() { | 250 | void ConfigureUi::InitializeLanguageComboBox() { |
| 251 | // This is a list of lexicographically sorted languages, only the available translations are | ||
| 252 | // shown to the user. | ||
| 253 | static const struct { | ||
| 254 | const QString name; | ||
| 255 | const char* id; | ||
| 256 | } languages[] = { | ||
| 257 | // clang-format off | ||
| 258 | {QStringLiteral(u"Bahasa Indonesia"), "id"}, // Indonesian | ||
| 259 | {QStringLiteral(u"Bahasa Melayu"), "ms"}, // Malay | ||
| 260 | {QStringLiteral(u"Catal\u00E0"), "ca"}, // Catalan | ||
| 261 | {QStringLiteral(u"\u010Ce\u0161tina"), "cs"}, // Czech | ||
| 262 | {QStringLiteral(u"Dansk"), "da"}, // Danish | ||
| 263 | {QStringLiteral(u"Deutsch"), "de"}, // German | ||
| 264 | {QStringLiteral(u"English"), "en"}, // English | ||
| 265 | {QStringLiteral(u"Espa\u00F1ol"), "es"}, // Spanish | ||
| 266 | {QStringLiteral(u"Fran\u00E7ais"), "fr"}, // French | ||
| 267 | {QStringLiteral(u"Hrvatski"), "hr"}, // Croatian | ||
| 268 | {QStringLiteral(u"Italiano"), "it"}, // Italian | ||
| 269 | {QStringLiteral(u"Magyar"), "hu"}, // Hungarian | ||
| 270 | {QStringLiteral(u"Nederlands"), "nl"}, // Dutch | ||
| 271 | {QStringLiteral(u"Norsk bokm\u00E5l"), "nb"}, // Norwegian | ||
| 272 | {QStringLiteral(u"Polski"), "pl"}, // Polish | ||
| 273 | {QStringLiteral(u"Portugu\u00EAs"), "pt_PT"}, // Portuguese | ||
| 274 | {QStringLiteral(u"Portugu\u00EAs (Brasil)"), "pt_BR"}, // Portuguese (Brazil) | ||
| 275 | {QStringLiteral(u"Rom\u00E2n\u0103"), "ro"}, // Romanian | ||
| 276 | {QStringLiteral(u"Srpski"), "sr"}, // Serbian | ||
| 277 | {QStringLiteral(u"Suomi"), "fi"}, // Finnish | ||
| 278 | {QStringLiteral(u"Svenska"), "sv"}, // Swedish | ||
| 279 | {QStringLiteral(u"Ti\u1EBFng Vi\u1EC7t"), "vi"}, // Vietnamese | ||
| 280 | {QStringLiteral(u"Ti\u1EBFng Vi\u1EC7t (Vi\u1EC7t Nam)"), "vi_VN"}, // Vietnamese | ||
| 281 | {QStringLiteral(u"T\u00FCrk\u00E7e"), "tr_TR"}, // Turkish | ||
| 282 | {QStringLiteral(u"\u0395\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AC"), "el"}, // Greek | ||
| 283 | {QStringLiteral(u"\u0420\u0443\u0441\u0441\u043A\u0438\u0439"), "ru_RU"}, // Russian | ||
| 284 | {QStringLiteral(u"\u0423\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430"), | ||
| 285 | "uk"}, // Ukrainian | ||
| 286 | {QStringLiteral(u"\u0627\u0644\u0639\u0631\u0628\u064A\u0629"), "ar"}, // Arabic | ||
| 287 | {QStringLiteral(u"\u0641\u0627\u0631\u0633\u06CC"), "fa"}, // Farsi | ||
| 288 | {QStringLiteral(u"\uD55C\uAD6D\uC5B4"), "ko_KR"}, // Korean | ||
| 289 | {QStringLiteral(u"\u65E5\u672C\u8A9E"), "ja_JP"}, // Japanese | ||
| 290 | {QStringLiteral(u"\u7B80\u4F53\u4E2D\u6587"), "zh_CN"}, // Simplified Chinese | ||
| 291 | {QStringLiteral(u"\u7E41\u9AD4\u4E2D\u6587"), "zh_TW"}, // Traditional Chinese | ||
| 292 | // clang-format on | ||
| 293 | }; | ||
| 294 | ui->language_combobox->addItem(tr("<System>"), QString{}); | 251 | ui->language_combobox->addItem(tr("<System>"), QString{}); |
| 295 | QDir languages_dir{QStringLiteral(":/languages")}; | 252 | ui->language_combobox->addItem(tr("English"), QStringLiteral("en")); |
| 296 | QStringList language_files = languages_dir.entryList(); | 253 | QDirIterator it(QStringLiteral(":/languages"), QDirIterator::NoIteratorFlags); |
| 297 | for (const auto& lang : languages) { | 254 | while (it.hasNext()) { |
| 298 | if (QString::fromLatin1(lang.id) == QStringLiteral("en")) { | 255 | QString locale = it.next(); |
| 299 | ui->language_combobox->addItem(lang.name, QStringLiteral("en")); | ||
| 300 | language_files.removeOne(QStringLiteral("en.qm")); | ||
| 301 | continue; | ||
| 302 | } | ||
| 303 | for (int i = 0; i < language_files.size(); ++i) { | ||
| 304 | QString locale = language_files[i]; | ||
| 305 | locale.truncate(locale.lastIndexOf(QLatin1Char{'.'})); | ||
| 306 | if (QString::fromLatin1(lang.id) == locale) { | ||
| 307 | ui->language_combobox->addItem(lang.name, locale); | ||
| 308 | language_files.removeAt(i); | ||
| 309 | break; | ||
| 310 | } | ||
| 311 | } | ||
| 312 | } | ||
| 313 | // Anything remaining will be at the bottom | ||
| 314 | for (const QString& file : language_files) { | ||
| 315 | LOG_CRITICAL(Frontend, "Unexpected Language File: {}", file.toStdString()); | ||
| 316 | QString locale = file; | ||
| 317 | locale.truncate(locale.lastIndexOf(QLatin1Char{'.'})); | 256 | locale.truncate(locale.lastIndexOf(QLatin1Char{'.'})); |
| 318 | const QString language_name = QLocale::languageToString(QLocale(locale).language()); | 257 | locale.remove(0, locale.lastIndexOf(QLatin1Char{'/'}) + 1); |
| 319 | const QString lang = QStringLiteral("%1 [%2]").arg(language_name, locale); | 258 | const QString lang = QLocale::languageToString(QLocale(locale).language()); |
| 320 | ui->language_combobox->addItem(lang, locale); | 259 | const QString country = QLocale::countryToString(QLocale(locale).country()); |
| 260 | ui->language_combobox->addItem(QStringLiteral("%1 (%2)").arg(lang, country), locale); | ||
| 321 | } | 261 | } |
| 322 | 262 | ||
| 323 | // Unlike other configuration changes, interface language changes need to be reflected on the | 263 | // Unlike other configuration changes, interface language changes need to be reflected on the |
| 324 | // interface immediately. This is done by passing a signal to the main window, and then | 264 | // interface immediately. This is done by passing a signal to the main window, and then |
| 325 | // retranslating when passing back. | 265 | // retranslating when passing back. |
| 326 | connect(ui->language_combobox, QOverload<int>::of(&QComboBox::currentIndexChanged), this, | 266 | connect(ui->language_combobox, qOverload<int>(&QComboBox::currentIndexChanged), this, |
| 327 | &ConfigureUi::OnLanguageChanged); | 267 | &ConfigureUi::OnLanguageChanged); |
| 328 | } | 268 | } |
| 329 | 269 | ||