mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-08 17:42:31 +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
204 lines
7.1 KiB
C#
204 lines
7.1 KiB
C#
using Avalonia;
|
|
using Avalonia.Markup.Xaml;
|
|
using Emgu.CV;
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using UVtools.Core;
|
|
using UVtools.Core.Extensions;
|
|
using UVtools.Core.SystemOS;
|
|
using UVtools.WPF.Controls;
|
|
|
|
namespace UVtools.WPF.Windows;
|
|
|
|
public class AboutWindow : WindowEx
|
|
{
|
|
public static string OpenCVBuildInformation
|
|
{
|
|
get
|
|
{
|
|
try
|
|
{
|
|
return CvInvoke.BuildInformation;
|
|
}
|
|
catch
|
|
{
|
|
// ignored
|
|
}
|
|
|
|
return "Error: Unable to load the library.";
|
|
}
|
|
}
|
|
|
|
public static string LoadedAssemblies
|
|
{
|
|
get
|
|
{
|
|
var sb = new StringBuilder();
|
|
var assemblies = AppDomain.CurrentDomain.GetAssemblies();
|
|
var assembliesLengthPad = assemblies.Length.DigitCount();
|
|
for (var i = 0; i < assemblies.Length; i++)
|
|
{
|
|
var assembly = assemblies[i].GetName();
|
|
sb.AppendLine($"{(i + 1).ToString().PadLeft(assembliesLengthPad, '0')}: {assembly.Name}, Version={assembly.Version}");
|
|
}
|
|
|
|
return sb.ToString();
|
|
}
|
|
}
|
|
|
|
public static string OSDescription => $"{RuntimeInformation.OSDescription} {RuntimeInformation.OSArchitecture}";
|
|
|
|
public static string RuntimeDescription => RuntimeInformation.RuntimeIdentifier;
|
|
|
|
public static string FrameworkDescription => RuntimeInformation.FrameworkDescription;
|
|
public static string AvaloniaUIDescription => typeof(AvaloniaObject).Assembly.GetName().Version!.ToString(3);
|
|
|
|
public static string OpenCVVersion
|
|
{
|
|
get
|
|
{
|
|
try
|
|
{
|
|
return typeof(Mat).Assembly.GetName().Version!.ToString(3);
|
|
}
|
|
catch
|
|
{
|
|
// ignored
|
|
}
|
|
|
|
return "???";
|
|
}
|
|
}
|
|
|
|
public static string ProcessorName => SystemAware.GetProcessorName();
|
|
|
|
public static int ProcessorCount => Environment.ProcessorCount;
|
|
|
|
public static string MemoryRAMDescription
|
|
{
|
|
get
|
|
{
|
|
var memory = SystemAware.GetMemoryStatus();
|
|
if (memory.ullTotalPhys == 0)
|
|
{
|
|
return "Unknown";
|
|
}
|
|
|
|
var factor = Math.Pow(1024, 3);
|
|
return $"{(memory.ullTotalPhys-memory.ullAvailPhys) / factor:F2} / {memory.ullTotalPhys / factor:F2} GB";
|
|
}
|
|
}
|
|
|
|
public int ScreenCount => Screens.ScreenCount;
|
|
//public string ScreenResolution => $"{Screens.Primary.Bounds.Width} x {Screens.Primary.Bounds.Height} @ {Screens.Primary.PixelDensity*100}%";
|
|
//public string WorkingArea => $"{Screens.Primary.WorkingArea.Width} x {Screens.Primary.WorkingArea.Height}";
|
|
//public string RealWorkingArea => $"{App.MaxWindowSize.Width} x {App.MaxWindowSize.Height}";
|
|
|
|
public string ScreensDescription
|
|
{
|
|
get
|
|
{
|
|
var result = new StringBuilder();
|
|
for (var i = 0; i < Screens.All.Count; i++)
|
|
{
|
|
// ReSharper disable once ConditionIsAlwaysTrueOrFalse
|
|
var onScreen = Screens.ScreenFromVisual(App.MainWindow is not null ? App.MainWindow : this);
|
|
var screen = Screens.All[i];
|
|
result.AppendLine($"{i+1}: {screen.Bounds.Width} x {screen.Bounds.Height} @ {Math.Round(screen.PixelDensity * 100, 2)}%" +
|
|
(screen.Primary ? " (Primary)" : null) +
|
|
(onScreen == screen ? " (On this)" : null)
|
|
);
|
|
result.AppendLine($" WA: {screen.WorkingArea.Width} x {screen.WorkingArea.Height} UA: {Math.Round(screen.WorkingArea.Width / screen.PixelDensity)} x {Math.Round(screen.WorkingArea.Height / screen.PixelDensity)}");
|
|
}
|
|
return result.ToString();
|
|
}
|
|
}
|
|
|
|
public AboutWindow()
|
|
{
|
|
InitializeComponent();
|
|
DataContext = this;
|
|
Title = $"About {About.SoftwareWithVersion}";
|
|
}
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
AvaloniaXamlLoader.Load(this);
|
|
}
|
|
|
|
public static string GetEssentialInformationStatic()
|
|
{
|
|
var message = new StringBuilder();
|
|
message.AppendLine($"{About.SoftwareWithVersionArch}");
|
|
message.AppendLine($"Operative system: {OSDescription}");
|
|
message.AppendLine($"Processor: {ProcessorName}");
|
|
message.AppendLine($"Processor cores: {ProcessorCount}");
|
|
message.AppendLine($"Memory RAM: {MemoryRAMDescription}");
|
|
message.AppendLine($"Runtime: {RuntimeDescription}");
|
|
message.AppendLine($"Framework: {FrameworkDescription}");
|
|
message.AppendLine($"AvaloniaUI: {AvaloniaUIDescription}");
|
|
message.AppendLine($"OpenCV: {OpenCVVersion}");
|
|
message.AppendLine();
|
|
message.AppendLine($"Path: {App.ApplicationPath}");
|
|
message.AppendLine($"Executable: {App.AppExecutable}");
|
|
if (App.SlicerFile is not null)
|
|
{
|
|
message.AppendLine($"Loaded file: {App.SlicerFile.Filename} [Version: {App.SlicerFile.Version}] [Class: {App.SlicerFile.GetType().Name}]");
|
|
}
|
|
|
|
return message.ToString();
|
|
}
|
|
|
|
private string GetEssentialInformation()
|
|
{
|
|
var message = new StringBuilder();
|
|
message.AppendLine($"{About.SoftwareWithVersionArch}");
|
|
message.AppendLine($"Operative system: {OSDescription}");
|
|
message.AppendLine($"Processor: {ProcessorName}");
|
|
message.AppendLine($"Processor cores: {ProcessorCount}");
|
|
message.AppendLine($"Memory RAM: {MemoryRAMDescription}");
|
|
message.AppendLine($"Runtime: {RuntimeDescription}");
|
|
message.AppendLine($"Framework: {FrameworkDescription}");
|
|
message.AppendLine($"AvaloniaUI: {AvaloniaUIDescription}");
|
|
message.AppendLine($"OpenCV: {OpenCVVersion}");
|
|
message.AppendLine();
|
|
message.AppendLine("Sreens, resolution, working area, usable area:");
|
|
message.AppendLine(ScreensDescription);
|
|
message.AppendLine();
|
|
message.AppendLine($"Path: {App.ApplicationPath}");
|
|
message.AppendLine($"Executable: {App.AppExecutable}");
|
|
if (SlicerFile is not null)
|
|
{
|
|
message.AppendLine($"Loaded file: {SlicerFile.Filename} [Version: {SlicerFile.Version}] [Class: {SlicerFile.GetType().Name}]");
|
|
}
|
|
|
|
return message.ToString();
|
|
}
|
|
|
|
public void CopyEssentialInformation()
|
|
{
|
|
Application.Current?.Clipboard?.SetTextAsync(GetEssentialInformation());
|
|
}
|
|
|
|
|
|
public void CopyOpenCVInformationToClipboard()
|
|
{
|
|
Application.Current?.Clipboard?.SetTextAsync(CvInvoke.BuildInformation);
|
|
}
|
|
|
|
public void CopyLoadedAssembliesToClipboard()
|
|
{
|
|
Application.Current?.Clipboard?.SetTextAsync(LoadedAssemblies);
|
|
}
|
|
|
|
public async void CopyInformationToClipboard()
|
|
{
|
|
var message = new StringBuilder();
|
|
message.Append(GetEssentialInformation());
|
|
message.AppendLine(CvInvoke.BuildInformation);
|
|
message.AppendLine("Loaded Assemblies:");
|
|
message.AppendLine(LoadedAssemblies);
|
|
await Application.Current?.Clipboard?.SetTextAsync(message.ToString())!;
|
|
}
|
|
} |