Compare commits

..

1 Commits

3 changed files with 52 additions and 45 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Configuration;
namespace EtchBendLines
{
public static class AppConfig
{
public static double GetDouble(string key)
{
if (!double.TryParse(ConfigurationManager.AppSettings[key], out var value))
throw new Exception($"Failed to convert AppSetting[\"{key}\"] to double.");
return value;
}
}
}

View File

@@ -47,6 +47,7 @@
<Reference Include="System.Xml" /> <Reference Include="System.Xml" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="AppConfig.cs" />
<Compile Include="Bend.cs" /> <Compile Include="Bend.cs" />
<Compile Include="BendDirection.cs" /> <Compile Include="BendDirection.cs" />
<Compile Include="BendLineExtractor.cs" /> <Compile Include="BendLineExtractor.cs" />

View File

@@ -12,66 +12,56 @@ namespace EtchBendLines
{ {
try try
{ {
var etcher = new Etcher(); Run(args);
etcher.EtchLength = GetAppSettingAsDouble("EtchLength");
etcher.MaxBendRadius = GetAppSettingAsDouble("MaxBendRadius");
var paths = new List<string>(args);
if (paths.Count == 0)
{
paths.Add(AppDomain.CurrentDomain.BaseDirectory);
}
var files = new List<string>();
foreach (var path in paths)
{
if (File.Exists(path))
{
files.Add(path);
}
else if (Directory.Exists(path))
{
files.AddRange(Directory.GetFiles(path, "*.dxf", SearchOption.AllDirectories));
}
}
if (files.Count == 0)
{
Console.WriteLine($"No DXF files founds. Place DXF files in \"{AppDomain.CurrentDomain.BaseDirectory}\" and run this program again.");
}
else
{
foreach (var file in files)
{
etcher.AddEtchLines(file);
Console.WriteLine();
}
}
} }
catch (Exception ex) catch (Exception ex)
{ {
Console.ForegroundColor = ConsoleColor.Red; Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine($"An error occured: {ex.Message}"); Console.WriteLine($"An error occurred: {ex.Message}");
Console.ResetColor(); Console.ResetColor();
} }
PressAnyKeyToExit(); PressAnyKeyToExit();
} }
static double GetAppSettingAsDouble(string name) static void Run(string[] args)
{ {
double v; var etchLength = AppConfig.GetDouble("EtchLength");
var maxRadius = AppConfig.GetDouble("MaxBendRadius");
try var etcher = new Etcher
{ {
return double.Parse(ConfigurationManager.AppSettings[name]); MaxBendRadius = maxRadius
} };
catch
var files = GetDxfFiles(args);
if (files.Count == 0)
{ {
throw new Exception($"Failed to convert the value of AppSetting[\"{name}\"] to double"); Console.WriteLine($"No DXF files found. Place DXF files in \"{AppDomain.CurrentDomain.BaseDirectory}\" and run this program again.");
return;
} }
foreach (var file in files)
{
etcher.AddEtchLines(file, etchLength);
Console.WriteLine();
}
}
static List<string> GetDxfFiles(string[] args)
{
var paths = args.Length > 0 ? args.ToList() : new List<string> { AppDomain.CurrentDomain.BaseDirectory };
var files = new List<string>();
foreach (var path in paths)
{
if (File.Exists(path))
files.Add(path);
else if (Directory.Exists(path))
files.AddRange(Directory.GetFiles(path, "*.dxf", SearchOption.AllDirectories));
}
return files;
} }
static void PressAnyKeyToExit() static void PressAnyKeyToExit()