scratch-paint/src/helper/selection-tools/bounding-box-tool.js

215 lines
8.5 KiB
JavaScript
Raw Normal View History

2017-10-12 18:35:30 -04:00
import paper from '@scratch/paper';
2017-09-11 14:23:30 -04:00
import keyMirror from 'keymirror';
import {getSelectedRootItems} from '../selection';
2017-11-07 16:00:21 -05:00
import {getGuideColor, removeBoundsPath} from '../guides';
2017-09-11 14:23:30 -04:00
import {getGuideLayer} from '../layer';
import ScaleTool from './scale-tool';
import RotateTool from './rotate-tool';
import MoveTool from './move-tool';
/** SVG for the rotation icon on the bounding box */
2017-09-14 14:34:45 -04:00
const ARROW_PATH = 'M19.28,1.09C19.28.28,19,0,18.2,0c-1.67,0-3.34,0-5,0-.34,0-.88.24-1,.47a1.4,1.4,' +
'0,0,0,.36,1.08,15.27,15.27,0,0,0,1.46,1.36A6.4,6.4,0,0,1,6.52,4,5.85,5.85,0,0,1,5.24,3,15.27,15.27,' +
'0,0,0,6.7,1.61,1.4,1.4,0,0,0,7.06.54C7,.3,6.44.07,6.1.06c-1.67,0-3.34,0-5,0C.28,0,0,.31,0,1.12c0,1.67,' +
'0,3.34,0,5a1.23,1.23,0,0,0,.49,1,1.22,1.22,0,0,0,1-.31A14.38,14.38,0,0,0,2.84,5.26l.73.62a9.45,9.45,' +
'0,0,0,7.34,2,9.45,9.45,0,0,0,4.82-2.05l.73-.62a14.38,14.38,0,0,0,1.29,1.51,1.22,1.22,' +
'0,0,0,1,.31,1.23,1.23,0,0,0,.49-1C19.31,4.43,19.29,2.76,19.28,1.09Z';
2017-09-11 14:23:30 -04:00
/** Modes of the bounding box tool, which can do many things depending on how it's used. */
2017-10-10 18:30:26 -04:00
const BoundingBoxModes = keyMirror({
2017-09-11 14:23:30 -04:00
SCALE: null,
ROTATE: null,
MOVE: null
});
/**
2017-09-22 12:12:07 -04:00
* Tool that handles transforming the selection and drawing a bounding box with handles.
2017-09-11 14:23:30 -04:00
* On mouse down, the type of function (move, scale, rotate) is determined based on what is clicked
* (scale handle, rotate handle, the object itself). This determines the mode of the tool, which then
* delegates actions to the MoveTool, RotateTool or ScaleTool accordingly.
2017-09-21 18:20:44 -04:00
* @param {!function} onUpdateSvg A callback to call when the image visibly changes
2017-09-11 14:23:30 -04:00
*/
class BoundingBoxTool {
/**
2017-10-10 18:30:26 -04:00
* @param {Modes} mode Paint editor mode
* @param {function} setSelectedItems Callback to set the set of selected items in the Redux state
* @param {function} clearSelectedItems Callback to clear the set of selected items in the Redux state
* @param {!function} onUpdateSvg A callback to call when the image visibly changes
*/
2017-10-10 18:30:26 -04:00
constructor (mode, setSelectedItems, clearSelectedItems, onUpdateSvg) {
2017-09-21 18:20:44 -04:00
this.onUpdateSvg = onUpdateSvg;
2017-09-11 14:23:30 -04:00
this.mode = null;
this.boundsPath = null;
this.boundsScaleHandles = [];
this.boundsRotHandles = [];
this._modeMap = {};
2017-10-10 18:30:26 -04:00
this._modeMap[BoundingBoxModes.SCALE] = new ScaleTool(onUpdateSvg);
this._modeMap[BoundingBoxModes.ROTATE] = new RotateTool(onUpdateSvg);
this._modeMap[BoundingBoxModes.MOVE] = new MoveTool(mode, setSelectedItems, clearSelectedItems, onUpdateSvg);
2017-09-11 14:23:30 -04:00
}
2017-10-23 15:38:52 -04:00
/**
* Should be called if the selection changes to update the bounds of the bounding box.
* @param {Array<paper.Item>} selectedItems Array of selected items.
*/
onSelectionChanged (selectedItems) {
if (selectedItems) {
this.setSelectionBounds();
} else {
this.removeBoundsPath();
}
}
2017-09-11 14:23:30 -04:00
/**
* @param {!MouseEvent} event The mouse event
* @param {boolean} clone Whether to clone on mouse down (e.g. alt key held)
* @param {boolean} multiselect Whether to multiselect on mouse down (e.g. shift key held)
2017-09-13 15:17:59 -04:00
* @param {paper.hitOptions} hitOptions The options with which to detect whether mouse down has hit
* anything editable
2017-09-11 14:23:30 -04:00
* @return {boolean} True if there was a hit, false otherwise
*/
2017-09-13 15:17:59 -04:00
onMouseDown (event, clone, multiselect, hitOptions) {
2017-11-03 18:05:29 -04:00
if (event.event.button > 0) return; // only first mouse button
2017-09-13 15:17:59 -04:00
const hitResults = paper.project.hitTestAll(event.point, hitOptions);
2017-09-11 14:23:30 -04:00
if (!hitResults || hitResults.length === 0) {
if (!multiselect) {
this.removeBoundsPath();
}
2017-09-13 15:17:59 -04:00
return false;
2017-09-11 14:23:30 -04:00
}
// Prefer scale to trigger over rotate, and scale and rotate to trigger over other hits
let hitResult = hitResults[0];
for (let i = 0; i < hitResults.length; i++) {
if (hitResults[i].item.data && hitResults[i].item.data.isScaleHandle) {
hitResult = hitResults[i];
2017-10-10 18:30:26 -04:00
this.mode = BoundingBoxModes.SCALE;
2017-09-11 14:23:30 -04:00
break;
} else if (hitResults[i].item.data && hitResults[i].item.data.isRotHandle) {
hitResult = hitResults[i];
2017-10-10 18:30:26 -04:00
this.mode = BoundingBoxModes.ROTATE;
2017-09-11 14:23:30 -04:00
}
}
2017-09-13 15:17:59 -04:00
if (!this.mode) {
2017-10-10 18:30:26 -04:00
this.mode = BoundingBoxModes.MOVE;
2017-09-13 17:45:06 -04:00
}
2017-09-21 18:20:44 -04:00
const hitProperties = {
hitResult: hitResult,
2017-10-19 18:29:32 -04:00
clone: clone,
multiselect: multiselect
2017-09-21 18:20:44 -04:00
};
2017-10-10 18:30:26 -04:00
if (this.mode === BoundingBoxModes.MOVE) {
2017-09-21 18:20:44 -04:00
this._modeMap[this.mode].onMouseDown(hitProperties);
2017-10-10 18:30:26 -04:00
} else if (this.mode === BoundingBoxModes.SCALE) {
2017-11-07 16:00:21 -05:00
this._modeMap[this.mode].onMouseDown(hitResult, this.boundsPath, getSelectedRootItems());
2017-10-10 18:30:26 -04:00
} else if (this.mode === BoundingBoxModes.ROTATE) {
this._modeMap[this.mode].onMouseDown(hitResult, this.boundsPath, getSelectedRootItems());
2017-09-13 15:17:59 -04:00
}
// While transforming, don't show bounds
2017-09-11 14:23:30 -04:00
this.removeBoundsPath();
2017-09-13 15:17:59 -04:00
return true;
2017-09-11 14:23:30 -04:00
}
onMouseDrag (event) {
2017-11-03 18:05:29 -04:00
if (event.event.button > 0 || !this.mode) return; // only first mouse button
2017-09-11 14:23:30 -04:00
this._modeMap[this.mode].onMouseDrag(event);
}
onMouseUp (event) {
2017-11-03 18:05:29 -04:00
if (event.event.button > 0 || !this.mode) return; // only first mouse button
2017-09-11 14:23:30 -04:00
this._modeMap[this.mode].onMouseUp(event);
// After transforming, show bounds again
this.setSelectionBounds();
2017-09-11 14:23:30 -04:00
this.mode = null;
}
setSelectionBounds () {
this.removeBoundsPath();
const items = getSelectedRootItems();
2017-09-11 14:23:30 -04:00
if (items.length <= 0) return;
let rect = null;
for (const item of items) {
if (rect) {
rect = rect.unite(item.bounds);
} else {
rect = item.bounds;
}
}
if (!this.boundsPath) {
this.boundsPath = new paper.Path.Rectangle(rect);
this.boundsPath.curves[0].divideAtTime(0.5);
this.boundsPath.curves[2].divideAtTime(0.5);
this.boundsPath.curves[4].divideAtTime(0.5);
this.boundsPath.curves[6].divideAtTime(0.5);
}
this.boundsPath.guide = true;
this.boundsPath.data.isSelectionBound = true;
this.boundsPath.data.isHelperItem = true;
this.boundsPath.fillColor = null;
this.boundsPath.fullySelected = true;
this.boundsPath.parent = getGuideLayer();
2017-09-13 16:59:37 -04:00
for (let index = 0; index < this.boundsPath.segments.length; index++) {
2017-09-11 14:23:30 -04:00
const segment = this.boundsPath.segments[index];
let size = 4;
if (index % 2 === 0) {
size = 6;
}
if (index === 7) {
const offset = new paper.Point(0, 20);
const arrows = new paper.Path(ARROW_PATH);
2017-09-13 16:59:37 -04:00
arrows.translate(segment.point.add(offset).add(-10.5, -5));
2017-09-11 14:23:30 -04:00
const line = new paper.Path.Rectangle(
2017-09-13 16:59:37 -04:00
segment.point.add(offset).subtract(1, 0),
segment.point);
2017-09-11 14:23:30 -04:00
const rotHandle = arrows.unite(line);
line.remove();
arrows.remove();
rotHandle.scale(1 / paper.view.zoom, segment.point);
rotHandle.data = {
offset: offset,
isRotHandle: true,
isHelperItem: true,
noSelect: true,
noHover: true
};
2017-10-18 14:08:03 -04:00
rotHandle.fillColor = getGuideColor();
2017-09-11 14:23:30 -04:00
rotHandle.parent = getGuideLayer();
this.boundsRotHandles[index] = rotHandle;
}
this.boundsScaleHandles[index] =
new paper.Path.Rectangle({
center: segment.point,
data: {
index: index,
isScaleHandle: true,
isHelperItem: true,
noSelect: true,
noHover: true
},
size: [size / paper.view.zoom, size / paper.view.zoom],
2017-10-18 14:08:03 -04:00
fillColor: getGuideColor(),
2017-09-11 14:23:30 -04:00
parent: getGuideLayer()
});
}
}
removeBoundsPath () {
2017-11-07 16:00:21 -05:00
removeBoundsPath();
2017-09-11 14:23:30 -04:00
this.boundsPath = null;
this.boundsScaleHandles.length = 0;
this.boundsRotHandles.length = 0;
}
}
export default BoundingBoxTool;