Merge pull request #18621 from hrydgard/analog-trigger-sensitivity

Add "Analog trigger threshold" setting, for conversion of analog trigger inputs to digital button inputs.
This commit is contained in:
Henrik Rydgård 2023-12-28 14:34:12 +01:00 committed by GitHub
commit 62019c9a97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
53 changed files with 107 additions and 15 deletions

View File

@ -827,6 +827,7 @@ static const ConfigSetting controlSettings[] = {
ConfigSetting("AnalogAutoRotSpeed", &g_Config.fAnalogAutoRotSpeed, 8.0f, CfgFlag::PER_GAME), ConfigSetting("AnalogAutoRotSpeed", &g_Config.fAnalogAutoRotSpeed, 8.0f, CfgFlag::PER_GAME),
ConfigSetting("AnalogLimiterDeadzone", &g_Config.fAnalogLimiterDeadzone, 0.6f, CfgFlag::DEFAULT), ConfigSetting("AnalogLimiterDeadzone", &g_Config.fAnalogLimiterDeadzone, 0.6f, CfgFlag::DEFAULT),
ConfigSetting("AnalogTriggerThreshold", &g_Config.fAnalogTriggerThreshold, 0.75f, CfgFlag::DEFAULT),
ConfigSetting("AllowMappingCombos", &g_Config.bAllowMappingCombos, false, CfgFlag::DEFAULT), ConfigSetting("AllowMappingCombos", &g_Config.bAllowMappingCombos, false, CfgFlag::DEFAULT),

View File

@ -396,6 +396,9 @@ public:
// Sets up how much the analog limiter button restricts digital->analog input. // Sets up how much the analog limiter button restricts digital->analog input.
float fAnalogLimiterDeadzone; float fAnalogLimiterDeadzone;
// Trigger configuration
float fAnalogTriggerThreshold;
// Sets whether combo mapping is enabled. // Sets whether combo mapping is enabled.
bool bAllowMappingCombos; bool bAllowMappingCombos;

View File

@ -15,9 +15,23 @@
using KeyMap::MultiInputMapping; using KeyMap::MultiInputMapping;
// TODO: Possibly make these thresholds configurable? const float AXIS_BIND_THRESHOLD = 0.75f;
static float GetDeviceAxisThreshold(int device) { const float AXIS_BIND_THRESHOLD_MOUSE = 0.01f;
return device == DEVICE_ID_MOUSE ? AXIS_BIND_THRESHOLD_MOUSE : AXIS_BIND_THRESHOLD;
float GetDeviceAxisThreshold(int device, const InputMapping &mapping) {
if (device == DEVICE_ID_MOUSE) {
return AXIS_BIND_THRESHOLD_MOUSE;
}
if (mapping.IsAxis()) {
switch (KeyMap::GetAxisType((InputAxis)mapping.Axis(nullptr))) {
case KeyMap::AxisType::TRIGGER:
return g_Config.fAnalogTriggerThreshold;
default:
return AXIS_BIND_THRESHOLD;
}
} else {
return AXIS_BIND_THRESHOLD;
}
} }
static int GetOppositeVKey(int vkey) { static int GetOppositeVKey(int vkey) {
@ -311,7 +325,7 @@ bool ControlMapper::UpdatePSPState(const InputMapping &changedMapping, double no
} else { } else {
curTime = iter->second.timestamp; curTime = iter->second.timestamp;
} }
bool down = iter->second.value > GetDeviceAxisThreshold(iter->first.deviceId); bool down = iter->second.value > GetDeviceAxisThreshold(iter->first.deviceId, mapping);
if (!down) if (!down)
all = false; all = false;
} }
@ -364,7 +378,7 @@ bool ControlMapper::UpdatePSPState(const InputMapping &changedMapping, double no
} }
if (mapping.IsAxis()) { if (mapping.IsAxis()) {
threshold = GetDeviceAxisThreshold(iter->first.deviceId); threshold = GetDeviceAxisThreshold(iter->first.deviceId, mapping);
float value = MapAxisValue(iter->second.value, idForMapping, mapping, changedMapping, &touchedByMapping); float value = MapAxisValue(iter->second.value, idForMapping, mapping, changedMapping, &touchedByMapping);
product *= value; product *= value;
} else { } else {
@ -510,7 +524,7 @@ void ControlMapper::ToggleSwapAxes() {
void ControlMapper::UpdateCurInputAxis(const InputMapping &mapping, float value, double timestamp) { void ControlMapper::UpdateCurInputAxis(const InputMapping &mapping, float value, double timestamp) {
InputSample &input = curInput_[mapping]; InputSample &input = curInput_[mapping];
input.value = value; input.value = value;
if (value > GetDeviceAxisThreshold(mapping.deviceId)) { if (value >= GetDeviceAxisThreshold(mapping.deviceId, mapping)) {
if (input.timestamp == 0.0) { if (input.timestamp == 0.0) {
input.timestamp = time_now_d(); input.timestamp = time_now_d();
} }

View File

@ -93,3 +93,4 @@ private:
}; };
void ConvertAnalogStick(float x, float y, float *outX, float *outY); void ConvertAnalogStick(float x, float y, float *outX, float *outY);
float GetDeviceAxisThreshold(int device, const InputMapping &mapping);

View File

@ -48,6 +48,25 @@ std::set<std::string> g_seenPads;
std::map<InputDeviceID, std::string> g_padNames; std::map<InputDeviceID, std::string> g_padNames;
std::set<InputDeviceID> g_seenDeviceIds; std::set<InputDeviceID> g_seenDeviceIds;
AxisType GetAxisType(InputAxis input) {
switch (input) {
case JOYSTICK_AXIS_GAS:
case JOYSTICK_AXIS_BRAKE:
case JOYSTICK_AXIS_LTRIGGER:
case JOYSTICK_AXIS_RTRIGGER:
return AxisType::TRIGGER;
case JOYSTICK_AXIS_X:
case JOYSTICK_AXIS_Y:
case JOYSTICK_AXIS_Z:
case JOYSTICK_AXIS_RX:
case JOYSTICK_AXIS_RY:
case JOYSTICK_AXIS_RZ:
return AxisType::STICK;
default:
return AxisType::OTHER;
}
}
// Utility for UI navigation // Utility for UI navigation
void SingleInputMappingFromPspButton(int btn, std::vector<InputMapping> *mappings, bool ignoreMouse) { void SingleInputMappingFromPspButton(int btn, std::vector<InputMapping> *mappings, bool ignoreMouse) {
std::vector<MultiInputMapping> multiMappings; std::vector<MultiInputMapping> multiMappings;
@ -874,7 +893,7 @@ bool HasChanged(int &prevGeneration) {
return false; return false;
} }
static const char *g_vKeyNames[] = { static const char * const g_vKeyNames[] = {
"AXIS_X_MIN", "AXIS_X_MIN",
"AXIS_Y_MIN", "AXIS_Y_MIN",
"AXIS_X_MAX", "AXIS_X_MAX",

View File

@ -78,10 +78,6 @@ enum {
VIRTKEY_COUNT = VIRTKEY_LAST - VIRTKEY_FIRST VIRTKEY_COUNT = VIRTKEY_LAST - VIRTKEY_FIRST
}; };
const float AXIS_BIND_THRESHOLD = 0.75f;
const float AXIS_BIND_RELEASE_THRESHOLD = 0.35f; // Used during mapping only to detect a "key-up" reliably.
const float AXIS_BIND_THRESHOLD_MOUSE = 0.01f;
struct MappedAnalogAxis { struct MappedAnalogAxis {
int axisId; int axisId;
int direction; int direction;
@ -224,4 +220,13 @@ namespace KeyMap {
bool IsKeyMapped(InputDeviceID device, int key); bool IsKeyMapped(InputDeviceID device, int key);
bool HasChanged(int &prevGeneration); bool HasChanged(int &prevGeneration);
// Used for setting thresholds. Technically we could allow a setting per axis, but this is a reasonable compromise.
enum class AxisType {
TRIGGER,
STICK,
OTHER,
};
AxisType GetAxisType(InputAxis axis);
} // namespace KeyMap } // namespace KeyMap

View File

@ -600,6 +600,7 @@ ReplacedTexture *TextureReplacer::FindReplacement(u64 cachekey, u32 hash, int w,
desc.hashfiles = hashfiles; desc.hashfiles = hashfiles;
} }
_dbg_assert_(!hashfiles.empty());
// OK, we might already have a matching texture, we use hashfiles as a key. Look it up in the level cache. // OK, we might already have a matching texture, we use hashfiles as a key. Look it up in the level cache.
auto iter = levelCache_.find(hashfiles); auto iter = levelCache_.find(hashfiles);
if (iter != levelCache_.end()) { if (iter != levelCache_.end()) {

View File

@ -76,9 +76,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]] [[package]]
name = "libc" name = "libc"
version = "0.2.150" version = "0.2.151"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4"
[[package]] [[package]]
name = "proc-macro-error" name = "proc-macro-error"
@ -106,9 +106,9 @@ dependencies = [
[[package]] [[package]]
name = "proc-macro2" name = "proc-macro2"
version = "1.0.70" version = "1.0.71"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b" checksum = "75cb1540fadbd5b8fbccc4dddad2734eba435053f725621c070711a14bb5f4b8"
dependencies = [ dependencies = [
"unicode-ident", "unicode-ident",
] ]

View File

@ -441,6 +441,10 @@ bool KeyMappingNewMouseKeyDialog::key(const KeyInput &key) {
return true; return true;
} }
// Only used during the bind process. In other places, it's configurable for some types of axis, like trigger.
const float AXIS_BIND_THRESHOLD = 0.75f;
const float AXIS_BIND_RELEASE_THRESHOLD = 0.35f; // Used during mapping only to detect a "key-up" reliably.
void KeyMappingNewKeyDialog::axis(const AxisInput &axis) { void KeyMappingNewKeyDialog::axis(const AxisInput &axis) {
if (time_now_d() < delayUntil_) if (time_now_d() < delayUntil_)
return; return;

View File

@ -669,6 +669,7 @@ void GameSettingsScreen::CreateControlsSettings(UI::ViewGroup *controlsSettings)
controlsSettings->Add(new ItemHeader(ms->T("Controls"))); controlsSettings->Add(new ItemHeader(ms->T("Controls")));
controlsSettings->Add(new Choice(co->T("Control Mapping")))->OnClick.Handle(this, &GameSettingsScreen::OnControlMapping); controlsSettings->Add(new Choice(co->T("Control Mapping")))->OnClick.Handle(this, &GameSettingsScreen::OnControlMapping);
controlsSettings->Add(new Choice(co->T("Calibrate Analog Stick")))->OnClick.Handle(this, &GameSettingsScreen::OnCalibrateAnalogs); controlsSettings->Add(new Choice(co->T("Calibrate Analog Stick")))->OnClick.Handle(this, &GameSettingsScreen::OnCalibrateAnalogs);
controlsSettings->Add(new PopupSliderChoiceFloat(&g_Config.fAnalogTriggerThreshold, 0.25f, 0.98f, 0.75f, co->T("Analog trigger threshold"), screenManager()));
#if defined(USING_WIN_UI) || (PPSSPP_PLATFORM(LINUX) && !PPSSPP_PLATFORM(ANDROID)) #if defined(USING_WIN_UI) || (PPSSPP_PLATFORM(LINUX) && !PPSSPP_PLATFORM(ANDROID))
controlsSettings->Add(new CheckBox(&g_Config.bSystemControls, co->T("Enable standard shortcut keys"))); controlsSettings->Add(new CheckBox(&g_Config.bSystemControls, co->T("Enable standard shortcut keys")));

View File

@ -90,6 +90,7 @@ Analog Limiter = ‎محدد التناظري
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Stick = ‎عصا تناظرية Analog Stick = ‎عصا تناظرية
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = ‎حينما يتم ضغط زر تحديد التناظر AnalogLimiter Tip = ‎حينما يتم ضغط زر تحديد التناظر
Auto = ‎تلقائي Auto = ‎تلقائي
Auto-centering analog stick = ‎تنصيف العصا التناظرية تلقائياً Auto-centering analog stick = ‎تنصيف العصا التناظرية تلقائياً

View File

@ -82,6 +82,7 @@ Analog Limiter = Analog limiter
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Stick = Analog stick Analog Stick = Analog stick
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = When the analog limiter button is pressed AnalogLimiter Tip = When the analog limiter button is pressed
Auto = Auto Auto = Auto
Auto-centering analog stick = Auto-centering analog stick Auto-centering analog stick = Auto-centering analog stick

View File

@ -82,6 +82,7 @@ Analog Limiter = Analog limiter
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Stick = Analog stick Analog Stick = Analog stick
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = When the analog limiter button is pressed AnalogLimiter Tip = When the analog limiter button is pressed
Auto = Автоматично Auto = Автоматично
Auto-centering analog stick = Auto-centering analog stick Auto-centering analog stick = Auto-centering analog stick

View File

@ -82,6 +82,7 @@ Analog Limiter = Limitador analògic
Analog Settings = Configuració de l'stick Analog Settings = Configuració de l'stick
Analog Stick = Palanca analògica Analog Stick = Palanca analògica
Analog Style = Estil de l'stick Analog Style = Estil de l'stick
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = Quan es prem el botó del limitador de l'stick AnalogLimiter Tip = Quan es prem el botó del limitador de l'stick
Auto = Automàtic Auto = Automàtic
Auto-centering analog stick = Auto centrat de l'stick Auto-centering analog stick = Auto centrat de l'stick

View File

@ -82,6 +82,7 @@ Analog Limiter = Analogový omezovač
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Stick = Analogová páčka Analog Stick = Analogová páčka
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = When the analog limiter button is pressed AnalogLimiter Tip = When the analog limiter button is pressed
Auto = Auto Auto = Auto
Auto-centering analog stick = Automatické vystředění analogové páčky Auto-centering analog stick = Automatické vystředění analogové páčky

View File

@ -82,6 +82,7 @@ Analog Limiter = Analog begrænser
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Stick = Analog stick Analog Stick = Analog stick
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = Når den analoge begrænser knap er trykket ned AnalogLimiter Tip = Når den analoge begrænser knap er trykket ned
Auto = Automatisk Auto = Automatisk
Auto-centering analog stick = Auto-centering analog stick Auto-centering analog stick = Auto-centering analog stick

View File

@ -82,6 +82,7 @@ Analog Limiter = Analogbegrenzer
Analog Settings = Analog Einstellungen Analog Settings = Analog Einstellungen
Analog Stick = Analogstick Analog Stick = Analogstick
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = Wenn die Analogbegrenzer-Taste gedrückt ist AnalogLimiter Tip = Wenn die Analogbegrenzer-Taste gedrückt ist
Auto = Automatisch Auto = Automatisch
Auto-centering analog stick = Analogstick automatisch zentrieren Auto-centering analog stick = Analogstick automatisch zentrieren

View File

@ -82,6 +82,7 @@ Analog Limiter = Analog limiter
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Stick = Analog stick Analog Stick = Analog stick
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = When the analog limiter button is pressed AnalogLimiter Tip = When the analog limiter button is pressed
Auto = Auto Auto = Auto
Auto-centering analog stick = Auto-centering analog stick Auto-centering analog stick = Auto-centering analog stick

View File

@ -106,6 +106,7 @@ Analog Limiter = Analog limiter
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Stick = Analog stick Analog Stick = Analog stick
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = When the analog limiter button is pressed AnalogLimiter Tip = When the analog limiter button is pressed
Auto = Auto Auto = Auto
Auto-centering analog stick = Auto-centering analog stick Auto-centering analog stick = Auto-centering analog stick

View File

@ -80,6 +80,7 @@ WASAPI (fast) = WASAPI (rápido)
Analog Binding = Asignar stick Analog Binding = Asignar stick
Analog Settings = Ajustes de stick Analog Settings = Ajustes de stick
Analog Style = Estilo de stick Analog Style = Estilo de stick
Analog trigger threshold = Analog trigger threshold
Auto-rotation speed = Velocidad auto rotación del stick Auto-rotation speed = Velocidad auto rotación del stick
Analog Limiter = Limitador del stick Analog Limiter = Limitador del stick
Analog Stick = Stick izquierdo Analog Stick = Stick izquierdo

View File

@ -80,6 +80,7 @@ WASAPI (fast) = WASAPI (rápido)
Analog Binding = Asignar análogo Analog Binding = Asignar análogo
Analog Settings = Config. del análogo Analog Settings = Config. del análogo
Analog Style = Estilo del análogo Analog Style = Estilo del análogo
Analog trigger threshold = Analog trigger threshold
Auto-rotation speed = Vel. de rotación auto. del análogo Auto-rotation speed = Vel. de rotación auto. del análogo
Analog Limiter = Limitador del análogo Analog Limiter = Limitador del análogo
Analog Stick = Analog stick Analog Stick = Analog stick

View File

@ -82,6 +82,7 @@ Analog Limiter = ‎محدود کننده آنالوگ
Analog Settings = تنظیمات انالوگ Analog Settings = تنظیمات انالوگ
Analog Stick = ‎دسته آنالوگ Analog Stick = ‎دسته آنالوگ
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = ‎هنگامی که دکمه محدود کننده آنالوگ فشرده شود AnalogLimiter Tip = ‎هنگامی که دکمه محدود کننده آنالوگ فشرده شود
Auto = ‎اتوماتیک Auto = ‎اتوماتیک
Auto-centering analog stick = ‎تنظیم مرکز آنالوگ به صورت خودکار Auto-centering analog stick = ‎تنظیم مرکز آنالوگ به صورت خودکار

View File

@ -82,6 +82,7 @@ Analog Limiter = Analoginen rajoitin
Analog Settings = Analogisen asetukset Analog Settings = Analogisen asetukset
Analog Stick = Analoginen sauva Analog Stick = Analoginen sauva
Analog Style = Analogisen tyyli Analog Style = Analogisen tyyli
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = Kun analogisen rajoittimen näppäintä painetaan AnalogLimiter Tip = Kun analogisen rajoittimen näppäintä painetaan
Auto = Automaattinen Auto = Automaattinen
Auto-centering analog stick = Automaattisesti keskittävä analoginen sauva Auto-centering analog stick = Automaattisesti keskittävä analoginen sauva

View File

@ -80,6 +80,7 @@ WASAPI (fast) = WASAPI (rapide)
Analog Binding = Analog Binding Analog Binding = Analog Binding
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
Auto-rotation speed = Vitesse de rotation automatique du stick analogique Auto-rotation speed = Vitesse de rotation automatique du stick analogique
Analog Limiter = Limiteur analogique Analog Limiter = Limiteur analogique
Analog Stick = Stick analogique Analog Stick = Stick analogique

View File

@ -82,6 +82,7 @@ Analog Limiter = Limitador analóxico
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Stick = Stick analóxico Analog Stick = Stick analóxico
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = When the analog limiter button is pressed AnalogLimiter Tip = When the analog limiter button is pressed
Auto = Automática Auto = Automática
Auto-centering analog stick = Auto-centering analog stick Auto-centering analog stick = Auto-centering analog stick

View File

@ -82,6 +82,7 @@ Analog Limiter = Περιορισμός αναλογικού
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Stick = Αναλογικός μοχλός Analog Stick = Αναλογικός μοχλός
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = Όταν το κουμπί περιορισμού αναλογικού είναι πατημένο AnalogLimiter Tip = Όταν το κουμπί περιορισμού αναλογικού είναι πατημένο
Auto = Αυτόματο Auto = Αυτόματο
Auto-centering analog stick = Αυτόματος κεντρισμός αναλογικού μοχλού Auto-centering analog stick = Αυτόματος κεντρισμός αναλογικού μοχλού

View File

@ -82,6 +82,7 @@ Analog Limiter = Analog limiter
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Stick = Analog stick Analog Stick = Analog stick
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = When the analog limiter button is pressed AnalogLimiter Tip = When the analog limiter button is pressed
Auto = Auto Auto = Auto
Auto-centering analog stick = Auto-centering analog stick Auto-centering analog stick = Auto-centering analog stick

View File

@ -82,6 +82,7 @@ Analog Limiter = Analog limiter
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Stick = Analog stick Analog Stick = Analog stick
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = When the analog limiter button is pressed AnalogLimiter Tip = When the analog limiter button is pressed
Auto = Auto Auto = Auto
Auto-centering analog stick = Auto-centering analog stick Auto-centering analog stick = Auto-centering analog stick

View File

@ -80,6 +80,7 @@ WASAPI (fast) = WASAPI (brzo)
Analog Binding = Analog Binding Analog Binding = Analog Binding
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
Auto-rotation speed = Auto-Rotacija analogne brzine Auto-rotation speed = Auto-Rotacija analogne brzine
Analog Limiter = Analogni ograničivač Analog Limiter = Analogni ograničivač
Analog Stick = Analogni stick Analog Stick = Analogni stick

View File

@ -80,6 +80,7 @@ WASAPI (fast) = WASAPI (gyors)
Analog Binding = Analog Binding Analog Binding = Analog Binding
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
Auto-rotation speed = Automata analóg forgató sebessége Auto-rotation speed = Automata analóg forgató sebessége
Analog Limiter = Analóg korlátozó Analog Limiter = Analóg korlátozó
Analog Stick = Analóg kar Analog Stick = Analóg kar

View File

@ -82,6 +82,7 @@ Analog Limiter = Pembatas analog
Analog Settings = Pengaturan analog Analog Settings = Pengaturan analog
Analog Stick = Stik analog Analog Stick = Stik analog
Analog Style = Gaya analog Analog Style = Gaya analog
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = Ketika tombol pembatas analog ditekan AnalogLimiter Tip = Ketika tombol pembatas analog ditekan
Auto = Otomatis Auto = Otomatis
Auto-centering analog stick = Penengahan otomatis stik analog Auto-centering analog stick = Penengahan otomatis stik analog

View File

@ -82,6 +82,7 @@ Analog Limiter = Limitatore Analogico
Analog Settings = Impostazioni Analogico Analog Settings = Impostazioni Analogico
Analog Stick = Stick Analogico Analog Stick = Stick Analogico
Analog Style = Stile Analogico Analog Style = Stile Analogico
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = Quando viene premuto il tasto del limitatore analogico AnalogLimiter Tip = Quando viene premuto il tasto del limitatore analogico
Auto = Automatico Auto = Automatico
Auto-centering analog stick = Auto-centramento dello stick analogico Auto-centering analog stick = Auto-centramento dello stick analogico

View File

@ -80,6 +80,7 @@ WASAPI (fast) = WASAPI (高速)
Analog Binding = 右アナログパッドへの対応ボタン割り当て Analog Binding = 右アナログパッドへの対応ボタン割り当て
Analog Settings = アナログパッドの設定 Analog Settings = アナログパッドの設定
Analog Style = 右アナログパッドのスタイル Analog Style = 右アナログパッドのスタイル
Analog trigger threshold = Analog trigger threshold
Auto-rotation speed = アナログの自動回転速度 Auto-rotation speed = アナログの自動回転速度
Analog Limiter = アナログパッドのリミッタ Analog Limiter = アナログパッドのリミッタ
Analog Stick = アナログパッド Analog Stick = アナログパッド

View File

@ -82,6 +82,7 @@ Analog Limiter = Analog limiter
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Stick = Analog stick Analog Stick = Analog stick
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = When the analog limiter button is pressed AnalogLimiter Tip = When the analog limiter button is pressed
Auto = Otomatis Auto = Otomatis
Auto-centering analog stick = Otomatis Analog stick nang tengah Auto-centering analog stick = Otomatis Analog stick nang tengah

View File

@ -82,6 +82,7 @@ Analog Limiter = 아날로그 리미터
Analog Settings = 아날로그 설정 Analog Settings = 아날로그 설정
Analog Stick = 아날로그 스틱 Analog Stick = 아날로그 스틱
Analog Style = 아날로그 스타일 Analog Style = 아날로그 스타일
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = 아날로그 리미터 버튼을 눌렀을 때 AnalogLimiter Tip = 아날로그 리미터 버튼을 눌렀을 때
Auto = 자동 Auto = 자동
Auto-centering analog stick = 자동 센터링 아날로그 스틱 Auto-centering analog stick = 자동 센터링 아날로그 스틱

View File

@ -82,6 +82,7 @@ Analog Limiter = ໂຕຈຳກັດອະນາລ໋ອກ
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Stick = ປຸ່ມອະນາລ໋ອກ Analog Stick = ປຸ່ມອະນາລ໋ອກ
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = ເມື່ອກົດທີ່ຂອບປຸ່ມອະນາລ໋ອກ ໂຕຈຳກັດອະນາລ໋ອກຈະເຮັດວຽກ AnalogLimiter Tip = ເມື່ອກົດທີ່ຂອບປຸ່ມອະນາລ໋ອກ ໂຕຈຳກັດອະນາລ໋ອກຈະເຮັດວຽກ
Auto = ອັດຕະໂນມັດ Auto = ອັດຕະໂນມັດ
Auto-centering analog stick = ອະນາລ໋ອກກັບຄືນຈຸດສູນກາງອັດຕະໂນມັດ Auto-centering analog stick = ອະນາລ໋ອກກັບຄືນຈຸດສູນກາງອັດຕະໂນມັດ

View File

@ -82,6 +82,7 @@ Analog Limiter = Analog limiter
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Stick = Analoginė svirtelė Analog Stick = Analoginė svirtelė
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = When the analog limiter button is pressed AnalogLimiter Tip = When the analog limiter button is pressed
Auto = Automatinis Auto = Automatinis
Auto-centering analog stick = Auto-centering analog stick Auto-centering analog stick = Auto-centering analog stick

View File

@ -82,6 +82,7 @@ Analog Limiter = Analog limiter
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Stick = Analog stick Analog Stick = Analog stick
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = When the analog limiter button is pressed AnalogLimiter Tip = When the analog limiter button is pressed
Auto = Auto Auto = Auto
Auto-centering analog stick = Auto-centering analog stick Auto-centering analog stick = Auto-centering analog stick

View File

@ -82,6 +82,7 @@ Analog Limiter = Analooglimiet
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Stick = Analoge stick Analog Stick = Analoge stick
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = Wanneer de analooglimiettoets is ingedrukt AnalogLimiter Tip = Wanneer de analooglimiettoets is ingedrukt
Auto = Automatisch Auto = Automatisch
Auto-centering analog stick = Analoge stick automatisch centreren Auto-centering analog stick = Analoge stick automatisch centreren

View File

@ -82,6 +82,7 @@ Analog Limiter = Analog limiter
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Stick = Analog stick Analog Stick = Analog stick
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = When the analog limiter button is pressed AnalogLimiter Tip = When the analog limiter button is pressed
Auto = Auto Auto = Auto
Auto-centering analog stick = Auto-centering analog stick Auto-centering analog stick = Auto-centering analog stick

View File

@ -82,6 +82,7 @@ Analog Limiter = Ogranicznik Analoga
Analog Settings = Ustawienia Analoga Analog Settings = Ustawienia Analoga
Analog Stick = Gałka Analogowa Analog Stick = Gałka Analogowa
Analog Style = Styl Analoga Analog Style = Styl Analoga
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = Jeśli "Ogranicznik Analoga" jest aktywny AnalogLimiter Tip = Jeśli "Ogranicznik Analoga" jest aktywny
Auto = Automatyczny Auto = Automatyczny
Auto-centering analog stick = Autocentrowanie analoga Auto-centering analog stick = Autocentrowanie analoga

View File

@ -106,6 +106,7 @@ Analog Limiter = Limitador do analógico
Analog Settings = Configurações do Analógico Analog Settings = Configurações do Analógico
Analog Stick = Direcional analógico Analog Stick = Direcional analógico
Analog Style = Estilo do Analógico Analog Style = Estilo do Analógico
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = Quando o botão limitador do analógico é pressionado AnalogLimiter Tip = Quando o botão limitador do analógico é pressionado
Auto = Automático Auto = Automático
Auto-centering analog stick = Auto-centralizar o direcional analógico Auto-centering analog stick = Auto-centralizar o direcional analógico

View File

@ -106,6 +106,7 @@ Analog Limiter = Limitador do Analógico
Analog Settings = Definições do Analógico Analog Settings = Definições do Analógico
Analog Stick = Analógico Analog Stick = Analógico
Analog Style = Estilo do Analógico Analog Style = Estilo do Analógico
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = Quando o botão limitador do analógico é pressionado AnalogLimiter Tip = Quando o botão limitador do analógico é pressionado
Auto = Automático Auto = Automático
Auto-centering analog stick =Centralização automática do analógico Auto-centering analog stick =Centralização automática do analógico

View File

@ -82,6 +82,7 @@ Analog Limiter = Limită pt. control analog
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Stick = Butonul analog Analog Stick = Butonul analog
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = Când este apasat butonul de limitare control analog AnalogLimiter Tip = Când este apasat butonul de limitare control analog
Auto = Automat Auto = Automat
Auto-centering analog stick = Centrare automată a butonului analog Auto-centering analog stick = Centrare automată a butonului analog

View File

@ -82,6 +82,7 @@ Analog Limiter = Аналоговый ограничитель
Analog Settings = Настройки аналогового стика Analog Settings = Настройки аналогового стика
Analog Stick = Аналоговый стик Analog Stick = Аналоговый стик
Analog Style = Стиль стика Analog Style = Стиль стика
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = Когда нажата кнопка аналогового ограничителя AnalogLimiter Tip = Когда нажата кнопка аналогового ограничителя
Auto = Авто Auto = Авто
Auto-centering analog stick = Автоцентрируемый стик Auto-centering analog stick = Автоцентрируемый стик

View File

@ -82,6 +82,7 @@ Analog Limiter = Analog fartkontroll
Analog Settings = Inställningar för analog spak Analog Settings = Inställningar för analog spak
Analog Stick = Analog styrspak Analog Stick = Analog styrspak
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = When the analog limiter button is pressed AnalogLimiter Tip = When the analog limiter button is pressed
Auto = Auto Auto = Auto
Auto-centering analog stick = Auto-centrerande analog styrspak Auto-centering analog stick = Auto-centrerande analog styrspak

View File

@ -82,6 +82,7 @@ Analog Limiter = Taga limit ng analog
Analog Settings = Ayusin ang analog Analog Settings = Ayusin ang analog
Analog Stick = Analog stick Analog Stick = Analog stick
Analog Style = Analog style Analog Style = Analog style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = Kapag ang pindutan ng analog limiter ay mapindot AnalogLimiter Tip = Kapag ang pindutan ng analog limiter ay mapindot
Auto = Awto Auto = Awto
Auto-centering analog stick = Awtomatikong-isentro ang analog stick Auto-centering analog stick = Awtomatikong-isentro ang analog stick

View File

@ -82,6 +82,7 @@ Analog Limiter = ตัวจำกัดปุ่มอนาล็อก
Analog Settings = ตั้งค่าปุ่มอนาล็อก Analog Settings = ตั้งค่าปุ่มอนาล็อก
Analog Stick = ปุ่มอนาล็อก Analog Stick = ปุ่มอนาล็อก
Analog Style = สไตล์ของปุ่มอนาล็อก Analog Style = สไตล์ของปุ่มอนาล็อก
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = เมื่อกดที่ขอบปุ่มอนาล็อก ตัวจำกัดอนาล็อกจะทำงาน AnalogLimiter Tip = เมื่อกดที่ขอบปุ่มอนาล็อก ตัวจำกัดอนาล็อกจะทำงาน
Auto = อัตโนมัติ Auto = อัตโนมัติ
Auto-centering analog stick = อนาล็อกกลับคืนจุดศูนย์กลางอัตโนมัติ Auto-centering analog stick = อนาล็อกกลับคืนจุดศูนย์กลางอัตโนมัติ

View File

@ -82,6 +82,7 @@ Analog Limiter = Analog sınırlayıcı
Analog Settings = Analog Ayarları Analog Settings = Analog Ayarları
Analog Stick = Analog çubuk Analog Stick = Analog çubuk
Analog Style = Analog Biçimi Analog Style = Analog Biçimi
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = Analog sınırlayıcı tuşuna basınca AnalogLimiter Tip = Analog sınırlayıcı tuşuna basınca
Auto = Otomatik Auto = Otomatik
Auto-centering analog stick = Analog çubuğu otomatik ortala Auto-centering analog stick = Analog çubuğu otomatik ortala

View File

@ -80,6 +80,7 @@ WASAPI (fast) = WASAPI (швидко)
Analog Binding = Analog Binding Analog Binding = Analog Binding
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
Auto-rotation speed = Швидкість автоматичного обертання аналогу Auto-rotation speed = Швидкість автоматичного обертання аналогу
Analog Limiter = Аналоговий обмежувач Analog Limiter = Аналоговий обмежувач
Analog Stick = Аналоговий стік Analog Stick = Аналоговий стік

View File

@ -82,6 +82,7 @@ Analog Limiter = Phạm vi của Analog
Analog Settings = Analog Settings Analog Settings = Analog Settings
Analog Stick = Cần Analog Analog Stick = Cần Analog
Analog Style = Analog Style Analog Style = Analog Style
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = Khi phạm vi của analog được chọn AnalogLimiter Tip = Khi phạm vi của analog được chọn
Auto = Tự động Auto = Tự động
Auto-centering analog stick = Cần Analog auto định tâm Auto-centering analog stick = Cần Analog auto định tâm

View File

@ -80,6 +80,7 @@ WASAPI (fast) = WASAPI (快)
Analog Binding = 摇杆绑定 Analog Binding = 摇杆绑定
Analog Settings = 摇杆设置 Analog Settings = 摇杆设置
Analog Style = 摇杆样式 Analog Style = 摇杆样式
Analog trigger threshold = Analog trigger threshold
Auto-rotation speed = 自动旋转速度 Auto-rotation speed = 自动旋转速度
Analog Limiter = 摇杆限制 Analog Limiter = 摇杆限制
Analog Stick = 摇杆 Analog Stick = 摇杆

View File

@ -82,6 +82,7 @@ Analog Limiter = 類比限制器
Analog Settings = 類比設定 Analog Settings = 類比設定
Analog Stick = 類比搖桿 Analog Stick = 類比搖桿
Analog Style = 類比樣式 Analog Style = 類比樣式
Analog trigger threshold = Analog trigger threshold
AnalogLimiter Tip = 類比限制器按鈕被按下時 AnalogLimiter Tip = 類比限制器按鈕被按下時
Auto = 自動 Auto = 自動
Auto-centering analog stick = 自動置中類比搖桿 Auto-centering analog stick = 自動置中類比搖桿