mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-05 14:35:52 +02:00
Moved avatar URL to fully private settings
This commit is contained in:
parent
225578febe
commit
16530b2334
7 changed files with 25 additions and 5 deletions
|
@ -109,7 +109,7 @@ public class PermissionChecker extends Activity {
|
|||
JSONObject obj = new JSONObject();
|
||||
try {
|
||||
obj.put("firstRun",false);
|
||||
obj.put("Avatar/fullAvatarURL", avatarPaths[which]);
|
||||
obj.put(SETTINGS_FULL_PRIVATE_GROUP_NAME + "/Avatar/fullAvatarURL", avatarPaths[which]);
|
||||
File directory = new File(pathForJson);
|
||||
|
||||
if(!directory.exists()) directory.mkdirs();
|
||||
|
|
|
@ -258,10 +258,11 @@ void CrashRecoveryHandler::handleCrash(CrashRecoveryHandler::Action action) {
|
|||
// Display name and avatar
|
||||
settings.beginGroup(AVATAR_GROUP);
|
||||
displayName = settings.value(DISPLAY_NAME_KEY).toString();
|
||||
fullAvatarURL = settings.value(FULL_AVATAR_URL_KEY).toUrl();
|
||||
fullAvatarModelName = settings.value(FULL_AVATAR_MODEL_NAME_KEY).toString();
|
||||
settings.endGroup();
|
||||
|
||||
fullAvatarURL = settings.value(SETTINGS_FULL_PRIVATE_GROUP_NAME + "/" + AVATAR_GROUP + "/" + FULL_AVATAR_URL_KEY).toUrl();
|
||||
|
||||
// Tutorial complete
|
||||
tutorialComplete = settings.value(TUTORIAL_COMPLETE_FLAG_KEY).toBool();
|
||||
}
|
||||
|
@ -284,6 +285,8 @@ void CrashRecoveryHandler::handleCrash(CrashRecoveryHandler::Action action) {
|
|||
settings.setValue(FULL_AVATAR_MODEL_NAME_KEY, fullAvatarModelName);
|
||||
settings.endGroup();
|
||||
|
||||
settings.setValue(SETTINGS_FULL_PRIVATE_GROUP_NAME + "/" + AVATAR_GROUP + "/" + FULL_AVATAR_URL_KEY, fullAvatarURL);
|
||||
|
||||
// Tutorial complete
|
||||
settings.setValue(TUTORIAL_COMPLETE_FLAG_KEY, tutorialComplete);
|
||||
}
|
||||
|
|
|
@ -227,7 +227,7 @@ MyAvatar::MyAvatar(QThread* thread) :
|
|||
_yawSpeedSetting(QStringList() << AVATAR_SETTINGS_GROUP_NAME << "yawSpeed", _yawSpeed),
|
||||
_hmdYawSpeedSetting(QStringList() << AVATAR_SETTINGS_GROUP_NAME << "hmdYawSpeed", _hmdYawSpeed),
|
||||
_pitchSpeedSetting(QStringList() << AVATAR_SETTINGS_GROUP_NAME << "pitchSpeed", _pitchSpeed),
|
||||
_fullAvatarURLSetting(QStringList() << AVATAR_SETTINGS_GROUP_NAME << "fullAvatarURL",
|
||||
_fullAvatarURLSetting(QStringList() << SETTINGS_FULL_PRIVATE_GROUP_NAME << AVATAR_SETTINGS_GROUP_NAME << "fullAvatarURL",
|
||||
AvatarData::defaultFullAvatarModelUrl()),
|
||||
_fullAvatarModelNameSetting(QStringList() << AVATAR_SETTINGS_GROUP_NAME << "fullAvatarModelName", _fullAvatarModelName),
|
||||
_animGraphURLSetting(QStringList() << AVATAR_SETTINGS_GROUP_NAME << "animGraphURL", QUrl("")),
|
||||
|
|
|
@ -25,6 +25,9 @@ QVariant SettingsScriptingInterface::getValue(const QString& setting) {
|
|||
if (!value.isValid()) {
|
||||
value = "";
|
||||
}
|
||||
if (_restrictPrivateValues || setting.startsWith(SETTINGS_FULL_PRIVATE_GROUP_NAME + "/")) {
|
||||
value = "";
|
||||
}
|
||||
return value;
|
||||
}
|
||||
|
||||
|
@ -33,6 +36,9 @@ QVariant SettingsScriptingInterface::getValue(const QString& setting, const QVar
|
|||
if (!value.isValid()) {
|
||||
value = "";
|
||||
}
|
||||
if (_restrictPrivateValues || setting.startsWith(SETTINGS_FULL_PRIVATE_GROUP_NAME + "/")) {
|
||||
value = "";
|
||||
}
|
||||
return value;
|
||||
}
|
||||
|
||||
|
@ -40,7 +46,7 @@ void SettingsScriptingInterface::setValue(const QString& setting, const QVariant
|
|||
if (getValue(setting) == value) {
|
||||
return;
|
||||
}
|
||||
if (setting.startsWith("private/")) {
|
||||
if (setting.startsWith("private/") || setting.startsWith(SETTINGS_FULL_PRIVATE_GROUP_NAME + "/")) {
|
||||
if (_restrictPrivateValues) {
|
||||
qWarning() << "SettingsScriptingInterface::setValue -- restricted write: " << setting << value;
|
||||
return;
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
|
||||
Q_LOGGING_CATEGORY(settings_handle, "settings.handle")
|
||||
|
||||
const QString SETTINGS_FULL_PRIVATE_GROUP_NAME = "fullPrivate";
|
||||
|
||||
const QString Settings::firstRun { "firstRun" };
|
||||
|
||||
|
||||
|
|
|
@ -31,6 +31,15 @@
|
|||
|
||||
Q_DECLARE_LOGGING_CATEGORY(settings_handle)
|
||||
|
||||
/**
|
||||
* @brief Name of the fully private settings group
|
||||
*
|
||||
* Settings in this group will be protected from reading and writing from script engines.
|
||||
*
|
||||
*/
|
||||
|
||||
extern const QString SETTINGS_FULL_PRIVATE_GROUP_NAME;
|
||||
|
||||
/**
|
||||
* @brief QSettings analog
|
||||
*
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
"Avatar/dominantHand": "right",
|
||||
"Avatar/flyingHMD": false,
|
||||
"Avatar/fullAvatarModelName": "Default",
|
||||
"Avatar/fullAvatarURL": "",
|
||||
"fullPrivate/Avatar/fullAvatarURL": "",
|
||||
"Avatar/headPitch": 0,
|
||||
"Avatar/pitchSpeed": 75,
|
||||
"Avatar/scale": 1,
|
||||
|
|
Loading…
Reference in a new issue