mirror of
https://github.com/JulianGro/overte.git
synced 2025-05-09 09:19:31 +02:00
Merge branch 'master' of https://github.com/highfidelity/hifi into sysTray
This commit is contained in:
commit
cbb4bff2db
20 changed files with 482 additions and 159 deletions
|
@ -9,6 +9,7 @@
|
||||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
||||||
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
||||||
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
||||||
<uses-feature android:name="android.hardware.sensor.accelerometer" android:required="true"/>
|
<uses-feature android:name="android.hardware.sensor.accelerometer" android:required="true"/>
|
||||||
<uses-feature android:name="android.hardware.sensor.gyroscope" android:required="true"/>
|
<uses-feature android:name="android.hardware.sensor.gyroscope" android:required="true"/>
|
||||||
|
|
||||||
|
@ -75,6 +76,15 @@
|
||||||
android:enabled="true"
|
android:enabled="true"
|
||||||
android:exported="false"
|
android:exported="false"
|
||||||
android:process=":breakpad_uploader"/>
|
android:process=":breakpad_uploader"/>
|
||||||
|
|
||||||
|
<receiver
|
||||||
|
android:name=".receiver.HeadsetStateReceiver"
|
||||||
|
android:enabled="true"
|
||||||
|
android:exported="true">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.HEADSET_PLUG" />
|
||||||
|
</intent-filter>
|
||||||
|
</receiver>
|
||||||
</application>
|
</application>
|
||||||
|
|
||||||
<uses-feature android:name="android.software.vr.mode" android:required="true"/>
|
<uses-feature android:name="android.software.vr.mode" android:required="true"/>
|
||||||
|
|
|
@ -355,5 +355,51 @@ JNIEXPORT void Java_io_highfidelity_hifiinterface_WebViewActivity_nativeProcessU
|
||||||
AndroidHelper::instance().processURL(QString::fromUtf8(nativeString));
|
AndroidHelper::instance().processURL(QString::fromUtf8(nativeString));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
JNIEXPORT void JNICALL
|
||||||
|
Java_io_highfidelity_hifiinterface_fragment_SettingsFragment_updateHifiSetting(JNIEnv *env,
|
||||||
|
jobject instance,
|
||||||
|
jstring group_,
|
||||||
|
jstring key_,
|
||||||
|
jboolean value_) {
|
||||||
|
const char *c_group = env->GetStringUTFChars(group_, 0);
|
||||||
|
const char *c_key = env->GetStringUTFChars(key_, 0);
|
||||||
|
|
||||||
|
const QString group = QString::fromUtf8(c_group);
|
||||||
|
const QString key = QString::fromUtf8(c_key);
|
||||||
|
|
||||||
|
env->ReleaseStringUTFChars(group_, c_group);
|
||||||
|
env->ReleaseStringUTFChars(key_, c_key);
|
||||||
|
|
||||||
|
bool value = value_;
|
||||||
|
|
||||||
|
Setting::Handle<bool> setting { QStringList() << group << key , !value };
|
||||||
|
setting.set(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
JNIEXPORT jboolean JNICALL
|
||||||
|
Java_io_highfidelity_hifiinterface_fragment_SettingsFragment_getHifiSettingBoolean(JNIEnv *env,
|
||||||
|
jobject instance,
|
||||||
|
jstring group_,
|
||||||
|
jstring key_,
|
||||||
|
jboolean defaultValue) {
|
||||||
|
const char *c_group = env->GetStringUTFChars(group_, 0);
|
||||||
|
const char *c_key = env->GetStringUTFChars(key_, 0);
|
||||||
|
|
||||||
|
const QString group = QString::fromUtf8(c_group);
|
||||||
|
const QString key = QString::fromUtf8(c_key);
|
||||||
|
|
||||||
|
env->ReleaseStringUTFChars(group_, c_group);
|
||||||
|
env->ReleaseStringUTFChars(key_, c_key);
|
||||||
|
|
||||||
|
Setting::Handle<bool> setting { QStringList() << group << key , defaultValue};
|
||||||
|
return setting.get();
|
||||||
|
}
|
||||||
|
|
||||||
|
JNIEXPORT void JNICALL
|
||||||
|
Java_io_highfidelity_hifiinterface_receiver_HeadsetStateReceiver_notifyHeadsetOn(JNIEnv *env,
|
||||||
|
jobject instance,
|
||||||
|
jboolean pluggedIn) {
|
||||||
|
AndroidHelper::instance().notifyHeadsetOn(pluggedIn);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,6 +13,7 @@ package io.highfidelity.hifiinterface;
|
||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
|
import android.content.IntentFilter;
|
||||||
import android.content.pm.ActivityInfo;
|
import android.content.pm.ActivityInfo;
|
||||||
import android.content.pm.PackageInfo;
|
import android.content.pm.PackageInfo;
|
||||||
import android.content.pm.PackageManager;
|
import android.content.pm.PackageManager;
|
||||||
|
@ -40,6 +41,7 @@ import java.util.HashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import io.highfidelity.hifiinterface.fragment.WebViewFragment;
|
import io.highfidelity.hifiinterface.fragment.WebViewFragment;
|
||||||
|
import io.highfidelity.hifiinterface.receiver.HeadsetStateReceiver;
|
||||||
|
|
||||||
/*import com.google.vr.cardboard.DisplaySynchronizer;
|
/*import com.google.vr.cardboard.DisplaySynchronizer;
|
||||||
import com.google.vr.cardboard.DisplayUtils;
|
import com.google.vr.cardboard.DisplayUtils;
|
||||||
|
@ -55,6 +57,7 @@ public class InterfaceActivity extends QtActivity implements WebViewFragment.OnW
|
||||||
private static final int NORMAL_DPI = 160;
|
private static final int NORMAL_DPI = 160;
|
||||||
|
|
||||||
private Vibrator mVibrator;
|
private Vibrator mVibrator;
|
||||||
|
private HeadsetStateReceiver headsetStateReceiver;
|
||||||
|
|
||||||
//public static native void handleHifiURL(String hifiURLString);
|
//public static native void handleHifiURL(String hifiURLString);
|
||||||
private native long nativeOnCreate(InterfaceActivity instance, AssetManager assetManager);
|
private native long nativeOnCreate(InterfaceActivity instance, AssetManager assetManager);
|
||||||
|
@ -151,6 +154,8 @@ public class InterfaceActivity extends QtActivity implements WebViewFragment.OnW
|
||||||
layoutParams.resolveLayoutDirection(View.LAYOUT_DIRECTION_RTL);
|
layoutParams.resolveLayoutDirection(View.LAYOUT_DIRECTION_RTL);
|
||||||
qtLayout.addView(webSlidingDrawer, layoutParams);
|
qtLayout.addView(webSlidingDrawer, layoutParams);
|
||||||
webSlidingDrawer.setVisibility(View.GONE);
|
webSlidingDrawer.setVisibility(View.GONE);
|
||||||
|
|
||||||
|
headsetStateReceiver = new HeadsetStateReceiver();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -161,6 +166,7 @@ public class InterfaceActivity extends QtActivity implements WebViewFragment.OnW
|
||||||
} else {
|
} else {
|
||||||
nativeEnterBackground();
|
nativeEnterBackground();
|
||||||
}
|
}
|
||||||
|
unregisterReceiver(headsetStateReceiver);
|
||||||
//gvrApi.pauseTracking();
|
//gvrApi.pauseTracking();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -183,6 +189,7 @@ public class InterfaceActivity extends QtActivity implements WebViewFragment.OnW
|
||||||
nativeEnterForeground();
|
nativeEnterForeground();
|
||||||
surfacesWorkaround();
|
surfacesWorkaround();
|
||||||
keepInterfaceRunning = false;
|
keepInterfaceRunning = false;
|
||||||
|
registerReceiver(headsetStateReceiver, new IntentFilter(Intent.ACTION_HEADSET_PLUG));
|
||||||
//gvrApi.resumeTracking();
|
//gvrApi.resumeTracking();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -33,6 +33,7 @@ import io.highfidelity.hifiinterface.fragment.FriendsFragment;
|
||||||
import io.highfidelity.hifiinterface.fragment.HomeFragment;
|
import io.highfidelity.hifiinterface.fragment.HomeFragment;
|
||||||
import io.highfidelity.hifiinterface.fragment.LoginFragment;
|
import io.highfidelity.hifiinterface.fragment.LoginFragment;
|
||||||
import io.highfidelity.hifiinterface.fragment.PolicyFragment;
|
import io.highfidelity.hifiinterface.fragment.PolicyFragment;
|
||||||
|
import io.highfidelity.hifiinterface.fragment.SettingsFragment;
|
||||||
import io.highfidelity.hifiinterface.task.DownloadProfileImageTask;
|
import io.highfidelity.hifiinterface.task.DownloadProfileImageTask;
|
||||||
|
|
||||||
public class MainActivity extends AppCompatActivity implements NavigationView.OnNavigationItemSelectedListener,
|
public class MainActivity extends AppCompatActivity implements NavigationView.OnNavigationItemSelectedListener,
|
||||||
|
@ -80,6 +81,8 @@ public class MainActivity extends AppCompatActivity implements NavigationView.On
|
||||||
|
|
||||||
mPeopleMenuItem = mNavigationView.getMenu().findItem(R.id.action_people);
|
mPeopleMenuItem = mNavigationView.getMenu().findItem(R.id.action_people);
|
||||||
|
|
||||||
|
updateDebugMenu(mNavigationView.getMenu());
|
||||||
|
|
||||||
Toolbar toolbar = findViewById(R.id.toolbar);
|
Toolbar toolbar = findViewById(R.id.toolbar);
|
||||||
toolbar.setTitleTextAppearance(this, R.style.HomeActionBarTitleStyle);
|
toolbar.setTitleTextAppearance(this, R.style.HomeActionBarTitleStyle);
|
||||||
setSupportActionBar(toolbar);
|
setSupportActionBar(toolbar);
|
||||||
|
@ -108,6 +111,16 @@ public class MainActivity extends AppCompatActivity implements NavigationView.On
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void updateDebugMenu(Menu menu) {
|
||||||
|
if (BuildConfig.DEBUG) {
|
||||||
|
for (int i=0; i < menu.size(); i++) {
|
||||||
|
if (menu.getItem(i).getItemId() == R.id.action_debug_settings) {
|
||||||
|
menu.getItem(i).setVisible(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void loadFragment(String fragment) {
|
private void loadFragment(String fragment) {
|
||||||
switch (fragment) {
|
switch (fragment) {
|
||||||
case "Login":
|
case "Login":
|
||||||
|
@ -151,6 +164,13 @@ public class MainActivity extends AppCompatActivity implements NavigationView.On
|
||||||
loadFragment(fragment, getString(R.string.people), getString(R.string.tagFragmentPeople), true);
|
loadFragment(fragment, getString(R.string.people), getString(R.string.tagFragmentPeople), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void loadSettingsFragment() {
|
||||||
|
SettingsFragment fragment = SettingsFragment.newInstance();
|
||||||
|
|
||||||
|
loadFragment(fragment, getString(R.string.settings), getString(R.string.tagSettings), true);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
private void loadFragment(Fragment fragment, String title, String tag, boolean addToBackStack) {
|
private void loadFragment(Fragment fragment, String title, String tag, boolean addToBackStack) {
|
||||||
FragmentManager fragmentManager = getFragmentManager();
|
FragmentManager fragmentManager = getFragmentManager();
|
||||||
|
|
||||||
|
@ -241,6 +261,9 @@ public class MainActivity extends AppCompatActivity implements NavigationView.On
|
||||||
case R.id.action_people:
|
case R.id.action_people:
|
||||||
loadPeopleFragment();
|
loadPeopleFragment();
|
||||||
return true;
|
return true;
|
||||||
|
case R.id.action_debug_settings:
|
||||||
|
loadSettingsFragment();
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,63 @@
|
||||||
|
package io.highfidelity.hifiinterface.fragment;
|
||||||
|
|
||||||
|
import android.content.SharedPreferences;
|
||||||
|
import android.media.audiofx.AcousticEchoCanceler;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.preference.Preference;
|
||||||
|
import android.preference.PreferenceFragment;
|
||||||
|
import android.support.annotation.Nullable;
|
||||||
|
|
||||||
|
import io.highfidelity.hifiinterface.R;
|
||||||
|
|
||||||
|
public class SettingsFragment extends PreferenceFragment implements SharedPreferences.OnSharedPreferenceChangeListener {
|
||||||
|
|
||||||
|
public native void updateHifiSetting(String group, String key, boolean value);
|
||||||
|
public native boolean getHifiSettingBoolean(String group, String key, boolean defaultValue);
|
||||||
|
|
||||||
|
private final String HIFI_SETTINGS_ANDROID_GROUP = "Android";
|
||||||
|
private final String HIFI_SETTINGS_AEC_KEY = "aec";
|
||||||
|
private final String PREFERENCE_KEY_AEC = "aec";
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onCreate(@Nullable Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
addPreferencesFromResource(R.xml.settings);
|
||||||
|
|
||||||
|
if (!AcousticEchoCanceler.isAvailable()) {
|
||||||
|
getPreferenceScreen().getPreferenceManager().findPreference("aec").setEnabled(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
getPreferenceScreen().getSharedPreferences().edit().putBoolean(PREFERENCE_KEY_AEC,
|
||||||
|
getHifiSettingBoolean(HIFI_SETTINGS_ANDROID_GROUP, HIFI_SETTINGS_AEC_KEY, false));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static SettingsFragment newInstance() {
|
||||||
|
SettingsFragment fragment = new SettingsFragment();
|
||||||
|
return fragment;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onResume() {
|
||||||
|
super.onResume();
|
||||||
|
getPreferenceScreen().getSharedPreferences().registerOnSharedPreferenceChangeListener(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onPause() {
|
||||||
|
super.onPause();
|
||||||
|
getPreferenceScreen().getSharedPreferences().unregisterOnSharedPreferenceChangeListener(this);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
|
||||||
|
Preference pref = findPreference(key);
|
||||||
|
switch (key) {
|
||||||
|
case "aec":
|
||||||
|
updateHifiSetting(HIFI_SETTINGS_ANDROID_GROUP, HIFI_SETTINGS_AEC_KEY, sharedPreferences.getBoolean(key, false));
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,18 @@
|
||||||
|
package io.highfidelity.hifiinterface.receiver;
|
||||||
|
|
||||||
|
import android.content.BroadcastReceiver;
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.media.AudioManager;
|
||||||
|
import android.util.Log;
|
||||||
|
|
||||||
|
public class HeadsetStateReceiver extends BroadcastReceiver {
|
||||||
|
|
||||||
|
private native void notifyHeadsetOn(boolean pluggedIn);
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onReceive(Context context, Intent intent) {
|
||||||
|
AudioManager audioManager = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE);
|
||||||
|
notifyHeadsetOn(audioManager.isWiredHeadsetOn());
|
||||||
|
}
|
||||||
|
}
|
|
@ -9,4 +9,9 @@
|
||||||
android:id="@+id/action_people"
|
android:id="@+id/action_people"
|
||||||
android:title="@string/people"
|
android:title="@string/people"
|
||||||
/>
|
/>
|
||||||
|
<item
|
||||||
|
android:id="@+id/action_debug_settings"
|
||||||
|
android:title="@string/settings"
|
||||||
|
android:visible="false"
|
||||||
|
/>
|
||||||
</menu>
|
</menu>
|
||||||
|
|
|
@ -29,4 +29,9 @@
|
||||||
<string name="tagFragmentLogin">tagFragmentLogin</string>
|
<string name="tagFragmentLogin">tagFragmentLogin</string>
|
||||||
<string name="tagFragmentPolicy">tagFragmentPolicy</string>
|
<string name="tagFragmentPolicy">tagFragmentPolicy</string>
|
||||||
<string name="tagFragmentPeople">tagFragmentPeople</string>
|
<string name="tagFragmentPeople">tagFragmentPeople</string>
|
||||||
|
<string name="tagSettings">tagSettings</string>
|
||||||
|
<string name="settings">Settings</string>
|
||||||
|
<string name="AEC">AEC</string>
|
||||||
|
<string name="acoustic_echo_cancellation">Acoustic Echo Cancellation</string>
|
||||||
|
<string name="settings_developer">Developer</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
11
android/app/src/main/res/xml/settings.xml
Normal file
11
android/app/src/main/res/xml/settings.xml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<PreferenceCategory
|
||||||
|
android:title="@string/settings_developer"
|
||||||
|
android:key="pref_key_developer">
|
||||||
|
<SwitchPreference
|
||||||
|
android:key="aec"
|
||||||
|
android:title="@string/AEC"
|
||||||
|
android:summary="@string/acoustic_echo_cancellation" />
|
||||||
|
</PreferenceCategory>
|
||||||
|
</PreferenceScreen>
|
|
@ -72,17 +72,17 @@ def jniFolder = new File(appDir, 'src/main/jniLibs/arm64-v8a')
|
||||||
def baseUrl = 'https://hifi-public.s3.amazonaws.com/dependencies/android/'
|
def baseUrl = 'https://hifi-public.s3.amazonaws.com/dependencies/android/'
|
||||||
def breakpadDumpSymsDir = new File("${appDir}/build/tmp/breakpadDumpSyms")
|
def breakpadDumpSymsDir = new File("${appDir}/build/tmp/breakpadDumpSyms")
|
||||||
|
|
||||||
def qtFile='qt-5.11.1_linux_armv8-libcpp_openssl.tgz'
|
def qtFile='qt-5.11.1_linux_armv8-libcpp_openssl_patched.tgz'
|
||||||
def qtChecksum='f312c47cd8b8dbca824c32af4eec5e66'
|
def qtChecksum='aa449d4bfa963f3bc9a9dfe558ba29df'
|
||||||
def qtVersionId='nyCGcb91S4QbYeJhUkawO5x1lrLdSNB_'
|
def qtVersionId='3S97HBM5G5Xw9EfE52sikmgdN3t6C2MN'
|
||||||
if (Os.isFamily(Os.FAMILY_MAC)) {
|
if (Os.isFamily(Os.FAMILY_MAC)) {
|
||||||
qtFile = 'qt-5.11.1_osx_armv8-libcpp_openssl.tgz'
|
qtFile = 'qt-5.11.1_osx_armv8-libcpp_openssl_patched.tgz'
|
||||||
qtChecksum='a0c8b394aec5b0fcd46714ca3a53278a'
|
qtChecksum='c83cc477c08a892e00c71764dca051a0'
|
||||||
qtVersionId='QNa.lwNJaPc0eGuIL.xZ8ebeTuLL7rh8'
|
qtVersionId='OxBD7iKINv1HbyOXmAmDrBb8AF3N.Kup'
|
||||||
} else if (Os.isFamily(Os.FAMILY_WINDOWS)) {
|
} else if (Os.isFamily(Os.FAMILY_WINDOWS)) {
|
||||||
qtFile = 'qt-5.11.1_win_armv8-libcpp_openssl.tgz'
|
qtFile = 'qt-5.11.1_win_armv8-libcpp_openssl_patched.tgz'
|
||||||
qtChecksum='d80aed4233ce9e222aae8376e7a94bf9'
|
qtChecksum='0582191cc55431aa4f660848a542883e'
|
||||||
qtVersionId='iDVXu0i3WEXRFIxQCtzcJ2XuKrE8RIqB'
|
qtVersionId='JfWM0P_Mz5Qp0LwpzhrsRwN3fqlLSFeT'
|
||||||
}
|
}
|
||||||
|
|
||||||
def packages = [
|
def packages = [
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
//
|
//
|
||||||
#include "AndroidHelper.h"
|
#include "AndroidHelper.h"
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
|
#include <AudioClient.h>
|
||||||
#include "Application.h"
|
#include "Application.h"
|
||||||
|
|
||||||
#if defined(qApp)
|
#if defined(qApp)
|
||||||
|
@ -18,6 +19,7 @@
|
||||||
#define qApp (static_cast<Application*>(QCoreApplication::instance()))
|
#define qApp (static_cast<Application*>(QCoreApplication::instance()))
|
||||||
|
|
||||||
AndroidHelper::AndroidHelper() {
|
AndroidHelper::AndroidHelper() {
|
||||||
|
qRegisterMetaType<QAudio::Mode>("QAudio::Mode");
|
||||||
}
|
}
|
||||||
|
|
||||||
AndroidHelper::~AndroidHelper() {
|
AndroidHelper::~AndroidHelper() {
|
||||||
|
@ -56,3 +58,12 @@ void AndroidHelper::processURL(const QString &url) {
|
||||||
qApp->acceptURL(url);
|
qApp->acceptURL(url);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void AndroidHelper::notifyHeadsetOn(bool pluggedIn) {
|
||||||
|
#if defined (Q_OS_ANDROID)
|
||||||
|
auto audioClient = DependencyManager::get<AudioClient>();
|
||||||
|
if (audioClient) {
|
||||||
|
QMetaObject::invokeMethod(audioClient.data(), "setHeadsetPluggedIn", Q_ARG(bool, pluggedIn));
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
|
@ -29,6 +29,7 @@ public:
|
||||||
|
|
||||||
void performHapticFeedback(int duration);
|
void performHapticFeedback(int duration);
|
||||||
void processURL(const QString &url);
|
void processURL(const QString &url);
|
||||||
|
void notifyHeadsetOn(bool pluggedIn);
|
||||||
|
|
||||||
AndroidHelper(AndroidHelper const&) = delete;
|
AndroidHelper(AndroidHelper const&) = delete;
|
||||||
void operator=(AndroidHelper const&) = delete;
|
void operator=(AndroidHelper const&) = delete;
|
||||||
|
|
|
@ -91,6 +91,8 @@ const float MIN_SCALE_CHANGED_DELTA = 0.001f;
|
||||||
const int MODE_READINGS_RING_BUFFER_SIZE = 500;
|
const int MODE_READINGS_RING_BUFFER_SIZE = 500;
|
||||||
const float CENTIMETERS_PER_METER = 100.0f;
|
const float CENTIMETERS_PER_METER = 100.0f;
|
||||||
|
|
||||||
|
const QString AVATAR_SETTINGS_GROUP_NAME { "Avatar" };
|
||||||
|
|
||||||
MyAvatar::MyAvatar(QThread* thread) :
|
MyAvatar::MyAvatar(QThread* thread) :
|
||||||
Avatar(thread),
|
Avatar(thread),
|
||||||
_yawSpeed(YAW_SPEED_DEFAULT),
|
_yawSpeed(YAW_SPEED_DEFAULT),
|
||||||
|
@ -118,7 +120,22 @@ MyAvatar::MyAvatar(QThread* thread) :
|
||||||
_goToOrientation(),
|
_goToOrientation(),
|
||||||
_prevShouldDrawHead(true),
|
_prevShouldDrawHead(true),
|
||||||
_audioListenerMode(FROM_HEAD),
|
_audioListenerMode(FROM_HEAD),
|
||||||
_hmdAtRestDetector(glm::vec3(0), glm::quat())
|
_hmdAtRestDetector(glm::vec3(0), glm::quat()),
|
||||||
|
_dominantHandSetting(QStringList() << AVATAR_SETTINGS_GROUP_NAME << "dominantHand", DOMINANT_RIGHT_HAND),
|
||||||
|
_headPitchSetting(QStringList() << AVATAR_SETTINGS_GROUP_NAME << "", 0.0f),
|
||||||
|
_scaleSetting(QStringList() << AVATAR_SETTINGS_GROUP_NAME << "scale", _targetScale),
|
||||||
|
_yawSpeedSetting(QStringList() << AVATAR_SETTINGS_GROUP_NAME << "yawSpeed", _yawSpeed),
|
||||||
|
_pitchSpeedSetting(QStringList() << AVATAR_SETTINGS_GROUP_NAME << "pitchSpeed", _pitchSpeed),
|
||||||
|
_fullAvatarURLSetting(QStringList() << AVATAR_SETTINGS_GROUP_NAME << "fullAvatarURL",
|
||||||
|
AvatarData::defaultFullAvatarModelUrl()),
|
||||||
|
_fullAvatarModelNameSetting(QStringList() << AVATAR_SETTINGS_GROUP_NAME << "fullAvatarModelName", _fullAvatarModelName),
|
||||||
|
_animGraphURLSetting(QStringList() << AVATAR_SETTINGS_GROUP_NAME << "animGraphURL", QUrl("")),
|
||||||
|
_displayNameSetting(QStringList() << AVATAR_SETTINGS_GROUP_NAME << "displayName", ""),
|
||||||
|
_collisionSoundURLSetting(QStringList() << AVATAR_SETTINGS_GROUP_NAME << "collisionSoundURL", QUrl(_collisionSoundURL)),
|
||||||
|
_useSnapTurnSetting(QStringList() << AVATAR_SETTINGS_GROUP_NAME << "useSnapTurn", _useSnapTurn),
|
||||||
|
_userHeightSetting(QStringList() << AVATAR_SETTINGS_GROUP_NAME << "userHeight", DEFAULT_AVATAR_HEIGHT),
|
||||||
|
_flyingHMDSetting(QStringList() << AVATAR_SETTINGS_GROUP_NAME << "flyingHMD", _flyingPrefHMD),
|
||||||
|
_avatarEntityCountSetting(QStringList() << AVATAR_SETTINGS_GROUP_NAME << "avatarEntityData" << "size", _flyingPrefHMD)
|
||||||
{
|
{
|
||||||
_clientTraitsHandler = std::unique_ptr<ClientTraitsHandler>(new ClientTraitsHandler(this));
|
_clientTraitsHandler = std::unique_ptr<ClientTraitsHandler>(new ClientTraitsHandler(this));
|
||||||
|
|
||||||
|
@ -1135,88 +1152,80 @@ void MyAvatar::restoreRoleAnimation(const QString& role) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MyAvatar::saveAvatarUrl() {
|
void MyAvatar::saveAvatarUrl() {
|
||||||
Settings settings;
|
if (qApp->getSaveAvatarOverrideUrl() || !qApp->getAvatarOverrideUrl().isValid()) {
|
||||||
settings.beginGroup("Avatar");
|
_fullAvatarURLSetting.set(_fullAvatarURLFromPreferences == AvatarData::defaultFullAvatarModelUrl() ?
|
||||||
if (qApp->getSaveAvatarOverrideUrl() || !qApp->getAvatarOverrideUrl().isValid() ) {
|
"" :
|
||||||
settings.setValue("fullAvatarURL",
|
_fullAvatarURLFromPreferences.toString());
|
||||||
_fullAvatarURLFromPreferences == AvatarData::defaultFullAvatarModelUrl() ?
|
}
|
||||||
"" :
|
}
|
||||||
_fullAvatarURLFromPreferences.toString());
|
|
||||||
|
void MyAvatar::resizeAvatarEntitySettingHandles(unsigned int avatarEntityIndex) {
|
||||||
|
// The original Settings interface saved avatar-entity array data like this:
|
||||||
|
// Avatar/avatarEntityData/size: 5
|
||||||
|
// Avatar/avatarEntityData/1/id: ...
|
||||||
|
// Avatar/avatarEntityData/1/properties: ...
|
||||||
|
// ...
|
||||||
|
// Avatar/avatarEntityData/5/id: ...
|
||||||
|
// Avatar/avatarEntityData/5/properties: ...
|
||||||
|
//
|
||||||
|
// Create Setting::Handles to mimic this.
|
||||||
|
|
||||||
|
while (_avatarEntityIDSettings.size() <= avatarEntityIndex) {
|
||||||
|
Setting::Handle<QUuid> idHandle(QStringList() << AVATAR_SETTINGS_GROUP_NAME << "avatarEntityData"
|
||||||
|
<< QString::number(avatarEntityIndex + 1) << "id", QUuid());
|
||||||
|
_avatarEntityIDSettings.push_back(idHandle);
|
||||||
|
Setting::Handle<QByteArray> dataHandle(QStringList() << AVATAR_SETTINGS_GROUP_NAME << "avatarEntityData"
|
||||||
|
<< QString::number(avatarEntityIndex + 1) << "properties", QByteArray());
|
||||||
|
_avatarEntityDataSettings.push_back(dataHandle);
|
||||||
}
|
}
|
||||||
settings.endGroup();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MyAvatar::saveData() {
|
void MyAvatar::saveData() {
|
||||||
Settings settings;
|
_dominantHandSetting.set(_dominantHand);
|
||||||
settings.beginGroup("Avatar");
|
_headPitchSetting.set(getHead()->getBasePitch());
|
||||||
|
_scaleSetting.set(_targetScale);
|
||||||
settings.setValue("dominantHand", _dominantHand);
|
_yawSpeedSetting.set(_yawSpeed);
|
||||||
settings.setValue("headPitch", getHead()->getBasePitch());
|
_pitchSpeedSetting.set(_pitchSpeed);
|
||||||
|
|
||||||
settings.setValue("scale", _targetScale);
|
|
||||||
|
|
||||||
settings.setValue("yawSpeed", _yawSpeed);
|
|
||||||
settings.setValue("pitchSpeed", _pitchSpeed);
|
|
||||||
|
|
||||||
// only save the fullAvatarURL if it has not been overwritten on command line
|
// only save the fullAvatarURL if it has not been overwritten on command line
|
||||||
// (so the overrideURL is not valid), or it was overridden _and_ we specified
|
// (so the overrideURL is not valid), or it was overridden _and_ we specified
|
||||||
// --replaceAvatarURL (so _saveAvatarOverrideUrl is true)
|
// --replaceAvatarURL (so _saveAvatarOverrideUrl is true)
|
||||||
if (qApp->getSaveAvatarOverrideUrl() || !qApp->getAvatarOverrideUrl().isValid() ) {
|
if (qApp->getSaveAvatarOverrideUrl() || !qApp->getAvatarOverrideUrl().isValid() ) {
|
||||||
settings.setValue("fullAvatarURL",
|
_fullAvatarURLSetting.set(_fullAvatarURLFromPreferences == AvatarData::defaultFullAvatarModelUrl() ?
|
||||||
_fullAvatarURLFromPreferences == AvatarData::defaultFullAvatarModelUrl() ?
|
"" :
|
||||||
"" :
|
_fullAvatarURLFromPreferences.toString());
|
||||||
_fullAvatarURLFromPreferences.toString());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
settings.setValue("fullAvatarModelName", _fullAvatarModelName);
|
_fullAvatarModelNameSetting.set(_fullAvatarModelName);
|
||||||
|
|
||||||
QUrl animGraphUrl = _prefOverrideAnimGraphUrl.get();
|
QUrl animGraphUrl = _prefOverrideAnimGraphUrl.get();
|
||||||
settings.setValue("animGraphURL", animGraphUrl);
|
_animGraphURLSetting.set(animGraphUrl);
|
||||||
|
_displayNameSetting.set(_displayName);
|
||||||
|
_collisionSoundURLSetting.set(_collisionSoundURL);
|
||||||
|
_useSnapTurnSetting.set(_useSnapTurn);
|
||||||
|
_userHeightSetting.set(getUserHeight());
|
||||||
|
_flyingHMDSetting.set(getFlyingHMDPref());
|
||||||
|
|
||||||
settings.beginWriteArray("attachmentData");
|
|
||||||
for (int i = 0; i < _attachmentData.size(); i++) {
|
|
||||||
settings.setArrayIndex(i);
|
|
||||||
const AttachmentData& attachment = _attachmentData.at(i);
|
|
||||||
settings.setValue("modelURL", attachment.modelURL);
|
|
||||||
settings.setValue("jointName", attachment.jointName);
|
|
||||||
settings.setValue("translation_x", attachment.translation.x);
|
|
||||||
settings.setValue("translation_y", attachment.translation.y);
|
|
||||||
settings.setValue("translation_z", attachment.translation.z);
|
|
||||||
glm::vec3 eulers = safeEulerAngles(attachment.rotation);
|
|
||||||
settings.setValue("rotation_x", eulers.x);
|
|
||||||
settings.setValue("rotation_y", eulers.y);
|
|
||||||
settings.setValue("rotation_z", eulers.z);
|
|
||||||
settings.setValue("scale", attachment.scale);
|
|
||||||
settings.setValue("isSoft", attachment.isSoft);
|
|
||||||
}
|
|
||||||
settings.endArray();
|
|
||||||
|
|
||||||
settings.remove("avatarEntityData");
|
|
||||||
settings.beginWriteArray("avatarEntityData");
|
|
||||||
int avatarEntityIndex = 0;
|
|
||||||
auto hmdInterface = DependencyManager::get<HMDScriptingInterface>();
|
auto hmdInterface = DependencyManager::get<HMDScriptingInterface>();
|
||||||
_avatarEntitiesLock.withReadLock([&] {
|
_avatarEntitiesLock.withReadLock([&] {
|
||||||
for (auto entityID : _avatarEntityData.keys()) {
|
QList<QUuid> avatarEntityIDs = _avatarEntityData.keys();
|
||||||
if (hmdInterface->getCurrentTabletFrameID() == entityID) {
|
unsigned int avatarEntityCount = avatarEntityIDs.size();
|
||||||
// don't persist the tablet between domains / sessions
|
unsigned int previousAvatarEntityCount = _avatarEntityCountSetting.get(0);
|
||||||
continue;
|
resizeAvatarEntitySettingHandles(std::max<unsigned int>(avatarEntityCount, previousAvatarEntityCount));
|
||||||
}
|
_avatarEntityCountSetting.set(avatarEntityCount);
|
||||||
|
|
||||||
settings.setArrayIndex(avatarEntityIndex);
|
unsigned int avatarEntityIndex = 0;
|
||||||
settings.setValue("id", entityID);
|
for (auto entityID : avatarEntityIDs) {
|
||||||
settings.setValue("properties", _avatarEntityData.value(entityID));
|
_avatarEntityIDSettings[avatarEntityIndex].set(entityID);
|
||||||
|
_avatarEntityDataSettings[avatarEntityIndex].set(_avatarEntityData.value(entityID));
|
||||||
avatarEntityIndex++;
|
avatarEntityIndex++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// clean up any left-over (due to the list shrinking) slots
|
||||||
|
for (; avatarEntityIndex < previousAvatarEntityCount; avatarEntityIndex++) {
|
||||||
|
_avatarEntityIDSettings[avatarEntityIndex].remove();
|
||||||
|
_avatarEntityDataSettings[avatarEntityIndex].remove();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
settings.endArray();
|
|
||||||
|
|
||||||
settings.setValue("displayName", _displayName);
|
|
||||||
settings.setValue("collisionSoundURL", _collisionSoundURL);
|
|
||||||
settings.setValue("useSnapTurn", _useSnapTurn);
|
|
||||||
settings.setValue("userHeight", getUserHeight());
|
|
||||||
settings.setValue("flyingHMD", getFlyingHMDPref());
|
|
||||||
|
|
||||||
settings.endGroup();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
float loadSetting(Settings& settings, const QString& name, float defaultValue) {
|
float loadSetting(Settings& settings, const QString& name, float defaultValue) {
|
||||||
|
@ -1314,66 +1323,36 @@ void MyAvatar::setEnableInverseKinematics(bool isEnabled) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MyAvatar::loadData() {
|
void MyAvatar::loadData() {
|
||||||
Settings settings;
|
getHead()->setBasePitch(_headPitchSetting.get());
|
||||||
settings.beginGroup("Avatar");
|
|
||||||
|
|
||||||
getHead()->setBasePitch(loadSetting(settings, "headPitch", 0.0f));
|
_yawSpeed = _yawSpeedSetting.get(_yawSpeed);
|
||||||
|
_pitchSpeed = _pitchSpeedSetting.get(_pitchSpeed);
|
||||||
|
|
||||||
_yawSpeed = loadSetting(settings, "yawSpeed", _yawSpeed);
|
_prefOverrideAnimGraphUrl.set(_prefOverrideAnimGraphUrl.get().toString());
|
||||||
_pitchSpeed = loadSetting(settings, "pitchSpeed", _pitchSpeed);
|
_fullAvatarURLFromPreferences = _fullAvatarURLSetting.get(QUrl(AvatarData::defaultFullAvatarModelUrl()));
|
||||||
|
_fullAvatarModelName = _fullAvatarModelNameSetting.get(DEFAULT_FULL_AVATAR_MODEL_NAME).toString();
|
||||||
_prefOverrideAnimGraphUrl.set(QUrl(settings.value("animGraphURL", "").toString()));
|
|
||||||
_fullAvatarURLFromPreferences = settings.value("fullAvatarURL", AvatarData::defaultFullAvatarModelUrl()).toUrl();
|
|
||||||
_fullAvatarModelName = settings.value("fullAvatarModelName", DEFAULT_FULL_AVATAR_MODEL_NAME).toString();
|
|
||||||
|
|
||||||
useFullAvatarURL(_fullAvatarURLFromPreferences, _fullAvatarModelName);
|
useFullAvatarURL(_fullAvatarURLFromPreferences, _fullAvatarModelName);
|
||||||
|
|
||||||
int attachmentCount = settings.beginReadArray("attachmentData");
|
int avatarEntityCount = _avatarEntityCountSetting.get(0);
|
||||||
for (int i = 0; i < attachmentCount; i++) {
|
|
||||||
settings.setArrayIndex(i);
|
|
||||||
AttachmentData attachment;
|
|
||||||
attachment.modelURL = settings.value("modelURL").toUrl();
|
|
||||||
attachment.jointName = settings.value("jointName").toString();
|
|
||||||
attachment.translation.x = loadSetting(settings, "translation_x", 0.0f);
|
|
||||||
attachment.translation.y = loadSetting(settings, "translation_y", 0.0f);
|
|
||||||
attachment.translation.z = loadSetting(settings, "translation_z", 0.0f);
|
|
||||||
glm::vec3 eulers;
|
|
||||||
eulers.x = loadSetting(settings, "rotation_x", 0.0f);
|
|
||||||
eulers.y = loadSetting(settings, "rotation_y", 0.0f);
|
|
||||||
eulers.z = loadSetting(settings, "rotation_z", 0.0f);
|
|
||||||
attachment.rotation = glm::quat(eulers);
|
|
||||||
attachment.scale = loadSetting(settings, "scale", 1.0f);
|
|
||||||
attachment.isSoft = settings.value("isSoft").toBool();
|
|
||||||
// old attachments are stored and loaded/converted later when rig is ready
|
|
||||||
_oldAttachmentData.append(attachment);
|
|
||||||
}
|
|
||||||
settings.endArray();
|
|
||||||
|
|
||||||
int avatarEntityCount = settings.beginReadArray("avatarEntityData");
|
|
||||||
for (int i = 0; i < avatarEntityCount; i++) {
|
for (int i = 0; i < avatarEntityCount; i++) {
|
||||||
settings.setArrayIndex(i);
|
resizeAvatarEntitySettingHandles(i);
|
||||||
QUuid entityID = settings.value("id").toUuid();
|
|
||||||
// QUuid entityID = QUuid::createUuid(); // generate a new ID
|
// QUuid entityID = QUuid::createUuid(); // generate a new ID
|
||||||
QByteArray properties = settings.value("properties").toByteArray();
|
QUuid entityID = _avatarEntityIDSettings[i].get(QUuid());
|
||||||
|
QByteArray properties = _avatarEntityDataSettings[i].get();
|
||||||
updateAvatarEntity(entityID, properties);
|
updateAvatarEntity(entityID, properties);
|
||||||
}
|
}
|
||||||
settings.endArray();
|
|
||||||
if (avatarEntityCount == 0) {
|
|
||||||
// HACK: manually remove empty 'avatarEntityData' else legacy data may persist in settings file
|
|
||||||
settings.remove("avatarEntityData");
|
|
||||||
}
|
|
||||||
|
|
||||||
// Flying preferences must be loaded before calling setFlyingEnabled()
|
// Flying preferences must be loaded before calling setFlyingEnabled()
|
||||||
Setting::Handle<bool> firstRunVal { Settings::firstRun, true };
|
Setting::Handle<bool> firstRunVal { Settings::firstRun, true };
|
||||||
setFlyingHMDPref(firstRunVal.get() ? false : settings.value("flyingHMD").toBool());
|
setFlyingHMDPref(firstRunVal.get() ? false : _flyingHMDSetting.get());
|
||||||
setFlyingEnabled(getFlyingEnabled());
|
setFlyingEnabled(getFlyingEnabled());
|
||||||
|
|
||||||
setDisplayName(settings.value("displayName").toString());
|
setDisplayName(_displayNameSetting.get());
|
||||||
setCollisionSoundURL(settings.value("collisionSoundURL", DEFAULT_AVATAR_COLLISION_SOUND_URL).toString());
|
setCollisionSoundURL(_collisionSoundURLSetting.get(QUrl(DEFAULT_AVATAR_COLLISION_SOUND_URL)).toString());
|
||||||
setSnapTurn(settings.value("useSnapTurn", _useSnapTurn).toBool());
|
setSnapTurn(_useSnapTurnSetting.get());
|
||||||
setDominantHand(settings.value("dominantHand", _dominantHand).toString().toLower());
|
setDominantHand(_dominantHandSetting.get(DOMINANT_RIGHT_HAND).toLower());
|
||||||
setUserHeight(settings.value("userHeight", DEFAULT_AVATAR_HEIGHT).toDouble());
|
setUserHeight(_userHeightSetting.get(DEFAULT_AVATAR_HEIGHT));
|
||||||
settings.endGroup();
|
|
||||||
|
|
||||||
setEnableMeshVisible(Menu::getInstance()->isOptionChecked(MenuOption::MeshVisible));
|
setEnableMeshVisible(Menu::getInstance()->isOptionChecked(MenuOption::MeshVisible));
|
||||||
_follow.setToggleHipsFollowing (Menu::getInstance()->isOptionChecked(MenuOption::ToggleHipsFollowing));
|
_follow.setToggleHipsFollowing (Menu::getInstance()->isOptionChecked(MenuOption::ToggleHipsFollowing));
|
||||||
|
@ -1442,6 +1421,7 @@ AttachmentData MyAvatar::loadAttachmentData(const QUrl& modelURL, const QString&
|
||||||
return attachment;
|
return attachment;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int MyAvatar::parseDataFromBuffer(const QByteArray& buffer) {
|
int MyAvatar::parseDataFromBuffer(const QByteArray& buffer) {
|
||||||
qCDebug(interfaceapp) << "Error: ignoring update packet for MyAvatar"
|
qCDebug(interfaceapp) << "Error: ignoring update packet for MyAvatar"
|
||||||
<< " packetLength = " << buffer.size();
|
<< " packetLength = " << buffer.size();
|
||||||
|
@ -2899,10 +2879,7 @@ void MyAvatar::restrictScaleFromDomainSettings(const QJsonObject& domainSettings
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set avatar current scale
|
// Set avatar current scale
|
||||||
Settings settings;
|
_targetScale = _scaleSetting.get();
|
||||||
settings.beginGroup("Avatar");
|
|
||||||
_targetScale = loadSetting(settings, "scale", 1.0f);
|
|
||||||
|
|
||||||
// clamp the desired _targetScale by the domain limits NOW, don't try to gracefully animate. Because
|
// clamp the desired _targetScale by the domain limits NOW, don't try to gracefully animate. Because
|
||||||
// this might cause our avatar to become embedded in the terrain.
|
// this might cause our avatar to become embedded in the terrain.
|
||||||
_targetScale = getDomainLimitedScale();
|
_targetScale = getDomainLimitedScale();
|
||||||
|
@ -2914,7 +2891,6 @@ void MyAvatar::restrictScaleFromDomainSettings(const QJsonObject& domainSettings
|
||||||
|
|
||||||
setModelScale(_targetScale);
|
setModelScale(_targetScale);
|
||||||
rebuildCollisionShape();
|
rebuildCollisionShape();
|
||||||
settings.endGroup();
|
|
||||||
|
|
||||||
_haveReceivedHeightLimitsFromDomain = true;
|
_haveReceivedHeightLimitsFromDomain = true;
|
||||||
}
|
}
|
||||||
|
@ -2925,10 +2901,7 @@ void MyAvatar::leaveDomain() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MyAvatar::saveAvatarScale() {
|
void MyAvatar::saveAvatarScale() {
|
||||||
Settings settings;
|
_scaleSetting.set(_targetScale);
|
||||||
settings.beginGroup("Avatar");
|
|
||||||
settings.setValue("scale", _targetScale);
|
|
||||||
settings.endGroup();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MyAvatar::clearScaleRestriction() {
|
void MyAvatar::clearScaleRestriction() {
|
||||||
|
|
|
@ -550,6 +550,7 @@ public:
|
||||||
float getHMDRollControlRate() const { return _hmdRollControlRate; }
|
float getHMDRollControlRate() const { return _hmdRollControlRate; }
|
||||||
|
|
||||||
// get/set avatar data
|
// get/set avatar data
|
||||||
|
void resizeAvatarEntitySettingHandles(unsigned int avatarEntityIndex);
|
||||||
void saveData();
|
void saveData();
|
||||||
void loadData();
|
void loadData();
|
||||||
|
|
||||||
|
@ -1806,6 +1807,23 @@ private:
|
||||||
|
|
||||||
bool _haveReceivedHeightLimitsFromDomain { false };
|
bool _haveReceivedHeightLimitsFromDomain { false };
|
||||||
int _disableHandTouchCount { 0 };
|
int _disableHandTouchCount { 0 };
|
||||||
|
|
||||||
|
Setting::Handle<QString> _dominantHandSetting;
|
||||||
|
Setting::Handle<float> _headPitchSetting;
|
||||||
|
Setting::Handle<float> _scaleSetting;
|
||||||
|
Setting::Handle<float> _yawSpeedSetting;
|
||||||
|
Setting::Handle<float> _pitchSpeedSetting;
|
||||||
|
Setting::Handle<QUrl> _fullAvatarURLSetting;
|
||||||
|
Setting::Handle<QUrl> _fullAvatarModelNameSetting;
|
||||||
|
Setting::Handle<QUrl> _animGraphURLSetting;
|
||||||
|
Setting::Handle<QString> _displayNameSetting;
|
||||||
|
Setting::Handle<QUrl> _collisionSoundURLSetting;
|
||||||
|
Setting::Handle<bool> _useSnapTurnSetting;
|
||||||
|
Setting::Handle<float> _userHeightSetting;
|
||||||
|
Setting::Handle<bool> _flyingHMDSetting;
|
||||||
|
Setting::Handle<int> _avatarEntityCountSetting;
|
||||||
|
std::vector<Setting::Handle<QUuid>> _avatarEntityIDSettings;
|
||||||
|
std::vector<Setting::Handle<QByteArray>> _avatarEntityDataSettings;
|
||||||
};
|
};
|
||||||
|
|
||||||
QScriptValue audioListenModeToScriptValue(QScriptEngine* engine, const AudioListenerMode& audioListenerMode);
|
QScriptValue audioListenModeToScriptValue(QScriptEngine* engine, const AudioListenerMode& audioListenerMode);
|
||||||
|
|
|
@ -53,7 +53,6 @@
|
||||||
#include "AudioHelpers.h"
|
#include "AudioHelpers.h"
|
||||||
|
|
||||||
#if defined(Q_OS_ANDROID)
|
#if defined(Q_OS_ANDROID)
|
||||||
#define VOICE_RECOGNITION "voicerecognition"
|
|
||||||
#include <QtAndroidExtras/QAndroidJniObject>
|
#include <QtAndroidExtras/QAndroidJniObject>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -210,6 +209,7 @@ AudioClient::AudioClient() :
|
||||||
_positionGetter(DEFAULT_POSITION_GETTER),
|
_positionGetter(DEFAULT_POSITION_GETTER),
|
||||||
#if defined(Q_OS_ANDROID)
|
#if defined(Q_OS_ANDROID)
|
||||||
_checkInputTimer(this),
|
_checkInputTimer(this),
|
||||||
|
_isHeadsetPluggedIn(false),
|
||||||
#endif
|
#endif
|
||||||
_orientationGetter(DEFAULT_ORIENTATION_GETTER) {
|
_orientationGetter(DEFAULT_ORIENTATION_GETTER) {
|
||||||
// avoid putting a lock in the device callback
|
// avoid putting a lock in the device callback
|
||||||
|
@ -461,9 +461,14 @@ QAudioDeviceInfo defaultAudioDeviceForMode(QAudio::Mode mode) {
|
||||||
|
|
||||||
#if defined (Q_OS_ANDROID)
|
#if defined (Q_OS_ANDROID)
|
||||||
if (mode == QAudio::AudioInput) {
|
if (mode == QAudio::AudioInput) {
|
||||||
|
Setting::Handle<bool> enableAEC(SETTING_AEC_KEY, false);
|
||||||
|
bool aecEnabled = enableAEC.get();
|
||||||
|
auto audioClient = DependencyManager::get<AudioClient>();
|
||||||
|
bool headsetOn = audioClient? audioClient->isHeadsetPluggedIn() : false;
|
||||||
auto inputDevices = QAudioDeviceInfo::availableDevices(QAudio::AudioInput);
|
auto inputDevices = QAudioDeviceInfo::availableDevices(QAudio::AudioInput);
|
||||||
for (auto inputDevice : inputDevices) {
|
for (auto inputDevice : inputDevices) {
|
||||||
if (inputDevice.deviceName() == VOICE_RECOGNITION) {
|
if (((headsetOn || !aecEnabled) && inputDevice.deviceName() == VOICE_RECOGNITION) ||
|
||||||
|
((!headsetOn && aecEnabled) && inputDevice.deviceName() == VOICE_COMMUNICATION)) {
|
||||||
return inputDevice;
|
return inputDevice;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1640,6 +1645,29 @@ void AudioClient::checkInputTimeout() {
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void AudioClient::setHeadsetPluggedIn(bool pluggedIn) {
|
||||||
|
#if defined(Q_OS_ANDROID)
|
||||||
|
if (pluggedIn == !_isHeadsetPluggedIn && !_inputDeviceInfo.isNull()) {
|
||||||
|
QAndroidJniObject brand = QAndroidJniObject::getStaticObjectField<jstring>("android/os/Build", "BRAND");
|
||||||
|
// some samsung phones needs more time to shutdown the previous input device
|
||||||
|
if (brand.toString().contains("samsung", Qt::CaseInsensitive)) {
|
||||||
|
switchInputToAudioDevice(QAudioDeviceInfo(), true);
|
||||||
|
QThread::msleep(200);
|
||||||
|
}
|
||||||
|
|
||||||
|
Setting::Handle<bool> enableAEC(SETTING_AEC_KEY, false);
|
||||||
|
bool aecEnabled = enableAEC.get();
|
||||||
|
|
||||||
|
if ((pluggedIn || !aecEnabled) && _inputDeviceInfo.deviceName() != VOICE_RECOGNITION) {
|
||||||
|
switchAudioDevice(QAudio::AudioInput, VOICE_RECOGNITION);
|
||||||
|
} else if (!pluggedIn && aecEnabled && _inputDeviceInfo.deviceName() != VOICE_COMMUNICATION) {
|
||||||
|
switchAudioDevice(QAudio::AudioInput, VOICE_COMMUNICATION);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_isHeadsetPluggedIn = pluggedIn;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
void AudioClient::outputNotify() {
|
void AudioClient::outputNotify() {
|
||||||
int recentUnfulfilled = _audioOutputIODevice.getRecentUnfulfilledReads();
|
int recentUnfulfilled = _audioOutputIODevice.getRecentUnfulfilledReads();
|
||||||
if (recentUnfulfilled > 0) {
|
if (recentUnfulfilled > 0) {
|
||||||
|
|
|
@ -64,6 +64,13 @@
|
||||||
#pragma warning( pop )
|
#pragma warning( pop )
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined (Q_OS_ANDROID)
|
||||||
|
#define VOICE_RECOGNITION "voicerecognition"
|
||||||
|
#define VOICE_COMMUNICATION "voicecommunication"
|
||||||
|
|
||||||
|
#define SETTING_AEC_KEY "Android/aec"
|
||||||
|
#endif
|
||||||
|
|
||||||
class QAudioInput;
|
class QAudioInput;
|
||||||
class QAudioOutput;
|
class QAudioOutput;
|
||||||
class QIODevice;
|
class QIODevice;
|
||||||
|
@ -169,6 +176,10 @@ public:
|
||||||
static QString getWinDeviceName(wchar_t* guid);
|
static QString getWinDeviceName(wchar_t* guid);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(Q_OS_ANDROID)
|
||||||
|
bool isHeadsetPluggedIn() { return _isHeadsetPluggedIn; }
|
||||||
|
#endif
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void start();
|
void start();
|
||||||
void stop();
|
void stop();
|
||||||
|
@ -217,6 +228,9 @@ public slots:
|
||||||
bool switchAudioDevice(QAudio::Mode mode, const QAudioDeviceInfo& deviceInfo = QAudioDeviceInfo());
|
bool switchAudioDevice(QAudio::Mode mode, const QAudioDeviceInfo& deviceInfo = QAudioDeviceInfo());
|
||||||
bool switchAudioDevice(QAudio::Mode mode, const QString& deviceName);
|
bool switchAudioDevice(QAudio::Mode mode, const QString& deviceName);
|
||||||
|
|
||||||
|
// Qt opensles plugin is not able to detect when the headset is plugged in
|
||||||
|
void setHeadsetPluggedIn(bool pluggedIn);
|
||||||
|
|
||||||
float getInputVolume() const { return (_audioInput) ? (float)_audioInput->volume() : 0.0f; }
|
float getInputVolume() const { return (_audioInput) ? (float)_audioInput->volume() : 0.0f; }
|
||||||
void setInputVolume(float volume, bool emitSignal = true);
|
void setInputVolume(float volume, bool emitSignal = true);
|
||||||
void setReverb(bool reverb);
|
void setReverb(bool reverb);
|
||||||
|
@ -278,6 +292,7 @@ private:
|
||||||
#ifdef Q_OS_ANDROID
|
#ifdef Q_OS_ANDROID
|
||||||
QTimer _checkInputTimer;
|
QTimer _checkInputTimer;
|
||||||
long _inputReadsSinceLastCheck = 0l;
|
long _inputReadsSinceLastCheck = 0l;
|
||||||
|
bool _isHeadsetPluggedIn;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
class Gate {
|
class Gate {
|
||||||
|
|
|
@ -132,8 +132,8 @@ EntityItemProperties convertPropertiesToScriptSemantics(const EntityItemProperti
|
||||||
EntityItemProperties scriptSideProperties = entitySideProperties;
|
EntityItemProperties scriptSideProperties = entitySideProperties;
|
||||||
scriptSideProperties.setLocalPosition(entitySideProperties.getPosition());
|
scriptSideProperties.setLocalPosition(entitySideProperties.getPosition());
|
||||||
scriptSideProperties.setLocalRotation(entitySideProperties.getRotation());
|
scriptSideProperties.setLocalRotation(entitySideProperties.getRotation());
|
||||||
scriptSideProperties.setLocalVelocity(entitySideProperties.getLocalVelocity());
|
scriptSideProperties.setLocalVelocity(entitySideProperties.getVelocity());
|
||||||
scriptSideProperties.setLocalAngularVelocity(entitySideProperties.getLocalAngularVelocity());
|
scriptSideProperties.setLocalAngularVelocity(entitySideProperties.getAngularVelocity());
|
||||||
scriptSideProperties.setLocalDimensions(entitySideProperties.getDimensions());
|
scriptSideProperties.setLocalDimensions(entitySideProperties.getDimensions());
|
||||||
|
|
||||||
bool success;
|
bool success;
|
||||||
|
@ -181,8 +181,6 @@ EntityItemProperties convertPropertiesFromScriptSemantics(const EntityItemProper
|
||||||
EntityItemProperties entitySideProperties = scriptSideProperties;
|
EntityItemProperties entitySideProperties = scriptSideProperties;
|
||||||
bool success;
|
bool success;
|
||||||
|
|
||||||
// TODO -- handle velocity and angularVelocity
|
|
||||||
|
|
||||||
if (scriptSideProperties.localPositionChanged()) {
|
if (scriptSideProperties.localPositionChanged()) {
|
||||||
entitySideProperties.setPosition(scriptSideProperties.getLocalPosition());
|
entitySideProperties.setPosition(scriptSideProperties.getLocalPosition());
|
||||||
} else if (scriptSideProperties.positionChanged()) {
|
} else if (scriptSideProperties.positionChanged()) {
|
||||||
|
|
|
@ -52,7 +52,7 @@ namespace Setting {
|
||||||
if (_pendingChanges.contains(key) && _pendingChanges[key] != UNSET_VALUE) {
|
if (_pendingChanges.contains(key) && _pendingChanges[key] != UNSET_VALUE) {
|
||||||
loadedValue = _pendingChanges[key];
|
loadedValue = _pendingChanges[key];
|
||||||
} else {
|
} else {
|
||||||
loadedValue = value(key);
|
loadedValue = _qSettings.value(key);
|
||||||
}
|
}
|
||||||
if (loadedValue.isValid()) {
|
if (loadedValue.isValid()) {
|
||||||
handle->setVariant(loadedValue);
|
handle->setVariant(loadedValue);
|
||||||
|
@ -92,32 +92,115 @@ namespace Setting {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Manager::saveAll() {
|
void Manager::saveAll() {
|
||||||
bool forceSync = false;
|
|
||||||
withWriteLock([&] {
|
withWriteLock([&] {
|
||||||
|
bool forceSync = false;
|
||||||
for (auto key : _pendingChanges.keys()) {
|
for (auto key : _pendingChanges.keys()) {
|
||||||
auto newValue = _pendingChanges[key];
|
auto newValue = _pendingChanges[key];
|
||||||
auto savedValue = value(key, UNSET_VALUE);
|
auto savedValue = _qSettings.value(key, UNSET_VALUE);
|
||||||
if (newValue == savedValue) {
|
if (newValue == savedValue) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
forceSync = true;
|
||||||
if (newValue == UNSET_VALUE || !newValue.isValid()) {
|
if (newValue == UNSET_VALUE || !newValue.isValid()) {
|
||||||
forceSync = true;
|
_qSettings.remove(key);
|
||||||
remove(key);
|
|
||||||
} else {
|
} else {
|
||||||
forceSync = true;
|
_qSettings.setValue(key, newValue);
|
||||||
setValue(key, newValue);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_pendingChanges.clear();
|
_pendingChanges.clear();
|
||||||
});
|
|
||||||
|
|
||||||
if (forceSync) {
|
if (forceSync) {
|
||||||
sync();
|
_qSettings.sync();
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
|
||||||
// Restart timer
|
// Restart timer
|
||||||
if (_saveTimer) {
|
if (_saveTimer) {
|
||||||
_saveTimer->start();
|
_saveTimer->start();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QString Manager::fileName() const {
|
||||||
|
return resultWithReadLock<QString>([&] {
|
||||||
|
return _qSettings.fileName();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void Manager::remove(const QString &key) {
|
||||||
|
withWriteLock([&] {
|
||||||
|
_qSettings.remove(key);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
QStringList Manager::childGroups() const {
|
||||||
|
return resultWithReadLock<QStringList>([&] {
|
||||||
|
return _qSettings.childGroups();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
QStringList Manager::childKeys() const {
|
||||||
|
return resultWithReadLock<QStringList>([&] {
|
||||||
|
return _qSettings.childKeys();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
QStringList Manager::allKeys() const {
|
||||||
|
return resultWithReadLock<QStringList>([&] {
|
||||||
|
return _qSettings.allKeys();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
bool Manager::contains(const QString &key) const {
|
||||||
|
return resultWithReadLock<bool>([&] {
|
||||||
|
return _qSettings.contains(key);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
int Manager::beginReadArray(const QString &prefix) {
|
||||||
|
return resultWithReadLock<int>([&] {
|
||||||
|
return _qSettings.beginReadArray(prefix);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void Manager::beginGroup(const QString &prefix) {
|
||||||
|
withWriteLock([&] {
|
||||||
|
_qSettings.beginGroup(prefix);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void Manager::beginWriteArray(const QString &prefix, int size) {
|
||||||
|
withWriteLock([&] {
|
||||||
|
_qSettings.beginWriteArray(prefix, size);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void Manager::endArray() {
|
||||||
|
withWriteLock([&] {
|
||||||
|
_qSettings.endArray();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void Manager::endGroup() {
|
||||||
|
withWriteLock([&] {
|
||||||
|
_qSettings.endGroup();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void Manager::setArrayIndex(int i) {
|
||||||
|
withWriteLock([&] {
|
||||||
|
_qSettings.setArrayIndex(i);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void Manager::setValue(const QString &key, const QVariant &value) {
|
||||||
|
withWriteLock([&] {
|
||||||
|
_qSettings.setValue(key, value);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
QVariant Manager::value(const QString &key, const QVariant &defaultValue) const {
|
||||||
|
return resultWithReadLock<QVariant>([&] {
|
||||||
|
return _qSettings.value(key, defaultValue);
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,12 +23,28 @@
|
||||||
namespace Setting {
|
namespace Setting {
|
||||||
class Interface;
|
class Interface;
|
||||||
|
|
||||||
class Manager : public QSettings, public ReadWriteLockable, public Dependency {
|
class Manager : public QObject, public ReadWriteLockable, public Dependency {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void customDeleter() override;
|
void customDeleter() override;
|
||||||
|
|
||||||
|
// thread-safe proxies into QSettings
|
||||||
|
QString fileName() const;
|
||||||
|
void remove(const QString &key);
|
||||||
|
QStringList childGroups() const;
|
||||||
|
QStringList childKeys() const;
|
||||||
|
QStringList allKeys() const;
|
||||||
|
bool contains(const QString &key) const;
|
||||||
|
int beginReadArray(const QString &prefix);
|
||||||
|
void beginGroup(const QString &prefix);
|
||||||
|
void beginWriteArray(const QString &prefix, int size = -1);
|
||||||
|
void endArray();
|
||||||
|
void endGroup();
|
||||||
|
void setArrayIndex(int i);
|
||||||
|
void setValue(const QString &key, const QVariant &value);
|
||||||
|
QVariant value(const QString &key, const QVariant &defaultValue = QVariant()) const;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
~Manager();
|
~Manager();
|
||||||
void registerHandle(Interface* handle);
|
void registerHandle(Interface* handle);
|
||||||
|
@ -52,6 +68,9 @@ namespace Setting {
|
||||||
friend class Interface;
|
friend class Interface;
|
||||||
friend void cleanupSettingsSaveThread();
|
friend void cleanupSettingsSaveThread();
|
||||||
friend void setupSettingsSaveThread();
|
friend void setupSettingsSaveThread();
|
||||||
|
|
||||||
|
|
||||||
|
QSettings _qSettings;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -29,17 +29,6 @@ Script.include([
|
||||||
SelectionManager = (function() {
|
SelectionManager = (function() {
|
||||||
var that = {};
|
var that = {};
|
||||||
|
|
||||||
/**
|
|
||||||
* @description Removes known to be broken properties from a properties object
|
|
||||||
* @param properties
|
|
||||||
* @return properties
|
|
||||||
*/
|
|
||||||
var fixRemoveBrokenProperties = function (properties) {
|
|
||||||
// Reason: Entity property is always set to 0,0,0 which causes it to override angularVelocity (see MS17131)
|
|
||||||
delete properties.localAngularVelocity;
|
|
||||||
return properties;
|
|
||||||
}
|
|
||||||
|
|
||||||
// FUNCTION: SUBSCRIBE TO UPDATE MESSAGES
|
// FUNCTION: SUBSCRIBE TO UPDATE MESSAGES
|
||||||
function subscribeToUpdateMessages() {
|
function subscribeToUpdateMessages() {
|
||||||
Messages.subscribe("entityToolUpdates");
|
Messages.subscribe("entityToolUpdates");
|
||||||
|
@ -130,7 +119,7 @@ SelectionManager = (function() {
|
||||||
that.savedProperties = {};
|
that.savedProperties = {};
|
||||||
for (var i = 0; i < that.selections.length; i++) {
|
for (var i = 0; i < that.selections.length; i++) {
|
||||||
var entityID = that.selections[i];
|
var entityID = that.selections[i];
|
||||||
that.savedProperties[entityID] = fixRemoveBrokenProperties(Entities.getEntityProperties(entityID));
|
that.savedProperties[entityID] = Entities.getEntityProperties(entityID);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -258,7 +247,7 @@ SelectionManager = (function() {
|
||||||
var originalEntityID = entitiesToDuplicate[i];
|
var originalEntityID = entitiesToDuplicate[i];
|
||||||
var properties = that.savedProperties[originalEntityID];
|
var properties = that.savedProperties[originalEntityID];
|
||||||
if (properties === undefined) {
|
if (properties === undefined) {
|
||||||
properties = fixRemoveBrokenProperties(Entities.getEntityProperties(originalEntityID));
|
properties = Entities.getEntityProperties(originalEntityID);
|
||||||
}
|
}
|
||||||
if (!properties.locked && (!properties.clientOnly || properties.owningAvatarID === MyAvatar.sessionUUID)) {
|
if (!properties.locked && (!properties.clientOnly || properties.owningAvatarID === MyAvatar.sessionUUID)) {
|
||||||
if (nonDynamicEntityIsBeingGrabbedByAvatar(properties)) {
|
if (nonDynamicEntityIsBeingGrabbedByAvatar(properties)) {
|
||||||
|
|
Loading…
Reference in a new issue