저장소 사고로 잃은 4개 커밋(38eb7cd4·b8a11756·281528bf·f60b488d)의 작업물을 하나로 다시 담았다. 내용은 동일하다. ■ 구조 - commands/: 명령 정의(id·AutoCAD 별칭·글리프·도구/즉시실행)를 단일 소스로 두고 리본·명령행·단축키가 모두 이 레지스트리를 읽는다. tools/tool.consts.ts 폐지. - ribbon/: 탭→패널→명령 데이터(ribbon.config.ts)와 범용 렌더러 분리. AutoCAD 배치(홈·삽입·주석·뷰·출력)와 패널 확장(▾)을 따른다. - tools/factories/sequence-tool.ts: 점·숫자·문자·객체·선택 단계를 선언하면 xstate 머신을 만들어 주는 공장. 명령당 170줄 보일러플레이트 제거. - helpers/geometry/: 3점 호·정다각형·타원·스플라인·구름형·평행이동·해치 스캔선· 점렬 샘플링 등 상태 없는 순수 함수. - Toolbar 483줄을 QuickAccessBar/Ribbon/InspectorPanel/StatusBar/CommandLine/ ViewControls/PropertiesEditor/QuickProperties로 분해. ■ 명령 (조사표 기준) - 1절 그리기 21건, 2절 수정 27건, 3절 도면층·특성·그룹·유틸리티 39건 전부 반영. - 5절 주석 34건 중 26건 반영(문자·치수 16종·지시선·표·구름형·주석 축척). - HatchEntity 추가(solid·pattern·cross·gradient) + JSON 왕복, Layer에 색·선가중치· 선종류·동결·투명도 필드 추가, 그리기 루프가 동결·숨김·투명도를 반영. ■ 화면 실측에서 고친 결함 - 명령행 포커스 상태에서 ENTER가 도구로 가지 않던 문제 - 명령행 문자 입력이 접두사가 같은 명령으로 실행되던 문제 - 명령이 끝나도 입력을 계속 먹던 문제(점 입력 명령만 반복, 나머지는 선택 도구 복귀) - 시퀀스 단계 인덱스 오사용 9건 + 단계 값 종류 검사 추가 - 해치 내부를 클릭해도 선택되지 않던 문제 미반영 8건(맞춤법 검사·꺾기 치수·치수 끊기/재연관/검사 치수·기하공차·지시선 수집· 축척 리스트 편집)은 조사표 `반영` 열과 PLAN.md에 사유를 적었다.
178 lines
5.2 KiB
TypeScript
178 lines
5.2 KiB
TypeScript
import { Box, Point, Segment } from '@flatten-js/core';
|
|
import { max, min } from 'es-toolkit/compat';
|
|
import type { Shape, SnapPoint } from '../App.types';
|
|
import type { DrawController } from '../drawControllers/DrawController';
|
|
import { mirrorPointOverAxis } from '../helpers/mirror-point-over-axis.ts';
|
|
import { scalePoint } from '../helpers/scale-point';
|
|
import { getActiveLayerId } from '../state.ts';
|
|
import { type Entity, EntityName, type JsonEntity } from './Entity';
|
|
import type { LineEntity } from './LineEntity.ts';
|
|
|
|
export class ArrowHeadEntity implements Entity {
|
|
public id: string = crypto.randomUUID();
|
|
public fillColor = '#fff';
|
|
public lineColor = '#fff';
|
|
public lineWidth = 1;
|
|
public lineDash: number[] = [];
|
|
public layerId: string;
|
|
/** 0~1 객체 투명도 (Entity 인터페이스의 선택 항목) */
|
|
public opacity?: number;
|
|
/** GROUP으로 묶인 객체가 공유하는 식별자 */
|
|
public groupId?: string;
|
|
|
|
// 3 corners of the arrow head
|
|
constructor(
|
|
layerId: string,
|
|
private p1: Point, // Tip of the arrow
|
|
private p2: Point,
|
|
private p3: Point
|
|
) {
|
|
this.layerId = layerId;
|
|
}
|
|
|
|
public draw(
|
|
drawController: DrawController,
|
|
parentHighlighted?: boolean,
|
|
parentSelected?: boolean
|
|
): void {
|
|
drawController.setLineStyles(
|
|
parentHighlighted ?? false,
|
|
parentSelected ?? false,
|
|
this.lineColor,
|
|
this.lineWidth,
|
|
this.lineDash
|
|
);
|
|
drawController.drawLine(this.p1, this.p2);
|
|
drawController.drawLine(this.p2, this.p3);
|
|
drawController.drawLine(this.p3, this.p1);
|
|
|
|
drawController.setFillStyles(this.fillColor);
|
|
drawController.fillPolygon(this.p1, this.p2, this.p3);
|
|
}
|
|
|
|
public move(x: number, y: number) {
|
|
this.p1 = this.p1.translate(x, y);
|
|
this.p2 = this.p2.translate(x, y);
|
|
this.p3 = this.p3.translate(x, y);
|
|
}
|
|
|
|
public scale(scaleOrigin: Point, scaleFactor: number) {
|
|
this.p1 = scalePoint(this.p1, scaleOrigin, scaleFactor);
|
|
this.p2 = scalePoint(this.p2, scaleOrigin, scaleFactor);
|
|
this.p3 = scalePoint(this.p3, scaleOrigin, scaleFactor);
|
|
}
|
|
|
|
public rotate(rotateOrigin: Point, angle: number) {
|
|
this.p1 = this.p1.rotate(angle, rotateOrigin);
|
|
this.p2 = this.p2.rotate(angle, rotateOrigin);
|
|
this.p3 = this.p3.rotate(angle, rotateOrigin);
|
|
}
|
|
|
|
public mirror(mirrorAxis: LineEntity) {
|
|
this.p1 = mirrorPointOverAxis(this.p1, mirrorAxis);
|
|
this.p2 = mirrorPointOverAxis(this.p2, mirrorAxis);
|
|
this.p3 = mirrorPointOverAxis(this.p3, mirrorAxis);
|
|
}
|
|
|
|
public clone(): ArrowHeadEntity {
|
|
return new ArrowHeadEntity(this.layerId, this.p1.clone(), this.p2.clone(), this.p3.clone());
|
|
}
|
|
|
|
public intersectsWithBox(box: Box): boolean {
|
|
return (
|
|
new Segment(this.p1, this.p2).intersect(box).length > 0 ||
|
|
new Segment(this.p2, this.p3).intersect(box).length > 0 ||
|
|
new Segment(this.p3, this.p1).intersect(box).length > 0
|
|
);
|
|
}
|
|
|
|
public isContainedInBox(box: Box): boolean {
|
|
return box.contains(this.p1) || box.contains(this.p2) || box.contains(this.p3);
|
|
}
|
|
|
|
public getBoundingBox(): Box {
|
|
return new Box(
|
|
min([this.p1.x, this.p2.x, this.p3.x]),
|
|
min([this.p1.y, this.p2.y, this.p3.y]),
|
|
max([this.p1.x, this.p2.x, this.p3.x]),
|
|
max([this.p1.y, this.p2.y, this.p3.y])
|
|
);
|
|
}
|
|
|
|
public getShape(): Shape | null {
|
|
return null; // TODO see why we need to get the shape out of an entity
|
|
}
|
|
|
|
public getSnapPoints(): SnapPoint[] {
|
|
return [];
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
public getIntersections(_entity: Entity): Point[] {
|
|
return [];
|
|
}
|
|
|
|
public getFirstPoint(): Point | null {
|
|
return this.p1;
|
|
}
|
|
|
|
public distanceTo(shape: Shape): [number, Segment] | null {
|
|
return this.p1.distanceTo(shape);
|
|
}
|
|
|
|
public getSvgString(): string | null {
|
|
return null;
|
|
}
|
|
|
|
public getType(): EntityName {
|
|
return EntityName.ArrowHead;
|
|
}
|
|
|
|
public containsPointOnShape(point: Point): boolean {
|
|
return (
|
|
new Segment(this.p1, this.p2).contains(point) ||
|
|
new Segment(this.p2, this.p3).contains(point) ||
|
|
new Segment(this.p3, this.p1).contains(point)
|
|
);
|
|
}
|
|
|
|
public async toJson(): Promise<JsonEntity<ArrowHeadJsonData> | null> {
|
|
return {
|
|
id: this.id,
|
|
type: EntityName.ArrowHead,
|
|
lineColor: this.lineColor,
|
|
lineWidth: this.lineWidth,
|
|
lineDash: this.lineDash,
|
|
layerId: this.layerId,
|
|
shapeData: {
|
|
p1: { x: this.p1.x, y: this.p1.y },
|
|
p2: { x: this.p2.x, y: this.p2.y },
|
|
p3: { x: this.p3.x, y: this.p3.y },
|
|
},
|
|
};
|
|
}
|
|
|
|
public static async fromJson(
|
|
jsonEntity: JsonEntity<ArrowHeadJsonData>
|
|
): Promise<ArrowHeadEntity> {
|
|
if (!jsonEntity.shapeData) {
|
|
throw new Error('Invalid JSON entity of type Arrow: missing shapeData');
|
|
}
|
|
const p1 = new Point(jsonEntity.shapeData.p1.x, jsonEntity.shapeData.p1.y);
|
|
const p2 = new Point(jsonEntity.shapeData.p2.x, jsonEntity.shapeData.p2.y);
|
|
const p3 = new Point(jsonEntity.shapeData.p3.x, jsonEntity.shapeData.p3.y);
|
|
const lineEntity = new ArrowHeadEntity(jsonEntity.layerId || getActiveLayerId(), p1, p2, p3);
|
|
lineEntity.id = jsonEntity.id;
|
|
lineEntity.lineColor = jsonEntity.lineColor;
|
|
lineEntity.lineWidth = jsonEntity.lineWidth;
|
|
lineEntity.lineDash = jsonEntity.lineDash ?? [];
|
|
return lineEntity;
|
|
}
|
|
}
|
|
|
|
export interface ArrowHeadJsonData {
|
|
p1: { x: number; y: number };
|
|
p2: { x: number; y: number };
|
|
p3: { x: number; y: number };
|
|
}
|