2021-05-15 13:02:13 +00:00
|
|
|
import {
|
|
|
|
Bounds,
|
|
|
|
BoundsSnapshot,
|
|
|
|
Shape,
|
|
|
|
Shapes,
|
|
|
|
ShapeType,
|
2021-05-22 15:45:24 +00:00
|
|
|
Corner,
|
|
|
|
Edge,
|
2021-05-15 13:02:13 +00:00
|
|
|
} from "types"
|
2021-05-14 12:44:23 +00:00
|
|
|
import circle from "./circle"
|
|
|
|
import dot from "./dot"
|
|
|
|
import polyline from "./polyline"
|
|
|
|
import rectangle from "./rectangle"
|
|
|
|
import ellipse from "./ellipse"
|
|
|
|
import line from "./line"
|
|
|
|
import ray from "./ray"
|
|
|
|
|
|
|
|
/*
|
|
|
|
Shape Utiliies
|
|
|
|
|
|
|
|
A shape utility is an object containing utility methods for each type of shape
|
|
|
|
in the application. While shapes may be very different, each shape must support
|
|
|
|
a common set of utility methods, such as hit tests or translations, that
|
|
|
|
|
|
|
|
Operations throughout the app will call these utility methods
|
|
|
|
when performing tests (such as hit tests) or mutations, such as translations.
|
|
|
|
*/
|
|
|
|
|
|
|
|
export interface ShapeUtility<K extends Shape> {
|
|
|
|
// A cache for the computed bounds of this kind of shape.
|
|
|
|
boundsCache: WeakMap<K, Bounds>
|
|
|
|
|
|
|
|
// Create a new shape.
|
|
|
|
create(props: Partial<K>): K
|
|
|
|
|
|
|
|
// Get the bounds of the a shape.
|
|
|
|
getBounds(this: ShapeUtility<K>, shape: K): Bounds
|
|
|
|
|
2021-05-18 08:32:20 +00:00
|
|
|
// Get the routated bounds of the a shape.
|
|
|
|
getRotatedBounds(this: ShapeUtility<K>, shape: K): Bounds
|
|
|
|
|
2021-05-17 21:27:18 +00:00
|
|
|
// Get the center of the shape
|
|
|
|
getCenter(this: ShapeUtility<K>, shape: K): number[]
|
|
|
|
|
2021-05-14 12:44:23 +00:00
|
|
|
// Test whether a point lies within a shape.
|
|
|
|
hitTest(this: ShapeUtility<K>, shape: K, test: number[]): boolean
|
|
|
|
|
|
|
|
// Test whether bounds collide with or contain a shape.
|
|
|
|
hitTestBounds(this: ShapeUtility<K>, shape: K, bounds: Bounds): boolean
|
|
|
|
|
|
|
|
// Apply a rotation to a shape.
|
|
|
|
rotate(this: ShapeUtility<K>, shape: K): K
|
|
|
|
|
|
|
|
// Apply a translation to a shape.
|
|
|
|
translate(this: ShapeUtility<K>, shape: K, delta: number[]): K
|
|
|
|
|
|
|
|
// Transform to fit a new bounding box.
|
2021-05-14 21:05:21 +00:00
|
|
|
transform(
|
|
|
|
this: ShapeUtility<K>,
|
|
|
|
shape: K,
|
2021-05-15 13:02:13 +00:00
|
|
|
bounds: Bounds,
|
|
|
|
info: {
|
2021-05-23 13:46:04 +00:00
|
|
|
type: Edge | Corner
|
2021-05-15 13:02:13 +00:00
|
|
|
initialShape: K
|
2021-05-19 12:27:01 +00:00
|
|
|
scaleX: number
|
|
|
|
scaleY: number
|
2021-05-22 15:45:24 +00:00
|
|
|
transformOrigin: number[]
|
2021-05-15 13:02:13 +00:00
|
|
|
}
|
2021-05-14 21:05:21 +00:00
|
|
|
): K
|
2021-05-14 12:44:23 +00:00
|
|
|
|
2021-05-19 09:35:00 +00:00
|
|
|
transformSingle(
|
|
|
|
this: ShapeUtility<K>,
|
|
|
|
shape: K,
|
|
|
|
bounds: Bounds,
|
|
|
|
info: {
|
2021-05-23 13:46:04 +00:00
|
|
|
type: Edge | Corner
|
2021-05-19 09:35:00 +00:00
|
|
|
initialShape: K
|
2021-05-19 12:27:01 +00:00
|
|
|
scaleX: number
|
|
|
|
scaleY: number
|
2021-05-22 15:45:24 +00:00
|
|
|
transformOrigin: number[]
|
2021-05-19 09:35:00 +00:00
|
|
|
}
|
|
|
|
): K
|
|
|
|
|
2021-05-14 12:44:23 +00:00
|
|
|
// Apply a scale to a shape.
|
|
|
|
scale(this: ShapeUtility<K>, shape: K, scale: number): K
|
|
|
|
|
|
|
|
// Render a shape to JSX.
|
|
|
|
render(this: ShapeUtility<K>, shape: K): JSX.Element
|
2021-05-15 13:02:13 +00:00
|
|
|
|
|
|
|
// Whether to show transform controls when this shape is selected.
|
|
|
|
canTransform: boolean
|
2021-05-23 13:46:04 +00:00
|
|
|
|
|
|
|
// Whether the shape's aspect ratio can change
|
|
|
|
canChangeAspectRatio: boolean
|
2021-05-14 12:44:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// A mapping of shape types to shape utilities.
|
|
|
|
const shapeUtilityMap: { [key in ShapeType]: ShapeUtility<Shapes[key]> } = {
|
|
|
|
[ShapeType.Circle]: circle,
|
|
|
|
[ShapeType.Dot]: dot,
|
|
|
|
[ShapeType.Polyline]: polyline,
|
|
|
|
[ShapeType.Rectangle]: rectangle,
|
|
|
|
[ShapeType.Ellipse]: ellipse,
|
|
|
|
[ShapeType.Line]: line,
|
|
|
|
[ShapeType.Ray]: ray,
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A helper to retrieve a shape utility based on a shape object.
|
|
|
|
* @param shape
|
|
|
|
* @returns
|
|
|
|
*/
|
|
|
|
export function getShapeUtils(shape: Shape): ShapeUtility<typeof shape> {
|
|
|
|
return shapeUtilityMap[shape.type]
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A factory of shape utilities, with typing enforced.
|
|
|
|
* @param shape
|
|
|
|
* @returns
|
|
|
|
*/
|
2021-05-20 09:49:40 +00:00
|
|
|
export function registerShapeUtils<T extends Shape>(
|
2021-05-14 12:44:23 +00:00
|
|
|
shape: ShapeUtility<T>
|
|
|
|
): ShapeUtility<T> {
|
|
|
|
return Object.freeze(shape)
|
2021-05-12 21:11:17 +00:00
|
|
|
}
|
2021-05-12 22:08:53 +00:00
|
|
|
|
2021-05-14 12:44:23 +00:00
|
|
|
export default shapeUtilityMap
|