mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-14 04:17:41 +02:00
8e4995a6a5
- **UVtoolsCmd:**
- **print-properties:**
- (Change) `-b`, `--base` option to `-a`, `-all` to indicate all properties and sub-properties, now defaults to only show base properties
- (Add) `-r`, `--range` option to prints only the matching layer(s) index(es) in a range
- (Add) `-i`, `--indexes` option to prints only the matching layer(s) index(es)
- (Add) Command: `set-properties <input-file> <property=value> Set properties in a file or to it layers with new values`
- (Add) Command: `print-issues <input-file> Detect and print issues in a file`
- (Add) New option to the `run` command: `-p, --property <property=value> Set a property with a new value (Compatible with operations only)`
- (Remove) Command: `print-layers` as it has been moved to `print-properties`, use `-r :` to obtain same result as default on `print-layers`
- **Issues:**
- (Fix) Issues groups with only one issue was displaying the wrong area value
- (Fix) Volume incorrectly calculated, resulting in a high value for group of issues
- (Fix) Incorrect calculation of the bounding rectangle for a group of issues
- **Repair layers:**
- (Add) Switch to opt between "Re-detect the selected issues before repair" and "Use and repair the previous detected issues" (Default)
- (Improvement) Do not allow to run the tool if there are no detected issues when the option "Use and repair the previous detected issues" is selected
- (Improvement) Linux: Recompile libcvextern.so on a older system to be able to run on both older and newest system (#603)
- (Upgrade) .NET from 6.0.10 to 6.0.11
420 lines
13 KiB
C#
420 lines
13 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.Collections.ObjectModel;
|
|
using System.IO;
|
|
using System.IO.Compression;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Emgu.CV;
|
|
using Emgu.CV.CvEnum;
|
|
using UVtools.Core.Extensions;
|
|
using UVtools.Core.FileFormats;
|
|
using UVtools.Core.Gerber;
|
|
using UVtools.Core.Layers;
|
|
using UVtools.Core.Objects;
|
|
|
|
namespace UVtools.Core.Operations;
|
|
|
|
|
|
public class OperationPCBExposure : Operation
|
|
{
|
|
#region Sub Classes
|
|
|
|
public sealed class PCBExposureFile : GenericFileRepresentation
|
|
{
|
|
private bool _invertPolarity;
|
|
private double _sizeScale = 1;
|
|
|
|
/// <summary>
|
|
/// Gets or sets to invert the polarity when drawing
|
|
/// </summary>
|
|
public bool InvertPolarity
|
|
{
|
|
get => _invertPolarity;
|
|
set => RaiseAndSetIfChanged(ref _invertPolarity, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the scale to apply to each shape drawing size.
|
|
/// Positions and vectors aren't affected by this.
|
|
/// </summary>
|
|
public double SizeScale
|
|
{
|
|
get => _sizeScale;
|
|
set => RaiseAndSetIfChanged(ref _sizeScale, Math.Max(0.001, Math.Round(value, 4)));
|
|
}
|
|
|
|
public PCBExposureFile() { }
|
|
|
|
public PCBExposureFile(string filePath, bool invertPolarity = false) : base(filePath)
|
|
{
|
|
_invertPolarity = invertPolarity;
|
|
}
|
|
}
|
|
#endregion
|
|
#region Static
|
|
|
|
public static string[] ValidExtensions => new[]
|
|
{
|
|
"gbr", // Gerber
|
|
"gko", // Board outline layer
|
|
"gtl", // Top layer
|
|
"gto", // Top silkscreen layer
|
|
"gts", // Top solder mask layer
|
|
"gbl", // Bottom layer
|
|
"gbo", // Bottom silkscreen layer
|
|
"gbs", // Bottom solder mask layer
|
|
"gml", // Mechanical layer
|
|
};
|
|
#endregion
|
|
|
|
#region Members
|
|
private RangeObservableCollection<PCBExposureFile> _files = new();
|
|
|
|
private bool _mergeFiles;
|
|
private decimal _layerHeight;
|
|
private decimal _exposureTime;
|
|
private GerberMidpointRounding _sizeMidpointRounding = GerberMidpointRounding.AwayFromZero;
|
|
private bool _mirror;
|
|
private bool _invertColor;
|
|
private bool _enableAntiAliasing;
|
|
|
|
#endregion
|
|
|
|
#region Overrides
|
|
|
|
public override LayerRangeSelection StartLayerRangeSelection => LayerRangeSelection.None;
|
|
public override string IconClass => "fa-solid fa-microchip";
|
|
public override string Title => "PCB exposure";
|
|
public override string Description =>
|
|
"Converts a gerber file to a pixel perfect image given your printer LCD/resolution to exposure the copper traces.\n" +
|
|
"Note: The current opened file will be overwritten with this gerber image, use a dummy or a not needed file.";
|
|
|
|
public override string ConfirmationText =>
|
|
"generate the PCB traces?";
|
|
|
|
public override string ProgressTitle =>
|
|
"Generating PCB traces";
|
|
|
|
public override string ProgressAction => "Tracing";
|
|
|
|
public override string? ValidateSpawn()
|
|
{
|
|
if(SlicerFile.DisplayWidth <= 0 || SlicerFile.DisplayHeight <= 0)
|
|
{
|
|
return $"{NotSupportedMessage}\nReason: No display size information is available to calculate the correct pixel pitch, and so, it's unable to produce a pixel perfect image.";
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
public override string? ValidateInternally()
|
|
{
|
|
var sb = new StringBuilder();
|
|
if (_files.Count == 0)
|
|
{
|
|
sb.AppendLine("Select at least one gerber file");
|
|
}
|
|
else
|
|
{
|
|
foreach (var file in _files)
|
|
{
|
|
if(!file.Exists) sb.AppendLine($"The file {file} does not exists");
|
|
}
|
|
}
|
|
|
|
return sb.ToString();
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
var result = $"{string.Join(" / ", _files)} [Exposure: {_exposureTime}s] [Rounding: {_sizeMidpointRounding}] [Mirror: {_mirror}] [Invert: {_invertColor}]";
|
|
if (!string.IsNullOrEmpty(ProfileName)) result = $"{ProfileName}: {result}";
|
|
return result;
|
|
}
|
|
#endregion
|
|
|
|
#region Constructor
|
|
|
|
public OperationPCBExposure() { }
|
|
|
|
public OperationPCBExposure(FileFormat slicerFile) : base(slicerFile)
|
|
{
|
|
if (_layerHeight <= 0) _layerHeight = (decimal)SlicerFile.LayerHeight;
|
|
if (_exposureTime <= 0) _exposureTime = (decimal)SlicerFile.BottomExposureTime;
|
|
//_mirror = SlicerFile.DisplayMirror != FlipDirection.None;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Properties
|
|
public RangeObservableCollection<PCBExposureFile> Files
|
|
{
|
|
get => _files;
|
|
set => RaiseAndSetIfChanged(ref _files, value);
|
|
}
|
|
|
|
public uint FileCount => (uint)_files.Count;
|
|
|
|
public bool MergeFiles
|
|
{
|
|
get => _mergeFiles;
|
|
set => RaiseAndSetIfChanged(ref _mergeFiles, value);
|
|
}
|
|
|
|
public decimal LayerHeight
|
|
{
|
|
get => _layerHeight;
|
|
set => RaiseAndSetIfChanged(ref _layerHeight, Layer.RoundHeight(value));
|
|
}
|
|
|
|
public decimal ExposureTime
|
|
{
|
|
get => _exposureTime;
|
|
set => RaiseAndSetIfChanged(ref _exposureTime, Math.Round(Math.Max(0, value), 2));
|
|
}
|
|
|
|
public GerberMidpointRounding SizeMidpointRounding
|
|
{
|
|
get => _sizeMidpointRounding;
|
|
set => RaiseAndSetIfChanged(ref _sizeMidpointRounding, value);
|
|
}
|
|
|
|
public bool Mirror
|
|
{
|
|
get => _mirror;
|
|
set => RaiseAndSetIfChanged(ref _mirror, value);
|
|
}
|
|
|
|
public bool InvertColor
|
|
{
|
|
get => _invertColor;
|
|
set => RaiseAndSetIfChanged(ref _invertColor, value);
|
|
}
|
|
|
|
public bool EnableAntiAliasing
|
|
{
|
|
get => _enableAntiAliasing;
|
|
set => RaiseAndSetIfChanged(ref _enableAntiAliasing, value);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Equality
|
|
|
|
protected bool Equals(OperationPCBExposure other)
|
|
{
|
|
return _files.Equals(other._files) && _mergeFiles == other._mergeFiles && _layerHeight == other._layerHeight && _exposureTime == other._exposureTime && _sizeMidpointRounding == other._sizeMidpointRounding && _mirror == other._mirror && _invertColor == other._invertColor && _enableAntiAliasing == other._enableAntiAliasing;
|
|
}
|
|
|
|
public override bool Equals(object? obj)
|
|
{
|
|
if (ReferenceEquals(null, obj)) return false;
|
|
if (ReferenceEquals(this, obj)) return true;
|
|
if (obj.GetType() != this.GetType()) return false;
|
|
return Equals((OperationPCBExposure) obj);
|
|
}
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
return HashCode.Combine(_files, _mergeFiles, _layerHeight, _exposureTime, (int) _sizeMidpointRounding, _mirror, _invertColor, _enableAntiAliasing);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
public void AddFilesFromZip(string zipFile)
|
|
{
|
|
if (!File.Exists(zipFile) || !zipFile.EndsWith(".zip")) return;
|
|
using var zip = ZipFile.Open(zipFile, ZipArchiveMode.Read);
|
|
|
|
var tmpPath = PathExtensions.GetTemporaryDirectory($"{About.Software}.");
|
|
foreach (var entry in zip.Entries)
|
|
{
|
|
if(!ValidExtensions.Any(extension => entry.Name.EndsWith($".{extension}", StringComparison.OrdinalIgnoreCase))) continue;
|
|
|
|
var filePath = entry.ImprovedExtractToFile(tmpPath, false);
|
|
if (!string.IsNullOrEmpty(filePath))
|
|
{
|
|
AddFile(filePath);
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
public void AddFile(string filePath, bool handleZipFiles = true)
|
|
{
|
|
if (!File.Exists(filePath)) return;
|
|
if (filePath.EndsWith(".zip"))
|
|
{
|
|
if(handleZipFiles) AddFilesFromZip(filePath);
|
|
return;
|
|
}
|
|
if(!ValidExtensions.Any(extension => filePath.EndsWith($".{extension}", StringComparison.OrdinalIgnoreCase))) return;
|
|
var file = new PCBExposureFile(filePath);
|
|
if (_files.Contains(file)) return;
|
|
_files.Add(file);
|
|
}
|
|
|
|
public void AddFiles(string[] files, bool handleZipFiles = true)
|
|
{
|
|
foreach (var file in files)
|
|
{
|
|
AddFile(file);
|
|
}
|
|
}
|
|
|
|
public void Sort() => _files.Sort();
|
|
|
|
public Mat GetMat(PCBExposureFile file)
|
|
{
|
|
var mat = SlicerFile.CreateMat();
|
|
DrawMat(file, mat);
|
|
return mat;
|
|
}
|
|
|
|
public void DrawMat(PCBExposureFile file, Mat mat)
|
|
{
|
|
if (!file.Exists) return;
|
|
|
|
GerberDocument.ParseAndDraw(file, mat, SlicerFile.Ppmm, _sizeMidpointRounding, _enableAntiAliasing);
|
|
|
|
//var boundingRectangle = CvInvoke.BoundingRectangle(mat);
|
|
//var cropped = mat.Roi(new Size(boundingRectangle.Right, boundingRectangle.Bottom));
|
|
var cropped = mat.CropByBounds();
|
|
|
|
if (_invertColor) CvInvoke.BitwiseNot(cropped, cropped);
|
|
if (_mirror)
|
|
{
|
|
var flip = SlicerFile.DisplayMirror;
|
|
if (flip == FlipDirection.None) flip = FlipDirection.Horizontally;
|
|
CvInvoke.Flip(mat, mat, (FlipType)flip);
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
protected override bool ExecuteInternally(OperationProgress progress)
|
|
{
|
|
if (_files.Count == 0) return false;
|
|
var layers = new List<Layer>();
|
|
using var mergeMat = SlicerFile.CreateMat();
|
|
progress.ItemCount = FileCount;
|
|
for (var i = 0; i < _files.Count; i++)
|
|
{
|
|
/*using var mat = GetMat(file);
|
|
|
|
if (mergeMat is null)
|
|
{
|
|
mergeMat = mat.Clone();
|
|
}
|
|
else
|
|
{
|
|
CvInvoke.Max(mergeMat, mat, mergeMat);
|
|
}*/
|
|
|
|
DrawMat(_files[i], mergeMat);
|
|
|
|
if (!_mergeFiles)
|
|
{
|
|
if (i == 0)
|
|
{
|
|
if (CvInvoke.CountNonZero(mergeMat) > 0)
|
|
{
|
|
layers.Add(new Layer(mergeMat, SlicerFile));
|
|
}
|
|
}
|
|
else
|
|
{
|
|
using var mat = SlicerFile.CreateMat();
|
|
DrawMat(_files[i], mat);
|
|
if (CvInvoke.CountNonZero(mat) > 0)
|
|
{
|
|
layers.Add(new Layer(mat, SlicerFile));
|
|
}
|
|
}
|
|
}
|
|
|
|
progress++;
|
|
}
|
|
|
|
if (_mergeFiles)
|
|
{
|
|
if (CvInvoke.CountNonZero(mergeMat) > 0)
|
|
{
|
|
layers.Add(new Layer(mergeMat, SlicerFile));
|
|
}
|
|
}
|
|
|
|
SlicerFile.SuppressRebuildPropertiesWork(() =>
|
|
{
|
|
SlicerFile.LayerHeight = (float) _layerHeight;
|
|
SlicerFile.TransitionLayerCount = 0;
|
|
SlicerFile.BottomLayerCount = 1;
|
|
SlicerFile.BottomExposureTime = (float) _exposureTime;
|
|
SlicerFile.ExposureTime = (float)_exposureTime;
|
|
SlicerFile.BottomLiftHeightTotal = 0;
|
|
SlicerFile.LiftHeightTotal = 0;
|
|
/*SlicerFile.BottomLiftSpeed = 300;
|
|
SlicerFile.BottomLiftSpeed2 = 300;
|
|
SlicerFile.LiftSpeed = 300;
|
|
SlicerFile.LiftSpeed2 = 300;*/
|
|
SlicerFile.SetNoDelays();
|
|
|
|
SlicerFile.Layers = layers.ToArray();
|
|
}, true);
|
|
|
|
if (_mirror) // Reposition layers
|
|
{
|
|
using var op = new OperationMove(SlicerFile, Anchor.TopLeft)
|
|
{
|
|
MarginLeft = SlicerFile.BoundingRectangle.X,
|
|
MarginTop = SlicerFile.BoundingRectangle.Y,
|
|
};
|
|
|
|
var flip = SlicerFile.DisplayMirror;
|
|
if (flip == FlipDirection.None) flip = FlipDirection.Horizontally;
|
|
switch (flip)
|
|
{
|
|
case FlipDirection.Horizontally:
|
|
op.MarginLeft = (int)SlicerFile.ResolutionX - SlicerFile.BoundingRectangle.Right;
|
|
break;
|
|
case FlipDirection.Vertically:
|
|
op.MarginTop = (int)SlicerFile.ResolutionY - SlicerFile.BoundingRectangle.Bottom;
|
|
break;
|
|
case FlipDirection.Both:
|
|
op.MarginLeft = (int)SlicerFile.ResolutionX - SlicerFile.BoundingRectangle.Right;
|
|
op.MarginTop = (int)SlicerFile.ResolutionY - SlicerFile.BoundingRectangle.Bottom;
|
|
break;
|
|
}
|
|
|
|
op.Execute(progress);
|
|
}
|
|
|
|
using var croppedMat = mergeMat.CropByBounds(20);
|
|
/*if (_mirror)
|
|
{
|
|
var flip = SlicerFile.DisplayMirror;
|
|
if (flip == FlipDirection.None) flip = FlipDirection.Horizontally;
|
|
CvInvoke.Flip(croppedMat, croppedMat, (FlipType)flip);
|
|
}*/
|
|
using var bgrMat = new Mat();
|
|
CvInvoke.CvtColor(croppedMat, bgrMat, ColorConversion.Gray2Bgr);
|
|
SlicerFile.SetThumbnails(bgrMat);
|
|
|
|
return !progress.Token.IsCancellationRequested;
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
} |