@mlightcad/libredwg-converter 3.4.7 → 3.4.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- import { AcDbFace as M, AcDbArc as L, AcGeVector3d as D, AcDbCircle as S, AcDbEllipse as C, AcDbLine as x, AcGePoint3d as I, AcDbSpline as w, AcDbPoint as v, AcDbTrace as O, AcDbPolyline as R, AcGePoint2d as y, AcDbPoly2dType as A, AcDb2dPolyline as k, AcDbPoly3dType as b, AcDb3dPolyline as m, AcDbHatch as V, AcGePolyline2d as N, AcGeLoop2d as B, AcGeLine2d as F, AcGeCircArc2d as j, AcGeVector2d as z, AcGeEllipseArc2d as W, AcGeSpline3d as T, AcDbTable as H, AcDbText as X, AcDbMText as G, AcDbLeader as U, AcDbAlignedDimension as Y, AcDb3PointAngularDimension as Z, AcDbOrdinateDimension as _, AcDbRadialDimension as K, AcDbDiametricDimension as q, AcDbRasterImage as J, AcDbWipeout as Q, AcDbViewport as $, AcDbRay as ee, AcDbXline as ne, AcDbBlockReference as te, AcCmTransparency as oe, AcDbDatabaseConverter as se, createWorkerApi as re, AcDbLinetypeTableRecord as ie, AcDbTextStyleTableRecord as ce, AcDbDimStyleTableRecord as ae, AcCmColor as le, AcDbLayerTableRecord as de, AcDbViewportTableRecord as pe, AcDbBlockTableRecord as ue, AcDbBatchProcessing as fe, AcDbLayout as he, AcDbRasterImageDef as De } from "@mlightcad/data-model";
1
+ import { AcDbFace as M, AcDbArc as L, AcGeVector3d as D, AcDbCircle as S, AcDbEllipse as C, AcDbLine as x, AcGePoint3d as I, AcDbSpline as w, AcDbPoint as v, AcDbTrace as O, AcDbPolyline as R, AcGePoint2d as y, AcDbPoly2dType as A, AcDb2dPolyline as k, AcDbPoly3dType as b, AcDb3dPolyline as m, AcDbHatch as V, AcGePolyline2d as N, AcGeLoop2d as F, AcGeLine2d as B, AcGeCircArc2d as j, AcGeVector2d as z, AcGeEllipseArc2d as W, AcGeSpline3d as T, AcDbTable as H, AcDbText as X, AcDbMText as G, AcDbLeader as U, AcDbAlignedDimension as Y, AcDb3PointAngularDimension as Z, AcDbOrdinateDimension as _, AcDbRadialDimension as K, AcDbDiametricDimension as q, AcDbRasterImage as J, AcDbWipeout as Q, AcDbViewport as $, AcDbRay as ee, AcDbXline as ne, AcDbBlockReference as te, AcCmTransparency as oe, AcDbDatabaseConverter as se, createWorkerApi as re, AcDbLinetypeTableRecord as ie, AcDbTextStyleTableRecord as ce, AcDbDimStyleTableRecord as ae, AcCmColor as le, AcDbLayerTableRecord as de, AcDbViewportTableRecord as pe, AcDbBlockTableRecord as ue, AcDbBatchProcessing as fe, AcDbLayout as he, AcDbRasterImageDef as De } from "@mlightcad/data-model";
2
2
  class E {
3
3
  convert(e) {
4
4
  const n = this.createEntity(e);
@@ -149,12 +149,12 @@ class E {
149
149
  });
150
150
  }), n.add(i);
