mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-09 01:52:32 +02:00
ea4f7e0400
- **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
213 lines
6.5 KiB
C#
213 lines
6.5 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 System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using UVtools.Core.FileFormats;
|
|
|
|
namespace UVtools.Core.Operations;
|
|
|
|
|
|
public sealed class OperationLayerRemove : Operation
|
|
{
|
|
#region Members
|
|
private bool _useThreshold;
|
|
private uint _pixelThreshold;
|
|
#endregion
|
|
|
|
#region Overrides
|
|
|
|
public override LayerRangeSelection StartLayerRangeSelection => LayerRangeSelection.Current;
|
|
public override bool CanROI => false;
|
|
public override bool PassActualLayerIndex => true;
|
|
public override string IconClass => "mdi-layers-remove";
|
|
public override string Title => "Remove layers";
|
|
|
|
public override string Description =>
|
|
"Remove layers in a given range.";
|
|
|
|
public override string ConfirmationText =>
|
|
$"remove layers {LayerIndexStart} through {LayerIndexEnd}"+
|
|
(_useThreshold ? $" with an pixel threshold of {_pixelThreshold}px" : string.Empty)
|
|
+"?";
|
|
|
|
public override string ProgressTitle =>
|
|
$"Removing layers {LayerIndexStart} through {LayerIndexEnd}" +
|
|
(_useThreshold ? $" with an pixel threshold of {_pixelThreshold}px" : string.Empty);
|
|
|
|
public override string ProgressAction => "Removed layers";
|
|
|
|
public override bool CanCancel => false;
|
|
|
|
public override bool CanHaveProfiles => false;
|
|
|
|
public override string? ValidateInternally()
|
|
{
|
|
var sb = new StringBuilder();
|
|
|
|
var layersToRemove = LayerRemoveCount;
|
|
if (LayerRemoveCount == 0)
|
|
{
|
|
sb.AppendLine("The used values will not remove any layer, please adjust.");
|
|
}
|
|
|
|
if (layersToRemove == SlicerFile.LayerCount)
|
|
{
|
|
sb.AppendLine("You can't remove all layers from the file. Keep at least one.");
|
|
}
|
|
|
|
return sb.ToString();
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Properties
|
|
|
|
public bool UseThreshold
|
|
{
|
|
get => _useThreshold;
|
|
set
|
|
{
|
|
if(!RaiseAndSetIfChanged(ref _useThreshold, value)) return;
|
|
RaisePropertyChanged(nameof(LayerRemoveCount));
|
|
}
|
|
}
|
|
|
|
public uint PixelThreshold
|
|
{
|
|
get => _pixelThreshold;
|
|
set
|
|
{
|
|
if(!RaiseAndSetIfChanged(ref _pixelThreshold, value)) return;
|
|
RaisePropertyChanged(nameof(LayerRemoveCount));
|
|
}
|
|
}
|
|
|
|
public uint LayerRemoveCount
|
|
{
|
|
get
|
|
{
|
|
if (!_useThreshold) return LayerRangeCount;
|
|
uint layers = 0;
|
|
for (uint layerIndex = LayerIndexStart; layerIndex <= LayerIndexEnd; layerIndex++)
|
|
{
|
|
if (SlicerFile[layerIndex].NonZeroPixelCount > _pixelThreshold) continue;
|
|
layers++;
|
|
}
|
|
|
|
return layers;
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Constructor
|
|
|
|
public OperationLayerRemove() { }
|
|
|
|
public OperationLayerRemove(FileFormat slicerFile) : base(slicerFile) { }
|
|
|
|
#endregion
|
|
|
|
#region Equality
|
|
private bool Equals(OperationLayerRemove other)
|
|
{
|
|
return _useThreshold == other._useThreshold && _pixelThreshold == other._pixelThreshold;
|
|
}
|
|
|
|
public override bool Equals(object? obj)
|
|
{
|
|
return ReferenceEquals(this, obj) || obj is OperationLayerRemove other && Equals(other);
|
|
}
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
return HashCode.Combine(_useThreshold, _pixelThreshold);
|
|
}
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
protected override bool ExecuteInternally(OperationProgress progress)
|
|
{
|
|
progress.CanCancel = false;
|
|
var layersRemove = new List<uint>();
|
|
for (uint layerIndex = LayerIndexStart; layerIndex <= LayerIndexEnd; layerIndex++)
|
|
{
|
|
if(_useThreshold && SlicerFile[layerIndex].NonZeroPixelCount > _pixelThreshold) continue;
|
|
layersRemove.Add(layerIndex);
|
|
}
|
|
|
|
return RemoveLayers(SlicerFile, layersRemove, progress);
|
|
}
|
|
|
|
public static bool RemoveLayers(FileFormat slicerFile, IEnumerable<uint> layersRemove, OperationProgress? progress = null)
|
|
{
|
|
if (!layersRemove.Any()) return false;
|
|
|
|
progress ??= new OperationProgress(false);
|
|
|
|
progress.Reset("Removed layers", (uint)layersRemove.Count());
|
|
|
|
var layers = slicerFile.ToList();
|
|
int removedBottomLayers = 0;
|
|
//uint lastRemovedBottomLayerIndex = 0;
|
|
|
|
var lastBottomLayer = slicerFile.LastBottomLayer;
|
|
|
|
// Register bottom layers
|
|
if (slicerFile.BottomLayerCount > 0)
|
|
{
|
|
var layersRemoveAsc = layersRemove.OrderBy(index => index);
|
|
foreach (var layerIndex in layersRemoveAsc)
|
|
{
|
|
if (!slicerFile[layerIndex].IsBottomLayer) continue;
|
|
removedBottomLayers++;
|
|
//lastRemovedBottomLayerIndex = layerIndex;
|
|
}
|
|
}
|
|
|
|
// Remove layers
|
|
var layersRemoveDesc = layersRemove.OrderByDescending(index => index);
|
|
foreach (var layerIndex in layersRemoveDesc)
|
|
{
|
|
layers.RemoveAt((int)layerIndex);
|
|
|
|
// Shift layer positions
|
|
var relativeZ = slicerFile[layerIndex].RelativePositionZ;
|
|
if (relativeZ <= 0) continue;
|
|
for (uint i = layerIndex + 1; i < slicerFile.LayerCount; i++)
|
|
{
|
|
slicerFile[i].PositionZ -= relativeZ;
|
|
}
|
|
progress++;
|
|
}
|
|
|
|
// Should never happen, still use this safe-check
|
|
if (slicerFile.LayerCount != layers.Count)
|
|
{
|
|
// Try to copy bottom parameters to shifted new bottom layers
|
|
if (removedBottomLayers > 0 && lastBottomLayer is not null)
|
|
{
|
|
var startIndex = (uint) Math.Max(lastBottomLayer.Index + 1, layersRemove.Count());
|
|
var endIndex = startIndex + removedBottomLayers;
|
|
var copyFromFromLayerIndex = (uint)Math.Max(0, (int)lastBottomLayer.Index);
|
|
for (var layerIndex = startIndex; layerIndex < endIndex && layerIndex < slicerFile.LayerCount; layerIndex++)
|
|
{
|
|
slicerFile[copyFromFromLayerIndex].CopyParametersTo(slicerFile[layerIndex]);
|
|
}
|
|
}
|
|
slicerFile.SuppressRebuildPropertiesWork(() => slicerFile.Layers = layers.ToArray());
|
|
}
|
|
|
|
return true;
|
|
}
|
|
#endregion
|
|
} |