-
-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into shader-decomp
- Loading branch information
Showing
19 changed files
with
305 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,7 @@ jobs: | |
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} | ||
|
||
- name: Install bundle dependencies | ||
run: brew install dylibbundler imagemagick | ||
run: brew install --overwrite [email protected] && brew install dylibbundler imagemagick | ||
|
||
- name: Run bundle script | ||
run: ./.github/mac-bundle.sh | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,7 +67,7 @@ jobs: | |
|
||
- name: Install bundle dependencies | ||
run: | | ||
brew install dylibbundler imagemagick | ||
brew install --overwrite [email protected] && brew install dylibbundler imagemagick | ||
- name: Install qt | ||
run: brew install qt && which macdeployqt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
# DESCRIPTION: GitLab CI/CD for libRetro (NOT FOR GitLab-proper) | ||
|
||
############################################################################## | ||
################################# BOILERPLATE ################################ | ||
############################################################################## | ||
|
||
# Core definitions | ||
.core-defs: | ||
variables: | ||
GIT_SUBMODULE_STRATEGY: recursive | ||
CORENAME: panda3ds | ||
CORE_ARGS: -DBUILD_LIBRETRO_CORE=ON -DENABLE_USER_BUILD=ON -DENABLE_VULKAN=OFF -DENABLE_LUAJIT=OFF -DENABLE_DISCORD_RPC=OFF | ||
|
||
# Inclusion templates, required for the build to work | ||
|
||
include: | ||
################################## DESKTOPS ################################ | ||
# Linux | ||
- project: 'libretro-infrastructure/ci-templates' | ||
file: '/linux-cmake.yml' | ||
|
||
# Windows | ||
- project: 'libretro-infrastructure/ci-templates' | ||
file: '/windows-cmake-mingw.yml' | ||
|
||
# MacOS | ||
- project: 'libretro-infrastructure/ci-templates' | ||
file: 'osx-cmake-x86.yml' | ||
|
||
# MacOS | ||
- project: 'libretro-infrastructure/ci-templates' | ||
file: 'osx-cmake-arm64.yml' | ||
|
||
################################## CELLULAR ################################ | ||
# Android | ||
- project: 'libretro-infrastructure/ci-templates' | ||
file: '/android-cmake.yml' | ||
|
||
# iOS | ||
- project: 'libretro-infrastructure/ci-templates' | ||
file: '/ios-cmake.yml' | ||
|
||
# Stages for building | ||
stages: | ||
- build-prepare | ||
- build-static | ||
- build-shared | ||
|
||
############################################################################## | ||
#################################### STAGES ################################## | ||
############################################################################## | ||
# | ||
################################### DESKTOPS ################################# | ||
# Linux 64-bit | ||
libretro-build-linux-x64: | ||
image: $CI_SERVER_HOST:5050/libretro-infrastructure/libretro-build-amd64-ubuntu:latest | ||
before_script: | ||
- export NUMPROC=$(($(nproc)/5)) | ||
- sudo apt-get update -qy | ||
- sudo apt-get install -qy software-properties-common | ||
- sudo add-apt-repository -y ppa:savoury1/build-tools | ||
- sudo add-apt-repository -y ppa:savoury1/gcc-defaults-12 | ||
- sudo apt-get update -qy | ||
- sudo apt-get install -qy cmake gcc-12 g++-12 | ||
variables: | ||
CC: /usr/bin/gcc-12 | ||
CXX: /usr/bin/g++-12 | ||
extends: | ||
- .libretro-linux-cmake-x86_64 | ||
- .core-defs | ||
|
||
# Windows 64-bit | ||
libretro-build-windows-x64: | ||
extends: | ||
- .libretro-windows-cmake-x86_64 | ||
- .core-defs | ||
|
||
# MacOS 64-bit | ||
libretro-build-osx-x64: | ||
tags: | ||
- mac-apple-silicon | ||
variables: | ||
CORE_ARGS: -DBUILD_LIBRETRO_CORE=ON -DENABLE_USER_BUILD=ON -DENABLE_VULKAN=OFF -DENABLE_LUAJIT=OFF -DENABLE_DISCORD_RPC=OFF -DCMAKE_OSX_ARCHITECTURES=x86_64 -DCRYPTOPP_AMD64=1 | ||
extends: | ||
- .libretro-osx-cmake-x86 | ||
- .core-defs | ||
|
||
# MacOS arm 64-bit | ||
libretro-build-osx-arm64: | ||
tags: | ||
- mac-apple-silicon | ||
extends: | ||
- .libretro-osx-cmake-arm64 | ||
- .core-defs | ||
|
||
################################### CELLULAR ################################# | ||
# Android ARMv7a | ||
#android-armeabi-v7a: | ||
# extends: | ||
# - .libretro-android-cmake-armeabi-v7a | ||
# - .core-defs | ||
|
||
# Android ARMv8a | ||
# android-arm64-v8a: | ||
# extends: | ||
# - .libretro-android-cmake-arm64-v8a | ||
# - .core-defs | ||
|
||
# Android 64-bit x86 | ||
# android-x86_64: | ||
# extends: | ||
# - .libretro-android-cmake-x86_64 | ||
# - .core-defs | ||
|
||
# Android 32-bit x86 | ||
# android-x86: | ||
# extends: | ||
# - .libretro-android-cmake-x86 | ||
# - .core-defs | ||
|
||
# iOS | ||
# libretro-build-ios-arm64: | ||
# extends: | ||
# - .libretro-ios-cmake-arm64 | ||
# - .core-defs | ||
# variables: | ||
# CORE_ARGS: -DBUILD_LIBRETRO_CORE=ON -DBUILD_PLAY=OFF -DENABLE_AMAZON_S3=off -DBUILD_TESTS=OFF -DCMAKE_TOOLCHAIN_FILE=deps/Dependencies/cmake-ios/ios.cmake -DTARGET_IOS=ON | ||
# LIBNAME: ${CORENAME}_libretro_ios.dylib | ||
|
||
################################### CONSOLES ################################# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#pragma once | ||
|
||
#include <cmath> | ||
#include <glm/glm.hpp> | ||
#include <numbers> | ||
|
||
#include "helpers.hpp" | ||
#include "services/hid.hpp" | ||
|
||
namespace Sensors::SDL { | ||
// Convert the rotation data we get from SDL sensor events to rotation data we can feed right to HID | ||
// Returns [pitch, roll, yaw] | ||
static glm::vec3 convertRotation(glm::vec3 rotation) { | ||
// Convert the rotation from rad/s to deg/s and scale by the gyroscope coefficient in HID | ||
constexpr float scale = 180.f / std::numbers::pi * HIDService::gyroscopeCoeff; | ||
// The axes are also inverted, so invert scale before the multiplication. | ||
return rotation * -scale; | ||
} | ||
|
||
static glm::vec3 convertAcceleration(float* data) { | ||
// Set our cap to ~9 m/s^2. The 3DS sensors cap at -930 and +930, so values above this value will get clamped to 930 | ||
// At rest (3DS laid flat on table), hardware reads around ~0 for x and z axis, and around ~480 for y axis due to gravity. | ||
// This code tries to mimic this approximately, with offsets based on measurements from my DualShock 4. | ||
static constexpr float accelMax = 9.f; | ||
|
||
s16 x = std::clamp<s16>(s16(data[0] / accelMax * 930.f), -930, +930); | ||
s16 y = std::clamp<s16>(s16(data[1] / (SDL_STANDARD_GRAVITY * accelMax) * 930.f - 350.f), -930, +930); | ||
s16 z = std::clamp<s16>(s16((data[2] - 2.1f) / accelMax * 930.f), -930, +930); | ||
|
||
return glm::vec3(x, y, z); | ||
} | ||
} // namespace Sensors::SDL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -627,5 +627,6 @@ namespace Audio { | |
rateMultiplier = 1.f; | ||
|
||
buffers = {}; | ||
currentSamples.clear(); | ||
} | ||
} // namespace Audio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.