mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-06 07:53:24 +02:00
- removed file protocol from the default QML whitelist - adjusted dpi of the wizard to more standard value
81 lines
2.7 KiB
JavaScript
81 lines
2.7 KiB
JavaScript
'use strict';
|
|
//
|
|
// wizardLoader.js
|
|
//
|
|
// Created by Kalila L. on Feb 19 2021.
|
|
// Copyright 2021 Vircadia contributors.
|
|
// Copyright 2022 Overte e.V.
|
|
//
|
|
// This script is used to load the onboarding wizard at the location of the entity it's on.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
(function() {
|
|
var CONFIG_WIZARD_URL = "qrc:///serverless/Scripts/Wizard.qml";
|
|
|
|
var loaderEntityID;
|
|
var configWizardEntityID;
|
|
|
|
function onWebAppEventReceived(sendingEntityID, event) {
|
|
if (sendingEntityID === configWizardEntityID) {
|
|
var eventJSON = JSON.parse(event);
|
|
|
|
if (eventJSON.command === "first-run-wizard-ready") {
|
|
var objectToSend = {
|
|
"command": "script-to-web-initialize",
|
|
"data": {
|
|
"performancePreset": Performance.getPerformancePreset(),
|
|
"refreshRateProfile": Performance.getRefreshRateProfile(),
|
|
"displayName": MyAvatar.displayName
|
|
}
|
|
};
|
|
|
|
Entities.emitScriptEvent(configWizardEntityID, JSON.stringify(objectToSend));
|
|
}
|
|
|
|
if (eventJSON.command === "complete-wizard") {
|
|
Performance.setPerformancePreset(eventJSON.data.performancePreset);
|
|
Performance.setRefreshRateProfile(eventJSON.data.refreshRateProfile);
|
|
MyAvatar.displayName = eventJSON.data.displayName;
|
|
|
|
Entities.deleteEntity(configWizardEntityID);
|
|
Entities.webEventReceived.disconnect(onWebAppEventReceived);
|
|
}
|
|
}
|
|
}
|
|
|
|
this.preload = function (entityID) {
|
|
loaderEntityID = entityID;
|
|
|
|
configWizardEntityID = Entities.addEntity({
|
|
"type": "Web",
|
|
"parentID": loaderEntityID,
|
|
"sourceUrl": CONFIG_WIZARD_URL,
|
|
"maxFPS": 60,
|
|
"dpi": 15,
|
|
"useBackground": true,
|
|
"grab": {
|
|
"grabbable": false
|
|
},
|
|
"localPosition": {
|
|
"x": 0,
|
|
"y": 1.121,
|
|
"z": 0.33
|
|
},
|
|
"localRotation": Quat.fromVec3Degrees({"x": -58, "y": 0, "z": 0}),
|
|
"dimensions": { x: 2.6, y: 1.3, z: 0 }
|
|
}, "local");
|
|
|
|
Entities.webEventReceived.connect(onWebAppEventReceived);
|
|
}
|
|
|
|
this.unload = function () {
|
|
if (configWizardEntityID) {
|
|
Entities.deleteEntity(configWizardEntityID);
|
|
Entities.webEventReceived.disconnect(onWebAppEventReceived);
|
|
}
|
|
}
|
|
|
|
})
|