예제 #1
0
        void sliceItem_Done(object sender, EventArgs e)
        {
            PrintItemWrapper sliceItem = (PrintItemWrapper)sender;

            sliceItem.Done -= new EventHandler(sliceItem_Done);
            savedGCodeFileNames.Add(sliceItem.GCodePathAndFileName);

            itemCountBeingWorkedOn++;
            if (itemCountBeingWorkedOn < allFilesToExport.Count)
            {
                if (StartingNextPart != null)
                {
                    StartingNextPart(this, new StringEventArgs(ItemNameBeingWorkedOn));
                }
            }
            else
            {
                UpdatePartStatus(this, new StringEventArgs("Calculating Total cm3..."));

                if (savedGCodeFileNames.Count > 0)
                {
                    double total = 0;
                    foreach (string gcodeFileName in savedGCodeFileNames)
                    {
                        string[] lines = File.ReadAllLines(gcodeFileName);
                        if (lines.Length > 0)
                        {
                            string filamentAmountLine = lines[lines.Length - 1];
                            int    startPos           = filamentAmountLine.IndexOf("(");
                            int    endPos             = filamentAmountLine.IndexOf("cm3)");
                            string value = filamentAmountLine.Substring(startPos + 1, endPos - (startPos + 1));
                            double amountForThisFile;
                            if (double.TryParse(value, out amountForThisFile))
                            {
                                total += amountForThisFile;
                            }
                            else
                            {
                                GCodeFile gcodeFile = new GCodeFile(gcodeFileName);
                                total += gcodeFile.GetFilamentCubicMm(ActiveSliceSettings.Instance.FillamentDiameter) / 1000;
                            }
                        }
                    }

                    // now copy all the gcode to the path given
                    for (int i = 0; i < savedGCodeFileNames.Count; i++)
                    {
                        string savedGcodeFileName = savedGCodeFileNames[i];
                        string originalFileName   = Path.GetFileName(allFilesToExport[i].Name);
                        string outputFileName     = Path.ChangeExtension(originalFileName, ".gcode");
                        string outputPathAndName  = Path.Combine(exportPath, outputFileName);

                        if (PrinterCommunication.Instance.DoPrintLeveling)
                        {
                            GCodeFile unleveledGCode = new GCodeFile(savedGcodeFileName);
                            PrintLeveling.Instance.ApplyLeveling(unleveledGCode);
                            unleveledGCode.Save(outputPathAndName);
                        }
                        else
                        {
                            File.Copy(savedGcodeFileName, outputPathAndName, true);
                        }
                    }

                    if (DoneSaving != null)
                    {
                        DoneSaving(this, new StringEventArgs(string.Format("{0:0.0}", total)));
                    }
                }
            }
        }
예제 #2
0
 public static string FilamentVolume(this GCodeFile loadedGCode, PrinterConfig printer)
 {
     return(string.Format("{0:0.00} cm³", loadedGCode.GetFilamentCubicMm(printer.Settings.GetValue <double>(SettingsKey.filament_diameter)) / 1000));
 }
예제 #3
0
 public override double GetFilamentCubicMm(double filamentDiameter)
 {
     return(source.GetFilamentCubicMm(filamentDiameter));
 }