版博士V2.0程序
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

ThicknessProp.cs 6.8 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. using MaiMuAOI.SysCtrl;
  2. using MaiMuAOI.SysUI.StepUI.PropExtend;
  3. using Newtonsoft.Json;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.ComponentModel;
  7. using System.Drawing;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. namespace MaiMuAOI.SysUI.ProcessStep.Prop
  12. {
  13. public class ThicknessProp
  14. {
  15. [PropertyOrder(1), Browsable(true), Category("1 测试"), DisplayName("1.1 测试点位数"), Description("需要进行的厚度测试次数")]
  16. public int TestCnt { get; set; }
  17. [PropertyOrder(2), Browsable(true), Category("1 测试"), DisplayName("1.2 图纸获取点位"), Description("是否从图纸获取点位(True-是;False-否)")]
  18. public bool UsePoints { get; set; }
  19. [PropertyOrder(3), Browsable(true), Category("1 测试"), DisplayName("1.3 测试点位列表"), Description("当不从图纸获取点位时,需要手动输入点位")]
  20. public List<PointF> Points { get; set; }
  21. [PropertyOrder(11), Browsable(true), Category("2 动作"), DisplayName("2.1 起始速度(mm/s)"), Description("起始速度")]
  22. public double VelLow { get; set; }
  23. [PropertyOrder(12), Browsable(true), Category("2 动作"), DisplayName("2.2 运行速度(mm/s)"), Description("运行速度")]
  24. public double VelHigh { get; set; }
  25. [PropertyOrder(13), Browsable(true), Category("2 动作"), DisplayName("2.3 加速度(mm/s)"), Description("加速度")]
  26. public double Acc { get; set; }
  27. [PropertyOrder(14), Browsable(true), Category("2 动作"), DisplayName("2.4 减速度(mm/s)"), Description("减速度")]
  28. public double Dec { get; set; }
  29. [PropertyOrder(15), Browsable(true), Category("2 动作"), DisplayName("2.5 等待稳定时间(ms)"), Description("测高度探头伸出等待稳定时间")]
  30. public int WaitTime { get; set; }
  31. [PropertyOrder(21), Browsable(true), Category("3 参数"), DisplayName("3.1 读取延时(ms)"), Description("测试读取数据之前延时ms")]
  32. public int DelayTime { get; set; }
  33. [PropertyOrder(22), Browsable(true), Category("3 参数"), DisplayName("3.2 读取N个数据"), Description("测试读取多少数据")]
  34. public int DataCnt { get; set; }
  35. [PropertyOrder(23), Browsable(true), Category("3 参数"), DisplayName("3.3 单次数据处理"), Description("根据读到的N个数据进行取值处理")]
  36. public DataProcess ProcessData { get; set; }
  37. [PropertyOrder(24), Browsable(true), Category("3 参数"), DisplayName("3.4 数据判定方式"), Description("对采集数据进行判定处理的方式")]
  38. public DataJudgment JudgmentData { get; set; }
  39. [PropertyOrder(31), Browsable(true), Category("4 补偿"), DisplayName("4.1 补偿值(um)"), Description("测试读取数据后加入的补偿值")]
  40. public double OffsetValue { get; set; }
  41. [PropertyOrder(41), Browsable(true), Category("5 上下限"), DisplayName("5.1 启用流程上下限"), Description("使用流程中设置的上下限判断")]
  42. public bool OpenUseLimit { get; set; }
  43. [PropertyOrder(42), Browsable(true), Category("5 上下限"), DisplayName("5.2 标准值"), Description("设置判断标志值")]
  44. public double StandardValues { get; set; }
  45. [PropertyOrder(43), Browsable(true), Category("5 上下限"), DisplayName("5.3 上限"), Description("设置判断上限")]
  46. public double MaxLimit { get; set; }
  47. [PropertyOrder(44), Browsable(true), Category("5 上下限"), DisplayName("5.4 下限"), Description("设置流程下限")]
  48. public double MinLimit { get; set; }
  49. [PropertyOrder(51), Browsable(true), Category("6 打印"), DisplayName("6.1 开启Excel打印"), Description("启用本工序数据打印")]
  50. public bool OpenPrint { get; set; }
  51. [PropertyOrder(52), Browsable(true), Category("6 打印"), DisplayName("6.2 打印数据"), Description("打印均值数据的位置")]
  52. public string ExcelData { get; set; }
  53. [PropertyOrder(53), Browsable(true), Category("6 打印"), DisplayName("6.3 打印上下限"), Description("打印上下限的位置")]
  54. public string ExcelLimit { get; set; }
  55. [PropertyOrder(54), Browsable(true), Category("6 打印"), DisplayName("6.4 开启标签打印"), Description("启用本工序数据打印")]
  56. public bool OpenPrintLabel { get; set; }
  57. [PropertyOrder(55), Browsable(true), Category("6 打印"), DisplayName("6.5 标签打印数据"), Description("打印均值数据的位置")]
  58. public string LabelData { get; set; }
  59. [PropertyOrder(56), Browsable(true), Category("6 打印"), DisplayName("6.6 标签打印上下限"), Description("打印上下限的位置")]
  60. public string LabelLimit { get; set; }
  61. [PropertyOrder(61), Browsable(true), Category("7 控制"), DisplayName("7.1 禁用工序"), Description("禁用本工序(True-是;False-否)")]
  62. public bool Disable { get; set; }
  63. public ThicknessProp()
  64. {
  65. TestCnt = 5;
  66. UsePoints = false;
  67. Points = new List<PointF>();
  68. VelLow = 0;
  69. VelHigh = 50;
  70. Acc = 100;
  71. Dec = 100;
  72. WaitTime = 500;
  73. DelayTime = 0;
  74. DataCnt = 1;
  75. ProcessData = DataProcess.均值;
  76. JudgmentData = DataJudgment.均值;
  77. OffsetValue = 0;
  78. Disable = false;
  79. OpenUseLimit = false;
  80. StandardValues = 0;
  81. MaxLimit = 0;
  82. MinLimit = 0;
  83. OpenPrint = false;
  84. OpenPrintLabel = false;
  85. ExcelData = "";
  86. ExcelLimit = "";
  87. LabelData = "";
  88. LabelLimit = "";
  89. }
  90. /// <summary>
  91. /// 序列化
  92. /// </summary>
  93. /// <param name="obj"></param>
  94. /// <returns></returns>
  95. public string serialize()
  96. {
  97. return JsonConvert.SerializeObject(this);
  98. }
  99. /// <summary>
  100. /// 反序列化
  101. /// </summary>
  102. /// <param name="json"></param>
  103. /// <returns></returns>
  104. public void deserialize(string json)
  105. {
  106. var o = JsonConvert.DeserializeObject<ThicknessProp>(json);
  107. Type type = o.GetType();
  108. System.Reflection.PropertyInfo[] properties = type.GetProperties();
  109. foreach (System.Reflection.PropertyInfo property in properties)
  110. {
  111. string name = property.Name;
  112. if (!type.GetProperty(name).IsDefined(typeof(JsonIgnoreAttribute), true))
  113. {
  114. var value = property.GetValue(o);
  115. this.GetType().GetProperty(name).SetValue(this, value);
  116. }
  117. }
  118. }
  119. }
  120. }