scratch-paint/src/helper/layer.js

214 lines
6.4 KiB
JavaScript
Raw Normal View History

2017-10-12 18:35:30 -04:00
import paper from '@scratch/paper';
import log from '../log/log';
import {ART_BOARD_WIDTH, ART_BOARD_HEIGHT} from './view';
2017-09-11 14:23:30 -04:00
const _getLayer = function (layerString) {
for (const layer of paper.project.layers) {
if (layer.data && layer.data[layerString]) {
2017-09-11 14:23:30 -04:00
return layer;
}
}
};
2017-09-11 14:23:30 -04:00
const _getPaintingLayer = function () {
return _getLayer('isPaintingLayer');
2017-09-11 14:23:30 -04:00
};
2018-04-06 14:41:30 -04:00
const clearRaster = function () {
2018-04-05 17:37:40 -04:00
const layer = _getLayer('isRasterLayer');
2018-04-06 14:41:30 -04:00
layer.removeChildren();
2018-04-05 17:37:40 -04:00
// Generate blank raster
const tmpCanvas = document.createElement('canvas');
tmpCanvas.width = ART_BOARD_WIDTH;
tmpCanvas.height = ART_BOARD_HEIGHT;
const raster = new paper.Raster(tmpCanvas);
2018-04-06 14:41:30 -04:00
raster.parent = layer;
raster.guide = true;
raster.locked = true;
raster.position = paper.view.center;
};
const getRaster = function () {
const layer = _getLayer('isRasterLayer');
// Generate blank raster
if (layer.children.length === 0) {
2018-04-20 11:27:09 -04:00
const tmpCanvas = document.createElement('canvas');
tmpCanvas.width = ART_BOARD_WIDTH;
tmpCanvas.height = ART_BOARD_HEIGHT;
const raster = new paper.Raster(tmpCanvas);
raster.parent = layer;
raster.guide = true;
raster.locked = true;
raster.position = paper.view.center;
}
2018-04-05 17:37:40 -04:00
return _getLayer('isRasterLayer').children[0];
};
const _getBackgroundGuideLayer = function () {
return _getLayer('isBackgroundGuideLayer');
};
2018-04-09 17:47:11 -04:00
const _makeGuideLayer = function () {
const guideLayer = new paper.Layer();
guideLayer.data.isGuideLayer = true;
return guideLayer;
};
const getGuideLayer = function () {
2018-04-09 17:47:11 -04:00
let layer = _getLayer('isGuideLayer');
if (!layer) {
layer = _makeGuideLayer();
_getPaintingLayer().activate();
}
return layer;
};
/**
* Removes the guide layers, e.g. for purposes of exporting the image. Must call showGuideLayers to re-add them.
2018-04-09 17:47:11 -04:00
* @param {boolean} includeRaster true if the raster layer should also be hidden
* @return {object} an object of the removed layers, which should be passed to showGuideLayers to re-add them.
*/
2018-04-09 17:47:11 -04:00
const hideGuideLayers = function (includeRaster) {
const backgroundGuideLayer = _getBackgroundGuideLayer();
const guideLayer = getGuideLayer();
guideLayer.remove();
backgroundGuideLayer.remove();
2018-04-09 17:47:11 -04:00
let rasterLayer;
if (includeRaster) {
rasterLayer = _getLayer('isRasterLayer');
rasterLayer.remove();
}
return {
guideLayer: guideLayer,
2018-04-09 17:47:11 -04:00
backgroundGuideLayer: backgroundGuideLayer,
rasterLayer: rasterLayer
};
};
/**
* Add back the guide layers removed by calling hideGuideLayers. This must be done before any editing operations are
* taken in the paint editor.
* @param {!object} guideLayers object of the removed layers, which was returned by hideGuideLayers
*/
const showGuideLayers = function (guideLayers) {
const backgroundGuideLayer = guideLayers.backgroundGuideLayer;
const guideLayer = guideLayers.guideLayer;
2018-04-09 17:47:11 -04:00
const rasterLayer = guideLayers.rasterLayer;
if (rasterLayer && !rasterLayer.index) {
paper.project.addLayer(rasterLayer);
rasterLayer.sendToBack();
}
if (!backgroundGuideLayer.index) {
paper.project.addLayer(backgroundGuideLayer);
backgroundGuideLayer.sendToBack();
}
if (!guideLayer.index) {
paper.project.addLayer(guideLayer);
guideLayer.bringToFront();
}
if (paper.project.activeLayer !== _getPaintingLayer()) {
log.error(`Wrong active layer`);
log.error(paper.project.activeLayer.data);
2017-10-24 13:21:57 -04:00
}
};
const _makePaintingLayer = function () {
const paintingLayer = new paper.Layer();
paintingLayer.data.isPaintingLayer = true;
return paintingLayer;
};
2018-04-05 17:37:40 -04:00
const _makeRasterLayer = function () {
const rasterLayer = new paper.Layer();
rasterLayer.data.isRasterLayer = true;
2018-04-06 14:41:30 -04:00
clearRaster();
2018-04-05 17:37:40 -04:00
return rasterLayer;
};
const _makeBackgroundPaper = function (width, height, color) {
// creates a checkerboard path of width * height squares in color on white
let x = 0;
let y = 0;
const pathPoints = [];
while (x < width) {
pathPoints.push(new paper.Point(x, y));
x++;
pathPoints.push(new paper.Point(x, y));
y = y === 0 ? height : 0;
}
y = height - 1;
x = width;
while (y > 0) {
pathPoints.push(new paper.Point(x, y));
x = (x === 0 ? width : 0);
pathPoints.push(new paper.Point(x, y));
y--;
}
const vRect = new paper.Shape.Rectangle(new paper.Point(0, 0), new paper.Point(120, 90));
vRect.fillColor = '#fff';
vRect.guide = true;
vRect.locked = true;
const vPath = new paper.Path(pathPoints);
vPath.fillRule = 'evenodd';
vPath.fillColor = color;
vPath.guide = true;
vPath.locked = true;
const vGroup = new paper.Group([vRect, vPath]);
return vGroup;
};
2017-10-24 13:21:57 -04:00
const _makeBackgroundGuideLayer = function () {
const guideLayer = new paper.Layer();
guideLayer.locked = true;
const vBackground = _makeBackgroundPaper(120, 90, '#E5E5E5');
vBackground.position = paper.view.center;
vBackground.scaling = new paper.Point(8, 8);
vBackground.guide = true;
vBackground.locked = true;
2017-10-24 13:21:57 -04:00
const vLine = new paper.Path.Line(new paper.Point(0, -7), new paper.Point(0, 7));
vLine.strokeWidth = 2;
vLine.strokeColor = '#ccc';
vLine.position = paper.view.center;
vLine.guide = true;
vLine.locked = true;
const hLine = new paper.Path.Line(new paper.Point(-7, 0), new paper.Point(7, 0));
hLine.strokeWidth = 2;
hLine.strokeColor = '#ccc';
hLine.position = paper.view.center;
hLine.guide = true;
hLine.locked = true;
const circle = new paper.Shape.Circle(new paper.Point(0, 0), 5);
circle.strokeWidth = 2;
circle.strokeColor = '#ccc';
circle.position = paper.view.center;
circle.guide = true;
circle.locked = true;
guideLayer.data.isBackgroundGuideLayer = true;
return guideLayer;
};
const setupLayers = function () {
const backgroundGuideLayer = _makeBackgroundGuideLayer();
2018-04-05 17:37:40 -04:00
_makeRasterLayer();
const paintLayer = _makePaintingLayer();
const guideLayer = _makeGuideLayer();
backgroundGuideLayer.sendToBack();
guideLayer.bringToFront();
paintLayer.activate();
2017-10-24 13:21:57 -04:00
};
export {
hideGuideLayers,
showGuideLayers,
2017-10-24 13:21:57 -04:00
getGuideLayer,
2018-04-06 14:41:30 -04:00
clearRaster,
2018-04-05 17:37:40 -04:00
getRaster,
2017-10-24 13:21:57 -04:00
setupLayers
};