mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 14:47:41 +02:00
Merge branch 'master' of https://github.com/highfidelity/hifi into temp1
This commit is contained in:
commit
7de54917b8
8 changed files with 422 additions and 61 deletions
|
@ -330,6 +330,8 @@
|
||||||
elLightSections[i].style.display = 'block';
|
elLightSections[i].style.display = 'block';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
elLightSpotLight.checked = properties.isSpotlight;
|
||||||
|
|
||||||
elLightColorRed.value = properties.color.red;
|
elLightColorRed.value = properties.color.red;
|
||||||
elLightColorGreen.value = properties.color.green;
|
elLightColorGreen.value = properties.color.green;
|
||||||
elLightColorBlue.value = properties.color.blue;
|
elLightColorBlue.value = properties.color.blue;
|
||||||
|
|
|
@ -301,6 +301,8 @@ SelectionDisplay = (function () {
|
||||||
var grabberSolid = true;
|
var grabberSolid = true;
|
||||||
var grabberMoveUpPosition = { x: 0, y: 0, z: 0 };
|
var grabberMoveUpPosition = { x: 0, y: 0, z: 0 };
|
||||||
|
|
||||||
|
var lightOverlayColor = { red: 255, green: 153, blue: 0 };
|
||||||
|
|
||||||
var grabberPropertiesCorner = {
|
var grabberPropertiesCorner = {
|
||||||
position: { x:0, y: 0, z: 0},
|
position: { x:0, y: 0, z: 0},
|
||||||
size: grabberSizeCorner,
|
size: grabberSizeCorner,
|
||||||
|
@ -340,6 +342,11 @@ SelectionDisplay = (function () {
|
||||||
borderSize: 1.4,
|
borderSize: 1.4,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
var spotLightLineProperties = {
|
||||||
|
color: lightOverlayColor,
|
||||||
|
lineWidth: 1.5,
|
||||||
|
};
|
||||||
|
|
||||||
var highlightBox = Overlays.addOverlay("cube", {
|
var highlightBox = Overlays.addOverlay("cube", {
|
||||||
position: { x:0, y: 0, z: 0},
|
position: { x:0, y: 0, z: 0},
|
||||||
size: 1,
|
size: 1,
|
||||||
|
@ -434,6 +441,44 @@ SelectionDisplay = (function () {
|
||||||
var grabberEdgeFR = Overlays.addOverlay("cube", grabberPropertiesEdge);
|
var grabberEdgeFR = Overlays.addOverlay("cube", grabberPropertiesEdge);
|
||||||
var grabberEdgeFL = Overlays.addOverlay("cube", grabberPropertiesEdge);
|
var grabberEdgeFL = Overlays.addOverlay("cube", grabberPropertiesEdge);
|
||||||
|
|
||||||
|
var grabberSpotLightCircle = Overlays.addOverlay("circle3d", {
|
||||||
|
color: lightOverlayColor,
|
||||||
|
isSolid: false
|
||||||
|
});
|
||||||
|
var grabberSpotLightLineT = Overlays.addOverlay("line3d", spotLightLineProperties);
|
||||||
|
var grabberSpotLightLineB = Overlays.addOverlay("line3d", spotLightLineProperties);
|
||||||
|
var grabberSpotLightLineL = Overlays.addOverlay("line3d", spotLightLineProperties);
|
||||||
|
var grabberSpotLightLineR = Overlays.addOverlay("line3d", spotLightLineProperties);
|
||||||
|
|
||||||
|
var grabberSpotLightCenter = Overlays.addOverlay("cube", grabberPropertiesEdge);
|
||||||
|
var grabberSpotLightRadius = Overlays.addOverlay("cube", grabberPropertiesEdge);
|
||||||
|
var grabberSpotLightL = Overlays.addOverlay("cube", grabberPropertiesEdge);
|
||||||
|
var grabberSpotLightR = Overlays.addOverlay("cube", grabberPropertiesEdge);
|
||||||
|
var grabberSpotLightT = Overlays.addOverlay("cube", grabberPropertiesEdge);
|
||||||
|
var grabberSpotLightB = Overlays.addOverlay("cube", grabberPropertiesEdge);
|
||||||
|
|
||||||
|
var grabberPointLightCircleX = Overlays.addOverlay("circle3d", {
|
||||||
|
rotation: Quat.fromPitchYawRollDegrees(0, 90, 0),
|
||||||
|
color: lightOverlayColor,
|
||||||
|
isSolid: false
|
||||||
|
});
|
||||||
|
var grabberPointLightCircleY = Overlays.addOverlay("circle3d", {
|
||||||
|
rotation: Quat.fromPitchYawRollDegrees(90, 0, 0),
|
||||||
|
color: lightOverlayColor,
|
||||||
|
isSolid: false
|
||||||
|
});
|
||||||
|
var grabberPointLightCircleZ = Overlays.addOverlay("circle3d", {
|
||||||
|
rotation: Quat.fromPitchYawRollDegrees(0, 0, 0),
|
||||||
|
color: lightOverlayColor,
|
||||||
|
isSolid: false
|
||||||
|
});
|
||||||
|
var grabberPointLightT = Overlays.addOverlay("cube", grabberPropertiesEdge);
|
||||||
|
var grabberPointLightB = Overlays.addOverlay("cube", grabberPropertiesEdge);
|
||||||
|
var grabberPointLightL = Overlays.addOverlay("cube", grabberPropertiesEdge);
|
||||||
|
var grabberPointLightR = Overlays.addOverlay("cube", grabberPropertiesEdge);
|
||||||
|
var grabberPointLightF = Overlays.addOverlay("cube", grabberPropertiesEdge);
|
||||||
|
var grabberPointLightN = Overlays.addOverlay("cube", grabberPropertiesEdge);
|
||||||
|
|
||||||
var stretchHandles = [
|
var stretchHandles = [
|
||||||
grabberLBN,
|
grabberLBN,
|
||||||
grabberRBN,
|
grabberRBN,
|
||||||
|
@ -461,6 +506,25 @@ SelectionDisplay = (function () {
|
||||||
grabberEdgeNL,
|
grabberEdgeNL,
|
||||||
grabberEdgeFR,
|
grabberEdgeFR,
|
||||||
grabberEdgeFL,
|
grabberEdgeFL,
|
||||||
|
|
||||||
|
grabberSpotLightLineT,
|
||||||
|
grabberSpotLightLineB,
|
||||||
|
grabberSpotLightLineL,
|
||||||
|
grabberSpotLightLineR,
|
||||||
|
|
||||||
|
grabberSpotLightCenter,
|
||||||
|
grabberSpotLightRadius,
|
||||||
|
grabberSpotLightL,
|
||||||
|
grabberSpotLightR,
|
||||||
|
grabberSpotLightT,
|
||||||
|
grabberSpotLightB,
|
||||||
|
|
||||||
|
grabberPointLightT,
|
||||||
|
grabberPointLightB,
|
||||||
|
grabberPointLightL,
|
||||||
|
grabberPointLightR,
|
||||||
|
grabberPointLightF,
|
||||||
|
grabberPointLightN,
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
@ -648,6 +712,10 @@ SelectionDisplay = (function () {
|
||||||
yRailOverlay,
|
yRailOverlay,
|
||||||
zRailOverlay,
|
zRailOverlay,
|
||||||
baseOfEntityProjectionOverlay,
|
baseOfEntityProjectionOverlay,
|
||||||
|
grabberSpotLightCircle,
|
||||||
|
grabberPointLightCircleX,
|
||||||
|
grabberPointLightCircleY,
|
||||||
|
grabberPointLightCircleZ,
|
||||||
].concat(stretchHandles);
|
].concat(stretchHandles);
|
||||||
|
|
||||||
overlayNames[highlightBox] = "highlightBox";
|
overlayNames[highlightBox] = "highlightBox";
|
||||||
|
@ -942,13 +1010,20 @@ SelectionDisplay = (function () {
|
||||||
var translateHandlesVisible = true;
|
var translateHandlesVisible = true;
|
||||||
var stretchHandlesVisible = true;
|
var stretchHandlesVisible = true;
|
||||||
var selectionBoxVisible = true;
|
var selectionBoxVisible = true;
|
||||||
|
var isPointLight = false;
|
||||||
|
|
||||||
|
if (selectionManager.selections.length == 1) {
|
||||||
|
var properties = Entities.getEntityProperties(selectionManager.selections[0]);
|
||||||
|
isPointLight = properties.type == "Light" && !properties.isSpotlight;
|
||||||
|
}
|
||||||
|
|
||||||
if (mode == "ROTATE_YAW" || mode == "ROTATE_PITCH" || mode == "ROTATE_ROLL" || mode == "TRANSLATE_X in case they Z") {
|
if (mode == "ROTATE_YAW" || mode == "ROTATE_PITCH" || mode == "ROTATE_ROLL" || mode == "TRANSLATE_X in case they Z") {
|
||||||
rotationOverlaysVisible = true;
|
rotationOverlaysVisible = true;
|
||||||
rotateHandlesVisible = false;
|
rotateHandlesVisible = false;
|
||||||
translateHandlesVisible = false;
|
translateHandlesVisible = false;
|
||||||
stretchHandlesVisible = false;
|
stretchHandlesVisible = false;
|
||||||
selectionBoxVisible = false;
|
selectionBoxVisible = false;
|
||||||
} else if (mode == "TRANSLATE_UP_DOWN") {
|
} else if (mode == "TRANSLATE_UP_DOWN" || isPointLight) {
|
||||||
rotateHandlesVisible = false;
|
rotateHandlesVisible = false;
|
||||||
stretchHandlesVisible = false;
|
stretchHandlesVisible = false;
|
||||||
} else if (mode != "UNKNOWN") {
|
} else if (mode != "UNKNOWN") {
|
||||||
|
@ -1122,6 +1197,171 @@ SelectionDisplay = (function () {
|
||||||
|
|
||||||
var stretchHandlesVisible = spaceMode == SPACE_LOCAL;
|
var stretchHandlesVisible = spaceMode == SPACE_LOCAL;
|
||||||
var extendedStretchHandlesVisible = stretchHandlesVisible && showExtendedStretchHandles;
|
var extendedStretchHandlesVisible = stretchHandlesVisible && showExtendedStretchHandles;
|
||||||
|
|
||||||
|
if (selectionManager.selections.length == 1 ) {
|
||||||
|
var properties = Entities.getEntityProperties(selectionManager.selections[0]);
|
||||||
|
if (properties.type == "Light" && properties.isSpotlight == true) {
|
||||||
|
var stretchHandlesVisible = false;
|
||||||
|
var extendedStretchHandlesVisible = false;
|
||||||
|
|
||||||
|
Overlays.editOverlay(grabberSpotLightCenter, {
|
||||||
|
position: position,
|
||||||
|
visible: false,
|
||||||
|
});
|
||||||
|
Overlays.editOverlay(grabberSpotLightRadius, {
|
||||||
|
position: NEAR,
|
||||||
|
rotation: rotation,
|
||||||
|
visible: true,
|
||||||
|
});
|
||||||
|
var distance = (properties.dimensions.z / 2) * Math.tan(properties.cutoff * (Math.PI / 180));
|
||||||
|
|
||||||
|
Overlays.editOverlay(grabberSpotLightL, {
|
||||||
|
position: EdgeNL,
|
||||||
|
rotation: rotation,
|
||||||
|
visible: true,
|
||||||
|
});
|
||||||
|
Overlays.editOverlay(grabberSpotLightR, {
|
||||||
|
position: EdgeNR,
|
||||||
|
rotation: rotation,
|
||||||
|
visible: true,
|
||||||
|
});
|
||||||
|
Overlays.editOverlay(grabberSpotLightT, {
|
||||||
|
position: EdgeTN,
|
||||||
|
rotation: rotation,
|
||||||
|
visible: true,
|
||||||
|
});
|
||||||
|
Overlays.editOverlay(grabberSpotLightB, {
|
||||||
|
position: EdgeBN,
|
||||||
|
rotation: rotation,
|
||||||
|
visible: true,
|
||||||
|
});
|
||||||
|
Overlays.editOverlay(grabberSpotLightCircle, {
|
||||||
|
position: NEAR,
|
||||||
|
dimensions: { x: distance * 2, y: distance * 2, z: 1 },
|
||||||
|
lineWidth: 1.5,
|
||||||
|
rotation: rotation,
|
||||||
|
visible: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
Overlays.editOverlay(grabberSpotLightLineT, {
|
||||||
|
start: position,
|
||||||
|
end: EdgeTN,
|
||||||
|
visible: true,
|
||||||
|
});
|
||||||
|
Overlays.editOverlay(grabberSpotLightLineB, {
|
||||||
|
start: position,
|
||||||
|
end: EdgeBN,
|
||||||
|
visible: true,
|
||||||
|
});
|
||||||
|
Overlays.editOverlay(grabberSpotLightLineR, {
|
||||||
|
start: position,
|
||||||
|
end: EdgeNR,
|
||||||
|
visible: true,
|
||||||
|
});
|
||||||
|
Overlays.editOverlay(grabberSpotLightLineL, {
|
||||||
|
start: position,
|
||||||
|
end: EdgeNL,
|
||||||
|
visible: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
Overlays.editOverlay(grabberPointLightCircleX, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberPointLightCircleY, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberPointLightCircleZ, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberPointLightT, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberPointLightB, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberPointLightL, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberPointLightR, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberPointLightF, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberPointLightN, { visible: false });
|
||||||
|
} else if (properties.type == "Light" && properties.isSpotlight == false) {
|
||||||
|
var stretchHandlesVisible = false;
|
||||||
|
var extendedStretchHandlesVisible = false;
|
||||||
|
Overlays.editOverlay(grabberPointLightT, {
|
||||||
|
position: TOP,
|
||||||
|
rotation: rotation,
|
||||||
|
visible: true,
|
||||||
|
});
|
||||||
|
Overlays.editOverlay(grabberPointLightB, {
|
||||||
|
position: BOTTOM,
|
||||||
|
rotation: rotation,
|
||||||
|
visible: true,
|
||||||
|
});
|
||||||
|
Overlays.editOverlay(grabberPointLightL, {
|
||||||
|
position: LEFT,
|
||||||
|
rotation: rotation,
|
||||||
|
visible: true,
|
||||||
|
});
|
||||||
|
Overlays.editOverlay(grabberPointLightR, {
|
||||||
|
position: RIGHT,
|
||||||
|
rotation: rotation,
|
||||||
|
visible: true,
|
||||||
|
});
|
||||||
|
Overlays.editOverlay(grabberPointLightF, {
|
||||||
|
position: FAR,
|
||||||
|
rotation: rotation,
|
||||||
|
visible: true,
|
||||||
|
});
|
||||||
|
Overlays.editOverlay(grabberPointLightN, {
|
||||||
|
position: NEAR,
|
||||||
|
rotation: rotation,
|
||||||
|
visible: true,
|
||||||
|
});
|
||||||
|
Overlays.editOverlay(grabberPointLightCircleX, {
|
||||||
|
position: position,
|
||||||
|
rotation: Quat.multiply(rotation, Quat.fromPitchYawRollDegrees(0, 90, 0)),
|
||||||
|
dimensions: { x: properties.dimensions.z, y: properties.dimensions.z, z: 1 },
|
||||||
|
visible: true,
|
||||||
|
});
|
||||||
|
Overlays.editOverlay(grabberPointLightCircleY, {
|
||||||
|
position: position,
|
||||||
|
rotation: Quat.multiply(rotation, Quat.fromPitchYawRollDegrees(90, 0, 0)),
|
||||||
|
dimensions: { x: properties.dimensions.z, y: properties.dimensions.z, z: 1 },
|
||||||
|
visible: true,
|
||||||
|
});
|
||||||
|
Overlays.editOverlay(grabberPointLightCircleZ, {
|
||||||
|
position: position,
|
||||||
|
rotation: rotation,
|
||||||
|
dimensions: { x: properties.dimensions.z, y: properties.dimensions.z, z: 1 },
|
||||||
|
visible: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
Overlays.editOverlay(grabberSpotLightRadius, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberSpotLightL, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberSpotLightR, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberSpotLightT, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberSpotLightB, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberSpotLightCircle, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberSpotLightLineL, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberSpotLightLineR, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberSpotLightLineT, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberSpotLightLineB, { visible: false });
|
||||||
|
} else {
|
||||||
|
Overlays.editOverlay(grabberSpotLightCenter, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberSpotLightRadius, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberSpotLightL, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberSpotLightR, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberSpotLightT, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberSpotLightB, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberSpotLightCircle, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberSpotLightLineL, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberSpotLightLineR, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberSpotLightLineT, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberSpotLightLineB, { visible: false });
|
||||||
|
|
||||||
|
Overlays.editOverlay(grabberPointLightCircleX, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberPointLightCircleY, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberPointLightCircleZ, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberPointLightT, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberPointLightB, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberPointLightL, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberPointLightR, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberPointLightF, { visible: false });
|
||||||
|
Overlays.editOverlay(grabberPointLightN, { visible: false });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Overlays.editOverlay(grabberLBN, { visible: stretchHandlesVisible, rotation: rotation, position: LBN });
|
Overlays.editOverlay(grabberLBN, { visible: stretchHandlesVisible, rotation: rotation, position: LBN });
|
||||||
Overlays.editOverlay(grabberRBN, { visible: stretchHandlesVisible, rotation: rotation, position: RBN });
|
Overlays.editOverlay(grabberRBN, { visible: stretchHandlesVisible, rotation: rotation, position: RBN });
|
||||||
Overlays.editOverlay(grabberLBF, { visible: stretchHandlesVisible, rotation: rotation, position: LBF });
|
Overlays.editOverlay(grabberLBF, { visible: stretchHandlesVisible, rotation: rotation, position: LBF });
|
||||||
|
@ -1422,7 +1662,7 @@ SelectionDisplay = (function () {
|
||||||
// direction - direction to stretch in
|
// direction - direction to stretch in
|
||||||
// pivot - point to use as a pivot
|
// pivot - point to use as a pivot
|
||||||
// offset - the position of the overlay tool relative to the selections center position
|
// offset - the position of the overlay tool relative to the selections center position
|
||||||
var makeStretchTool = function(stretchMode, direction, pivot, offset) {
|
var makeStretchTool = function(stretchMode, direction, pivot, offset, customOnMove) {
|
||||||
var signs = {
|
var signs = {
|
||||||
x: direction.x < 0 ? -1 : (direction.x > 0 ? 1 : 0),
|
x: direction.x < 0 ? -1 : (direction.x > 0 ? 1 : 0),
|
||||||
y: direction.y < 0 ? -1 : (direction.y > 0 ? 1 : 0),
|
y: direction.y < 0 ? -1 : (direction.y > 0 ? 1 : 0),
|
||||||
|
@ -1554,7 +1794,7 @@ SelectionDisplay = (function () {
|
||||||
};
|
};
|
||||||
|
|
||||||
var onMove = function(event) {
|
var onMove = function(event) {
|
||||||
var proportional = spaceMode == SPACE_WORLD || event.isShifted;
|
var proportional = spaceMode == SPACE_WORLD || event.isShifted || activeTool.mode == "STRETCH_RADIUS";
|
||||||
|
|
||||||
var position, dimensions, rotation;
|
var position, dimensions, rotation;
|
||||||
if (spaceMode == SPACE_LOCAL) {
|
if (spaceMode == SPACE_LOCAL) {
|
||||||
|
@ -1577,61 +1817,66 @@ SelectionDisplay = (function () {
|
||||||
|
|
||||||
vector = vec3Mult(mask, vector);
|
vector = vec3Mult(mask, vector);
|
||||||
|
|
||||||
vector = grid.snapToSpacing(vector);
|
if (customOnMove) {
|
||||||
|
var change = Vec3.multiply(-1, vec3Mult(signs, vector));
|
||||||
var changeInDimensions = Vec3.multiply(-1, vec3Mult(signs, vector));
|
customOnMove(vector, change);
|
||||||
var newDimensions;
|
|
||||||
if (proportional) {
|
|
||||||
var absX = Math.abs(changeInDimensions.x);
|
|
||||||
var absY = Math.abs(changeInDimensions.y);
|
|
||||||
var absZ = Math.abs(changeInDimensions.z);
|
|
||||||
var pctChange = 0;
|
|
||||||
if (absX > absY && absX > absZ) {
|
|
||||||
pctChange = changeInDimensions.x / initialProperties.dimensions.x;
|
|
||||||
pctChange = changeInDimensions.x / initialDimensions.x;
|
|
||||||
} else if (absY > absZ) {
|
|
||||||
pctChange = changeInDimensions.y / initialProperties.dimensions.y;
|
|
||||||
pctChange = changeInDimensions.y / initialDimensions.y;
|
|
||||||
} else {
|
|
||||||
pctChange = changeInDimensions.z / initialProperties.dimensions.z;
|
|
||||||
pctChange = changeInDimensions.z / initialDimensions.z;
|
|
||||||
}
|
|
||||||
pctChange += 1.0;
|
|
||||||
newDimensions = Vec3.multiply(pctChange, initialDimensions);
|
|
||||||
} else {
|
} else {
|
||||||
newDimensions = Vec3.sum(initialDimensions, changeInDimensions);
|
vector = grid.snapToSpacing(vector);
|
||||||
}
|
|
||||||
|
|
||||||
newDimensions.x = Math.max(newDimensions.x, MINIMUM_DIMENSION);
|
|
||||||
newDimensions.y = Math.max(newDimensions.y, MINIMUM_DIMENSION);
|
|
||||||
newDimensions.z = Math.max(newDimensions.z, MINIMUM_DIMENSION);
|
|
||||||
|
|
||||||
var changeInPosition = Vec3.multiplyQbyV(rotation, vec3Mult(deltaPivot, changeInDimensions));
|
|
||||||
var newPosition = Vec3.sum(initialPosition, changeInPosition);
|
|
||||||
|
|
||||||
for (var i = 0; i < SelectionManager.selections.length; i++) {
|
|
||||||
Entities.editEntity(SelectionManager.selections[i], {
|
|
||||||
position: newPosition,
|
|
||||||
dimensions: newDimensions,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
var wantDebug = false;
|
var changeInDimensions = Vec3.multiply(-1, vec3Mult(signs, vector));
|
||||||
if (wantDebug) {
|
var newDimensions;
|
||||||
print(stretchMode);
|
if (proportional) {
|
||||||
Vec3.print(" newIntersection:", newIntersection);
|
var absX = Math.abs(changeInDimensions.x);
|
||||||
Vec3.print(" vector:", vector);
|
var absY = Math.abs(changeInDimensions.y);
|
||||||
Vec3.print(" oldPOS:", oldPOS);
|
var absZ = Math.abs(changeInDimensions.z);
|
||||||
Vec3.print(" newPOS:", newPOS);
|
var pctChange = 0;
|
||||||
Vec3.print(" changeInDimensions:", changeInDimensions);
|
if (absX > absY && absX > absZ) {
|
||||||
Vec3.print(" newDimensions:", newDimensions);
|
pctChange = changeInDimensions.x / initialProperties.dimensions.x;
|
||||||
|
pctChange = changeInDimensions.x / initialDimensions.x;
|
||||||
|
} else if (absY > absZ) {
|
||||||
|
pctChange = changeInDimensions.y / initialProperties.dimensions.y;
|
||||||
|
pctChange = changeInDimensions.y / initialDimensions.y;
|
||||||
|
} else {
|
||||||
|
pctChange = changeInDimensions.z / initialProperties.dimensions.z;
|
||||||
|
pctChange = changeInDimensions.z / initialDimensions.z;
|
||||||
|
}
|
||||||
|
pctChange += 1.0;
|
||||||
|
newDimensions = Vec3.multiply(pctChange, initialDimensions);
|
||||||
|
} else {
|
||||||
|
newDimensions = Vec3.sum(initialDimensions, changeInDimensions);
|
||||||
|
}
|
||||||
|
|
||||||
|
newDimensions.x = Math.max(newDimensions.x, MINIMUM_DIMENSION);
|
||||||
|
newDimensions.y = Math.max(newDimensions.y, MINIMUM_DIMENSION);
|
||||||
|
newDimensions.z = Math.max(newDimensions.z, MINIMUM_DIMENSION);
|
||||||
|
|
||||||
|
var changeInPosition = Vec3.multiplyQbyV(rotation, vec3Mult(deltaPivot, changeInDimensions));
|
||||||
|
var newPosition = Vec3.sum(initialPosition, changeInPosition);
|
||||||
|
|
||||||
|
for (var i = 0; i < SelectionManager.selections.length; i++) {
|
||||||
|
Entities.editEntity(SelectionManager.selections[i], {
|
||||||
|
position: newPosition,
|
||||||
|
dimensions: newDimensions,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
Vec3.print(" changeInPosition:", changeInPosition);
|
var wantDebug = false;
|
||||||
Vec3.print(" newPosition:", newPosition);
|
if (wantDebug) {
|
||||||
|
print(stretchMode);
|
||||||
|
Vec3.print(" newIntersection:", newIntersection);
|
||||||
|
Vec3.print(" vector:", vector);
|
||||||
|
Vec3.print(" oldPOS:", oldPOS);
|
||||||
|
Vec3.print(" newPOS:", newPOS);
|
||||||
|
Vec3.print(" changeInDimensions:", changeInDimensions);
|
||||||
|
Vec3.print(" newDimensions:", newDimensions);
|
||||||
|
|
||||||
|
Vec3.print(" changeInPosition:", changeInPosition);
|
||||||
|
Vec3.print(" newPosition:", newPosition);
|
||||||
|
}
|
||||||
|
|
||||||
|
SelectionManager._update();
|
||||||
}
|
}
|
||||||
|
|
||||||
SelectionManager._update();
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
@ -1642,15 +1887,57 @@ SelectionDisplay = (function () {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
function addStretchTool(overlay, mode, pivot, direction, offset) {
|
function addStretchTool(overlay, mode, pivot, direction, offset, handleMove) {
|
||||||
if (!pivot) {
|
if (!pivot) {
|
||||||
pivot = direction;
|
pivot = direction;
|
||||||
}
|
}
|
||||||
var tool = makeStretchTool(mode, direction, pivot, offset);
|
var tool = makeStretchTool(mode, direction, pivot, offset, handleMove);
|
||||||
|
|
||||||
addGrabberTool(overlay, tool);
|
addGrabberTool(overlay, tool);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function cutoffStretchFunc(vector, change) {
|
||||||
|
vector = change;
|
||||||
|
Vec3.print("Radius stretch: ", vector);
|
||||||
|
var length = vector.x + vector.y + vector.z;
|
||||||
|
var props = selectionManager.savedProperties[selectionManager.selections[0].id];
|
||||||
|
|
||||||
|
var radius = props.dimensions.z / 2;
|
||||||
|
var originalCutoff = props.cutoff;
|
||||||
|
|
||||||
|
var originalSize = radius * Math.tan(originalCutoff * (Math.PI / 180));
|
||||||
|
var newSize = originalSize + length;
|
||||||
|
var cutoff = Math.atan2(newSize, radius) * 180 / Math.PI;
|
||||||
|
|
||||||
|
Entities.editEntity(selectionManager.selections[0], {
|
||||||
|
cutoff: cutoff,
|
||||||
|
});
|
||||||
|
|
||||||
|
SelectionManager._update();
|
||||||
|
};
|
||||||
|
|
||||||
|
function radiusStretchFunc(vector, change) {
|
||||||
|
var props = selectionManager.savedProperties[selectionManager.selections[0].id];
|
||||||
|
|
||||||
|
// Find the axis being adjusted
|
||||||
|
var size;
|
||||||
|
if (Math.abs(change.x) > 0) {
|
||||||
|
size = props.dimensions.x + change.x;
|
||||||
|
} else if (Math.abs(change.y) > 0) {
|
||||||
|
size = props.dimensions.y + change.y;
|
||||||
|
} else if (Math.abs(change.z) > 0) {
|
||||||
|
size = props.dimensions.z + change.z;
|
||||||
|
}
|
||||||
|
|
||||||
|
var newDimensions = { x: size, y: size, z: size };
|
||||||
|
|
||||||
|
Entities.editEntity(selectionManager.selections[0], {
|
||||||
|
dimensions: newDimensions,
|
||||||
|
});
|
||||||
|
|
||||||
|
SelectionManager._update();
|
||||||
|
}
|
||||||
|
|
||||||
addStretchTool(grabberNEAR, "STRETCH_NEAR", { x: 0, y: 0, z: 1 }, { x: 0, y: 0, z: 1 }, { x: 0, y: 0, z: -1 });
|
addStretchTool(grabberNEAR, "STRETCH_NEAR", { x: 0, y: 0, z: 1 }, { x: 0, y: 0, z: 1 }, { x: 0, y: 0, z: -1 });
|
||||||
addStretchTool(grabberFAR, "STRETCH_FAR", { x: 0, y: 0, z: -1 }, { x: 0, y: 0, z: -1 }, { x: 0, y: 0, z: 1 });
|
addStretchTool(grabberFAR, "STRETCH_FAR", { x: 0, y: 0, z: -1 }, { x: 0, y: 0, z: -1 }, { x: 0, y: 0, z: 1 });
|
||||||
addStretchTool(grabberTOP, "STRETCH_TOP", { x: 0, y: -1, z: 0 }, { x: 0, y: -1, z: 0 }, { x: 0, y: 1, z: 0 });
|
addStretchTool(grabberTOP, "STRETCH_TOP", { x: 0, y: -1, z: 0 }, { x: 0, y: -1, z: 0 }, { x: 0, y: 1, z: 0 });
|
||||||
|
@ -1658,6 +1945,19 @@ SelectionDisplay = (function () {
|
||||||
addStretchTool(grabberRIGHT, "STRETCH_RIGHT", { x: -1, y: 0, z: 0 }, { x: -1, y: 0, z: 0 }, { x: 1, y: 0, z: 0 });
|
addStretchTool(grabberRIGHT, "STRETCH_RIGHT", { x: -1, y: 0, z: 0 }, { x: -1, y: 0, z: 0 }, { x: 1, y: 0, z: 0 });
|
||||||
addStretchTool(grabberLEFT, "STRETCH_LEFT", { x: 1, y: 0, z: 0 }, { x: 1, y: 0, z: 0 }, { x: -1, y: 0, z: 0 });
|
addStretchTool(grabberLEFT, "STRETCH_LEFT", { x: 1, y: 0, z: 0 }, { x: 1, y: 0, z: 0 }, { x: -1, y: 0, z: 0 });
|
||||||
|
|
||||||
|
addStretchTool(grabberSpotLightRadius, "STRETCH_RADIUS", { x: 0, y: 0, z: 0 }, { x: 0, y: 0, z: 1 }, { x: 0, y: 0, z: -1 });
|
||||||
|
addStretchTool(grabberSpotLightT, "STRETCH_CUTOFF_T", { x: 0, y: 0, z: 0 }, { x: 0, y: -1, z: 0 }, { x: 0, y: 1, z: 0 }, cutoffStretchFunc);
|
||||||
|
addStretchTool(grabberSpotLightB, "STRETCH_CUTOFF_B", { x: 0, y: 0, z: 0 }, { x: 0, y: 1, z: 0 }, { x: 0, y: -1, z: 0 }, cutoffStretchFunc);
|
||||||
|
addStretchTool(grabberSpotLightL, "STRETCH_CUTOFF_L", { x: 0, y: 0, z: 0 }, { x: 1, y: 0, z: 0 }, { x: -1, y: 0, z: 0 }, cutoffStretchFunc);
|
||||||
|
addStretchTool(grabberSpotLightR, "STRETCH_CUTOFF_R", { x: 0, y: 0, z: 0 }, { x: -1, y: 0, z: 0 }, { x: 1, y: 0, z: 0 }, cutoffStretchFunc);
|
||||||
|
|
||||||
|
addStretchTool(grabberPointLightT, "STRETCH_RADIUS_T", { x: 0, y: 0, z: 0 }, { x: 0, y: -1, z: 0 }, { x: 0, y: 0, z: 1 }, radiusStretchFunc);
|
||||||
|
addStretchTool(grabberPointLightB, "STRETCH_RADIUS_B", { x: 0, y: 0, z: 0 }, { x: 0, y: 1, z: 0 }, { x: 0, y: 0, z: 1 }, radiusStretchFunc);
|
||||||
|
addStretchTool(grabberPointLightL, "STRETCH_RADIUS_L", { x: 0, y: 0, z: 0 }, { x: 1, y: 0, z: 0 }, { x: 0, y: 0, z: 1 }, radiusStretchFunc);
|
||||||
|
addStretchTool(grabberPointLightR, "STRETCH_RADIUS_R", { x: 0, y: 0, z: 0 }, { x: -1, y: 0, z: 0 }, { x: 0, y: 0, z: 1 }, radiusStretchFunc);
|
||||||
|
addStretchTool(grabberPointLightF, "STRETCH_RADIUS_F", { x: 0, y: 0, z: 0 }, { x: 0, y: 0, z: -1 }, { x: 0, y: 0, z: 1 }, radiusStretchFunc);
|
||||||
|
addStretchTool(grabberPointLightN, "STRETCH_RADIUS_N", { x: 0, y: 0, z: 0 }, { x: 0, y: 0, z: 1 }, { x: 0, y: 0, z: -1 }, radiusStretchFunc);
|
||||||
|
|
||||||
addStretchTool(grabberLBN, "STRETCH_LBN", null, {x: 1, y: 0, z: 1}, { x: -1, y: -1, z: -1 });
|
addStretchTool(grabberLBN, "STRETCH_LBN", null, {x: 1, y: 0, z: 1}, { x: -1, y: -1, z: -1 });
|
||||||
addStretchTool(grabberRBN, "STRETCH_RBN", null, {x: -1, y: 0, z: 1}, { x: 1, y: -1, z: -1 });
|
addStretchTool(grabberRBN, "STRETCH_RBN", null, {x: -1, y: 0, z: 1}, { x: 1, y: -1, z: -1 });
|
||||||
addStretchTool(grabberLBF, "STRETCH_LBF", null, {x: 1, y: 0, z: -1}, { x: -1, y: -1, z: 1 });
|
addStretchTool(grabberLBF, "STRETCH_LBF", null, {x: 1, y: 0, z: -1}, { x: -1, y: -1, z: 1 });
|
||||||
|
@ -2399,6 +2699,17 @@ SelectionDisplay = (function () {
|
||||||
case grabberEdgeNL:
|
case grabberEdgeNL:
|
||||||
case grabberEdgeFR:
|
case grabberEdgeFR:
|
||||||
case grabberEdgeFL:
|
case grabberEdgeFL:
|
||||||
|
case grabberSpotLightRadius:
|
||||||
|
case grabberSpotLightT:
|
||||||
|
case grabberSpotLightB:
|
||||||
|
case grabberSpotLightL:
|
||||||
|
case grabberSpotLightR:
|
||||||
|
case grabberPointLightT:
|
||||||
|
case grabberPointLightB:
|
||||||
|
case grabberPointLightR:
|
||||||
|
case grabberPointLightL:
|
||||||
|
case grabberPointLightN:
|
||||||
|
case grabberPointLightF:
|
||||||
pickedColor = grabberColorEdge;
|
pickedColor = grabberColorEdge;
|
||||||
pickedAlpha = grabberAlpha;
|
pickedAlpha = grabberAlpha;
|
||||||
highlightNeeded = true;
|
highlightNeeded = true;
|
||||||
|
|
|
@ -31,6 +31,10 @@ class Text3DOverlay;
|
||||||
#define OVR_CLIENT_DISTORTION 1
|
#define OVR_CLIENT_DISTORTION 1
|
||||||
|
|
||||||
|
|
||||||
|
// Direct HMD mode is currently only supported on windows and some linux systems will
|
||||||
|
// misbehave if we try to enable the Oculus SDK at all, so isolate support for Direct
|
||||||
|
// mode only to windows for now
|
||||||
|
#ifdef Q_OS_WIN
|
||||||
// On Win32 platforms, enabling Direct HMD requires that the SDK be
|
// On Win32 platforms, enabling Direct HMD requires that the SDK be
|
||||||
// initialized before the GL context is set up, but this breaks v-sync
|
// initialized before the GL context is set up, but this breaks v-sync
|
||||||
// for any application that has a Direct mode enable Rift connected
|
// for any application that has a Direct mode enable Rift connected
|
||||||
|
@ -40,6 +44,7 @@ class Text3DOverlay;
|
||||||
// caveat that it will break v-sync in NON-VR mode if you have an Oculus
|
// caveat that it will break v-sync in NON-VR mode if you have an Oculus
|
||||||
// Rift connect and in Direct mode
|
// Rift connect and in Direct mode
|
||||||
#define OVR_DIRECT_MODE 1
|
#define OVR_DIRECT_MODE 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/// Handles interaction with the Oculus Rift.
|
/// Handles interaction with the Oculus Rift.
|
||||||
|
|
|
@ -98,6 +98,9 @@ void Circle3DOverlay::render(RenderArgs* args) {
|
||||||
const float MAX_COLOR = 255.0f;
|
const float MAX_COLOR = 255.0f;
|
||||||
glm::vec4 color(colorX.red / MAX_COLOR, colorX.green / MAX_COLOR, colorX.blue / MAX_COLOR, alpha);
|
glm::vec4 color(colorX.red / MAX_COLOR, colorX.green / MAX_COLOR, colorX.blue / MAX_COLOR, alpha);
|
||||||
|
|
||||||
|
bool colorChanged = colorX.red != _lastColor.red || colorX.green != _lastColor.green || colorX.blue != _lastColor.blue;
|
||||||
|
_lastColor = colorX;
|
||||||
|
|
||||||
glDisable(GL_LIGHTING);
|
glDisable(GL_LIGHTING);
|
||||||
|
|
||||||
glm::vec3 position = getPosition();
|
glm::vec3 position = getPosition();
|
||||||
|
@ -131,7 +134,7 @@ void Circle3DOverlay::render(RenderArgs* args) {
|
||||||
_quadVerticesID = geometryCache->allocateID();
|
_quadVerticesID = geometryCache->allocateID();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (geometryChanged) {
|
if (geometryChanged || colorChanged) {
|
||||||
|
|
||||||
QVector<glm::vec2> points;
|
QVector<glm::vec2> points;
|
||||||
|
|
||||||
|
@ -170,7 +173,7 @@ void Circle3DOverlay::render(RenderArgs* args) {
|
||||||
_lineVerticesID = geometryCache->allocateID();
|
_lineVerticesID = geometryCache->allocateID();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (geometryChanged) {
|
if (geometryChanged || colorChanged) {
|
||||||
QVector<glm::vec2> points;
|
QVector<glm::vec2> points;
|
||||||
|
|
||||||
float angle = startAt;
|
float angle = startAt;
|
||||||
|
|
|
@ -70,6 +70,7 @@ protected:
|
||||||
int _majorTicksVerticesID;
|
int _majorTicksVerticesID;
|
||||||
int _minorTicksVerticesID;
|
int _minorTicksVerticesID;
|
||||||
|
|
||||||
|
xColor _lastColor;
|
||||||
float _lastStartAt;
|
float _lastStartAt;
|
||||||
float _lastEndAt;
|
float _lastEndAt;
|
||||||
float _lastOuterRadius;
|
float _lastOuterRadius;
|
||||||
|
|
|
@ -41,8 +41,16 @@ LightEntityItem::LightEntityItem(const EntityItemID& entityItemID, const EntityI
|
||||||
}
|
}
|
||||||
|
|
||||||
void LightEntityItem::setDimensions(const glm::vec3& value) {
|
void LightEntityItem::setDimensions(const glm::vec3& value) {
|
||||||
float maxDimension = glm::max(value.x, value.y, value.z);
|
if (_isSpotlight) {
|
||||||
_dimensions = glm::vec3(maxDimension, maxDimension, maxDimension);
|
// If we are a spotlight, treat the z value as our radius or length, and
|
||||||
|
// recalculate the x/y dimensions to properly encapsulate the spotlight.
|
||||||
|
const float length = value.z;
|
||||||
|
const float width = length * glm::tan(glm::radians(_cutoff));
|
||||||
|
_dimensions = glm::vec3(width, width, length);
|
||||||
|
} else {
|
||||||
|
float maxDimension = glm::max(value.x, value.y, value.z);
|
||||||
|
_dimensions = glm::vec3(maxDimension, maxDimension, maxDimension);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -58,6 +66,33 @@ EntityItemProperties LightEntityItem::getProperties() const {
|
||||||
return properties;
|
return properties;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void LightEntityItem::setIsSpotlight(bool value) {
|
||||||
|
if (value != _isSpotlight) {
|
||||||
|
_isSpotlight = value;
|
||||||
|
|
||||||
|
if (_isSpotlight) {
|
||||||
|
const float length = _dimensions.z;
|
||||||
|
const float width = length * glm::tan(glm::radians(_cutoff));
|
||||||
|
_dimensions = glm::vec3(width, width, length);
|
||||||
|
} else {
|
||||||
|
float maxDimension = glm::max(_dimensions.x, _dimensions.y, _dimensions.z);
|
||||||
|
_dimensions = glm::vec3(maxDimension, maxDimension, maxDimension);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void LightEntityItem::setCutoff(float value) {
|
||||||
|
_cutoff = glm::clamp(value, 0.0f, 90.0f);
|
||||||
|
|
||||||
|
if (_isSpotlight) {
|
||||||
|
// If we are a spotlight, adjusting the cutoff will affect the area we encapsulate,
|
||||||
|
// so update the dimensions to reflect this.
|
||||||
|
const float length = _dimensions.z;
|
||||||
|
const float width = length * glm::tan(glm::radians(_cutoff));
|
||||||
|
_dimensions = glm::vec3(width, width, length);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bool LightEntityItem::setProperties(const EntityItemProperties& properties) {
|
bool LightEntityItem::setProperties(const EntityItemProperties& properties) {
|
||||||
bool somethingChanged = EntityItem::setProperties(properties); // set the properties in our base class
|
bool somethingChanged = EntityItem::setProperties(properties); // set the properties in our base class
|
||||||
|
|
||||||
|
|
|
@ -56,7 +56,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
bool getIsSpotlight() const { return _isSpotlight; }
|
bool getIsSpotlight() const { return _isSpotlight; }
|
||||||
void setIsSpotlight(bool value) { _isSpotlight = value; }
|
void setIsSpotlight(bool value);
|
||||||
|
|
||||||
float getIntensity() const { return _intensity; }
|
float getIntensity() const { return _intensity; }
|
||||||
void setIntensity(float value) { _intensity = value; }
|
void setIntensity(float value) { _intensity = value; }
|
||||||
|
@ -65,7 +65,7 @@ public:
|
||||||
void setExponent(float value) { _exponent = value; }
|
void setExponent(float value) { _exponent = value; }
|
||||||
|
|
||||||
float getCutoff() const { return _cutoff; }
|
float getCutoff() const { return _cutoff; }
|
||||||
void setCutoff(float value) { _cutoff = value; }
|
void setCutoff(float value);
|
||||||
|
|
||||||
static bool getLightsArePickable() { return _lightsArePickable; }
|
static bool getLightsArePickable() { return _lightsArePickable; }
|
||||||
static void setLightsArePickable(bool value) { _lightsArePickable = value; }
|
static void setLightsArePickable(bool value) { _lightsArePickable = value; }
|
||||||
|
|
|
@ -681,6 +681,7 @@ bool Model::renderCore(float alpha, RenderMode mode, RenderArgs* args) {
|
||||||
// Setup the projection matrix
|
// Setup the projection matrix
|
||||||
if (args && args->_viewFrustum) {
|
if (args && args->_viewFrustum) {
|
||||||
glm::mat4 proj;
|
glm::mat4 proj;
|
||||||
|
// If for easier debug depending on the pass
|
||||||
if (mode == RenderArgs::SHADOW_RENDER_MODE) {
|
if (mode == RenderArgs::SHADOW_RENDER_MODE) {
|
||||||
args->_viewFrustum->evalProjectionMatrix(proj);
|
args->_viewFrustum->evalProjectionMatrix(proj);
|
||||||
} else {
|
} else {
|
||||||
|
@ -1744,6 +1745,8 @@ void Model::setupBatchTransform(gpu::Batch& batch, RenderArgs* args) {
|
||||||
_transforms.push_back(Transform());
|
_transforms.push_back(Transform());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// We should be able to use the Frustum viewpoint onstead of the "viewTransform"
|
||||||
|
// but it s still buggy in some cases, so let's s wait and fix it...
|
||||||
_transforms[0] = _viewState->getViewTransform();
|
_transforms[0] = _viewState->getViewTransform();
|
||||||
|
|
||||||
_transforms[0].preTranslate(-_translation);
|
_transforms[0].preTranslate(-_translation);
|
||||||
|
@ -1771,6 +1774,7 @@ void Model::endScene(RenderMode mode, RenderArgs* args) {
|
||||||
|
|
||||||
if (args) {
|
if (args) {
|
||||||
glm::mat4 proj;
|
glm::mat4 proj;
|
||||||
|
// If for easier debug depending on the pass
|
||||||
if (mode == RenderArgs::SHADOW_RENDER_MODE) {
|
if (mode == RenderArgs::SHADOW_RENDER_MODE) {
|
||||||
args->_viewFrustum->evalProjectionMatrix(proj);
|
args->_viewFrustum->evalProjectionMatrix(proj);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue