mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-22 19:34:20 +02:00
Re-coded to be more stable.
This is a an almost complete re-coding of the notifications script. The previous version had too useless complexities and was computing each element position independently causing the notifications to be unstably displayed in HMD if the user moved. There was also too many array used to achieved this. It was a bit painful. This new version use an invisible entity parented to the avatar as a "container" where the notification elements are parented to it, making the positioning easier and more stable if the avatar moves. I used only one array of objects to contain the the notification stack. There is also a better management of some signal to avoid useless computing when it wasn't necessary. I think the code is also more clear. I got rid of the little x buttons to close the notification, it was on each element, you had to target a very small square surface with the mouse if you wanted to absolutely close a notification within the 10 second of their existence. Now you can close a notification simply by clicking on it (on all its surface) But as before, the close function works only on desktop mode. (Apparently it's relatively complex to get the id of the entity that you click on in HMD. Maybe one day.) It's also easier now to adjust the scale of the notifications in HMD if we want too, (only one value to change in the script) The parenting using a container entity has also made all the notification UI in HMD scaling correctly according the avatar scale (it was free by parenting all those together).
This commit is contained in:
parent
ecf54a60be
commit
3e7854a034
1 changed files with 300 additions and 548 deletions
|
@ -1,444 +1,255 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
/*jslint vars:true, plusplus:true, forin:true*/
|
|
||||||
/*global Script, Settings, Window, Controller, Overlays, SoundArray, MyAvatar, Tablet, Camera, HMD, Menu, Quat, Vec3*/
|
|
||||||
//
|
//
|
||||||
// notifications.js
|
// notifications.js
|
||||||
// Version 0.801
|
|
||||||
//
|
//
|
||||||
// Created by Adrian McCarlie October 8th, 2014
|
// Created by Adrian McCarlie on October 8th, 2014
|
||||||
// Copyright 2014 High Fidelity, Inc.
|
// Copyright 2014 High Fidelity, Inc.
|
||||||
// Copyright 2022 Overte e.V.
|
// Copyright 2022 Overte e.V.
|
||||||
//
|
//
|
||||||
// This script demonstrates on-screen overlay type notifications.
|
// Display notifications to the user for some specific events.
|
||||||
//
|
//
|
||||||
// Distributed under the Apache License, Version 2.0.
|
// Distributed under the Apache License, Version 2.0.
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
//
|
|
||||||
// ############################################################################
|
|
||||||
// This script generates notifications created via a number of ways, such as:
|
|
||||||
// keystroke:
|
|
||||||
//
|
|
||||||
// CTRL/s for snapshot.
|
|
||||||
//
|
|
||||||
// System generated notifications:
|
|
||||||
// Connection refused.
|
|
||||||
//
|
|
||||||
// To add a new System notification type:
|
|
||||||
//
|
|
||||||
// 1. Set the Event Connector at the bottom of the script.
|
|
||||||
// example:
|
|
||||||
// Audio.mutedChanged.connect(onMuteStateChanged);
|
|
||||||
//
|
|
||||||
// 2. Create a new function to produce a text string, do not include new line returns.
|
|
||||||
// example:
|
|
||||||
// function onMuteStateChanged() {
|
|
||||||
// var muteState,
|
|
||||||
// muteString;
|
|
||||||
//
|
|
||||||
// muteState = Audio.muted ? "muted" : "unmuted";
|
|
||||||
// muteString = "Microphone is now " + muteState;
|
|
||||||
// createNotification(muteString, NotificationType.MUTE_TOGGLE);
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// This new function must call wordWrap(text) if the length of message is longer than 42 chars or unknown.
|
|
||||||
// wordWrap() will format the text to fit the notifications overlay and return it
|
|
||||||
// after that we will send it to createNotification(text).
|
|
||||||
// If the message is 42 chars or less you should bypass wordWrap() and call createNotification() directly.
|
|
||||||
|
|
||||||
// To add a keypress driven notification:
|
(function () {
|
||||||
//
|
|
||||||
// 1. Add a key to the keyPressEvent(key).
|
|
||||||
// 2. Declare a text string.
|
|
||||||
// 3. Call createNotifications(text, NotificationType) parsing the text.
|
|
||||||
// example:
|
|
||||||
// if (key.text === "o") {
|
|
||||||
// if (ctrlIsPressed === true) {
|
|
||||||
// noteString = "Open script";
|
|
||||||
// createNotification(noteString, NotificationType.OPEN_SCRIPT);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
|
|
||||||
(function () { // BEGIN LOCAL_SCOPE
|
|
||||||
|
|
||||||
Script.include("./libraries/soundArray.js");
|
|
||||||
|
|
||||||
var width = 340.0; //width of notification overlay
|
|
||||||
var windowDimensions = Controller.getViewportDimensions(); // get the size of the interface window
|
|
||||||
var overlayLocationX = (windowDimensions.x - (width + 20.0)); // positions window 20px from the right of the interface window
|
|
||||||
var buttonLocationX = overlayLocationX + (width - 28.0);
|
|
||||||
var locationY = 20.0; // position down from top of interface window
|
|
||||||
var topMargin = 13.0;
|
|
||||||
var leftMargin = 10.0;
|
|
||||||
var textColor = { red: 228, green: 228, blue: 228}; // text color
|
|
||||||
var backColor = { red: 2, green: 2, blue: 2}; // background color was 38,38,38
|
|
||||||
var backgroundAlpha = 0;
|
|
||||||
var fontSize = 12.0;
|
|
||||||
var PERSIST_TIME_2D = 10.0; // Time in seconds before notification fades
|
|
||||||
var PERSIST_TIME_3D = 12.0;
|
|
||||||
var persistTime = PERSIST_TIME_2D;
|
|
||||||
var frame = 0;
|
|
||||||
var ctrlIsPressed = false;
|
|
||||||
var ready = true;
|
|
||||||
var NOTIFICATION_MENU_ITEM_POST = " Notifications";
|
|
||||||
var NOTIFICATIONS_MESSAGE_CHANNEL = "Hifi-Notifications";
|
var NOTIFICATIONS_MESSAGE_CHANNEL = "Hifi-Notifications";
|
||||||
var NOTIFICATION_ALPHA = 9.0; // On a scale of 10.
|
var SETTING_ACTIVATION_SNAPSHOT_NOTIFICATIONS = "snapshotNotifications";
|
||||||
|
var NOTIFICATION_LIFE_DURATION = 10000; //10 seconds (in millisecond) before expiration.
|
||||||
var NotificationType = {
|
var FADE_OUT_DURATION = 1000; //1 seconds (in millisecond) to fade out.
|
||||||
UNKNOWN: 0,
|
var NOTIFICATION_ALPHA = 0.9; // a value between: 0.0 (transparent) and 1.0 (fully opaque).
|
||||||
SNAPSHOT: 1,
|
var MAX_LINE_LENGTH = 42;
|
||||||
CONNECTION_REFUSED: 2,
|
|
||||||
EDIT_ERROR: 3,
|
|
||||||
TABLET: 4,
|
|
||||||
CONNECTION: 5,
|
|
||||||
WALLET: 6,
|
|
||||||
properties: [
|
|
||||||
{ text: "Snapshot" },
|
|
||||||
{ text: "Connection Refused" },
|
|
||||||
{ text: "Edit error" },
|
|
||||||
{ text: "Tablet" },
|
|
||||||
{ text: "Connection" },
|
|
||||||
{ text: "Wallet" }
|
|
||||||
],
|
|
||||||
getTypeFromMenuItem: function (menuItemName) {
|
|
||||||
var type;
|
|
||||||
if (menuItemName.substr(menuItemName.length - NOTIFICATION_MENU_ITEM_POST.length) !== NOTIFICATION_MENU_ITEM_POST) {
|
|
||||||
return NotificationType.UNKNOWN;
|
|
||||||
}
|
|
||||||
var preMenuItemName = menuItemName.substr(0, menuItemName.length - NOTIFICATION_MENU_ITEM_POST.length);
|
|
||||||
for (type in this.properties) {
|
|
||||||
if (this.properties[type].text === preMenuItemName) {
|
|
||||||
return parseInt(type, 10) + 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return NotificationType.UNKNOWN;
|
|
||||||
},
|
|
||||||
getMenuString: function (type) {
|
|
||||||
return this.properties[type - 1].text + NOTIFICATION_MENU_ITEM_POST;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
var randomSounds = new SoundArray({ localOnly: true }, true);
|
|
||||||
var numberOfSounds = 2;
|
|
||||||
var soundIndex;
|
|
||||||
for (soundIndex = 1; soundIndex <= numberOfSounds; soundIndex++) {
|
|
||||||
randomSounds.addSound(Script.resolvePath("assets/sounds/notification-general" + soundIndex + ".raw"));
|
|
||||||
}
|
|
||||||
|
|
||||||
var notifications = [];
|
var notifications = [];
|
||||||
var buttons = [];
|
var newEventDetected = false;
|
||||||
var times = [];
|
var isOnHMD = HMD.active;
|
||||||
var heights = [];
|
|
||||||
var myAlpha = [];
|
|
||||||
var arrays = [];
|
|
||||||
|
|
||||||
var isOnHMD = false,
|
var textColor = { "red": 228, "green": 228, "blue": 228};
|
||||||
NOTIFICATIONS_3D_DIRECTION = -45.0, // Degrees from avatar orientation.
|
var backColor = { "red": 2, "green": 2, "blue": 2};
|
||||||
NOTIFICATIONS_3D_DISTANCE = 1.2, // Horizontal distance from avatar position.
|
|
||||||
NOTIFICATIONS_3D_ELEVATION = 0.5, // Height of top middle of top notification relative to avatar eyes.
|
|
||||||
NOTIFICATIONS_3D_YAW = 10.0, // Degrees relative to notifications direction.
|
|
||||||
NOTIFICATIONS_3D_PITCH = 0.0, // Degrees from vertical.
|
|
||||||
NOTIFICATION_3D_SCALE = 0.0025, // Multiplier that converts 2D overlay dimensions to 3D overlay dimensions.
|
|
||||||
NOTIFICATION_3D_BUTTON_WIDTH = 40 * NOTIFICATION_3D_SCALE, // Need a little more room for button in 3D.
|
|
||||||
overlay3DDetails = [];
|
|
||||||
|
|
||||||
// push data from above to the 2 dimensional array
|
//DESKTOP OVERLAY PROPERTIES
|
||||||
function createArrays(notice, button, createTime, height, myAlpha) {
|
var overlayWidth = 340.0; //width in pixel of notification overlay in desktop
|
||||||
arrays.push([notice, button, createTime, height, myAlpha]);
|
var windowDimensions = Controller.getViewportDimensions(); // get the size of the interface window
|
||||||
}
|
var overlayLocationX = (windowDimensions.x - (overlayWidth + 20.0)); // positions window 20px from the right of the interface window
|
||||||
|
var overlayLocationY = 20.0; // position down from top of interface window
|
||||||
// This handles the final dismissal of a notification after fading
|
var overlayTopMargin = 13.0;
|
||||||
function dismiss(firstNoteOut, firstButOut, firstOut) {
|
var overlayLeftMargin = 10.0;
|
||||||
Overlays.deleteOverlay(firstNoteOut);
|
var overlayFontSize = 12.0;
|
||||||
Overlays.deleteOverlay(firstButOut);
|
|
||||||
notifications.splice(firstOut, 1);
|
|
||||||
buttons.splice(firstOut, 1);
|
|
||||||
times.splice(firstOut, 1);
|
|
||||||
heights.splice(firstOut, 1);
|
|
||||||
myAlpha.splice(firstOut, 1);
|
|
||||||
overlay3DDetails.splice(firstOut, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
function fadeIn(noticeIn, buttonIn) {
|
|
||||||
var q = 0,
|
|
||||||
qFade,
|
|
||||||
pauseTimer = null;
|
|
||||||
|
|
||||||
pauseTimer = Script.setInterval(function () {
|
|
||||||
q += 1;
|
|
||||||
qFade = q / 10.0;
|
|
||||||
Overlays.editOverlay(noticeIn, { "alpha": qFade, "backgroundAlpha": qFade, "textAlpha": qFade });
|
|
||||||
Overlays.editOverlay(buttonIn, { "alpha": qFade });
|
|
||||||
if (q >= NOTIFICATION_ALPHA) {
|
|
||||||
Script.clearInterval(pauseTimer);
|
|
||||||
}
|
|
||||||
}, 10);
|
|
||||||
}
|
|
||||||
|
|
||||||
// this fades the notification ready for dismissal, and removes it from the arrays
|
|
||||||
function fadeOut(noticeOut, buttonOut, arraysOut) {
|
|
||||||
var r = NOTIFICATION_ALPHA,
|
|
||||||
rFade,
|
|
||||||
pauseTimer = null;
|
|
||||||
|
|
||||||
pauseTimer = Script.setInterval(function () {
|
|
||||||
r -= 1;
|
|
||||||
rFade = Math.max(0.0, r / 10.0);
|
|
||||||
Overlays.editOverlay(noticeOut, { "alpha": rFade, "backgroundAlpha": rFade, "textAlpha": rFade });
|
|
||||||
Overlays.editOverlay(buttonOut, { "alpha": rFade });
|
|
||||||
if (r <= 0) {
|
|
||||||
dismiss(noticeOut, buttonOut, arraysOut);
|
|
||||||
arrays.splice(arraysOut, 1);
|
|
||||||
ready = true;
|
|
||||||
Script.clearInterval(pauseTimer);
|
|
||||||
}
|
|
||||||
}, 20);
|
|
||||||
}
|
|
||||||
|
|
||||||
function calculate3DOverlayPositions(noticeWidth, noticeHeight, y) {
|
|
||||||
// Calculates overlay positions and orientations in avatar coordinates.
|
|
||||||
var noticeY,
|
|
||||||
originOffset,
|
|
||||||
notificationOrientation,
|
|
||||||
notificationPosition,
|
|
||||||
buttonPosition;
|
|
||||||
var sensorScaleFactor = isOnHMD ? MyAvatar.sensorToWorldScale : 1.0;
|
|
||||||
// Notification plane positions
|
|
||||||
noticeY = -sensorScaleFactor * (y * NOTIFICATION_3D_SCALE + 0.5 * noticeHeight);
|
|
||||||
notificationPosition = { x: 0, y: noticeY, z: 0 };
|
|
||||||
buttonPosition = { x: sensorScaleFactor * (noticeWidth - NOTIFICATION_3D_BUTTON_WIDTH), y: noticeY, z: 0.001 };
|
|
||||||
|
|
||||||
// Rotate plane
|
|
||||||
notificationOrientation = Quat.fromPitchYawRollDegrees(NOTIFICATIONS_3D_PITCH, NOTIFICATIONS_3D_DIRECTION + NOTIFICATIONS_3D_YAW, 0);
|
|
||||||
notificationPosition = Vec3.multiplyQbyV(notificationOrientation, notificationPosition);
|
|
||||||
buttonPosition = Vec3.multiplyQbyV(notificationOrientation, buttonPosition);
|
|
||||||
|
|
||||||
// Translate plane
|
|
||||||
originOffset = Vec3.multiplyQbyV(Quat.fromPitchYawRollDegrees(0, NOTIFICATIONS_3D_DIRECTION, 0), { x: 0, y: 0, z: -NOTIFICATIONS_3D_DISTANCE * sensorScaleFactor});
|
|
||||||
originOffset.y += NOTIFICATIONS_3D_ELEVATION * sensorScaleFactor;
|
|
||||||
notificationPosition = Vec3.sum(originOffset, notificationPosition);
|
|
||||||
buttonPosition = Vec3.sum(originOffset, buttonPosition);
|
|
||||||
|
|
||||||
return {
|
|
||||||
notificationOrientation: notificationOrientation,
|
|
||||||
notificationPosition: notificationPosition,
|
|
||||||
buttonPosition: buttonPosition
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
// Pushes data to each array and sets up data for 2nd dimension array
|
|
||||||
// to handle auxiliary data not carried by the overlay class
|
|
||||||
// specifically notification "heights", "times" of creation, and .
|
|
||||||
function notify(notice, button, height, imageProperties, image) {
|
|
||||||
var notificationText,
|
|
||||||
noticeWidth,
|
|
||||||
noticeHeight,
|
|
||||||
positions,
|
|
||||||
last;
|
|
||||||
var sensorScaleFactor = isOnHMD ? MyAvatar.sensorToWorldScale : 1.0;
|
|
||||||
if (isOnHMD) {
|
|
||||||
// Calculate 3D values from 2D overlay properties.
|
|
||||||
|
|
||||||
noticeWidth = notice.width * NOTIFICATION_3D_SCALE + NOTIFICATION_3D_BUTTON_WIDTH;
|
|
||||||
noticeHeight = notice.height * NOTIFICATION_3D_SCALE;
|
|
||||||
|
|
||||||
notice.dimensions = { "x": noticeWidth * sensorScaleFactor, "y": noticeHeight * sensorScaleFactor, "z": 0.01 };
|
|
||||||
|
|
||||||
positions = calculate3DOverlayPositions(noticeWidth, noticeHeight, notice.y);
|
|
||||||
notice.parentID = MyAvatar.sessionUUID;
|
|
||||||
notice.parentJointIndex = -2;
|
|
||||||
notice.isVisibleInSecondaryCamera = false;
|
|
||||||
|
|
||||||
if (!image) {
|
|
||||||
notice.topMargin = 0.75 * notice.topMargin * NOTIFICATION_3D_SCALE * sensorScaleFactor;
|
|
||||||
notice.leftMargin = 2 * notice.leftMargin * NOTIFICATION_3D_SCALE * sensorScaleFactor;
|
|
||||||
notice.bottomMargin = 0;
|
|
||||||
notice.rightMargin = 0;
|
|
||||||
notice.lineHeight = 10.0 * (fontSize * sensorScaleFactor / 12.0) * NOTIFICATION_3D_SCALE;
|
|
||||||
notice.billboardMode = "none";
|
|
||||||
notice.type = "Text";
|
|
||||||
notice.unlit = true;
|
|
||||||
|
|
||||||
notificationText = Entities.addEntity(notice, "local");
|
|
||||||
notifications.push(notificationText);
|
|
||||||
} else {
|
|
||||||
notice.type = "Image";
|
|
||||||
notice.emissive = true;
|
|
||||||
|
|
||||||
notifications.push(Entities.addEntity(notice, "local"));
|
|
||||||
}
|
|
||||||
|
|
||||||
button.url = button.imageURL;
|
|
||||||
button.scale = button.width * NOTIFICATION_3D_SCALE;
|
|
||||||
button.isFacingAvatar = false;
|
|
||||||
button.parentID = MyAvatar.sessionUUID;
|
|
||||||
button.parentJointIndex = -2;
|
|
||||||
button.visible = false;
|
|
||||||
button.type = "Image";
|
|
||||||
button.emissive = true;
|
|
||||||
button.isVisibleInSecondaryCamera = false;
|
|
||||||
|
|
||||||
buttons.push(Entities.addEntity(button, "local"));
|
|
||||||
overlay3DDetails.push({
|
|
||||||
"notificationOrientation": positions.notificationOrientation,
|
|
||||||
"notificationPosition": positions.notificationPosition,
|
|
||||||
"buttonPosition": positions.buttonPosition,
|
|
||||||
"width": noticeWidth * sensorScaleFactor,
|
|
||||||
"height": noticeHeight * sensorScaleFactor
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
var defaultEyePosition,
|
|
||||||
avatarOrientation,
|
|
||||||
notificationPosition,
|
|
||||||
buttonPosition,
|
|
||||||
notificationIndex;
|
|
||||||
|
|
||||||
if (isOnHMD && notifications.length > 0) {
|
|
||||||
// Update 3D overlays to maintain positions relative to avatar
|
|
||||||
defaultEyePosition = MyAvatar.getDefaultEyePosition();
|
|
||||||
avatarOrientation = MyAvatar.orientation;
|
|
||||||
|
|
||||||
for (notificationIndex = 0; notificationIndex < notifications.length; notificationIndex += 1) {
|
|
||||||
notificationPosition = Vec3.sum(defaultEyePosition, Vec3.multiplyQbyV(avatarOrientation, overlay3DDetails[notificationIndex].notificationPosition));
|
|
||||||
buttonPosition = Vec3.sum(defaultEyePosition, Vec3.multiplyQbyV(avatarOrientation, overlay3DDetails[notificationIndex].buttonPosition));
|
|
||||||
|
|
||||||
Overlays.editOverlay(notifications[notificationIndex], { "position": notificationPosition, "localRotation": overlay3DDetails[notificationIndex].notificationOrientation, "velocity": Vec3.ZERO });
|
|
||||||
|
|
||||||
Overlays.editOverlay(buttons[notificationIndex], { "position": buttonPosition, "localRotation": overlay3DDetails[notificationIndex].notificationOrientation });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
} else {
|
|
||||||
if (!image) {
|
|
||||||
notificationText = Overlays.addOverlay("text", notice);
|
|
||||||
notifications.push(notificationText);
|
|
||||||
} else {
|
|
||||||
notifications.push(Overlays.addOverlay("image", notice));
|
|
||||||
}
|
|
||||||
buttons.push(Overlays.addOverlay("image", button));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isOnHMD) {
|
|
||||||
height = height + 6.0;
|
|
||||||
} else {
|
|
||||||
height = height + 1.0;
|
|
||||||
}
|
|
||||||
heights.push(height);
|
|
||||||
times.push(new Date().getTime() / 1000);
|
|
||||||
last = notifications.length - 1;
|
|
||||||
myAlpha.push(notifications[last].alpha);
|
|
||||||
createArrays(notifications[last], buttons[last], times[last], heights[last], myAlpha[last]);
|
|
||||||
fadeIn(notifications[last], buttons[last]);
|
|
||||||
|
|
||||||
if (imageProperties && !image) {
|
|
||||||
var imageHeight = notice.width / imageProperties.aspectRatio;
|
|
||||||
if (isOnHMD) {
|
|
||||||
imageHeight = (notice.width + (NOTIFICATION_3D_BUTTON_WIDTH / NOTIFICATION_3D_SCALE)) / imageProperties.aspectRatio;
|
|
||||||
}
|
|
||||||
notice = {
|
|
||||||
"x": notice.x,
|
|
||||||
"y": notice.y + height,
|
|
||||||
"width": notice.width,
|
|
||||||
"height": imageHeight,
|
|
||||||
"subImage": { "x": 0, "y": 0 },
|
|
||||||
"color": { "red": 255, "green": 255, "blue": 255},
|
|
||||||
"visible": true,
|
|
||||||
"imageURL": imageProperties.path,
|
|
||||||
"alpha": backgroundAlpha
|
|
||||||
};
|
|
||||||
notify(notice, button, imageHeight, imageProperties, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
return notificationText;
|
|
||||||
}
|
|
||||||
|
|
||||||
var CLOSE_NOTIFICATION_ICON = Script.resolvePath("assets/images/close-small-light.svg");
|
|
||||||
var TEXT_OVERLAY_FONT_SIZE_IN_PIXELS = 18.0; // taken from TextOverlay::textSize
|
var TEXT_OVERLAY_FONT_SIZE_IN_PIXELS = 18.0; // taken from TextOverlay::textSize
|
||||||
|
var DESKTOP_INTER_SPACE_NOTIFICATION = 5; //5 px
|
||||||
|
|
||||||
// This function creates and sizes the overlays
|
//HMD NOTIFICATION PANEL PROPERTIES
|
||||||
function createNotification(text, notificationType, imageProperties) {
|
var HMD_UI_SCALE_FACTOR = 1.0; //This define the size of all the notification system in HMD.
|
||||||
var count = (text.match(/\n/g) || []).length,
|
var hmdPanelLocalPosition = {"x": 1.2, "y": 2, "z": -1.0};
|
||||||
breakPoint = 43.0, // length when new line is added
|
var hmdPanelLocalRotation = Quat.fromVec3Degrees({"x": 0, "y": -15, "z": 0});
|
||||||
extraLine = 0,
|
var mainHMDnotificationContainerID = Uuid.NULL;
|
||||||
breaks = 0,
|
|
||||||
height = 40.0,
|
|
||||||
stack = 0,
|
|
||||||
level,
|
|
||||||
noticeProperties,
|
|
||||||
bLevel,
|
|
||||||
buttonProperties,
|
|
||||||
i;
|
|
||||||
|
|
||||||
var sensorScaleFactor = isOnHMD ? MyAvatar.sensorToWorldScale : 1.0;
|
//HMD LOCAL ENTITY PROPERTIES
|
||||||
if (text.length >= breakPoint) {
|
var entityWidth = 0.8; //in meter
|
||||||
|
var HMD_LINE_HEIGHT = 0.03;
|
||||||
|
var entityTopMargin = 0.02;
|
||||||
|
var entityLeftMargin = 0.02;
|
||||||
|
var HMD_INTER_SPACE_NOTIFICATION = 0.05;
|
||||||
|
|
||||||
|
//ACTIONS
|
||||||
|
// handles clicks on notifications overlays to delete notifications. (DESKTOP only)
|
||||||
|
function mousePressEvent(event) {
|
||||||
|
if (!isOnHMD) {
|
||||||
|
var clickedOverlay = Overlays.getOverlayAtPoint({ x: event.x, y: event.y });
|
||||||
|
for (i = 0; i < notifications.length; i += 1) {
|
||||||
|
if (clickedOverlay === notifications[i].overlayID || clickedOverlay === notifications[i].imageOverlayID) {
|
||||||
|
deleteSpecificNotification(i);
|
||||||
|
notifications.splice(i, 1);
|
||||||
|
newEventDetected = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//DISPLAY
|
||||||
|
function renderNotifications(remainingTime) {
|
||||||
|
var alpha = NOTIFICATION_ALPHA;
|
||||||
|
if (remainingTime < FADE_OUT_DURATION) {
|
||||||
|
alpha = NOTIFICATION_ALPHA * (remainingTime/FADE_OUT_DURATION);
|
||||||
|
}
|
||||||
|
var properties, count, extraline, breaks, height;
|
||||||
|
var breakPoint = MAX_LINE_LENGTH + 1;
|
||||||
|
var level = overlayLocationY;
|
||||||
|
var entityLevel = 0;
|
||||||
|
if (notifications.length > 0) {
|
||||||
|
for (var i = 0; i < notifications.length; i++) {
|
||||||
|
count = (notifications[i].dataText.match(/\n/g) || []).length,
|
||||||
|
extraLine = 0;
|
||||||
|
breaks = 0;
|
||||||
|
if (notifications[i].dataText.length >= breakPoint) {
|
||||||
breaks = count;
|
breaks = count;
|
||||||
}
|
}
|
||||||
extraLine = breaks * TEXT_OVERLAY_FONT_SIZE_IN_PIXELS;
|
if (isOnHMD) {
|
||||||
for (i = 0; i < heights.length; i += 1) {
|
//use HMD local entities
|
||||||
stack = stack + heights[i];
|
var sensorScaleFactor = MyAvatar.sensorToWorldScale * HMD_UI_SCALE_FACTOR;
|
||||||
|
var lineHeight = HMD_LINE_HEIGHT;
|
||||||
|
height = lineHeight + (2 * entityTopMargin);
|
||||||
|
extraLine = breaks * lineHeight;
|
||||||
|
height = (height + extraLine) * HMD_UI_SCALE_FACTOR;
|
||||||
|
entityLevel = entityLevel - (height/2);
|
||||||
|
properties = {
|
||||||
|
"type": "Text",
|
||||||
|
"parentID": mainHMDnotificationContainerID,
|
||||||
|
"localPosition": {"x": 0, "y": entityLevel, "z": 0},
|
||||||
|
"dimensions": {"x": (entityWidth * HMD_UI_SCALE_FACTOR), "y": height, "z": 0.01},
|
||||||
|
"isVisibleInSecondaryCamera": false,
|
||||||
|
"lineHeight": lineHeight * sensorScaleFactor,
|
||||||
|
"textColor": textColor,
|
||||||
|
"textAlpha": alpha,
|
||||||
|
"backgroundColor": backColor,
|
||||||
|
"backgroundAlpha": alpha,
|
||||||
|
"leftMargin": entityLeftMargin * sensorScaleFactor,
|
||||||
|
"topMargin": entityTopMargin * sensorScaleFactor,
|
||||||
|
"unlit": true,
|
||||||
|
"renderLayer": "hud"
|
||||||
|
};
|
||||||
|
if (notifications[i].entityID === Uuid.NULL){
|
||||||
|
properties.text = notifications[i].dataText;
|
||||||
|
notifications[i].entityID = Entities.addEntity(properties, "local");
|
||||||
|
} else {
|
||||||
|
Entities.editEntity(notifications[i].entityID, properties);
|
||||||
}
|
}
|
||||||
|
if (notifications[i].dataImage !== null) {
|
||||||
level = (stack + 20.0);
|
entityLevel = entityLevel - (height/2);
|
||||||
|
height = (entityWidth / notifications[i].dataImage.aspectRatio) * HMD_UI_SCALE_FACTOR;
|
||||||
|
entityLevel = entityLevel - (height/2);
|
||||||
|
properties = {
|
||||||
|
"type": "Image",
|
||||||
|
"parentID": mainHMDnotificationContainerID,
|
||||||
|
"localPosition": {"x": 0, "y": entityLevel, "z": 0},
|
||||||
|
"dimensions": {"x": (entityWidth * HMD_UI_SCALE_FACTOR), "y": height, "z": 0.01},
|
||||||
|
"isVisibleInSecondaryCamera": false,
|
||||||
|
"emissive": true,
|
||||||
|
"visible": true,
|
||||||
|
"alpha": alpha,
|
||||||
|
"renderLayer": "hud"
|
||||||
|
};
|
||||||
|
if (notifications[i].imageEntityID === Uuid.NULL){
|
||||||
|
properties.imageURL = notifications[i].dataImage.path;
|
||||||
|
notifications[i].imageEntityID = Entities.addEntity(properties, "local");
|
||||||
|
} else {
|
||||||
|
Entities.editEntity(notifications[i].imageEntityID, properties);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
entityLevel = entityLevel - (height/2) - (HMD_INTER_SPACE_NOTIFICATION * HMD_UI_SCALE_FACTOR);
|
||||||
|
} else {
|
||||||
|
//use Desktop overlays
|
||||||
|
height = 40.0;
|
||||||
|
extraLine = breaks * TEXT_OVERLAY_FONT_SIZE_IN_PIXELS;
|
||||||
height = height + extraLine;
|
height = height + extraLine;
|
||||||
|
properties = {
|
||||||
noticeProperties = {
|
|
||||||
"x": overlayLocationX,
|
"x": overlayLocationX,
|
||||||
"y": level,
|
"y": level,
|
||||||
"width": width,
|
"width": overlayWidth,
|
||||||
"height": height,
|
"height": height,
|
||||||
"color": textColor,
|
"color": textColor,
|
||||||
"backgroundColor": backColor,
|
"backgroundColor": backColor,
|
||||||
"alpha": backgroundAlpha,
|
"alpha": alpha,
|
||||||
"backgroundAlpha": backgroundAlpha,
|
"topMargin": overlayTopMargin,
|
||||||
"textAlpha": backgroundAlpha,
|
"leftMargin": overlayLeftMargin,
|
||||||
"topMargin": topMargin,
|
"font": {"size": overlayFontSize}
|
||||||
"leftMargin": leftMargin,
|
|
||||||
"font": {"size": fontSize * sensorScaleFactor},
|
|
||||||
"text": text
|
|
||||||
};
|
};
|
||||||
|
if (notifications[i].overlayID === Uuid.NULL){
|
||||||
bLevel = level + 12.0;
|
properties.text = notifications[i].dataText;
|
||||||
buttonProperties = {
|
notifications[i].overlayID = Overlays.addOverlay("text", properties);
|
||||||
"x": buttonLocationX,
|
} else {
|
||||||
"y": bLevel,
|
Overlays.editOverlay(notifications[i].overlayID, properties);
|
||||||
"width": 10.0,
|
}
|
||||||
"height": 10.0,
|
if (notifications[i].dataImage !== null) {
|
||||||
"subImage": { "x": 0, "y": 0, "width": 10, "height": 10 },
|
level = level + height;
|
||||||
"imageURL": CLOSE_NOTIFICATION_ICON,
|
height = overlayWidth / notifications[i].dataImage.aspectRatio;
|
||||||
"color": { "red": 255, "green": 255, "blue": 255},
|
properties = {
|
||||||
|
"x": overlayLocationX,
|
||||||
|
"y": level,
|
||||||
|
"width": overlayWidth,
|
||||||
|
"height": height,
|
||||||
|
"subImage": { "x": 0, "y": 0 },
|
||||||
"visible": true,
|
"visible": true,
|
||||||
"alpha": backgroundAlpha
|
"alpha": alpha
|
||||||
};
|
};
|
||||||
|
if (notifications[i].imageOverlayID === Uuid.NULL){
|
||||||
return notify(noticeProperties, buttonProperties, height, imageProperties);
|
properties.imageURL = notifications[i].dataImage.path;
|
||||||
|
notifications[i].imageOverlayID = Overlays.addOverlay("image", properties);
|
||||||
|
} else {
|
||||||
|
Overlays.editOverlay(notifications[i].imageOverlayID, properties);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
level = level + height + DESKTOP_INTER_SPACE_NOTIFICATION;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function deleteNotification(index) {
|
function deleteAllExistingNotificationsDisplayed() {
|
||||||
var notificationTextID = notifications[index];
|
if (notifications.length > 0) {
|
||||||
Overlays.deleteOverlay(notificationTextID);
|
for (var i = 0; i < notifications.length; i++) {
|
||||||
Overlays.deleteOverlay(buttons[index]);
|
deleteSpecificNotification(i);
|
||||||
notifications.splice(index, 1);
|
}
|
||||||
buttons.splice(index, 1);
|
}
|
||||||
times.splice(index, 1);
|
|
||||||
heights.splice(index, 1);
|
|
||||||
myAlpha.splice(index, 1);
|
|
||||||
overlay3DDetails.splice(index, 1);
|
|
||||||
arrays.splice(index, 1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function deleteSpecificNotification(indexNotification) {
|
||||||
|
if (notifications[indexNotification].entityID !== Uuid.NULL){
|
||||||
|
Entities.deleteEntity(notifications[indexNotification].entityID);
|
||||||
|
notifications[indexNotification].entityID = Uuid.NULL;
|
||||||
|
}
|
||||||
|
if (notifications[indexNotification].overlayID !== Uuid.NULL){
|
||||||
|
Overlays.deleteOverlay(notifications[indexNotification].overlayID);
|
||||||
|
notifications[indexNotification].overlayID = Uuid.NULL;
|
||||||
|
}
|
||||||
|
if (notifications[indexNotification].imageEntityID !== Uuid.NULL){
|
||||||
|
Entities.deleteEntity(notifications[indexNotification].imageEntityID);
|
||||||
|
notifications[indexNotification].imageEntityID = Uuid.NULL;
|
||||||
|
}
|
||||||
|
if (notifications[indexNotification].imageOverlayID !== Uuid.NULL){
|
||||||
|
Overlays.deleteOverlay(notifications[indexNotification].imageOverlayID);
|
||||||
|
notifications[indexNotification].imageOverlayID = Uuid.NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function createMainHMDnotificationContainer() {
|
||||||
|
if (mainHMDnotificationContainerID === Uuid.NULL) {
|
||||||
|
var properties = {
|
||||||
|
"type": "Shape",
|
||||||
|
"shape": "Cube",
|
||||||
|
"visible": false,
|
||||||
|
"dimensions": {"x": 0.1, "y": 0.1, "z":0.1},
|
||||||
|
"parentID": MyAvatar.sessionUUID,
|
||||||
|
"parentJointIndex": -2,
|
||||||
|
"localPosition": hmdPanelLocalPosition,
|
||||||
|
"localRotation": hmdPanelLocalRotation
|
||||||
|
};
|
||||||
|
mainHMDnotificationContainerID = Entities.addEntity(properties, "local");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function deleteMainHMDnotificationContainer() {
|
||||||
|
if (mainHMDnotificationContainerID !== Uuid.NULL) {
|
||||||
|
Entities.deleteEntity(mainHMDnotificationContainerID);
|
||||||
|
mainHMDnotificationContainerID = Uuid.NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//UTILITY FUNCTIONS
|
||||||
|
|
||||||
|
// Trims extra whitespace and breaks into lines of length no more
|
||||||
|
// than MAX_LINE_LENGTH, breaking at spaces. Trims extra whitespace.
|
||||||
|
|
||||||
// Trims extra whitespace and breaks into lines of length no more than MAX_LENGTH, breaking at spaces. Trims extra whitespace.
|
|
||||||
var MAX_LENGTH = 42;
|
|
||||||
function wordWrap(string) {
|
function wordWrap(string) {
|
||||||
var finishedLines = [], currentLine = '';
|
var finishedLines = [], currentLine = '';
|
||||||
string.split(/\s/).forEach(function (word) {
|
string.split(/\s/).forEach(function (word) {
|
||||||
var tail = currentLine ? ' ' + word : word;
|
var tail = currentLine ? ' ' + word : word;
|
||||||
if ((currentLine.length + tail.length) <= MAX_LENGTH) {
|
if ((currentLine.length + tail.length) <= MAX_LINE_LENGTH) {
|
||||||
currentLine += tail;
|
currentLine += tail;
|
||||||
} else {
|
} else {
|
||||||
finishedLines.push(currentLine);
|
finishedLines.push(currentLine);
|
||||||
currentLine = word;
|
currentLine = word;
|
||||||
|
if (currentLine.length > MAX_LINE_LENGTH) {
|
||||||
|
finishedLines.push(currentLine.substring(0,MAX_LINE_LENGTH));
|
||||||
|
currentLine = currentLine.substring(MAX_LINE_LENGTH, currentLine.length);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if (currentLine) {
|
if (currentLine) {
|
||||||
|
@ -447,200 +258,143 @@
|
||||||
return finishedLines.join('\n');
|
return finishedLines.join('\n');
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateNotificationsTexts() {
|
//NOTIFICATION STACK MANAGEMENT
|
||||||
var sensorScaleFactor = isOnHMD ? MyAvatar.sensorToWorldScale : 1.0;
|
|
||||||
for (var i = 0; i < notifications.length; i++) {
|
function addNotification (dataText, dataImage) {
|
||||||
var overlayType = Overlays.getOverlayType(notifications[i]);
|
var d = new Date();
|
||||||
if (overlayType === "text3d") {
|
var notification = {
|
||||||
var props = {
|
"dataText": dataText,
|
||||||
"lineHeight": 10.0 * (fontSize * sensorScaleFactor / 12.0) * NOTIFICATION_3D_SCALE
|
"dataImage": dataImage,
|
||||||
|
"timestamp": d.getTime(),
|
||||||
|
"entityID": Uuid.NULL,
|
||||||
|
"imageEntityID": Uuid.NULL,
|
||||||
|
"overlayID": Uuid.NULL,
|
||||||
|
"imageOverlayID": Uuid.NULL
|
||||||
};
|
};
|
||||||
Overlays.editOverlay(notifications[i], props);
|
notifications.push(notification);
|
||||||
}
|
newEventDetected = true;
|
||||||
}
|
|
||||||
|
if (notifications.length === 1) {
|
||||||
|
createMainHMDnotificationContainer();
|
||||||
|
Script.update.connect(update);
|
||||||
|
Controller.mousePressEvent.connect(mousePressEvent);
|
||||||
}
|
}
|
||||||
|
|
||||||
function update() {
|
|
||||||
updateNotificationsTexts();
|
|
||||||
var noticeOut,
|
|
||||||
buttonOut,
|
|
||||||
arraysOut,
|
|
||||||
positions,
|
|
||||||
i,
|
|
||||||
j,
|
|
||||||
k;
|
|
||||||
|
|
||||||
if (isOnHMD !== HMD.active) {
|
|
||||||
while (arrays.length > 0) {
|
|
||||||
deleteNotification(0);
|
|
||||||
}
|
|
||||||
isOnHMD = !isOnHMD;
|
|
||||||
persistTime = isOnHMD ? PERSIST_TIME_3D : PERSIST_TIME_2D;
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
frame += 1;
|
function update(deltaTime) {
|
||||||
if ((frame % 60.0) === 0) { // only update once a second
|
if (notifications.length === 0 && !newEventDetected) {
|
||||||
locationY = 20.0;
|
Script.update.disconnect(update);
|
||||||
for (i = 0; i < arrays.length; i += 1) { //repositions overlays as others fade
|
Controller.mousePressEvent.disconnect(mousePressEvent);
|
||||||
if (isOnHMD) {
|
deleteMainHMDnotificationContainer();
|
||||||
positions = calculate3DOverlayPositions(overlay3DDetails[i].width, overlay3DDetails[i].height, locationY);
|
|
||||||
overlay3DDetails[i].notificationOrientation = positions.notificationOrientation;
|
|
||||||
overlay3DDetails[i].notificationPosition = positions.notificationPosition;
|
|
||||||
overlay3DDetails[i].buttonPosition = positions.buttonPosition;
|
|
||||||
//We don't reposition in HMD, because it is very annoying.
|
|
||||||
} else {
|
} else {
|
||||||
Overlays.editOverlay(notifications[i], { x: overlayLocationX, y: locationY });
|
if (isOnHMD !== HMD.active) {
|
||||||
Overlays.editOverlay(buttons[i], { x: buttonLocationX, y: locationY + 12.0 });
|
deleteAllExistingNotificationsDisplayed();
|
||||||
|
isOnHMD = HMD.active;
|
||||||
}
|
}
|
||||||
locationY = locationY + arrays[i][3];
|
var d = new Date();
|
||||||
|
var immediatly = d.getTime();
|
||||||
|
var mostRecentRemainingTime = NOTIFICATION_LIFE_DURATION;
|
||||||
|
var expirationDetected = false;
|
||||||
|
for (var i = 0; i < notifications.length; i++) {
|
||||||
|
if ((immediatly - notifications[i].timestamp) > NOTIFICATION_LIFE_DURATION){
|
||||||
|
deleteSpecificNotification(i);
|
||||||
|
notifications.splice(i, 1);
|
||||||
|
expirationDetected = true;
|
||||||
|
} else {
|
||||||
|
mostRecentRemainingTime = NOTIFICATION_LIFE_DURATION - (immediatly - notifications[i].timestamp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (newEventDetected || expirationDetected || mostRecentRemainingTime < FADE_OUT_DURATION) {
|
||||||
// This checks the age of the notification and prepares to fade it after 9.0 seconds (var persistTime - 1)
|
renderNotifications(mostRecentRemainingTime);
|
||||||
for (i = 0; i < arrays.length; i += 1) {
|
newEventDetected = false;
|
||||||
if (ready) {
|
|
||||||
j = arrays[i][2];
|
|
||||||
k = j + persistTime;
|
|
||||||
if (k < (new Date().getTime() / 1000)) {
|
|
||||||
ready = false;
|
|
||||||
noticeOut = arrays[i][0];
|
|
||||||
buttonOut = arrays[i][1];
|
|
||||||
arraysOut = i;
|
|
||||||
fadeOut(noticeOut, buttonOut, arraysOut);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var STARTUP_TIMEOUT = 500, // ms
|
//NOTIFICATION EVENTS FUNCTIONS
|
||||||
startingUp = true,
|
|
||||||
startupTimer = null;
|
|
||||||
|
|
||||||
function finishStartup() {
|
|
||||||
startingUp = false;
|
|
||||||
Script.clearTimeout(startupTimer);
|
|
||||||
}
|
|
||||||
|
|
||||||
function isStartingUp() {
|
|
||||||
// Is starting up until get no checks that it is starting up for STARTUP_TIMEOUT
|
|
||||||
if (startingUp) {
|
|
||||||
if (startupTimer) {
|
|
||||||
Script.clearTimeout(startupTimer);
|
|
||||||
}
|
|
||||||
startupTimer = Script.setTimeout(finishStartup, STARTUP_TIMEOUT);
|
|
||||||
}
|
|
||||||
return startingUp;
|
|
||||||
}
|
|
||||||
|
|
||||||
function onDomainConnectionRefused(reason, reasonCode) {
|
function onDomainConnectionRefused(reason, reasonCode) {
|
||||||
// the "login error" reason means that the DS couldn't decrypt the username signature
|
// the "login error" reason means that the DS couldn't decrypt the username signature
|
||||||
// since this eventually resolves itself for good actors we don't need to show a notification for it
|
// since this eventually resolves itself for good actors we don't need to show a notification for it
|
||||||
var LOGIN_ERROR_REASON_CODE = 2;
|
var LoginErrorMetaverse_REASON_CODE = 2;
|
||||||
|
if (reasonCode !== LoginErrorMetaverse_REASON_CODE) {
|
||||||
if (reasonCode != LOGIN_ERROR_REASON_CODE) {
|
addNotification("Connection refused: " + reason, null);
|
||||||
createNotification("Connection refused: " + reason, NotificationType.CONNECTION_REFUSED);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function onEditError(msg) {
|
function onEditError(msg) {
|
||||||
createNotification(wordWrap(msg), NotificationType.EDIT_ERROR);
|
addNotification(wordWrap(msg), null);
|
||||||
}
|
}
|
||||||
|
|
||||||
function onNotify(msg) {
|
function onNotify(msg) {
|
||||||
createNotification(wordWrap(msg), NotificationType.UNKNOWN); // Needs a generic notification system for user feedback, thus using this
|
// Generic notification system for user feedback, thus using this
|
||||||
|
addNotification(wordWrap(msg), null);
|
||||||
}
|
}
|
||||||
|
|
||||||
function onMessageReceived(channel, message) {
|
function onMessageReceived(channel, message) {
|
||||||
if (channel === NOTIFICATIONS_MESSAGE_CHANNEL) {
|
if (channel === NOTIFICATIONS_MESSAGE_CHANNEL) {
|
||||||
message = JSON.parse(message);
|
message = JSON.parse(message);
|
||||||
createNotification(wordWrap(message.message), message.notificationType);
|
addNotification(wordWrap(message.message), null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function onSnapshotTaken(pathStillSnapshot, notify) {
|
function onSnapshotTaken(pathStillSnapshot, notify) {
|
||||||
if (Settings.getValue("snapshotNotifications", true)) {
|
if (Settings.getValue(SETTING_ACTIVATION_SNAPSHOT_NOTIFICATIONS, true)) {
|
||||||
if (notify) {
|
if (notify) {
|
||||||
var imageProperties = {
|
var imageProperties = {
|
||||||
path: "file:///" + pathStillSnapshot,
|
"path": "file:///" + pathStillSnapshot,
|
||||||
aspectRatio: Window.innerWidth / Window.innerHeight
|
"aspectRatio": Window.innerWidth / Window.innerHeight
|
||||||
};
|
};
|
||||||
createNotification(wordWrap("Snapshot saved to " + pathStillSnapshot), NotificationType.SNAPSHOT, imageProperties);
|
addNotification(wordWrap("Snapshot saved to " + pathStillSnapshot), imageProperties);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function tabletNotification() {
|
function tabletNotification() {
|
||||||
createNotification("Tablet needs your attention", NotificationType.TABLET);
|
addNotification("Tablet needs your attention", null);
|
||||||
}
|
}
|
||||||
|
|
||||||
function processingGif() {
|
function processingGif() {
|
||||||
if (Settings.getValue("snapshotNotifications", true)) {
|
if (Settings.getValue(SETTING_ACTIVATION_SNAPSHOT_NOTIFICATIONS, true)) {
|
||||||
createNotification("Processing GIF snapshot...", NotificationType.SNAPSHOT);
|
addNotification("Processing GIF snapshot...", null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function walletNotSetup() {
|
|
||||||
createNotification("Your wallet isn't activated yet. Open the WALLET app.", NotificationType.WALLET);
|
|
||||||
}
|
|
||||||
|
|
||||||
function connectionAdded(connectionName) {
|
function connectionAdded(connectionName) {
|
||||||
createNotification(connectionName, NotificationType.CONNECTION);
|
addNotification(connectionName, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
function connectionError(error) {
|
function connectionError(error) {
|
||||||
createNotification(wordWrap("Error trying to make connection: " + error), NotificationType.CONNECTION);
|
addNotification(wordWrap("Error trying to make connection: " + error), null);
|
||||||
}
|
}
|
||||||
|
|
||||||
// handles mouse clicks on buttons
|
//STARTING AND ENDING
|
||||||
function mousePressEvent(event) {
|
|
||||||
var pickRay,
|
|
||||||
clickedOverlay,
|
|
||||||
i;
|
|
||||||
|
|
||||||
if (isOnHMD) {
|
|
||||||
pickRay = Camera.computePickRay(event.x, event.y);
|
|
||||||
clickedOverlay = Overlays.findRayIntersection(pickRay).overlayID;
|
|
||||||
} else {
|
|
||||||
clickedOverlay = Overlays.getOverlayAtPoint({ x: event.x, y: event.y });
|
|
||||||
}
|
|
||||||
|
|
||||||
for (i = 0; i < buttons.length; i += 1) {
|
|
||||||
if (clickedOverlay === buttons[i]) {
|
|
||||||
deleteNotification(i);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Control key remains active only while key is held down
|
|
||||||
function keyReleaseEvent(key) {
|
|
||||||
if (key.key === 16777249) {
|
|
||||||
ctrlIsPressed = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Triggers notification on specific key driven events
|
|
||||||
function keyPressEvent(key) {
|
|
||||||
if (key.key === 16777249) {
|
|
||||||
ctrlIsPressed = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// When our script shuts down, we should clean up all of our overlays
|
|
||||||
function scriptEnding() {
|
function scriptEnding() {
|
||||||
var notificationIndex;
|
//cleanup
|
||||||
for (notificationIndex = 0; notificationIndex < notifications.length; notificationIndex++) {
|
deleteAllExistingNotificationsDisplayed();
|
||||||
Overlays.deleteOverlay(notifications[notificationIndex]);
|
|
||||||
Overlays.deleteOverlay(buttons[notificationIndex]);
|
//disconnecting
|
||||||
|
if (notifications.length > 0) {
|
||||||
|
Script.update.disconnect(update);
|
||||||
|
Controller.mousePressEvent.disconnect(mousePressEvent);
|
||||||
}
|
}
|
||||||
|
Script.scriptEnding.disconnect(scriptEnding);
|
||||||
Messages.unsubscribe(NOTIFICATIONS_MESSAGE_CHANNEL);
|
Messages.unsubscribe(NOTIFICATIONS_MESSAGE_CHANNEL);
|
||||||
|
Window.domainConnectionRefused.disconnect(onDomainConnectionRefused);
|
||||||
|
Window.stillSnapshotTaken.disconnect(onSnapshotTaken);
|
||||||
|
Window.snapshot360Taken.disconnect(onSnapshotTaken);
|
||||||
|
Window.processingGifStarted.disconnect(processingGif);
|
||||||
|
Window.connectionAdded.disconnect(connectionAdded);
|
||||||
|
Window.connectionError.disconnect(connectionError);
|
||||||
|
Window.announcement.disconnect(onNotify);
|
||||||
|
Tablet.tabletNotification.disconnect(tabletNotification);
|
||||||
|
Messages.messageReceived.disconnect(onMessageReceived);
|
||||||
}
|
}
|
||||||
|
|
||||||
Controller.keyPressEvent.connect(keyPressEvent);
|
|
||||||
Controller.mousePressEvent.connect(mousePressEvent);
|
|
||||||
Controller.keyReleaseEvent.connect(keyReleaseEvent);
|
|
||||||
Script.update.connect(update);
|
|
||||||
Script.scriptEnding.connect(scriptEnding);
|
Script.scriptEnding.connect(scriptEnding);
|
||||||
|
|
||||||
|
//EVENTS TO NOTIFY
|
||||||
Window.domainConnectionRefused.connect(onDomainConnectionRefused);
|
Window.domainConnectionRefused.connect(onDomainConnectionRefused);
|
||||||
Window.stillSnapshotTaken.connect(onSnapshotTaken);
|
Window.stillSnapshotTaken.connect(onSnapshotTaken);
|
||||||
Window.snapshot360Taken.connect(onSnapshotTaken);
|
Window.snapshot360Taken.connect(onSnapshotTaken);
|
||||||
|
@ -651,8 +405,6 @@
|
||||||
Window.notifyEditError = onEditError;
|
Window.notifyEditError = onEditError;
|
||||||
Window.notify = onNotify;
|
Window.notify = onNotify;
|
||||||
Tablet.tabletNotification.connect(tabletNotification);
|
Tablet.tabletNotification.connect(tabletNotification);
|
||||||
WalletScriptingInterface.walletNotSetup.connect(walletNotSetup);
|
|
||||||
|
|
||||||
Messages.subscribe(NOTIFICATIONS_MESSAGE_CHANNEL);
|
Messages.subscribe(NOTIFICATIONS_MESSAGE_CHANNEL);
|
||||||
Messages.messageReceived.connect(onMessageReceived);
|
Messages.messageReceived.connect(onMessageReceived);
|
||||||
}()); // END LOCAL_SCOPE
|
}());
|
||||||
|
|
Loading…
Reference in a new issue