275 lines
12 KiB
C#
275 lines
12 KiB
C#
/*
|
|
Copyright (c) 2014, Lars Brubaker
|
|
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.IO;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Runtime.InteropServices;
|
|
using System.Diagnostics;
|
|
|
|
using MatterHackers.Agg;
|
|
using MatterHackers.MatterControl.DataStorage;
|
|
using MatterHackers.MatterControl.PrintQueue;
|
|
using MatterHackers.Agg.UI;
|
|
using MatterHackers.Localizations;
|
|
|
|
namespace MatterHackers.MatterControl.SlicerConfiguration
|
|
{
|
|
public class SlicingQueue
|
|
{
|
|
static Thread slicePartThread = null;
|
|
static List<PrintItemWrapper> listOfSlicingItems = new List<PrintItemWrapper>();
|
|
static bool haltSlicingThread = false;
|
|
|
|
SlicingQueue()
|
|
{
|
|
if (slicePartThread == null)
|
|
{
|
|
slicePartThread = new Thread(CreateSlicedPartsThread);
|
|
slicePartThread.Name = "slicePartThread";
|
|
slicePartThread.IsBackground = true;
|
|
slicePartThread.Start();
|
|
}
|
|
}
|
|
|
|
static SlicingQueue instance;
|
|
static public SlicingQueue Instance
|
|
{
|
|
get
|
|
{
|
|
if (instance == null)
|
|
{
|
|
instance = new SlicingQueue();
|
|
}
|
|
return instance;
|
|
}
|
|
}
|
|
|
|
public void QueuePartForSlicing(PrintItemWrapper itemToQueue)
|
|
{
|
|
itemToQueue.DoneSlicing = false;
|
|
string preparingToSliceModelTxt = LocalizedString.Get("Preparing to slice model");
|
|
string peparingToSliceModelFull = string.Format ("{0}...", preparingToSliceModelTxt);
|
|
itemToQueue.OnSlicingOutputMessage(new StringEventArgs(peparingToSliceModelFull));
|
|
using (TimedLock.Lock(listOfSlicingItems, "QueuePartForSlicing"))
|
|
{
|
|
//Add to thumbnail generation queue
|
|
listOfSlicingItems.Add(itemToQueue);
|
|
}
|
|
}
|
|
|
|
public void ShutDownSlicingThread()
|
|
{
|
|
haltSlicingThread = true;
|
|
}
|
|
|
|
static string macQuotes(string textLine)
|
|
{
|
|
if (textLine.StartsWith ("\"") && textLine.EndsWith ("\"")) {
|
|
return textLine;
|
|
} else {
|
|
return "\"" + textLine.Replace ("\"", "\\\"") + "\"";
|
|
}
|
|
}
|
|
|
|
static string getSlicerFullPath()
|
|
{
|
|
switch (MatterHackers.Agg.UI.WindowsFormsAbstract.GetOSType())
|
|
{
|
|
case Agg.UI.WindowsFormsAbstract.OSType.Windows:
|
|
switch (ActivePrinterProfile.Instance.ActiveSliceEngineType)
|
|
{
|
|
case ActivePrinterProfile.SlicingEngineTypes.Slic3r:
|
|
{
|
|
string slic3rRelativePath = Path.Combine("..", "Slic3r", "slic3r.exe");
|
|
if (!File.Exists(slic3rRelativePath))
|
|
{
|
|
slic3rRelativePath = System.IO.Path.Combine(".", "Slic3r", "slic3r.exe");
|
|
}
|
|
return System.IO.Path.GetFullPath(slic3rRelativePath);
|
|
}
|
|
|
|
case ActivePrinterProfile.SlicingEngineTypes.CuraEngine:
|
|
{
|
|
string curaEngineRelativePath = Path.Combine("..", "CuraEngine.exe");
|
|
if (!File.Exists(curaEngineRelativePath))
|
|
{
|
|
curaEngineRelativePath = System.IO.Path.Combine(".", "CuraEngine.exe");
|
|
}
|
|
return System.IO.Path.GetFullPath(curaEngineRelativePath);
|
|
}
|
|
|
|
case ActivePrinterProfile.SlicingEngineTypes.MatterSlice:
|
|
{
|
|
string materSliceRelativePath = Path.Combine(".", "MatterSlice.exe");
|
|
return System.IO.Path.GetFullPath(materSliceRelativePath);
|
|
}
|
|
|
|
default:
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
case Agg.UI.WindowsFormsAbstract.OSType.Mac:
|
|
switch (ActivePrinterProfile.Instance.ActiveSliceEngineType)
|
|
{
|
|
case ActivePrinterProfile.SlicingEngineTypes.Slic3r:
|
|
{
|
|
//string parentLocation = Directory.GetParent (ApplicationDataStorage.Instance.ApplicationPath).ToString ();
|
|
string applicationPath = System.IO.Path.Combine(ApplicationDataStorage.Instance.ApplicationPath, "Slic3r.app", "Contents", "MacOS", "slic3r");
|
|
return applicationPath;
|
|
}
|
|
case ActivePrinterProfile.SlicingEngineTypes.CuraEngine:
|
|
{
|
|
string applicationPath = System.IO.Path.Combine(ApplicationDataStorage.Instance.ApplicationPath, "CuraEngine");
|
|
return applicationPath;
|
|
}
|
|
|
|
default:
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
default:
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
|
|
static Process slicerProcess = null;
|
|
static void CreateSlicedPartsThread()
|
|
{
|
|
while (!haltSlicingThread)
|
|
{
|
|
if (PrinterCommunication.Instance.ActivePrintItem != null && listOfSlicingItems.Count > 0)
|
|
{
|
|
PrintItemWrapper itemToSlice = listOfSlicingItems[0];
|
|
// check that the STL file is currently on disk
|
|
if (File.Exists(itemToSlice.FileLocation))
|
|
{
|
|
itemToSlice.CurrentlySlicing = true;
|
|
|
|
string currentConfigurationFileAndPath = Path.Combine(ApplicationDataStorage.Instance.GCodeOutputPath, "config_" + ActiveSliceSettings.Instance.GetHashCode().ToString() + ".ini");
|
|
ActiveSliceSettings.Instance.GenerateConfigFile(currentConfigurationFileAndPath);
|
|
|
|
string gcodePathAndFileName = itemToSlice.GCodePathAndFileName;
|
|
bool gcodeFileIsComplete = itemToSlice.IsGCodeFileComplete(gcodePathAndFileName);
|
|
|
|
if (!File.Exists(gcodePathAndFileName) || !gcodeFileIsComplete)
|
|
{
|
|
slicerProcess = new Process();
|
|
|
|
switch (ActivePrinterProfile.Instance.ActiveSliceEngineType)
|
|
{
|
|
case ActivePrinterProfile.SlicingEngineTypes.Slic3r:
|
|
slicerProcess.StartInfo.Arguments = "--load \"" + currentConfigurationFileAndPath + "\" --output \"" + gcodePathAndFileName + "\" \"" + itemToSlice.PartToSlicePathAndFileName + "\"";
|
|
break;
|
|
|
|
case ActivePrinterProfile.SlicingEngineTypes.CuraEngine:
|
|
slicerProcess.StartInfo.Arguments = "-v -o \"" + gcodePathAndFileName + "\" " + CuraEngineMappings.GetCuraCommandLineSettings() + " \"" + itemToSlice.PartToSlicePathAndFileName + "\"";
|
|
//Debug.Write(slicerProcess.StartInfo.Arguments);
|
|
break;
|
|
|
|
case ActivePrinterProfile.SlicingEngineTypes.MatterSlice:
|
|
slicerProcess.StartInfo.Arguments = "--load \"" + currentConfigurationFileAndPath + "\" --output \"" + gcodePathAndFileName + "\" \"" + itemToSlice.PartToSlicePathAndFileName + "\"";
|
|
break;
|
|
}
|
|
|
|
string slicerFullPath = getSlicerFullPath();
|
|
|
|
slicerProcess.StartInfo.CreateNoWindow = true;
|
|
slicerProcess.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
|
|
slicerProcess.StartInfo.RedirectStandardError = true;
|
|
slicerProcess.StartInfo.RedirectStandardOutput = true;
|
|
|
|
slicerProcess.StartInfo.FileName = slicerFullPath;
|
|
slicerProcess.StartInfo.UseShellExecute = false;
|
|
|
|
slicerProcess.OutputDataReceived += (sender, args) =>
|
|
{
|
|
if (args.Data != null)
|
|
{
|
|
string message = args.Data;
|
|
message = message.Replace("=>", "").Trim();
|
|
if (message.Contains(".gcode"))
|
|
{
|
|
message = "Saving intermediate file";
|
|
}
|
|
message += "...";
|
|
UiThread.RunOnIdle((state) =>
|
|
{
|
|
itemToSlice.OnSlicingOutputMessage(new StringEventArgs(message));
|
|
});
|
|
}
|
|
};
|
|
|
|
slicerProcess.Start();
|
|
|
|
slicerProcess.BeginOutputReadLine();
|
|
string stdError = slicerProcess.StandardError.ReadToEnd();
|
|
|
|
slicerProcess.WaitForExit();
|
|
using (TimedLock.Lock(slicerProcess, "SlicingProcess"))
|
|
{
|
|
slicerProcess = null;
|
|
}
|
|
}
|
|
}
|
|
|
|
UiThread.RunOnIdle((state) =>
|
|
{
|
|
itemToSlice.CurrentlySlicing = false;
|
|
itemToSlice.DoneSlicing = true;
|
|
});
|
|
|
|
using (TimedLock.Lock(listOfSlicingItems, "CreateSlicedPartsThread()"))
|
|
{
|
|
listOfSlicingItems.RemoveAt(0);
|
|
}
|
|
}
|
|
|
|
Thread.Sleep(100);
|
|
}
|
|
}
|
|
|
|
internal void CancelCurrentSlicing()
|
|
{
|
|
if (slicerProcess != null)
|
|
{
|
|
using (TimedLock.Lock(slicerProcess, "SlicingProcess"))
|
|
{
|
|
if (slicerProcess != null && !slicerProcess.HasExited)
|
|
{
|
|
slicerProcess.Kill();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|