ttrpg-tools/src/plotcutter/contour.ts

247 lines
6.5 KiB
TypeScript
Raw Normal View History

2026-03-15 09:29:18 +08:00
import type { CardShape, ContourPoint, ContourBounds } from './types';
2026-03-15 11:48:20 +08:00
import {getRoundedPolygonPoints} from "./rounded";
2026-03-15 01:43:25 +08:00
2026-03-15 09:33:39 +08:00
// 重新导出类型以兼容旧导入路径
export type { CardShape, ContourPoint, ContourBounds };
2026-03-15 11:17:08 +08:00
2026-03-15 01:43:25 +08:00
/**
2026-03-15 11:17:08 +08:00
*
* @param width
* @param height
* @returns
2026-03-15 01:43:25 +08:00
*/
2026-03-15 11:17:08 +08:00
export function getInscribedTrianglePoints(
2026-03-15 01:43:25 +08:00
width: number,
2026-03-15 11:17:08 +08:00
height: number
2026-03-15 01:43:25 +08:00
): [number, number][] {
2026-03-15 11:17:08 +08:00
// 以短边为基准计算内接正三角形的边长
const minDim = Math.min(width, height);
// 正三角形的高 = 边长 * sqrt(3) / 2
const triangleHeight = minDim * Math.sqrt(3) / 2;
const sideLength = minDim;
2026-03-15 01:43:25 +08:00
2026-03-15 11:17:08 +08:00
// 计算居中偏移
const offsetX = (width - sideLength) / 2;
const offsetY = (height - triangleHeight) / 2;
// 正三角形三个顶点(底边在下,顶点在上,顺时针:左上→右上→下)
const points: [number, number][] = [
[offsetX, offsetY + triangleHeight], // 左下顶点
[offsetX + sideLength, offsetY + triangleHeight], // 右下顶点
[offsetX + sideLength / 2, offsetY] // 顶部顶点
];
return points;
}
/**
*
* @param width
* @param height
* @returns
*/
export function getInscribedHexagonPoints(
width: number,
height: number
): [number, number][] {
// 以短边为基准计算内接正六边形的半径
const minDim = Math.min(width, height);
const radius = minDim / 2;
// 中心点
const centerX = width / 2;
const centerY = height / 2;
2026-03-15 01:43:25 +08:00
2026-03-15 11:48:20 +08:00
// 正六边形六个顶点(平顶,从左上角开始顺时针)
// 角度210°, 270°, 330°, 30°, 90°, 150° (数学坐标系Y向上)
// 在屏幕坐标系 (Y向下),我们直接按顺时针计算
2026-03-15 11:17:08 +08:00
const points: [number, number][] = [];
for (let i = 0; i < 6; i++) {
2026-03-15 11:48:20 +08:00
// 从 -120度开始每 60 度一个点,实现平顶且顺时针
const angle = (-2 * Math.PI / 3) + (i * Math.PI / 3);
2026-03-15 01:43:25 +08:00
points.push([
2026-03-15 11:17:08 +08:00
centerX + radius * Math.cos(angle),
2026-03-15 11:48:20 +08:00
centerY + radius * Math.sin(angle)
2026-03-15 01:43:25 +08:00
]);
}
2026-03-15 11:17:08 +08:00
return points;
}
2026-03-15 01:43:25 +08:00
/**
* mm
*/
export function getCardShapePoints(
shape: CardShape,
width: number,
height: number,
2026-03-15 11:17:08 +08:00
cornerRadius: number = 0,
segmentsPerCorner: number = 4
2026-03-15 01:43:25 +08:00
): [number, number][] {
2026-03-15 11:17:08 +08:00
// 处理带圆角的情况 - 统一使用 getRoundedPolygonPoints
if (cornerRadius > 0) {
if (shape === 'rectangle') {
const vertices: [number, number][] = [
[0, 0],
[width, 0],
[width, height],
[0, height]
];
return getRoundedPolygonPoints(vertices, cornerRadius, segmentsPerCorner);
}
if (shape === 'triangle') {
const vertices = getInscribedTrianglePoints(width, height);
return getRoundedPolygonPoints(vertices, cornerRadius, segmentsPerCorner);
}
if (shape === 'hexagon') {
const vertices = getInscribedHexagonPoints(width, height);
return getRoundedPolygonPoints(vertices, cornerRadius, segmentsPerCorner);
}
2026-03-15 01:43:25 +08:00
}
const points: [number, number][] = [];
switch (shape) {
case 'circle': {
const radius = Math.min(width, height) / 2;
const centerX = width / 2;
const centerY = height / 2;
for (let i = 0; i < 36; i++) {
const angle = (i / 36) * Math.PI * 2;
points.push([
centerX + radius * Math.cos(angle),
centerY + radius * Math.sin(angle)
]);
}
break;
}
case 'triangle': {
2026-03-15 11:17:08 +08:00
return getInscribedTrianglePoints(width, height);
2026-03-15 01:43:25 +08:00
}
case 'hexagon': {
2026-03-15 11:17:08 +08:00
return getInscribedHexagonPoints(width, height);
2026-03-15 01:43:25 +08:00
}
case 'rectangle':
default: {
points.push([0, 0]);
points.push([width, 0]);
points.push([width, height]);
points.push([0, height]);
break;
}
}
return points;
}
/**
*
*/
export function calculateCenter(points: [number, number][]): { x: number; y: number } {
let sumX = 0;
let sumY = 0;
for (const [x, y] of points) {
sumX += x;
sumY += y;
}
return {
x: sumX / points.length,
y: sumY / points.length
};
}
/**
*
*/
export function calculateBounds(points: [number, number][]): ContourBounds {
if (points.length === 0) {
return { minX: 0, minY: 0, maxX: 0, maxY: 0 };
}
let minX = Infinity;
let minY = Infinity;
let maxX = -Infinity;
let maxY = -Infinity;
for (const [x, y] of points) {
minX = Math.min(minX, x);
minY = Math.min(minY, y);
maxX = Math.max(maxX, x);
maxY = Math.max(maxY, y);
}
return { minX, minY, maxX, maxY };
}
/**
*
*/
export function getPointOnPath(points: [number, number][], progress: number): [number, number] {
if (points.length === 0) return [0, 0];
if (points.length === 1) return points[0];
const totalSegments = points.length;
const scaledProgress = progress * totalSegments;
const segmentIndex = Math.floor(scaledProgress);
const segmentProgress = scaledProgress - segmentIndex;
const currentIndex = Math.min(segmentIndex, points.length - 1);
const nextIndex = (currentIndex + 1) % points.length;
const [x1, y1] = points[currentIndex];
const [x2, y2] = points[nextIndex];
return [
x1 + (x2 - x1) * segmentProgress,
y1 + (y2 - y1) * segmentProgress
];
}
/**
* SVG path
* @param points
* @param closed
*/
export function contourToSvgPath(points: [number, number][], closed = true): string {
if (points.length === 0) return '';
const [startX, startY] = points[0];
let d = `M ${startX} ${startY}`;
for (let i = 1; i < points.length; i++) {
const [x, y] = points[i];
d += ` L ${x} ${y}`;
}
if (closed) {
d += ' Z';
}
return d;
}
/**
*
*/
export function translateContour(
points: [number, number][],
offsetX: number,
offsetY: number
): [number, number][] {
return points.map(([x, y]) => [x + offsetX, y + offsetY] as [number, number]);
}
/**
* SVG Y
* @param points
* @param height
*/
export function flipContourY(
points: [number, number][],
height: number
): [number, number][] {
return points.map(([x, y]) => [x, height - y] as [number, number]);
}