151
151
  } else {
152
- const a = o, i = new B();
152
+ const a = o, i = new F();
153
153
  a.edges.forEach((l) => {
154
154
  if (l != null) {
155
155
  if (l.type == 1) {
156
156
  const c = l;
157
- i.add(new F(c.start, c.end));
157
+ i.add(new B(c.start, c.end));
158
158
  } else if (l.type == 2) {
159
159
  const c = l;
160
160
  i.add(
@@ -344,7 +344,11 @@ class be extends se {
344
344
  // One concurrent worker needed for parser
345
345
  maxConcurrentWorkers: 1
346
346
  }), s = await n.execute(e);
347
- return n.destroy(), s.data;
347
+ if (n.destroy(), s.success)
348
+ return s.data;
349
+ throw new Error(
350
+ `Failed to parse drawing due to error: '${s.error}'`
351
+ );
348
352
  } else
349
353
  throw new Error("dwg converter can run in web worker only!");
350
354
  }
@@ -1 +1 @@
1
- (function(D,r){typeof exports=="object"&&typeof module<"u"?r(exports,require("@mlightcad/data-model")):typeof define=="function"&&define.amd?define(["exports","@mlightcad/data-model"],r):(D=typeof globalThis<"u"?globalThis:D||self,r(D["libredwg-converter"]={},D.dataModel))})(this,function(D,r){"use strict";class b{convert(e){const n=this.createEntity(e);return n&&this.processCommonAttrs(e,n),n}createEntity(e){return e.type=="3DFACE"?this.convertFace(e):e.type=="ARC"?this.convertArc(e):e.type=="CIRCLE"?this.convertCirle(e):e.type=="DIMENSION"?this.convertDimension(e):e.type=="ELLIPSE"?this.convertEllipse(e):e.type=="HATCH"?this.convertHatch(e):e.type=="IMAGE"?this.convertImage(e):e.type=="LEADER"?this.convertLeader(e):e.type=="LINE"?this.convertLine(e):e.type=="LWPOLYLINE"?this.convertLWPolyline(e):e.type=="MTEXT"?this.convertMText(e):e.type=="POINT"?this.convertPoint(e):e.type=="POLYLINE2D"?this.convertPolyline2d(e):e.type=="POLYLINE3D"?this.convertPolyline3d(e):e.type=="RAY"?this.convertRay(e):e.type=="SPLINE"?this.convertSpline(e):e.type=="ACAD_TABLE"?this.convertTable(e):e.type=="TEXT"?this.convertText(e):e.type=="SOLID"?this.convertSolid(e):e.type=="VIEWPORT"?this.convertViewport(e):e.type=="WIPEOUT"?this.convertWipeout(e):e.type=="XLINE"?this.convertXline(e):e.type=="INSERT"?this.convertBlockReference(e):null}convertFace(e){const n=new r.AcDbFace;return e.corner1&&n.setVertexAt(0,e.corner1),e.corner2&&n.setVertexAt(1,e.corner2),e.corner3&&n.setVertexAt(2,e.corner3),e.corner4&&n.setVertexAt(3,e.corner4),n.setEdgeInvisibilities(e.flag),n}convertArc(e){return new r.AcDbArc(e.center,e.radius,e.startAngle,e.endAngle,e.extrusionDirection??r.AcGeVector3d.Z_AXIS)}convertCirle(e){return new r.AcDbCircle(e.center,e.radius,e.extrusionDirection??r.AcGeVector3d.Z_AXIS)}convertEllipse(e){const n=new r.AcGeVector3d(e.majorAxisEndPoint),o=n.length();return new r.AcDbEllipse(e.center,e.extrusionDirection??r.AcGeVector3d.Z_AXIS,n,o,o*e.axisRatio,e.startAngle,e.endAngle)}convertLine(e){const n=e.startPoint,o=e.endPoint;return new r.AcDbLine(new r.AcGePoint3d(n.x,n.y,n.z),new r.AcGePoint3d(o.x,o.y,o.z))}convertSpline(e){try{if(e.numberOfControlPoints>0&&e.numberOfKnots>0)return new r.AcDbSpline(e.controlPoints,e.knots,e.weights,e.degree,!!(e.flag&1));if(e.numberOfFitPoints>0)return new r.AcDbSpline(e.fitPoints,"Uniform",e.degree,!!(e.flag&1))}catch(n){console.log(`Failed to convert spline with error: ${n}`)}return null}convertPoint(e){const n=new r.AcDbPoint;return n.position=e.position,n}convertSolid(e){const n=new r.AcDbTrace;return n.setPointAt(0,{...e.corner1,z:0}),n.setPointAt(1,{...e.corner2,z:0}),n.setPointAt(2,{...e.corner3,z:0}),n.setPointAt(3,e.corner4?{...e.corner4,z:0}:{...e.corner3,z:0}),n.thickness=e.thickness,n}convertLWPolyline(e){const n=new r.AcDbPolyline;return n.closed=!!(e.flag&512),e.vertices.forEach((o,s)=>{n.addVertexAt(s,new r.AcGePoint2d(o.x,o.y),o.bulge,o.startWidth,o.endWidth)}),n}convertPolyline2d(e){const n=!!(e.flag&1),o=[],s=[];e.vertices.map(i=>{i.flag&16||(o.push({x:i.x,y:i.y,z:i.z}),s.push(i.bulge??0))});let t=r.AcDbPoly2dType.SimplePoly;return e.flag&2?t=r.AcDbPoly2dType.FitCurvePoly:e.flag&4&&(e.smoothType==6?t=r.AcDbPoly2dType.CubicSplinePoly:e.smoothType==5&&(t=r.AcDbPoly2dType.QuadSplinePoly)),new r.AcDb2dPolyline(t,o,0,n,e.startWidth,e.endWidth,s)}convertPolyline3d(e){const n=!!(e.flag&1),o=[];e.vertices.map(t=>{t.flag&16||o.push({x:t.x,y:t.y,z:t.z})});let s=r.AcDbPoly3dType.SimplePoly;return e.flag&4&&(e.smoothType==6?s=r.AcDbPoly3dType.CubicSplinePoly:e.smoothType==5&&(s=r.AcDbPoly3dType.QuadSplinePoly)),new r.AcDb3dPolyline(s,o,n)}convertHatch(e){var s;const n=new r.AcDbHatch;return(s=e.definitionLines)==null||s.forEach(t=>{n.definitionLines.push({angle:t.angle,base:t.base,offset:t.offset,dashLengths:t.numberOfDashLengths>0?t.dashLengths:[]})}),n.isSolidFill=e.solidFill==1,n.hatchStyle=e.hatchStyle,n.patternName=e.patternName,n.patternType=e.patternType,n.patternAngle=e.patternAngle==null?0:e.patternAngle,n.patternScale=e.patternScale==null?0:e.patternScale,e.boundaryPaths.forEach(t=>{if(t.boundaryPathTypeFlag&2){const a=t,c=new r.AcGePolyline2d;c.closed=a.isClosed,a.vertices.forEach((p,l)=>{c.addVertexAt(l,{x:p.x,y:p.y,bulge:p.bulge})}),n.add(c)}else{const a=t,c=new r.AcGeLoop2d;a.edges.forEach(p=>{if(p!=null){if(p.type==1){const l=p;c.add(new r.AcGeLine2d(l.start,l.end))}else if(p.type==2){const l=p;c.add(new r.AcGeCircArc2d(l.center,l.radius,l.startAngle,l.endAngle,!l.isCCW))}else if(p.type==3){const l=p;new r.AcGeVector2d().subVectors(l.end,l.center);const u=Math.sqrt(Math.pow(l.end.x,2)+Math.pow(l.end.y,2)),h=u*l.lengthOfMinorAxis;let f=l.startAngle,A=l.endAngle;const g=Math.atan2(l.end.y,l.end.x);l.isCCW||(f=Math.PI*2-f,A=Math.PI*2-A),c.add(new r.AcGeEllipseArc2d({...l.center,z:0},u,h,f,A,!l.isCCW,g))}else if(p.type==4){const l=p;if(l.numberOfControlPoints>0&&l.numberOfKnots>0){const d=l.controlPoints.map(f=>({x:f.x,y:f.y,z:0}));let u=!0;const h=l.controlPoints.map(f=>(f.weight==null&&(u=!1),f.weight||1));c.add(new r.AcGeSpline3d(d,l.knots,u?h:void 0))}else if(l.numberOfFitData>0){const d=l.fitDatum.map(u=>({x:u.x,y:u.y,z:0}));c.add(new r.AcGeSpline3d(d,"Uniform"))}}}}),n.add(c)}}),n}convertTable(e){const n=new r.AcDbTable(e.name,e.rowCount,e.columnCount);return n.attachmentPoint=e.attachmentPoint,n.position.copy(e.startPoint),e.columnWidthArr.forEach((o,s)=>n.setColumnWidth(s,o)),e.rowHeightArr.forEach((o,s)=>n.setRowHeight(s,o)),e.cells.forEach((o,s)=>{n.setCell(s,o)}),n}convertText(e){const n=new r.AcDbText;return n.textString=e.text,n.styleName=e.styleName,n.height=e.textHeight,n.position.copy(e.startPoint),n.rotation=e.rotation,n.oblique=e.obliqueAngle??0,n.thickness=e.thickness,n.horizontalMode=e.halign,n.verticalMode=e.valign,n.widthFactor=e.xScale??1,n}convertMText(e){const n=new r.AcDbMText;return n.contents=e.text,e.styleName!=null&&(n.styleName=e.styleName),n.height=e.textHeight,n.width=e.rectWidth,n.rotation=e.rotation||0,n.location=e.insertionPoint,n.attachmentPoint=e.attachmentPoint,e.direction&&(n.direction=new r.AcGeVector3d(e.direction)),n.drawingDirection=e.drawingDirection,n}convertLeader(e){const n=new r.AcDbLeader;return e.vertices.forEach(o=>{n.appendVertex(o)}),n.hasArrowHead=e.isArrowheadEnabled,n.hasHookLine=e.isHooklineExists,n.isSplined=e.isSpline,n.dimensionStyle=e.styleName,n.annoType=e.leaderCreationFlag,n}convertDimension(e){if(e.subclassMarker=="AcDbAlignedDimension"||e.subclassMarker=="AcDbRotatedDimension"){const n=e,o=new r.AcDbAlignedDimension(n.subDefinitionPoint1,n.subDefinitionPoint2,n.definitionPoint);return n.insertionPoint&&(o.dimBlockPosition={x:n.insertionPoint.x,y:n.insertionPoint.y,z:0}),o.rotation=n.rotationAngle,this.processDimensionCommonAttrs(e,o),o}else if(e.subclassMarker=="AcDb3PointAngularDimension"){const n=e,o=new r.AcDb3PointAngularDimension(n.centerPoint,n.subDefinitionPoint1,n.subDefinitionPoint2,n.definitionPoint);return this.processDimensionCommonAttrs(e,o),o}else if(e.subclassMarker=="AcDbOrdinateDimension"){const n=e,o=new r.AcDbOrdinateDimension(n.subDefinitionPoint1,n.subDefinitionPoint2);return this.processDimensionCommonAttrs(e,o),o}else if(e.subclassMarker=="AcDbRadialDimension"){const n=e,o=new r.AcDbRadialDimension(n.definitionPoint,n.centerPoint,n.leaderLength);return this.processDimensionCommonAttrs(e,o),o}else if(e.subclassMarker=="AcDbDiametricDimension"){const n=e,o=new r.AcDbDiametricDimension(n.definitionPoint,n.centerPoint,n.leaderLength);return this.processDimensionCommonAttrs(e,o),o}return null}processImage(e,n){n.position.copy(e.position),n.brightness=e.brightness,n.contrast=e.contrast,n.fade=e.fade,n.imageDefId=e.imageDefHandle,n.isClipped=e.clipping>0,n.isShownClipped=(e.flags|4)>0,n.isImageShown=(e.flags|3)>0,n.isImageTransparent=(e.flags|8)>0,e.clippingBoundaryPath.forEach(o=>{n.clipBoundary.push(new r.AcGePoint2d(o))}),n.clipBoundaryType=e.clippingBoundaryType,n.width=Math.sqrt(e.uPixel.x**2+e.uPixel.y**2+e.uPixel.z**2)*e.imageSize.x,n.height=Math.sqrt(e.vPixel.x**2+e.vPixel.y**2+e.vPixel.z**2)*e.imageSize.y,n.rotation=Math.atan2(e.uPixel.y,e.uPixel.x)}convertImage(e){const n=new r.AcDbRasterImage;return this.processImage(e,n),n}convertWipeout(e){const n=new r.AcDbWipeout;return this.processImage(e,n),n}convertViewport(e){const n=new r.AcDbViewport;return n.number=e.viewportId,n.centerPoint.copy(e.viewportCenter),n.height=e.height,n.width=e.width,n.viewCenter.copy(e.displayCenter),n.viewHeight=e.viewHeight,n}convertRay(e){const n=new r.AcDbRay;return n.basePoint.copy(e.firstPoint),n.unitDir.copy(e.unitDirection),n}convertXline(e){const n=new r.AcDbXline;return n.basePoint.copy(e.firstPoint),n.unitDir.copy(e.unitDirection),n}convertBlockReference(e){const n=new r.AcDbBlockReference(e.name);return e.insertionPoint&&n.position.copy(e.insertionPoint),n.scaleFactors.x=e.xScale,n.scaleFactors.y=e.yScale,n.scaleFactors.z=e.zScale,n.rotation=e.rotation,n.normal.copy(e.extrusionDirection),n}processDimensionCommonAttrs(e,n){n.dimBlockId=e.name,n.textPosition.copy(e.textPoint),n.textRotation=e.textRotation||0,e.textLineSpacingFactor&&(n.textLineSpacingFactor=e.textLineSpacingFactor),e.textLineSpacingStyle&&(n.textLineSpacingStyle=e.textLineSpacingStyle),n.dimensionStyleName=e.styleName,n.dimensionText=e.text||"",n.measurement=e.measurement}processCommonAttrs(e,n){if(n.layer=e.layer||"0",n.objectId=e.handle,n.ownerId=e.ownerBlockRecordSoftId,e.lineType!=null&&(n.lineType=e.lineType),e.lineweight!=null&&(n.lineWeight=e.lineweight),e.lineTypeScale!=null&&(n.linetypeScale=e.lineTypeScale),e.color!=null&&n.color.setRGBValue(e.color),e.colorIndex!=null&&(n.color.colorIndex=e.colorIndex),e.colorName&&(n.color.colorName=e.colorName),e.isVisible!=null&&(n.visibility=e.isVisible),e.transparency!=null){const o=new r.AcCmTransparency;o.method=e.transparencyType,(o.isByBlock||o.isByBlock)&&(o.alpha=e.transparency),n.transparency=o}}}const y="*MODEL_SPACE";class I extends r.AcDbDatabaseConverter{constructor(e={}){super(e),e.useWorker=!0,e.parserWorkerUrl||(e.parserWorkerUrl="/assets/libredwg-parser-worker.js")}async parse(e){if(this.config.useWorker&&this.config.parserWorkerUrl){const n=r.createWorkerApi({workerUrl:this.config.parserWorkerUrl,maxConcurrentWorkers:1}),o=await n.execute(e);return n.destroy(),o.data}else throw new Error("dwg converter can run in web worker only!")}getFonts(e){const n=new Map;e.tables.BLOCK_RECORD.entries.forEach(i=>{n.set(i.name,i)});const o=new Map,s=i=>{if(i){const a=i.lastIndexOf(".");return a>=0?i.substring(0,a).toLowerCase():i.toLowerCase()}};e.tables.STYLE.entries.forEach(i=>{const a=[];let c=s(i.font);c&&a.push(c),c=s(i.bigFont),c&&a.push(c),o.set(i.name,a)});const t=new Set;return this.getFontsInBlock(e.entities,n,o,t),Array.from(t)}getFontsInBlock(e,n,o,s){const t=/\\f(.*?)\|/g;e.forEach(i=>{if(i.type=="MTEXT"){const a=i;[...a.text.matchAll(t)].forEach(p=>{s.add(p[1].toLowerCase())});const c=o.get(a.styleName);c==null||c.forEach(p=>s.add(p))}else if(i.type=="TEXT"){const a=i,c=o.get(a.styleName);c==null||c.forEach(p=>s.add(p))}else if(i.type=="INSERT"){const a=i,c=n.get(a.name);c&&this.getFontsInBlock(c.entities,n,o,s)}})}processLineTypes(e,n){e.tables.LTYPE.entries.forEach(s=>{const t={name:s.name,description:s.description,standardFlag:s.standardFlag,totalPatternLength:s.totalPatternLength,pattern:s.pattern},i=new r.AcDbLinetypeTableRecord(t);this.processCommonTableEntryAttrs(s,i),i.name=s.name,n.tables.linetypeTable.add(i)})}processTextStyles(e,n){e.tables.STYLE.entries.forEach(s=>{const t=new r.AcDbTextStyleTableRecord(s);this.processCommonTableEntryAttrs(s,t),n.tables.textStyleTable.add(t)})}processDimStyles(e,n){e.tables.DIMSTYLE.entries.forEach(s=>{const t={name:s.name,ownerId:s.ownerHandle,dimpost:s.DIMPOST||"",dimapost:s.DIMAPOST||"",dimscale:s.DIMSCALE,dimasz:s.DIMASZ,dimexo:s.DIMEXO,dimdli:s.DIMDLI,dimexe:s.DIMEXE,dimrnd:s.DIMRND,dimdle:s.DIMDLE,dimtp:s.DIMTP,dimtm:s.DIMTM,dimtxt:s.DIMTXT,dimcen:s.DIMCEN,dimtsz:s.DIMTSZ,dimaltf:s.DIMALTF,dimlfac:s.DIMLFAC,dimtvp:s.DIMTVP,dimtfac:s.DIMTFAC,dimgap:s.DIMGAP,dimaltrnd:s.DIMALTRND,dimtol:s.DIMTOL==null||s.DIMTOL==0?0:1,dimlim:s.DIMLIM==null||s.DIMLIM==0?0:1,dimtih:s.DIMTIH==null||s.DIMTIH==0?0:1,dimtoh:s.DIMTOH==null||s.DIMTOH==0?0:1,dimse1:s.DIMSE1==null||s.DIMSE1==0?0:1,dimse2:s.DIMSE2==null||s.DIMSE2==0?0:1,dimtad:s.DIMTAD,dimzin:s.DIMZIN,dimazin:s.DIMAZIN,dimalt:s.DIMALT,dimaltd:s.DIMALTD,dimtofl:s.DIMTOFL,dimsah:s.DIMSAH,dimtix:s.DIMTIX,dimsoxd:s.DIMSOXD,dimclrd:s.DIMCLRD,dimclre:s.DIMCLRE,dimclrt:s.DIMCLRT,dimadec:s.DIMADEC||0,dimunit:s.DIMUNIT||2,dimdec:s.DIMDEC,dimtdec:s.DIMTDEC,dimaltu:s.DIMALTU,dimalttd:s.DIMALTTD,dimaunit:s.DIMAUNIT,dimfrac:s.DIMFRAC,dimlunit:s.DIMLUNIT,dimdsep:s.DIMDSEP,dimtmove:s.DIMTMOVE||0,dimjust:s.DIMJUST,dimsd1:s.DIMSD1,dimsd2:s.DIMSD2,dimtolj:s.DIMTOLJ,dimtzin:s.DIMTZIN,dimaltz:s.DIMALTZ,dimalttz:s.DIMALTTZ,dimfit:s.DIMFIT||0,dimupt:s.DIMUPT,dimatfit:s.DIMATFIT,dimtxsty:"Standard",dimldrblk:"",dimblk:s.DIMBLK||"",dimblk1:s.DIMBLK1||"",dimblk2:s.DIMBLK2||"",dimlwd:s.DIMLWD,dimlwe:s.DIMLWE},i=new r.AcDbDimStyleTableRecord(t);this.processCommonTableEntryAttrs(s,i),n.tables.dimStyleTable.add(i)})}processLayers(e,n){e.tables.LAYER.entries.forEach(s=>{const t=new r.AcCmColor;t.colorIndex=s.colorIndex;const i=new r.AcDbLayerTableRecord({name:s.name,standardFlags:s.standardFlag,linetype:s.lineType,lineWeight:s.lineweight,isOff:s.off,color:t,isPlottable:s.plotFlag!=0});this.processCommonTableEntryAttrs(s,i),n.tables.layerTable.add(i)})}processViewports(e,n){e.tables.VPORT.entries.forEach(s=>{const t=new r.AcDbViewportTableRecord;this.processCommonTableEntryAttrs(s,t),s.circleSides&&(t.circleSides=s.circleSides),t.standardFlag=s.standardFlag,t.center.copy(s.center),t.lowerLeftCorner.copy(s.lowerLeftCorner),t.upperRightCorner.copy(s.upperRightCorner),s.snapBasePoint&&t.snapBase.copy(s.snapBasePoint),s.snapRotationAngle&&(t.snapAngle=s.snapRotationAngle),s.snapSpacing&&t.snapIncrements.copy(s.snapSpacing),s.majorGridLines&&(t.gridMajor=s.majorGridLines),s.gridSpacing&&t.gridIncrements.copy(s.gridSpacing),s.backgroundObjectId&&(t.backgroundObjectId=s.backgroundObjectId),t.gsView.center.copy(s.center),t.gsView.viewDirectionFromTarget.copy(s.viewDirectionFromTarget),t.gsView.viewTarget.copy(s.viewTarget),s.lensLength&&(t.gsView.lensLength=s.lensLength),s.frontClippingPlane&&(t.gsView.frontClippingPlane=s.frontClippingPlane),s.backClippingPlane&&(t.gsView.backClippingPlane=s.backClippingPlane),s.viewHeight&&(t.gsView.viewHeight=s.viewHeight),s.viewTwistAngle&&(t.gsView.viewTwistAngle=s.viewTwistAngle),s.frozenLayers&&(t.gsView.frozenLayers=s.frozenLayers),s.styleSheet&&(t.gsView.styleSheet=s.styleSheet),s.renderMode&&(t.gsView.renderMode=s.renderMode),s.viewMode&&(t.gsView.viewMode=s.viewMode),s.ucsIconSetting&&(t.gsView.ucsIconSetting=s.ucsIconSetting),s.ucsOrigin&&t.gsView.ucsOrigin.copy(s.ucsOrigin),s.ucsXAxis&&t.gsView.ucsXAxis.copy(s.ucsXAxis),s.ucsYAxis&&t.gsView.ucsYAxis.copy(s.ucsYAxis),s.orthographicType&&(t.gsView.orthographicType=s.orthographicType),s.shadePlotSetting&&(t.gsView.shadePlotSetting=s.shadePlotSetting),s.shadePlotObjectId&&(t.gsView.shadePlotObjectId=s.shadePlotObjectId),s.visualStyleObjectId&&(t.gsView.visualStyleObjectId=s.visualStyleObjectId),s.isDefaultLightingOn&&(t.gsView.isDefaultLightingOn=s.isDefaultLightingOn),s.defaultLightingType&&(t.gsView.defaultLightingType=s.defaultLightingType),s.brightness&&(t.gsView.brightness=s.brightness),s.contrast&&(t.gsView.contrast=s.contrast),s.ambientColor&&(t.gsView.ambientColor=s.ambientColor),n.tables.viewportTable.add(t)})}processBlockTables(e,n){e.tables.BLOCK_RECORD.entries.forEach(s=>{let t=n.tables.blockTable.getAt(s.name);t||(t=new r.AcDbBlockTableRecord,t.objectId=s.handle,t.name=s.name,t.ownerId=s.ownerHandle,t.origin.copy(s.basePoint),t.layoutId=s.layout,n.tables.blockTable.add(t)),!t.isModelSapce&&s.entities&&s.entities.length>0&&this.processEntitiesInBlock(s.entities,t)})}processBlocks(e,n){}async processEntitiesInBlock(e,n){const o=new b,s=e.length,t=[];for(let i=0;i<s;i++){const a=e[i],c=o.convert(a);c&&t.push(c)}n.appendEntity(t)}async processEntities(e,n,o,s,t){const i=new b;let a=[];e.tables.BLOCK_RECORD.entries.forEach(d=>{this.isModelSpace(d.name)&&(a=d.entities)});const c=a.length,p=new r.AcDbBatchProcessing(c,100-s.value,o);this.config.convertByEntityType&&(a=this.groupAndFlattenByType(a));const l=n.tables.blockTable.modelSpace;await p.processChunk(async(d,u)=>{const h=[];for(let f=d;f<u;f++){const A=a[f],g=i.convert(A);g&&h.push(g)}if(l.appendEntity(h),t){let f=s.value+u/c*(100-s.value);f>100&&(f=100),await t(f,"ENTITY","IN-PROGRESS")}})}processHeader(e,n){const o=e.header;o.CECOLOR&&(o.CECOLOR.index>=0&&o.CECOLOR.index<=256?n.cecolor.colorIndex=o.CECOLOR.index:n.cecolor.setRGBValue(o.CECOLOR.rgb)),n.angBase=o.ANGBASE??0,n.angDir=o.ANGDIR??0,n.aunits=o.AUNITS??0,n.celtscale=o.CELTSCALE??1,n.ltscale=o.LTSCALE??1,o.EXTMAX&&(n.extmax=o.EXTMAX),o.EXTMIN&&(n.extmin=o.EXTMIN),n.insunits=o.INSUNITS??1,n.pdmode=o.PDMODE??0,n.pdsize=o.PDSIZE??0}processCommonTableEntryAttrs(e,n){n.name=e.name,n.objectId=e.handle,n.ownerId=e.ownerHandle}processObjects(e,n){this.processLayouts(e,n),this.processImageDefs(e,n)}processLayouts(e,n){const o=n.dictionaries.layouts;e.objects.LAYOUT.forEach(t=>{const i=new r.AcDbLayout;i.layoutName=t.layoutName,i.tabOrder=t.tabOrder;const a=n.tables.blockTable.newIterator();i.objectId=t.handle;for(const c of a)if(c.layoutId===i.objectId){i.blockTableRecordId=c.objectId;break}i.blockTableRecordId||t.layoutName==="Model"&&(i.blockTableRecordId=n.tables.blockTable.modelSpace.objectId),i.limits.min.copy(t.minLimit),i.limits.max.copy(t.maxLimit),i.extents.min.copy(t.minExtent),i.extents.max.copy(t.maxExtent),this.processCommonObjectAttrs(t,i),o.setAt(i.layoutName,i)})}processImageDefs(e,n){const o=n.dictionaries.imageDefs;e.objects.IMAGEDEF.forEach(t=>{const i=new r.AcDbRasterImageDef;i.sourceFileName=t.fileName,this.processCommonObjectAttrs(t,i),o.setAt(i.objectId,i)})}processCommonObjectAttrs(e,n){n.objectId=e.handle,n.ownerId=e.ownerHandle}groupAndFlattenByType(e){const n={},o=[];for(const s of e)n[s.type]||(n[s.type]=[],o.push(s.type)),n[s.type].push(s);return o.flatMap(s=>n[s])}isModelSpace(e){return e&&e.toUpperCase()==y}}D.AcDbLibreDwgConverter=I,Object.defineProperty(D,Symbol.toStringTag,{value:"Module"})});
1
+ (function(h,r){typeof exports=="object"&&typeof module<"u"?r(exports,require("@mlightcad/data-model")):typeof define=="function"&&define.amd?define(["exports","@mlightcad/data-model"],r):(h=typeof globalThis<"u"?globalThis:h||self,r(h["libredwg-converter"]={},h.dataModel))})(this,function(h,r){"use strict";class b{convert(e){const n=this.createEntity(e);return n&&this.processCommonAttrs(e,n),n}createEntity(e){return e.type=="3DFACE"?this.convertFace(e):e.type=="ARC"?this.convertArc(e):e.type=="CIRCLE"?this.convertCirle(e):e.type=="DIMENSION"?this.convertDimension(e):e.type=="ELLIPSE"?this.convertEllipse(e):e.type=="HATCH"?this.convertHatch(e):e.type=="IMAGE"?this.convertImage(e):e.type=="LEADER"?this.convertLeader(e):e.type=="LINE"?this.convertLine(e):e.type=="LWPOLYLINE"?this.convertLWPolyline(e):e.type=="MTEXT"?this.convertMText(e):e.type=="POINT"?this.convertPoint(e):e.type=="POLYLINE2D"?this.convertPolyline2d(e):e.type=="POLYLINE3D"?this.convertPolyline3d(e):e.type=="RAY"?this.convertRay(e):e.type=="SPLINE"?this.convertSpline(e):e.type=="ACAD_TABLE"?this.convertTable(e):e.type=="TEXT"?this.convertText(e):e.type=="SOLID"?this.convertSolid(e):e.type=="VIEWPORT"?this.convertViewport(e):e.type=="WIPEOUT"?this.convertWipeout(e):e.type=="XLINE"?this.convertXline(e):e.type=="INSERT"?this.convertBlockReference(e):null}convertFace(e){const n=new r.AcDbFace;return e.corner1&&n.setVertexAt(0,e.corner1),e.corner2&&n.setVertexAt(1,e.corner2),e.corner3&&n.setVertexAt(2,e.corner3),e.corner4&&n.setVertexAt(3,e.corner4),n.setEdgeInvisibilities(e.flag),n}convertArc(e){return new r.AcDbArc(e.center,e.radius,e.startAngle,e.endAngle,e.extrusionDirection??r.AcGeVector3d.Z_AXIS)}convertCirle(e){return new r.AcDbCircle(e.center,e.radius,e.extrusionDirection??r.AcGeVector3d.Z_AXIS)}convertEllipse(e){const n=new r.AcGeVector3d(e.majorAxisEndPoint),o=n.length();return new r.AcDbEllipse(e.center,e.extrusionDirection??r.AcGeVector3d.Z_AXIS,n,o,o*e.axisRatio,e.startAngle,e.endAngle)}convertLine(e){const n=e.startPoint,o=e.endPoint;return new r.AcDbLine(new r.AcGePoint3d(n.x,n.y,n.z),new r.AcGePoint3d(o.x,o.y,o.z))}convertSpline(e){try{if(e.numberOfControlPoints>0&&e.numberOfKnots>0)return new r.AcDbSpline(e.controlPoints,e.knots,e.weights,e.degree,!!(e.flag&1));if(e.numberOfFitPoints>0)return new r.AcDbSpline(e.fitPoints,"Uniform",e.degree,!!(e.flag&1))}catch(n){console.log(`Failed to convert spline with error: ${n}`)}return null}convertPoint(e){const n=new r.AcDbPoint;return n.position=e.position,n}convertSolid(e){const n=new r.AcDbTrace;return n.setPointAt(0,{...e.corner1,z:0}),n.setPointAt(1,{...e.corner2,z:0}),n.setPointAt(2,{...e.corner3,z:0}),n.setPointAt(3,e.corner4?{...e.corner4,z:0}:{...e.corner3,z:0}),n.thickness=e.thickness,n}convertLWPolyline(e){const n=new r.AcDbPolyline;return n.closed=!!(e.flag&512),e.vertices.forEach((o,s)=>{n.addVertexAt(s,new r.AcGePoint2d(o.x,o.y),o.bulge,o.startWidth,o.endWidth)}),n}convertPolyline2d(e){const n=!!(e.flag&1),o=[],s=[];e.vertices.map(i=>{i.flag&16||(o.push({x:i.x,y:i.y,z:i.z}),s.push(i.bulge??0))});let t=r.AcDbPoly2dType.SimplePoly;return e.flag&2?t=r.AcDbPoly2dType.FitCurvePoly:e.flag&4&&(e.smoothType==6?t=r.AcDbPoly2dType.CubicSplinePoly:e.smoothType==5&&(t=r.AcDbPoly2dType.QuadSplinePoly)),new r.AcDb2dPolyline(t,o,0,n,e.startWidth,e.endWidth,s)}convertPolyline3d(e){const n=!!(e.flag&1),o=[];e.vertices.map(t=>{t.flag&16||o.push({x:t.x,y:t.y,z:t.z})});let s=r.AcDbPoly3dType.SimplePoly;return e.flag&4&&(e.smoothType==6?s=r.AcDbPoly3dType.CubicSplinePoly:e.smoothType==5&&(s=r.AcDbPoly3dType.QuadSplinePoly)),new r.AcDb3dPolyline(s,o,n)}convertHatch(e){var s;const n=new r.AcDbHatch;return(s=e.definitionLines)==null||s.forEach(t=>{n.definitionLines.push({angle:t.angle,base:t.base,offset:t.offset,dashLengths:t.numberOfDashLengths>0?t.dashLengths:[]})}),n.isSolidFill=e.solidFill==1,n.hatchStyle=e.hatchStyle,n.patternName=e.patternName,n.patternType=e.patternType,n.patternAngle=e.patternAngle==null?0:e.patternAngle,n.patternScale=e.patternScale==null?0:e.patternScale,e.boundaryPaths.forEach(t=>{if(t.boundaryPathTypeFlag&2){const a=t,c=new r.AcGePolyline2d;c.closed=a.isClosed,a.vertices.forEach((p,l)=>{c.addVertexAt(l,{x:p.x,y:p.y,bulge:p.bulge})}),n.add(c)}else{const a=t,c=new r.AcGeLoop2d;a.edges.forEach(p=>{if(p!=null){if(p.type==1){const l=p;c.add(new r.AcGeLine2d(l.start,l.end))}else if(p.type==2){const l=p;c.add(new r.AcGeCircArc2d(l.center,l.radius,l.startAngle,l.endAngle,!l.isCCW))}else if(p.type==3){const l=p;new r.AcGeVector2d().subVectors(l.end,l.center);const f=Math.sqrt(Math.pow(l.end.x,2)+Math.pow(l.end.y,2)),D=f*l.lengthOfMinorAxis;let u=l.startAngle,A=l.endAngle;const g=Math.atan2(l.end.y,l.end.x);l.isCCW||(u=Math.PI*2-u,A=Math.PI*2-A),c.add(new r.AcGeEllipseArc2d({...l.center,z:0},f,D,u,A,!l.isCCW,g))}else if(p.type==4){const l=p;if(l.numberOfControlPoints>0&&l.numberOfKnots>0){const d=l.controlPoints.map(u=>({x:u.x,y:u.y,z:0}));let f=!0;const D=l.controlPoints.map(u=>(u.weight==null&&(f=!1),u.weight||1));c.add(new r.AcGeSpline3d(d,l.knots,f?D:void 0))}else if(l.numberOfFitData>0){const d=l.fitDatum.map(f=>({x:f.x,y:f.y,z:0}));c.add(new r.AcGeSpline3d(d,"Uniform"))}}}}),n.add(c)}}),n}convertTable(e){const n=new r.AcDbTable(e.name,e.rowCount,e.columnCount);return n.attachmentPoint=e.attachmentPoint,n.position.copy(e.startPoint),e.columnWidthArr.forEach((o,s)=>n.setColumnWidth(s,o)),e.rowHeightArr.forEach((o,s)=>n.setRowHeight(s,o)),e.cells.forEach((o,s)=>{n.setCell(s,o)}),n}convertText(e){const n=new r.AcDbText;return n.textString=e.text,n.styleName=e.styleName,n.height=e.textHeight,n.position.copy(e.startPoint),n.rotation=e.rotation,n.oblique=e.obliqueAngle??0,n.thickness=e.thickness,n.horizontalMode=e.halign,n.verticalMode=e.valign,n.widthFactor=e.xScale??1,n}convertMText(e){const n=new r.AcDbMText;return n.contents=e.text,e.styleName!=null&&(n.styleName=e.styleName),n.height=e.textHeight,n.width=e.rectWidth,n.rotation=e.rotation||0,n.location=e.insertionPoint,n.attachmentPoint=e.attachmentPoint,e.direction&&(n.direction=new r.AcGeVector3d(e.direction)),n.drawingDirection=e.drawingDirection,n}convertLeader(e){const n=new r.AcDbLeader;return e.vertices.forEach(o=>{n.appendVertex(o)}),n.hasArrowHead=e.isArrowheadEnabled,n.hasHookLine=e.isHooklineExists,n.isSplined=e.isSpline,n.dimensionStyle=e.styleName,n.annoType=e.leaderCreationFlag,n}convertDimension(e){if(e.subclassMarker=="AcDbAlignedDimension"||e.subclassMarker=="AcDbRotatedDimension"){const n=e,o=new r.AcDbAlignedDimension(n.subDefinitionPoint1,n.subDefinitionPoint2,n.definitionPoint);return n.insertionPoint&&(o.dimBlockPosition={x:n.insertionPoint.x,y:n.insertionPoint.y,z:0}),o.rotation=n.rotationAngle,this.processDimensionCommonAttrs(e,o),o}else if(e.subclassMarker=="AcDb3PointAngularDimension"){const n=e,o=new r.AcDb3PointAngularDimension(n.centerPoint,n.subDefinitionPoint1,n.subDefinitionPoint2,n.definitionPoint);return this.processDimensionCommonAttrs(e,o),o}else if(e.subclassMarker=="AcDbOrdinateDimension"){const n=e,o=new r.AcDbOrdinateDimension(n.subDefinitionPoint1,n.subDefinitionPoint2);return this.processDimensionCommonAttrs(e,o),o}else if(e.subclassMarker=="AcDbRadialDimension"){const n=e,o=new r.AcDbRadialDimension(n.definitionPoint,n.centerPoint,n.leaderLength);return this.processDimensionCommonAttrs(e,o),o}else if(e.subclassMarker=="AcDbDiametricDimension"){const n=e,o=new r.AcDbDiametricDimension(n.definitionPoint,n.centerPoint,n.leaderLength);return this.processDimensionCommonAttrs(e,o),o}return null}processImage(e,n){n.position.copy(e.position),n.brightness=e.brightness,n.contrast=e.contrast,n.fade=e.fade,n.imageDefId=e.imageDefHandle,n.isClipped=e.clipping>0,n.isShownClipped=(e.flags|4)>0,n.isImageShown=(e.flags|3)>0,n.isImageTransparent=(e.flags|8)>0,e.clippingBoundaryPath.forEach(o=>{n.clipBoundary.push(new r.AcGePoint2d(o))}),n.clipBoundaryType=e.clippingBoundaryType,n.width=Math.sqrt(e.uPixel.x**2+e.uPixel.y**2+e.uPixel.z**2)*e.imageSize.x,n.height=Math.sqrt(e.vPixel.x**2+e.vPixel.y**2+e.vPixel.z**2)*e.imageSize.y,n.rotation=Math.atan2(e.uPixel.y,e.uPixel.x)}convertImage(e){const n=new r.AcDbRasterImage;return this.processImage(e,n),n}convertWipeout(e){const n=new r.AcDbWipeout;return this.processImage(e,n),n}convertViewport(e){const n=new r.AcDbViewport;return n.number=e.viewportId,n.centerPoint.copy(e.viewportCenter),n.height=e.height,n.width=e.width,n.viewCenter.copy(e.displayCenter),n.viewHeight=e.viewHeight,n}convertRay(e){const n=new r.AcDbRay;return n.basePoint.copy(e.firstPoint),n.unitDir.copy(e.unitDirection),n}convertXline(e){const n=new r.AcDbXline;return n.basePoint.copy(e.firstPoint),n.unitDir.copy(e.unitDirection),n}convertBlockReference(e){const n=new r.AcDbBlockReference(e.name);return e.insertionPoint&&n.position.copy(e.insertionPoint),n.scaleFactors.x=e.xScale,n.scaleFactors.y=e.yScale,n.scaleFactors.z=e.zScale,n.rotation=e.rotation,n.normal.copy(e.extrusionDirection),n}processDimensionCommonAttrs(e,n){n.dimBlockId=e.name,n.textPosition.copy(e.textPoint),n.textRotation=e.textRotation||0,e.textLineSpacingFactor&&(n.textLineSpacingFactor=e.textLineSpacingFactor),e.textLineSpacingStyle&&(n.textLineSpacingStyle=e.textLineSpacingStyle),n.dimensionStyleName=e.styleName,n.dimensionText=e.text||"",n.measurement=e.measurement}processCommonAttrs(e,n){if(n.layer=e.layer||"0",n.objectId=e.handle,n.ownerId=e.ownerBlockRecordSoftId,e.lineType!=null&&(n.lineType=e.lineType),e.lineweight!=null&&(n.lineWeight=e.lineweight),e.lineTypeScale!=null&&(n.linetypeScale=e.lineTypeScale),e.color!=null&&n.color.setRGBValue(e.color),e.colorIndex!=null&&(n.color.colorIndex=e.colorIndex),e.colorName&&(n.color.colorName=e.colorName),e.isVisible!=null&&(n.visibility=e.isVisible),e.transparency!=null){const o=new r.AcCmTransparency;o.method=e.transparencyType,(o.isByBlock||o.isByBlock)&&(o.alpha=e.transparency),n.transparency=o}}}const y="*MODEL_SPACE";class I extends r.AcDbDatabaseConverter{constructor(e={}){super(e),e.useWorker=!0,e.parserWorkerUrl||(e.parserWorkerUrl="/assets/libredwg-parser-worker.js")}async parse(e){if(this.config.useWorker&&this.config.parserWorkerUrl){const n=r.createWorkerApi({workerUrl:this.config.parserWorkerUrl,maxConcurrentWorkers:1}),o=await n.execute(e);if(n.destroy(),o.success)return o.data;throw new Error(`Failed to parse drawing due to error: '${o.error}'`)}else throw new Error("dwg converter can run in web worker only!")}getFonts(e){const n=new Map;e.tables.BLOCK_RECORD.entries.forEach(i=>{n.set(i.name,i)});const o=new Map,s=i=>{if(i){const a=i.lastIndexOf(".");return a>=0?i.substring(0,a).toLowerCase():i.toLowerCase()}};e.tables.STYLE.entries.forEach(i=>{const a=[];let c=s(i.font);c&&a.push(c),c=s(i.bigFont),c&&a.push(c),o.set(i.name,a)});const t=new Set;return this.getFontsInBlock(e.entities,n,o,t),Array.from(t)}getFontsInBlock(e,n,o,s){const t=/\\f(.*?)\|/g;e.forEach(i=>{if(i.type=="MTEXT"){const a=i;[...a.text.matchAll(t)].forEach(p=>{s.add(p[1].toLowerCase())});const c=o.get(a.styleName);c==null||c.forEach(p=>s.add(p))}else if(i.type=="TEXT"){const a=i,c=o.get(a.styleName);c==null||c.forEach(p=>s.add(p))}else if(i.type=="INSERT"){const a=i,c=n.get(a.name);c&&this.getFontsInBlock(c.entities,n,o,s)}})}processLineTypes(e,n){e.tables.LTYPE.entries.forEach(s=>{const t={name:s.name,description:s.description,standardFlag:s.standardFlag,totalPatternLength:s.totalPatternLength,pattern:s.pattern},i=new r.AcDbLinetypeTableRecord(t);this.processCommonTableEntryAttrs(s,i),i.name=s.name,n.tables.linetypeTable.add(i)})}processTextStyles(e,n){e.tables.STYLE.entries.forEach(s=>{const t=new r.AcDbTextStyleTableRecord(s);this.processCommonTableEntryAttrs(s,t),n.tables.textStyleTable.add(t)})}processDimStyles(e,n){e.tables.DIMSTYLE.entries.forEach(s=>{const t={name:s.name,ownerId:s.ownerHandle,dimpost:s.DIMPOST||"",dimapost:s.DIMAPOST||"",dimscale:s.DIMSCALE,dimasz:s.DIMASZ,dimexo:s.DIMEXO,dimdli:s.DIMDLI,dimexe:s.DIMEXE,dimrnd:s.DIMRND,dimdle:s.DIMDLE,dimtp:s.DIMTP,dimtm:s.DIMTM,dimtxt:s.DIMTXT,dimcen:s.DIMCEN,dimtsz:s.DIMTSZ,dimaltf:s.DIMALTF,dimlfac:s.DIMLFAC,dimtvp:s.DIMTVP,dimtfac:s.DIMTFAC,dimgap:s.DIMGAP,dimaltrnd:s.DIMALTRND,dimtol:s.DIMTOL==null||s.DIMTOL==0?0:1,dimlim:s.DIMLIM==null||s.DIMLIM==0?0:1,dimtih:s.DIMTIH==null||s.DIMTIH==0?0:1,dimtoh:s.DIMTOH==null||s.DIMTOH==0?0:1,dimse1:s.DIMSE1==null||s.DIMSE1==0?0:1,dimse2:s.DIMSE2==null||s.DIMSE2==0?0:1,dimtad:s.DIMTAD,dimzin:s.DIMZIN,dimazin:s.DIMAZIN,dimalt:s.DIMALT,dimaltd:s.DIMALTD,dimtofl:s.DIMTOFL,dimsah:s.DIMSAH,dimtix:s.DIMTIX,dimsoxd:s.DIMSOXD,dimclrd:s.DIMCLRD,dimclre:s.DIMCLRE,dimclrt:s.DIMCLRT,dimadec:s.DIMADEC||0,dimunit:s.DIMUNIT||2,dimdec:s.DIMDEC,dimtdec:s.DIMTDEC,dimaltu:s.DIMALTU,dimalttd:s.DIMALTTD,dimaunit:s.DIMAUNIT,dimfrac:s.DIMFRAC,dimlunit:s.DIMLUNIT,dimdsep:s.DIMDSEP,dimtmove:s.DIMTMOVE||0,dimjust:s.DIMJUST,dimsd1:s.DIMSD1,dimsd2:s.DIMSD2,dimtolj:s.DIMTOLJ,dimtzin:s.DIMTZIN,dimaltz:s.DIMALTZ,dimalttz:s.DIMALTTZ,dimfit:s.DIMFIT||0,dimupt:s.DIMUPT,dimatfit:s.DIMATFIT,dimtxsty:"Standard",dimldrblk:"",dimblk:s.DIMBLK||"",dimblk1:s.DIMBLK1||"",dimblk2:s.DIMBLK2||"",dimlwd:s.DIMLWD,dimlwe:s.DIMLWE},i=new r.AcDbDimStyleTableRecord(t);this.processCommonTableEntryAttrs(s,i),n.tables.dimStyleTable.add(i)})}processLayers(e,n){e.tables.LAYER.entries.forEach(s=>{const t=new r.AcCmColor;t.colorIndex=s.colorIndex;const i=new r.AcDbLayerTableRecord({name:s.name,standardFlags:s.standardFlag,linetype:s.lineType,lineWeight:s.lineweight,isOff:s.off,color:t,isPlottable:s.plotFlag!=0});this.processCommonTableEntryAttrs(s,i),n.tables.layerTable.add(i)})}processViewports(e,n){e.tables.VPORT.entries.forEach(s=>{const t=new r.AcDbViewportTableRecord;this.processCommonTableEntryAttrs(s,t),s.circleSides&&(t.circleSides=s.circleSides),t.standardFlag=s.standardFlag,t.center.copy(s.center),t.lowerLeftCorner.copy(s.lowerLeftCorner),t.upperRightCorner.copy(s.upperRightCorner),s.snapBasePoint&&t.snapBase.copy(s.snapBasePoint),s.snapRotationAngle&&(t.snapAngle=s.snapRotationAngle),s.snapSpacing&&t.snapIncrements.copy(s.snapSpacing),s.majorGridLines&&(t.gridMajor=s.majorGridLines),s.gridSpacing&&t.gridIncrements.copy(s.gridSpacing),s.backgroundObjectId&&(t.backgroundObjectId=s.backgroundObjectId),t.gsView.center.copy(s.center),t.gsView.viewDirectionFromTarget.copy(s.viewDirectionFromTarget),t.gsView.viewTarget.copy(s.viewTarget),s.lensLength&&(t.gsView.lensLength=s.lensLength),s.frontClippingPlane&&(t.gsView.frontClippingPlane=s.frontClippingPlane),s.backClippingPlane&&(t.gsView.backClippingPlane=s.backClippingPlane),s.viewHeight&&(t.gsView.viewHeight=s.viewHeight),s.viewTwistAngle&&(t.gsView.viewTwistAngle=s.viewTwistAngle),s.frozenLayers&&(t.gsView.frozenLayers=s.frozenLayers),s.styleSheet&&(t.gsView.styleSheet=s.styleSheet),s.renderMode&&(t.gsView.renderMode=s.renderMode),s.viewMode&&(t.gsView.viewMode=s.viewMode),s.ucsIconSetting&&(t.gsView.ucsIconSetting=s.ucsIconSetting),s.ucsOrigin&&t.gsView.ucsOrigin.copy(s.ucsOrigin),s.ucsXAxis&&t.gsView.ucsXAxis.copy(s.ucsXAxis),s.ucsYAxis&&t.gsView.ucsYAxis.copy(s.ucsYAxis),s.orthographicType&&(t.gsView.orthographicType=s.orthographicType),s.shadePlotSetting&&(t.gsView.shadePlotSetting=s.shadePlotSetting),s.shadePlotObjectId&&(t.gsView.shadePlotObjectId=s.shadePlotObjectId),s.visualStyleObjectId&&(t.gsView.visualStyleObjectId=s.visualStyleObjectId),s.isDefaultLightingOn&&(t.gsView.isDefaultLightingOn=s.isDefaultLightingOn),s.defaultLightingType&&(t.gsView.defaultLightingType=s.defaultLightingType),s.brightness&&(t.gsView.brightness=s.brightness),s.contrast&&(t.gsView.contrast=s.contrast),s.ambientColor&&(t.gsView.ambientColor=s.ambientColor),n.tables.viewportTable.add(t)})}processBlockTables(e,n){e.tables.BLOCK_RECORD.entries.forEach(s=>{let t=n.tables.blockTable.getAt(s.name);t||(t=new r.AcDbBlockTableRecord,t.objectId=s.handle,t.name=s.name,t.ownerId=s.ownerHandle,t.origin.copy(s.basePoint),t.layoutId=s.layout,n.tables.blockTable.add(t)),!t.isModelSapce&&s.entities&&s.entities.length>0&&this.processEntitiesInBlock(s.entities,t)})}processBlocks(e,n){}async processEntitiesInBlock(e,n){const o=new b,s=e.length,t=[];for(let i=0;i<s;i++){const a=e[i],c=o.convert(a);c&&t.push(c)}n.appendEntity(t)}async processEntities(e,n,o,s,t){const i=new b;let a=[];e.tables.BLOCK_RECORD.entries.forEach(d=>{this.isModelSpace(d.name)&&(a=d.entities)});const c=a.length,p=new r.AcDbBatchProcessing(c,100-s.value,o);this.config.convertByEntityType&&(a=this.groupAndFlattenByType(a));const l=n.tables.blockTable.modelSpace;await p.processChunk(async(d,f)=>{const D=[];for(let u=d;u<f;u++){const A=a[u],g=i.convert(A);g&&D.push(g)}if(l.appendEntity(D),t){let u=s.value+f/c*(100-s.value);u>100&&(u=100),await t(u,"ENTITY","IN-PROGRESS")}})}processHeader(e,n){const o=e.header;o.CECOLOR&&(o.CECOLOR.index>=0&&o.CECOLOR.index<=256?n.cecolor.colorIndex=o.CECOLOR.index:n.cecolor.setRGBValue(o.CECOLOR.rgb)),n.angBase=o.ANGBASE??0,n.angDir=o.ANGDIR??0,n.aunits=o.AUNITS??0,n.celtscale=o.CELTSCALE??1,n.ltscale=o.LTSCALE??1,o.EXTMAX&&(n.extmax=o.EXTMAX),o.EXTMIN&&(n.extmin=o.EXTMIN),n.insunits=o.INSUNITS??1,n.pdmode=o.PDMODE??0,n.pdsize=o.PDSIZE??0}processCommonTableEntryAttrs(e,n){n.name=e.name,n.objectId=e.handle,n.ownerId=e.ownerHandle}processObjects(e,n){this.processLayouts(e,n),this.processImageDefs(e,n)}processLayouts(e,n){const o=n.dictionaries.layouts;e.objects.LAYOUT.forEach(t=>{const i=new r.AcDbLayout;i.layoutName=t.layoutName,i.tabOrder=t.tabOrder;const a=n.tables.blockTable.newIterator();i.objectId=t.handle;for(const c of a)if(c.layoutId===i.objectId){i.blockTableRecordId=c.objectId;break}i.blockTableRecordId||t.layoutName==="Model"&&(i.blockTableRecordId=n.tables.blockTable.modelSpace.objectId),i.limits.min.copy(t.minLimit),i.limits.max.copy(t.maxLimit),i.extents.min.copy(t.minExtent),i.extents.max.copy(t.maxExtent),this.processCommonObjectAttrs(t,i),o.setAt(i.layoutName,i)})}processImageDefs(e,n){const o=n.dictionaries.imageDefs;e.objects.IMAGEDEF.forEach(t=>{const i=new r.AcDbRasterImageDef;i.sourceFileName=t.fileName,this.processCommonObjectAttrs(t,i),o.setAt(i.objectId,i)})}processCommonObjectAttrs(e,n){n.objectId=e.handle,n.ownerId=e.ownerHandle}groupAndFlattenByType(e){const n={},o=[];for(const s of e)n[s.type]||(n[s.type]=[],o.push(s.type)),n[s.type].push(s);return o.flatMap(s=>n[s])}isModelSpace(e){return e&&e.toUpperCase()==y}}h.AcDbLibreDwgConverter=I,Object.defineProperty(h,Symbol.toStringTag,{value:"Module"})});