mattercontrol/Library/Export/GCodeExport.cs

205 lines
6.8 KiB
C#
Raw Normal View History

/*
Copyright (c) 2017, Lars Brubaker, John Lewin
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
The views and conclusions contained in the software and documentation are those
of the authors and should not be interpreted as representing official policies,
either expressed or implied, of the FreeBSD Project.
*/
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using MatterControl.Printing;
2017-08-18 18:13:15 -07:00
using MatterHackers.Agg.Image;
using MatterHackers.Agg.Platform;
using MatterHackers.Agg.UI;
using MatterHackers.DataConverters3D;
using MatterHackers.Localizations;
using MatterHackers.MatterControl.PrinterCommunication.Io;
using MatterHackers.MatterControl.PrintQueue;
using MatterHackers.MatterControl.SlicerConfiguration;
using MatterHackers.VectorMath;
namespace MatterHackers.MatterControl.Library.Export
{
public class GCodeExport : IExportPlugin
{
2017-08-19 09:50:08 -07:00
public string ButtonText => "Machine File (G-Code)".Localize();
public string FileExtension => ".gcode";
public string ExtensionFilter => "Export GCode|*.gcode";
public ImageBuffer Icon { get; } = AggContext.StaticData.LoadIcon(Path.Combine("filetypes", "gcode.png"));
2017-08-18 18:13:15 -07:00
public bool EnabledForCurrentPart(ILibraryAssetStream libraryContent)
{
return !libraryContent.IsProtected;
}
public GuiWidget GetOptionsPanel()
{
// If print leveling is enabled then add in a check box 'Apply Leveling During Export' and default checked.
if (ActiveSliceSettings.Instance.GetValue<bool>(SettingsKey.print_leveling_enabled))
{
var container = new FlowLayoutWidget();
var checkbox = new CheckBox("Apply leveling to G-Code during export".Localize(), ActiveTheme.Instance.PrimaryTextColor, 10)
{
Checked = true,
Cursor = Cursors.Hand,
};
checkbox.CheckedStateChanged += (s, e) =>
{
this.ApplyLeveling = checkbox.Checked;
};
2017-08-19 09:50:08 -07:00
//container.AddChild(checkbox);
return container;
}
return null;
}
public async Task<bool> Generate(IEnumerable<ILibraryItem> libraryItems, string outputPath)
{
// TODO: Export operations need to resolve printer context interactively
var printer = ApplicationController.Instance.ActivePrinter;
var firstItem = libraryItems.OfType<ILibraryAsset>().FirstOrDefault();
if (firstItem != null)
{
IObject3D loadedItem = null;
if (firstItem.AssetPath == printer.Bed.EditContext.SourceFilePath)
{
// If item is bedplate, save any pending changes before starting the print
await ApplicationController.Instance.Tasks.Execute(printer.Bed.SaveChanges);
loadedItem = printer.Bed.Scene;
}
else if (firstItem is ILibraryObject3D object3DItem)
{
loadedItem = await object3DItem.CreateContent(null);
}
else if (firstItem is ILibraryAssetStream assetStream)
{
loadedItem = await assetStream.CreateContent(null);
}
if (loadedItem != null)
{
// Necessary to ensure scene or non-persisted ILibraryObject3D content is on disk before slicing
loadedItem.PersistAssets(null);
try
{
string sourceExtension = $".{firstItem.ContentType}";
string assetPath = loadedItem.SaveToAssets();
string fileHashCode = Path.GetFileNameWithoutExtension(assetPath);
string gcodePath = PrintItemWrapper.GCodePath(fileHashCode);
2018-02-13 12:41:15 -08:00
if (ApplicationSettings.ValidFileExtensions.IndexOf(sourceExtension, StringComparison.OrdinalIgnoreCase) >= 0
|| string.Equals(sourceExtension, ".mcx", StringComparison.OrdinalIgnoreCase))
{
// Get Bounds
var aabb = loadedItem.GetAxisAlignedBoundingBox(Matrix4X4.Identity);
// Move to bed center
var bedCenter = printer.Bed.BedCenter;
loadedItem.Matrix *= Matrix4X4.CreateTranslation((double)-aabb.Center.X, (double)-aabb.Center.Y, (double)-aabb.minXYZ.Z) * Matrix4X4.CreateTranslation(bedCenter.X, bedCenter.Y, 0);
loadedItem.Color = loadedItem.Color;
// Slice
await ApplicationController.Instance.Tasks.Execute((reporter, cancellationToken) =>
{
return Slicer.SliceItem(loadedItem, gcodePath, printer, reporter, cancellationToken);
});
}
if (File.Exists(gcodePath))
{
SaveGCodeToNewLocation(gcodePath, outputPath);
return true;
}
}
catch
{
}
}
}
return false;
}
public bool ApplyLeveling { get; set; } = true;
private void SaveGCodeToNewLocation(string gcodeFilename, string dest)
{
try
{
GCodeFileStream gCodeFileStream = new GCodeFileStream(GCodeFile.Load(gcodeFilename,
new Vector4(),
new Vector4(),
new Vector4(),
Vector4.One,
CancellationToken.None));
var printerSettings = ActiveSliceSettings.Instance;
bool addLevelingStream = printerSettings.GetValue<bool>(SettingsKey.print_leveling_enabled) && this.ApplyLeveling;
var queueStream = new QueuedCommandsStream(gCodeFileStream);
// this is added to ensure we are rewriting the G0 G1 commands as needed
GCodeStream finalStream = addLevelingStream
? new ProcessWriteRegexStream(printerSettings, new PrintLevelingStream(printerSettings, queueStream, false), queueStream)
: new ProcessWriteRegexStream(printerSettings, queueStream, queueStream);
using (StreamWriter file = new StreamWriter(dest))
{
string nextLine = finalStream.ReadLine();
while (nextLine != null)
{
if (nextLine.Trim().Length > 0)
{
file.WriteLine(nextLine);
}
nextLine = finalStream.ReadLine();
}
}
}
catch (Exception e)
{
UiThread.RunOnIdle(() =>
{
StyledMessageBox.ShowMessageBox(e.Message, "Couldn't save file".Localize());
});
}
}
}
}