orchidmap-front/src/utils/renderer.ts
2019-02-27 13:29:12 +07:00

313 lines
8.4 KiB
TypeScript

import { editor } from '$modules/Editor';
import { COLORS, CLIENT } from '$config/frontend';
import * as saveAs from 'file-saver';
import { replaceProviderUrl } from '$constants/providers';
import { STICKERS } from '$constants/stickers';
import { ILatLng } from "$modules/Stickers";
import { IStickerDump } from "$modules/Sticker";
import { IRootState } from "$redux/user/reducer";
export interface IMapPoint {
x: number,
y: number,
}
export interface ITilePlacement {
minX: number,
maxX: number,
minY: number,
maxY: number,
shiftX: number,
shiftY: number,
size: number,
width: number,
height: number,
zoom: number,
}
export interface IStickerPlacement extends IStickerDump {
x: number,
y: number,
}
const latLngToTile = (latlng: { lat: number, lng: number }): { x: number, y: number, z: number } => {
const { map } = editor.map;
const zoom = map.getZoom();
const xtile = Number(Math.floor((latlng.lng + 180) / 360 * (1 << zoom)));
const ytile = Number(Math.floor((1 - Math.log(Math.tan(latlng.lat * Math.PI / 180) + 1 / Math.cos(latlng.lat * Math.PI / 180)) / Math.PI) / 2 * (1 << zoom)));
return { x: xtile, y: ytile, z: zoom };
};
const tileToLatLng = (point: { x: number, y: number }): ILatLng => {
const { map } = editor.map;
const z = map.getZoom();
const lng = (point.x / Math.pow(2, z) * 360 - 180);
const n = Math.PI - 2 * Math.PI * point.y / Math.pow(2, z);
const lat = (180 / Math.PI * Math.atan(0.5 * (Math.exp(n) - Math.exp(-n))));
return { lat, lng };
};
export const getTilePlacement = (): ITilePlacement => {
const { map } = editor.map;
const width = window.innerWidth;
const height = window.innerHeight;
// map corners
const southWest = map.getBounds().getSouthWest();
const northEast = map.getBounds().getNorthEast();
// map corner's tile files [x, y, z] to fetch from server
const southWestTile = latLngToTile(southWest);
const northEastTile = latLngToTile(northEast);
// filling tile file ranges
const { x: minX, y: maxY, z: zoom } = southWestTile;
const { x: maxX, y: minY } = northEastTile;
// actual coords of file's corners (they're shifted from view)
const southWestTileCoords = tileToLatLng(southWestTile);
const tileTransformTranslate = map.latLngToLayerPoint(southWestTileCoords);
const msw2 = map.latLngToLayerPoint(southWest);
return {
minX,
maxX,
minY,
maxY,
shiftX: tileTransformTranslate.x - msw2.x,
shiftY: ((maxY - minY) * 256) - (window.innerHeight + (tileTransformTranslate.y - msw2.y)),
size: 256,
width,
height,
zoom,
};
};
export const getPolyPlacement = (): IMapPoint[] => (
(!editor.poly.poly || !editor.poly.poly.getLatLngs() || editor.poly.poly.getLatLngs().length <= 0)
? []
: editor.poly.poly.getLatLngs().map((latlng) => ({ ...editor.map.map.latLngToContainerPoint(latlng) }))
);
export const getStickersPlacement = (): IStickerPlacement[] => (
(!editor.stickers || editor.stickers.dumpData().length <= 0)
? []
: editor.stickers.dumpData().map(sticker => ({
...sticker,
...editor.map.map.latLngToContainerPoint(sticker.latlng),
}))
);
const getImageSource = (coords: { x: number, y: number, zoom: number }): string => (
replaceProviderUrl(editor.getProvider(), coords)
);
export const imageFetcher = (source: string): Promise<HTMLImageElement> => new Promise((resolve, reject) => {
const img = new Image();
img.crossOrigin = 'anonymous';
img.onload = () => resolve(img);
img.onerror = () => reject(img);
img.src = source;
});
export const fetchImages = (ctx: CanvasRenderingContext2D, geometry: ITilePlacement ): Promise<{ x: number, y: number, image: HTMLImageElement }[]> => {
const {
minX, maxX, minY, maxY, zoom
} = geometry;
const images = [];
for (let x = minX; x <= maxX; x += 1) {
for (let y = minY; y <= maxY; y += 1) {
images.push({ x, y, source: getImageSource({ x, y, zoom }) });
}
}
return Promise.all(images.map(({ x, y, source }) => (
imageFetcher(source).then(image => ({ x, y, image }))
)));
};
export const composeImages = (
{ images, geometry, ctx }:
{ images: [], geometry: ITilePlacement, ctx: CanvasRenderingContext2D }
): void => {
const {
minX, minY, shiftX, shiftY, size
} = geometry;
images.map(({ x, y, image }) => {
const posX = ((x - minX) * size) + shiftX;
const posY = ((y - minY) * size) - shiftY;
return ctx.drawImage(image, posX, posY, 256, 256);
});
};
export const composePoly = ({ points, ctx }: { points: IMapPoint[], ctx: CanvasRenderingContext2D }): void => {
if (editor.poly.isEmpty) return;
let minX = points[0].x;
let maxX = points[0].x;
let minY = points[0].y;
let maxY = points[0].y;
ctx.strokeStyle = 'red';
ctx.lineCap = 'round';
ctx.lineJoin = 'round';
ctx.lineWidth = CLIENT.STROKE_WIDTH + 0.5;
ctx.beginPath();
ctx.moveTo(points[0].x, points[0].y);
for (let i = 1; i < points.length; i += 1) {
ctx.lineTo(points[i].x, points[i].y);
// gradient bounds
if (points[i].x < minX) minX = points[i].x;
if (points[i].x > maxX) maxX = points[i].x;
if (points[i].y < minY) minY = points[i].y;
if (points[i].y > maxY) maxY = points[i].y;
}
const gradient = ctx.createLinearGradient(minX, minY, minX, maxY);
gradient.addColorStop(0, COLORS.PATH_COLOR[0]);
gradient.addColorStop(1, COLORS.PATH_COLOR[1]);
ctx.strokeStyle = gradient;
ctx.stroke();
ctx.closePath();
};
const measureText = (
ctx: CanvasRenderingContext2D,
text: string,
lineHeight: number
): { width: number, height: number } => (
text.split('\n').reduce((obj, line) => (
{
width: Math.max(ctx.measureText(line).width, obj.width),
height: obj.height + lineHeight,
}
), { width: 0, height: 0 })
);
const composeStickerArrow = (
ctx: CanvasRenderingContext2D,
x: number,
y: number,
angle: number,
) => {
ctx.save();
ctx.translate(x, y);
ctx.rotate(angle + (Math.PI * 0.75));
ctx.translate(-x, -y);
ctx.fillStyle = '#ff3344';
ctx.beginPath();
ctx.moveTo(x, y);
ctx.lineTo(x + 38, y + 20);
ctx.lineTo(x + 38, y + 38);
ctx.lineTo(x + 20, y + 38);
ctx.fill();
ctx.closePath();
ctx.restore();
};
const measureRect = (
x: number,
y: number,
width: number,
height: number,
reversed: boolean,
) => ({
rectX: reversed ? (x - width - 36 - 10) : x,
rectY: (y - 7 - (height / 2)),
rectW: width + 36 + 10,
rectH: height + 20,
textX: reversed ? (x - width - 36) : x + 36
});
const composeStickerText = (
ctx: CanvasRenderingContext2D,
x: number,
y: number,
angle: number,
text: string,
) => {
const rad = 56;
const tX = ((Math.cos(angle + Math.PI) * rad) - 30) + x + 28;
const tY = ((Math.sin(angle + Math.PI) * rad) - 30) + y + 29;
ctx.font = '12px "Helvetica Neue", Arial';
const lines = text.split('\n');
const { width, height } = measureText(ctx, text, 16);
const {
rectX, rectY, rectW, rectH, textX
} = measureRect(tX, tY, width, height, (angle > -(Math.PI / 2) && angle < (Math.PI / 2)));
// rectangle
ctx.fillStyle = '#222222';
ctx.beginPath();
ctx.rect(
rectX,
rectY,
rectW,
rectH,
);
ctx.closePath();
ctx.fill();
// text
ctx.fillStyle = 'white';
lines.map((line, i) => (
ctx.fillText(
line,
textX,
rectY + 6 + (16 * (i + 1)),
)
));
};
const composeStickerImage = async (
ctx: CanvasRenderingContext2D,
x: number,
y: number,
angle: number,
set: IRootState['activeSticker']['set'],
sticker: IRootState['activeSticker']['sticker'],
): Promise<void> => {
const rad = 56;
const tX = ((Math.cos(angle + Math.PI) * rad) - 30) + (x - 8);
const tY = ((Math.sin(angle + Math.PI) * rad) - 30) + (y - 4);
const offsetX = STICKERS[set].layers[sticker].off * 72;
return imageFetcher(STICKERS[set].url).then(image => (
ctx.drawImage(image, offsetX, 0, 72, 72, tX, tY, 72, 72)
));
};
export const composeStickers = async (
{ stickers, ctx }:
{ stickers: IStickerPlacement[], ctx: CanvasRenderingContext2D }
): Promise<void> => {
if (!stickers || stickers.length < 0) return;
stickers.map(({ x, y, angle, text }) => {
composeStickerArrow(ctx, x, y, angle);
if (text) composeStickerText(ctx, x, y, angle, text);
});
await Promise.all(stickers.map(({
x, y, angle, set, sticker
}) => (
composeStickerImage(ctx, x, y, angle, set, sticker)
)));
};
export const downloadCanvas = (canvas: HTMLCanvasElement, title: IRootState['title']): void => canvas.toBlob(blob => saveAs(blob, title));