Files
Tiago Conceição ea4f7e0400 v3.11.0
- **UI:**
  - (Improvement) Layer navigation load time by parallel `Mat` to `Bitmap` conversion
  - (Improvement) Allow to show exceptions without the stack trace and detailed trigger action by using the `MessageExceiption` (#644)
  - (Improvement) Allow progress to have and display a detailed log (#644)
  - (Improvement) Convert format to another with multiple versions will now only show the possible versions for the extension
- **Suggestion - Wait time before cure:**
  - (Improvement) Set the first wait time based on first valid layer mass rather than use the fixed limit
  - (Improvement) Set zero time to empty and dummy layers
  - (Improvement) When creating the dummy layer also increment the bottom layer count as the created layer count as one
- **PCB Exposure:**
  - (Add) Excellon Drill Format (drl) to cut off holes (Implementation may lack some advanced features, please confirm the result) (#646)
  - (Fix) Arc (G03) with negative offsets (I-/J-) was not drawing the shape correctly
  - (Fix) Implement the rotation for the outline primitive (#645)
- **File formats:**
  - (Improvement) Formats now sanitize the selected version before encode given the file extension, if version is out of range it will force the last known version
  - (Fix) CBDDLP: Remove a table from the file that might cause layer corruption
- (Add) Operations - `AfterCompleteReport` property: Gets or sets an report to show to the user after complete the operation with success
- (Improvement) Suggestion - Wait time after cure: Set zero time to empty and dummy layers
- (Improvement) Slight improvement on the contour intersection check, yields better performance on resin and suction cup detection
- (Improvement) Allow to trigger message boxes from operations and scripts (#644)
- (Upgrade) .NET from 6.0.12 to 6.0.13
2023-01-16 02:03:51 +00:00

522 lines
18 KiB
C#

/*
* GNU AFFERO GENERAL PUBLIC LICENSE
* Version 3, 19 November 2007
* Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
* Everyone is permitted to copy and distribute verbatim copies
* of this license document, but changing it is not allowed.
*/
using Emgu.CV;
using Emgu.CV.CvEnum;
using Emgu.CV.Util;
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.IO.Compression;
using System.Linq;
using System.Reflection;
using UVtools.Core.Extensions;
using UVtools.Core.GCode;
using UVtools.Core.Layers;
using UVtools.Core.Operations;
namespace UVtools.Core.FileFormats;
public sealed class ChituboxZipFile : FileFormat
{
#region Constants
public const string GCodeFilename = "run.gcode";
#endregion
#region Sub Classes
public class Header
{
// ;(****Build and Slicing Parameters****)
[DisplayName("fileName")] public string Filename { get; set; } = string.Empty;
[DisplayName("machineType")] public string MachineType { get; set; } = "Default";
[DisplayName("estimatedPrintTime")] public float EstimatedPrintTime { get; set; }
[DisplayName("volume")] public float VolumeMl { get; set; }
[DisplayName("resin")] public string? Resin { get; set; } = "Normal";
[DisplayName("weight")] public float WeightG { get; set; }
[DisplayName("price")] public float Price { get; set; }
[DisplayName("layerHeight")] public float LayerHeight { get; set; }
[DisplayName("resolutionX")] public uint ResolutionX { get; set; }
[DisplayName("resolutionY")] public uint ResolutionY { get; set; }
[DisplayName("machineX")] public float MachineX { get; set; }
[DisplayName("machineY")] public float MachineY { get; set; }
[DisplayName("machineZ")] public float MachineZ { get; set; }
[DisplayName("projectType")] public string ProjectType { get; set; } = "Normal";
[DisplayName("normalExposureTime")] public float ExposureTime { get; set; } = 7; // 35s
[DisplayName("bottomLayExposureTime")] public float BottomLayExposureTime { get; set; } = 35; // 35s
[DisplayName("bottomLayerExposureTime")] public float BottomExposureTime { get; set; } = 35; // 35s
[DisplayName("normalDropSpeed")] public float RetractSpeed { get; set; } = 150; // 150 mm/m
[DisplayName("normalLayerLiftSpeed")] public float LiftSpeed { get; set; } = 60; // 60 mm/m
[DisplayName("normalLayerLiftHeight")] public float LiftHeight { get; set; } = 5; // 5 mm
[DisplayName("zSlowUpDistance")] public float ZSlowUpDistance { get; set; }
[DisplayName("bottomLayCount")] public ushort BottomLayCount { get; set; } = 4;
[DisplayName("bottomLayerCount")] public ushort BottomLayerCount { get; set; } = 4;
[DisplayName("mirror")] public byte Mirror { get; set; } // 0/1
[DisplayName("totalLayer")] public uint LayerCount { get; set; }
[DisplayName("bottomLayerLiftHeight")] public float BottomLiftHeight { get; set; } = 5;
[DisplayName("bottomLayerLiftSpeed")] public float BottomLiftSpeed { get; set; } = 60;
[DisplayName("bottomLightOffTime")] public float BottomLightOffDelay { get; set; }
[DisplayName("lightOffTime")] public float LightOffDelay { get; set; }
[DisplayName("bottomPWMLight")] public byte BottomLightPWM { get; set; } = 255;
[DisplayName("PWMLight")] public byte LightPWM { get; set; } = 255;
[DisplayName("antiAliasLevel")] public byte AntiAliasing { get; set; } = 1;
}
#endregion
#region Properties
public Header HeaderSettings { get; } = new();
public override FileFormatType FileType => FileFormatType.Archive;
public override string ConvertMenuGroup => "Chitubox";
public override FileExtension[] FileExtensions { get; } = {
new(typeof(ChituboxZipFile), "zip", "Chitubox Zip")
};
public override PrintParameterModifier[]? PrintParameterModifiers { get; } = {
PrintParameterModifier.BottomLayerCount,
PrintParameterModifier.TransitionLayerCount,
PrintParameterModifier.BottomWaitTimeBeforeCure,
PrintParameterModifier.WaitTimeBeforeCure,
PrintParameterModifier.BottomExposureTime,
PrintParameterModifier.ExposureTime,
PrintParameterModifier.BottomWaitTimeAfterCure,
PrintParameterModifier.WaitTimeAfterCure,
PrintParameterModifier.BottomLiftHeight,
PrintParameterModifier.BottomLiftSpeed,
PrintParameterModifier.LiftHeight,
PrintParameterModifier.LiftSpeed,
PrintParameterModifier.BottomLiftHeight2,
PrintParameterModifier.BottomLiftSpeed2,
PrintParameterModifier.LiftHeight2,
PrintParameterModifier.LiftSpeed2,
PrintParameterModifier.BottomWaitTimeAfterLift,
PrintParameterModifier.WaitTimeAfterLift,
PrintParameterModifier.BottomRetractSpeed,
PrintParameterModifier.RetractSpeed,
PrintParameterModifier.BottomRetractHeight2,
PrintParameterModifier.BottomRetractSpeed2,
PrintParameterModifier.RetractHeight2,
PrintParameterModifier.RetractSpeed2,
PrintParameterModifier.BottomLightPWM,
PrintParameterModifier.LightPWM,
};
public override PrintParameterModifier[]? PrintParameterPerLayerModifiers { get; } = {
PrintParameterModifier.PositionZ,
PrintParameterModifier.WaitTimeBeforeCure,
PrintParameterModifier.ExposureTime,
PrintParameterModifier.WaitTimeAfterCure,
PrintParameterModifier.LiftHeight,
PrintParameterModifier.LiftSpeed,
PrintParameterModifier.LiftHeight2,
PrintParameterModifier.LiftSpeed2,
PrintParameterModifier.WaitTimeAfterLift,
PrintParameterModifier.RetractSpeed,
PrintParameterModifier.RetractHeight2,
PrintParameterModifier.RetractSpeed2,
PrintParameterModifier.LightPWM,
};
public override Size[]? ThumbnailsOriginalSize { get; } =
{
new(954, 850),
new(168, 150)
};
public override uint ResolutionX
{
get => HeaderSettings.ResolutionX;
set => base.ResolutionX = HeaderSettings.ResolutionX = value;
}
public override uint ResolutionY
{
get => HeaderSettings.ResolutionY;
set => base.ResolutionY = HeaderSettings.ResolutionY = value;
}
public override float DisplayWidth
{
get => HeaderSettings.MachineX;
set => base.DisplayWidth = HeaderSettings.MachineX = RoundDisplaySize(value);
}
public override float DisplayHeight
{
get => HeaderSettings.MachineY;
set => base.DisplayHeight = HeaderSettings.MachineY = RoundDisplaySize(value);
}
public override float MachineZ
{
get => HeaderSettings.MachineZ > 0 ? HeaderSettings.MachineZ : base.MachineZ;
set => base.MachineZ = HeaderSettings.MachineZ = (float)Math.Round(value, 2);
}
public override FlipDirection DisplayMirror
{
get => HeaderSettings.Mirror == 0 ? FlipDirection.None : FlipDirection.Horizontally;
set
{
HeaderSettings.ProjectType = value == FlipDirection.None ? "Normal" : "LCD_mirror";
HeaderSettings.Mirror = (byte)(value == FlipDirection.None ? 0 : 1);
RaisePropertyChanged();
}
}
public override byte AntiAliasing
{
get => HeaderSettings.AntiAliasing;
set => base.AntiAliasing = HeaderSettings.AntiAliasing = Math.Clamp(value, (byte)1, (byte)16);
}
public override float LayerHeight
{
get => HeaderSettings.LayerHeight;
set
{
HeaderSettings.LayerHeight = Layer.RoundHeight(value);
RaisePropertyChanged();
}
}
public override uint LayerCount
{
get => base.LayerCount;
set => base.LayerCount = HeaderSettings.LayerCount = base.LayerCount;
}
public override ushort BottomLayerCount
{
get => HeaderSettings.BottomLayerCount;
set => base.BottomLayerCount = HeaderSettings.BottomLayerCount = HeaderSettings.BottomLayCount = value;
}
public override float BottomLightOffDelay
{
get => BottomWaitTimeBeforeCure;
set => BottomWaitTimeBeforeCure = value;
}
public override float LightOffDelay
{
get => WaitTimeBeforeCure;
set => WaitTimeBeforeCure = value;
}
public override float BottomWaitTimeBeforeCure
{
get => HeaderSettings.BottomLightOffDelay;
set => base.BottomWaitTimeBeforeCure = HeaderSettings.BottomLightOffDelay = (float)Math.Round(value, 2);
}
public override float WaitTimeBeforeCure
{
get => HeaderSettings.LightOffDelay;
set => base.WaitTimeBeforeCure = HeaderSettings.LightOffDelay = (float)Math.Round(value, 2);
}
public override float BottomExposureTime
{
get => HeaderSettings.BottomExposureTime;
set => base.BottomExposureTime = HeaderSettings.BottomExposureTime = HeaderSettings.BottomLayExposureTime = (float)Math.Round(value, 2);
}
public override float ExposureTime
{
get => HeaderSettings.ExposureTime;
set => base.ExposureTime = HeaderSettings.ExposureTime = (float)Math.Round(value, 2);
}
public override float BottomLiftHeight
{
get => HeaderSettings.BottomLiftHeight;
set => base.BottomLiftHeight = HeaderSettings.BottomLiftHeight = (float)Math.Round(value, 2);
}
public override float LiftHeight
{
get => HeaderSettings.LiftHeight;
set => base.LiftHeight = HeaderSettings.LiftHeight = (float)Math.Round(value, 2);
}
public override float BottomLiftSpeed
{
get => HeaderSettings.BottomLiftSpeed;
set => base.BottomLiftSpeed = HeaderSettings.BottomLiftSpeed = (float)Math.Round(value, 2);
}
public override float LiftSpeed
{
get => HeaderSettings.LiftSpeed;
set => base.LiftSpeed = HeaderSettings.LiftSpeed = (float)Math.Round(value, 2);
}
public override float RetractSpeed
{
get => HeaderSettings.RetractSpeed;
set => base.RetractSpeed = HeaderSettings.RetractSpeed = (float)Math.Round(value, 2);
}
public override byte BottomLightPWM
{
get => HeaderSettings.BottomLightPWM;
set => base.BottomLightPWM = HeaderSettings.BottomLightPWM = value;
}
public override byte LightPWM
{
get => HeaderSettings.LightPWM;
set => base.LightPWM = HeaderSettings.LightPWM = value;
}
public override float PrintTime
{
get => base.PrintTime;
set
{
base.PrintTime = value;
HeaderSettings.EstimatedPrintTime = base.PrintTime;
}
}
public override float MaterialMilliliters
{
get => base.MaterialMilliliters;
set
{
base.MaterialMilliliters = value;
HeaderSettings.VolumeMl = base.MaterialMilliliters;
}
}
public override float MaterialGrams
{
get => (float) Math.Round(HeaderSettings.WeightG, 3);
set
{
HeaderSettings.WeightG = (float)Math.Round(value, 3);
RaisePropertyChanged();
}
}
public override float MaterialCost
{
get => (float) Math.Round(HeaderSettings.Price, 3);
set
{
HeaderSettings.Price = (float)Math.Round(value, 3);
RaisePropertyChanged();
}
}
public override string? MaterialName
{
get => HeaderSettings.Resin;
set
{
HeaderSettings.Resin = value;
RaisePropertyChanged();
}
}
public override string MachineName
{
get => HeaderSettings.MachineType;
set => base.MachineName = HeaderSettings.MachineType = value;
}
public override object[] Configs => new object[] { HeaderSettings };
public override bool SupportsGCode => base.SupportsGCode && !IsPHZZip;
public bool IsPHZZip;
#endregion
#region Constructor
public ChituboxZipFile()
{
GCode = new GCodeBuilder
{
UseComments = true,
GCodePositioningType = GCodeBuilder.GCodePositioningTypes.Absolute,
GCodeSpeedUnit = GCodeBuilder.GCodeSpeedUnits.MillimetersPerMinute,
GCodeTimeUnit = GCodeBuilder.GCodeTimeUnits.Milliseconds,
GCodeShowImageType = GCodeBuilder.GCodeShowImageTypes.FilenamePng1Started,
LayerMoveCommand = GCodeBuilder.GCodeMoveCommands.G0,
EndGCodeMoveCommand = GCodeBuilder.GCodeMoveCommands.G1
};
}
#endregion
#region Methods
public override bool CanProcess(string? fileFullPath)
{
if (!base.CanProcess(fileFullPath)) return false;
try
{
var zip = ZipFile.Open(fileFullPath!, ZipArchiveMode.Read);
if (zip.Entries.Any(entry => entry.Name.EndsWith(".gcode"))) return true;
}
catch (Exception e)
{
Debug.WriteLine(e);
}
return false;
}
protected override void EncodeInternally(OperationProgress progress)
{
using var outputFile = ZipFile.Open(TemporaryOutputFileFullPath, ZipArchiveMode.Create);
if (Thumbnails is not null && Thumbnails.Length > 0 && Thumbnails[0] is not null)
{
using var stream = outputFile.CreateEntry("preview.png").Open();
stream.WriteBytes(Thumbnails[0]!.GetPngByes());
stream.Close();
}
if (Thumbnails is not null && Thumbnails.Length > 1 && Thumbnails[1] is not null)
{
using var stream = outputFile.CreateEntry("preview_cropping.png").Open();
using var vec = new VectorOfByte();
stream.WriteBytes(Thumbnails[1]!.GetPngByes());
stream.Close();
}
if (!IsPHZZip)
{
RebuildGCode();
outputFile.PutFileContent(GCodeFilename, GCodeStr, ZipArchiveMode.Create);
}
EncodeLayersInZip(outputFile, IndexStartNumber.One, progress);
}
protected override void DecodeInternally(OperationProgress progress)
{
using var inputFile = ZipFile.Open(FileFullPath!, ZipArchiveMode.Read);
var entry = inputFile.GetEntry(GCodeFilename);
if (entry is not null)
{
//Clear();
//throw new FileLoadException("run.gcode not found", fileFullPath);
using TextReader tr = new StreamReader(entry.Open());
GCode!.Clear();
while (tr.ReadLine() is { } line)
{
GCode.AppendLine(line);
if (string.IsNullOrEmpty(line)) continue;
if (line[0] != ';')
{
continue;
}
var splitLine = line.Split(':');
if (splitLine.Length < 2) continue;
foreach (var propertyInfo in HeaderSettings.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance))
{
var displayNameAttribute = propertyInfo.GetCustomAttributes(false).OfType<DisplayNameAttribute>().FirstOrDefault();
if (displayNameAttribute is null) continue;
if (!splitLine[0].Trim(' ', ';').Equals(displayNameAttribute.DisplayName)) continue;
propertyInfo.SetValueFromString(HeaderSettings, splitLine[1].Trim());
}
}
tr.Close();
}
else
{
IsPHZZip = true;
}
if (HeaderSettings.LayerCount == 0)
{
foreach (var zipEntry in inputFile.Entries)
{
if(!zipEntry.Name.EndsWith(".png")) continue;
var filename = Path.GetFileNameWithoutExtension(zipEntry.Name);
if (!filename.All(char.IsDigit)) continue;
if (!uint.TryParse(filename, out var layerIndex)) continue;
HeaderSettings.LayerCount = Math.Max(HeaderSettings.LayerCount, layerIndex);
}
}
Init(HeaderSettings.LayerCount, DecodeType == FileDecodeType.Partial);
DecodeLayersFromZip(inputFile, IndexStartNumber.One, progress);
if (IsPHZZip) // PHZ file
{
RebuildLayersProperties();
}
else
{
GCode?.ParseLayersFromGCode(this);
}
entry = inputFile.GetEntry("preview.png");
if (entry is not null)
{
Thumbnails![0] = new Mat();
CvInvoke.Imdecode(entry.Open().ToArray(), ImreadModes.AnyColor, Thumbnails[0]);
}
entry = inputFile.GetEntry("preview_cropping.png");
if (entry is not null)
{
var count = CreatedThumbnailsCount;
Thumbnails![count] = new Mat();
CvInvoke.Imdecode(entry.Open().ToArray(), ImreadModes.AnyColor, Thumbnails[count]);
}
}
public override void RebuildGCode()
{
if (!SupportsGCode || SuppressRebuildGCode) return;
GCode?.RebuildGCode(this, new object[]{ HeaderSettings });
RaisePropertyChanged(nameof(GCodeStr));
}
protected override void PartialSaveInternally(OperationProgress progress)
{
using var outputFile = ZipFile.Open(TemporaryOutputFileFullPath, ZipArchiveMode.Update);
var entriesToRemove = outputFile.Entries.Where(zipEntry => zipEntry.Name.EndsWith(".gcode")).ToArray();
foreach (var zipEntry in entriesToRemove)
{
zipEntry.Delete();
}
if (!IsPHZZip)
{
outputFile.PutFileContent(GCodeFilename, GCodeStr, ZipArchiveMode.Update);
}
//Decode(FileFullPath, progress);
}
#endregion
}