This commit is contained in:
CortexCore
2024-03-03 17:48:11 +08:00
parent 3084db3e86
commit 7263881497

View File

@@ -3,17 +3,19 @@ using BITKit;
using BITKit.CommandPattern; using BITKit.CommandPattern;
using BITKit.Mod; using BITKit.Mod;
namespace com.ifactory.cutting.mode.auto_save_images; namespace BITFactory.Cutting
/// <summary>
/// 该程序将自动保存导出的数据到同级目录下
/// </summary>
public sealed class AutoSaveImage:MyMod
{ {
/// <summary>
/// 该程序将自动保存导出的数据到同级目录下
/// </summary>
public sealed class AutoSaveImage : MyMod
{
public override string PackageName { get; set; } = "iFactory.Cutting.Mod.auto_save_images"; public override string PackageName { get; set; } = "iFactory.Cutting.Mod.auto_save_images";
public override string Name { get; set; } = "自动保存导出数据"; public override string Name { get; set; } = "自动保存导出数据";
[Inject] private ICuttingTool _cuttingTool; [Inject] private ICuttingTool _cuttingTool;
public override void OnInitialized() public override void OnInitialized()
{ {
base.OnInitialized(); base.OnInitialized();
@@ -30,14 +32,15 @@ public sealed class AutoSaveImage:MyMod
{ {
var commands = obj.OfType<ICuttingCommand>(); var commands = obj.OfType<ICuttingCommand>();
var stringBuilder = new System.Text.StringBuilder(); var stringBuilder = new System.Text.StringBuilder();
var path = Path.Combine(FolderPath,$"export_{DateTime.Now.Ticks}.cfg"); var path = Path.Combine(FolderPath, $"export_{DateTime.Now.Ticks}.cfg");
stringBuilder.AppendLine($"导出时间: {DateTime.Now}"); stringBuilder.AppendLine($"导出时间: {DateTime.Now}");
foreach (var x in commands) foreach (var x in commands)
{ {
switch (x) switch (x)
{ {
case CuttingPointCommand pointCommand: case CuttingPointCommand pointCommand:
stringBuilder.AppendLine($"切削点: {pointCommand.PlanePoint.x} {pointCommand.PlanePoint.y} {pointCommand.PlanePoint.z}"); stringBuilder.AppendLine(
$"切削点: {pointCommand.PlanePoint.x} {pointCommand.PlanePoint.y} {pointCommand.PlanePoint.z}");
break; break;
case CuttingLineCommand lineCommand: case CuttingLineCommand lineCommand:
stringBuilder.AppendLine($"切削线:{lineCommand.Line.Length}"); stringBuilder.AppendLine($"切削线:{lineCommand.Line.Length}");
@@ -45,11 +48,14 @@ public sealed class AutoSaveImage:MyMod
{ {
stringBuilder.AppendLine($"切削线点: {linePos.x} {linePos.y} {linePos.z}"); stringBuilder.AppendLine($"切削线点: {linePos.x} {linePos.y} {linePos.z}");
} }
break; break;
} }
} }
File.WriteAllText(path,stringBuilder.ToString());
File.WriteAllText(path, stringBuilder.ToString());
BIT4Log.Log<AutoSaveImage>($"导出数据已保存到:{path}"); BIT4Log.Log<AutoSaveImage>($"导出数据已保存到:{path}");
} }
}
} }