mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 17:04:58 +01:00
296 lines
9.2 KiB
JavaScript
296 lines
9.2 KiB
JavaScript
TCAD.STORAGE_PREFIX = "TCAD.projects.";
|
|
|
|
/** @constructor */
|
|
TCAD.App2D = function() {
|
|
var app = this;
|
|
|
|
this.viewer = new TCAD.TWO.Viewer(document.getElementById('viewer'));
|
|
|
|
this.initSketchManager();
|
|
this._exportWin = new TCAD.ui.Window($('#exportManager'));
|
|
|
|
$('#exportManager li').click(function() {TCAD.ui.closeWin(app._exportWin);});
|
|
|
|
|
|
this.actions = {};
|
|
|
|
//For debug view
|
|
this._actionsOrder = [];
|
|
|
|
this.registerAction = function(id, desc, action) {
|
|
app.actions[id] = {id: id, desc: desc, action: action};
|
|
app._actionsOrder.push(id);
|
|
};
|
|
|
|
this.registerAction('new', "Create New Sketch", function () {
|
|
app.newSketch();
|
|
});
|
|
|
|
this.registerAction('open', "Open Sketch", function (e) {
|
|
app._sketchesList.refresh();
|
|
TCAD.ui.openWin(app._sketchesWin, e);
|
|
});
|
|
|
|
this.registerAction('clone', "Clone Sketch", function () {
|
|
app.cloneSketch();
|
|
});
|
|
|
|
this.registerAction('export', "Export", function (e) {
|
|
TCAD.ui.openWin(app._exportWin, e);
|
|
});
|
|
|
|
this.registerAction('exportSVG', "Export To SVG", function () {
|
|
TCAD.io.exportTextData(app.viewer.io.svgExport(), app.getSketchId() + ".svg");
|
|
});
|
|
|
|
this.registerAction('exportDXF', "Export To DXF", function () {
|
|
TCAD.io.exportTextData(app.viewer.io.dxfExport(), app.getSketchId() + ".dxf");
|
|
});
|
|
|
|
this.registerAction('undo', "Undo", function () {
|
|
app.viewer.historyManager.undo();
|
|
});
|
|
|
|
this.registerAction('redo', "Redo", function () {
|
|
app.viewer.historyManager.redo();
|
|
});
|
|
|
|
this.registerAction('checkpoint', "Checkpoint", function () {
|
|
app.viewer.historyManager.checkpoint();
|
|
});
|
|
|
|
this.registerAction('addPoint', "Add Point", function () {
|
|
app.viewer.toolManager.takeControl(new TCAD.TWO.AddPointTool(app.viewer));
|
|
});
|
|
|
|
this.registerAction('addSegment', "Add Segment", function () {
|
|
app.viewer.toolManager.takeControl(new TCAD.TWO.AddSegmentTool(app.viewer, false));
|
|
});
|
|
|
|
this.registerAction('addMultiSegment', "Add Multi Segment", function () {
|
|
app.viewer.toolManager.takeControl(new TCAD.TWO.AddSegmentTool(app.viewer, true));
|
|
});
|
|
|
|
this.registerAction('addArc', "Add Arc", function () {
|
|
app.viewer.toolManager.takeControl(new TCAD.TWO.AddArcTool(app.viewer));
|
|
});
|
|
|
|
this.registerAction('addCircle', "Add Circle", function () {
|
|
app.viewer.toolManager.takeControl(new TCAD.TWO.EditCircleTool(app.viewer));
|
|
});
|
|
|
|
this.registerAction('pan', "Pan", function () {
|
|
app.viewer.toolManager.releaseControl();
|
|
});
|
|
|
|
this.registerAction('addFillet', "Add Fillet", function () {
|
|
app.viewer.toolManager.takeControl(new TCAD.TWO.FilletTool(app.viewer));
|
|
});
|
|
|
|
this.registerAction('addDim', "Add Dimension", function () {
|
|
app.viewer.toolManager.takeControl(new TCAD.TWO.AddDimTool(app.viewer, app.viewer.dimLayer, function(a,b) {return new TCAD.TWO.Dimension(a,b)} ));
|
|
});
|
|
|
|
this.registerAction('addHDim', "Add Horizontal Dimension", function () {
|
|
app.viewer.toolManager.takeControl(new TCAD.TWO.AddDimTool(app.viewer, app.viewer.dimLayer, function(a,b) {return new TCAD.TWO.HDimension(a,b)} ));
|
|
});
|
|
this.registerAction('addVDim', "Add Vertical Dimension", function () {
|
|
app.viewer.toolManager.takeControl(new TCAD.TWO.AddDimTool(app.viewer, app.viewer.dimLayer, function(a,b) {return new TCAD.TWO.VDimension(a,b)} ));
|
|
});
|
|
|
|
this.registerAction('save', "Save", function () {
|
|
var sketchData = app.viewer.io.serializeSketch();
|
|
var sketchId = app.getSketchId();
|
|
localStorage.setItem(app.getSketchId(), sketchData);
|
|
app.viewer.historyManager.checkpoint();
|
|
});
|
|
|
|
this.registerAction('coincident', "Coincident", function () {
|
|
app.viewer.parametricManager.coincident(app.viewer.selected);
|
|
});
|
|
|
|
this.registerAction('verticalConstraint', "Vertical Constraint", function () {
|
|
app.viewer.parametricManager.vertical(app.viewer.selected);
|
|
});
|
|
|
|
this.registerAction('horizontalConstraint', "Horizontal Constraint", function () {
|
|
app.viewer.parametricManager.horizontal(app.viewer.selected);
|
|
});
|
|
|
|
this.registerAction('parallelConstraint', "Parallel Constraint", function () {
|
|
app.viewer.parametricManager.parallel(app.viewer.selected);
|
|
});
|
|
|
|
this.registerAction('perpendicularConstraint', "Perpendicular Constraint", function () {
|
|
app.viewer.parametricManager.perpendicular(app.viewer.selected);
|
|
});
|
|
|
|
this.registerAction('P2LDistanceConstraint', "Distance Between Point and Line", function () {
|
|
app.viewer.parametricManager.p2lDistance(app.viewer.selected, prompt);
|
|
});
|
|
|
|
this.registerAction('P2PDistanceConstraint', "Distance Between two Points", function () {
|
|
app.viewer.parametricManager.p2pDistance(app.viewer.selected, prompt);
|
|
});
|
|
|
|
this.registerAction('RadiusConstraint', "Radius Constraint", function () {
|
|
app.viewer.parametricManager.radius(app.viewer.selected, prompt);
|
|
});
|
|
|
|
this.registerAction('EntityEqualityConstraint', "Radius Equals Constraint", function () {
|
|
app.viewer.parametricManager.entityEquality(app.viewer.selected);
|
|
});
|
|
|
|
this.registerAction('tangentConstraint', "Tangent Constraint", function () {
|
|
app.viewer.parametricManager.tangent(app.viewer.selected);
|
|
});
|
|
|
|
this.registerAction('lockConstraint', "Lock Constraint", function () {
|
|
app.viewer.parametricManager.lock(app.viewer.selected);
|
|
});
|
|
|
|
this.registerAction('pointOnLine', "Point On Line", function () {
|
|
app.viewer.parametricManager.pointOnLine(app.viewer.selected);
|
|
});
|
|
|
|
this.registerAction('pointOnArc', "Point On Arc", function () {
|
|
app.viewer.parametricManager.pointOnArc(app.viewer.selected);
|
|
});
|
|
|
|
this.registerAction('pointInMiddle', "Point In the Middle", function () {
|
|
app.viewer.parametricManager.pointInMiddle(app.viewer.selected);
|
|
});
|
|
|
|
this.registerAction('llAngle', "Angle Between 2 Lines", function () {
|
|
app.viewer.parametricManager.llAngle(app.viewer.selected, prompt);
|
|
});
|
|
|
|
this.registerAction('analyzeConstraint', "Analyze Constraint", function () {
|
|
app.viewer.parametricManager.analyze(alert);
|
|
});
|
|
|
|
this.registerAction('solve', "Solve System", function () {
|
|
app.viewer.parametricManager.solve();
|
|
app.viewer.refresh();
|
|
});
|
|
|
|
this.registerAction('CLEAN UP', "Clean All Draw", function () {
|
|
app.cleanUpData();
|
|
app.viewer.refresh();
|
|
});
|
|
|
|
this.registerAction('fit', "Fit Sketch On Screen", function () {
|
|
app.fit();
|
|
app.viewer.refresh();
|
|
});
|
|
};
|
|
|
|
TCAD.App2D.prototype.fit = function() {
|
|
|
|
var bbox = new TCAD.io.BBox();
|
|
|
|
for (var l = 0; l < this.viewer.layers.length; ++l) {
|
|
var layer = this.viewer.layers[l];
|
|
for (var i = 0; i < layer.objects.length; ++i) {
|
|
var obj = layer.objects[i];
|
|
bbox.check(obj);
|
|
}
|
|
}
|
|
if (!bbox.isValid()) {
|
|
return;
|
|
}
|
|
var bounds = bbox.bbox;
|
|
this.viewer.showBounds(bounds[0], bounds[1], bounds[2], bounds[3]);
|
|
bbox.inc(20 / this.viewer.scale);
|
|
this.viewer.showBounds(bounds[0], bounds[1], bounds[2], bounds[3]);
|
|
};
|
|
|
|
TCAD.App2D.prototype.cloneSketch = function() {
|
|
var name = prompt("Name for sketch clone");
|
|
if (name != null) {
|
|
if (this.isSketchExists(name)) {
|
|
alert("Sorry, a sketch with the name '" + name + "' already exists. Won't override it.");
|
|
return;
|
|
}
|
|
localStorage.setItem(TCAD.STORAGE_PREFIX + name, this.viewer.io.serializeSketch())
|
|
this.openSketch(name);
|
|
}
|
|
};
|
|
|
|
TCAD.App2D.prototype.isSketchExists = function(name) {
|
|
return localStorage.getItem(TCAD.STORAGE_PREFIX + name) != null;
|
|
};
|
|
|
|
TCAD.App2D.prototype.openSketch = function(name) {
|
|
var uri = window.location.href.split("#")[0];
|
|
if (name !== "untitled") {
|
|
uri += "#" + name;
|
|
}
|
|
var win = window.open(uri, '_blank');
|
|
win.focus();
|
|
};
|
|
|
|
TCAD.App2D.prototype.newSketch = function() {
|
|
var name = prompt("Name for sketch");
|
|
if (name != null) {
|
|
if (this.isSketchExists(name)) {
|
|
alert("Sorry, a sketch with the name '" + name + "' already exists. Won't override it.");
|
|
return;
|
|
}
|
|
this.openSketch(name);
|
|
}
|
|
};
|
|
|
|
TCAD.App2D.prototype.initSketchManager = function(data, ext) {
|
|
this._sketchesWin = new TCAD.ui.Window($('#sketchManager'));
|
|
var app = this;
|
|
var sketchesList = new TCAD.ui.List($('#sketchList'), {
|
|
items : function() {
|
|
var theItems = [];
|
|
for (var name in localStorage) {
|
|
if (!localStorage.hasOwnProperty(name)) {
|
|
continue;
|
|
}
|
|
if (name.indexOf(TCAD.STORAGE_PREFIX) === 0) {
|
|
name = name.substring(TCAD.STORAGE_PREFIX.length);
|
|
}
|
|
theItems.push({name : name});
|
|
}
|
|
return theItems;
|
|
},
|
|
|
|
remove : function(item) {
|
|
if (confirm("Selected sketch will be REMOVED! Are you sure?")) {
|
|
localStorage.removeItem(TCAD.STORAGE_PREFIX + item.name);
|
|
sketchesList.refresh();
|
|
}
|
|
},
|
|
|
|
mouseleave : function(item) {},
|
|
hover : function(item) {},
|
|
|
|
click : function(item) {
|
|
app.openSketch(item.name);
|
|
}
|
|
});
|
|
sketchesList.refresh();
|
|
this._sketchesList = sketchesList;
|
|
};
|
|
|
|
TCAD.App2D.prototype.loadFromLocalStorage = function() {
|
|
var sketchId = this.getSketchId();
|
|
var sketchData = localStorage.getItem(sketchId);
|
|
if (sketchData != null) {
|
|
this.viewer.historyManager.init(sketchData);
|
|
this.viewer.io.loadSketch(sketchData);
|
|
}
|
|
this.viewer.repaint();
|
|
};
|
|
|
|
TCAD.App2D.prototype.getSketchId = function() {
|
|
var id = window.location.hash.substring(1);
|
|
if (!id) {
|
|
id = "untitled";
|
|
}
|
|
return TCAD.STORAGE_PREFIX + id;
|
|
};
|