overte-thingvellir/scripts/system/create/entitySelectionTool/entitySelectionTool.js
2024-03-21 16:43:09 -07:00

3446 lines
148 KiB
JavaScript

//
// entitySelectionTool.js
//
// Created by Brad hefta-Gaub on 10/1/14.
// Modified by Daniela Fontes * @DanielaFifo and Tiago Andrade @TagoWill on 4/7/2017
// Modified by David Back on 1/9/2018
// Copyright 2014 High Fidelity, Inc.
// Copyright 2020 Vircadia contributors
// Copyright 2022-2023 Overte e.V.
//
// This script implements a class useful for building tools for editing entities.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
// SPDX-License-Identifier: Apache-2.0
//
/* global SelectionManager, SelectionDisplay, grid, rayPlaneIntersection, rayPlaneIntersection2, pushCommandForSelections,
getMainTabletIDs, getControllerWorldLocation, TRIGGER_ON_VALUE */
const SPACE_LOCAL = "local";
const SPACE_WORLD = "world";
const HIGHLIGHT_LIST_NAME = "editHandleHighlightList";
const MIN_DISTANCE_TO_REZ_FROM_AVATAR = 3;
Script.include([
"../../libraries/controllers.js",
"../../libraries/controllerDispatcherUtils.js",
"../../libraries/utils.js"
]);
function deepCopy(v) {
return JSON.parse(JSON.stringify(v));
}
function getDuplicateAppendedName(name) {
var appendiceChar = "(0123456789)";
var currentChar = "";
var rippedName = name;
var existingSequence = 0;
var sequenceReader = "";
for (var i = name.length - 1; i >= 0; i--) {
currentChar = name.charAt(i);
if (i === (name.length - 1) && currentChar !== ")") {
rippedName = name;
break;
} else {
if (appendiceChar.indexOf(currentChar) === -1) {
rippedName = name;
break;
} else {
if (currentChar == "(" && i === name.length - 2) {
rippedName = name;
break;
} else {
if (currentChar == "(") {
rippedName = name.substr(0, i-1);
existingSequence = parseInt(sequenceReader);
break;
} else {
sequenceReader = currentChar + sequenceReader;
}
}
}
}
}
if (existingSequence === 0) {
rippedName = rippedName.trim() + " (2)";
} else {
existingSequence++;
rippedName = rippedName.trim() + " (" + existingSequence + ")";
}
return rippedName.trim();
}
SelectionManager = (function() {
var that = {};
// FUNCTION: SUBSCRIBE TO UPDATE MESSAGES
function subscribeToUpdateMessages() {
Messages.subscribe("entityToolUpdates");
Messages.messageReceived.connect(handleEntitySelectionToolUpdates);
}
// FUNCTION: HANDLE ENTITY SELECTION TOOL UPDATES
function handleEntitySelectionToolUpdates(channel, message, sender) {
//print("Channel: " + channel + " Sender: " + sender + " Message: " + JSON.stringify(message));
if (channel !== 'entityToolUpdates') {
return;
}
if (sender !== MyAvatar.sessionUUID) {
return;
}
var wantDebug = false;
var messageParsed;
try {
messageParsed = JSON.parse(message);
} catch (err) {
print("ERROR: entitySelectionTool.handleEntitySelectionToolUpdates - got malformed message");
return;
}
if (messageParsed.method === "selectEntity") {
if (!that.editEnabled) {
return;
}
if (!SelectionDisplay.triggered() || SelectionDisplay.triggeredHand === messageParsed.hand) {
if (wantDebug) {
print("setting selection to " + messageParsed.entityID);
}
if (that.createApp.expectingRotateAsClickedSurface) {
if (!SelectionManager.hasSelection() || !SelectionManager.hasUnlockedSelection()) {
audioFeedback.rejection();
Window.notifyEditError("You have nothing selected, or the selection is locked.");
that.createApp.expectingRotateAsClickedSurface = false;
} else {
//Rotate Selection according the Surface Normal
var normalRotation = Quat.lookAtSimple(Vec3.ZERO, Vec3.multiply(messageParsed.surfaceNormal, -1));
selectionDisplay.rotateSelection(normalRotation);
//Translate Selection according the clicked Surface
var distanceFromSurface;
if (selectionDisplay.getSpaceMode() === SPACE_WORLD){
distanceFromSurface = SelectionManager.worldDimensions.z / 2;
} else {
distanceFromSurface = SelectionManager.localDimensions.z / 2;
}
selectionDisplay.moveSelection(Vec3.sum(messageParsed.intersection, Vec3.multiplyQbyV( normalRotation, {"x": 0.0, "y":0.0, "z": distanceFromSurface})));
that._update(false, this);
that.createApp.pushCommandForSelections();
that.createApp.expectingRotateAsClickedSurface = false;
audioFeedback.action();
}
} else {
var pickRay = SelectionDisplay.controllerComputePickRay();
var intersectObj = SelectionDisplay.testRayIntersect(pickRay, SelectionDisplay.allToolEntities);
if (intersectObj.intersects) {
return;
}
if (that.createApp.hmdMultiSelectMode) {
that.addEntity(messageParsed.entityID, true, that);
} else {
that.setSelections([messageParsed.entityID], that);
}
}
}
} else if (messageParsed.method === "clearSelection") {
if (!SelectionDisplay.triggered() || SelectionDisplay.triggeredHand === messageParsed.hand) {
that.clearSelections();
}
} else if (messageParsed.method === "pointingAt") {
if (messageParsed.hand === Controller.Standard.RightHand) {
that.pointingAtDesktopWindowRight = messageParsed.desktopWindow;
that.pointingAtTabletRight = messageParsed.tablet;
} else {
that.pointingAtDesktopWindowLeft = messageParsed.desktopWindow;
that.pointingAtTabletLeft = messageParsed.tablet;
}
}
}
subscribeToUpdateMessages();
// disabling this for now as it is causing rendering issues with the other handle toolEntities
/*
var COLOR_ORANGE_HIGHLIGHT = { red: 255, green: 99, blue: 9 };
var editHandleOutlineStyle = {
outlineUnoccludedColor: COLOR_ORANGE_HIGHLIGHT,
outlineOccludedColor: COLOR_ORANGE_HIGHLIGHT,
fillUnoccludedColor: COLOR_ORANGE_HIGHLIGHT,
fillOccludedColor: COLOR_ORANGE_HIGHLIGHT,
outlineUnoccludedAlpha: 1,
outlineOccludedAlpha: 0,
fillUnoccludedAlpha: 0,
fillOccludedAlpha: 0,
outlineWidth: 3,
isOutlineSmooth: true
};
Selection.enableListHighlight(HIGHLIGHT_LIST_NAME, editHandleOutlineStyle);
*/
that.savedProperties = {};
that.selections = [];
var listeners = [];
that.localRotation = Quat.IDENTITY;
that.localPosition = Vec3.ZERO;
that.localDimensions = Vec3.ZERO;
that.localRegistrationPoint = Vec3.HALF;
that.worldRotation = Quat.IDENTITY;
that.worldPosition = Vec3.ZERO;
that.worldDimensions = Vec3.ZERO;
that.worldRegistrationPoint = Vec3.HALF;
that.centerPosition = Vec3.ZERO;
that.pointingAtDesktopWindowLeft = false;
that.pointingAtDesktopWindowRight = false;
that.pointingAtTabletLeft = false;
that.pointingAtTabletRight = false;
that.editEnabled = true;
that.updateEditSettings = function(data) {
if (data.createAppMode) {
if (data.createAppMode === "object"){
that.editEnabled = true;
} else {
that.editEnabled = false;
if(that.hasSelection()){
that.clearSelections();
}
}
}
}
that.saveProperties = function() {
that.savedProperties = {};
for (var i = 0; i < that.selections.length; i++) {
var entityID = that.selections[i];
that.savedProperties[entityID] = Entities.getEntityProperties(entityID);
}
};
that.addEventListener = function(func, thisContext) {
listeners.push({
callback: func,
thisContext: thisContext
});
};
that.hasSelection = function() {
return that.selections.length > 0;
};
that.setSelections = function(entityIDs, caller) {
print("setSelections: " + JSON.stringify(entityIDs));
Script.logBacktrace("setSelections");
that.selections = [];
for (var i = 0; i < entityIDs.length; i++) {
var entityID = entityIDs[i];
that.selections.push(entityID);
Selection.addToSelectedItemsList(HIGHLIGHT_LIST_NAME, "entity", entityID);
}
that._update(true, caller);
};
that.addEntity = function(entityID, toggleSelection, caller) {
if (entityID) {
var idx = -1;
for (var i = 0; i < that.selections.length; i++) {
if (entityID === that.selections[i]) {
idx = i;
break;
}
}
if (idx === -1) {
that.selections.push(entityID);
Selection.addToSelectedItemsList(HIGHLIGHT_LIST_NAME, "entity", entityID);
} else if (toggleSelection) {
that.selections.splice(idx, 1);
Selection.removeFromSelectedItemsList(HIGHLIGHT_LIST_NAME, "entity", entityID);
}
}
that._update(true, caller);
};
function removeEntityByID(entityID) {
var idx = that.selections.indexOf(entityID);
if (idx >= 0) {
that.selections.splice(idx, 1);
Selection.removeFromSelectedItemsList(HIGHLIGHT_LIST_NAME, "entity", entityID);
}
}
that.removeEntity = function (entityID, caller) {
removeEntityByID(entityID);
that._update(true, caller);
};
that.removeEntities = function(entityIDs, caller) {
for (var i = 0, length = entityIDs.length; i < length; i++) {
removeEntityByID(entityIDs[i]);
}
that._update(true, caller);
};
that.clearSelections = function(caller) {
that.selections = [];
that._update(true, caller);
};
that.addChildrenEntities = function(parentEntityID, entityList, entityHostType) {
var wantDebug = false;
var children = Entities.getChildrenIDs(parentEntityID);
var entityHostTypes = Entities.getMultipleEntityProperties(children, 'entityHostType');
for (var i = 0; i < children.length; i++) {
var childID = children[i];
if (entityHostTypes[i].entityHostType !== entityHostType) {
if (wantDebug) {
console.log("Skipping addition of entity " + childID + " with conflicting entityHostType: " +
entityHostTypes[i].entityHostType + ", expected: " + entityHostType);
}
continue;
}
if (entityList.indexOf(childID) < 0) {
entityList.push(childID);
}
that.addChildrenEntities(childID, entityList, entityHostType);
}
};
// Determine if an entity is being grabbed.
// This is mostly a heuristic - there is no perfect way to know if an entity is being
// grabbed.
//
// @return {boolean} true if the given entity with `properties` is being grabbed by an avatar
function nonDynamicEntityIsBeingGrabbedByAvatar(properties) {
if (properties.dynamic || Uuid.isNull(properties.parentID)) {
return false;
}
var avatar = AvatarList.getAvatar(properties.parentID);
if (Uuid.isNull(avatar.sessionUUID)) {
return false;
}
var grabJointNames = [
'RightHand', 'LeftHand',
'_CONTROLLER_RIGHTHAND', '_CONTROLLER_LEFTHAND',
'_CAMERA_RELATIVE_CONTROLLER_RIGHTHAND', '_CAMERA_RELATIVE_CONTROLLER_LEFTHAND',
'_FARGRAB_RIGHTHAND', '_FARGRAB_LEFTHAND', '_FARGRAB_MOUSE'
];
for (var i = 0; i < grabJointNames.length; ++i) {
if (avatar.getJointIndex(grabJointNames[i]) === properties.parentJointIndex) {
return true;
}
}
return false;
}
var entityClipboard = {
entities: {}, // Map of id -> properties for copied entities
position: { x: 0, y: 0, z: 0 },
dimensions: { x: 0, y: 0, z: 0 },
};
that.duplicateSelection = function() {
var entitiesToDuplicate = [];
var duplicatedEntityIDs = [];
var duplicatedChildrenWithOldParents = [];
var originalEntityToNewEntityID = [];
SelectionManager.saveProperties();
// build list of entities to duplicate by including any unselected children of selected parent entities
var originalEntityIDs = Object.keys(that.savedProperties);
var entityHostTypes = Entities.getMultipleEntityProperties(originalEntityIDs, 'entityHostType');
for (var i = 0; i < originalEntityIDs.length; i++) {
var originalEntityID = originalEntityIDs[i];
if (entitiesToDuplicate.indexOf(originalEntityID) === -1) {
entitiesToDuplicate.push(originalEntityID);
}
that.addChildrenEntities(originalEntityID, entitiesToDuplicate, entityHostTypes[i].entityHostType);
}
var duplicateInterrupted = false;
for (var j = 0; j < entitiesToDuplicate.length; j++) {
var lockedEntities = Entities.getEntityProperties(entitiesToDuplicate[j], 'locked');
if (lockedEntities.locked) {
duplicateInterrupted = true;
break;
}
}
if (duplicateInterrupted) {
audioFeedback.rejection();
Window.notifyEditError("At least one of the selected entities or one of their children are locked.");
return [];
}
// duplicate entities from above and store their original to new entity mappings and children needing re-parenting
for (var i = 0; i < entitiesToDuplicate.length; i++) {
var originalEntityID = entitiesToDuplicate[i];
var properties = that.savedProperties[originalEntityID];
if (properties === undefined) {
properties = Entities.getEntityProperties(originalEntityID);
}
if (!properties.locked && (!properties.avatarEntity || properties.owningAvatarID === MyAvatar.sessionUUID)) {
if (nonDynamicEntityIsBeingGrabbedByAvatar(properties)) {
properties.parentID = null;
properties.parentJointIndex = null;
properties.localPosition = properties.position;
properties.localRotation = properties.rotation;
}
properties.name = getDuplicateAppendedName(properties.name);
properties.localVelocity = Vec3.ZERO;
properties.localAngularVelocity = Vec3.ZERO;
delete properties.actionData;
var newEntityID = Entities.addEntity(properties);
// Re-apply actions from the original entity
var actionIDs = Entities.getActionIDs(properties.id);
for (var j = 0; j < actionIDs.length; ++j) {
var actionID = actionIDs[j];
var actionArguments = Entities.getActionArguments(properties.id, actionID);
if (actionArguments) {
var type = actionArguments.type;
if (type === 'hold' || type === 'far-grab') {
continue;
}
delete actionArguments.ttl;
Entities.addAction(type, newEntityID, actionArguments);
}
}
duplicatedEntityIDs.push({
entityID: newEntityID,
properties: properties
});
if (properties.parentID !== Uuid.NULL) {
duplicatedChildrenWithOldParents[newEntityID] = properties.parentID;
}
originalEntityToNewEntityID[originalEntityID] = newEntityID;
}
}
// re-parent duplicated children to the duplicate entities of their original parents (if they were duplicated)
Object.keys(duplicatedChildrenWithOldParents).forEach(function(childIDNeedingNewParent) {
var originalParentID = duplicatedChildrenWithOldParents[childIDNeedingNewParent];
var newParentID = originalEntityToNewEntityID[originalParentID];
if (newParentID) {
Entities.editEntity(childIDNeedingNewParent, { parentID: newParentID });
for (var i = 0; i < duplicatedEntityIDs.length; i++) {
var duplicatedEntity = duplicatedEntityIDs[i];
if (duplicatedEntity.entityID === childIDNeedingNewParent) {
duplicatedEntity.properties.parentID = newParentID;
}
}
}
});
audioFeedback.confirmation();
return duplicatedEntityIDs;
};
// Create the entities in entityProperties, maintaining parent-child relationships.
// @param entityProperties {array} - Array of entity property objects
that.createEntities = function(entityProperties) {
var entitiesToCreate = [];
var createdEntityIDs = [];
var createdChildrenWithOldParents = [];
var originalEntityToNewEntityID = [];
that.saveProperties();
for (var i = 0; i < entityProperties.length; ++i) {
var properties = entityProperties[i];
if (properties.parentID in originalEntityToNewEntityID) {
properties.parentID = originalEntityToNewEntityID[properties.parentID];
} else {
delete properties.parentID;
}
delete properties.actionData;
var newEntityID = Entities.addEntity(properties);
if (newEntityID) {
createdEntityIDs.push({
entityID: newEntityID,
properties: properties
});
if (properties.parentID !== Uuid.NULL) {
createdChildrenWithOldParents[newEntityID] = properties.parentID;
}
originalEntityToNewEntityID[properties.id] = newEntityID;
properties.id = newEntityID;
}
}
return createdEntityIDs;
};
that.cutSelectedEntities = function() {
that.copySelectedEntities();
that.createApp.deleteSelectedEntities();
};
that.copySelectedEntities = function() {
var entityProperties = Entities.getMultipleEntityProperties(that.selections);
var entityHostTypes = Entities.getMultipleEntityProperties(that.selections, 'entityHostType');
var entities = {};
entityProperties.forEach(function(props) {
entities[props.id] = props;
});
function appendChildren(entityID, entities, entityHostType) {
var wantDebug = false;
var childrenIDs = Entities.getChildrenIDs(entityID);
var entityHostTypes = Entities.getMultipleEntityProperties(childrenIDs, 'entityHostType');
for (var i = 0; i < childrenIDs.length; ++i) {
var id = childrenIDs[i];
if (entityHostTypes[i].entityHostType !== entityHostType) {
if (wantDebug) {
console.warn("Skipping addition of entity " + id + " with conflicting entityHostType: " +
entityHostTypes[i].entityHostType + ", expected: " + entityHostType);
}
continue;
}
if (!(id in entities)) {
entities[id] = Entities.getEntityProperties(id);
appendChildren(id, entities, entityHostType);
}
}
}
var len = entityProperties.length;
for (var i = 0; i < len; ++i) {
appendChildren(entityProperties[i].id, entities, entityHostTypes[i].entityHostType);
}
for (var id in entities) {
var parentID = entities[id].parentID;
entities[id].root = !(parentID in entities);
}
entityClipboard.entities = [];
var ids = Object.keys(entities);
while (ids.length > 0) {
// Go through all remaining entities.
// If an entity does not have a parent left, move it into the list
for (var i = 0; i < ids.length; ++i) {
var id = ids[i];
var parentID = entities[id].parentID;
if (parentID in entities) {
continue;
}
entityClipboard.entities.push(entities[id]);
delete entities[id];
}
ids = Object.keys(entities);
}
// Calculate size
if (entityClipboard.entities.length === 0) {
entityClipboard.dimensions = { x: 0, y: 0, z: 0 };
entityClipboard.position = { x: 0, y: 0, z: 0 };
} else {
var properties = entityClipboard.entities;
var brn = properties[0].boundingBox.brn;
var tfl = properties[0].boundingBox.tfl;
for (var i = 1; i < properties.length; i++) {
var bb = properties[i].boundingBox;
brn.x = Math.min(bb.brn.x, brn.x);
brn.y = Math.min(bb.brn.y, brn.y);
brn.z = Math.min(bb.brn.z, brn.z);
tfl.x = Math.max(bb.tfl.x, tfl.x);
tfl.y = Math.max(bb.tfl.y, tfl.y);
tfl.z = Math.max(bb.tfl.z, tfl.z);
}
entityClipboard.dimensions = {
x: tfl.x - brn.x,
y: tfl.y - brn.y,
z: tfl.z - brn.z
};
entityClipboard.position = {
x: brn.x + entityClipboard.dimensions.x / 2,
y: brn.y + entityClipboard.dimensions.y / 2,
z: brn.z + entityClipboard.dimensions.z / 2
};
}
};
that.pasteEntities = function() {
var dimensions = entityClipboard.dimensions;
var maxDimension = Math.max(dimensions.x, dimensions.y, dimensions.z);
var pastePosition = that.createApp.getPositionToCreateEntity(maxDimension);
var deltaPosition = Vec3.subtract(pastePosition, entityClipboard.position);
var copiedProperties = [];
var ids = [];
entityClipboard.entities.forEach(function(originalProperties) {
var properties = deepCopy(originalProperties);
if (properties.root) {
properties.position = Vec3.sum(properties.position, deltaPosition);
delete properties.localPosition;
} else {
delete properties.position;
}
copiedProperties.push(properties);
});
var currentSelections = deepCopy(SelectionManager.selections);
function redo(copiedProperties) {
var created = that.createEntities(copiedProperties);
var ids = [];
for (var i = 0; i < created.length; ++i) {
ids.push(created[i].entityID);
}
SelectionManager.setSelections(ids);
}
function undo(copiedProperties) {
for (var i = 0; i < copiedProperties.length; ++i) {
Entities.deleteEntity(copiedProperties[i].id);
}
SelectionManager.setSelections(currentSelections);
}
redo(copiedProperties);
that.createApp.undoHistory.pushCommand(undo, copiedProperties, redo, copiedProperties);
};
that._update = function(selectionUpdated, caller) {
var properties = null;
if (that.selections.length === 0) {
that.localDimensions = null;
that.localPosition = null;
that.worldDimensions = null;
that.worldPosition = null;
that.worldRotation = null;
} else if (that.selections.length === 1) {
properties = Entities.getEntityProperties(that.selections[0],
['dimensions', 'position', 'rotation', 'registrationPoint', 'boundingBox', 'type']);
that.localDimensions = properties.dimensions;
that.localPosition = properties.position;
that.localRotation = properties.rotation;
that.localRegistrationPoint = properties.registrationPoint;
that.worldDimensions = properties.boundingBox.dimensions;
that.worldPosition = properties.boundingBox.center;
that.worldRotation = Quat.IDENTITY;
that.entityType = properties.type;
if (selectionUpdated) {
SelectionDisplay.useDesiredSpaceMode();
}
} else {
properties = Entities.getEntityProperties(that.selections[0], ['type', 'boundingBox']);
that.entityType = properties.type;
var brn = properties.boundingBox.brn;
var tfl = properties.boundingBox.tfl;
for (var i = 1; i < that.selections.length; i++) {
properties = Entities.getEntityProperties(that.selections[i], 'boundingBox');
var bb = properties.boundingBox;
brn.x = Math.min(bb.brn.x, brn.x);
brn.y = Math.min(bb.brn.y, brn.y);
brn.z = Math.min(bb.brn.z, brn.z);
tfl.x = Math.max(bb.tfl.x, tfl.x);
tfl.y = Math.max(bb.tfl.y, tfl.y);
tfl.z = Math.max(bb.tfl.z, tfl.z);
}
that.localRotation = null;
that.localDimensions = null;
that.localPosition = null;
that.worldDimensions = {
x: tfl.x - brn.x,
y: tfl.y - brn.y,
z: tfl.z - brn.z
};
that.worldRotation = Quat.IDENTITY;
that.worldPosition = {
x: brn.x + (that.worldDimensions.x / 2),
y: brn.y + (that.worldDimensions.y / 2),
z: brn.z + (that.worldDimensions.z / 2)
};
// For 1+ selections we can only modify selections in world space
SelectionDisplay.setSpaceMode(SPACE_WORLD, false);
}
for (var j = 0; j < listeners.length; j++) {
try {
listeners[j].callback.call(listeners[j].thisContext, selectionUpdated === true, caller);
} catch (e) {
print("ERROR: entitySelectionTool.update got exception: " + JSON.stringify(e));
}
}
};
that.teleportToEntity = function() {
if (that.hasSelection()) {
var distanceFromTarget = MIN_DISTANCE_TO_REZ_FROM_AVATAR + Math.max(Math.max(that.worldDimensions.x, that.worldDimensions.y), that.worldDimensions.z);
var teleportTargetPosition = Vec3.sum(that.worldPosition, Vec3.multiplyQbyV(MyAvatar.orientation, { x: 0, y: 0, z: distanceFromTarget }));
MyAvatar.goToLocation(teleportTargetPosition, false);
} else {
audioFeedback.rejection();
Window.notifyEditError("You have nothing selected.");
}
};
that.moveEntitiesSelectionToAvatar = function() {
if (that.hasSelection() && that.hasUnlockedSelection()) {
that.saveProperties();
var distanceFromTarget = MIN_DISTANCE_TO_REZ_FROM_AVATAR + Math.max(Math.max(that.worldDimensions.x, that.worldDimensions.y), that.worldDimensions.z);
var targetPosition = Vec3.sum(MyAvatar.position, Vec3.multiplyQbyV(MyAvatar.orientation, { x: 0, y: 0, z: -distanceFromTarget }));
// editing a parent will cause all the children to automatically follow along, so don't
// edit any entity who has an ancestor in that.selections
var toMove = that.selections.filter(function (selection) {
if (that.selections.indexOf(that.savedProperties[selection].parentID) >= 0) {
return false; // a parent is also being moved, so don't issue an edit for this entity
} else {
return true;
}
});
for (var i = 0; i < toMove.length; i++) {
var id = toMove[i];
var properties = that.savedProperties[id];
var relativePosition = Vec3.subtract(properties.position, that.worldPosition);
var newPosition = Vec3.sum(relativePosition, targetPosition);
Entities.editEntity(id, { "position": newPosition });
}
that.createApp.pushCommandForSelections();
that._update(false, this);
} else {
audioFeedback.rejection();
Window.notifyEditError("You have nothing selected or the selection has locked entities.");
}
};
that.selectParent = function() {
if (that.hasSelection()) {
var currentSelection = that.selections;
that.selections = [];
for (var i = 0; i < currentSelection.length; i++) {
var properties = Entities.getEntityProperties(currentSelection[i], ['parentID']);
if (properties.parentID !== Uuid.NULL) {
that.selections.push(properties.parentID);
}
}
that._update(true, this);
} else {
audioFeedback.rejection();
Window.notifyEditError("You have nothing selected.");
}
};
that.selectTopParent = function() {
if (that.hasSelection()) {
var currentSelection = that.selections;
that.selections = [];
for (var i = 0; i < currentSelection.length; i++) {
var topParentId = getTopParent(currentSelection[i]);
if (topParentId !== Uuid.NULL) {
that.selections.push(topParentId);
}
}
that._update(true, this);
} else {
audioFeedback.rejection();
Window.notifyEditError("You have nothing selected.");
}
};
function getTopParent(id) {
var topParentId = Uuid.NULL;
var properties = Entities.getEntityProperties(id, ['parentID']);
if (properties.parentID === Uuid.NULL) {
topParentId = id;
} else {
topParentId = getTopParent(properties.parentID);
}
return topParentId;
}
that.addChildrenToSelection = function() {
if (that.hasSelection()) {
for (var i = 0; i < that.selections.length; i++) {
var childrenIDs = that.createApp.getDomainOnlyChildrenIDs(that.selections[i]);
var collectNewChildren;
var j;
var k = 0;
do {
collectNewChildren = that.createApp.getDomainOnlyChildrenIDs(childrenIDs[k]);
if (collectNewChildren.length > 0) {
for (j = 0; j < collectNewChildren.length; j++) {
childrenIDs.push(collectNewChildren[j]);
}
}
k++;
} while (k < childrenIDs.length);
if (childrenIDs.length > 0) {
for (j = 0; j < childrenIDs.length; j++) {
that.selections.push(childrenIDs[j]);
}
}
}
that._update(true, this);
} else {
audioFeedback.rejection();
Window.notifyEditError("You have nothing selected.");
}
};
that.hasUnlockedSelection = function() {
var selectionNotLocked = true;
for (var i = 0; i < that.selections.length; i++) {
var properties = Entities.getEntityProperties(that.selections[i], ['locked']);
if (properties.locked) {
selectionNotLocked = false;
break;
}
}
return selectionNotLocked;
};
that.selectFamily = function() {
that.selectParent();
that.addChildrenToSelection();
};
that.selectTopFamily = function() {
that.selectTopParent();
that.addChildrenToSelection();
};
return that;
})();
// Normalize degrees to be in the range (-180, 180)
function normalizeDegrees(degrees) {
var maxDegrees = 360;
var halfMaxDegrees = maxDegrees / 2;
degrees = ((degrees + halfMaxDegrees) % maxDegrees) - halfMaxDegrees;
if (degrees <= -halfMaxDegrees) {
degrees += maxDegrees;
}
return degrees;
}
// SELECTION DISPLAY DEFINITION
SelectionDisplay = (function() {
var that = {};
const COLOR_GREEN = { red: 0, green: 160, blue: 52 };
const COLOR_BLUE = { red: 0, green: 52, blue: 255 };
const COLOR_RED = { red: 255, green: 0, blue: 0 };
const COLOR_HOVER = { red: 255, green: 220, blue: 82 };
const COLOR_DUPLICATOR = { red: 162, green: 0, blue: 255 };
const COLOR_ROTATE_CURRENT_RING = { red: 255, green: 99, blue: 9 };
const COLOR_BOUNDING_EDGE = { red: 160, green: 160, blue: 160 };
const COLOR_BOUNDING_EDGE_PARENT = { red: 194, green: 123, blue: 0 };
const COLOR_BOUNDING_EDGE_PARENT_AND_CHILDREN = { red: 179, green: 0, blue: 134 };
const COLOR_BOUNDING_EDGE_CHILDREN = { red: 0, green: 168, blue: 214 };
const COLOR_SCALE_CUBE = { red: 192, green: 192, blue: 192 };
const COLOR_DEBUG_PICK_PLANE = { red: 255, green: 255, blue: 255 };
const COLOR_DEBUG_PICK_PLANE_HIT = { red: 255, green: 165, blue: 0 };
const TRANSLATE_ARROW_CYLINDER_OFFSET = 0.1;
const TRANSLATE_ARROW_CYLINDER_CAMERA_DISTANCE_MULTIPLE = 0.005;
const TRANSLATE_ARROW_CYLINDER_Y_MULTIPLE = 7.5;
const TRANSLATE_ARROW_CONE_CAMERA_DISTANCE_MULTIPLE = 0.025;
const TRANSLATE_ARROW_CONE_OFFSET_CYLINDER_DIMENSION_MULTIPLE = 0.83;
const ROTATE_RING_CAMERA_DISTANCE_MULTIPLE = 0.15;
const ROTATE_CTRL_SNAP_ANGLE = 22.5;
const ROTATE_DEFAULT_SNAP_ANGLE = 1;
const ROTATE_DEFAULT_TICK_MARKS_ANGLE = 5;
const ROTATE_RING_IDLE_INNER_RADIUS = 0.92;
const ROTATE_RING_SELECTED_INNER_RADIUS = 0.9;
// These are multipliers for sizing the rotation degrees display while rotating an entity
const ROTATE_DISPLAY_DISTANCE_MULTIPLIER = 2;
const ROTATE_DISPLAY_SIZE_X_MULTIPLIER = 0.2;
const ROTATE_DISPLAY_SIZE_Y_MULTIPLIER = 0.09;
const ROTATE_DISPLAY_LINE_HEIGHT_MULTIPLIER = 0.07;
const STRETCH_CUBE_OFFSET = 0.06;
const STRETCH_CUBE_CAMERA_DISTANCE_MULTIPLE = 0.02;
const STRETCH_PANEL_WIDTH = 0.01;
const SCALE_TOOL_CAMERA_DISTANCE_MULTIPLE = 0.02;
const SCALE_DIMENSIONS_CAMERA_DISTANCE_MULTIPLE = 0.5;
const BOUNDING_EDGE_OFFSET = 0.5;
const DUPLICATOR_OFFSET = { x: 0.6, y: 0, z: 0.6 };
const CTRL_KEY_CODE = 16777249;
const RAIL_AXIS_LENGTH = 10000;
const NEGATE_VECTOR = -1;
const NO_HAND = -1;
const DEBUG_PICK_PLANE_HIT_LIMIT = 200;
const DEBUG_PICK_PLANE_HIT_CAMERA_DISTANCE_MULTIPLE = 0.01;
const TRANSLATE_DIRECTION = {
X: 0,
Y: 1,
Z: 2
};
const STRETCH_DIRECTION = {
X: 0,
Y: 1,
Z: 2,
ALL: 3
};
const ROTATE_DIRECTION = {
PITCH: 0,
YAW: 1,
ROLL: 2
};
const INEDIT_STATUS_CHANNEL = "Hifi-InEdit-Status";
/**
* The current space mode, this could have been a forced space mode since we do not support multi selection while in
* local space mode.
* @type {string} - should only be set to SPACE_LOCAL or SPACE_WORLD
*/
var spaceMode = SPACE_LOCAL;
/**
* The desired space mode, this is the user set space mode, which should be respected whenever it is possible. In the case
* of multi entity selection this space mode may differ from the actual spaceMode.
* @type {string} - should only be set to SPACE_LOCAL or SPACE_WORLD
*/
var desiredSpaceMode = SPACE_LOCAL;
var toolEntityNames = [];
var lastControllerPoses = [
getControllerWorldLocation(Controller.Standard.LeftHand, true),
getControllerWorldLocation(Controller.Standard.RightHand, true)
];
var worldRotationX;
var worldRotationY;
var worldRotationZ;
var activeStretchCubePanelOffset = null;
var previousHandle = null;
var previousHandleHelper = null;
var previousHandleColor;
var ctrlPressed = false;
var toolEntityMaterial = [];
that.replaceCollisionsAfterStretch = false;
var handlePropertiesTranslateArrowCones = {
type: "Shape",
alpha: 1,
shape: "Cone",
primitiveMode: "solid",
visible: false,
ignorePickIntersection: true,
renderLayer: "front"
};
var handlePropertiesTranslateArrowCylinders = {
type: "Shape",
alpha: 1,
shape: "Cylinder",
primitiveMode: "solid",
visible: false,
ignorePickIntersection: true,
renderLayer: "front"
};
var handleTranslateXCone = Entities.addEntity(handlePropertiesTranslateArrowCones, "local");
var handleTranslateXCylinder = Entities.addEntity(handlePropertiesTranslateArrowCylinders, "local");
Entities.editEntity(handleTranslateXCone, { color: COLOR_RED });
Entities.editEntity(handleTranslateXCylinder, { color: COLOR_RED });
var handleTranslateYCone = Entities.addEntity(handlePropertiesTranslateArrowCones, "local");
var handleTranslateYCylinder = Entities.addEntity(handlePropertiesTranslateArrowCylinders, "local");
Entities.editEntity(handleTranslateYCone, { color: COLOR_GREEN });
Entities.editEntity(handleTranslateYCylinder, { color: COLOR_GREEN });
var handleTranslateZCone = Entities.addEntity(handlePropertiesTranslateArrowCones, "local");
var handleTranslateZCylinder = Entities.addEntity(handlePropertiesTranslateArrowCylinders, "local");
Entities.editEntity(handleTranslateZCone, { color: COLOR_BLUE });
Entities.editEntity(handleTranslateZCylinder, { color: COLOR_BLUE });
toolEntityMaterial.push(addUnlitMaterialOnToolEntity(handleTranslateXCone));
toolEntityMaterial.push(addUnlitMaterialOnToolEntity(handleTranslateYCone));
toolEntityMaterial.push(addUnlitMaterialOnToolEntity(handleTranslateZCone));
toolEntityMaterial.push(addUnlitMaterialOnToolEntity(handleTranslateXCylinder));
toolEntityMaterial.push(addUnlitMaterialOnToolEntity(handleTranslateYCylinder));
toolEntityMaterial.push(addUnlitMaterialOnToolEntity(handleTranslateZCylinder));
var handlePropertiesRotateRings = {
type: "Gizmo",
gizmoType: "ring",
ring: {
startAngle: 0,
endAngle: 360,
innerRadius: ROTATE_RING_IDLE_INNER_RADIUS,
majorTickMarksAngle: ROTATE_DEFAULT_TICK_MARKS_ANGLE,
majorTickMarksLength: 0.1,
innerStartAlpha: 1,
innerEndAlpha: 1,
outerStartAlpha: 1,
outerEndAlpha: 1
},
primitiveMode: "solid",
visible: false,
ignorePickIntersection: true,
renderLayer: "front"
};
var handleRotatePitchXRedRing = Entities.addEntity(handlePropertiesRotateRings, "local");
Entities.editEntity(handleRotatePitchXRedRing, {
ring: {
innerStartColor: COLOR_RED,
innerEndColor: COLOR_RED,
outerStartColor: COLOR_RED,
outerEndColor: COLOR_RED,
majorTickMarksColor: COLOR_RED
}
});
toolEntityMaterial.push(addUnlitMaterialOnToolEntity(handleRotatePitchXRedRing));
var handleRotateYawYGreenRing = Entities.addEntity(handlePropertiesRotateRings, "local");
Entities.editEntity(handleRotateYawYGreenRing, {
ring: {
innerStartColor: COLOR_GREEN,
innerEndColor: COLOR_GREEN,
outerStartColor: COLOR_GREEN,
outerEndColor: COLOR_GREEN,
majorTickMarksColor: COLOR_GREEN
}
});
toolEntityMaterial.push(addUnlitMaterialOnToolEntity(handleRotateYawYGreenRing));
var handleRotateRollZBlueRing = Entities.addEntity(handlePropertiesRotateRings, "local");
Entities.editEntity(handleRotateRollZBlueRing, {
ring: {
innerStartColor: COLOR_BLUE,
innerEndColor: COLOR_BLUE,
outerStartColor: COLOR_BLUE,
outerEndColor: COLOR_BLUE,
majorTickMarksColor: COLOR_BLUE
}
});
toolEntityMaterial.push(addUnlitMaterialOnToolEntity(handleRotateRollZBlueRing));
var handleRotateCurrentRing = Entities.addEntity({
type: "Gizmo",
gizmoType: "ring",
ring: {
innerRadius: 0.9,
majorTickMarksAngle: ROTATE_DEFAULT_TICK_MARKS_ANGLE,
majorTickMarksLength: 0.1,
innerStartAlpha: 1,
innerEndAlpha: 1,
outerStartAlpha: 1,
outerEndAlpha: 1,
innerStartColor: COLOR_ROTATE_CURRENT_RING,
innerEndColor: COLOR_ROTATE_CURRENT_RING,
outerStartColor: COLOR_ROTATE_CURRENT_RING,
outerEndColor: COLOR_ROTATE_CURRENT_RING,
},
primitiveMode: "solid",
visible: false,
ignorePickIntersection: true,
renderLayer: "front"
}, "local");
toolEntityMaterial.push(addUnlitMaterialOnToolEntity(handleRotateCurrentRing));
var rotationDegreesDisplay = Entities.addEntity({
type: "Text",
text: "",
textColor: { red: 0, green: 0, blue: 0 },
backgroundColor: { red: 255, green: 255, blue: 255 },
textAlpha: 1.0,
backgroundAlpha: 1.0,
visible: false,
billboardMode: "full",
renderLayer: "front",
ignorePickIntersection: true,
dimensions: { x: 0, y: 0, z: 0.01 },
lineHeight: 0.0,
topMargin: 0,
rightMargin: 0,
bottomMargin: 0,
leftMargin: 0,
unlit: true
}, "local");
var handlePropertiesStretchCubes = {
type: "Shape",
shape: "Cube",
primitiveMode: "solid",
visible: false,
ignorePickIntersection: true,
renderLayer: "front"
};
var handleStretchXCube = Entities.addEntity(handlePropertiesStretchCubes, "local");
Entities.editEntity(handleStretchXCube, { color: COLOR_RED });
var handleStretchYCube = Entities.addEntity(handlePropertiesStretchCubes, "local");
Entities.editEntity(handleStretchYCube, { color: COLOR_GREEN });
var handleStretchZCube = Entities.addEntity(handlePropertiesStretchCubes, "local");
Entities.editEntity(handleStretchZCube, { color: COLOR_BLUE });
toolEntityMaterial.push(addUnlitMaterialOnToolEntity(handleStretchXCube));
toolEntityMaterial.push(addUnlitMaterialOnToolEntity(handleStretchYCube));
toolEntityMaterial.push(addUnlitMaterialOnToolEntity(handleStretchZCube));
var handlePropertiesStretchPanel = {
type: "Shape",
shape: "Cube",
primitiveMode: "solid",
alpha: 0.5,
visible: false,
ignorePickIntersection: true,
renderLayer: "front"
};
var handleStretchXPanel = Entities.addEntity(handlePropertiesStretchPanel, "local");
Entities.editEntity(handleStretchXPanel, { color: COLOR_RED });
var handleStretchYPanel = Entities.addEntity(handlePropertiesStretchPanel, "local");
Entities.editEntity(handleStretchYPanel, { color: COLOR_GREEN });
var handleStretchZPanel = Entities.addEntity(handlePropertiesStretchPanel, "local");
Entities.editEntity(handleStretchZPanel, { color: COLOR_BLUE });
toolEntityMaterial.push(addUnlitMaterialOnToolEntity(handleStretchXPanel));
toolEntityMaterial.push(addUnlitMaterialOnToolEntity(handleStretchYPanel));
toolEntityMaterial.push(addUnlitMaterialOnToolEntity(handleStretchZPanel));
var handleScaleCube = Entities.addEntity({
type: "Shape",
shape: "Cube",
primitiveMode: "solid",
dimensions: 0.025,
color: COLOR_SCALE_CUBE,
visible: false,
ignorePickIntersection: true,
renderLayer: "front"
}, "local");
toolEntityMaterial.push(addUnlitMaterialOnToolEntity(handleScaleCube));
var handleBoundingBox = Entities.addEntity({
type: "Shape",
shape: "Cube",
primitiveMode: "lines",
alpha: 1,
color: COLOR_BOUNDING_EDGE,
visible: false,
ignorePickIntersection: true,
renderLayer: "front"
}, "local");
toolEntityMaterial.push(addUnlitMaterialOnToolEntity(handleBoundingBox));
var handleDuplicator = Entities.addEntity({
type: "Shape",
shape: "Shere",
primitiveMode: "solid",
alpha: 1,
dimensions: 0.05,
color: COLOR_DUPLICATOR,
visible: false,
ignorePickIntersection: true,
renderLayer: "front"
}, "local");
toolEntityMaterial.push(addUnlitMaterialOnToolEntity(handleDuplicator));
// setting to 0 alpha for now to keep this hidden vs using visible false
// because its used as the translate xz tool handle toolEntity
var selectionBox = Entities.addEntity({
type: "Shape",
shape: "Cube",
primitiveMode: "lines",
dimensions: 1,
color: COLOR_RED,
alpha: 0,
visible: false,
ignorePickIntersection: true
}, "local");
// Handle for x-z translation of particle effect and light entities while inside the bounding box.
// Limitation: If multiple entities are selected, only the first entity's icon translates the selection.
var iconSelectionBox = Entities.addEntity({
type: "Shape",
shape: "Cube",
primitiveMode: "lines",
dimensions: 0.3, // Match entity icon size.
color: COLOR_RED,
alpha: 0,
visible: false,
ignorePickIntersection: true
}, "local");
var xRailToolEntity = Entities.addEntity({
type: "PolyLine",
visible: false,
linePoints: [ Vec3.ZERO, Vec3.ZERO ],
color: {
red: 255,
green: 0,
blue: 0
},
ignorePickIntersection: true // always ignore this
}, "local");
var yRailToolEntity = Entities.addEntity({
type: "PolyLine",
visible: false,
linePoints: [ Vec3.ZERO, Vec3.ZERO ],
color: {
red: 0,
green: 255,
blue: 0
},
ignorePickIntersection: true // always ignore this
}, "local");
var zRailToolEntity = Entities.addEntity({
type: "PolyLine",
visible: false,
linePoints: [ Vec3.ZERO, Vec3.ZERO ],
color: {
red: 0,
green: 0,
blue: 255
},
ignorePickIntersection: true // always ignore this
}, "local");
var allToolEntities = [
handleTranslateXCone,
handleTranslateXCylinder,
handleTranslateYCone,
handleTranslateYCylinder,
handleTranslateZCone,
handleTranslateZCylinder,
handleRotatePitchXRedRing,
handleRotateYawYGreenRing,
handleRotateRollZBlueRing,
handleRotateCurrentRing,
rotationDegreesDisplay,
handleStretchXCube,
handleStretchYCube,
handleStretchZCube,
handleStretchXPanel,
handleStretchYPanel,
handleStretchZPanel,
handleScaleCube,
handleBoundingBox,
handleDuplicator,
selectionBox,
iconSelectionBox,
xRailToolEntity,
yRailToolEntity,
zRailToolEntity
];
that.allToolEntities = allToolEntities;
const nonLayeredToolEntities = [selectionBox, iconSelectionBox];
var maximumHandleInAllToolEntities = handleDuplicator;
toolEntityNames[handleTranslateXCone] = "handleTranslateXCone";
toolEntityNames[handleTranslateXCylinder] = "handleTranslateXCylinder";
toolEntityNames[handleTranslateYCone] = "handleTranslateYCone";
toolEntityNames[handleTranslateYCylinder] = "handleTranslateYCylinder";
toolEntityNames[handleTranslateZCone] = "handleTranslateZCone";
toolEntityNames[handleTranslateZCylinder] = "handleTranslateZCylinder";
toolEntityNames[handleRotatePitchXRedRing] = "handleRotatePitchXRedRing";
toolEntityNames[handleRotateYawYGreenRing] = "handleRotateYawYGreenRing";
toolEntityNames[handleRotateRollZBlueRing] = "handleRotateRollZBlueRing";
toolEntityNames[handleRotateCurrentRing] = "handleRotateCurrentRing";
toolEntityNames[rotationDegreesDisplay] = "rotationDegreesDisplay";
toolEntityNames[handleStretchXCube] = "handleStretchXCube";
toolEntityNames[handleStretchYCube] = "handleStretchYCube";
toolEntityNames[handleStretchZCube] = "handleStretchZCube";
toolEntityNames[handleStretchXPanel] = "handleStretchXPanel";
toolEntityNames[handleStretchYPanel] = "handleStretchYPanel";
toolEntityNames[handleStretchZPanel] = "handleStretchZPanel";
toolEntityNames[handleScaleCube] = "handleScaleCube";
toolEntityNames[handleBoundingBox] = "handleBoundingBox";
toolEntityNames[handleDuplicator] = "handleDuplicator";
toolEntityNames[selectionBox] = "selectionBox";
toolEntityNames[iconSelectionBox] = "iconSelectionBox";
var activeTool = null;
var handleTools = {};
var debugPickPlaneEnabled = false;
var debugPickPlane = Entities.addEntity({
type: "Shape",
shape: "Quad",
alpha: 0.25,
color: COLOR_DEBUG_PICK_PLANE,
primitiveMode: "solid",
visible: false,
ignorePickIntersection: true,
renderLayer: "front"
}, "local");
var debugPickPlaneHits = [];
// We get mouseMoveEvents from the handControllers, via handControllerPointer.
// But we dont' get mousePressEvents.
that.triggerClickMapping = Controller.newMapping(Script.resolvePath('') + '-click');
that.triggerPressMapping = Controller.newMapping(Script.resolvePath('') + '-press');
that.triggeredHand = NO_HAND;
that.pressedHand = NO_HAND;
that.editingHand = NO_HAND;
that.triggered = function() {
return that.triggeredHand !== NO_HAND;
};
function pointingAtDesktopWindowOrTablet(hand) {
var pointingAtDesktopWindow = (hand === Controller.Standard.RightHand &&
SelectionManager.pointingAtDesktopWindowRight) ||
(hand === Controller.Standard.LeftHand &&
SelectionManager.pointingAtDesktopWindowLeft);
var pointingAtTablet = (hand === Controller.Standard.RightHand && SelectionManager.pointingAtTabletRight) ||
(hand === Controller.Standard.LeftHand && SelectionManager.pointingAtTabletLeft);
return pointingAtDesktopWindow || pointingAtTablet;
}
function makeClickHandler(hand) {
return function (clicked) {
if (!SelectionManager.editEnabled) {
return;
}
// Don't allow both hands to trigger at the same time
if (that.triggered() && hand !== that.triggeredHand) {
return;
}
if (!that.triggered() && clicked && !pointingAtDesktopWindowOrTablet(hand)) {
that.triggeredHand = hand;
that.mousePressEvent({});
} else if (that.triggered() && !clicked) {
that.triggeredHand = NO_HAND;
that.mouseReleaseEvent({});
}
};
}
function makePressHandler(hand) {
return function (value) {
if (!SelectionManager.editEnabled) {
return;
}
if (value >= TRIGGER_ON_VALUE && !that.triggered() && !pointingAtDesktopWindowOrTablet(hand)) {
that.pressedHand = hand;
that.updateHighlight({});
} else {
that.pressedHand = NO_HAND;
that.resetPreviousHandleColor();
}
}
}
that.triggerClickMapping.from(Controller.Standard.RTClick).peek().to(makeClickHandler(Controller.Standard.RightHand));
that.triggerClickMapping.from(Controller.Standard.LTClick).peek().to(makeClickHandler(Controller.Standard.LeftHand));
that.triggerPressMapping.from(Controller.Standard.RT).peek().to(makePressHandler(Controller.Standard.RightHand));
that.triggerPressMapping.from(Controller.Standard.LT).peek().to(makePressHandler(Controller.Standard.LeftHand));
that.enableTriggerMapping = function() {
that.triggerClickMapping.enable();
that.triggerPressMapping.enable();
};
that.disableTriggerMapping = function() {
that.triggerClickMapping.disable();
that.triggerPressMapping.disable();
};
Script.scriptEnding.connect(that.disableTriggerMapping);
// FUNCTION DEF(s): Intersection Check Helpers
function testRayIntersect(queryRay, toolEntityIncludes, toolEntityExcludes) {
var wantDebug = false;
if ((queryRay === undefined) || (queryRay === null)) {
if (wantDebug) {
print("testRayIntersect - EARLY EXIT -> queryRay is undefined OR null!");
}
return null;
}
// We want to first check the drawInFront toolEntities (i.e. the handles, but really everything except the selectionBoxes)
// so that you can click on them even when they're behind things
var toolEntityIncludesLayered = [];
var toolEntityIncludesNonLayered = [];
for (var i = 0; i < toolEntityIncludes.length; i++) {
var value = toolEntityIncludes[i];
var contains = false;
for (var j = 0; j < nonLayeredToolEntities.length; j++) {
if (nonLayeredToolEntities[j] === value) {
contains = true;
break;
}
}
if (contains) {
toolEntityIncludesNonLayered.push(value);
} else {
toolEntityIncludesLayered.push(value);
}
}
var intersectObj = Overlays.findRayIntersection(queryRay, true, toolEntityIncludesLayered, toolEntityExcludes);
if (!intersectObj.intersects && toolEntityIncludesNonLayered.length > 0) {
intersectObj = Overlays.findRayIntersection(queryRay, true, toolEntityIncludesNonLayered, toolEntityExcludes);
}
if (wantDebug) {
if (!toolEntityIncludes) {
print("testRayIntersect - no toolEntityIncludes provided.");
}
if (!toolEntityExcludes) {
print("testRayIntersect - no toolEntityExcludes provided.");
}
print("testRayIntersect - Hit: " + intersectObj.intersects);
print(" intersectObj.overlayID:" + intersectObj.overlayID + "[" + toolEntityNames[intersectObj.overlayID] + "]");
print(" toolEntityName: " + toolEntityNames[intersectObj.overlayID]);
print(" intersectObj.distance:" + intersectObj.distance);
print(" intersectObj.face:" + intersectObj.face);
Vec3.print(" intersectObj.intersection:", intersectObj.intersection);
}
return intersectObj;
}
that.testRayIntersect = testRayIntersect;
function isPointInsideBox(point, box) {
var position = Vec3.subtract(point, box.position);
position = Vec3.multiplyQbyV(Quat.inverse(box.rotation), position);
return Math.abs(position.x) <= box.dimensions.x / 2 && Math.abs(position.y) <= box.dimensions.y / 2
&& Math.abs(position.z) <= box.dimensions.z / 2;
}
that.isEditHandle = function(entityID) {
var toolEntityIndex = allToolEntities.indexOf(entityID);
var maxHandleIndex = allToolEntities.indexOf(maximumHandleInAllToolEntities);
return toolEntityIndex >= 0 && toolEntityIndex <= maxHandleIndex;
};
// FUNCTION: MOUSE PRESS EVENT
that.mousePressEvent = function (event) {
var wantDebug = false;
if (wantDebug) {
print("=============== eST::MousePressEvent BEG =======================");
}
if (!SelectionManager.editEnabled) {
return;
}
if (!event.isLeftButton && !that.triggered()) {
// EARLY EXIT-(if another mouse button than left is pressed ignore it)
return false;
}
// No action if the Alt key is pressed unless on Mac.
var isMac = Controller.getValue(Controller.Hardware.Application.PlatformMac);
if (event.isAlt && !isMac) {
return;
}
var pickRay = generalComputePickRay(event.x, event.y);
// TODO_Case6491: Move this out to setup just to make it once
var interactiveToolEntities = getMainTabletIDs();
for (var key in handleTools) {
if (handleTools.hasOwnProperty(key)) {
interactiveToolEntities.push(key);
}
}
// Start with unknown mode, in case no tool can handle this.
activeTool = null;
var results = testRayIntersect(pickRay, interactiveToolEntities);
if (results.intersects) {
var hitToolEntityID = results.overlayID;
if ((HMD.tabletID && hitToolEntityID === HMD.tabletID) || (HMD.tabletScreenID && hitToolEntityID === HMD.tabletScreenID)
|| (HMD.homeButtonID && hitToolEntityID === HMD.homeButtonID)) {
// EARLY EXIT-(mouse clicks on the tablet should override the edit affordances)
return false;
}
var hitTool = handleTools[ hitToolEntityID ];
if (hitTool) {
activeTool = hitTool;
that.clearDebugPickPlane();
if (activeTool.onBegin) {
that.editingHand = that.triggeredHand;
Messages.sendLocalMessage(INEDIT_STATUS_CHANNEL, JSON.stringify({
method: "editing",
hand: that.editingHand === Controller.Standard.LeftHand ? LEFT_HAND : RIGHT_HAND,
editing: true
}));
activeTool.onBegin(event, pickRay, results);
} else {
print("ERROR: entitySelectionTool.mousePressEvent - ActiveTool(" + activeTool.mode + ") missing onBegin");
}
} else {
print("ERROR: entitySelectionTool.mousePressEvent - Hit unexpected object, check interactiveToolEntities");
}// End_if (hitTool)
}// End_If(results.intersects)
if (wantDebug) {
print(" DisplayMode: " + getMode());
print("=============== eST::MousePressEvent END =======================");
}
// If mode is known then we successfully handled this;
// otherwise, we're missing a tool.
return activeTool;
};
that.resetPreviousHandleColor = function() {
if (previousHandle !== null) {
if (previousHandle === handleRotateRollZBlueRing || previousHandle === handleRotateYawYGreenRing
|| previousHandle === handleRotatePitchXRedRing) {
Entities.editEntity(previousHandle, {
ring: {
innerStartColor: previousHandleColor,
innerEndColor: previousHandleColor,
outerStartColor: previousHandleColor,
outerEndColor: previousHandleColor
}
});
} else {
Entities.editEntity(previousHandle, { color: previousHandleColor });
}
previousHandle = null;
}
if (previousHandleHelper !== null) {
Entities.editEntity(previousHandleHelper, { color: previousHandleColor });
previousHandleHelper = null;
}
};
that.getHandleHelper = function(toolEntity) {
if (toolEntity === handleTranslateXCone) {
return handleTranslateXCylinder;
} else if (toolEntity === handleTranslateXCylinder) {
return handleTranslateXCone;
} else if (toolEntity === handleTranslateYCone) {
return handleTranslateYCylinder;
} else if (toolEntity === handleTranslateYCylinder) {
return handleTranslateYCone;
} else if (toolEntity === handleTranslateZCone) {
return handleTranslateZCylinder;
} else if (toolEntity === handleTranslateZCylinder) {
return handleTranslateZCone;
}
return Uuid.NULL;
};
that.updateHighlight = function(event) {
// if no tool is active, then just look for handles to highlight...
var pickRay = generalComputePickRay(event.x, event.y);
var result = testRayIntersect(pickRay, allToolEntities);
var pickedColor;
var highlightNeeded = false;
var isGizmoRing = false;
if (result.intersects) {
switch (result.overlayID) {
case handleTranslateXCone:
highlightNeeded = true;
pickedColor = COLOR_RED;
break;
case handleTranslateXCylinder:
highlightNeeded = true;
pickedColor = COLOR_RED;
break;
case handleRotatePitchXRedRing:
isGizmoRing = true;
highlightNeeded = true;
pickedColor = COLOR_RED;
break;
case handleStretchXCube:
pickedColor = COLOR_RED;
highlightNeeded = true;
break;
case handleTranslateYCone:
highlightNeeded = true;
pickedColor = COLOR_GREEN;
break;
case handleTranslateYCylinder:
highlightNeeded = true;
pickedColor = COLOR_GREEN;
break;
case handleRotateYawYGreenRing:
isGizmoRing = true;
highlightNeeded = true;
pickedColor = COLOR_GREEN;
break;
case handleStretchYCube:
pickedColor = COLOR_GREEN;
highlightNeeded = true;
break;
case handleTranslateZCone:
highlightNeeded = true;
pickedColor = COLOR_BLUE;
break;
case handleTranslateZCylinder:
highlightNeeded = true;
pickedColor = COLOR_BLUE;
break;
case handleRotateRollZBlueRing:
isGizmoRing = true;
highlightNeeded = true;
pickedColor = COLOR_BLUE;
break;
case handleStretchZCube:
pickedColor = COLOR_BLUE;
highlightNeeded = true;
break;
case handleScaleCube:
pickedColor = COLOR_SCALE_CUBE;
highlightNeeded = true;
break;
case handleDuplicator:
pickedColor = COLOR_DUPLICATOR;
highlightNeeded = true;
break;
default:
that.resetPreviousHandleColor();
break;
}
if (highlightNeeded) {
that.resetPreviousHandleColor();
if (isGizmoRing === true) {
Entities.editEntity(result.overlayID, {
ring: {
innerStartColor: COLOR_HOVER,
innerEndColor: COLOR_HOVER,
outerStartColor: COLOR_HOVER,
outerEndColor: COLOR_HOVER
}
});
} else {
Entities.editEntity(result.overlayID, { color: COLOR_HOVER });
}
previousHandle = result.overlayID;
previousHandleHelper = that.getHandleHelper(result.overlayID);
if (previousHandleHelper !== null) {
Entities.editEntity(previousHandleHelper, { color: COLOR_HOVER });
}
previousHandleColor = pickedColor;
}
} else {
that.resetPreviousHandleColor();
}
};
// FUNCTION: MOUSE MOVE EVENT
var lastMouseEvent = null;
that.mouseMoveEvent = function(event) {
var wantDebug = false;
if (wantDebug) {
print("=============== eST::MouseMoveEvent BEG =======================");
}
lastMouseEvent = event;
if (activeTool) {
if (wantDebug) {
print(" Trigger ActiveTool(" + activeTool.mode + ")'s onMove");
}
activeTool.onMove(event);
if (wantDebug) {
print(" Trigger SelectionManager::update");
}
SelectionManager._update(false, that);
if (wantDebug) {
print("=============== eST::MouseMoveEvent END =======================");
}
// EARLY EXIT--(Move handled via active tool)
return true;
}
that.updateHighlight(event);
if (wantDebug) {
print("=============== eST::MouseMoveEvent END =======================");
}
return false;
};
// FUNCTION: MOUSE RELEASE EVENT
that.mouseReleaseEvent = function(event) {
var wantDebug = false;
if (wantDebug) {
print("=============== eST::MouseReleaseEvent BEG =======================");
}
var showHandles = false;
if (activeTool) {
if (activeTool.onEnd) {
if (wantDebug) {
print(" Triggering ActiveTool(" + activeTool.mode + ")'s onEnd");
}
Messages.sendLocalMessage(INEDIT_STATUS_CHANNEL, JSON.stringify({
method: "editing",
hand: that.editingHand === Controller.Standard.LeftHand ? LEFT_HAND : RIGHT_HAND,
editing: false
}));
that.editingHand = NO_HAND;
activeTool.onEnd(event);
} else if (wantDebug) {
print(" ActiveTool(" + activeTool.mode + ")'s missing onEnd");
}
}
showHandles = activeTool; // base on prior tool value
activeTool = null;
// if something is selected, then reset the "original" properties for any potential next click+move operation
if (SelectionManager.hasSelection()) {
if (showHandles) {
if (wantDebug) {
print(" Triggering that.select");
}
that.select(SelectionManager.selections[0], event);
}
}
if (wantDebug) {
print("=============== eST::MouseReleaseEvent END =======================");
}
};
// Control key remains active only while key is held down
that.keyReleaseEvent = function(event) {
if (event.key === CTRL_KEY_CODE) {
ctrlPressed = false;
that.updateActiveRotateRing();
}
that.updateLastMouseEvent(event);
};
// Triggers notification on specific key driven events
that.keyPressEvent = function(event) {
if (event.key === CTRL_KEY_CODE) {
ctrlPressed = true;
that.updateActiveRotateRing();
}
that.updateLastMouseEvent(event);
};
that.updateLastMouseEvent = function(event) {
if (activeTool && lastMouseEvent !== null) {
var change = lastMouseEvent.isShifted !== event.isShifted || lastMouseEvent.isMeta !== event.isMeta ||
lastMouseEvent.isControl !== event.isControl || lastMouseEvent.isAlt !== event.isAlt;
lastMouseEvent.isShifted = event.isShifted;
lastMouseEvent.isMeta = event.isMeta;
lastMouseEvent.isControl = event.isControl;
lastMouseEvent.isAlt = event.isAlt;
if (change) {
activeTool.onMove(lastMouseEvent);
}
}
};
// NOTE: mousePressEvent and mouseMoveEvent from the main script should call us., so we don't hook these:
// Controller.mousePressEvent.connect(that.mousePressEvent);
// Controller.mouseMoveEvent.connect(that.mouseMoveEvent);
Controller.mouseReleaseEvent.connect(that.mouseReleaseEvent);
Controller.keyPressEvent.connect(that.keyPressEvent);
Controller.keyReleaseEvent.connect(that.keyReleaseEvent);
that.checkControllerMove = function() {
if (SelectionManager.hasSelection()) {
var controllerPose = getControllerWorldLocation(that.triggeredHand, true);
var hand = (that.triggeredHand === Controller.Standard.LeftHand) ? 0 : 1;
if (controllerPose.valid && lastControllerPoses[hand].valid && that.triggered()) {
if (!Vec3.equal(controllerPose.position, lastControllerPoses[hand].position) ||
!Vec3.equal(controllerPose.rotation, lastControllerPoses[hand].rotation)) {
that.mouseMoveEvent({});
}
}
lastControllerPoses[hand] = controllerPose;
}
};
function controllerComputePickRay() {
var hand = that.triggered() ? that.triggeredHand : that.pressedHand;
var controllerPose = getControllerWorldLocation(hand, true);
if (controllerPose.valid) {
var controllerPosition = controllerPose.translation;
// This gets point direction right, but if you want general quaternion it would be more complicated:
var controllerDirection = Quat.getUp(controllerPose.rotation);
return {origin: controllerPosition, direction: controllerDirection};
}
}
that.controllerComputePickRay = controllerComputePickRay;
function generalComputePickRay(x, y) {
return controllerComputePickRay() || Camera.computePickRay(x, y);
}
function getControllerAvatarFramePositionFromPickRay(pickRay) {
var controllerPosition = Vec3.subtract(pickRay.origin, MyAvatar.position);
controllerPosition = Vec3.multiplyQbyV(Quat.inverse(MyAvatar.orientation), controllerPosition);
return controllerPosition;
}
function getDistanceToCamera(position) {
var cameraPosition = Camera.getPosition();
var toCameraDistance = Vec3.length(Vec3.subtract(cameraPosition, position));
return toCameraDistance;
}
function usePreviousPickRay(pickRayDirection, previousPickRayDirection, normal) {
return (Vec3.dot(pickRayDirection, normal) > 0 && Vec3.dot(previousPickRayDirection, normal) < 0) ||
(Vec3.dot(pickRayDirection, normal) < 0 && Vec3.dot(previousPickRayDirection, normal) > 0);
}
// @return string - The mode of the currently active tool;
// otherwise, "UNKNOWN" if there's no active tool.
function getMode() {
return (activeTool ? activeTool.mode : "UNKNOWN");
}
that.cleanup = function() {
for (var i = 0; i < allToolEntities.length; i++) {
Entities.deleteEntity(allToolEntities[i]);
}
for (i = 0; i < toolEntityMaterial.length; i++) {
Entities.deleteEntity(toolEntityMaterial[i]);
}
that.clearDebugPickPlane();
};
that.select = function(entityID, event) {
var properties = Entities.getEntityProperties(SelectionManager.selections[0]);
if (event !== false) {
var wantDebug = false;
if (wantDebug) {
print("select() with EVENT...... ");
print(" event.y:" + event.y);
Vec3.print(" current position:", properties.position);
}
}
that.updateHandles();
};
/**
* This callback is used for spaceMode changes.
* @callback spaceModeChangedCallback
* @param {string} spaceMode
*/
/**
* set this property with a callback to keep track of spaceMode changes.
* @type {spaceModeChangedCallback}
*/
that.onSpaceModeChange = null;
// FUNCTION: SET SPACE MODE
that.setSpaceMode = function(newSpaceMode, isDesiredChange) {
var wantDebug = false;
if (wantDebug) {
print("======> SetSpaceMode called. ========");
}
if (spaceMode !== newSpaceMode) {
if (wantDebug) {
print(" Updating SpaceMode From: " + spaceMode + " To: " + newSpaceMode);
}
if (isDesiredChange) {
desiredSpaceMode = newSpaceMode;
}
spaceMode = newSpaceMode;
if (that.onSpaceModeChange !== null) {
that.onSpaceModeChange(newSpaceMode);
}
that.updateHandles();
} else if (wantDebug) {
print("WARNING: entitySelectionTool.setSpaceMode - Can't update SpaceMode. CurrentMode: " +
spaceMode + " DesiredMode: " + newSpaceMode);
}
if (wantDebug) {
print("====== SetSpaceMode called. <========");
}
};
// FUNCTION: TOGGLE SPACE MODE
that.toggleSpaceMode = function() {
var wantDebug = false;
if (wantDebug) {
print("========> ToggleSpaceMode called. =========");
}
if ((spaceMode === SPACE_WORLD) && (SelectionManager.selections.length > 1)) {
if (wantDebug) {
print("Local space editing is not available with multiple selections");
}
return;
}
if (wantDebug) {
print("PreToggle: " + spaceMode);
}
that.setSpaceMode((spaceMode === SPACE_LOCAL) ? SPACE_WORLD : SPACE_LOCAL, true);
if (wantDebug) {
print("PostToggle: " + spaceMode);
print("======== ToggleSpaceMode called. <=========");
}
};
/**
* Switches the display mode back to the set desired display mode
*/
that.useDesiredSpaceMode = function() {
var wantDebug = false;
if (wantDebug) {
print("========> UseDesiredSpaceMode called. =========");
}
that.setSpaceMode(desiredSpaceMode, false);
if (wantDebug) {
print("PostToggle: " + spaceMode);
print("======== UseDesiredSpaceMode called. <=========");
}
};
/**
* Get the currently set SpaceMode
* @returns {string} spaceMode
*/
that.getSpaceMode = function() {
return spaceMode;
};
function addHandleTool(toolEntity, tool) {
handleTools[toolEntity] = tool;
return tool;
}
// @param: toolHandle: The entityID associated with the tool
// that correlates to the tool you wish to query.
// @note: If toolHandle is null or undefined then activeTool
// will be checked against those values as opposed to
// the tool registered under toolHandle. Null & Undefined
// are treated as separate values.
// @return: bool - Indicates if the activeTool is that queried.
function isActiveTool(toolHandle) {
if (!toolHandle) {
// Allow isActiveTool(null) and similar to return true if there's
// no active tool
return (activeTool === toolHandle);
}
if (!handleTools.hasOwnProperty(toolHandle)) {
print("WARNING: entitySelectionTool.isActiveTool - Encountered unknown grabberToolHandle: " +
toolHandle + ". Tools should be registered via addHandleTool.");
// EARLY EXIT
return false;
}
return (activeTool === handleTools[ toolHandle ]);
}
// FUNCTION: UPDATE HANDLES
that.updateHandles = function() {
var wantDebug = false;
if (wantDebug) {
print("======> Update Handles =======");
print(" Selections Count: " + SelectionManager.selections.length);
print(" SpaceMode: " + spaceMode);
print(" DisplayMode: " + getMode());
}
if (SelectionManager.selections.length === 0) {
that.setToolEntitiesVisible(false);
that.clearDebugPickPlane();
return;
}
if (SelectionManager.hasSelection()) {
var position = SelectionManager.worldPosition;
var rotation = spaceMode === SPACE_LOCAL ? SelectionManager.localRotation : SelectionManager.worldRotation;
var dimensions = spaceMode === SPACE_LOCAL ? SelectionManager.localDimensions : SelectionManager.worldDimensions;
var rotationInverse = Quat.inverse(rotation);
var toCameraDistance = getDistanceToCamera(position);
var rotationDegrees = 90;
var localRotationX = Quat.fromPitchYawRollDegrees(0, 0, -rotationDegrees);
var rotationX = Quat.multiply(rotation, localRotationX);
worldRotationX = rotationX;
var localRotationY = Quat.fromPitchYawRollDegrees(0, rotationDegrees, 0);
var rotationY = Quat.multiply(rotation, localRotationY);
worldRotationY = rotationY;
var localRotationZ = Quat.fromPitchYawRollDegrees(rotationDegrees, 0, 0);
var rotationZ = Quat.multiply(rotation, localRotationZ);
worldRotationZ = rotationZ;
var handleBoundingBoxColor = COLOR_BOUNDING_EDGE;
if (SelectionManager.selections.length === 1) {
var parentState = that.createApp.getParentState(SelectionManager.selections[0]);
if (parentState === "CHILDREN") {
handleBoundingBoxColor = COLOR_BOUNDING_EDGE_CHILDREN;
} else if (parentState === "PARENT") {
handleBoundingBoxColor = COLOR_BOUNDING_EDGE_PARENT;
} else if (parentState === "PARENT_CHILDREN") {
handleBoundingBoxColor = COLOR_BOUNDING_EDGE_PARENT_AND_CHILDREN;
}
}
var selectionBoxGeometry = {
position: position,
rotation: rotation,
dimensions: dimensions
};
var isCameraInsideBox = isPointInsideBox(Camera.position, selectionBoxGeometry);
// in HMD if outside the bounding box clamp the toolEntities to the bounding box for now so lasers can hit them
var maxHandleDimension = 0;
if (HMD.active && !isCameraInsideBox) {
maxHandleDimension = Math.max(dimensions.x, dimensions.y, dimensions.z);
}
// UPDATE ROTATION RINGS
// rotateDimension is used as the base dimension for all toolEntities
var rotateDimension = Math.max(maxHandleDimension, toCameraDistance * ROTATE_RING_CAMERA_DISTANCE_MULTIPLE);
var rotateDimensions = { x: rotateDimension, y: rotateDimension, z: rotateDimension };
if (!isActiveTool(handleRotatePitchXRedRing)) {
Entities.editEntity(handleRotatePitchXRedRing, {
position: position,
rotation: rotationX,
dimensions: rotateDimensions,
ring: {
majorTickMarksAngle: ROTATE_DEFAULT_TICK_MARKS_ANGLE
}
});
}
if (!isActiveTool(handleRotateYawYGreenRing)) {
Entities.editEntity(handleRotateYawYGreenRing, {
position: position,
rotation: rotationY,
dimensions: rotateDimensions,
ring: {
majorTickMarksAngle: ROTATE_DEFAULT_TICK_MARKS_ANGLE
}
});
}
if (!isActiveTool(handleRotateRollZBlueRing)) {
Entities.editEntity(handleRotateRollZBlueRing, {
position: position,
rotation: rotationZ,
dimensions: rotateDimensions,
ring: {
majorTickMarksAngle: ROTATE_DEFAULT_TICK_MARKS_ANGLE
}
});
}
Entities.editEntity(handleRotateCurrentRing, { dimensions: rotateDimensions });
that.updateActiveRotateRing();
// UPDATE TRANSLATION ARROWS
var arrowCylinderDimension = rotateDimension * TRANSLATE_ARROW_CYLINDER_CAMERA_DISTANCE_MULTIPLE /
ROTATE_RING_CAMERA_DISTANCE_MULTIPLE;
var arrowCylinderDimensions = {
x: arrowCylinderDimension,
y: arrowCylinderDimension * TRANSLATE_ARROW_CYLINDER_Y_MULTIPLE,
z: arrowCylinderDimension
};
var arrowConeDimension = rotateDimension * TRANSLATE_ARROW_CONE_CAMERA_DISTANCE_MULTIPLE /
ROTATE_RING_CAMERA_DISTANCE_MULTIPLE;
var arrowConeDimensions = { x: arrowConeDimension, y: arrowConeDimension, z: arrowConeDimension };
var arrowCylinderOffset = rotateDimension * TRANSLATE_ARROW_CYLINDER_OFFSET / ROTATE_RING_CAMERA_DISTANCE_MULTIPLE;
var arrowConeOffset = arrowCylinderDimensions.y * TRANSLATE_ARROW_CONE_OFFSET_CYLINDER_DIMENSION_MULTIPLE;
var cylinderXPosition = { x: arrowCylinderOffset, y: 0, z: 0 };
cylinderXPosition = Vec3.sum(position, Vec3.multiplyQbyV(rotation, cylinderXPosition));
Entities.editEntity(handleTranslateXCylinder, {
position: cylinderXPosition,
rotation: rotationX,
dimensions: arrowCylinderDimensions
});
var cylinderXOffset = Vec3.subtract(cylinderXPosition, position);
var coneXPosition = Vec3.sum(cylinderXPosition, Vec3.multiply(Vec3.normalize(cylinderXOffset), arrowConeOffset));
Entities.editEntity(handleTranslateXCone, {
position: coneXPosition,
rotation: rotationX,
dimensions: arrowConeDimensions
});
var cylinderYPosition = { x: 0, y: arrowCylinderOffset, z: 0 };
cylinderYPosition = Vec3.sum(position, Vec3.multiplyQbyV(rotation, cylinderYPosition));
Entities.editEntity(handleTranslateYCylinder, {
position: cylinderYPosition,
rotation: rotationY,
dimensions: arrowCylinderDimensions
});
var cylinderYOffset = Vec3.subtract(cylinderYPosition, position);
var coneYPosition = Vec3.sum(cylinderYPosition, Vec3.multiply(Vec3.normalize(cylinderYOffset), arrowConeOffset));
Entities.editEntity(handleTranslateYCone, {
position: coneYPosition,
rotation: rotationY,
dimensions: arrowConeDimensions
});
var cylinderZPosition = { x: 0, y: 0, z: arrowCylinderOffset };
cylinderZPosition = Vec3.sum(position, Vec3.multiplyQbyV(rotation, cylinderZPosition));
Entities.editEntity(handleTranslateZCylinder, {
position: cylinderZPosition,
rotation: rotationZ,
dimensions: arrowCylinderDimensions
});
var cylinderZOffset = Vec3.subtract(cylinderZPosition, position);
var coneZPosition = Vec3.sum(cylinderZPosition, Vec3.multiply(Vec3.normalize(cylinderZOffset), arrowConeOffset));
Entities.editEntity(handleTranslateZCone, {
position: coneZPosition,
rotation: rotationZ,
dimensions: arrowConeDimensions
});
// UPDATE SCALE CUBE
var scaleCubeRotation = spaceMode === SPACE_LOCAL ? rotation : Quat.IDENTITY;
var scaleCubeDimension = rotateDimension * SCALE_TOOL_CAMERA_DISTANCE_MULTIPLE /
ROTATE_RING_CAMERA_DISTANCE_MULTIPLE;
var scaleCubeDimensions = { x: scaleCubeDimension, y: scaleCubeDimension, z: scaleCubeDimension };
Entities.editEntity(handleScaleCube, {
position: position,
rotation: scaleCubeRotation,
dimensions: scaleCubeDimensions
});
// UPDATE BOUNDING BOX
Entities.editEntity(handleBoundingBox, {
position: position,
rotation: rotation,
color: handleBoundingBoxColor,
dimensions: dimensions
});
// UPDATE STRETCH HIGHLIGHT PANELS
var edgeOffsetX = BOUNDING_EDGE_OFFSET * dimensions.x;
var edgeOffsetY = BOUNDING_EDGE_OFFSET * dimensions.y;
var edgeOffsetZ = BOUNDING_EDGE_OFFSET * dimensions.z;
var RBFPosition = { x: edgeOffsetX, y: -edgeOffsetY, z: edgeOffsetZ };
RBFPosition = Vec3.sum(position, Vec3.multiplyQbyV(rotation, RBFPosition));
var RTFPosition = { x: edgeOffsetX, y: edgeOffsetY, z: edgeOffsetZ };
RTFPosition = Vec3.sum(position, Vec3.multiplyQbyV(rotation, RTFPosition));
var LTNPosition = { x: -edgeOffsetX, y: edgeOffsetY, z: -edgeOffsetZ };
LTNPosition = Vec3.sum(position, Vec3.multiplyQbyV(rotation, LTNPosition));
var RTNPosition = { x: edgeOffsetX, y: edgeOffsetY, z: -edgeOffsetZ };
RTNPosition = Vec3.sum(position, Vec3.multiplyQbyV(rotation, RTNPosition));
var RBFPositionRotated = Vec3.multiplyQbyV(rotationInverse, RBFPosition);
var RTFPositionRotated = Vec3.multiplyQbyV(rotationInverse, RTFPosition);
var LTNPositionRotated = Vec3.multiplyQbyV(rotationInverse, LTNPosition);
var RTNPositionRotated = Vec3.multiplyQbyV(rotationInverse, RTNPosition);
var stretchPanelXDimensions = Vec3.subtract(RTNPositionRotated, RBFPositionRotated);
var tempY = Math.abs(stretchPanelXDimensions.y);
stretchPanelXDimensions.x = STRETCH_PANEL_WIDTH;
stretchPanelXDimensions.y = Math.abs(stretchPanelXDimensions.z);
stretchPanelXDimensions.z = tempY;
var stretchPanelXPosition = Vec3.sum(position, Vec3.multiplyQbyV(rotation, { x: dimensions.x / 2, y: 0, z: 0 }));
Entities.editEntity(handleStretchXPanel, {
position: stretchPanelXPosition,
rotation: rotationZ,
dimensions: stretchPanelXDimensions
});
var stretchPanelYDimensions = Vec3.subtract(LTNPositionRotated, RTFPositionRotated);
var tempX = Math.abs(stretchPanelYDimensions.x);
stretchPanelYDimensions.x = Math.abs(stretchPanelYDimensions.z);
stretchPanelYDimensions.y = STRETCH_PANEL_WIDTH;
stretchPanelYDimensions.z = tempX;
var stretchPanelYPosition = Vec3.sum(position, Vec3.multiplyQbyV(rotation, { x: 0, y: dimensions.y / 2, z: 0 }));
Entities.editEntity(handleStretchYPanel, {
position: stretchPanelYPosition,
rotation: rotationY,
dimensions: stretchPanelYDimensions
});
var stretchPanelZDimensions = Vec3.subtract(LTNPositionRotated, RBFPositionRotated);
tempX = Math.abs(stretchPanelZDimensions.x);
stretchPanelZDimensions.x = Math.abs(stretchPanelZDimensions.y);
stretchPanelZDimensions.y = tempX;
stretchPanelZDimensions.z = STRETCH_PANEL_WIDTH;
var stretchPanelZPosition = Vec3.sum(position, Vec3.multiplyQbyV(rotation, { x: 0, y: 0, z: dimensions.z / 2 }));
Entities.editEntity(handleStretchZPanel, {
position: stretchPanelZPosition,
rotation: rotationX,
dimensions: stretchPanelZDimensions
});
// UPDATE STRETCH CUBES
var stretchCubeDimension = rotateDimension * STRETCH_CUBE_CAMERA_DISTANCE_MULTIPLE /
ROTATE_RING_CAMERA_DISTANCE_MULTIPLE;
var stretchCubeDimensions = { x: stretchCubeDimension, y: stretchCubeDimension, z: stretchCubeDimension };
var stretchCubeOffset = rotateDimension * STRETCH_CUBE_OFFSET / ROTATE_RING_CAMERA_DISTANCE_MULTIPLE;
var stretchXPosition, stretchYPosition, stretchZPosition;
if (isActiveTool(handleStretchXCube)) {
stretchXPosition = Vec3.subtract(stretchPanelXPosition, activeStretchCubePanelOffset);
} else {
stretchXPosition = { x: stretchCubeOffset, y: 0, z: 0 };
stretchXPosition = Vec3.sum(position, Vec3.multiplyQbyV(rotation, stretchXPosition));
}
if (isActiveTool(handleStretchYCube)) {
stretchYPosition = Vec3.subtract(stretchPanelYPosition, activeStretchCubePanelOffset);
} else {
stretchYPosition = { x: 0, y: stretchCubeOffset, z: 0 };
stretchYPosition = Vec3.sum(position, Vec3.multiplyQbyV(rotation, stretchYPosition));
}
if (isActiveTool(handleStretchZCube)) {
stretchZPosition = Vec3.subtract(stretchPanelZPosition, activeStretchCubePanelOffset);
} else {
stretchZPosition = { x: 0, y: 0, z: stretchCubeOffset };
stretchZPosition = Vec3.sum(position, Vec3.multiplyQbyV(rotation, stretchZPosition));
}
Entities.editEntity(handleStretchXCube, {
position: stretchXPosition,
rotation: rotationX,
dimensions: stretchCubeDimensions
});
Entities.editEntity(handleStretchYCube, {
position: stretchYPosition,
rotation: rotationY,
dimensions: stretchCubeDimensions
});
Entities.editEntity(handleStretchZCube, {
position: stretchZPosition,
rotation: rotationZ,
dimensions: stretchCubeDimensions
});
// UPDATE SELECTION BOX (CURRENTLY INVISIBLE WITH 0 ALPHA FOR TRANSLATE XZ TOOL)
var inModeRotate = isActiveTool(handleRotatePitchXRedRing) ||
isActiveTool(handleRotateYawYGreenRing) ||
isActiveTool(handleRotateRollZBlueRing);
selectionBoxGeometry.visible = !inModeRotate && !isCameraInsideBox;
selectionBoxGeometry.ignorePickIntersection = !selectionBoxGeometry.visible;
Entities.editEntity(selectionBox, selectionBoxGeometry);
// UPDATE ICON TRANSLATE HANDLE
if (SelectionManager.entityType === "ParticleEffect" || SelectionManager.entityType === "ProceduralParticleEffect" || SelectionManager.entityType === "Light") {
var iconSelectionBoxGeometry = {
position: position,
rotation: rotation
};
iconSelectionBoxGeometry.visible = !inModeRotate && isCameraInsideBox;
iconSelectionBoxGeometry.ignorePickIntersection = !iconSelectionBoxGeometry.visible;
Entities.editEntity(iconSelectionBox, iconSelectionBoxGeometry);
} else {
Entities.editEntity(iconSelectionBox, {
visible: false,
ignorePickIntersection: true
});
}
// UPDATE DUPLICATOR (CURRENTLY VISIBLE ONLY IN HMD)
var handleDuplicatorOffset = {
x: DUPLICATOR_OFFSET.x * rotateDimension,
y: DUPLICATOR_OFFSET.y * rotateDimension,
z: DUPLICATOR_OFFSET.z * rotateDimension
};
var handleDuplicatorPos = Vec3.sum(position, Vec3.multiplyQbyV(rotation, handleDuplicatorOffset));
Entities.editEntity(handleDuplicator, {
position: handleDuplicatorPos,
rotation: rotation,
dimensions: scaleCubeDimensions
});
}
that.setHandleTranslateXVisible(!activeTool || isActiveTool(handleTranslateXCone) ||
isActiveTool(handleTranslateXCylinder));
that.setHandleTranslateYVisible(!activeTool || isActiveTool(handleTranslateYCone) ||
isActiveTool(handleTranslateYCylinder));
that.setHandleTranslateZVisible(!activeTool || isActiveTool(handleTranslateZCone) ||
isActiveTool(handleTranslateZCylinder));
that.setHandleRotatePitchVisible(!activeTool || isActiveTool(handleRotatePitchXRedRing));
that.setHandleRotateYawVisible(!activeTool || isActiveTool(handleRotateYawYGreenRing));
that.setHandleRotateRollVisible(!activeTool || isActiveTool(handleRotateRollZBlueRing));
var showScaleStretch = !activeTool && SelectionManager.selections.length === 1 && spaceMode === SPACE_LOCAL;
that.setHandleStretchXVisible(showScaleStretch || isActiveTool(handleStretchXCube));
that.setHandleStretchYVisible(showScaleStretch || isActiveTool(handleStretchYCube));
that.setHandleStretchZVisible(showScaleStretch || isActiveTool(handleStretchZCube));
that.setHandleScaleVisible(showScaleStretch || isActiveTool(handleScaleCube));
var showOutlineForZone = (SelectionManager.selections.length === 1 &&
typeof SelectionManager.savedProperties[SelectionManager.selections[0]] !== "undefined" &&
SelectionManager.savedProperties[SelectionManager.selections[0]].type === "Zone");
that.setHandleBoundingBoxVisible(showOutlineForZone || (!isActiveTool(handleRotatePitchXRedRing) &&
!isActiveTool(handleRotateYawYGreenRing) &&
!isActiveTool(handleRotateRollZBlueRing)));
// ## Duplicator handle for HMD only. ##
//Functionality Deactivated. This is a bit too sensible. We will explore other solutions.
//(uncomment to re-activate)
/*if (HMD.active) {
that.setHandleDuplicatorVisible(!activeTool || isActiveTool(handleDuplicator));
}*/
if (wantDebug) {
print("====== Update Handles <=======");
}
};
Script.update.connect(that.updateHandles);
// FUNCTION: UPDATE ACTIVE ROTATE RING
that.updateActiveRotateRing = function() {
var activeRotateRing = null;
if (isActiveTool(handleRotatePitchXRedRing)) {
activeRotateRing = handleRotatePitchXRedRing;
} else if (isActiveTool(handleRotateYawYGreenRing)) {
activeRotateRing = handleRotateYawYGreenRing;
} else if (isActiveTool(handleRotateRollZBlueRing)) {
activeRotateRing = handleRotateRollZBlueRing;
}
if (activeRotateRing !== null) {
var tickMarksAngle = ctrlPressed ? ROTATE_CTRL_SNAP_ANGLE : ROTATE_DEFAULT_TICK_MARKS_ANGLE;
Entities.editEntity(activeRotateRing, { ring: { majorTickMarksAngle: tickMarksAngle } });
}
};
// FUNCTION: SET TOOL ENTITYS VISIBLE
that.setToolEntitiesVisible = function(isVisible) {
for (var i = 0, length = allToolEntities.length; i < length; i++) {
Entities.editEntity(allToolEntities[i], { visible: isVisible, ignorePickIntersection: !isVisible });
}
};
// FUNCTION: SET HANDLE TRANSLATE VISIBLE
that.setHandleTranslateVisible = function(isVisible) {
that.setHandleTranslateXVisible(isVisible);
that.setHandleTranslateYVisible(isVisible);
that.setHandleTranslateZVisible(isVisible);
};
that.setHandleTranslateXVisible = function(isVisible) {
Entities.editEntity(handleTranslateXCone, { visible: isVisible, ignorePickIntersection: !isVisible });
Entities.editEntity(handleTranslateXCylinder, { visible: isVisible, ignorePickIntersection: !isVisible });
};
that.setHandleTranslateYVisible = function(isVisible) {
Entities.editEntity(handleTranslateYCone, { visible: isVisible, ignorePickIntersection: !isVisible });
Entities.editEntity(handleTranslateYCylinder, { visible: isVisible, ignorePickIntersection: !isVisible });
};
that.setHandleTranslateZVisible = function(isVisible) {
Entities.editEntity(handleTranslateZCone, { visible: isVisible, ignorePickIntersection: !isVisible });
Entities.editEntity(handleTranslateZCylinder, { visible: isVisible, ignorePickIntersection: !isVisible });
};
// FUNCTION: SET HANDLE ROTATE VISIBLE
that.setHandleRotateVisible = function(isVisible) {
that.setHandleRotatePitchVisible(isVisible);
that.setHandleRotateYawVisible(isVisible);
that.setHandleRotateRollVisible(isVisible);
};
that.setHandleRotatePitchVisible = function(isVisible) {
Entities.editEntity(handleRotatePitchXRedRing, { visible: isVisible, ignorePickIntersection: !isVisible });
};
that.setHandleRotateYawVisible = function(isVisible) {
Entities.editEntity(handleRotateYawYGreenRing, { visible: isVisible, ignorePickIntersection: !isVisible });
};
that.setHandleRotateRollVisible = function(isVisible) {
Entities.editEntity(handleRotateRollZBlueRing, { visible: isVisible, ignorePickIntersection: !isVisible });
};
// FUNCTION: SET HANDLE STRETCH VISIBLE
that.setHandleStretchVisible = function(isVisible) {
that.setHandleStretchXVisible(isVisible);
that.setHandleStretchYVisible(isVisible);
that.setHandleStretchZVisible(isVisible);
};
that.setHandleStretchXVisible = function(isVisible) {
Entities.editEntity(handleStretchXCube, { visible: isVisible, ignorePickIntersection: !isVisible });
};
that.setHandleStretchYVisible = function(isVisible) {
Entities.editEntity(handleStretchYCube, { visible: isVisible, ignorePickIntersection: !isVisible });
};
that.setHandleStretchZVisible = function(isVisible) {
Entities.editEntity(handleStretchZCube, { visible: isVisible, ignorePickIntersection: !isVisible });
};
// FUNCTION: SET HANDLE SCALE VISIBLE
that.setHandleScaleVisible = function(isVisible) {
that.setHandleScaleVisible(isVisible);
that.setHandleBoundingBoxVisible(isVisible);
};
that.setHandleScaleVisible = function(isVisible) {
Entities.editEntity(handleScaleCube, { visible: isVisible, ignorePickIntersection: !isVisible });
};
that.setHandleBoundingBoxVisible = function(isVisible) {
Entities.editEntity(handleBoundingBox, { visible: isVisible, ignorePickIntersection: true });
};
// FUNCTION: SET HANDLE DUPLICATOR VISIBLE
that.setHandleDuplicatorVisible = function(isVisible) {
Entities.editEntity(handleDuplicator, { visible: isVisible, ignorePickIntersection: !isVisible });
};
// FUNCTION: DEBUG PICK PLANE
that.showDebugPickPlane = function(pickPlanePosition, pickPlaneNormal) {
var planePlusNormal = Vec3.sum(pickPlanePosition, pickPlaneNormal);
var rotation = Quat.lookAtSimple(planePlusNormal, pickPlanePosition);
var dimensionXZ = getDistanceToCamera(pickPlanePosition) * 1.25;
var dimensions = { x:dimensionXZ, y:dimensionXZ, z:STRETCH_PANEL_WIDTH };
Entities.editEntity(debugPickPlane, {
position: pickPlanePosition,
rotation: rotation,
dimensions: dimensions,
visible: true
});
};
that.showDebugPickPlaneHit = function(pickHitPosition) {
var dimension = getDistanceToCamera(pickHitPosition) * DEBUG_PICK_PLANE_HIT_CAMERA_DISTANCE_MULTIPLE;
var pickPlaneHit = Entities.addEntity({
type: "Shape",
alpha: 0.5,
shape: "Sphere",
primitiveMode: "solid",
visible: true,
ignorePickIntersection: true,
renderLayer: "front",
color: COLOR_DEBUG_PICK_PLANE_HIT,
position: pickHitPosition,
dimensions: { x: dimension, y: dimension, z: dimension }
}, "local");
debugPickPlaneHits.push(pickPlaneHit);
if (debugPickPlaneHits.length > DEBUG_PICK_PLANE_HIT_LIMIT) {
var removedPickPlaneHit = debugPickPlaneHits.shift();
Entities.deleteEntity(removedPickPlaneHit);
}
};
that.clearDebugPickPlane = function() {
Entities.editEntity(debugPickPlane, { visible: false });
for (var i = 0; i < debugPickPlaneHits.length; i++) {
Entities.deleteEntity(debugPickPlaneHits[i]);
}
debugPickPlaneHits = [];
};
that.rotateSelection = function(rotation) {
SelectionManager.saveProperties();
if (SelectionManager.selections.length === 1) {
SelectionManager.savedProperties[SelectionManager.selections[0]].rotation = Quat.IDENTITY;
}
updateSelectionsRotation(rotation, SelectionManager.worldPosition);
};
that.moveSelection = function(targetPosition) {
SelectionManager.saveProperties();
// editing a parent will cause all the children to automatically follow along, so don't
// edit any entity who has an ancestor in SelectionManager.selections
var toMove = SelectionManager.selections.filter(function (selection) {
if (SelectionManager.selections.indexOf(SelectionManager.savedProperties[selection].parentID) >= 0) {
return false; // a parent is also being moved, so don't issue an edit for this entity
} else {
return true;
}
});
for (var i = 0; i < toMove.length; i++) {
var id = toMove[i];
var properties = SelectionManager.savedProperties[id];
var newPosition = Vec3.sum(targetPosition, Vec3.subtract(properties.position, SelectionManager.worldPosition));
Entities.editEntity(id, { position: newPosition });
}
};
that.rotate90degreeSelection = function(axis) {
//axis is a string and expect "X", "Y" or "Z"
if (!SelectionManager.hasSelection() || !SelectionManager.hasUnlockedSelection()) {
audioFeedback.rejection();
Window.notifyEditError("You have nothing selected, or the selection is locked.");
} else {
var currentRotation, axisRotation;
SelectionManager.saveProperties();
if (selectionManager.selections.length === 1 && spaceMode === SPACE_LOCAL) {
currentRotation = SelectionManager.localRotation;
} else {
currentRotation = SelectionManager.worldRotation;
}
switch(axis) {
case "X":
axisRotation = Quat.angleAxis(90.0, Quat.getRight(currentRotation));
break;
case "Y":
axisRotation = Quat.angleAxis(90.0, Quat.getUp(currentRotation));
break;
case "Z":
axisRotation = Quat.angleAxis(90.0, Quat.getForward(currentRotation));
break;
default:
return;
}
updateSelectionsRotation(axisRotation, SelectionManager.worldPosition);
SelectionManager._update(false, this);
that.createApp.pushCommandForSelections();
audioFeedback.action();
}
};
function addUnlitMaterialOnToolEntity(toolEntityParentID) {
var toolEntitiesMaterialData = "{\n \"materialVersion\": 1,\n \"materials\": [\n {\n \"name\": \"0\",\n \"defaultFallthrough\": true,\n \"unlit\": true,\n \"model\": \"hifi_pbr\"\n }\n ]\n}";
var materialEntityID = Entities.addEntity({
"type": "Material",
"parentID": toolEntityParentID,
"name": "tool-material",
"parentMaterialName": "0",
"materialURL": "materialData",
"priority": 1,
"materialMappingMode": "uv",
"ignorePickIntersection": true,
"materialData": toolEntitiesMaterialData
}, "local");
return materialEntityID;
}
// TOOL DEFINITION: HANDLE TRANSLATE XZ TOOL
function addHandleTranslateXZTool(toolEntity, mode, doDuplicate) {
var initialPick = null;
var isConstrained = false;
var constrainMajorOnly = false;
var startPosition = null;
var duplicatedEntityIDs = null;
var pickPlanePosition = null;
var pickPlaneNormal = { x: 0, y: 1, z: 0 };
var greatestDimension = 0.0;
var startingElevation = 0.0;
addHandleTool(toolEntity, {
mode: mode,
onBegin: function(event, pickRay, pickResult) {
var wantDebug = false;
if (wantDebug) {
print("================== TRANSLATE_XZ(Beg) -> =======================");
Vec3.print(" pickRay", pickRay);
Vec3.print(" pickRay.origin", pickRay.origin);
Vec3.print(" pickResult.intersection", pickResult.intersection);
}
// Duplicate entities if Ctrl is pressed on Windows or Alt is press on Mac.
// This will make a copy of the selected entities and move the _original_ entities, not the new ones.
var isMac = Controller.getValue(Controller.Hardware.Application.PlatformMac);
var isDuplicate = isMac ? event.isAlt : event.isControl;
if (isDuplicate || doDuplicate) {
duplicatedEntityIDs = SelectionManager.duplicateSelection();
var ids = [];
for (var i = 0; i < duplicatedEntityIDs.length; ++i) {
ids.push(duplicatedEntityIDs[i].entityID);
}
SelectionManager.setSelections(ids);
} else {
duplicatedEntityIDs = null;
}
SelectionManager.saveProperties();
that.resetPreviousHandleColor();
that.setHandleTranslateVisible(false);
that.setHandleRotateVisible(false);
that.setHandleScaleVisible(false);
that.setHandleStretchVisible(false);
that.setHandleDuplicatorVisible(false);
startPosition = SelectionManager.worldPosition;
pickPlanePosition = pickResult.intersection;
greatestDimension = Math.max(Math.max(SelectionManager.worldDimensions.x,
SelectionManager.worldDimensions.y),
SelectionManager.worldDimensions.z);
startingElevation = this.elevation(pickRay.origin, pickPlanePosition);
if (wantDebug) {
print(" longest dimension: " + greatestDimension);
print(" starting elevation: " + startingElevation);
}
initialPick = that.createApp.rayPlaneIntersection(pickRay, pickPlanePosition, pickPlaneNormal);
if (debugPickPlaneEnabled) {
that.showDebugPickPlane(pickPlanePosition, pickPlaneNormal);
that.showDebugPickPlaneHit(initialPick);
}
isConstrained = false;
if (wantDebug) {
print("================== TRANSLATE_XZ(End) <- =======================");
}
},
onEnd: function(event, reason) {
that.createApp.pushCommandForSelections(duplicatedEntityIDs);
if (isConstrained) {
Entities.editEntity(xRailToolEntity, {
visible: false,
ignorePickIntersection: true
});
Entities.editEntity(zRailToolEntity, {
visible: false,
ignorePickIntersection: true
});
}
},
elevation: function(origin, intersection) {
return (origin.y - intersection.y) / Vec3.distance(origin, intersection);
},
onMove: function(event) {
var wantDebug = false;
var pickRay = generalComputePickRay(event.x, event.y);
var newPick = that.createApp.rayPlaneIntersection2(pickRay, pickPlanePosition, pickPlaneNormal);
// If the pick ray doesn't hit the pick plane in this direction, do nothing.
// this will happen when someone drags across the horizon from the side they started on.
if (!newPick) {
if (wantDebug) {
print(" "+ mode + "Pick ray does not intersect XZ plane.");
}
// EARLY EXIT--(Invalid ray detected.)
return;
}
if (debugPickPlaneEnabled) {
that.showDebugPickPlaneHit(newPick);
}
var vector = null;
if (initialPick) {
vector = Vec3.subtract(newPick, initialPick);
} else {
vector = newPick;
}
// If the mouse is too close to the horizon of the pick plane, stop moving
var MIN_ELEVATION = 0.02; // largest dimension of object divided by distance to it
var elevation = this.elevation(pickRay.origin, newPick);
if (wantDebug) {
print("Start Elevation: " + startingElevation + ", elevation: " + elevation);
}
if ((startingElevation > 0.0 && elevation < MIN_ELEVATION) ||
(startingElevation < 0.0 && elevation > -MIN_ELEVATION)) {
if (wantDebug) {
print(" "+ mode + " - too close to horizon!");
}
// EARLY EXIT--(Don't proceed past the reached limit.)
return;
}
// If the angular size of the object is too small, stop moving
var MIN_ANGULAR_SIZE = 0.01; // Radians
if (greatestDimension > 0) {
var angularSize = Math.atan(greatestDimension / Vec3.distance(pickRay.origin, newPick));
if (wantDebug) {
print("Angular size = " + angularSize);
}
if (angularSize < MIN_ANGULAR_SIZE) {
return;
}
}
// If shifted, constrain to one axis
if (event.isShifted) {
if (Math.abs(vector.x) > Math.abs(vector.z)) {
vector.z = 0;
} else {
vector.x = 0;
}
if (!isConstrained) {
var xStart = Vec3.sum(startPosition, {
x: -RAIL_AXIS_LENGTH,
y: 0,
z: 0
});
var xEnd = Vec3.sum(startPosition, {
x: RAIL_AXIS_LENGTH,
y: 0,
z: 0
});
var zStart = Vec3.sum(startPosition, {
x: 0,
y: 0,
z: -RAIL_AXIS_LENGTH
});
var zEnd = Vec3.sum(startPosition, {
x: 0,
y: 0,
z: RAIL_AXIS_LENGTH
});
Entities.editEntity(xRailToolEntity, {
linePoints: [ xStart, xEnd ],
visible: true,
ignorePickIntersection: true
});
Entities.editEntity(zRailToolEntity, {
linePoints: [ zStart, zEnd ],
visible: true,
ignorePickIntersection: true
});
isConstrained = true;
}
} else {
if (isConstrained) {
Entities.editEntity(xRailToolEntity, {
visible: false,
ignorePickIntersection: true
});
Entities.editEntity(zRailToolEntity, {
visible: false,
ignorePickIntersection: true
});
isConstrained = false;
}
}
constrainMajorOnly = event.isControl;
var negateAndHalve = -0.5;
var cornerPosition = Vec3.sum(startPosition, Vec3.multiply(negateAndHalve, SelectionManager.worldDimensions));
vector = Vec3.subtract(
that.grid.snapToGrid(Vec3.sum(cornerPosition, vector), constrainMajorOnly),
cornerPosition);
// editing a parent will cause all the children to automatically follow along, so don't
// edit any entity who has an ancestor in SelectionManager.selections
var toMove = SelectionManager.selections.filter(function (selection) {
if (SelectionManager.selections.indexOf(SelectionManager.savedProperties[selection].parentID) >= 0) {
return false; // a parent is also being moved, so don't issue an edit for this entity
} else {
return true;
}
});
for (var i = 0; i < toMove.length; i++) {
var properties = SelectionManager.savedProperties[toMove[i]];
if (!properties) {
continue;
}
var newPosition = Vec3.sum(properties.position, {
x: vector.x,
y: 0,
z: vector.z
});
Entities.editEntity(toMove[i], {
position: newPosition
});
if (wantDebug) {
print("translateXZ... ");
Vec3.print(" vector:", vector);
Vec3.print(" newPosition:", properties.position);
Vec3.print(" newPosition:", newPosition);
}
}
SelectionManager._update(false, this);
}
});
}
// TOOL DEFINITION: HANDLE TRANSLATE TOOL
function addHandleTranslateTool(toolEntity, mode, direction) {
var pickPlanePosition = null;
var pickPlaneNormal = null;
var initialPick = null;
var projectionVector = null;
var previousPickRay = null;
var rotation = null;
addHandleTool(toolEntity, {
mode: mode,
onBegin: function(event, pickRay, pickResult) {
// Duplicate entities if Ctrl is pressed on Windows or Alt is pressed on Mac.
// This will make a copy of the selected entities and move the _original_ entities, not the new ones.
var isMac = Controller.getValue(Controller.Hardware.Application.PlatformMac);
var isDuplicate = isMac ? event.isAlt : event.isControl;
if (isDuplicate) {
duplicatedEntityIDs = SelectionManager.duplicateSelection();
var ids = [];
for (var i = 0; i < duplicatedEntityIDs.length; ++i) {
ids.push(duplicatedEntityIDs[i].entityID);
}
SelectionManager.setSelections(ids);
} else {
duplicatedEntityIDs = null;
}
var axisVector;
if (direction === TRANSLATE_DIRECTION.X) {
axisVector = { x: 1, y: 0, z: 0 };
} else if (direction === TRANSLATE_DIRECTION.Y) {
axisVector = { x: 0, y: 1, z: 0 };
} else if (direction === TRANSLATE_DIRECTION.Z) {
axisVector = { x: 0, y: 0, z: 1 };
}
rotation = spaceMode === SPACE_LOCAL ? SelectionManager.localRotation : SelectionManager.worldRotation;
axisVector = Vec3.multiplyQbyV(rotation, axisVector);
pickPlaneNormal = Vec3.cross(Vec3.cross(pickRay.direction, axisVector), axisVector);
pickPlanePosition = SelectionManager.worldPosition;
initialPick = that.createApp.rayPlaneIntersection(pickRay, pickPlanePosition, pickPlaneNormal);
SelectionManager.saveProperties();
that.resetPreviousHandleColor();
that.setHandleTranslateXVisible(direction === TRANSLATE_DIRECTION.X);
that.setHandleTranslateYVisible(direction === TRANSLATE_DIRECTION.Y);
that.setHandleTranslateZVisible(direction === TRANSLATE_DIRECTION.Z);
that.setHandleRotateVisible(false);
that.setHandleStretchVisible(false);
that.setHandleScaleVisible(false);
that.setHandleDuplicatorVisible(false);
previousPickRay = pickRay;
if (debugPickPlaneEnabled) {
that.showDebugPickPlane(pickPlanePosition, pickPlaneNormal);
that.showDebugPickPlaneHit(initialPick);
}
},
onEnd: function(event, reason) {
that.createApp.pushCommandForSelections(duplicatedEntityIDs);
},
onMove: function(event) {
var pickRay = generalComputePickRay(event.x, event.y);
// Use previousPickRay if new pickRay will cause resulting rayPlaneIntersection values to wrap around
if (usePreviousPickRay(pickRay.direction, previousPickRay.direction, pickPlaneNormal)) {
pickRay = previousPickRay;
}
var newPick = that.createApp.rayPlaneIntersection(pickRay, pickPlanePosition, pickPlaneNormal);
if (debugPickPlaneEnabled) {
that.showDebugPickPlaneHit(newPick);
}
var vector = Vec3.subtract(newPick, initialPick);
if (direction === TRANSLATE_DIRECTION.X) {
projectionVector = { x: 1, y: 0, z: 0 };
} else if (direction === TRANSLATE_DIRECTION.Y) {
projectionVector = { x: 0, y: 1, z: 0 };
} else if (direction === TRANSLATE_DIRECTION.Z) {
projectionVector = { x: 0, y: 0, z: 1 };
}
projectionVector = Vec3.multiplyQbyV(rotation, projectionVector);
var dotVector = Vec3.dot(vector, projectionVector);
vector = Vec3.multiply(dotVector, projectionVector);
var gridOrigin = that.grid.getOrigin();
vector = Vec3.subtract(that.grid.snapToGrid(Vec3.sum(vector, gridOrigin)), gridOrigin);
var wantDebug = false;
if (wantDebug) {
print("translateUpDown... ");
print(" event.y:" + event.y);
Vec3.print(" newIntersection:", newIntersection);
Vec3.print(" vector:", vector);
}
// editing a parent will cause all the children to automatically follow along, so don't
// edit any entity who has an ancestor in SelectionManager.selections
var toMove = SelectionManager.selections.filter(function (selection) {
if (SelectionManager.selections.indexOf(SelectionManager.savedProperties[selection].parentID) >= 0) {
return false; // a parent is also being moved, so don't issue an edit for this entity
} else {
return true;
}
});
for (var i = 0; i < toMove.length; i++) {
var id = toMove[i];
var properties = SelectionManager.savedProperties[id];
var newPosition = Vec3.sum(properties.position, vector);
Entities.editEntity(id, { position: newPosition });
}
previousPickRay = pickRay;
SelectionManager._update(false, this);
}
});
}
// TOOL DEFINITION: HANDLE STRETCH TOOL
function addHandleStretchTool(toolEntity, mode, directionEnum) {
var initialPick = null;
var initialPosition = null;
var initialDimensions = null;
var rotation = null;
var registrationPoint = null;
var pickPlanePosition = null;
var pickPlaneNormal = null;
var previousPickRay = null;
var directionVector = null;
var axisVector = null;
var signs = null;
var mask = null;
var stretchPanel = null;
var handleStretchCube = null;
var deltaPivot = null;
addHandleTool(toolEntity, {
mode: mode,
onBegin: function(event, pickRay, pickResult) {
if (directionEnum === STRETCH_DIRECTION.X) {
stretchPanel = handleStretchXPanel;
handleStretchCube = handleStretchXCube;
directionVector = { x: -1, y: 0, z: 0 };
} else if (directionEnum === STRETCH_DIRECTION.Y) {
stretchPanel = handleStretchYPanel;
handleStretchCube = handleStretchYCube;
directionVector = { x: 0, y: -1, z: 0 };
} else if (directionEnum === STRETCH_DIRECTION.Z) {
stretchPanel = handleStretchZPanel;
handleStretchCube = handleStretchZCube;
directionVector = { x: 0, y: 0, z: -1 };
}
rotation = SelectionManager.localRotation;
initialPosition = SelectionManager.localPosition;
initialDimensions = SelectionManager.localDimensions;
registrationPoint = SelectionManager.localRegistrationPoint;
axisVector = Vec3.multiply(NEGATE_VECTOR, directionVector);
axisVector = Vec3.multiplyQbyV(rotation, axisVector);
signs = {
x: directionVector.x < 0 ? -1 : (directionVector.x > 0 ? 1 : 0),
y: directionVector.y < 0 ? -1 : (directionVector.y > 0 ? 1 : 0),
z: directionVector.z < 0 ? -1 : (directionVector.z > 0 ? 1 : 0)
};
mask = {
x: Math.abs(directionVector.x) > 0 ? 1 : 0,
y: Math.abs(directionVector.y) > 0 ? 1 : 0,
z: Math.abs(directionVector.z) > 0 ? 1 : 0
};
var pivot = directionVector;
var offset = Vec3.multiply(directionVector, NEGATE_VECTOR);
// Modify range of registrationPoint to be [-0.5, 0.5]
var centeredRP = Vec3.subtract(registrationPoint, {
x: 0.5,
y: 0.5,
z: 0.5
});
// Scale pivot to be in the same range as registrationPoint
var scaledPivot = Vec3.multiply(0.5, pivot);
deltaPivot = Vec3.subtract(centeredRP, scaledPivot);
var scaledOffset = Vec3.multiply(0.5, offset);
// Offset from the registration point
var offsetRP = Vec3.subtract(scaledOffset, centeredRP);
// Scaled offset in world coordinates
var scaledOffsetWorld = Vec3.multiplyVbyV(initialDimensions, offsetRP);
pickPlaneNormal = Vec3.cross(Vec3.cross(pickRay.direction, axisVector), axisVector);
pickPlanePosition = Vec3.sum(initialPosition, Vec3.multiplyQbyV(rotation, scaledOffsetWorld));
initialPick = that.createApp.rayPlaneIntersection(pickRay, pickPlanePosition, pickPlaneNormal);
that.setHandleTranslateVisible(false);
that.setHandleRotateVisible(false);
that.setHandleScaleVisible(true);
that.setHandleStretchXVisible(directionEnum === STRETCH_DIRECTION.X);
that.setHandleStretchYVisible(directionEnum === STRETCH_DIRECTION.Y);
that.setHandleStretchZVisible(directionEnum === STRETCH_DIRECTION.Z);
that.setHandleDuplicatorVisible(false);
SelectionManager.saveProperties();
that.resetPreviousHandleColor();
var collisionToRemove = "myAvatar";
var properties = Entities.getEntityProperties(SelectionManager.selections[0]);
if (properties.collidesWith.indexOf(collisionToRemove) > -1) {
var newCollidesWith = properties.collidesWith.replace(collisionToRemove, "");
Entities.editEntity(SelectionManager.selections[0], {collidesWith: newCollidesWith});
that.replaceCollisionsAfterStretch = true;
}
if (stretchPanel !== null) {
Entities.editEntity(stretchPanel, { visible: true, ignorePickIntersection: false });
}
var stretchCubeProperties = Entities.getEntityProperties(handleStretchCube, ["position"]);
var stretchPanelProperties = Entities.getEntityProperties(stretchPanel, ["position"]);
activeStretchCubePanelOffset = Vec3.subtract(stretchPanelProperties.position, stretchCubeProperties.position);
previousPickRay = pickRay;
if (debugPickPlaneEnabled) {
that.showDebugPickPlane(pickPlanePosition, pickPlaneNormal);
that.showDebugPickPlaneHit(initialPick);
}
},
onEnd: function(event, reason) {
if (that.replaceCollisionsAfterStretch) {
var newCollidesWith = SelectionManager.savedProperties[SelectionManager.selections[0]].collidesWith;
Entities.editEntity(SelectionManager.selections[0], {collidesWith: newCollidesWith});
that.replaceCollisionsAfterStretch = false;
}
if (stretchPanel !== null) {
Entities.editEntity(stretchPanel, { visible: false, ignorePickIntersection: true });
}
activeStretchCubePanelOffset = null;
that.createApp.pushCommandForSelections();
},
onMove: function(event) {
var pickRay = generalComputePickRay(event.x, event.y);
// Use previousPickRay if new pickRay will cause resulting rayPlaneIntersection values to wrap around
if (usePreviousPickRay(pickRay.direction, previousPickRay.direction, pickPlaneNormal)) {
pickRay = previousPickRay;
}
var newPick = that.createApp.rayPlaneIntersection(pickRay, pickPlanePosition, pickPlaneNormal);
if (debugPickPlaneEnabled) {
that.showDebugPickPlaneHit(newPick);
}
var changeInDimensions = Vec3.subtract(newPick, initialPick);
var dotVector = Vec3.dot(changeInDimensions, axisVector);
changeInDimensions = Vec3.multiply(dotVector, axisVector);
changeInDimensions = Vec3.multiplyQbyV(Quat.inverse(rotation), changeInDimensions);
changeInDimensions = Vec3.multiplyVbyV(mask, changeInDimensions);
changeInDimensions = that.grid.snapToSpacing(changeInDimensions);
changeInDimensions = Vec3.multiply(NEGATE_VECTOR, Vec3.multiplyVbyV(signs, changeInDimensions));
var newDimensions = Vec3.sum(initialDimensions, changeInDimensions);
var minimumDimension = Entities.getPropertyInfo("dimensions").minimum;
if (newDimensions.x < minimumDimension) {
newDimensions.x = minimumDimension;
changeInDimensions.x = minimumDimension - initialDimensions.x;
}
if (newDimensions.y < minimumDimension) {
newDimensions.y = minimumDimension;
changeInDimensions.y = minimumDimension - initialDimensions.y;
}
if (newDimensions.z < minimumDimension) {
newDimensions.z = minimumDimension;
changeInDimensions.z = minimumDimension - initialDimensions.z;
}
var changeInPosition = Vec3.multiplyQbyV(rotation, Vec3.multiplyVbyV(deltaPivot, changeInDimensions));
var newPosition = Vec3.sum(initialPosition, changeInPosition);
Entities.editEntity(SelectionManager.selections[0], {
position: newPosition,
dimensions: newDimensions
});
var wantDebug = false;
if (wantDebug) {
print(mode);
Vec3.print(" changeInDimensions:", changeInDimensions);
Vec3.print(" newDimensions:", newDimensions);
Vec3.print(" changeInPosition:", changeInPosition);
Vec3.print(" newPosition:", newPosition);
}
previousPickRay = pickRay;
SelectionManager._update(false, this);
}
});
}
// TOOL DEFINITION: HANDLE SCALE TOOL
function addHandleScaleTool(toolEntity, mode) {
var initialPick = null;
var initialPosition = null;
var initialDimensions = null;
var pickPlanePosition = null;
var pickPlaneNormal = null;
var previousPickRay = null;
addHandleTool(toolEntity, {
mode: mode,
onBegin: function(event, pickRay, pickResult) {
initialPosition = SelectionManager.localPosition;
initialDimensions = SelectionManager.localDimensions;
pickPlanePosition = initialPosition;
pickPlaneNormal = Vec3.subtract(pickRay.origin, pickPlanePosition);
initialPick = that.createApp.rayPlaneIntersection(pickRay, pickPlanePosition, pickPlaneNormal);
that.setHandleTranslateVisible(false);
that.setHandleRotateVisible(false);
that.setHandleScaleVisible(true);
that.setHandleStretchVisible(false);
that.setHandleDuplicatorVisible(false);
SelectionManager.saveProperties();
that.resetPreviousHandleColor();
var collisionToRemove = "myAvatar";
var properties = Entities.getEntityProperties(SelectionManager.selections[0]);
if (properties.collidesWith.indexOf(collisionToRemove) > -1) {
var newCollidesWith = properties.collidesWith.replace(collisionToRemove, "");
Entities.editEntity(SelectionManager.selections[0], {collidesWith: newCollidesWith});
that.replaceCollisionsAfterStretch = true;
}
previousPickRay = pickRay;
if (debugPickPlaneEnabled) {
that.showDebugPickPlane(pickPlanePosition, pickPlaneNormal);
that.showDebugPickPlaneHit(initialPick);
}
},
onEnd: function(event, reason) {
if (that.replaceCollisionsAfterStretch) {
var newCollidesWith = SelectionManager.savedProperties[SelectionManager.selections[0]].collidesWith;
Entities.editEntity(SelectionManager.selections[0], {collidesWith: newCollidesWith});
that.replaceCollisionsAfterStretch = false;
}
that.createApp.pushCommandForSelections();
},
onMove: function(event) {
var pickRay = generalComputePickRay(event.x, event.y);
// Use previousPickRay if new pickRay will cause resulting rayPlaneIntersection values to wrap around
if (usePreviousPickRay(pickRay.direction, previousPickRay.direction, pickPlaneNormal)) {
pickRay = previousPickRay;
}
var newPick = that.createApp.rayPlaneIntersection(pickRay, pickPlanePosition, pickPlaneNormal);
if (debugPickPlaneEnabled) {
that.showDebugPickPlaneHit(newPick);
}
var toCameraDistance = getDistanceToCamera(initialPosition);
var dimensionsMultiple = toCameraDistance * SCALE_DIMENSIONS_CAMERA_DISTANCE_MULTIPLE;
var changeInDimensions = Vec3.subtract(newPick, initialPick);
changeInDimensions = Vec3.multiplyQbyV(Quat.inverse(Camera.orientation), changeInDimensions);
changeInDimensions = that.grid.snapToSpacing(changeInDimensions);
changeInDimensions = Vec3.multiply(changeInDimensions, dimensionsMultiple);
var averageDimensionChange = (changeInDimensions.x + changeInDimensions.y + changeInDimensions.z) / 3;
var averageInitialDimension = (initialDimensions.x + initialDimensions.y + initialDimensions.z) / 3;
percentChange = averageDimensionChange / averageInitialDimension;
percentChange += 1.0;
var newDimensions = Vec3.multiply(percentChange, initialDimensions);
newDimensions.x = Math.abs(newDimensions.x);
newDimensions.y = Math.abs(newDimensions.y);
newDimensions.z = Math.abs(newDimensions.z);
var minimumDimension = Entities.getPropertyInfo("dimensions").minimum;
if (newDimensions.x < minimumDimension) {
newDimensions.x = minimumDimension;
changeInDimensions.x = minimumDimension - initialDimensions.x;
}
if (newDimensions.y < minimumDimension) {
newDimensions.y = minimumDimension;
changeInDimensions.y = minimumDimension - initialDimensions.y;
}
if (newDimensions.z < minimumDimension) {
newDimensions.z = minimumDimension;
changeInDimensions.z = minimumDimension - initialDimensions.z;
}
Entities.editEntity(SelectionManager.selections[0], { dimensions: newDimensions });
var wantDebug = false;
if (wantDebug) {
print(mode);
Vec3.print(" changeInDimensions:", changeInDimensions);
Vec3.print(" newDimensions:", newDimensions);
}
previousPickRay = pickRay;
SelectionManager._update(false, this);
}
});
}
// FUNCTION: UPDATE ROTATION DEGREES TOOL ENTITY
function updateRotationDegreesToolEntity(angleFromZero, position) {
var toCameraDistance = getDistanceToCamera(position);
var toolEntityProps = {
position: position,
dimensions: {
x: toCameraDistance * ROTATE_DISPLAY_SIZE_X_MULTIPLIER,
y: toCameraDistance * ROTATE_DISPLAY_SIZE_Y_MULTIPLIER
},
lineHeight: toCameraDistance * ROTATE_DISPLAY_LINE_HEIGHT_MULTIPLIER,
text: normalizeDegrees(-angleFromZero) + "°"
};
Entities.editEntity(rotationDegreesDisplay, toolEntityProps);
}
// FUNCTION DEF: updateSelectionsRotation
// Helper func used by rotation handle tools
function updateSelectionsRotation(rotationChange, initialPosition) {
if (!rotationChange) {
print("ERROR: entitySelectionTool.updateSelectionsRotation - Invalid arg specified!!");
// EARLY EXIT
return;
}
// Entities should only reposition if we are rotating multiple selections around
// the selections center point. Otherwise, the rotation will be around the entities
// registration point which does not need repositioning.
var reposition = (SelectionManager.selections.length > 1);
// editing a parent will cause all the children to automatically follow along, so don't
// edit any entity who has an ancestor in SelectionManager.selections
var toRotate = SelectionManager.selections.filter(function (selection) {
if (SelectionManager.selections.indexOf(SelectionManager.savedProperties[selection].parentID) >= 0) {
return false; // a parent is also being moved, so don't issue an edit for this entity
} else {
return true;
}
});
for (var i = 0; i < toRotate.length; i++) {
var entityID = toRotate[i];
var initialProperties = SelectionManager.savedProperties[entityID];
var newProperties = {
rotation: Quat.multiply(rotationChange, initialProperties.rotation)
};
if (reposition) {
var dPos = Vec3.subtract(initialProperties.position, initialPosition);
dPos = Vec3.multiplyQbyV(rotationChange, dPos);
newProperties.position = Vec3.sum(initialPosition, dPos);
}
Entities.editEntity(entityID, newProperties);
}
}
// TOOL DEFINITION: HANDLE ROTATION TOOL
function addHandleRotateTool(toolEntity, mode, direction) {
var selectedHandle = null;
var worldRotation = null;
var initialRotation = null;
var rotationCenter = null;
var rotationNormal = null;
var rotationZero = null;
var rotationDegreesPosition = null;
addHandleTool(toolEntity, {
mode: mode,
onBegin: function(event, pickRay, pickResult) {
var wantDebug = false;
if (wantDebug) {
print("================== " + getMode() + "(addHandleRotateTool onBegin) -> =======================");
}
if (direction === ROTATE_DIRECTION.PITCH) {
rotationNormal = { x: 1, y: 0, z: 0 };
worldRotation = worldRotationX;
selectedHandle = handleRotatePitchXRedRing;
} else if (direction === ROTATE_DIRECTION.YAW) {
rotationNormal = { x: 0, y: 1, z: 0 };
worldRotation = worldRotationY;
selectedHandle = handleRotateYawYGreenRing;
} else if (direction === ROTATE_DIRECTION.ROLL) {
rotationNormal = { x: 0, y: 0, z: 1 };
worldRotation = worldRotationZ;
selectedHandle = handleRotateRollZBlueRing;
}
initialRotation = spaceMode === SPACE_LOCAL ? SelectionManager.localRotation : SelectionManager.worldRotation;
rotationNormal = Vec3.multiplyQbyV(initialRotation, rotationNormal);
rotationCenter = SelectionManager.worldPosition;
SelectionManager.saveProperties();
that.resetPreviousHandleColor();
that.setHandleTranslateVisible(false);
that.setHandleRotatePitchVisible(direction === ROTATE_DIRECTION.PITCH);
that.setHandleRotateYawVisible(direction === ROTATE_DIRECTION.YAW);
that.setHandleRotateRollVisible(direction === ROTATE_DIRECTION.ROLL);
that.setHandleStretchVisible(false);
that.setHandleScaleVisible(false);
that.setHandleDuplicatorVisible(false);
Entities.editEntity(selectedHandle, {
primitiveMode: "lines",
ring: {
hasTickMarks: true,
innerRadius: ROTATE_RING_SELECTED_INNER_RADIUS
}
});
Entities.editEntity(rotationDegreesDisplay, { visible: true });
Entities.editEntity(handleRotateCurrentRing, {
position: rotationCenter,
rotation: worldRotation,
ring: {
startAngle: 0,
endAngle: 0
},
visible: true,
ignorePickIntersection: false
});
// editOverlays may not have committed rotation changes.
// Compute zero position based on where the toolEntity will be eventually.
var initialPick = that.createApp.rayPlaneIntersection(pickRay, rotationCenter, rotationNormal);
// In case of a parallel ray, this will be null, which will cause early-out
// in the onMove helper.
rotationZero = initialPick;
var rotationCenterToZero = Vec3.subtract(rotationZero, rotationCenter);
var rotationCenterToZeroLength = Vec3.length(rotationCenterToZero);
rotationDegreesPosition = Vec3.sum(rotationCenter, Vec3.multiply(Vec3.normalize(rotationCenterToZero),
rotationCenterToZeroLength * ROTATE_DISPLAY_DISTANCE_MULTIPLIER));
updateRotationDegreesToolEntity(0, rotationDegreesPosition);
if (debugPickPlaneEnabled) {
that.showDebugPickPlane(rotationCenter, rotationNormal);
that.showDebugPickPlaneHit(initialPick);
}
if (wantDebug) {
print("================== " + getMode() + "(addHandleRotateTool onBegin) <- =======================");
}
},
onEnd: function(event, reason) {
var wantDebug = false;
if (wantDebug) {
print("================== " + getMode() + "(addHandleRotateTool onEnd) -> =======================");
}
Entities.editEntity(rotationDegreesDisplay, { visible: false, ignorePickIntersection: true });
Entities.editEntity(selectedHandle, {
primitiveMode: "solid",
ring: {
hasTickMarks: false,
innerRadius: ROTATE_RING_IDLE_INNER_RADIUS
}
});
Entities.editEntity(handleRotateCurrentRing, { visible: false, ignorePickIntersection: true });
that.createApp.pushCommandForSelections();
if (wantDebug) {
print("================== " + getMode() + "(addHandleRotateTool onEnd) <- =======================");
}
},
onMove: function(event) {
if (!rotationZero) {
print("ERROR: entitySelectionTool.addHandleRotateTool.onMove - " +
"Invalid RotationZero Specified (missed rotation target plane?)");
// EARLY EXIT
return;
}
var wantDebug = false;
if (wantDebug) {
print("================== "+ getMode() + "(addHandleRotateTool onMove) -> =======================");
Vec3.print(" rotationZero: ", rotationZero);
}
var pickRay = generalComputePickRay(event.x, event.y);
var result = that.createApp.rayPlaneIntersection(pickRay, rotationCenter, rotationNormal);
if (result) {
var centerToZero = Vec3.subtract(rotationZero, rotationCenter);
var centerToIntersect = Vec3.subtract(result, rotationCenter);
if (wantDebug) {
Vec3.print(" RotationNormal: ", rotationNormal);
Vec3.print(" rotationZero: ", rotationZero);
Vec3.print(" rotationCenter: ", rotationCenter);
Vec3.print(" intersect: ", result);
Vec3.print(" centerToZero: ", centerToZero);
Vec3.print(" centerToIntersect: ", centerToIntersect);
}
// Note: orientedAngle which wants normalized centerToZero and centerToIntersect
// handles that internally, so it's to pass unnormalized vectors here.
var angleFromZero = Vec3.orientedAngle(centerToZero, centerToIntersect, rotationNormal);
var snapAngle = ctrlPressed ? ROTATE_CTRL_SNAP_ANGLE : ROTATE_DEFAULT_SNAP_ANGLE;
angleFromZero = Math.floor(angleFromZero / snapAngle) * snapAngle;
var rotationChange = Quat.angleAxis(angleFromZero, rotationNormal);
updateSelectionsRotation(rotationChange, rotationCenter);
updateRotationDegreesToolEntity(-angleFromZero, rotationDegreesPosition);
angleFromZero *= -1;
var startAtCurrent = 0;
var endAtCurrent = angleFromZero;
var maxDegrees = 360;
if (angleFromZero < 0) {
startAtCurrent = maxDegrees + angleFromZero;
endAtCurrent = maxDegrees;
}
Entities.editEntity(handleRotateCurrentRing, {
ring: {
startAngle: startAtCurrent,
endAngle: endAtCurrent
}
});
if (debugPickPlaneEnabled) {
that.showDebugPickPlaneHit(result);
}
}
if (wantDebug) {
print("================== "+ getMode() + "(addHandleRotateTool onMove) <- =======================");
}
}
});
}
addHandleTranslateXZTool(selectionBox, "TRANSLATE_XZ", false);
addHandleTranslateXZTool(iconSelectionBox, "TRANSLATE_XZ", false);
addHandleTranslateXZTool(handleDuplicator, "DUPLICATE", true);
addHandleTranslateTool(handleTranslateXCone, "TRANSLATE_X", TRANSLATE_DIRECTION.X);
addHandleTranslateTool(handleTranslateXCylinder, "TRANSLATE_X", TRANSLATE_DIRECTION.X);
addHandleTranslateTool(handleTranslateYCone, "TRANSLATE_Y", TRANSLATE_DIRECTION.Y);
addHandleTranslateTool(handleTranslateYCylinder, "TRANSLATE_Y", TRANSLATE_DIRECTION.Y);
addHandleTranslateTool(handleTranslateZCone, "TRANSLATE_Z", TRANSLATE_DIRECTION.Z);
addHandleTranslateTool(handleTranslateZCylinder, "TRANSLATE_Z", TRANSLATE_DIRECTION.Z);
addHandleRotateTool(handleRotatePitchXRedRing, "ROTATE_PITCH", ROTATE_DIRECTION.PITCH);
addHandleRotateTool(handleRotateYawYGreenRing, "ROTATE_YAW", ROTATE_DIRECTION.YAW);
addHandleRotateTool(handleRotateRollZBlueRing, "ROTATE_ROLL", ROTATE_DIRECTION.ROLL);
addHandleStretchTool(handleStretchXCube, "STRETCH_X", STRETCH_DIRECTION.X);
addHandleStretchTool(handleStretchYCube, "STRETCH_Y", STRETCH_DIRECTION.Y);
addHandleStretchTool(handleStretchZCube, "STRETCH_Z", STRETCH_DIRECTION.Z);
addHandleScaleTool(handleScaleCube, "SCALE");
return that;
}());