MotorSimulator.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. using Aitex.Common.Util;
  2. using Aitex.Core.Util;
  3. using MECF.Framework.Common.CommonData.PUF;
  4. using MECF.Framework.Common.Device.Galil;
  5. using System.Collections.Generic;
  6. using System.IO;
  7. namespace MECF.Framework.Common.Simulator
  8. {
  9. /// <summary>
  10. /// 电机运动模拟器
  11. /// </summary>
  12. public class MotorSimulator : Singleton<MotorSimulator>
  13. {
  14. #region 内部变量
  15. /// <summary>
  16. /// 定时器
  17. /// </summary>
  18. private PeriodicJob _periodicJob;
  19. /// <summary>
  20. /// 电机数据字典(key:Name(module.name),value:Datas)
  21. /// </summary>
  22. private Dictionary<string, CommandMotionData> _motorNameDataDic = new Dictionary<string, CommandMotionData>();
  23. #endregion
  24. #region 属性
  25. #endregion
  26. //delegate
  27. #region Delegate
  28. public delegate void UpdateVariableValueChanged(Dictionary<string, CommandMotionData> datasDic);
  29. #endregion
  30. #region 事件
  31. /// <summary>
  32. /// 变量变更事件
  33. /// </summary>
  34. public event UpdateVariableValueChanged OnUpdateVariableValueChanged;
  35. #endregion
  36. /// <summary>
  37. /// 初始化
  38. /// </summary>
  39. public void Initialize()
  40. {
  41. _periodicJob = new PeriodicJob(100, OnTimer, "Motor Simulator Timer", false);//***打开
  42. Init();
  43. }
  44. /// <summary>
  45. /// 初始化
  46. /// </summary>
  47. private void Init()
  48. {
  49. ////加载对应配置文件 GalilControllerCfg-Simulator.xml,初始化数据字典
  50. string oldXmlPath = PathManager.GetCfgDir();
  51. string newXmlPath = oldXmlPath.Replace("CyberX8_Simulator", "CyberX8_RT") + "Devices\\GalilControllerCfg-Simulator.xml";
  52. GalilControllerCfg cfg = CustomXmlSerializer.Deserialize<GalilControllerCfg>(new FileInfo(newXmlPath));
  53. foreach (GalilDeviceConfig config in cfg.GalilDeviceConfigs)
  54. {
  55. foreach (GalilAxisConfig item in config.GalilAxises)
  56. {
  57. _motorNameDataDic[$"{config.Module}.{item.Name}"] = new CommandMotionData();
  58. }
  59. }
  60. }
  61. /// <summary>
  62. /// 定时器执行
  63. /// </summary>
  64. /// <returns></returns>
  65. private bool OnTimer()
  66. {
  67. //电机运动物理模型
  68. return true;
  69. }
  70. /// <summary>
  71. /// 通知Galil模块数据变化
  72. /// </summary>
  73. /// <param name="data"></param>
  74. private void UpdateVariableValue(Dictionary<string, CommandMotionData> datasDic)
  75. {
  76. if (OnUpdateVariableValueChanged != null)
  77. {
  78. OnUpdateVariableValueChanged(datasDic);
  79. }
  80. }
  81. }
  82. }